{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/pZlZAk36fQs0T9BELBcu/NmlHmZtRYePZ5h6NQcn9/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://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={}));// 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=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",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 borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",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(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\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!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";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\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",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\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (b62c1c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import TickerLogo from\"#framer/local/canvasComponent/aLnv124H1/aLnv124H1.js\";import SectionHeader from\"#framer/local/canvasComponent/BXBTZEv67/BXBTZEv67.js\";import WidgetStats from\"#framer/local/canvasComponent/ebkhvlJuZ/ebkhvlJuZ.js\";import Row from\"#framer/local/canvasComponent/r9TbpKvES/r9TbpKvES.js\";import Footer from\"#framer/local/canvasComponent/vXxqwNzkS/vXxqwNzkS.js\";import ButtonPrimary from\"#framer/local/canvasComponent/ZJEetoKdg/ZJEetoKdg.js\";import*as sharedStyle2 from\"#framer/local/css/fLN0Fm3uI/fLN0Fm3uI.js\";import*as sharedStyle1 from\"#framer/local/css/MB5CMn7wn/MB5CMn7wn.js\";import*as sharedStyle4 from\"#framer/local/css/TsnfqRFLw/TsnfqRFLw.js\";import*as sharedStyle3 from\"#framer/local/css/UMMMGlfb6/UMMMGlfb6.js\";import*as sharedStyle from\"#framer/local/css/w36kSKJ5N/w36kSKJ5N.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SectionHeaderFonts=getFonts(SectionHeader);const VideoFonts=getFonts(Video);const ButtonPrimaryFonts=getFonts(ButtonPrimary);const TickerFonts=getFonts(Ticker);const ImageWithFX=withFX(Image);const WidgetStatsFonts=getFonts(WidgetStats);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const TickerLogoFonts=getFonts(TickerLogo);const RowFonts=getFonts(Row);const FooterFonts=getFonts(Footer);const breakpoints={OFaK4ur5_:\"(min-width: 810px) and (max-width: 1199px)\",UGT3ZRkKD:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-XqTEg\";const variantClassNames={OFaK4ur5_:\"framer-v-1dckcc3\",UGT3ZRkKD:\"framer-v-tmqdfs\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition1};const transition2={damping:60,delay:1,mass:1,stiffness:300,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:60};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"UGT3ZRkKD\",Tablet:\"OFaK4ur5_\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if([\"OFaK4ur5_\",\"UGT3ZRkKD\"].includes(baseVariant))return false;return true;};const elementId=useRouteElementId(\"wvSK6xY0A\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"YmLXbfxHg\");const ref2=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-7461ce55-6f12-4826-9e0e-6df4baf980ed, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xxgefi\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:97,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-51msjn-container\",nodeId:\"lupd70yS5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{variant:\"Q9MYEYEhm\"},UGT3ZRkKD:{variant:\"Di2MZpjXd\"}},children:/*#__PURE__*/_jsx(SectionHeader,{height:\"100%\",id:\"lupd70yS5\",layoutId:\"lupd70yS5\",style:{width:\"100%\"},variant:\"UbAMznH5b\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vwjne5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Aof1586Ib\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Aof1586Ib\",isMixedBorderRadius:false,layoutId:\"Aof1586Ib\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/SKOayFKLmRvEba8cNCXKWSDd9mw.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:62.4,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-ecqbz4\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-15amfmo\",\"data-framer-name\":\"Hero Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ez4ad3\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t92ens\",\"data-framer-name\":\"Hero Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11akghs\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e7msb1\",\"data-framer-name\":\"Subtitle\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nghahj\",\"data-framer-name\":\"Dots\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-534xp5\",\"data-framer-name\":\"Dot\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gpl98g\",\"data-framer-name\":\"Dot\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ie0qcu\",\"data-styles-preset\":\"w36kSKJ5N\",children:\"INTRODUCING OUR ECO-FRIENDLY\"})}),className:\"framer-iadrdo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-ydua9a\",\"data-styles-preset\":\"MB5CMn7wn\",children:[\"Ship Care \",/*#__PURE__*/_jsx(\"br\",{}),\"and Management Platform\"]})}),className:\"framer-egthcg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14w3h9g\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rifqpc\",\"data-styles-preset\":\"fLN0Fm3uI\",style:{\"--framer-text-color\":\"var(--token-10171a3c-8ac1-4aca-a5b3-9f27665289a0, rgba(34, 34, 34, 0.8))\"},children:\"For 6 decades, we\u2019ve delivered cost effective solutions targeted at saving bunker fuels and optimizing the operating performance of vessels, ensuring an eco-conscious approach in lowering our carbon footprint and reaching a sustanable future for the shipping industry. \"})}),className:\"framer-3fcmfw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{y:(componentViewport?.y||0)+0+642+40+0+0+0+142+0},UGT3ZRkKD:{y:(componentViewport?.y||0)+0+618+30+0+0+0+128+0+142}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:(componentViewport?.y||0)+0+642+50+0+0+0+0+0+162,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nwbwke-container\",nodeId:\"uydNfRQCw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonPrimary,{eItaE7B5H:true,height:\"100%\",id:\"uydNfRQCw\",layoutId:\"uydNfRQCw\",tiuec7fmF:\"Watch video\",TqFYFmIGq:true,variant:\"ZtAq7pJv4\",width:\"100%\",YnJUmzZWl:\"https://www.youtube.com/watch?v=Axsr0tnLzMk\"})})})})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1khsg92\",\"data-framer-name\":\"Service Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17wfpeh\",\"data-framer-name\":\"Project Content Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ak116e\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pl6hgm\",\"data-framer-name\":\"Subtitle\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dvsctt\",\"data-framer-name\":\"Dots\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yckbyf\",\"data-framer-name\":\"Dot\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fy7u1z\",\"data-framer-name\":\"Dot\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ie0qcu\",\"data-styles-preset\":\"w36kSKJ5N\",style:{\"--framer-text-color\":\"var(--token-8836e3a1-694b-4b03-92d5-ae63c2f33579, rgb(252, 252, 252))\"},children:\"OUR SERVICES\"})}),className:\"framer-1ow7vmj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1nkx45l\",\"data-styles-preset\":\"UMMMGlfb6\",style:{\"--framer-text-color\":\"var(--token-7461ce55-6f12-4826-9e0e-6df4baf980ed, rgb(255, 255, 255))\"},children:[\"Saving our clients\u2019 time \",/*#__PURE__*/_jsx(\"br\",{}),\"and money for over 50 years\"]})}),className:\"framer-tu5lyk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ato17l\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q6tmxe\",\"data-framer-name\":\"Card\",whileHover:animation,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:91,intrinsicWidth:82,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+976+80+0+190.39999999999998+0+0+20+0),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/Q0kXbkJyBzEpiyydXu57dgL7sE.png\"}},UGT3ZRkKD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:91,intrinsicWidth:82,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+985+60+0+0+180.39999999999998+0+0+20+0),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/Q0kXbkJyBzEpiyydXu57dgL7sE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:91,intrinsicWidth:82,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+941+80+0+192.39999999999998+0+0+20+0),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/Q0kXbkJyBzEpiyydXu57dgL7sE.png\"},className:\"framer-1jy1vhc\",\"data-framer-name\":\"Captura de pantalla 2025-01-31 a las 11.04.34\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lso4fl\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7QW1pa28tNjAw\",\"--framer-font-family\":'\"Amiko\", \"Amiko Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-8836e3a1-694b-4b03-92d5-ae63c2f33579, rgb(245, 245, 245))\"},children:\"Underwater Inspections and Surveys\"})}),className:\"framer-u68b2a\",fonts:[\"GF;Amiko-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"y_lpFWV48\"},implicitPathVariables:undefined},{href:{webPageId:\"y_lpFWV48\"},implicitPathVariables:undefined},{href:{webPageId:\"y_lpFWV48\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 40px) / 3, 82px) - 40px)`,y:(componentViewport?.y||0)+0+976+80+0+190.39999999999998+0+0+20+172.5},UGT3ZRkKD:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 100px, 1440px) - 40px)`,y:(componentViewport?.y||0)+0+985+60+0+0+180.39999999999998+0+0+20+125}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 76px) / 5, 49px) - 40px)`,y:(componentViewport?.y||0)+0+941+80+0+192.39999999999998+0+0+20+172.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fqa0p7-container\",nodeId:\"Z32UBWtAL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{YnJUmzZWl:resolvedLinks[1]},UGT3ZRkKD:{YnJUmzZWl:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{eItaE7B5H:false,height:\"100%\",id:\"Z32UBWtAL\",layoutId:\"Z32UBWtAL\",style:{width:\"100%\"},tiuec7fmF:\"See more\",TqFYFmIGq:false,variant:\"ZtAq7pJv4\",width:\"100%\",YnJUmzZWl:resolvedLinks[0]})})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kahugv\",\"data-framer-name\":\"Card\",whileHover:animation,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:129,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+976+80+0+190.39999999999998+0+0+20+0),pixelHeight:153,pixelWidth:291,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8mkZBPHvoNc2RahXfo6WDkRQ.png\"}},UGT3ZRkKD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:129,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+985+60+0+0+180.39999999999998+0+221+20+0),pixelHeight:153,pixelWidth:291,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8mkZBPHvoNc2RahXfo6WDkRQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:129,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+941+80+0+192.39999999999998+0+0+20+0),pixelHeight:153,pixelWidth:291,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8mkZBPHvoNc2RahXfo6WDkRQ.png\"},className:\"framer-1jt6ui5\",\"data-framer-name\":\"Captura de pantalla 2025-01-31 a las 11.06.35\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t3vdom\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{style:{\"--font-selector\":\"R0Y7QW1pa28tNjAw\",\"--framer-font-family\":'\"Amiko\", \"Amiko Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-93085fe3-7414-4533-831f-04469551f32a, rgb(1, 127, 162))\"},children:[\"Hull Cleaning with ROV or Divers\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-1c90x69\",fonts:[\"GF;Amiko-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"HBFvtFNTq\"},implicitPathVariables:undefined},{href:{webPageId:\"HBFvtFNTq\"},implicitPathVariables:undefined},{href:{webPageId:\"HBFvtFNTq\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 40px) / 3, 82px) - 40px)`,y:(componentViewport?.y||0)+0+976+80+0+190.39999999999998+0+0+20+173},UGT3ZRkKD:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 100px, 1440px) - 40px)`,y:(componentViewport?.y||0)+0+985+60+0+0+180.39999999999998+0+221+20+101}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 76px) / 5, 49px) - 40px)`,y:(componentViewport?.y||0)+0+941+80+0+192.39999999999998+0+0+20+173,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mjtba2-container\",nodeId:\"Glxyxp1yp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{YnJUmzZWl:resolvedLinks1[1]},UGT3ZRkKD:{YnJUmzZWl:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{eItaE7B5H:false,height:\"100%\",id:\"Glxyxp1yp\",layoutId:\"Glxyxp1yp\",style:{width:\"100%\"},tiuec7fmF:\"See more\",TqFYFmIGq:false,variant:\"ZtAq7pJv4\",width:\"100%\",YnJUmzZWl:resolvedLinks1[0]})})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tymoot\",\"data-framer-name\":\"Card\",whileHover:animation,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:93,intrinsicWidth:113,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+976+80+0+190.39999999999998+0+0+20+0),pixelHeight:223,pixelWidth:227,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/isSP3J7GLdRIvIhlmJC3xh3usE.png\"}},UGT3ZRkKD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:93,intrinsicWidth:113,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+985+60+0+0+180.39999999999998+0+418+20+0),pixelHeight:223,pixelWidth:227,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/isSP3J7GLdRIvIhlmJC3xh3usE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:93,intrinsicWidth:113,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+941+80+0+192.39999999999998+0+0+20+0),pixelHeight:223,pixelWidth:227,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/isSP3J7GLdRIvIhlmJC3xh3usE.png\"},className:\"framer-1xtfg89\",\"data-framer-name\":\"Captura de pantalla 2025-01-31 a las 11.06.43\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vl6n0i\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{style:{\"--font-selector\":\"R0Y7QW1pa28tNjAw\",\"--framer-font-family\":'\"Amiko\", \"Amiko Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-8836e3a1-694b-4b03-92d5-ae63c2f33579, rgb(245, 245, 245))\"},children:[\"Propeller Cleaning and Polishing\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-vyu2rf\",fonts:[\"GF;Amiko-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mpujkgUJI\"},implicitPathVariables:undefined},{href:{webPageId:\"mpujkgUJI\"},implicitPathVariables:undefined},{href:{webPageId:\"mpujkgUJI\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 40px) / 3, 82px) - 40px)`,y:(componentViewport?.y||0)+0+976+80+0+190.39999999999998+0+0+20+173},UGT3ZRkKD:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 100px, 1440px) - 40px)`,y:(componentViewport?.y||0)+0+985+60+0+0+180.39999999999998+0+418+20+101}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 76px) / 5, 49px) - 40px)`,y:(componentViewport?.y||0)+0+941+80+0+192.39999999999998+0+0+20+173,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mxer46-container\",nodeId:\"dUGN7fQKt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{YnJUmzZWl:resolvedLinks2[1]},UGT3ZRkKD:{YnJUmzZWl:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{eItaE7B5H:false,height:\"100%\",id:\"dUGN7fQKt\",layoutId:\"dUGN7fQKt\",style:{width:\"100%\"},tiuec7fmF:\"See more\",TqFYFmIGq:false,variant:\"ZtAq7pJv4\",width:\"100%\",YnJUmzZWl:resolvedLinks2[0]})})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cuvgm0\",\"data-framer-name\":\"Card\",whileHover:animation,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:108,intrinsicWidth:112,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+976+80+0+190.39999999999998+0+277+20+0),pixelHeight:207,pixelWidth:141,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GcW3LYoBunseHIjBaINARmTq1bo.png\"}},UGT3ZRkKD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:108,intrinsicWidth:112,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+985+60+0+0+180.39999999999998+0+615+20+0),pixelHeight:207,pixelWidth:141,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GcW3LYoBunseHIjBaINARmTq1bo.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:108,intrinsicWidth:112,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+941+80+0+192.39999999999998+0+0+20+0),pixelHeight:207,pixelWidth:141,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GcW3LYoBunseHIjBaINARmTq1bo.png\"},className:\"framer-2j5yut\",\"data-framer-name\":\"Captura de pantalla 2025-01-31 a las 11.07.18\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bsldx9\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{style:{\"--font-selector\":\"R0Y7QW1pa28tNjAw\",\"--framer-font-family\":'\"Amiko\", \"Amiko Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-8836e3a1-694b-4b03-92d5-ae63c2f33579, rgb(245, 245, 245))\"},children:[\"Underwater & Afloat Internal\",/*#__PURE__*/_jsx(\"br\",{}),\"Repairs\"]})}),className:\"framer-1buzzlc\",fonts:[\"GF;Amiko-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"y4mTEM29f\"},implicitPathVariables:undefined},{href:{webPageId:\"y4mTEM29f\"},implicitPathVariables:undefined},{href:{webPageId:\"y4mTEM29f\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 40px) / 3, 82px) - 40px)`,y:(componentViewport?.y||0)+0+976+80+0+190.39999999999998+0+277+20+172.5},UGT3ZRkKD:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 100px, 1440px) - 40px)`,y:(componentViewport?.y||0)+0+985+60+0+0+180.39999999999998+0+615+20+125}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 76px) / 5, 49px) - 40px)`,y:(componentViewport?.y||0)+0+941+80+0+192.39999999999998+0+0+20+172.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tf0kxl-container\",nodeId:\"iLFLIW2ph\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{YnJUmzZWl:resolvedLinks3[1]},UGT3ZRkKD:{YnJUmzZWl:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{eItaE7B5H:false,height:\"100%\",id:\"iLFLIW2ph\",layoutId:\"iLFLIW2ph\",style:{width:\"100%\"},tiuec7fmF:\"See more\",TqFYFmIGq:false,variant:\"ZtAq7pJv4\",width:\"100%\",YnJUmzZWl:resolvedLinks3[0]})})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w4enu8\",\"data-framer-name\":\"Card\",whileHover:animation,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:56.5,intrinsicWidth:56,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+976+80+0+190.39999999999998+0+277+20+0),pixelHeight:113,pixelWidth:112,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AKyE4KGfZxSCe6UTEduApivRes.png\"}},UGT3ZRkKD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:56.5,intrinsicWidth:56,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+985+60+0+0+180.39999999999998+0+836+20+0),pixelHeight:113,pixelWidth:112,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AKyE4KGfZxSCe6UTEduApivRes.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:56.5,intrinsicWidth:56,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+941+80+0+192.39999999999998+0+0+20+0),pixelHeight:113,pixelWidth:112,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AKyE4KGfZxSCe6UTEduApivRes.png\"},className:\"framer-jki13c\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7khs3n\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{style:{\"--font-selector\":\"R0Y7QW1pa28tNjAw\",\"--framer-font-family\":'\"Amiko\", \"Amiko Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-93085fe3-7414-4533-831f-04469551f32a, rgb(1, 127, 162))\"},children:[\"Gibunco Group\",/*#__PURE__*/_jsx(\"br\",{}),\"Services\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-1qy6vva\",fonts:[\"GF;Amiko-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":TFHKynQr0\",webPageId:\"Lt5RzXyCP\"},implicitPathVariables:undefined},{href:{hash:\":TFHKynQr0\",webPageId:\"Lt5RzXyCP\"},implicitPathVariables:undefined},{href:{hash:\":TFHKynQr0\",webPageId:\"Lt5RzXyCP\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 40px) / 3, 82px) - 40px)`,y:(componentViewport?.y||0)+0+976+80+0+190.39999999999998+0+277+20+172.5},UGT3ZRkKD:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 100px, 1440px) - 40px)`,y:(componentViewport?.y||0)+0+985+60+0+0+180.39999999999998+0+836+20+125}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 76px) / 5, 49px) - 40px)`,y:(componentViewport?.y||0)+0+941+80+0+192.39999999999998+0+0+20+172.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19h4y2n-container\",nodeId:\"zUr9I2QnS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{YnJUmzZWl:resolvedLinks4[1]},UGT3ZRkKD:{YnJUmzZWl:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{eItaE7B5H:false,height:\"100%\",id:\"zUr9I2QnS\",layoutId:\"zUr9I2QnS\",style:{width:\"100%\"},tiuec7fmF:\"See more\",TqFYFmIGq:false,variant:\"ZtAq7pJv4\",width:\"100%\",YnJUmzZWl:resolvedLinks4[0]})})})})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1663s1n\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fttiim-container\",isModuleExternal:true,nodeId:\"m_XF_Kpcx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"m_XF_Kpcx\",layoutId:\"m_XF_Kpcx\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:311,pixelHeight:400,pixelWidth:622,sizes:\"427.625px\",src:\"https://framerusercontent.com/images/tmEdcLpFtrXY16mwtcjMzH3xE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/tmEdcLpFtrXY16mwtcjMzH3xE.png?scale-down-to=512 512w,https://framerusercontent.com/images/tmEdcLpFtrXY16mwtcjMzH3xE.png 622w\"},className:\"framer-stb8gq\",\"data-framer-name\":\"Captura de pantalla 2025-01-21 a las 22.55.08\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:204,intrinsicWidth:312,pixelHeight:408,pixelWidth:624,sizes:\"428.2353px\",src:\"https://framerusercontent.com/images/nBNxtLUr8ooqQmjdJJPehtXOUg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nBNxtLUr8ooqQmjdJJPehtXOUg.png?scale-down-to=512 512w,https://framerusercontent.com/images/nBNxtLUr8ooqQmjdJJPehtXOUg.png 624w\"},className:\"framer-1el2423\",\"data-framer-name\":\"Captura de pantalla 2025-01-21 a las 22.55.16\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:204,intrinsicWidth:325,pixelHeight:408,pixelWidth:650,sizes:\"446px\",src:\"https://framerusercontent.com/images/6dS5KzDM5WYp8TdIaO4TLil5Tg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6dS5KzDM5WYp8TdIaO4TLil5Tg.png?scale-down-to=512 512w,https://framerusercontent.com/images/6dS5KzDM5WYp8TdIaO4TLil5Tg.png 650w\"},className:\"framer-cnnysb\",\"data-framer-name\":\"Captura de pantalla 2025-01-21 a las 22.55.25\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:204,intrinsicWidth:325,pixelHeight:842,pixelWidth:1054,sizes:\"446px\",src:\"https://framerusercontent.com/images/kLCdgKpQtz1E6jeOK2LlkeCAM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/kLCdgKpQtz1E6jeOK2LlkeCAM.png?scale-down-to=512 512w,https://framerusercontent.com/images/kLCdgKpQtz1E6jeOK2LlkeCAM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kLCdgKpQtz1E6jeOK2LlkeCAM.png 1054w\"},className:\"framer-toskf\",\"data-framer-name\":\"Captura de pantalla 2025-01-21 a las 22.55.25\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:204,intrinsicWidth:325,pixelHeight:1056,pixelWidth:1610,sizes:\"446px\",src:\"https://framerusercontent.com/images/T6efz82x0ZK92DnLkznoIG2K8JE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/T6efz82x0ZK92DnLkznoIG2K8JE.png?scale-down-to=512 512w,https://framerusercontent.com/images/T6efz82x0ZK92DnLkznoIG2K8JE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/T6efz82x0ZK92DnLkznoIG2K8JE.png 1610w\"},className:\"framer-93abw8\",\"data-framer-name\":\"Captura de pantalla 2025-01-21 a las 22.55.25\"})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1ei98kt\",\"data-framer-name\":\"About\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-wn0ku1\",\"data-framer-name\":\"Inner\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ssj3nh\",\"data-framer-name\":\"Details\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s9mptn\",\"data-framer-name\":\"Value\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:204,intrinsicWidth:325,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2189.4+80+0+0+0+0+0+0),pixelHeight:1316,pixelWidth:1872,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px)`,src:\"https://framerusercontent.com/images/1cQ0gSFVzAhbkufx0coUWJ37I1I.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1cQ0gSFVzAhbkufx0coUWJ37I1I.png?scale-down-to=512 512w,https://framerusercontent.com/images/1cQ0gSFVzAhbkufx0coUWJ37I1I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1cQ0gSFVzAhbkufx0coUWJ37I1I.png 1872w\"}},UGT3ZRkKD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:204,intrinsicWidth:325,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2657.4+60+0+0+0+0+0+0),pixelHeight:1316,pixelWidth:1872,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px)`,src:\"https://framerusercontent.com/images/1cQ0gSFVzAhbkufx0coUWJ37I1I.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1cQ0gSFVzAhbkufx0coUWJ37I1I.png?scale-down-to=512 512w,https://framerusercontent.com/images/1cQ0gSFVzAhbkufx0coUWJ37I1I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1cQ0gSFVzAhbkufx0coUWJ37I1I.png 1872w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:204,intrinsicWidth:325,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1894.4+80+0+0+0+0+0),pixelHeight:1316,pixelWidth:1872,positionX:\"center\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 60px) / 2, 1px)`,src:\"https://framerusercontent.com/images/1cQ0gSFVzAhbkufx0coUWJ37I1I.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1cQ0gSFVzAhbkufx0coUWJ37I1I.png?scale-down-to=512 512w,https://framerusercontent.com/images/1cQ0gSFVzAhbkufx0coUWJ37I1I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1cQ0gSFVzAhbkufx0coUWJ37I1I.png 1872w\"},className:\"framer-3hl9zp\",\"data-framer-name\":\"Captura de pantalla 2025-01-21 a las 22.55.25\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19lazzl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1nkx45l\",\"data-styles-preset\":\"UMMMGlfb6\",style:{\"--framer-text-color\":\"var(--token-93085fe3-7414-4533-831f-04469551f32a, rgb(1, 127, 162))\"},children:\"Extensive worldwide coverage\"})}),className:\"framer-z15qgo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o23fw1\",\"data-framer-name\":\"Stats content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{y:(componentViewport?.y||0)+0+2189.4+80+0+0+0+0+0+330+0+70.4+0},UGT3ZRkKD:{y:(componentViewport?.y||0)+0+2657.4+60+0+0+0+0+0+320+0+70.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,y:(componentViewport?.y||0)+0+1894.4+80+0+0+0+0+0+0+70.4+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-iyy1ci-container\",\"data-framer-appear-id\":\"iyy1ci\",initial:animation2,nodeId:\"JNvdzOm2d\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UGT3ZRkKD:{variant:\"PUYoTKiRO\"}},children:/*#__PURE__*/_jsx(WidgetStats,{height:\"100%\",ICqotSctS:\"Client Projects\",id:\"JNvdzOm2d\",Ke261DEj7:200,layoutId:\"JNvdzOm2d\",variant:\"g6bcPhbcM\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-95v0yc hidden-1dckcc3 hidden-tmqdfs\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{y:(componentViewport?.y||0)+0+2189.4+80+0+0+0+0+0+330+0+70.4+0},UGT3ZRkKD:{y:(componentViewport?.y||0)+0+2657.4+60+0+0+0+0+0+320+0+70.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,y:(componentViewport?.y||0)+0+1894.4+80+0+0+0+0+0+0+70.4+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-17nga4k-container\",\"data-framer-appear-id\":\"17nga4k\",initial:animation2,nodeId:\"VS9yAlhff\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(WidgetStats,{height:\"100%\",ICqotSctS:\"Experts Employed\",id:\"VS9yAlhff\",Ke261DEj7:500,layoutId:\"VS9yAlhff\",variant:\"g6bcPhbcM\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rifqpc\",\"data-styles-preset\":\"fLN0Fm3uI\",style:{\"--framer-text-color\":\"var(--token-10171a3c-8ac1-4aca-a5b3-9f27665289a0, rgba(34, 34, 34, 0.8))\"},children:\"Besides its physical locations in Gibraltar, Algeciras, Las Palmas and Fujairah, SCAMP operates in over 300 major maritime locations around the world through its Underwater Services Worldwide Network, specializing in hull maintenance and fuel conservation. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rifqpc\",\"data-styles-preset\":\"fLN0Fm3uI\",style:{\"--framer-text-color\":\"var(--token-10171a3c-8ac1-4aca-a5b3-9f27665289a0, rgba(34, 34, 34, 0.8))\"},children:\"Managed from our Coordination Centre in Gibraltar, we offer swift and bespoke solutions to our principals\u2019 underwater requirements through our own means and through our extensive worldwide network of associates.\"})]}),className:\"framer-17e6qu4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"f_6EW0_Ip\"},implicitPathVariables:undefined},{href:{webPageId:\"f_6EW0_Ip\"},implicitPathVariables:undefined},{href:{webPageId:\"f_6EW0_Ip\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{y:(componentViewport?.y||0)+0+2189.4+80+0+0+0+0+0+330+0+439.4},UGT3ZRkKD:{y:(componentViewport?.y||0)+0+2657.4+60+0+0+0+0+0+320+0+439.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:(componentViewport?.y||0)+0+1894.4+80+0+0+0+0+0+0+439.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12yslq9-container\",nodeId:\"klTdfggPe\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{YnJUmzZWl:resolvedLinks5[1]},UGT3ZRkKD:{YnJUmzZWl:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{eItaE7B5H:false,height:\"100%\",id:\"klTdfggPe\",layoutId:\"klTdfggPe\",tiuec7fmF:\"More About Us\",TqFYFmIGq:false,variant:\"ZtAq7pJv4\",width:\"100%\",YnJUmzZWl:resolvedLinks5[0]})})})})})})]})]})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-13vcq01\",\"data-framer-name\":\"Client\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5j9nnn\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cbzvi3\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-12rztn0\",\"data-styles-preset\":\"TsnfqRFLw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-93085fe3-7414-4533-831f-04469551f32a, rgb(1, 127, 162))\"},children:\"Certificates\"})}),className:\"framer-1qjl3n9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{width:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+3105.8+80+0+83.19999999999999},UGT3ZRkKD:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+3533.8+60+0+73.19999999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,width:`min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+2500.8+84+0+78.19999999999999,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pux1n9-container\",nodeId:\"ov_PiDojJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TickerLogo,{height:\"100%\",id:\"ov_PiDojJ\",layoutId:\"ov_PiDojJ\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":LQVWbZRos\",webPageId:\"f_6EW0_Ip\"},implicitPathVariables:undefined},{href:{hash:\":LQVWbZRos\",webPageId:\"f_6EW0_Ip\"},implicitPathVariables:undefined},{href:{hash:\":LQVWbZRos\",webPageId:\"f_6EW0_Ip\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{y:(componentViewport?.y||0)+0+3105.8+80+0+230.2},UGT3ZRkKD:{y:(componentViewport?.y||0)+0+3533.8+60+0+210.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:(componentViewport?.y||0)+0+2500.8+84+0+220.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-z5bmtw-container\",nodeId:\"OPNGVnGQz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{YnJUmzZWl:resolvedLinks6[1]},UGT3ZRkKD:{YnJUmzZWl:resolvedLinks6[2]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{eItaE7B5H:false,height:\"100%\",id:\"OPNGVnGQz\",layoutId:\"OPNGVnGQz\",tiuec7fmF:\"Download\",TqFYFmIGq:false,variant:\"ZtAq7pJv4\",width:\"100%\",YnJUmzZWl:resolvedLinks6[0]})})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-szsr42\",\"data-framer-name\":\"Page Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:3456,intrinsicWidth:5184,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3533+0),pixelHeight:918,pixelWidth:1372,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/Hdk8KaU4XC3jwWxogodHWUdHGqg.png\",srcSet:\"https://framerusercontent.com/images/Hdk8KaU4XC3jwWxogodHWUdHGqg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Hdk8KaU4XC3jwWxogodHWUdHGqg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Hdk8KaU4XC3jwWxogodHWUdHGqg.png 1372w\"}},UGT3ZRkKD:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:3456,intrinsicWidth:5184,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3901+0),pixelHeight:918,pixelWidth:1372,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/Hdk8KaU4XC3jwWxogodHWUdHGqg.png\",srcSet:\"https://framerusercontent.com/images/Hdk8KaU4XC3jwWxogodHWUdHGqg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Hdk8KaU4XC3jwWxogodHWUdHGqg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Hdk8KaU4XC3jwWxogodHWUdHGqg.png 1372w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:50,__framer__parallaxTransformEnabled:true,__framer__speed:50,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:3456,intrinsicWidth:5184,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2926+0),pixelHeight:918,pixelWidth:1372,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/Hdk8KaU4XC3jwWxogodHWUdHGqg.png\",srcSet:\"https://framerusercontent.com/images/Hdk8KaU4XC3jwWxogodHWUdHGqg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Hdk8KaU4XC3jwWxogodHWUdHGqg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Hdk8KaU4XC3jwWxogodHWUdHGqg.png 1372w\"},className:\"framer-jkap6t\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1sz3oom\",\"data-framer-name\":\"Pricing\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yb2f2w\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ynthmz\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i1lbu4\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h2gy69\",\"data-framer-name\":\"Subtitle\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5ajwez\",\"data-framer-name\":\"Dots\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-up4y9c\",\"data-framer-name\":\"Dot\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1koso9e\",\"data-framer-name\":\"Dot\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ie0qcu\",\"data-styles-preset\":\"w36kSKJ5N\",children:\"ROV SOLUTIONS\"})}),className:\"framer-gy5jwm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nkx45l\",\"data-styles-preset\":\"UMMMGlfb6\",style:{\"--framer-text-color\":\"var(--token-93085fe3-7414-4533-831f-04469551f32a, rgb(1, 127, 162))\"},children:\"SCAMP-operated ROV cleans the hull in minimum time using rotating discs with high pressure nozzles\"})}),className:\"framer-1qbwzor\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rifqpc\",\"data-styles-preset\":\"fLN0Fm3uI\",style:{\"--framer-text-color\":\"var(--token-10171a3c-8ac1-4aca-a5b3-9f27665289a0, rgba(34, 34, 34, 0.8))\"},children:\"SCAMP-operated ROV is an innovative and world-leading hull cleaning solution that is eco-friendly, safe and gentle on vessels\u2019 hull paint. The ROV cleans the hull in minimal time using rotating discs with high-pressure water jets. The brushless and diverless cleaning technology avoids damage to the hull\u2019s coating during cleaning.\"})}),className:\"framer-10nw50o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15huf94\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ywev8d\",\"data-framer-name\":\"Card\",whileHover:animation,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2hnfyj\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gen51d\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-t5o2m0\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 38 38\"><path d=\"M 19 0 C 29.493 0 38 8.507 38 19 C 38 29.493 29.493 38 19 38 C 8.507 38 0 29.493 0 19 C 0 8.507 8.507 0 19 0 Z\" fill=\"var(--token-93085fe3-7414-4533-831f-04469551f32a, rgb(1, 127, 162)) /* {&quot;name&quot;:&quot;Blue&quot;} */\"></path></svg>',svgContentId:12811613117,withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4217+80+0+0+0+0+20+0+0+0+8.500000000000007),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/eYLM7K9p1762n2gyCoOYHUNlCVE.png\"}},UGT3ZRkKD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4201+40+0+229.2+0+0+20+0+0+0+8.500000000000007),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/eYLM7K9p1762n2gyCoOYHUNlCVE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3721+80+0+0+0+0+20+0+0+0+8.500000000000007),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/eYLM7K9p1762n2gyCoOYHUNlCVE.png\"},className:\"framer-eb8qkj\",\"data-framer-name\":\"Image\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-93085fe3-7414-4533-831f-04469551f32a, rgb(1, 127, 162))\"},children:\" SAFETY\"})}),className:\"framer-190qsqi\",fonts:[\"GF;DM Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ie0qcu\",\"data-styles-preset\":\"w36kSKJ5N\",style:{\"--framer-text-color\":\"var(--token-93085fe3-7414-4533-831f-04469551f32a, rgb(1, 127, 162))\"},children:\"Diverless hull vertical sides and flatbottom cleaning with ROV reducing the need for divers, hence mitigating risk.\"})}),className:\"framer-watjon\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mpciqn\",\"data-framer-name\":\"Card\",whileHover:animation,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7ovpun\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wjske2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1kgpofq\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 38 38\"><path d=\"M 19 0 C 29.493 0 38 8.507 38 19 C 38 29.493 29.493 38 19 38 C 8.507 38 0 29.493 0 19 C 0 8.507 8.507 0 19 0 Z\" fill=\"var(--token-93085fe3-7414-4533-831f-04469551f32a, rgb(1, 127, 162)) /* {&quot;name&quot;:&quot;Blue&quot;} */\"></path></svg>',svgContentId:11348848686,withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4217+80+0+0+0+219+20+0+0+0+8.000000000000007),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/emRIgxVuARY5BgePkGwHrGRGnz8.png\"}},UGT3ZRkKD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4201+40+0+229.2+0+200+20+0+0+0+8.000000000000007),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/emRIgxVuARY5BgePkGwHrGRGnz8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3721+80+0+0+0+0+20+0+0+0+8.000000000000007),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/emRIgxVuARY5BgePkGwHrGRGnz8.png\"},className:\"framer-c9eftw\",\"data-framer-name\":\"Image\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-93085fe3-7414-4533-831f-04469551f32a, rgb(1, 127, 162))\"},children:\"FASTER CLEANING\"})}),className:\"framer-1apfgl0\",fonts:[\"GF;DM Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ie0qcu\",\"data-styles-preset\":\"w36kSKJ5N\",style:{\"--framer-text-color\":\"var(--token-93085fe3-7414-4533-831f-04469551f32a, rgb(1, 127, 162))\"},children:\"Maximum cleaning speed 33m/min and cleaning width 1,2 meters.\"})}),className:\"framer-h3dmsl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fr49st\",\"data-framer-name\":\"Card\",whileHover:animation,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18goouc\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m59x3v\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-pjqtuo\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 38 38\"><path d=\"M 19 0 C 29.493 0 38 8.507 38 19 C 38 29.493 29.493 38 19 38 C 8.507 38 0 29.493 0 19 C 0 8.507 8.507 0 19 0 Z\" fill=\"var(--token-93085fe3-7414-4533-831f-04469551f32a, rgb(1, 127, 162)) /* {&quot;name&quot;:&quot;Blue&quot;} */\"></path></svg>',svgContentId:11348848686,withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4217+80+0+0+0+438+20+0+0+0+7.500000000000007),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/idUNkbngoFJuBt0ZR8MP1NYJPIc.png\"}},UGT3ZRkKD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4201+40+0+229.2+0+400.5+20+0+0+0+7.500000000000007),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/idUNkbngoFJuBt0ZR8MP1NYJPIc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3721+80+0+0+0+202.33333333333334+20+0+0+0+7.500000000000007),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/idUNkbngoFJuBt0ZR8MP1NYJPIc.png\"},className:\"framer-1ho0602\",\"data-framer-name\":\"Image\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-93085fe3-7414-4533-831f-04469551f32a, rgb(1, 127, 162))\"},children:\"24/7 ATTENDANCE\"})}),className:\"framer-pzpwnq\",fonts:[\"GF;DM Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ie0qcu\",\"data-styles-preset\":\"w36kSKJ5N\",style:{\"--framer-text-color\":\"var(--token-93085fe3-7414-4533-831f-04469551f32a, rgb(1, 127, 162))\"},children:\"Able to attend 24 hours a day, including night hours.\"})}),className:\"framer-1w71ga9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4805em\",\"data-framer-name\":\"Card\",whileHover:animation,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kvp5ea\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q3ivj4\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-fd2n65\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 38 38\"><path d=\"M 19 0 C 29.493 0 38 8.507 38 19 C 38 29.493 29.493 38 19 38 C 8.507 38 0 29.493 0 19 C 0 8.507 8.507 0 19 0 Z\" fill=\"var(--token-93085fe3-7414-4533-831f-04469551f32a, rgb(1, 127, 162)) /* {&quot;name&quot;:&quot;Blue&quot;} */\"></path></svg>',svgContentId:11348848686,withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4217+80+0+0+0+657+20+0+0+0+7.000000000000007),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/7LE5J7qZSCifnEe0brF36kxhZM.png\"}},UGT3ZRkKD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4201+40+0+229.2+0+600.5+20+0+0+0+7.000000000000007),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/7LE5J7qZSCifnEe0brF36kxhZM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3721+80+0+0+0+202.33333333333334+20+0+0+0+7.000000000000007),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/7LE5J7qZSCifnEe0brF36kxhZM.png\"},className:\"framer-u0gxw4\",\"data-framer-name\":\"Image\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-93085fe3-7414-4533-831f-04469551f32a, rgb(1, 127, 162))\"},children:\"ANTI-FOULING COATING CARE\"})}),className:\"framer-1cip6bk\",fonts:[\"GF;DM Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ie0qcu\",\"data-styles-preset\":\"w36kSKJ5N\",style:{\"--framer-text-color\":\"var(--token-93085fe3-7414-4533-831f-04469551f32a, rgb(1, 127, 162))\"},children:\"Waterjet brushless cleaning with adjustable water pressure to protect the antifouling coating.\"})}),className:\"framer-1tzs2oy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-56uodg\",\"data-framer-name\":\"Card\",whileHover:animation,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wqff5i\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vencty\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-yyzq3\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 38 38\"><path d=\"M 19 0 C 29.493 0 38 8.507 38 19 C 38 29.493 29.493 38 19 38 C 8.507 38 0 29.493 0 19 C 0 8.507 8.507 0 19 0 Z\" fill=\"var(--token-93085fe3-7414-4533-831f-04469551f32a, rgb(1, 127, 162)) /* {&quot;name&quot;:&quot;Blue&quot;} */\"></path></svg>',svgContentId:11348848686,withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4217+80+0+0+0+876+20+0+0+0+9.000000000000007),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/EargWubibld5qC6TukhIkjB5xFQ.png\"}},UGT3ZRkKD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4201+40+0+229.2+0+801+20+0+0+0+9.000000000000007),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/EargWubibld5qC6TukhIkjB5xFQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3721+80+0+0+0+404.6666666666667+20+0+0+0+9.000000000000007),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/EargWubibld5qC6TukhIkjB5xFQ.png\"},className:\"framer-obydic\",\"data-framer-name\":\"Image\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-93085fe3-7414-4533-831f-04469551f32a, rgb(1, 127, 162))\"},children:\"OPERATIONALLY FLEXIBLE\"})}),className:\"framer-1m6akuy\",fonts:[\"GF;DM Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ie0qcu\",\"data-styles-preset\":\"w36kSKJ5N\",style:{\"--framer-text-color\":\"var(--token-93085fe3-7414-4533-831f-04469551f32a, rgb(1, 127, 162))\"},children:\"Not restricted by draft. Able to perform hull cleaning concurrently with bunker operations and at non-restricted terminals and berths during cargo operations.\"})}),className:\"framer-vxm3o9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jy5ztw\",\"data-framer-name\":\"Card\",whileHover:animation,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fg41af\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y1wpuc\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-fzszcf\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 38 38\"><path d=\"M 19 0 C 29.493 0 38 8.507 38 19 C 38 29.493 29.493 38 19 38 C 8.507 38 0 29.493 0 19 C 0 8.507 8.507 0 19 0 Z\" fill=\"var(--token-93085fe3-7414-4533-831f-04469551f32a, rgb(1, 127, 162)) /* {&quot;name&quot;:&quot;Blue&quot;} */\"></path></svg>',svgContentId:9423506881,withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4217+80+0+0+0+1095+15+0+0+0+9.000000000000007),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/xB6HPSQl0PBqaBotrpYnLfx1o4.png\"}},UGT3ZRkKD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4201+40+0+229.2+0+1001.5+15+0+0+0+9.000000000000007),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/xB6HPSQl0PBqaBotrpYnLfx1o4.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3721+80+0+0+0+404.6666666666667+15+0+0+0+9.000000000000007),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/xB6HPSQl0PBqaBotrpYnLfx1o4.png\"},className:\"framer-1oxpr60\",\"data-framer-name\":\"Image\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-93085fe3-7414-4533-831f-04469551f32a, rgb(1, 127, 162))\"},children:\"ECO-FRIENDLY\"})}),className:\"framer-8mkb2z\",fonts:[\"GF;DM Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ie0qcu\",\"data-styles-preset\":\"w36kSKJ5N\",style:{\"--framer-text-color\":\"var(--token-93085fe3-7414-4533-831f-04469551f32a, rgb(1, 127, 162))\"},children:\"Minimizes impact on local ecosystem. Fouling is recovered whilst cleaning and responsibly disposed of on shore through the appropriate residue disposal channels.\"})}),className:\"framer-tnehw4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1viobmq\",\"data-framer-name\":\"Pricing\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1viv044\",\"data-framer-name\":\"Cover\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tvhpk5\",\"data-framer-name\":\"Inner\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ifwa7c\",\"data-framer-name\":\"Details\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1epvbvj\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1chrzd5\",\"data-framer-name\":\"Subtitle\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yz0j76\",\"data-framer-name\":\"Dots\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-179f40f\",\"data-framer-name\":\"Dot\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-31jsf6\",\"data-framer-name\":\"Dot\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ie0qcu\",\"data-styles-preset\":\"w36kSKJ5N\",style:{\"--framer-text-color\":\"var(--token-8836e3a1-694b-4b03-92d5-ae63c2f33579, rgb(252, 252, 252))\"},children:\"FAQ'S\"})}),className:\"framer-1s4t5ur\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1nkx45l\",\"data-styles-preset\":\"UMMMGlfb6\",style:{\"--framer-text-color\":\"var(--token-7461ce55-6f12-4826-9e0e-6df4baf980ed, rgb(255, 255, 255))\"},children:\"Can't find what you're looking for? Maybe this will help.\"})}),className:\"framer-k92zxg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ixsbe0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{width:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5672+30+0+195.39999999999998+0+0},UGT3ZRkKD:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5685.2+32+0+160.39999999999998+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 484px, 1px)`,y:(componentViewport?.y||0)+0+4469+80+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qs5ej5-container\",nodeId:\"lk8f3FkCZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"lk8f3FkCZ\",layoutId:\"lk8f3FkCZ\",style:{width:\"100%\"},T8rQFvSBR:\"Algeciras: 48 hrs / Gibraltar: 24 hrs\",variant:\"v5TY0iTLy\",W88zB8mIG:\"How much pre-notice is required to mobilize divers, equipment and obtain all necessary permissions to perform the job?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{width:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5672+30+0+195.39999999999998+0+87},UGT3ZRkKD:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5685.2+32+0+160.39999999999998+0+87}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 484px, 1px)`,y:(componentViewport?.y||0)+0+4469+80+0+0+87,children:/*#__PURE__*/_jsx(Container,{className:\"framer-weknt3-container\",nodeId:\"mjqmx5C1D\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"mjqmx5C1D\",layoutId:\"mjqmx5C1D\",style:{width:\"100%\"},T8rQFvSBR:\"Algeciras: 45 minutes / Gibraltar: 45 minutes\",variant:\"kDqntxQVK\",W88zB8mIG:\"What time does it take to mobilize the team and equipment from the port to the vessel?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{width:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5672+30+0+195.39999999999998+0+174},UGT3ZRkKD:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5685.2+32+0+160.39999999999998+0+174}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 484px, 1px)`,y:(componentViewport?.y||0)+0+4469+80+0+0+174,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3pwjwq-container\",nodeId:\"hUj3bKfJ1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"hUj3bKfJ1\",layoutId:\"hUj3bKfJ1\",style:{width:\"100%\"},T8rQFvSBR:\"We offer cleaning services with our ROV (adjustable high-pressure water jet system) and our Scamp Machine (a brushkart which may use steel or silicon brushes to clean depending on the vessel's hull coating and fouling)\",variant:\"kDqntxQVK\",W88zB8mIG:\"What cleaning methods do you have?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{width:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5672+30+0+195.39999999999998+0+261},UGT3ZRkKD:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5685.2+32+0+160.39999999999998+0+261}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 484px, 1px)`,y:(componentViewport?.y||0)+0+4469+80+0+0+261,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3tgdrw-container\",nodeId:\"sTDlmxzts\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"sTDlmxzts\",layoutId:\"sTDlmxzts\",style:{width:\"100%\"},T8rQFvSBR:\"Algeciras: Inner Anchorage and non-restricted berths (including both container terminals) / Gibraltar: Western Anchorage.\",variant:\"kDqntxQVK\",W88zB8mIG:\"Where is hull cleaning allowed?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{width:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5672+30+0+195.39999999999998+0+348},UGT3ZRkKD:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5685.2+32+0+160.39999999999998+0+348}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 484px, 1px)`,y:(componentViewport?.y||0)+0+4469+80+0+0+348,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m1oojq-container\",nodeId:\"pS46k7CS0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"pS46k7CS0\",layoutId:\"pS46k7CS0\",style:{width:\"100%\"},T8rQFvSBR:\"Divers in Algeciras will not clean vessel's flat bottom at Inner anchorage and/or non-restricted berths. However, as our system is diverlesss, we can clean flat bottoms, as well as the quay-facing vertical sides of berthed vessels.\",variant:\"kDqntxQVK\",W88zB8mIG:\"Can you clean flat bottoms?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{width:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5672+30+0+195.39999999999998+0+435},UGT3ZRkKD:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5685.2+32+0+160.39999999999998+0+435}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 484px, 1px)`,y:(componentViewport?.y||0)+0+4469+80+0+0+435,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h6bv2f-container\",nodeId:\"i0j0xDxoj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"i0j0xDxoj\",layoutId:\"i0j0xDxoj\",style:{width:\"100%\"},T8rQFvSBR:\"Yes, thanks to its high-quality visual and lighting systems, including sonar, it can clean during night hours. Thus, we are able to provide a real 24/7 service.\",variant:\"kDqntxQVK\",W88zB8mIG:\"Can the ROV clean during night hours?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{width:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5672+30+0+195.39999999999998+0+522},UGT3ZRkKD:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5685.2+32+0+160.39999999999998+0+522}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 484px, 1px)`,y:(componentViewport?.y||0)+0+4469+80+0+0+522,children:/*#__PURE__*/_jsx(Container,{className:\"framer-w1ovhk-container\",nodeId:\"e4nMdYfzF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"e4nMdYfzF\",layoutId:\"e4nMdYfzF\",style:{width:\"100%\"},T8rQFvSBR:\"Yes, the ROV is a diverless system, allowing for cleaning operations to be done concurrently with bunkering operations.\",variant:\"kDqntxQVK\",W88zB8mIG:\"Can the ROV clean during bunkering operations?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{width:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5672+30+0+195.39999999999998+0+609},UGT3ZRkKD:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5685.2+32+0+160.39999999999998+0+609}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 484px, 1px)`,y:(componentViewport?.y||0)+0+4469+80+0+0+609,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j4q8f-container\",nodeId:\"OhqYvuWMA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"OhqYvuWMA\",layoutId:\"OhqYvuWMA\",style:{width:\"100%\"},T8rQFvSBR:\"Yes, we are authorized to operate with the ROV at Algeciras's container terminals and non-restricted berths.\",variant:\"kDqntxQVK\",W88zB8mIG:\"Can the ROV clean during cargo operations?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{width:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5672+30+0+195.39999999999998+0+696},UGT3ZRkKD:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5685.2+32+0+160.39999999999998+0+696}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 484px, 1px)`,y:(componentViewport?.y||0)+0+4469+80+0+0+696,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ru6e0s-container\",nodeId:\"a_ubjogt_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"a_ubjogt_\",layoutId:\"a_ubjogt_\",style:{width:\"100%\"},T8rQFvSBR:\"Yes, the ROV may clean up to 1800 m2/hr, although the ideal operating speed allows for a thorough cleaning at 1200 m2/hr.\",variant:\"kDqntxQVK\",W88zB8mIG:\"Is it faster to clean with the ROV than manually with divers?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{width:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5672+30+0+195.39999999999998+0+783},UGT3ZRkKD:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5685.2+32+0+160.39999999999998+0+783}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 484px, 1px)`,y:(componentViewport?.y||0)+0+4469+80+0+0+783,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qirtqf-container\",nodeId:\"giuspTut6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"giuspTut6\",layoutId:\"giuspTut6\",style:{width:\"100%\"},T8rQFvSBR:\"Yes, it suctions the fouling debris through an umbilical cord which takes it through a filtering system where the water is filtered and returned to the sea, whilst the fouling is ground and collected on board our DSV to be disposed of through the regulated residue disposal channels.\",variant:\"kDqntxQVK\",W88zB8mIG:\"Does the ROV collect the fouling?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{width:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5672+30+0+195.39999999999998+0+870},UGT3ZRkKD:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5685.2+32+0+160.39999999999998+0+870}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 484px, 1px)`,y:(componentViewport?.y||0)+0+4469+80+0+0+870,children:/*#__PURE__*/_jsx(Container,{className:\"framer-z2b288-container\",nodeId:\"RaBGjZ8ZP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"RaBGjZ8ZP\",layoutId:\"RaBGjZ8ZP\",style:{width:\"100%\"},T8rQFvSBR:\"No, bilge keels and niche areas need to be cleaned manually by divers.\",variant:\"kDqntxQVK\",W88zB8mIG:\"Can the ROV clean the bilge keels, accute angles and niche areas?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{width:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5672+30+0+195.39999999999998+0+957},UGT3ZRkKD:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5685.2+32+0+160.39999999999998+0+957}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 484px, 1px)`,y:(componentViewport?.y||0)+0+4469+80+0+0+957,children:/*#__PURE__*/_jsx(Container,{className:\"framer-c1layv-container\",nodeId:\"eVmenV0zo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"eVmenV0zo\",layoutId:\"eVmenV0zo\",style:{width:\"100%\"},T8rQFvSBR:\"No, it doesn't. It can work continuously until maintenance may be needed.\",variant:\"kDqntxQVK\",W88zB8mIG:\"Does the ROV have an operating time limit?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{width:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5672+30+0+195.39999999999998+0+1044},UGT3ZRkKD:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5685.2+32+0+160.39999999999998+0+1044}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 484px, 1px)`,y:(componentViewport?.y||0)+0+4469+80+0+0+1044,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gtbutt-container\",nodeId:\"eJ4gZMPDA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"eJ4gZMPDA\",layoutId:\"eJ4gZMPDA\",style:{width:\"100%\"},T8rQFvSBR:\"Being a diverless cleaning system, it doesn't require divers in the water, hence mitigating the safety risks intrinsically involved when using divers.\",variant:\"kDqntxQVK\",W88zB8mIG:\"Do you require divers in the water to operate the ROV?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{width:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5672+30+0+195.39999999999998+0+1131},UGT3ZRkKD:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5685.2+32+0+160.39999999999998+0+1131}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1440px) - 484px, 1px)`,y:(componentViewport?.y||0)+0+4469+80+0+0+1131,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mg8bad-container\",nodeId:\"H1kI8GuiU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"H1kI8GuiU\",layoutId:\"H1kI8GuiU\",style:{width:\"100%\"},T8rQFvSBR:\"Link to certificates webpage.\",variant:\"kDqntxQVK\",W88zB8mIG:\"Under which classes are you certified?\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{y:(componentViewport?.y||0)+0+7143.4},UGT3ZRkKD:{y:(componentViewport?.y||0)+0+7125.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:204,width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,y:(componentViewport?.y||0)+0+5845,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gjp4nq-container\",nodeId:\"kNMByEFLV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFaK4ur5_:{variant:\"FNrN7fwyj\"},UGT3ZRkKD:{variant:\"QcCc21hxX\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"kNMByEFLV\",layoutId:\"kNMByEFLV\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"t5vSbIrRg\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XqTEg.framer-lux5qc, .framer-XqTEg .framer-lux5qc { display: block; }\",\".framer-XqTEg.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-7461ce55-6f12-4826-9e0e-6df4baf980ed, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-XqTEg .framer-1xxgefi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 8; }\",\".framer-XqTEg .framer-51msjn-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-XqTEg .framer-1vwjne5-container { flex: none; height: 545px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-ecqbz4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 50px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-15amfmo { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-XqTEg .framer-1ez4ad3 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-1t92ens { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: center; max-width: 900px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-XqTEg .framer-11akghs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-XqTEg .framer-e7msb1, .framer-XqTEg .framer-h2gy69 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-XqTEg .framer-1nghahj, .framer-XqTEg .framer-1dvsctt, .framer-XqTEg .framer-5ajwez, .framer-XqTEg .framer-yz0j76 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-XqTEg .framer-534xp5, .framer-XqTEg .framer-up4y9c { aspect-ratio: 1 / 1; background-color: var(--token-93085fe3-7414-4533-831f-04469551f32a, #017fa2); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: var(--framer-aspect-ratio-supported, 14px); overflow: hidden; position: relative; width: 14px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XqTEg .framer-1gpl98g, .framer-XqTEg .framer-1fy7u1z, .framer-XqTEg .framer-1koso9e, .framer-XqTEg .framer-31jsf6 { aspect-ratio: 1 / 1; background-color: var(--token-574f2827-95f9-4f92-96d5-13fc6d1080ab, #fcc700); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: var(--framer-aspect-ratio-supported, 14px); overflow: hidden; position: relative; width: 14px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XqTEg .framer-iadrdo, .framer-XqTEg .framer-1qjl3n9, .framer-XqTEg .framer-gy5jwm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-XqTEg .framer-egthcg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 600px; word-break: break-word; word-wrap: break-word; }\",\".framer-XqTEg .framer-14w3h9g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 417px; }\",\".framer-XqTEg .framer-3fcmfw, .framer-XqTEg .framer-tu5lyk, .framer-XqTEg .framer-u68b2a, .framer-XqTEg .framer-1c90x69, .framer-XqTEg .framer-vyu2rf, .framer-XqTEg .framer-1buzzlc, .framer-XqTEg .framer-1qy6vva, .framer-XqTEg .framer-z15qgo, .framer-XqTEg .framer-17e6qu4, .framer-XqTEg .framer-1qbwzor, .framer-XqTEg .framer-10nw50o, .framer-XqTEg .framer-190qsqi, .framer-XqTEg .framer-watjon, .framer-XqTEg .framer-1apfgl0, .framer-XqTEg .framer-h3dmsl, .framer-XqTEg .framer-pzpwnq, .framer-XqTEg .framer-1w71ga9, .framer-XqTEg .framer-1cip6bk, .framer-XqTEg .framer-1tzs2oy, .framer-XqTEg .framer-1m6akuy, .framer-XqTEg .framer-vxm3o9, .framer-XqTEg .framer-8mkb2z, .framer-XqTEg .framer-tnehw4, .framer-XqTEg .framer-k92zxg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-XqTEg .framer-1nwbwke-container, .framer-XqTEg .framer-iyy1ci-container, .framer-XqTEg .framer-17nga4k-container, .framer-XqTEg .framer-12yslq9-container, .framer-XqTEg .framer-z5bmtw-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-XqTEg .framer-1khsg92 { align-content: center; align-items: center; background-color: var(--token-93085fe3-7414-4533-831f-04469551f32a, #017fa2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 80px 50px 30px 50px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-17wfpeh { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-XqTEg .framer-ak116e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-pl6hgm, .framer-XqTEg .framer-szsr42, .framer-XqTEg .framer-1chrzd5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-yckbyf, .framer-XqTEg .framer-179f40f { aspect-ratio: 1 / 1; background-color: var(--token-7461ce55-6f12-4826-9e0e-6df4baf980ed, #ffffff); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: var(--framer-aspect-ratio-supported, 14px); overflow: hidden; position: relative; width: 14px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XqTEg .framer-1ow7vmj, .framer-XqTEg .framer-1s4t5ur { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-XqTEg .framer-1ato17l { display: grid; flex: none; gap: 19px; grid-auto-rows: 200px; grid-template-columns: repeat(5, minmax(49px, 1fr)); grid-template-rows: repeat(1, 200px); height: 257px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-q6tmxe, .framer-XqTEg .framer-1cuvgm0 { align-content: flex-start; align-items: flex-start; align-self: start; background-color: #31b1bd; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 250px; justify-content: space-between; justify-self: start; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-1jy1vhc { aspect-ratio: 0.9010989010989011 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 61px); overflow: visible; position: relative; width: 55px; }\",\".framer-XqTEg .framer-1lso4fl, .framer-XqTEg .framer-t3vdom, .framer-XqTEg .framer-1vl6n0i, .framer-XqTEg .framer-bsldx9, .framer-XqTEg .framer-7khs3n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-fqa0p7-container, .framer-XqTEg .framer-mjtba2-container, .framer-XqTEg .framer-mxer46-container, .framer-XqTEg .framer-tf0kxl-container, .framer-XqTEg .framer-19h4y2n-container, .framer-XqTEg .framer-1qs5ej5-container, .framer-XqTEg .framer-weknt3-container, .framer-XqTEg .framer-3pwjwq-container, .framer-XqTEg .framer-3tgdrw-container, .framer-XqTEg .framer-m1oojq-container, .framer-XqTEg .framer-1h6bv2f-container, .framer-XqTEg .framer-w1ovhk-container, .framer-XqTEg .framer-1j4q8f-container, .framer-XqTEg .framer-1ru6e0s-container, .framer-XqTEg .framer-1qirtqf-container, .framer-XqTEg .framer-z2b288-container, .framer-XqTEg .framer-c1layv-container, .framer-XqTEg .framer-1gtbutt-container, .framer-XqTEg .framer-1mg8bad-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-XqTEg .framer-1kahugv, .framer-XqTEg .framer-1w4enu8 { align-content: flex-start; align-items: flex-start; align-self: start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 250px; justify-content: space-between; justify-self: start; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-1jt6ui5 { aspect-ratio: 1.29 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 61px); overflow: visible; position: relative; width: 79px; }\",\".framer-XqTEg .framer-1tymoot { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-574f2827-95f9-4f92-96d5-13fc6d1080ab, #fcc700); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 250px; justify-content: space-between; justify-self: start; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-1xtfg89 { aspect-ratio: 1.2150537634408602 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 61px); overflow: visible; position: relative; width: 74px; }\",\".framer-XqTEg .framer-2j5yut { aspect-ratio: 1.037037037037037 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 61px); overflow: visible; position: relative; width: 63px; }\",\".framer-XqTEg .framer-jki13c { flex: none; height: 61px; overflow: visible; position: relative; width: 60px; }\",\".framer-XqTEg .framer-1663s1n { align-content: center; align-items: center; background-color: var(--token-93085fe3-7414-4533-831f-04469551f32a, #017fa2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-fttiim-container { flex: 1 0 0px; height: 334px; position: relative; width: 1px; }\",\".framer-XqTEg .framer-stb8gq { aspect-ratio: 1.555 / 1; height: var(--framer-aspect-ratio-supported, 275px); overflow: visible; position: relative; width: 427px; }\",\".framer-XqTEg .framer-1el2423 { aspect-ratio: 1.5294117647058822 / 1; height: var(--framer-aspect-ratio-supported, 280px); overflow: visible; position: relative; width: 428px; }\",\".framer-XqTEg .framer-cnnysb, .framer-XqTEg .framer-toskf, .framer-XqTEg .framer-93abw8 { aspect-ratio: 1.5931372549019607 / 1; height: var(--framer-aspect-ratio-supported, 280px); overflow: visible; position: relative; width: 446px; }\",\".framer-XqTEg .framer-1ei98kt { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 50px 50px 50px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-wn0ku1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-XqTEg .framer-1ssj3nh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-1s9mptn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-3hl9zp { aspect-ratio: 1.5931372549019607 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 326px); overflow: visible; position: relative; width: 1px; }\",\".framer-XqTEg .framer-19lazzl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-XqTEg .framer-1o23fw1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-95v0yc { background-color: var(--token-2a6a9187-6918-4d5b-a7c3-63ec8205f558, #c1c1c1); flex: none; height: 70px; overflow: hidden; position: relative; width: 1px; }\",\".framer-XqTEg .framer-13vcq01 { align-content: center; align-items: center; background-color: var(--token-8836e3a1-694b-4b03-92d5-ae63c2f33579, #fcfcfc); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 84px 50px 84px 50px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-5j9nnn { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-XqTEg .framer-1cbzvi3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-1pux1n9-container { flex: none; height: 107px; opacity: 0.75; position: relative; width: 100%; }\",\".framer-XqTEg .framer-jkap6t { flex: 1 0 0px; height: 795px; overflow: visible; position: relative; width: 1px; }\",\".framer-XqTEg .framer-1sz3oom { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 50px 80px 50px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-1yb2f2w { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-XqTEg .framer-ynthmz { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-XqTEg .framer-1i1lbu4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-15huf94 { display: grid; flex: 1 0 0px; gap: 19px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(49px, 1fr)); grid-template-rows: repeat(3, minmax(0, 1fr)); height: 588px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-XqTEg .framer-ywev8d, .framer-XqTEg .framer-1fr49st, .framer-XqTEg .framer-4805em, .framer-XqTEg .framer-56uodg { align-content: center; align-items: center; align-self: start; background-color: var(--token-8836e3a1-694b-4b03-92d5-ae63c2f33579, #fcfcfc); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-2hnfyj, .framer-XqTEg .framer-7ovpun, .framer-XqTEg .framer-18goouc, .framer-XqTEg .framer-1kvp5ea, .framer-XqTEg .framer-1wqff5i, .framer-XqTEg .framer-1fg41af { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-gen51d, .framer-XqTEg .framer-wjske2, .framer-XqTEg .framer-m59x3v, .framer-XqTEg .framer-q3ivj4, .framer-XqTEg .framer-1vencty, .framer-XqTEg .framer-1y1wpuc { flex: none; height: 39px; overflow: hidden; position: relative; width: 38px; }\",\".framer-XqTEg .framer-t5o2m0, .framer-XqTEg .framer-1kgpofq, .framer-XqTEg .framer-pjqtuo, .framer-XqTEg .framer-fd2n65, .framer-XqTEg .framer-yyzq3, .framer-XqTEg .framer-fzszcf { bottom: 0px; flex: none; height: 38px; left: calc(50.00000000000002% - 38px / 2); position: absolute; width: 38px; }\",\".framer-XqTEg .framer-eb8qkj { -webkit-filter: invert(0); aspect-ratio: 1 / 1; filter: invert(0); flex: none; height: var(--framer-aspect-ratio-supported, 23px); left: 50%; overflow: visible; position: absolute; top: 51%; transform: translate(-50%, -50%); width: 23px; z-index: 1; }\",\".framer-XqTEg .framer-mpciqn { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-8836e3a1-694b-4b03-92d5-ae63c2f33579, #fcfcfc); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-c9eftw { -webkit-filter: invert(0); aspect-ratio: 1 / 1; filter: invert(0); flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 50%; overflow: visible; position: absolute; top: 51%; transform: translate(-50%, -50%); width: 24px; z-index: 1; }\",\".framer-XqTEg .framer-1ho0602 { -webkit-filter: invert(0); aspect-ratio: 1 / 1; filter: invert(0); flex: none; height: var(--framer-aspect-ratio-supported, 25px); left: 50%; overflow: visible; position: absolute; top: 51%; transform: translate(-50%, -50%); width: 25px; z-index: 1; }\",\".framer-XqTEg .framer-u0gxw4 { -webkit-filter: invert(0); aspect-ratio: 1 / 1; filter: invert(0); flex: none; height: var(--framer-aspect-ratio-supported, 26px); left: 50%; overflow: visible; position: absolute; top: 51%; transform: translate(-50%, -50%); width: 26px; z-index: 1; }\",\".framer-XqTEg .framer-obydic, .framer-XqTEg .framer-1oxpr60 { -webkit-filter: invert(0); aspect-ratio: 1 / 1; filter: invert(0); flex: none; height: var(--framer-aspect-ratio-supported, 22px); left: 50%; overflow: visible; position: absolute; top: 51%; transform: translate(-50%, -50%); width: 22px; z-index: 1; }\",\".framer-XqTEg .framer-1jy5ztw { align-content: center; align-items: center; align-self: start; background-color: var(--token-8836e3a1-694b-4b03-92d5-ae63c2f33579, #fcfcfc); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 15px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-1viobmq { align-content: center; align-items: center; background-color: var(--token-93085fe3-7414-4533-831f-04469551f32a, #017fa2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 50px 80px 50px; position: relative; width: 100%; }\",\".framer-XqTEg .framer-1viv044 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-XqTEg .framer-1tvhpk5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 439px; }\",\".framer-XqTEg .framer-1ifwa7c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-XqTEg .framer-1epvbvj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 445px; }\",\".framer-XqTEg .framer-ixsbe0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-XqTEg .framer-1gjp4nq-container { flex: none; height: auto; max-width: 1440px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-XqTEg.framer-72rtr7, .framer-XqTEg .framer-1xxgefi, .framer-XqTEg .framer-ecqbz4, .framer-XqTEg .framer-15amfmo, .framer-XqTEg .framer-1t92ens, .framer-XqTEg .framer-11akghs, .framer-XqTEg .framer-e7msb1, .framer-XqTEg .framer-1nghahj, .framer-XqTEg .framer-14w3h9g, .framer-XqTEg .framer-1khsg92, .framer-XqTEg .framer-17wfpeh, .framer-XqTEg .framer-ak116e, .framer-XqTEg .framer-pl6hgm, .framer-XqTEg .framer-1dvsctt, .framer-XqTEg .framer-1lso4fl, .framer-XqTEg .framer-t3vdom, .framer-XqTEg .framer-1vl6n0i, .framer-XqTEg .framer-bsldx9, .framer-XqTEg .framer-7khs3n, .framer-XqTEg .framer-1663s1n, .framer-XqTEg .framer-1ei98kt, .framer-XqTEg .framer-wn0ku1, .framer-XqTEg .framer-1ssj3nh, .framer-XqTEg .framer-1s9mptn, .framer-XqTEg .framer-19lazzl, .framer-XqTEg .framer-1o23fw1, .framer-XqTEg .framer-13vcq01, .framer-XqTEg .framer-5j9nnn, .framer-XqTEg .framer-1cbzvi3, .framer-XqTEg .framer-szsr42, .framer-XqTEg .framer-1sz3oom, .framer-XqTEg .framer-1yb2f2w, .framer-XqTEg .framer-ynthmz, .framer-XqTEg .framer-1i1lbu4, .framer-XqTEg .framer-h2gy69, .framer-XqTEg .framer-5ajwez, .framer-XqTEg .framer-ywev8d, .framer-XqTEg .framer-2hnfyj, .framer-XqTEg .framer-mpciqn, .framer-XqTEg .framer-7ovpun, .framer-XqTEg .framer-1fr49st, .framer-XqTEg .framer-18goouc, .framer-XqTEg .framer-4805em, .framer-XqTEg .framer-1kvp5ea, .framer-XqTEg .framer-56uodg, .framer-XqTEg .framer-1wqff5i, .framer-XqTEg .framer-1jy5ztw, .framer-XqTEg .framer-1fg41af, .framer-XqTEg .framer-1viobmq, .framer-XqTEg .framer-1viv044, .framer-XqTEg .framer-1tvhpk5, .framer-XqTEg .framer-1ifwa7c, .framer-XqTEg .framer-1epvbvj, .framer-XqTEg .framer-1chrzd5, .framer-XqTEg .framer-yz0j76, .framer-XqTEg .framer-ixsbe0 { gap: 0px; } .framer-XqTEg.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-XqTEg.framer-72rtr7 > :first-child, .framer-XqTEg .framer-15amfmo > :first-child, .framer-XqTEg .framer-1t92ens > :first-child, .framer-XqTEg .framer-11akghs > :first-child, .framer-XqTEg .framer-14w3h9g > :first-child, .framer-XqTEg .framer-17wfpeh > :first-child, .framer-XqTEg .framer-ak116e > :first-child, .framer-XqTEg .framer-1lso4fl > :first-child, .framer-XqTEg .framer-t3vdom > :first-child, .framer-XqTEg .framer-1vl6n0i > :first-child, .framer-XqTEg .framer-bsldx9 > :first-child, .framer-XqTEg .framer-7khs3n > :first-child, .framer-XqTEg .framer-wn0ku1 > :first-child, .framer-XqTEg .framer-1ssj3nh > :first-child, .framer-XqTEg .framer-19lazzl > :first-child, .framer-XqTEg .framer-5j9nnn > :first-child, .framer-XqTEg .framer-ynthmz > :first-child, .framer-XqTEg .framer-1i1lbu4 > :first-child, .framer-XqTEg .framer-ywev8d > :first-child, .framer-XqTEg .framer-2hnfyj > :first-child, .framer-XqTEg .framer-mpciqn > :first-child, .framer-XqTEg .framer-7ovpun > :first-child, .framer-XqTEg .framer-1fr49st > :first-child, .framer-XqTEg .framer-18goouc > :first-child, .framer-XqTEg .framer-4805em > :first-child, .framer-XqTEg .framer-1kvp5ea > :first-child, .framer-XqTEg .framer-56uodg > :first-child, .framer-XqTEg .framer-1wqff5i > :first-child, .framer-XqTEg .framer-1jy5ztw > :first-child, .framer-XqTEg .framer-1fg41af > :first-child, .framer-XqTEg .framer-1ifwa7c > :first-child, .framer-XqTEg .framer-1epvbvj > :first-child, .framer-XqTEg .framer-ixsbe0 > :first-child { margin-top: 0px; } .framer-XqTEg.framer-72rtr7 > :last-child, .framer-XqTEg .framer-15amfmo > :last-child, .framer-XqTEg .framer-1t92ens > :last-child, .framer-XqTEg .framer-11akghs > :last-child, .framer-XqTEg .framer-14w3h9g > :last-child, .framer-XqTEg .framer-17wfpeh > :last-child, .framer-XqTEg .framer-ak116e > :last-child, .framer-XqTEg .framer-1lso4fl > :last-child, .framer-XqTEg .framer-t3vdom > :last-child, .framer-XqTEg .framer-1vl6n0i > :last-child, .framer-XqTEg .framer-bsldx9 > :last-child, .framer-XqTEg .framer-7khs3n > :last-child, .framer-XqTEg .framer-wn0ku1 > :last-child, .framer-XqTEg .framer-1ssj3nh > :last-child, .framer-XqTEg .framer-19lazzl > :last-child, .framer-XqTEg .framer-5j9nnn > :last-child, .framer-XqTEg .framer-ynthmz > :last-child, .framer-XqTEg .framer-1i1lbu4 > :last-child, .framer-XqTEg .framer-ywev8d > :last-child, .framer-XqTEg .framer-2hnfyj > :last-child, .framer-XqTEg .framer-mpciqn > :last-child, .framer-XqTEg .framer-7ovpun > :last-child, .framer-XqTEg .framer-1fr49st > :last-child, .framer-XqTEg .framer-18goouc > :last-child, .framer-XqTEg .framer-4805em > :last-child, .framer-XqTEg .framer-1kvp5ea > :last-child, .framer-XqTEg .framer-56uodg > :last-child, .framer-XqTEg .framer-1wqff5i > :last-child, .framer-XqTEg .framer-1jy5ztw > :last-child, .framer-XqTEg .framer-1fg41af > :last-child, .framer-XqTEg .framer-1ifwa7c > :last-child, .framer-XqTEg .framer-1epvbvj > :last-child, .framer-XqTEg .framer-ixsbe0 > :last-child { margin-bottom: 0px; } .framer-XqTEg .framer-1xxgefi > *, .framer-XqTEg .framer-ecqbz4 > *, .framer-XqTEg .framer-e7msb1 > *, .framer-XqTEg .framer-pl6hgm > *, .framer-XqTEg .framer-1663s1n > *, .framer-XqTEg .framer-1ei98kt > *, .framer-XqTEg .framer-13vcq01 > *, .framer-XqTEg .framer-szsr42 > *, .framer-XqTEg .framer-1sz3oom > *, .framer-XqTEg .framer-h2gy69 > *, .framer-XqTEg .framer-1viobmq > *, .framer-XqTEg .framer-1chrzd5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-XqTEg .framer-1xxgefi > :first-child, .framer-XqTEg .framer-ecqbz4 > :first-child, .framer-XqTEg .framer-e7msb1 > :first-child, .framer-XqTEg .framer-1nghahj > :first-child, .framer-XqTEg .framer-1khsg92 > :first-child, .framer-XqTEg .framer-pl6hgm > :first-child, .framer-XqTEg .framer-1dvsctt > :first-child, .framer-XqTEg .framer-1663s1n > :first-child, .framer-XqTEg .framer-1ei98kt > :first-child, .framer-XqTEg .framer-1s9mptn > :first-child, .framer-XqTEg .framer-1o23fw1 > :first-child, .framer-XqTEg .framer-13vcq01 > :first-child, .framer-XqTEg .framer-1cbzvi3 > :first-child, .framer-XqTEg .framer-szsr42 > :first-child, .framer-XqTEg .framer-1sz3oom > :first-child, .framer-XqTEg .framer-1yb2f2w > :first-child, .framer-XqTEg .framer-h2gy69 > :first-child, .framer-XqTEg .framer-5ajwez > :first-child, .framer-XqTEg .framer-1viobmq > :first-child, .framer-XqTEg .framer-1viv044 > :first-child, .framer-XqTEg .framer-1tvhpk5 > :first-child, .framer-XqTEg .framer-1chrzd5 > :first-child, .framer-XqTEg .framer-yz0j76 > :first-child { margin-left: 0px; } .framer-XqTEg .framer-1xxgefi > :last-child, .framer-XqTEg .framer-ecqbz4 > :last-child, .framer-XqTEg .framer-e7msb1 > :last-child, .framer-XqTEg .framer-1nghahj > :last-child, .framer-XqTEg .framer-1khsg92 > :last-child, .framer-XqTEg .framer-pl6hgm > :last-child, .framer-XqTEg .framer-1dvsctt > :last-child, .framer-XqTEg .framer-1663s1n > :last-child, .framer-XqTEg .framer-1ei98kt > :last-child, .framer-XqTEg .framer-1s9mptn > :last-child, .framer-XqTEg .framer-1o23fw1 > :last-child, .framer-XqTEg .framer-13vcq01 > :last-child, .framer-XqTEg .framer-1cbzvi3 > :last-child, .framer-XqTEg .framer-szsr42 > :last-child, .framer-XqTEg .framer-1sz3oom > :last-child, .framer-XqTEg .framer-1yb2f2w > :last-child, .framer-XqTEg .framer-h2gy69 > :last-child, .framer-XqTEg .framer-5ajwez > :last-child, .framer-XqTEg .framer-1viobmq > :last-child, .framer-XqTEg .framer-1viv044 > :last-child, .framer-XqTEg .framer-1tvhpk5 > :last-child, .framer-XqTEg .framer-1chrzd5 > :last-child, .framer-XqTEg .framer-yz0j76 > :last-child { margin-right: 0px; } .framer-XqTEg .framer-15amfmo > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-XqTEg .framer-1t92ens > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-XqTEg .framer-11akghs > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-XqTEg .framer-1nghahj > *, .framer-XqTEg .framer-1khsg92 > *, .framer-XqTEg .framer-1dvsctt > *, .framer-XqTEg .framer-5ajwez > *, .framer-XqTEg .framer-yz0j76 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-XqTEg .framer-14w3h9g > *, .framer-XqTEg .framer-wn0ku1 > *, .framer-XqTEg .framer-1ssj3nh > *, .framer-XqTEg .framer-1ifwa7c > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-XqTEg .framer-17wfpeh > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-XqTEg .framer-ak116e > *, .framer-XqTEg .framer-1epvbvj > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-XqTEg .framer-1lso4fl > *, .framer-XqTEg .framer-t3vdom > *, .framer-XqTEg .framer-1vl6n0i > *, .framer-XqTEg .framer-bsldx9 > *, .framer-XqTEg .framer-7khs3n > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-XqTEg .framer-1s9mptn > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-XqTEg .framer-19lazzl > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-XqTEg .framer-1o23fw1 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-XqTEg .framer-5j9nnn > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-XqTEg .framer-1cbzvi3 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-XqTEg .framer-1yb2f2w > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-XqTEg .framer-ynthmz > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-XqTEg .framer-1i1lbu4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-XqTEg .framer-ywev8d > *, .framer-XqTEg .framer-mpciqn > *, .framer-XqTEg .framer-1fr49st > *, .framer-XqTEg .framer-4805em > *, .framer-XqTEg .framer-56uodg > *, .framer-XqTEg .framer-1jy5ztw > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-XqTEg .framer-2hnfyj > *, .framer-XqTEg .framer-7ovpun > *, .framer-XqTEg .framer-18goouc > *, .framer-XqTEg .framer-1kvp5ea > *, .framer-XqTEg .framer-1wqff5i > *, .framer-XqTEg .framer-1fg41af > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-XqTEg .framer-1viv044 > * { margin: 0px; margin-left: calc(45px / 2); margin-right: calc(45px / 2); } .framer-XqTEg .framer-1tvhpk5 > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-XqTEg .framer-ixsbe0 > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-XqTEg.framer-72rtr7 { width: 810px; } .framer-XqTEg .framer-1xxgefi { order: 0; } .framer-XqTEg .framer-1vwjne5-container { order: 1; } .framer-XqTEg .framer-ecqbz4 { order: 2; padding: 40px 30px 40px 30px; } .framer-XqTEg .framer-15amfmo { gap: 50px; } .framer-XqTEg .framer-1ez4ad3 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 30px; justify-content: center; } .framer-XqTEg .framer-1t92ens { max-width: 650px; } .framer-XqTEg .framer-14w3h9g { flex-direction: row; width: 100%; } .framer-XqTEg .framer-3fcmfw { flex: 1 0 0px; width: 1px; } .framer-XqTEg .framer-1khsg92 { order: 3; padding: 80px 50px 20px 50px; } .framer-XqTEg .framer-17wfpeh, .framer-XqTEg .framer-5j9nnn { gap: 40px; } .framer-XqTEg .framer-1ato17l { gap: 20px; grid-auto-rows: 257px; grid-template-columns: repeat(3, minmax(82px, 1fr)); grid-template-rows: repeat(2, 257px); height: 529px; } .framer-XqTEg .framer-1663s1n { order: 4; } .framer-XqTEg .framer-1ei98kt { order: 5; padding: 80px 30px 30px 30px; } .framer-XqTEg .framer-1s9mptn { flex-direction: column; gap: 50px; } .framer-XqTEg .framer-3hl9zp { flex: none; height: var(--framer-aspect-ratio-supported, 471px); width: 100%; } .framer-XqTEg .framer-19lazzl, .framer-XqTEg .framer-ixsbe0 { flex: none; width: 100%; } .framer-XqTEg .framer-1o23fw1 { align-content: flex-start; align-items: flex-start; } .framer-XqTEg .framer-13vcq01 { order: 6; padding: 80px 30px 80px 30px; } .framer-XqTEg .framer-szsr42 { order: 7; } .framer-XqTEg .framer-jkap6t { height: 684px; } .framer-XqTEg .framer-1sz3oom { order: 8; padding: 80px 30px 80px 30px; } .framer-XqTEg .framer-15huf94 { grid-auto-rows: 200px; grid-template-columns: repeat(1, minmax(49px, 1fr)); grid-template-rows: repeat(3, 200px); height: min-content; } .framer-XqTEg .framer-1viobmq { order: 9; padding: 30px; } .framer-XqTEg .framer-1viv044 { flex-direction: column; } .framer-XqTEg .framer-1gjp4nq-container { order: 10; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-XqTEg .framer-15amfmo, .framer-XqTEg .framer-1ez4ad3, .framer-XqTEg .framer-14w3h9g, .framer-XqTEg .framer-17wfpeh, .framer-XqTEg .framer-1ato17l, .framer-XqTEg .framer-1s9mptn, .framer-XqTEg .framer-5j9nnn, .framer-XqTEg .framer-1viv044 { gap: 0px; } .framer-XqTEg .framer-15amfmo > *, .framer-XqTEg .framer-1s9mptn > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-XqTEg .framer-15amfmo > :first-child, .framer-XqTEg .framer-1ez4ad3 > :first-child, .framer-XqTEg .framer-17wfpeh > :first-child, .framer-XqTEg .framer-1s9mptn > :first-child, .framer-XqTEg .framer-5j9nnn > :first-child, .framer-XqTEg .framer-1viv044 > :first-child { margin-top: 0px; } .framer-XqTEg .framer-15amfmo > :last-child, .framer-XqTEg .framer-1ez4ad3 > :last-child, .framer-XqTEg .framer-17wfpeh > :last-child, .framer-XqTEg .framer-1s9mptn > :last-child, .framer-XqTEg .framer-5j9nnn > :last-child, .framer-XqTEg .framer-1viv044 > :last-child { margin-bottom: 0px; } .framer-XqTEg .framer-1ez4ad3 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-XqTEg .framer-14w3h9g > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-XqTEg .framer-14w3h9g > :first-child { margin-left: 0px; } .framer-XqTEg .framer-14w3h9g > :last-child { margin-right: 0px; } .framer-XqTEg .framer-17wfpeh > *, .framer-XqTEg .framer-5j9nnn > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-XqTEg .framer-1ato17l > *, .framer-XqTEg .framer-1ato17l > :first-child, .framer-XqTEg .framer-1ato17l > :last-child { margin: 0px; } .framer-XqTEg .framer-1viv044 > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } }}\",\"@media (max-width: 809px) { .framer-XqTEg.framer-72rtr7 { width: 390px; } .framer-XqTEg .framer-1xxgefi { align-content: flex-start; align-items: flex-start; height: 73px; overflow: visible; } .framer-XqTEg .framer-ecqbz4 { padding: 30px 20px 30px 20px; } .framer-XqTEg .framer-15amfmo { gap: 50px; } .framer-XqTEg .framer-1ez4ad3 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 16px; justify-content: center; } .framer-XqTEg .framer-1t92ens, .framer-XqTEg .framer-11akghs, .framer-XqTEg .framer-egthcg, .framer-XqTEg .framer-1tvhpk5, .framer-XqTEg .framer-1epvbvj { width: 100%; } .framer-XqTEg .framer-14w3h9g { gap: 30px; width: 100%; } .framer-XqTEg .framer-1khsg92 { flex-direction: column; padding: 60px 50px 30px 50px; } .framer-XqTEg .framer-17wfpeh { flex: none; gap: 30px; width: 100%; } .framer-XqTEg .framer-1ato17l { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; } .framer-XqTEg .framer-q6tmxe, .framer-XqTEg .framer-1cuvgm0, .framer-XqTEg .framer-1w4enu8 { align-self: unset; gap: 20px; height: min-content; justify-content: flex-start; } .framer-XqTEg .framer-1kahugv, .framer-XqTEg .framer-1tymoot { align-self: unset; gap: 8px; height: min-content; justify-content: flex-start; } .framer-XqTEg .framer-1663s1n { padding: 0px 0px 30px 0px; } .framer-XqTEg .framer-1ei98kt { padding: 60px 20px 20px 20px; } .framer-XqTEg .framer-wn0ku1, .framer-XqTEg .framer-1o23fw1 { gap: 40px; } .framer-XqTEg .framer-1s9mptn { flex-direction: column; gap: 40px; } .framer-XqTEg .framer-3hl9zp { flex: none; height: var(--framer-aspect-ratio-supported, 220px); width: 100%; } .framer-XqTEg .framer-19lazzl, .framer-XqTEg .framer-ixsbe0 { flex: none; width: 100%; } .framer-XqTEg .framer-13vcq01 { padding: 60px 20px 60px 20px; } .framer-XqTEg .framer-5j9nnn { gap: 30px; } .framer-XqTEg .framer-1qjl3n9 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-XqTEg .framer-jkap6t { aspect-ratio: 1.3 / 1; height: var(--framer-aspect-ratio-supported, 300px); } .framer-XqTEg .framer-1sz3oom { padding: 40px 20px 32px 20px; } .framer-XqTEg .framer-1yb2f2w { flex-direction: column; gap: 30px; } .framer-XqTEg .framer-ynthmz { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-XqTEg .framer-1i1lbu4 { flex: none; height: min-content; } .framer-XqTEg .framer-15huf94 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; width: 100%; } .framer-XqTEg .framer-ywev8d, .framer-XqTEg .framer-1fr49st { align-self: unset; height: 181px; } .framer-XqTEg .framer-mpciqn, .framer-XqTEg .framer-4805em, .framer-XqTEg .framer-56uodg, .framer-XqTEg .framer-1jy5ztw { align-self: unset; height: 182px; } .framer-XqTEg .framer-1viobmq { padding: 32px 20px 32px 20px; } .framer-XqTEg .framer-1viv044 { flex-direction: column; gap: 10px; } .framer-XqTEg .framer-1ifwa7c { flex: 1 0 0px; width: 1px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-XqTEg .framer-15amfmo, .framer-XqTEg .framer-1ez4ad3, .framer-XqTEg .framer-14w3h9g, .framer-XqTEg .framer-1khsg92, .framer-XqTEg .framer-17wfpeh, .framer-XqTEg .framer-1ato17l, .framer-XqTEg .framer-q6tmxe, .framer-XqTEg .framer-1kahugv, .framer-XqTEg .framer-1tymoot, .framer-XqTEg .framer-1cuvgm0, .framer-XqTEg .framer-1w4enu8, .framer-XqTEg .framer-wn0ku1, .framer-XqTEg .framer-1s9mptn, .framer-XqTEg .framer-1o23fw1, .framer-XqTEg .framer-5j9nnn, .framer-XqTEg .framer-1yb2f2w, .framer-XqTEg .framer-15huf94, .framer-XqTEg .framer-1viv044 { gap: 0px; } .framer-XqTEg .framer-15amfmo > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-XqTEg .framer-15amfmo > :first-child, .framer-XqTEg .framer-1ez4ad3 > :first-child, .framer-XqTEg .framer-14w3h9g > :first-child, .framer-XqTEg .framer-1khsg92 > :first-child, .framer-XqTEg .framer-17wfpeh > :first-child, .framer-XqTEg .framer-1ato17l > :first-child, .framer-XqTEg .framer-q6tmxe > :first-child, .framer-XqTEg .framer-1kahugv > :first-child, .framer-XqTEg .framer-1tymoot > :first-child, .framer-XqTEg .framer-1cuvgm0 > :first-child, .framer-XqTEg .framer-1w4enu8 > :first-child, .framer-XqTEg .framer-wn0ku1 > :first-child, .framer-XqTEg .framer-1s9mptn > :first-child, .framer-XqTEg .framer-5j9nnn > :first-child, .framer-XqTEg .framer-1yb2f2w > :first-child, .framer-XqTEg .framer-15huf94 > :first-child, .framer-XqTEg .framer-1viv044 > :first-child { margin-top: 0px; } .framer-XqTEg .framer-15amfmo > :last-child, .framer-XqTEg .framer-1ez4ad3 > :last-child, .framer-XqTEg .framer-14w3h9g > :last-child, .framer-XqTEg .framer-1khsg92 > :last-child, .framer-XqTEg .framer-17wfpeh > :last-child, .framer-XqTEg .framer-1ato17l > :last-child, .framer-XqTEg .framer-q6tmxe > :last-child, .framer-XqTEg .framer-1kahugv > :last-child, .framer-XqTEg .framer-1tymoot > :last-child, .framer-XqTEg .framer-1cuvgm0 > :last-child, .framer-XqTEg .framer-1w4enu8 > :last-child, .framer-XqTEg .framer-wn0ku1 > :last-child, .framer-XqTEg .framer-1s9mptn > :last-child, .framer-XqTEg .framer-5j9nnn > :last-child, .framer-XqTEg .framer-1yb2f2w > :last-child, .framer-XqTEg .framer-15huf94 > :last-child, .framer-XqTEg .framer-1viv044 > :last-child { margin-bottom: 0px; } .framer-XqTEg .framer-1ez4ad3 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-XqTEg .framer-14w3h9g > *, .framer-XqTEg .framer-17wfpeh > *, .framer-XqTEg .framer-5j9nnn > *, .framer-XqTEg .framer-1yb2f2w > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-XqTEg .framer-1khsg92 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-XqTEg .framer-1ato17l > *, .framer-XqTEg .framer-15huf94 > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-XqTEg .framer-q6tmxe > *, .framer-XqTEg .framer-1cuvgm0 > *, .framer-XqTEg .framer-1w4enu8 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-XqTEg .framer-1kahugv > *, .framer-XqTEg .framer-1tymoot > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-XqTEg .framer-wn0ku1 > *, .framer-XqTEg .framer-1s9mptn > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-XqTEg .framer-1o23fw1 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-XqTEg .framer-1o23fw1 > :first-child { margin-left: 0px; } .framer-XqTEg .framer-1o23fw1 > :last-child { margin-right: 0px; } .framer-XqTEg .framer-1viv044 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5857.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"OFaK4ur5_\":{\"layout\":[\"fixed\",\"auto\"]},\"UGT3ZRkKD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"wvSK6xY0A\":{\"pattern\":\":wvSK6xY0A\",\"name\":\"pricing\"},\"YmLXbfxHg\":{\"pattern\":\":YmLXbfxHg\",\"name\":\"pricing\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-XqTEg\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5857.5,width:1200};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:\"Amiko\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/amiko/v14/WwkdxPq1DFK04uJ9XXrBGoQAUco5.woff2\",weight:\"600\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAfJthS2f3ZGMZpg.woff2\",weight:\"600\"}]},...SectionHeaderFonts,...VideoFonts,...ButtonPrimaryFonts,...TickerFonts,...WidgetStatsFonts,...TickerLogoFonts,...RowFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"wvSK6xY0A\\\":{\\\"pattern\\\":\\\":wvSK6xY0A\\\",\\\"name\\\":\\\"pricing\\\"},\\\"YmLXbfxHg\\\":{\\\"pattern\\\":\\\":YmLXbfxHg\\\",\\\"name\\\":\\\"pricing\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OFaK4ur5_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UGT3ZRkKD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"5857.5\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "ObjectFitType", "SrcType", "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", "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", "SectionHeaderFonts", "getFonts", "BXBTZEv67_default", "VideoFonts", "Video", "ButtonPrimaryFonts", "ZJEetoKdg_default", "TickerFonts", "Ticker", "ImageWithFX", "withFX", "Image2", "WidgetStatsFonts", "ebkhvlJuZ_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "TickerLogoFonts", "aLnv124H1_default", "RowFonts", "r9TbpKvES_default", "FooterFonts", "vXxqwNzkS_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "animation2", "transformTemplate1", "_", "t", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "PropertyOverrides2", "RichText2", "x", "getLoadingLazyAtYPosition", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "SVG", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
