{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/TcQV6SEsl3y6G9Op8tp0/Time.js", "ssg:https://framerusercontent.com/modules/deVBWhw2H2QWFBB25L1p/QEoFtV4VkzkaAGvECzFy/fVxnimdqP.js", "ssg:https://framerusercontent.com/modules/e9oB3H4dVgo5xEhjHPFD/GoQIBV2uAXWTbztUGhDN/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,RenderTarget,useLocaleCode}from\"framer\";import{useState,useEffect,useCallback}from\"react\";const fontStack=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;function useForceRender(){const[_,set]=useState(0);return useCallback(()=>set(v=>v+1),[]);}function formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showMinutes,showSeconds},timeFormat,monthFormat,localCode){const date=new Date;const onlyYearIsShown=!showWeekday&&!showMonth&&showYear;switch(outputType){case\"date\":return new Intl.DateTimeFormat(localCode,{weekday:showWeekday?\"long\":undefined,day:onlyYearIsShown?undefined:\"numeric\",month:showMonth?monthFormat:undefined,year:showYear?\"numeric\":undefined}).format(date);case\"time\":return new Intl.DateTimeFormat(localCode,{hour:\"numeric\",minute:showMinutes?\"numeric\":undefined,second:showSeconds&&showMinutes?\"numeric\":undefined,hour12:timeFormat===\"12h\"}).format(date);default:return new Intl.DateTimeFormat(localCode).format(date);}}/**\n * TIME AND DATE\n * FORKED FROM PROTOTYPING\n *\n *\n * @framerIntrinsicWidth 140\n * @framerIntrinsicHeight 20\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export function Time(props){const{outputType,fontFamily,fontSize,fontWeight,timeFormat,showYear,showMonth,showWeekday,showHours,showMinutes,showSeconds,monthFormat,color,font,tabularFont,alignment}=props;const[visible,setIsVisible]=useState(false);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const render=useForceRender();const localCode=useLocaleCode();const textContent=formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showHours,showMinutes,showSeconds},timeFormat,monthFormat,localCode);useEffect(()=>{setIsVisible(true);// Don\u2019t want real time on Canvas\nif(isCanvas)return;const int=setInterval(()=>{render();});return()=>{clearInterval(int);};},[]);return /*#__PURE__*/_jsx(\"p\",{suppressHydrationWarning:true,style:{margin:0,padding:0,color,fontFamily:fontStack,fontWeight:500,fontSize:16,lineHeight:1,visibility:visible?\"visible\":\"hidden\",...font,fontVariantNumeric:tabularFont?\"tabular-nums\":\"normal\",whiteSpace:\"nowrap\"},children:textContent});}Time.defaultProps={height:20,width:140,outputType:\"time\",color:\"#999\",timeFormat:\"24h\",showYear:true,showMonth:true,showWeekday:true,showMinutes:true,showSeconds:true,monthFormat:\"long\",alignment:\"center\"};Time.displayName=\"Time & Date\";addPropertyControls(Time,{outputType:{title:\"Type\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"date\",\"time\"],optionTitles:[\"Date\",\"Time\"],defaultValue:Time.defaultProps.outputType},showWeekday:{title:\"Day\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showWeekday,hidden:props=>props.outputType!==\"date\"},showMonth:{title:\"Month\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showMonth,hidden:props=>props.outputType!==\"date\"},monthFormat:{title:\"Format\",type:ControlType.Enum,options:[\"short\",\"long\",\"numeric\"],optionTitles:[\"Short\",\"Long\",\"Numeric\"],defaultValue:Time.defaultProps.monthFormat,hidden:props=>props.outputType!==\"date\"||!props.showMonth},showYear:{title:\"Year\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showYear,hidden:props=>props.outputType!==\"date\"},timeFormat:{title:\"Format\",type:ControlType.Enum,options:[\"12h\",\"24h\"],optionTitles:[\"12h\",\"24h\"],displaySegmentedControl:true,defaultValue:Time.defaultProps.timeFormat,hidden:props=>props.outputType!==\"time\"},// showHours: {\n//     title: \"Hours\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Show\",\n//     disabledTitle: \"Hide\",\n//     defaultValue: Time.defaultProps.showHours,\n//     hidden: (props) => props.outputType !== \"time\",\n// },\nshowMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showMinutes,hidden:props=>props.outputType!==\"time\"},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showSeconds,hidden:props=>props.outputType!==\"time\"||!props.showMinutes},font:{type:ControlType.Font,controls:\"extended\"},tabularFont:{title:\"Tabular\",type:ControlType.Boolean,defaultValue:true},color:{type:ControlType.Color,defaultValue:Time.defaultProps.color}});\nexport const __FramerMetadata__ = {\"exports\":{\"Time\":{\"type\":\"reactComponent\",\"name\":\"Time\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"140\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Time.map", "// Generated by Framer (7f988a2)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Neue Montreal Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Neue Montreal Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/of3o5ynODnhRHcaSyDkINttrjZI.otf\"}]}];export const css=['.framer-HPuhh .framer-styles-preset-1wml6uu:not(.rich-text-wrapper), .framer-HPuhh .framer-styles-preset-1wml6uu.rich-text-wrapper h2 { --framer-font-family: \"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #121212; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1919px) and (min-width: 1200px) { .framer-HPuhh .framer-styles-preset-1wml6uu:not(.rich-text-wrapper), .framer-HPuhh .framer-styles-preset-1wml6uu.rich-text-wrapper h2 { --framer-font-family: \"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -1px; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #121212; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-HPuhh .framer-styles-preset-1wml6uu:not(.rich-text-wrapper), .framer-HPuhh .framer-styles-preset-1wml6uu.rich-text-wrapper h2 { --framer-font-family: \"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #121212; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-HPuhh .framer-styles-preset-1wml6uu:not(.rich-text-wrapper), .framer-HPuhh .framer-styles-preset-1wml6uu.rich-text-wrapper h2 { --framer-font-family: \"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 16px; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #121212; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-HPuhh\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f26e712)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,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{Time as TimeDate}from\"https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/TcQV6SEsl3y6G9Op8tp0/Time.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import CursorCustom from\"#framer/local/canvasComponent/E9v5XrIgt/E9v5XrIgt.js\";import TopNavigation from\"#framer/local/canvasComponent/eYjR3Bv72/eYjR3Bv72.js\";import CopyEmail from\"#framer/local/canvasComponent/nFEdqzqQb/nFEdqzqQb.js\";import BottomNavigation from\"#framer/local/canvasComponent/rphTyI6OZ/rphTyI6OZ.js\";import CardPorto from\"#framer/local/canvasComponent/UNm37oHfV/UNm37oHfV.js\";import BtnDiv from\"#framer/local/canvasComponent/VpFTgtZIC/VpFTgtZIC.js\";import*as sharedStyle1 from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle3 from\"#framer/local/css/jf7ZtXElO/jf7ZtXElO.js\";import*as sharedStyle2 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle from\"#framer/local/css/YckFIlg3V/YckFIlg3V.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const TopNavigationFonts=getFonts(TopNavigation);const TimeDateFonts=getFonts(TimeDate);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const BtnDivFonts=getFonts(BtnDiv);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const CopyEmailFonts=getFonts(CopyEmail);const TickerFonts=getFonts(Ticker);const CardPortoFonts=getFonts(CardPorto);const SlideshowFonts=getFonts(Slideshow);const BottomNavigationFonts=getFonts(BottomNavigation);const CursorCustomFonts=getFonts(CursorCustom);const breakpoints={kJIbK6TN3:\"(min-width: 1200px) and (max-width: 1439px)\",P3H5TCksB:\"(min-width: 810px) and (max-width: 1199px)\",SAoLtcIOY:\"(min-width: 1928px)\",WQLkyLRf1:\"(min-width: 1440px) and (max-width: 1927px)\",xI1BPuEJK:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-e1bSx\";const variantClassNames={kJIbK6TN3:\"framer-v-1cnbdg3\",P3H5TCksB:\"framer-v-185c1wz\",SAoLtcIOY:\"framer-v-4w2lo4\",WQLkyLRf1:\"framer-v-72rtr7\",xI1BPuEJK:\"framer-v-1dtyykj\"};const transition1={delay:0,duration:.75,ease:[.55,-.04,.18,.87],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:15,y:0};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transition2={delay:.2,duration:.75,ease:[.55,-.04,.18,.87],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={delay:.3,duration:.75,ease:[.55,-.04,.18,.87],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2 (new)\":\"kJIbK6TN3\",\"Desktop ril\":\"WQLkyLRf1\",\"Desktop super (new)\":\"SAoLtcIOY\",\"Phone (new)\":\"xI1BPuEJK\",\"Tablet (new)\":\"P3H5TCksB\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const cursor={component:CursorCustom,variant:\"N_hpmWeAC\"};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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"xI1BPuEJK\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"xI1BPuEJK\")return true;return false;};const elementId=useRouteElementId(\"Mpv666ndc\");const ref1=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if([\"P3H5TCksB\",\"xI1BPuEJK\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"P3H5TCksB\")return true;return false;};useCustomCursors({\"1udmcr2\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(253, 253, 252); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u0f0mr-container\",layoutScroll:true,nodeId:\"hz8YH6tZG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xI1BPuEJK:{style:{width:\"100%\"},variant:\"w_y704iyw\"}},children:/*#__PURE__*/_jsx(TopNavigation,{height:\"100%\",id:\"hz8YH6tZG\",layoutId:\"hz8YH6tZG\",style:{height:\"100%\",width:\"100%\"},variant:\"XWEgpMpMz\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-75t1fx\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ek6nqj\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-14h4h5m\",\"data-framer-appear-id\":\"14h4h5m\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-slv39g\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c82wnu\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hhyzd7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qsdoEvdiZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xI1BPuEJK:{font:{fontFamily:'\"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif',fontSize:\"10px\",letterSpacing:\"0em\",lineHeight:\"1em\"}}},children:/*#__PURE__*/_jsx(TimeDate,{color:\"var(--token-6a8a5568-d54d-43be-8f79-f1edd2f252f9, rgb(253, 253, 252))\",font:{fontFamily:'\"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif',fontSize:\"24px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"qsdoEvdiZ\",layoutId:\"qsdoEvdiZ\",monthFormat:\"long\",outputType:\"time\",showMinutes:true,showMonth:true,showSeconds:false,showWeekday:true,showYear:true,tabularFont:true,timeFormat:\"24h\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-14uysh hidden-1dtyykj\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1,intrinsicWidth:200,svg:'<svg width=\"200\" height=\"1\" viewBox=\"0 0 200 1\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M200 0H0V1H200V0Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i4d529\",\"data-border\":true,\"data-framer-name\":\"Ellipse 1\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wru5om\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xI1BPuEJK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UFAgTmV1ZSBNb250cmVhbC1yZWd1bGFy\",\"--framer-font-family\":'\"PP Neue Montreal\", \"PP Neue Montreal Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.32px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(17, 17, 17)\"},children:\"Available For Work (GMT+7)\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UFAgTmV1ZSBNb250cmVhbC1yZWd1bGFy\",\"--framer-font-family\":'\"PP Neue Montreal\", \"PP Neue Montreal Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.32px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(17, 17, 17)\"},children:\"Available For Work (GMT+7)\"})}),className:\"framer-3y9k50\",\"data-framer-name\":\"Available For Work (GMT+7)\",fonts:[\"GF;PP Neue Montreal-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ibczgg\",\"data-framer-name\":\"Frame 48134\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xI1BPuEJK:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.1px\"},children:[\"User Interface\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TmV1ZSBNb250cmVhbC01MDA=\",\"--framer-font-family\":'\"Neue Montreal\", \"Neue Montreal Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1yZWd1bGFy\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-text-color\":\"rgb(4, 96, 158)\"},children:\"designer\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TmV1ZSBNb250cmVhbC01MDA=\",\"--framer-font-family\":'\"Neue Montreal\", \"Neue Montreal Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\", \"})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1yZWd1bGFy\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.1px\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif'},children:\"driven by a passion for\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TmV1ZSBNb250cmVhbC01MDA=\",\"--framer-font-family\":'\"Neue Montreal\", \"Neue Montreal Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(206, 119, 38)\"},children:\"useful design\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TmV1ZSBNb250cmVhbC01MDA=\",\"--framer-font-family\":'\"Neue Montreal\", \"Neue Montreal Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\",\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif'},children:\" and\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TmV1ZSBNb250cmVhbC01MDA=\",\"--framer-font-family\":'\"Neue Montreal\", \"Neue Montreal Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(9, 115, 93)\"},children:\"user intuitive product.\"})]})]})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-color\":\"rgb(19, 20, 22)\"},children:[\"User Interface\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TmV1ZSBNb250cmVhbC01MDA=\",\"--framer-font-family\":'\"Neue Montreal\", \"Neue Montreal Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1yZWd1bGFy\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-letter-spacing\":\"-1px\",\"--framer-text-color\":\"rgb(4, 96, 158)\"},children:\"designer\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TmV1ZSBNb250cmVhbC01MDA=\",\"--framer-font-family\":'\"Neue Montreal\", \"Neue Montreal Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\", \"})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1yZWd1bGFy\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-color\":\"rgb(19, 20, 22)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif'},children:\"driven by a passion for\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TmV1ZSBNb250cmVhbC01MDA=\",\"--framer-font-family\":'\"Neue Montreal\", \"Neue Montreal Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-letter-spacing\":\"-1px\",\"--framer-text-color\":\"rgb(206, 119, 38)\"},children:\"useful design\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TmV1ZSBNb250cmVhbC01MDA=\",\"--framer-font-family\":'\"Neue Montreal\", \"Neue Montreal Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\",\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif'},children:\" and\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TmV1ZSBNb250cmVhbC01MDA=\",\"--framer-font-family\":'\"Neue Montreal\", \"Neue Montreal Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(9, 115, 93)\"},children:\"user intuitive product.\"})]})]}),className:\"framer-fjrq68\",\"data-framer-appear-id\":\"fjrq68\",\"data-framer-name\":\"User Interface designer, driven by a passion for website design, and mobile app design.\",fonts:[\"CUSTOM;Neue Montreal Medium\",\"GF;Neue Montreal-500\",\"GF;Instrument Serif-regular\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ktm820\",\"data-framer-name\":\"Button+Copy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P3H5TCksB:{y:(componentViewport?.y||0)+0+0+124+0+0+46+0+616+0},xI1BPuEJK:{height:40,width:\"204px\",y:(componentViewport?.y||0)+0+0+64+0+0+35+0+272+1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+0+152+0+0+46+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1ago1aw-container\",\"data-framer-appear-id\":\"1ago1aw\",initial:animation1,nodeId:\"RMydn5rIf\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xI1BPuEJK:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(BtnDiv,{height:\"100%\",id:\"RMydn5rIf\",layoutId:\"RMydn5rIf\",variant:\"Qw50vS9dU\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P3H5TCksB:{y:(componentViewport?.y||0)+0+0+124+0+0+46+0+616+1.5},xI1BPuEJK:{y:(componentViewport?.y||0)+0+0+64+0+0+35+0+272+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:\"42px\",y:(componentViewport?.y||0)+0+0+152+0+0+46+0+1.5,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-196d4i7-container\",\"data-framer-appear-id\":\"196d4i7\",initial:animation1,nodeId:\"e_BpeSYbv\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CopyEmail,{height:\"100%\",id:\"e_BpeSYbv\",layoutId:\"e_BpeSYbv\",style:{height:\"100%\",width:\"100%\"},variant:\"xfrK9xBvG\",width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zy5zyr\",\"data-framer-name\":\"Frame 48135\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xI1BPuEJK:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"Neue Montreal Regular\", \"Neue Montreal Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(163, 166, 173)\"},children:[\"Coffee. Figma. Action.\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(100, 105, 115)\"},children:\" \"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"Neue Montreal Regular\", \"Neue Montreal Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(19, 20, 22)\"},children:\"I\u2019m a designer specializing in web-app and website design but also spend time to do no-code development and other cool stuff.\"})]})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"Neue Montreal Regular\", \"Neue Montreal Regular Placeholder\", sans-serif',\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(163, 166, 173)\"},children:[\"Coffee. Figma. Action.\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(100, 105, 115)\"},children:\" \"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"Neue Montreal Regular\", \"Neue Montreal Regular Placeholder\", sans-serif',\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(19, 20, 22)\"},children:\"I\u2019m a designer specializing in web-app and website design but also spend time to do no-code development and other cool stuff.\"})]}),className:\"framer-1oyi7u7\",\"data-framer-appear-id\":\"1oyi7u7\",\"data-framer-name\":\"Mics. Camera. Action. I\u2019m a designer specializing in web-app and website design but also spend time to do no-code development and other cool stuff.\",fonts:[\"CUSTOM;Neue Montreal Regular\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kJIbK6TN3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"Neue Montreal Regular\", \"Neue Montreal Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"var(--token-b856ce9d-e1f4-4ddc-910b-f9059b05d182, rgb(19, 20, 22))\"},children:\"Always loves in searching for a diverse options to find solutions for people. Currently in searching for opportunity to be a full-time designer.\"})})},P3H5TCksB:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"Neue Montreal Regular\", \"Neue Montreal Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"var(--token-b856ce9d-e1f4-4ddc-910b-f9059b05d182, rgb(19, 20, 22))\"},children:\"Always loves in searching for a diverse options to find solutions for people. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"Neue Montreal Regular\", \"Neue Montreal Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"var(--token-b856ce9d-e1f4-4ddc-910b-f9059b05d182, rgb(19, 20, 22))\"},children:\"Currently in searching for opportunity to be a full-time designer.\"})]})},SAoLtcIOY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"Neue Montreal Regular\", \"Neue Montreal Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"var(--token-b856ce9d-e1f4-4ddc-910b-f9059b05d182, rgb(19, 20, 22))\"},children:\"Always loves in searching for a diverse options to find solutions for people. Currently in searching for opportunity to be a full-time designer.\"})})},xI1BPuEJK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"Neue Montreal Regular\", \"Neue Montreal Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"var(--token-b856ce9d-e1f4-4ddc-910b-f9059b05d182, rgb(19, 20, 22))\"},children:\"Always loves in searching for a diverse options to find solutions for people. Currently in searching for opportunity to be a full-time designer.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"Neue Montreal Regular\", \"Neue Montreal Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"var(--token-b856ce9d-e1f4-4ddc-910b-f9059b05d182, rgb(19, 20, 22))\"},children:\"Always loves in searching for a diverse options to find solutions for people. Currently in searching for opportunity to be a full-time designer.\"})}),className:\"framer-16h7phr\",\"data-framer-appear-id\":\"16h7phr\",\"data-framer-name\":\"Always loves in searching for a diverse options to find solutions for people. Currently in searching for opportunity to be a full-time designer.\",fonts:[\"CUSTOM;Neue Montreal Regular\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-7fav01\",\"data-framer-appear-id\":\"7fav01\",initial:animation1,optimized:true,children:isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4al81l-container hidden-72rtr7 hidden-185c1wz hidden-1cnbdg3 hidden-4w2lo4\",isModuleExternal:true,nodeId:\"SRwhWPnd2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"SRwhWPnd2\",layoutId:\"SRwhWPnd2\",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\",sizes:\"219px\",src:\"https://framerusercontent.com/images/Wgn0BwkahAn7BHhWI06B2GebyU.png\",srcSet:\"https://framerusercontent.com/images/Wgn0BwkahAn7BHhWI06B2GebyU.png?scale-down-to=512 512w,https://framerusercontent.com/images/Wgn0BwkahAn7BHhWI06B2GebyU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wgn0BwkahAn7BHhWI06B2GebyU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Wgn0BwkahAn7BHhWI06B2GebyU.png 2912w\"},className:\"framer-1fpjgbf\",\"data-framer-name\":\"Ticker 1 - M\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"219px\",src:\"https://framerusercontent.com/images/dxoCT06uSUKqBSjQu87aTw0ctg.png\",srcSet:\"https://framerusercontent.com/images/dxoCT06uSUKqBSjQu87aTw0ctg.png?scale-down-to=512 512w,https://framerusercontent.com/images/dxoCT06uSUKqBSjQu87aTw0ctg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dxoCT06uSUKqBSjQu87aTw0ctg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/dxoCT06uSUKqBSjQu87aTw0ctg.png 2912w\"},className:\"framer-hwf5iy\",\"data-framer-name\":\"Ticker 2 - M\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"221px\",src:\"https://framerusercontent.com/images/8AOyKAlDZVG4I1PeQGHPHVxR0.png\",srcSet:\"https://framerusercontent.com/images/8AOyKAlDZVG4I1PeQGHPHVxR0.png?scale-down-to=512 512w,https://framerusercontent.com/images/8AOyKAlDZVG4I1PeQGHPHVxR0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8AOyKAlDZVG4I1PeQGHPHVxR0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8AOyKAlDZVG4I1PeQGHPHVxR0.png 2912w\"},className:\"framer-18m70zy\",\"data-framer-name\":\"Ticker 3 - M\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"220px\",src:\"https://framerusercontent.com/images/a7Y4UmHGF3LwK063lZrtXRjuMcw.png\",srcSet:\"https://framerusercontent.com/images/a7Y4UmHGF3LwK063lZrtXRjuMcw.png?scale-down-to=512 512w,https://framerusercontent.com/images/a7Y4UmHGF3LwK063lZrtXRjuMcw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a7Y4UmHGF3LwK063lZrtXRjuMcw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/a7Y4UmHGF3LwK063lZrtXRjuMcw.png 2912w\"},className:\"framer-qqodiu\",\"data-framer-name\":\"Ticker 4 - M\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lvz432\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xI1BPuEJK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"var(--token-b856ce9d-e1f4-4ddc-910b-f9059b05d182, rgb(19, 20, 22))\"},children:\"SERVES THE BEST PEOPLE IN INDUSTRY\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"SERVES THE BEST PEOPLE IN INDUSTRY\"})}),className:\"framer-xh91qk\",\"data-framer-name\":\"SO FAR, SERVED COMPANIES AND AGENCIES\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xI1BPuEJK:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 356 35\"><g transform=\"translate(34.592 9.023)\" id=\"ss11128432265_1\"><path d=\"M -0.193 16.953 L -0.193 0 L 116.653 0 L 116.653 16.953 Z\" fill=\"transparent\"></path><path d=\"M 104.149 11.541 L 116.517 11.541 L 116.517 13.341 L 104.149 13.341 Z\" fill=\"rgb(28,28,28)\"></path><path d=\"M 4.418 13.376 C 7.069 13.376 8.936 12.095 8.936 10.155 C 8.936 6.239 3.727 7.758 3.727 6.551 C 3.727 6.239 4.045 6.056 4.53 6.056 C 5.165 6.056 5.632 6.349 5.744 6.807 L 8.899 6.185 C 8.432 4.593 6.789 3.641 4.586 3.641 C 1.935 3.641 0.124 5.014 0.124 6.807 C 0.124 10.722 5.333 9.185 5.333 10.411 C 5.333 10.777 4.997 11.015 4.418 11.015 C 3.653 11.015 3.13 10.649 3.018 10.119 L -0.193 10.649 C 0.236 12.314 2.01 13.376 4.418 13.376 Z\" fill=\"rgb(28,28,28)\"></path><path d=\"M 20.189 8.508 C 20.189 5.544 18.21 3.641 15.801 3.641 C 15.017 3.641 13.785 3.824 13.169 4.812 L 13.076 4.812 L 13.076 3.934 L 9.771 3.934 L 9.771 16.742 L 13.393 16.742 L 13.393 12.333 C 13.86 12.973 14.662 13.376 15.839 13.376 C 18.116 13.376 20.189 11.509 20.189 8.508 Z M 16.529 8.508 C 16.529 9.625 15.913 10.375 14.886 10.375 C 13.86 10.375 13.244 9.606 13.244 8.508 C 13.244 7.392 13.86 6.642 14.905 6.642 C 15.913 6.642 16.529 7.392 16.529 8.508 Z\" fill=\"rgb(28,28,28)\"></path><path d=\"M 24.769 3.019 L 24.769 0.275 L 21.148 0.275 L 21.148 3.019 Z M 24.769 13.083 L 24.769 3.934 L 21.148 3.934 L 21.148 13.083 Z\" fill=\"rgb(28,28,28)\"></path><path d=\"M 35.516 13.083 L 35.516 6.88 C 35.516 4.776 34.21 3.641 32.455 3.641 C 31.204 3.641 30.027 4.227 29.505 5.032 L 29.412 5.032 L 29.412 3.934 L 26.107 3.934 L 26.107 13.083 L 29.729 13.083 L 29.729 8.014 C 29.729 7.118 30.158 6.642 30.905 6.642 C 31.54 6.642 31.876 7.026 31.876 7.795 L 31.876 13.083 Z\" fill=\"rgb(28,28,28)\"></path><path d=\"M 36.343 6.77 L 37.669 6.77 L 37.669 13.083 L 41.309 13.083 L 41.309 6.77 L 43.102 6.77 L 43.102 3.934 L 41.309 3.934 C 41.309 3.202 41.739 2.763 42.448 2.763 C 42.653 2.763 42.99 2.8 43.102 2.818 L 43.102 0.128 C 42.859 0.055 42.336 0 41.757 0 C 39.349 0 37.669 1.025 37.669 3.66 L 37.669 3.934 L 36.343 3.934 Z M 43.494 0.274 L 43.494 13.083 L 47.116 13.083 L 47.116 0.274 Z\" fill=\"rgb(28,28,28)\"></path><path d=\"M 52.908 13.357 C 55.951 13.357 57.613 11.93 57.613 9.332 L 57.613 3.934 L 53.991 3.934 L 53.991 9.222 C 53.991 9.972 53.58 10.375 52.908 10.375 C 52.235 10.375 51.825 9.972 51.825 9.222 L 51.825 3.934 L 48.203 3.934 L 48.203 9.332 C 48.203 11.93 49.865 13.357 52.908 13.357 Z\" fill=\"rgb(28,28,28)\"></path><path d=\"M 68.666 9.977 L 65.271 9.977 C 64.954 10.654 64.509 10.722 63.817 10.722 C 62.884 10.722 62.305 10.21 62.1 9.222 L 68.672 9.222 L 68.672 8.618 C 68.672 5.709 66.581 3.641 63.538 3.641 C 60.737 3.641 58.497 5.526 58.497 8.527 C 58.497 11.674 60.812 13.376 63.705 13.376 C 66.002 13.376 68.032 11.898 68.666 9.977 Z M 63.612 6.111 C 64.434 6.111 64.956 6.569 65.031 7.356 L 62.119 7.356 C 62.324 6.532 62.828 6.111 63.612 6.111 Z\" fill=\"rgb(28,28,28)\"></path><path d=\"M 79.019 13.083 L 79.019 6.88 C 79.019 4.776 77.712 3.641 75.957 3.641 C 74.707 3.641 73.53 4.227 73.007 5.032 L 72.914 5.032 L 72.914 3.934 L 69.61 3.934 L 69.61 13.083 L 73.231 13.083 L 73.231 8.014 C 73.231 7.118 73.661 6.642 74.407 6.642 C 75.042 6.642 75.379 7.026 75.379 7.795 L 75.379 13.083 Z\" fill=\"rgb(28,28,28)\"></path><path d=\"M 85.166 3.641 C 82.496 3.641 79.901 5.178 79.901 8.508 C 79.901 11.601 82.198 13.376 85.166 13.376 C 87.668 13.376 89.479 11.656 89.965 9.46 L 86.38 9.46 C 86.305 9.972 85.764 10.375 85.092 10.375 C 84.121 10.375 83.505 9.698 83.505 8.508 C 83.505 7.319 84.121 6.642 85.092 6.642 C 85.764 6.642 86.305 7.045 86.399 7.557 L 89.965 7.557 C 89.423 5.416 87.594 3.641 85.166 3.641 Z\" fill=\"rgb(28,28,28)\"></path><path d=\"M 100.487 9.977 L 97 9.977 C 96.682 10.654 96.324 10.722 95.633 10.722 C 94.7 10.722 94.121 10.21 93.915 9.222 L 100.487 9.222 L 100.487 8.618 C 100.487 5.709 98.396 3.641 95.353 3.641 C 92.552 3.641 90.312 5.526 90.312 8.527 C 90.312 11.674 92.627 13.376 95.521 13.376 C 97.818 13.376 99.853 11.898 100.487 9.977 Z M 95.428 6.111 C 96.249 6.111 96.772 6.569 96.847 7.356 L 93.934 7.356 C 94.14 6.532 94.644 6.111 95.428 6.111 Z\" fill=\"rgb(28,28,28)\"></path></g><g transform=\"translate(192.178 10.391)\" id=\"ss11128432265_14\"><path d=\"M -1.074 14.219 L -1.074 0 L 153.994 0 L 153.994 14.219 Z\" fill=\"transparent\"></path><path d=\"M 9.964 14.086 L 2.487 3.212 L 2.372 3.212 L 2.372 12.771 L 4.323 12.771 L 4.323 13.777 L -0.758 13.777 L -0.758 12.771 L 1.251 12.771 L 1.251 2.148 L -0.758 2.148 L -0.758 1.141 L 3.048 1.141 L 9.79 10.952 L 9.887 10.952 L 9.887 2.148 L 7.936 2.148 L 7.936 1.141 L 12.939 1.141 L 12.939 2.148 L 11.027 2.148 L 11.027 14.086 Z M 17.942 13.951 C 15.411 13.951 13.866 12.093 13.866 9.52 C 13.866 6.869 15.682 4.915 18 4.915 C 20.531 4.915 21.671 7.198 21.613 9.501 L 15.508 9.501 C 15.546 11.764 16.629 12.925 18.271 12.925 C 19.333 12.925 20.222 12.519 20.743 11.223 L 21.555 11.223 C 21.033 13.022 19.739 13.951 17.942 13.951 Z M 17.923 5.747 C 16.629 5.747 15.701 6.734 15.546 8.669 L 20.048 8.669 C 19.913 6.85 19.236 5.747 17.923 5.747 Z M 26.128 13.893 L 23.442 6.076 L 22.244 6.076 L 22.244 5.069 L 26.475 5.069 L 26.475 6.076 L 25.007 6.076 L 26.997 12.229 L 27.055 12.229 L 29.161 6.908 L 28.871 6.076 L 27.673 6.076 L 27.673 5.069 L 31.924 5.069 L 31.924 6.076 L 30.359 6.076 L 32.445 12.229 L 32.503 12.229 L 34.609 6.076 L 33.256 6.076 L 33.256 5.069 L 36.715 5.069 L 36.715 6.076 L 35.652 6.076 L 32.832 13.893 L 31.595 13.893 L 29.624 8.243 L 27.345 13.893 Z M 40.804 13.777 L 40.804 12.771 L 42.948 12.771 L 42.948 2.148 L 40.804 2.148 L 40.804 1.141 L 46.464 1.141 L 46.464 2.148 L 44.59 2.148 L 44.59 6.792 L 50.695 6.792 L 50.695 2.148 L 48.821 2.148 L 48.821 1.141 L 54.482 1.141 L 54.482 2.148 L 52.337 2.148 L 52.337 12.771 L 54.482 12.771 L 54.482 13.777 L 48.821 13.777 L 48.821 12.771 L 50.695 12.771 L 50.695 7.701 L 44.59 7.701 L 44.59 12.771 L 46.464 12.771 L 46.464 13.777 Z M 59.96 13.951 C 57.468 13.951 55.768 12.171 55.768 9.481 C 55.768 6.792 57.584 4.915 59.96 4.915 C 62.433 4.915 64.152 6.695 64.152 9.365 C 64.152 12.074 62.336 13.951 59.96 13.951 Z M 60.038 13.1 C 61.467 13.1 62.51 11.939 62.51 9.423 C 62.51 6.888 61.332 5.766 59.883 5.766 C 58.453 5.766 57.41 6.927 57.41 9.443 C 57.41 11.958 58.589 13.1 60.038 13.1 Z M 65.557 13.777 L 65.557 12.771 L 67.006 12.771 L 67.006 6.076 L 65.557 6.076 L 65.557 5.069 L 68.475 5.069 L 68.475 7.121 C 69.035 5.65 70.097 4.953 71.102 4.953 C 71.99 4.953 72.512 5.553 72.512 6.289 C 72.512 6.908 72.068 7.411 71.469 7.411 C 70.889 7.411 70.426 7.024 70.426 6.405 C 70.426 6.289 70.464 6.153 70.503 6.037 C 69.537 5.96 68.784 7.159 68.513 8.069 L 68.513 12.771 L 70.213 12.771 L 70.213 13.777 Z M 75.705 3.096 C 75.068 3.096 74.604 2.67 74.604 2.012 C 74.604 1.354 75.048 0.89 75.705 0.89 C 76.304 0.89 76.768 1.316 76.768 1.974 C 76.768 2.651 76.324 3.096 75.705 3.096 Z M 73.425 13.777 L 73.425 12.771 L 75.068 12.771 L 75.068 6.076 L 73.425 6.076 L 73.425 5.069 L 76.555 5.069 L 76.555 12.771 L 78.198 12.771 L 78.198 13.777 Z M 79.198 13.777 L 79.198 12.945 L 84.859 5.921 L 81.806 5.921 C 80.782 5.921 80.628 6.23 80.202 8.107 L 79.488 8.107 L 79.488 5.069 L 86.713 5.069 L 86.713 5.901 L 81.014 12.925 L 84.55 12.925 C 85.516 12.925 85.651 12.558 86.018 10.526 L 86.752 10.526 L 86.752 13.777 Z M 92.542 13.951 C 90.05 13.951 88.35 12.171 88.35 9.481 C 88.35 6.792 90.166 4.915 92.542 4.915 C 95.015 4.915 96.735 6.695 96.735 9.365 C 96.735 12.074 94.919 13.951 92.542 13.951 Z M 92.62 13.1 C 94.049 13.1 95.093 11.939 95.093 9.423 C 95.093 6.888 93.914 5.766 92.465 5.766 C 91.035 5.766 89.993 6.927 89.993 9.443 C 89.993 11.958 91.171 13.1 92.62 13.1 Z M 98.14 13.777 L 98.14 12.771 L 99.589 12.771 L 99.589 6.076 L 98.14 6.076 L 98.14 5.069 L 101.057 5.069 L 101.057 7.314 C 102.081 5.534 103.221 4.934 104.36 4.934 C 105.809 4.934 106.717 5.901 106.717 7.682 L 106.717 12.771 L 108.147 12.771 L 108.147 13.777 L 103.878 13.777 L 103.878 12.771 L 105.21 12.771 L 105.21 8.359 C 105.21 7.546 105.075 6.927 104.708 6.579 C 104.438 6.269 104.051 6.153 103.607 6.153 C 102.332 6.153 101.096 7.566 101.096 8.978 L 101.096 12.771 L 102.409 12.771 L 102.409 13.777 Z M 118.658 14.086 C 115.181 14.086 112.823 11.319 112.823 7.449 C 112.823 3.734 115.432 0.851 118.696 0.851 C 120.339 0.851 121.536 1.49 122.309 2.38 L 122.676 0.909 L 123.681 0.909 L 123.681 5.689 L 122.792 5.689 C 122 3.328 120.744 1.915 118.716 1.915 C 116.359 1.915 114.678 3.812 114.678 7.333 C 114.678 10.971 116.378 12.984 118.928 12.984 C 121.208 12.984 122.618 11.261 122.966 8.843 L 124.048 8.843 C 123.681 12.19 121.633 14.086 118.658 14.086 Z M 129.803 13.951 C 127.311 13.951 125.611 12.171 125.611 9.481 C 125.611 6.792 127.427 4.915 129.803 4.915 C 132.276 4.915 133.996 6.695 133.996 9.365 C 133.996 12.074 132.18 13.951 129.803 13.951 Z M 129.881 13.1 C 131.31 13.1 132.354 11.939 132.354 9.423 C 132.354 6.888 131.175 5.766 129.726 5.766 C 128.297 5.766 127.253 6.927 127.253 9.443 C 127.253 11.958 128.432 13.1 129.881 13.1 Z M 138.956 13.932 C 138.067 13.932 137.333 13.603 136.811 13.08 C 135.961 12.248 135.555 10.99 135.555 9.539 C 135.555 8.069 136.057 6.675 136.888 5.843 C 137.468 5.263 138.202 4.915 139.129 4.915 C 140.327 4.915 141.293 5.553 141.834 6.598 L 141.834 1.528 L 140.366 1.528 L 140.366 0.484 L 143.322 0.484 L 143.322 12.771 L 144.713 12.771 L 144.713 13.777 L 141.872 13.777 L 141.872 11.881 C 141.196 13.254 140.134 13.932 138.956 13.932 Z M 139.458 12.925 C 140.772 12.925 141.892 11.494 141.892 9.288 C 141.892 7.275 140.907 5.921 139.496 5.921 C 138.086 5.921 137.197 7.237 137.197 9.443 C 137.197 11.668 138.182 12.925 139.458 12.925 Z M 149.912 13.951 C 147.382 13.951 145.836 12.093 145.836 9.52 C 145.836 6.869 147.652 4.915 149.97 4.915 C 152.501 4.915 153.641 7.198 153.583 9.501 L 147.478 9.501 C 147.517 11.764 148.599 12.925 150.241 12.925 C 151.303 12.925 152.192 12.519 152.713 11.223 L 153.525 11.223 C 153.003 13.022 151.709 13.951 149.912 13.951 Z M 149.893 5.747 C 148.599 5.747 147.672 6.734 147.517 8.669 L 152.018 8.669 C 151.883 6.85 151.207 5.747 149.893 5.747 Z\" fill=\"rgb(28,28,28)\"></path></g></svg>',svgContentId:11128432265}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qsa4e1\",\"data-framer-name\":\"Logos\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 652 64\"><g transform=\"translate(63 16.5)\" id=\"ss11942410935_1\"><path d=\"M 0 31 L 0 0 L 214 0 L 214 31 Z\" fill=\"transparent\"></path><path d=\"M 191.098 21.103 L 213.75 21.103 L 213.75 24.394 L 191.098 24.394 Z\" fill=\"rgb(28,28,28)\"></path><path d=\"M 8.446 24.458 C 13.301 24.458 16.721 22.116 16.721 18.569 C 16.721 11.409 7.181 14.186 7.181 11.978 C 7.181 11.409 7.762 11.075 8.651 11.075 C 9.814 11.075 10.668 11.61 10.874 12.447 L 16.652 11.309 C 15.797 8.398 12.788 6.658 8.754 6.658 C 3.898 6.658 0.581 9.168 0.581 12.447 C 0.581 19.607 10.121 16.796 10.121 19.038 C 10.121 19.707 9.506 20.142 8.446 20.142 C 7.044 20.142 6.086 19.473 5.881 18.503 L 0 19.473 C 0.786 22.518 4.035 24.458 8.446 24.458 Z\" fill=\"rgb(28,28,28)\"></path><path d=\"M 37.329 15.558 C 37.329 10.138 33.704 6.658 29.293 6.658 C 27.857 6.658 25.6 6.993 24.472 8.8 L 24.301 8.8 L 24.301 7.194 L 18.249 7.194 L 18.249 30.615 L 24.882 30.615 L 24.882 22.551 C 25.737 23.722 27.208 24.458 29.362 24.458 C 33.533 24.458 37.329 21.045 37.329 15.558 Z M 30.627 15.558 C 30.627 17.599 29.499 18.971 27.618 18.971 C 25.737 18.971 24.609 17.566 24.609 15.558 C 24.609 13.517 25.737 12.145 27.652 12.145 C 29.499 12.145 30.627 13.517 30.627 15.558 Z\" fill=\"rgb(28,28,28)\"></path><path d=\"M 45.718 5.521 L 45.718 0.502 L 39.085 0.502 L 39.085 5.521 Z M 45.718 23.923 L 45.718 7.194 L 39.085 7.194 L 39.085 23.923 Z\" fill=\"rgb(28,28,28)\"></path><path d=\"M 65.401 23.923 L 65.401 12.58 C 65.401 8.733 63.008 6.658 59.794 6.658 C 57.503 6.658 55.348 7.729 54.391 9.201 L 54.22 9.201 L 54.22 7.194 L 48.168 7.194 L 48.168 23.923 L 54.801 23.923 L 54.801 14.655 C 54.801 13.015 55.588 12.145 56.956 12.145 C 58.118 12.145 58.734 12.848 58.734 14.253 L 58.734 23.923 Z\" fill=\"rgb(28,28,28)\"></path><path d=\"M 66.915 12.38 L 69.343 12.38 L 69.343 23.923 L 76.01 23.923 L 76.01 12.38 L 79.293 12.38 L 79.293 7.194 L 76.01 7.194 C 76.01 5.855 76.797 5.052 78.096 5.052 C 78.472 5.052 79.088 5.119 79.293 5.153 L 79.293 0.234 C 78.848 0.1 77.891 0 76.831 0 C 72.42 0 69.343 1.874 69.343 6.692 L 69.343 7.194 L 66.915 7.194 Z M 80.011 0.502 L 80.011 23.923 L 86.645 23.923 L 86.645 0.502 Z\" fill=\"rgb(28,28,28)\"></path><path d=\"M 97.252 24.425 C 102.826 24.425 105.869 21.815 105.869 17.064 L 105.869 7.194 L 99.236 7.194 L 99.236 16.863 C 99.236 18.235 98.483 18.971 97.252 18.971 C 96.021 18.971 95.269 18.235 95.269 16.863 L 95.269 7.194 L 88.636 7.194 L 88.636 17.064 C 88.636 21.815 91.679 24.425 97.252 24.425 Z\" fill=\"rgb(28,28,28)\"></path><path d=\"M 126.113 18.244 L 119.896 18.244 C 119.314 19.482 118.499 19.607 117.233 19.607 C 115.524 19.607 114.464 18.67 114.088 16.863 L 126.124 16.863 L 126.124 15.759 C 126.124 10.439 122.294 6.658 116.721 6.658 C 111.592 6.658 107.488 10.104 107.488 15.592 C 107.488 21.347 111.728 24.458 117.028 24.458 C 121.234 24.458 124.951 21.757 126.113 18.244 Z M 116.857 11.175 C 118.362 11.175 119.319 12.012 119.456 13.45 L 114.122 13.45 C 114.498 11.945 115.421 11.175 116.857 11.175 Z\" fill=\"rgb(28,28,28)\"></path><path d=\"M 145.074 23.923 L 145.074 12.58 C 145.074 8.733 142.681 6.658 139.467 6.658 C 137.176 6.658 135.021 7.729 134.064 9.201 L 133.893 9.201 L 133.893 7.194 L 127.841 7.194 L 127.841 23.923 L 134.474 23.923 L 134.474 14.655 C 134.474 13.015 135.261 12.145 136.628 12.145 C 137.791 12.145 138.407 12.848 138.407 14.253 L 138.407 23.923 Z\" fill=\"rgb(28,28,28)\"></path><path d=\"M 156.333 6.658 C 151.443 6.658 146.69 9.469 146.69 15.558 C 146.69 21.213 150.896 24.458 156.333 24.458 C 160.915 24.458 164.232 21.313 165.121 17.298 L 158.555 17.298 C 158.419 18.235 157.427 18.971 156.196 18.971 C 154.418 18.971 153.29 17.733 153.29 15.558 C 153.29 13.383 154.418 12.145 156.196 12.145 C 157.427 12.145 158.419 12.881 158.59 13.818 L 165.121 13.818 C 164.129 9.904 160.778 6.658 156.333 6.658 Z\" fill=\"rgb(28,28,28)\"></path><path d=\"M 184.392 18.244 L 178.005 18.244 C 177.424 19.482 176.767 19.607 175.502 19.607 C 173.793 19.607 172.733 18.67 172.356 16.863 L 184.392 16.863 L 184.392 15.759 C 184.392 10.439 180.563 6.658 174.989 6.658 C 169.86 6.658 165.757 10.104 165.757 15.592 C 165.757 21.347 169.997 24.458 175.297 24.458 C 179.503 24.458 183.23 21.757 184.392 18.244 Z M 175.126 11.175 C 176.631 11.175 177.588 12.012 177.725 13.45 L 172.391 13.45 C 172.767 11.945 173.69 11.175 175.126 11.175 Z\" fill=\"rgb(28,28,28)\"></path></g><g transform=\"translate(350 19)\" id=\"ss11942410935_14\"><path d=\"M 0 26 L 0 0 L 284 0 L 284 26 Z\" fill=\"transparent\"></path><path d=\"M 20.215 25.758 L 6.522 5.873 L 6.31 5.873 L 6.31 23.352 L 9.884 23.352 L 9.884 25.192 L 0.578 25.192 L 0.578 23.352 L 4.258 23.352 L 4.258 3.927 L 0.578 3.927 L 0.578 2.087 L 7.548 2.087 L 19.897 20.026 L 20.074 20.026 L 20.074 3.927 L 16.5 3.927 L 16.5 2.087 L 25.664 2.087 L 25.664 3.927 L 22.161 3.927 L 22.161 25.758 Z M 34.827 25.51 C 30.191 25.51 27.361 22.114 27.361 17.408 C 27.361 12.56 30.687 8.987 34.933 8.987 C 39.568 8.987 41.655 13.162 41.549 17.372 L 30.368 17.372 C 30.439 21.512 32.421 23.635 35.428 23.635 C 37.374 23.635 39.002 22.892 39.957 20.521 L 41.443 20.521 C 40.488 23.812 38.117 25.51 34.827 25.51 Z M 34.791 10.508 C 32.421 10.508 30.722 12.313 30.439 15.851 L 38.683 15.851 C 38.436 12.525 37.197 10.508 34.791 10.508 Z M 49.818 25.404 L 44.9 11.11 L 42.706 11.11 L 42.706 9.27 L 50.455 9.27 L 50.455 11.11 L 47.766 11.11 L 51.41 22.361 L 51.517 22.361 L 55.373 12.631 L 54.842 11.11 L 52.649 11.11 L 52.649 9.27 L 60.433 9.27 L 60.433 11.11 L 57.567 11.11 L 61.388 22.361 L 61.494 22.361 L 65.351 11.11 L 62.874 11.11 L 62.874 9.27 L 69.208 9.27 L 69.208 11.11 L 67.262 11.11 L 62.096 25.404 L 59.831 25.404 L 56.222 15.073 L 52.047 25.404 Z M 76.697 25.192 L 76.697 23.352 L 80.624 23.352 L 80.624 3.927 L 76.697 3.927 L 76.697 2.087 L 87.064 2.087 L 87.064 3.927 L 83.632 3.927 L 83.632 12.419 L 94.813 12.419 L 94.813 3.927 L 91.38 3.927 L 91.38 2.087 L 101.747 2.087 L 101.747 3.927 L 97.82 3.927 L 97.82 23.352 L 101.747 23.352 L 101.747 25.192 L 91.38 25.192 L 91.38 23.352 L 94.813 23.352 L 94.813 14.082 L 83.632 14.082 L 83.632 23.352 L 87.064 23.352 L 87.064 25.192 Z M 111.781 25.51 C 107.217 25.51 104.103 22.255 104.103 17.337 C 104.103 12.419 107.429 8.987 111.781 8.987 C 116.31 8.987 119.459 12.242 119.459 17.125 C 119.459 22.078 116.133 25.51 111.781 25.51 Z M 111.923 23.954 C 114.541 23.954 116.451 21.831 116.451 17.231 C 116.451 12.596 114.293 10.544 111.639 10.544 C 109.021 10.544 107.111 12.667 107.111 17.266 C 107.111 21.866 109.269 23.954 111.923 23.954 Z M 122.032 25.192 L 122.032 23.352 L 124.686 23.352 L 124.686 11.11 L 122.032 11.11 L 122.032 9.27 L 127.375 9.27 L 127.375 13.02 C 128.401 10.331 130.347 9.058 132.187 9.058 C 133.814 9.058 134.77 10.154 134.77 11.499 C 134.77 12.631 133.956 13.551 132.859 13.551 C 131.797 13.551 130.948 12.843 130.948 11.711 C 130.948 11.499 131.019 11.251 131.09 11.039 C 129.321 10.897 127.941 13.091 127.445 14.754 L 127.445 23.352 L 130.559 23.352 L 130.559 25.192 Z M 140.617 5.661 C 139.45 5.661 138.601 4.882 138.601 3.679 C 138.601 2.476 139.414 1.627 140.617 1.627 C 141.714 1.627 142.563 2.406 142.563 3.609 C 142.563 4.847 141.75 5.661 140.617 5.661 Z M 136.442 25.192 L 136.442 23.352 L 139.45 23.352 L 139.45 11.11 L 136.442 11.11 L 136.442 9.27 L 142.174 9.27 L 142.174 23.352 L 145.182 23.352 L 145.182 25.192 Z M 147.015 25.192 L 147.015 23.671 L 157.382 10.827 L 151.791 10.827 C 149.916 10.827 149.633 11.393 148.854 14.825 L 147.545 14.825 L 147.545 9.27 L 160.778 9.27 L 160.778 10.791 L 150.341 23.635 L 156.816 23.635 C 158.585 23.635 158.832 22.963 159.505 19.248 L 160.849 19.248 L 160.849 25.192 Z M 171.454 25.51 C 166.89 25.51 163.776 22.255 163.776 17.337 C 163.776 12.419 167.102 8.987 171.454 8.987 C 175.983 8.987 179.132 12.242 179.132 17.125 C 179.132 22.078 175.806 25.51 171.454 25.51 Z M 171.596 23.954 C 174.214 23.954 176.125 21.831 176.125 17.231 C 176.125 12.596 173.966 10.544 171.313 10.544 C 168.694 10.544 166.784 12.667 166.784 17.266 C 166.784 21.866 168.942 23.954 171.596 23.954 Z M 181.705 25.192 L 181.705 23.352 L 184.359 23.352 L 184.359 11.11 L 181.705 11.11 L 181.705 9.27 L 187.048 9.27 L 187.048 13.374 C 188.923 10.119 191.011 9.022 193.098 9.022 C 195.752 9.022 197.415 10.791 197.415 14.047 L 197.415 23.352 L 200.033 23.352 L 200.033 25.192 L 192.214 25.192 L 192.214 23.352 L 194.655 23.352 L 194.655 15.285 C 194.655 13.799 194.407 12.667 193.735 12.03 C 193.24 11.464 192.532 11.251 191.718 11.251 C 189.383 11.251 187.119 13.834 187.119 16.417 L 187.119 23.352 L 189.525 23.352 L 189.525 25.192 Z M 219.284 25.758 C 212.915 25.758 208.598 20.698 208.598 13.622 C 208.598 6.829 213.375 1.557 219.354 1.557 C 222.362 1.557 224.555 2.724 225.971 4.352 L 226.643 1.663 L 228.483 1.663 L 228.483 10.402 L 226.855 10.402 C 225.405 6.086 223.105 3.503 219.39 3.503 C 215.073 3.503 211.995 6.97 211.995 13.41 C 211.995 20.062 215.108 23.741 219.779 23.741 C 223.954 23.741 226.537 20.592 227.174 16.169 L 229.155 16.169 C 228.483 22.291 224.732 25.758 219.284 25.758 Z M 239.696 25.51 C 235.132 25.51 232.018 22.255 232.018 17.337 C 232.018 12.419 235.344 8.987 239.696 8.987 C 244.225 8.987 247.374 12.242 247.374 17.125 C 247.374 22.078 244.048 25.51 239.696 25.51 Z M 239.838 23.954 C 242.456 23.954 244.367 21.831 244.367 17.231 C 244.367 12.596 242.209 10.544 239.555 10.544 C 236.937 10.544 235.026 12.667 235.026 17.266 C 235.026 21.866 237.184 23.954 239.838 23.954 Z M 256.458 25.475 C 254.83 25.475 253.486 24.873 252.53 23.918 C 250.973 22.397 250.23 20.097 250.23 17.443 C 250.23 14.754 251.15 12.207 252.672 10.685 C 253.733 9.624 255.078 8.987 256.776 8.987 C 258.97 8.987 260.739 10.154 261.73 12.065 L 261.73 2.795 L 259.041 2.795 L 259.041 0.884 L 264.454 0.884 L 264.454 23.352 L 267.002 23.352 L 267.002 25.192 L 261.8 25.192 L 261.8 21.724 C 260.562 24.237 258.616 25.475 256.458 25.475 Z M 257.378 23.635 C 259.784 23.635 261.836 21.017 261.836 16.983 C 261.836 13.303 260.031 10.827 257.448 10.827 C 254.865 10.827 253.238 13.233 253.238 17.266 C 253.238 21.335 255.042 23.635 257.378 23.635 Z M 276.525 25.51 C 271.89 25.51 269.059 22.114 269.059 17.408 C 269.059 12.56 272.385 8.987 276.631 8.987 C 281.266 8.987 283.354 13.162 283.248 17.372 L 272.067 17.372 C 272.137 21.512 274.119 23.635 277.126 23.635 C 279.072 23.635 280.7 22.892 281.655 20.521 L 283.141 20.521 C 282.186 23.812 279.815 25.51 276.525 25.51 Z M 276.49 10.508 C 274.119 10.508 272.421 12.313 272.137 15.851 L 280.382 15.851 C 280.134 12.525 278.896 10.508 276.49 10.508 Z\" fill=\"rgb(28,28,28)\"></path></g></svg>',svgContentId:11942410935,withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yw9ba2\",\"data-framer-name\":\"Latest Work\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cplbit\",\"data-framer-name\":\"Frame 48142\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xI1BPuEJK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(328668deg, rgb(19, 20, 22) 0%, rgb(75, 81, 93) 77.5%, rgb(60, 64, 72) 100%)\"},children:\"Latest Work\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(328668deg, rgb(19, 20, 22) 0%, rgb(75, 81, 93) 77.5%, rgb(60, 64, 72) 100%)\"},children:\"Latest Work\"})})}),className:\"framer-1yi718i\",\"data-framer-name\":\"Trusted by industry experts\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r1f0av\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12s92qw\",\"data-framer-name\":\"Frame 48141\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kJIbK6TN3:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9965, 1600px) - 196px) / 2, 1px)`},P3H5TCksB:{width:`max((min(min(${componentViewport?.width||\"100vw\"} * 0.9965, 1600px) - 80px, 808px) - 16px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1449+80+117.6+0+0+0},SAoLtcIOY:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9965, 1600px) - 576px) / 2, 1px)`},xI1BPuEJK:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9965, 550px) - 24px)`,y:(componentViewport?.y||0)+0+1186+32+82.6+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:532,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9965, 1600px) - 176px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1392+80+117.6+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15esp5a-container\",\"data-framer-cursor\":\"1udmcr2\",nodeId:\"U1AnDbFLs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P3H5TCksB:{variant:\"s_a4mm6o0\"},xI1BPuEJK:{variant:\"cq4LLXfXa\"}},children:/*#__PURE__*/_jsx(CardPorto,{height:\"100%\",id:\"U1AnDbFLs\",layoutId:\"U1AnDbFLs\",style:{width:\"100%\"},variant:\"tC1GWZpWW\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kJIbK6TN3:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9965, 1600px) - 196px) / 2, 1px)`},P3H5TCksB:{width:`max((min(min(${componentViewport?.width||\"100vw\"} * 0.9965, 1600px) - 80px, 808px) - 16px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1449+80+117.6+0+0+0},SAoLtcIOY:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9965, 1600px) - 576px) / 2, 1px)`},xI1BPuEJK:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9965, 550px) - 24px)`,y:(componentViewport?.y||0)+0+1186+32+82.6+0+0+0+538}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:532,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9965, 1600px) - 176px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1392+80+117.6+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13fkujd-container\",\"data-framer-cursor\":\"1udmcr2\",nodeId:\"DODd1n6K7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P3H5TCksB:{variant:\"nCmq8yMho\"},xI1BPuEJK:{variant:\"HenOtx3cs\"}},children:/*#__PURE__*/_jsx(CardPorto,{height:\"100%\",id:\"DODd1n6K7\",layoutId:\"DODd1n6K7\",style:{width:\"100%\"},variant:\"U_JerMMif\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w4ci1j\",\"data-framer-name\":\"Frame 48141\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kJIbK6TN3:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9965, 1600px) - 196px) / 2, 1px)`},P3H5TCksB:{width:`max((min(min(${componentViewport?.width||\"100vw\"} * 0.9965, 1600px) - 80px, 808px) - 16px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1449+80+117.6+0+548+0},SAoLtcIOY:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9965, 1600px) - 576px) / 2, 1px)`},xI1BPuEJK:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9965, 550px) - 24px)`,y:(componentViewport?.y||0)+0+1186+32+82.6+0+1076+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:532,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9965, 1600px) - 176px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1392+80+117.6+0+568+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fuuynu-container\",\"data-framer-cursor\":\"1udmcr2\",nodeId:\"e0FSzFXkk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P3H5TCksB:{variant:\"C9e4Dia_A\"},xI1BPuEJK:{variant:\"GOhQ78qSe\"}},children:/*#__PURE__*/_jsx(CardPorto,{height:\"100%\",id:\"e0FSzFXkk\",layoutId:\"e0FSzFXkk\",style:{width:\"100%\"},variant:\"fDtO_qrFG\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kJIbK6TN3:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9965, 1600px) - 196px) / 2, 1px)`},P3H5TCksB:{width:`max((min(min(${componentViewport?.width||\"100vw\"} * 0.9965, 1600px) - 80px, 808px) - 16px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1449+80+117.6+0+548+0},SAoLtcIOY:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9965, 1600px) - 576px) / 2, 1px)`},xI1BPuEJK:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9965, 550px) - 24px)`,y:(componentViewport?.y||0)+0+1186+32+82.6+0+1076+0+538}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:532,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9965, 1600px) - 176px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1392+80+117.6+0+568+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16y3lju-container\",\"data-framer-cursor\":\"1udmcr2\",nodeId:\"abwhm3p9T\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P3H5TCksB:{variant:\"WJh0bRJzS\"},xI1BPuEJK:{variant:\"mujfQO8P4\"}},children:/*#__PURE__*/_jsx(CardPorto,{height:\"100%\",id:\"abwhm3p9T\",layoutId:\"abwhm3p9T\",style:{width:\"100%\"},variant:\"W41xxMT_W\",width:\"100%\"})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2xl0ib\",\"data-framer-name\":\"Expert says\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1czmz1v\",\"data-framer-name\":\"Frame 48142\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(328668deg, rgb(19, 20, 22) 0%, rgb(75, 81, 93) 77.5%, rgb(60, 64, 72) 100%)\"},children:\"Trusted by industry experts\"})})}),className:\"framer-1vg0qkd\",\"data-framer-name\":\"Trusted by industry experts\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xI1BPuEJK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6104cd6c-5339-44fa-a405-69ba8569b52c, rgb(72, 75, 81))\"},children:\"Providing the best solution for my client always be my important goal   \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-6104cd6c-5339-44fa-a405-69ba8569b52c, rgb(72, 75, 81))\"},children:\"Providing the best solution for my client always be my important goal   \"})}),className:\"framer-mud65b\",\"data-framer-name\":\"Providing the best solution for my client always be my important goal,\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vbb4a9 hidden-185c1wz hidden-1dtyykj\",\"data-framer-name\":\"Frame 48141\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cgwq6c\",\"data-framer-name\":\"Frame 48028\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"\u201CAdrian is a great worker, with great skills, who is always willing to learn new things to make your project better. We recommend him and will keep working with him in future projects.\u201D\"})}),className:\"framer-2aocf3\",\"data-framer-name\":\"\u201CAdrian is a great worker, with great skills, who is always willing to learn new things to make your project better. We recommend him and will keep working with him in future projects.\u201D\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-axn0xs\",\"data-framer-name\":\"Frame 48131\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b856ce9d-e1f4-4ddc-910b-f9059b05d182, rgb(19, 20, 22))\"},children:\"- Elsa Lozano\"})}),className:\"framer-oy00jv\",\"data-framer-name\":\"- Elsa Lozano\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1hra2zy\",\"data-styles-preset\":\"jf7ZtXElO\",style:{\"--framer-text-color\":\"var(--token-c5a067e6-e648-403f-ab78-3c7d7aee98ff, rgb(4, 96, 158))\"},children:\"Fulton\"})}),className:\"framer-1mrq8sz\",\"data-framer-name\":\"Fulton\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v64bsb\",\"data-framer-name\":\"Frame 48040\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"\u201CAdrian is a competent and fast Figma designer that get the job done. We were very impressed and content. High recommended.\u201D\"})}),className:\"framer-2gqo2o\",\"data-framer-name\":\"\u201CAdrian is a competent and fast Figma designer that get the job done. We were very impressed and content. High recommended.\u201D\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w99ya4\",\"data-framer-name\":\"Frame 48131\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b856ce9d-e1f4-4ddc-910b-f9059b05d182, rgb(19, 20, 22))\"},children:\"- Natalie Feller\"})}),className:\"framer-ry4c0b\",\"data-framer-name\":\"- Natalie Feller\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1hra2zy\",\"data-styles-preset\":\"jf7ZtXElO\",style:{\"--framer-text-color\":\"var(--token-24d65dc0-bf01-4c01-8208-7f51c7161242, rgb(9, 115, 93))\"},children:\"Adminassist\"})}),className:\"framer-hn0nwg\",\"data-framer-name\":\"Adminassist\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ww2l1q\",\"data-framer-name\":\"Frame 48041\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"\u201CAdrian works hard, learn fast and delivers high quality work on time. We enjoyed working with him and will do it again.\u201D\"})}),className:\"framer-oy4mf7\",\"data-framer-name\":\"\u201CAdrian works hard, learn fast and delivers high quality work on time. We enjoyed working with him and will do it again.\u201D\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-162a997\",\"data-framer-name\":\"Frame 48131\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b856ce9d-e1f4-4ddc-910b-f9059b05d182, rgb(19, 20, 22))\"},children:\"- Adam Burns\"})}),className:\"framer-326i7g\",\"data-framer-name\":\"- Adam Burns\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1hra2zy\",\"data-styles-preset\":\"jf7ZtXElO\",style:{\"--framer-text-color\":\"var(--token-6d80ae4a-0edd-4dd3-b702-1689ec03c57b, rgb(83, 90, 197))\"},children:\"New Horizon Code\"})}),className:\"framer-sinzvv\",\"data-framer-name\":\"New Horizon Code\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hpw3oi-container hidden-72rtr7 hidden-1dtyykj hidden-1cnbdg3 hidden-4w2lo4\",isModuleExternal:true,nodeId:\"hOOWqXxUz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:-51,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:500,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:32,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"hOOWqXxUz\",intervalControl:1.5,itemAmount:2,layoutId:\"hOOWqXxUz\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fj1v9y\",\"data-framer-name\":\"Frame 48028\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"\u201CAdrian is a great worker, with great skills, who is always willing to learn new things to make your project better. We recommend him and will keep working with him in future projects.\u201D\"})}),className:\"framer-1iqfb21\",\"data-framer-name\":\"\u201CAdrian is a great worker, with great skills, who is always willing to learn new things to make your project better. We recommend him and will keep working with him in future projects.\u201D\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l4rkq0\",\"data-framer-name\":\"Frame 48131\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1yZWd1bGFy\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(19, 20, 22)\"},children:\"- Elsa Lozano\"})}),className:\"framer-6i9o9x\",\"data-framer-name\":\"- Elsa Lozano\",fonts:[\"GF;Instrument Serif-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(4, 96, 158)\"},children:\"Fulton\"})}),className:\"framer-u4kw1r\",\"data-framer-name\":\"Fulton\",fonts:[\"CUSTOM;Neue Montreal Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8y45p1\",\"data-framer-name\":\"Frame 48040\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"\u201CAdrian is a competent and fast Figma designer that get the job done. We were very impressed and content. High recommended.\u201D\"})}),className:\"framer-1mfmkxw\",\"data-framer-name\":\"\u201CAdrian is a competent and fast Figma designer that get the job done. We were very impressed and content. High recommended.\u201D\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-minrpa\",\"data-framer-name\":\"Frame 48131\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1yZWd1bGFy\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(19, 20, 22)\"},children:\"- Natalie Feller\"})}),className:\"framer-v071vc\",\"data-framer-name\":\"- Natalie Feller\",fonts:[\"GF;Instrument Serif-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(206, 119, 38)\"},children:\"Adminassist\"})}),className:\"framer-1rj21uh\",\"data-framer-name\":\"Adminassist\",fonts:[\"CUSTOM;Neue Montreal Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f4dt5o\",\"data-framer-name\":\"Frame 48041\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"\u201CAdrian works hard, learn fast and delivers high quality work on time. We enjoyed working with him and will do it again.\u201D\"})}),className:\"framer-15b5ovc\",\"data-framer-name\":\"\u201CAdrian works hard, learn fast and delivers high quality work on time. We enjoyed working with him and will do it again.\u201D\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6nxhuq\",\"data-framer-name\":\"Frame 48131\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1yZWd1bGFy\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(19, 20, 22)\"},children:\"- Adam Burns\"})}),className:\"framer-1bgyh8m\",\"data-framer-name\":\"- Adam Burns\",fonts:[\"GF;Instrument Serif-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(9, 115, 93)\"},children:\"New Horizon Code\"})}),className:\"framer-sansl1\",\"data-framer-name\":\"New Horizon Code\",fonts:[\"CUSTOM;Neue Montreal Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l6k9pw-container hidden-72rtr7 hidden-185c1wz hidden-1cnbdg3 hidden-4w2lo4\",isModuleExternal:true,nodeId:\"TIWTBebyg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:-10,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:500,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:20,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"TIWTBebyg\",intervalControl:1.5,itemAmount:1,layoutId:\"TIWTBebyg\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fj1v9y\",\"data-framer-name\":\"Frame 48028\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"\u201CAdrian is a great worker, with great skills, who is always willing to learn new things to make your project better. We recommend him and will keep working with him in future projects.\u201D\"})}),className:\"framer-1iqfb21\",\"data-framer-name\":\"\u201CAdrian is a great worker, with great skills, who is always willing to learn new things to make your project better. We recommend him and will keep working with him in future projects.\u201D\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l4rkq0\",\"data-framer-name\":\"Frame 48131\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1yZWd1bGFy\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(19, 20, 22)\"},children:\"- Elsa Lozano\"})}),className:\"framer-6i9o9x\",\"data-framer-name\":\"- Elsa Lozano\",fonts:[\"GF;Instrument Serif-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(4, 96, 158)\"},children:\"Fulton\"})}),className:\"framer-u4kw1r\",\"data-framer-name\":\"Fulton\",fonts:[\"CUSTOM;Neue Montreal Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8y45p1\",\"data-framer-name\":\"Frame 48040\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"\u201CAdrian is a competent and fast Figma designer that get the job done. We were very impressed and content. High recommended.\u201D\"})}),className:\"framer-1mfmkxw\",\"data-framer-name\":\"\u201CAdrian is a competent and fast Figma designer that get the job done. We were very impressed and content. High recommended.\u201D\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-minrpa\",\"data-framer-name\":\"Frame 48131\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1yZWd1bGFy\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(19, 20, 22)\"},children:\"- Natalie Feller\"})}),className:\"framer-v071vc\",\"data-framer-name\":\"- Natalie Feller\",fonts:[\"GF;Instrument Serif-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(206, 119, 38)\"},children:\"Adminassist\"})}),className:\"framer-1rj21uh\",\"data-framer-name\":\"Adminassist\",fonts:[\"CUSTOM;Neue Montreal Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f4dt5o\",\"data-framer-name\":\"Frame 48041\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"\u201CAdrian works hard, learn fast and delivers high quality work on time. We enjoyed working with him and will do it again.\u201D\"})}),className:\"framer-15b5ovc\",\"data-framer-name\":\"\u201CAdrian works hard, learn fast and delivers high quality work on time. We enjoyed working with him and will do it again.\u201D\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6nxhuq\",\"data-framer-name\":\"Frame 48131\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1yZWd1bGFy\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(19, 20, 22)\"},children:\"- Adam Burns\"})}),className:\"framer-1bgyh8m\",\"data-framer-name\":\"- Adam Burns\",fonts:[\"GF;Instrument Serif-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"Neue Montreal Medium\", \"Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(9, 115, 93)\"},children:\"New Horizon Code\"})}),className:\"framer-sansl1\",\"data-framer-name\":\"New Horizon Code\",fonts:[\"CUSTOM;Neue Montreal Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19hkeg0\",\"data-framer-name\":\"Dribble\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aus7f\",\"data-framer-name\":\"Frame 48142\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Check out other design explorations\"})}),className:\"framer-1fm3miu\",\"data-framer-name\":\"Trusted by industry experts\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xI1BPuEJK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6104cd6c-5339-44fa-a405-69ba8569b52c, rgb(72, 75, 81))\"},children:\"Check out my regularly upload of design\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-6104cd6c-5339-44fa-a405-69ba8569b52c, rgb(72, 75, 81))\"},children:\"Check out my regularly upload of design\"})}),className:\"framer-1gpv94w\",\"data-framer-name\":\"Providing the best solution for my client always be my important goal,\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-h5k879-container\",isModuleExternal:true,nodeId:\"ZqJyjIrGC\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:2,rotateX:2,rotateY:-40,transformPerspective:2e3},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:23,height:\"100%\",id:\"ZqJyjIrGC\",intervalControl:1.5,itemAmount:2,layoutId:\"ZqJyjIrGC\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2250,intrinsicWidth:3e3,pixelHeight:2250,pixelWidth:3e3,sizes:\"3000px\",src:\"https://framerusercontent.com/images/gbhdts6n6DJWo82QtFuGdZcIE.png\",srcSet:\"https://framerusercontent.com/images/gbhdts6n6DJWo82QtFuGdZcIE.png?scale-down-to=512 512w,https://framerusercontent.com/images/gbhdts6n6DJWo82QtFuGdZcIE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gbhdts6n6DJWo82QtFuGdZcIE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gbhdts6n6DJWo82QtFuGdZcIE.png 3000w\"},className:\"framer-1gb5cbv\",\"data-framer-name\":\"Footer_pic_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2250,intrinsicWidth:3e3,pixelHeight:2250,pixelWidth:3e3,sizes:\"3000px\",src:\"https://framerusercontent.com/images/YZQrEeTPHho3hsK06sMYt02T1o.png\",srcSet:\"https://framerusercontent.com/images/YZQrEeTPHho3hsK06sMYt02T1o.png?scale-down-to=512 512w,https://framerusercontent.com/images/YZQrEeTPHho3hsK06sMYt02T1o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YZQrEeTPHho3hsK06sMYt02T1o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YZQrEeTPHho3hsK06sMYt02T1o.png 3000w\"},className:\"framer-29e6wh\",\"data-framer-name\":\"Footer_pic_2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2250,intrinsicWidth:3e3,pixelHeight:2250,pixelWidth:3e3,sizes:\"3000px\",src:\"https://framerusercontent.com/images/OCmbijmVfHz2PaRgGqdmvdX930.png\",srcSet:\"https://framerusercontent.com/images/OCmbijmVfHz2PaRgGqdmvdX930.png?scale-down-to=512 512w,https://framerusercontent.com/images/OCmbijmVfHz2PaRgGqdmvdX930.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OCmbijmVfHz2PaRgGqdmvdX930.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/OCmbijmVfHz2PaRgGqdmvdX930.png 3000w\"},className:\"framer-5v8697\",\"data-framer-name\":\"Footer_pic_3\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tlz0ms\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kJIbK6TN3:{y:(componentViewport?.y||0)+0+3425.6+0+597+24},P3H5TCksB:{y:(componentViewport?.y||0)+0+3403.6+0+604+24},xI1BPuEJK:{y:(componentViewport?.y||0)+0+4070.2+32+505.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+3425.6+0+604+24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-r2s4ut-container\",nodeId:\"MRwhl7Tuj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BtnDiv,{height:\"100%\",id:\"MRwhl7Tuj\",layoutId:\"MRwhl7Tuj\",style:{height:\"100%\"},variant:\"k_izWirfP\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kJIbK6TN3:{y:(componentViewport?.y||0)+0+4091.6},P3H5TCksB:{y:(componentViewport?.y||0)+0+4076.6},xI1BPuEJK:{y:(componentViewport?.y||0)+0+4684.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:617,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4098.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uk7qmt-container\",nodeId:\"LOs_L9iCf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kJIbK6TN3:{variant:\"CLLg6iUMx\"},P3H5TCksB:{variant:\"OVD_5uq8x\"},SAoLtcIOY:{variant:\"LinZAH1ZG\"},xI1BPuEJK:{variant:\"ODGKQKnCz\"}},children:/*#__PURE__*/_jsx(BottomNavigation,{height:\"100%\",id:\"LOs_L9iCf\",layoutId:\"LOs_L9iCf\",style:{width:\"100%\"},variant:\"gv6y1AlwR\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-e1bSx.framer-lux5qc, .framer-e1bSx .framer-lux5qc { display: block; }\",\".framer-e1bSx.framer-72rtr7 { align-content: center; align-items: center; background-color: #fdfdfc; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-e1bSx .framer-u0f0mr-container { flex: none; height: 72px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 0px; width: 100%; z-index: 1; }\",\".framer-e1bSx .framer-75t1fx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: visible; padding: 152px 80px 96px 80px; position: relative; width: 100%; }\",\".framer-e1bSx .framer-ek6nqj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e1bSx .framer-14h4h5m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-e1bSx .framer-slv39g { flex: none; height: 36px; overflow: visible; position: relative; width: 72px; }\",\".framer-e1bSx .framer-c82wnu { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 6px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: min-content; }\",\".framer-e1bSx .framer-1hhyzd7-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-e1bSx .framer-14uysh { bottom: 16px; flex: none; height: 1px; left: -66px; position: absolute; right: -66px; z-index: 1; }\",\".framer-e1bSx .framer-i4d529 { --border-bottom-width: 3px; --border-color: #efefef; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; aspect-ratio: 1 / 1; background-color: #1cbd19; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: absolute; right: -8px; top: -7px; width: 16px; z-index: 1; }\",\".framer-e1bSx .framer-1wru5om { flex: none; height: 35px; overflow: visible; position: relative; width: 187px; }\",\".framer-e1bSx .framer-3y9k50 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 51%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-e1bSx .framer-ibczgg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e1bSx .framer-fjrq68 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 646px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-e1bSx .framer-1ktm820 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-e1bSx .framer-1ago1aw-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-e1bSx .framer-196d4i7-container { flex: none; height: 42px; position: relative; width: 42px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-e1bSx .framer-zy5zyr, .framer-e1bSx .framer-vbb4a9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e1bSx .framer-1oyi7u7 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 326px; position: relative; white-space: pre-wrap; width: 305px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-e1bSx .framer-16h7phr { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 326px; position: relative; white-space: pre-wrap; width: 326px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-e1bSx .framer-7fav01 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: center; max-width: 1600px; min-height: 47px; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-e1bSx .framer-4al81l-container { flex: none; height: 170px; position: relative; width: 100%; }\",\".framer-e1bSx .framer-1fpjgbf, .framer-e1bSx .framer-hwf5iy { aspect-ratio: 1.4 / 1; height: var(--framer-aspect-ratio-supported, 156px); position: relative; width: 219px; }\",\".framer-e1bSx .framer-18m70zy { aspect-ratio: 1.4 / 1; height: var(--framer-aspect-ratio-supported, 158px); position: relative; width: 221px; }\",\".framer-e1bSx .framer-qqodiu { aspect-ratio: 1.4 / 1; height: var(--framer-aspect-ratio-supported, 157px); position: relative; width: 220px; }\",\".framer-e1bSx .framer-lvz432 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-e1bSx .framer-xh91qk, .framer-e1bSx .framer-1yi718i, .framer-e1bSx .framer-1vg0qkd, .framer-e1bSx .framer-mud65b, .framer-e1bSx .framer-1fm3miu, .framer-e1bSx .framer-1gpv94w { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-e1bSx .framer-1qsa4e1 { flex: none; height: 64px; position: relative; width: 652px; }\",\".framer-e1bSx .framer-yw9ba2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: visible; padding: 80px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-e1bSx .framer-cplbit { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-e1bSx .framer-1r1f0av { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e1bSx .framer-12s92qw, .framer-e1bSx .framer-w4ci1j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e1bSx .framer-15esp5a-container, .framer-e1bSx .framer-13fkujd-container, .framer-e1bSx .framer-1fuuynu-container, .framer-e1bSx .framer-16y3lju-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-e1bSx .framer-2xl0ib { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: visible; padding: 80px; position: relative; width: 100%; }\",\".framer-e1bSx .framer-1czmz1v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-e1bSx .framer-1cgwq6c, .framer-e1bSx .framer-v64bsb, .framer-e1bSx .framer-1ww2l1q { align-content: flex-start; align-items: flex-start; background-color: #f5f5f4; border-bottom-left-radius: 17px; border-bottom-right-radius: 17px; border-top-left-radius: 17px; border-top-right-radius: 17px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 350px; justify-content: space-between; overflow: hidden; padding: 40px 33px 40px 33px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-e1bSx .framer-2aocf3, .framer-e1bSx .framer-2gqo2o, .framer-e1bSx .framer-oy4mf7, .framer-e1bSx .framer-1iqfb21, .framer-e1bSx .framer-1mfmkxw, .framer-e1bSx .framer-15b5ovc { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-e1bSx .framer-axn0xs, .framer-e1bSx .framer-l4rkq0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-e1bSx .framer-oy00jv, .framer-e1bSx .framer-6i9o9x { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 277px; word-break: break-word; word-wrap: break-word; }\",\".framer-e1bSx .framer-1mrq8sz, .framer-e1bSx .framer-u4kw1r { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 346px; word-break: break-word; word-wrap: break-word; }\",\".framer-e1bSx .framer-1w99ya4, .framer-e1bSx .framer-162a997, .framer-e1bSx .framer-minrpa, .framer-e1bSx .framer-6nxhuq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e1bSx .framer-ry4c0b, .framer-e1bSx .framer-hn0nwg, .framer-e1bSx .framer-326i7g, .framer-e1bSx .framer-sinzvv, .framer-e1bSx .framer-v071vc, .framer-e1bSx .framer-1rj21uh, .framer-e1bSx .framer-1bgyh8m, .framer-e1bSx .framer-sansl1 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 336px; word-break: break-word; word-wrap: break-word; }\",\".framer-e1bSx .framer-1hpw3oi-container { flex: none; height: 291px; position: relative; width: 698px; }\",\".framer-e1bSx .framer-fj1v9y, .framer-e1bSx .framer-8y45p1, .framer-e1bSx .framer-1f4dt5o { align-content: flex-start; align-items: flex-start; background-color: #f5f5f4; border-bottom-left-radius: 17px; border-bottom-right-radius: 17px; border-top-left-radius: 17px; border-top-right-radius: 17px; display: flex; flex-direction: column; flex-wrap: nowrap; height: 498px; justify-content: space-between; overflow: hidden; padding: 40px 18px 40px 33px; position: relative; width: 232px; will-change: var(--framer-will-change-override, transform); }\",\".framer-e1bSx .framer-1l6k9pw-container { flex: none; height: 264px; position: relative; width: 100%; }\",\".framer-e1bSx .framer-19hkeg0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 49px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: visible; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-e1bSx .framer-aus7f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-e1bSx .framer-h5k879-container { aspect-ratio: 2.7375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 466px); position: relative; width: 100%; }\",\".framer-e1bSx .framer-1gb5cbv, .framer-e1bSx .framer-29e6wh, .framer-e1bSx .framer-5v8697 { aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 0.7165726861712756px 0.7165726861712756px -0.9375px rgba(0, 0, 0, 0.07), 0px 2.173055528794066px 2.173055528794066px -1.875px rgba(0, 0, 0, 0.06896), 0px 5.744388169336015px 5.744388169336015px -2.8125px rgba(0, 0, 0, 0.05904), 0px 18px 18px -3.75px rgba(0, 0, 0, 0.025); height: var(--framer-aspect-ratio-supported, 2250px); overflow: visible; position: relative; width: 3000px; }\",\".framer-e1bSx .framer-1tlz0ms { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 24px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-e1bSx .framer-r2s4ut-container { flex: none; height: 45px; position: relative; width: auto; }\",\".framer-e1bSx .framer-1uk7qmt-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-e1bSx.framer-72rtr7, .framer-e1bSx .framer-75t1fx, .framer-e1bSx .framer-ek6nqj, .framer-e1bSx .framer-14h4h5m, .framer-e1bSx .framer-c82wnu, .framer-e1bSx .framer-1ktm820, .framer-e1bSx .framer-zy5zyr, .framer-e1bSx .framer-7fav01, .framer-e1bSx .framer-lvz432, .framer-e1bSx .framer-yw9ba2, .framer-e1bSx .framer-cplbit, .framer-e1bSx .framer-1r1f0av, .framer-e1bSx .framer-12s92qw, .framer-e1bSx .framer-w4ci1j, .framer-e1bSx .framer-2xl0ib, .framer-e1bSx .framer-1czmz1v, .framer-e1bSx .framer-vbb4a9, .framer-e1bSx .framer-axn0xs, .framer-e1bSx .framer-1w99ya4, .framer-e1bSx .framer-162a997, .framer-e1bSx .framer-l4rkq0, .framer-e1bSx .framer-minrpa, .framer-e1bSx .framer-6nxhuq, .framer-e1bSx .framer-19hkeg0, .framer-e1bSx .framer-aus7f, .framer-e1bSx .framer-1tlz0ms { gap: 0px; } .framer-e1bSx.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-e1bSx.framer-72rtr7 > :first-child, .framer-e1bSx .framer-75t1fx > :first-child, .framer-e1bSx .framer-ek6nqj > :first-child, .framer-e1bSx .framer-c82wnu > :first-child, .framer-e1bSx .framer-7fav01 > :first-child, .framer-e1bSx .framer-lvz432 > :first-child, .framer-e1bSx .framer-yw9ba2 > :first-child, .framer-e1bSx .framer-cplbit > :first-child, .framer-e1bSx .framer-1r1f0av > :first-child, .framer-e1bSx .framer-2xl0ib > :first-child, .framer-e1bSx .framer-1czmz1v > :first-child, .framer-e1bSx .framer-axn0xs > :first-child, .framer-e1bSx .framer-1w99ya4 > :first-child, .framer-e1bSx .framer-162a997 > :first-child, .framer-e1bSx .framer-l4rkq0 > :first-child, .framer-e1bSx .framer-minrpa > :first-child, .framer-e1bSx .framer-6nxhuq > :first-child, .framer-e1bSx .framer-19hkeg0 > :first-child, .framer-e1bSx .framer-aus7f > :first-child { margin-top: 0px; } .framer-e1bSx.framer-72rtr7 > :last-child, .framer-e1bSx .framer-75t1fx > :last-child, .framer-e1bSx .framer-ek6nqj > :last-child, .framer-e1bSx .framer-c82wnu > :last-child, .framer-e1bSx .framer-7fav01 > :last-child, .framer-e1bSx .framer-lvz432 > :last-child, .framer-e1bSx .framer-yw9ba2 > :last-child, .framer-e1bSx .framer-cplbit > :last-child, .framer-e1bSx .framer-1r1f0av > :last-child, .framer-e1bSx .framer-2xl0ib > :last-child, .framer-e1bSx .framer-1czmz1v > :last-child, .framer-e1bSx .framer-axn0xs > :last-child, .framer-e1bSx .framer-1w99ya4 > :last-child, .framer-e1bSx .framer-162a997 > :last-child, .framer-e1bSx .framer-l4rkq0 > :last-child, .framer-e1bSx .framer-minrpa > :last-child, .framer-e1bSx .framer-6nxhuq > :last-child, .framer-e1bSx .framer-19hkeg0 > :last-child, .framer-e1bSx .framer-aus7f > :last-child { margin-bottom: 0px; } .framer-e1bSx .framer-75t1fx > *, .framer-e1bSx .framer-1r1f0av > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-e1bSx .framer-ek6nqj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-e1bSx .framer-14h4h5m > * { margin: 0px; margin-left: calc(21px / 2); margin-right: calc(21px / 2); } .framer-e1bSx .framer-14h4h5m > :first-child, .framer-e1bSx .framer-1ktm820 > :first-child, .framer-e1bSx .framer-zy5zyr > :first-child, .framer-e1bSx .framer-12s92qw > :first-child, .framer-e1bSx .framer-w4ci1j > :first-child, .framer-e1bSx .framer-vbb4a9 > :first-child, .framer-e1bSx .framer-1tlz0ms > :first-child { margin-left: 0px; } .framer-e1bSx .framer-14h4h5m > :last-child, .framer-e1bSx .framer-1ktm820 > :last-child, .framer-e1bSx .framer-zy5zyr > :last-child, .framer-e1bSx .framer-12s92qw > :last-child, .framer-e1bSx .framer-w4ci1j > :last-child, .framer-e1bSx .framer-vbb4a9 > :last-child, .framer-e1bSx .framer-1tlz0ms > :last-child { margin-right: 0px; } .framer-e1bSx .framer-c82wnu > *, .framer-e1bSx .framer-axn0xs > *, .framer-e1bSx .framer-1w99ya4 > *, .framer-e1bSx .framer-162a997 > *, .framer-e1bSx .framer-l4rkq0 > *, .framer-e1bSx .framer-minrpa > *, .framer-e1bSx .framer-6nxhuq > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-e1bSx .framer-1ktm820 > *, .framer-e1bSx .framer-12s92qw > *, .framer-e1bSx .framer-w4ci1j > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-e1bSx .framer-zy5zyr > *, .framer-e1bSx .framer-vbb4a9 > * { margin: 0px; margin-left: calc(36px / 2); margin-right: calc(36px / 2); } .framer-e1bSx .framer-7fav01 > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-e1bSx .framer-lvz432 > *, .framer-e1bSx .framer-cplbit > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-e1bSx .framer-yw9ba2 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-e1bSx .framer-2xl0ib > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-e1bSx .framer-1czmz1v > *, .framer-e1bSx .framer-aus7f > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-e1bSx .framer-19hkeg0 > * { margin: 0px; margin-bottom: calc(49px / 2); margin-top: calc(49px / 2); } .framer-e1bSx .framer-1tlz0ms > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-e1bSx[data-border=\"true\"]::after, .framer-e1bSx [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-e1bSx.framer-72rtr7 { width: 810px; } .framer-e1bSx .framer-u0f0mr-container { order: 7; } .framer-e1bSx .framer-75t1fx { align-content: center; align-items: center; order: 0; padding: 124px 40px 96px 40px; } .framer-e1bSx .framer-14h4h5m, .framer-e1bSx .framer-zy5zyr, .framer-e1bSx .framer-12s92qw, .framer-e1bSx .framer-w4ci1j { max-width: 808px; } .framer-e1bSx .framer-ibczgg { flex-direction: column; gap: 40px; justify-content: flex-start; max-width: 808px; } .framer-e1bSx .framer-1oyi7u7, .framer-e1bSx .framer-16h7phr { flex: 1 0 0px; width: 1px; } .framer-e1bSx .framer-7fav01 { order: 1; } .framer-e1bSx .framer-lvz432, .framer-e1bSx .framer-1hpw3oi-container, .framer-e1bSx .framer-1tlz0ms { order: 2; } .framer-e1bSx .framer-yw9ba2 { order: 3; padding: 80px 40px 80px 40px; } .framer-e1bSx .framer-cplbit, .framer-e1bSx .framer-1czmz1v, .framer-e1bSx .framer-aus7f { order: 0; } .framer-e1bSx .framer-1r1f0av { gap: 16px; order: 1; } .framer-e1bSx .framer-2xl0ib { order: 4; padding: 80px 40px 80px 40px; } .framer-e1bSx .framer-19hkeg0 { order: 5; padding: 0px 40px 0px 40px; } .framer-e1bSx .framer-h5k879-container { height: var(--framer-aspect-ratio-supported, 266px); order: 1; } .framer-e1bSx .framer-1uk7qmt-container { order: 6; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-e1bSx .framer-ibczgg, .framer-e1bSx .framer-1r1f0av { gap: 0px; } .framer-e1bSx .framer-ibczgg > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-e1bSx .framer-ibczgg > :first-child, .framer-e1bSx .framer-1r1f0av > :first-child { margin-top: 0px; } .framer-e1bSx .framer-ibczgg > :last-child, .framer-e1bSx .framer-1r1f0av > :last-child { margin-bottom: 0px; } .framer-e1bSx .framer-1r1f0av > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\",\"@media (max-width: 809px) { .framer-e1bSx.framer-72rtr7 { width: 436px; } .framer-e1bSx .framer-u0f0mr-container { height: auto; left: 50%; transform: translateX(-50%); } .framer-e1bSx .framer-75t1fx { max-width: 550px; padding: 64px 12px 24px 12px; } .framer-e1bSx .framer-14h4h5m { gap: 8px; height: 25px; } .framer-e1bSx .framer-slv39g { height: 18px; width: 33px; } .framer-e1bSx .framer-c82wnu { bottom: 0px; display: block; gap: unset; height: unset; left: 0px; padding: unset; right: 0px; top: 0px; transform: unset; width: unset; } .framer-e1bSx .framer-1hhyzd7-container { left: 48%; position: absolute; top: 50%; transform: translate(-50%, -50%); } .framer-e1bSx .framer-i4d529 { --border-bottom-width: 1.25px; --border-left-width: 1.25px; --border-right-width: 1.25px; --border-top-width: 1.25px; aspect-ratio: unset; height: 7px; right: -4px; top: -3px; width: 7px; } .framer-e1bSx .framer-1wru5om { width: 162px; } .framer-e1bSx .framer-ibczgg { flex-direction: column; gap: 32px; justify-content: flex-start; } .framer-e1bSx .framer-fjrq68, .framer-e1bSx .framer-1oyi7u7, .framer-e1bSx .framer-16h7phr { width: 100%; } .framer-e1bSx .framer-1ktm820 { justify-content: flex-start; width: 100%; } .framer-e1bSx .framer-1ago1aw-container { height: 40px; width: 204px; } .framer-e1bSx .framer-zy5zyr { flex-direction: column; gap: 20px; } .framer-e1bSx .framer-7fav01 { gap: 24px; min-height: unset; } .framer-e1bSx .framer-4al81l-container { order: 0; } .framer-e1bSx .framer-lvz432 { gap: 16px; padding: 32px 0px 32px 0px; } .framer-e1bSx .framer-1qsa4e1 { height: 35px; width: 356px; } .framer-e1bSx .framer-yw9ba2 { gap: 25px; max-width: 550px; padding: 32px 12px 32px 12px; } .framer-e1bSx .framer-cplbit { gap: 16px; width: 100%; } .framer-e1bSx .framer-1yi718i, .framer-e1bSx .framer-1vg0qkd, .framer-e1bSx .framer-mud65b, .framer-e1bSx .framer-1fm3miu, .framer-e1bSx .framer-1gpv94w { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-e1bSx .framer-1r1f0av { gap: 6px; } .framer-e1bSx .framer-12s92qw, .framer-e1bSx .framer-w4ci1j { flex-direction: column; gap: 6px; } .framer-e1bSx .framer-15esp5a-container, .framer-e1bSx .framer-13fkujd-container, .framer-e1bSx .framer-1fuuynu-container, .framer-e1bSx .framer-16y3lju-container { flex: none; width: 100%; } .framer-e1bSx .framer-2xl0ib { max-width: 550px; padding: 32px 12px 32px 12px; } .framer-e1bSx .framer-1czmz1v, .framer-e1bSx .framer-aus7f { gap: 4px; width: 100%; } .framer-e1bSx .framer-19hkeg0 { gap: 76px; max-width: 550px; padding: 32px 16px 32px 16px; } .framer-e1bSx .framer-h5k879-container { height: var(--framer-aspect-ratio-supported, 147px); } .framer-e1bSx .framer-1tlz0ms { padding: 0px; } .framer-e1bSx .framer-r2s4ut-container { height: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-e1bSx .framer-14h4h5m, .framer-e1bSx .framer-c82wnu, .framer-e1bSx .framer-ibczgg, .framer-e1bSx .framer-zy5zyr, .framer-e1bSx .framer-7fav01, .framer-e1bSx .framer-lvz432, .framer-e1bSx .framer-yw9ba2, .framer-e1bSx .framer-cplbit, .framer-e1bSx .framer-1r1f0av, .framer-e1bSx .framer-12s92qw, .framer-e1bSx .framer-w4ci1j, .framer-e1bSx .framer-1czmz1v, .framer-e1bSx .framer-19hkeg0, .framer-e1bSx .framer-aus7f { gap: 0px; } .framer-e1bSx .framer-14h4h5m > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-e1bSx .framer-14h4h5m > :first-child { margin-left: 0px; } .framer-e1bSx .framer-14h4h5m > :last-child { margin-right: 0px; } .framer-e1bSx .framer-c82wnu > *, .framer-e1bSx .framer-c82wnu > :first-child, .framer-e1bSx .framer-c82wnu > :last-child { margin: 0px; } .framer-e1bSx .framer-ibczgg > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-e1bSx .framer-ibczgg > :first-child, .framer-e1bSx .framer-zy5zyr > :first-child, .framer-e1bSx .framer-7fav01 > :first-child, .framer-e1bSx .framer-lvz432 > :first-child, .framer-e1bSx .framer-yw9ba2 > :first-child, .framer-e1bSx .framer-cplbit > :first-child, .framer-e1bSx .framer-1r1f0av > :first-child, .framer-e1bSx .framer-12s92qw > :first-child, .framer-e1bSx .framer-w4ci1j > :first-child, .framer-e1bSx .framer-1czmz1v > :first-child, .framer-e1bSx .framer-19hkeg0 > :first-child, .framer-e1bSx .framer-aus7f > :first-child { margin-top: 0px; } .framer-e1bSx .framer-ibczgg > :last-child, .framer-e1bSx .framer-zy5zyr > :last-child, .framer-e1bSx .framer-7fav01 > :last-child, .framer-e1bSx .framer-lvz432 > :last-child, .framer-e1bSx .framer-yw9ba2 > :last-child, .framer-e1bSx .framer-cplbit > :last-child, .framer-e1bSx .framer-1r1f0av > :last-child, .framer-e1bSx .framer-12s92qw > :last-child, .framer-e1bSx .framer-w4ci1j > :last-child, .framer-e1bSx .framer-1czmz1v > :last-child, .framer-e1bSx .framer-19hkeg0 > :last-child, .framer-e1bSx .framer-aus7f > :last-child { margin-bottom: 0px; } .framer-e1bSx .framer-zy5zyr > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-e1bSx .framer-7fav01 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-e1bSx .framer-lvz432 > *, .framer-e1bSx .framer-cplbit > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-e1bSx .framer-yw9ba2 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-e1bSx .framer-1r1f0av > *, .framer-e1bSx .framer-12s92qw > *, .framer-e1bSx .framer-w4ci1j > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-e1bSx .framer-1czmz1v > *, .framer-e1bSx .framer-aus7f > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-e1bSx .framer-19hkeg0 > * { margin: 0px; margin-bottom: calc(76px / 2); margin-top: calc(76px / 2); } }}\",\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-e1bSx.framer-72rtr7 { width: 1200px; } .framer-e1bSx .framer-14h4h5m { gap: 12px; } .framer-e1bSx .framer-i4d529 { top: -8px; } .framer-e1bSx .framer-fjrq68 { order: 0; } .framer-e1bSx .framer-1ktm820 { order: 1; } .framer-e1bSx .framer-16h7phr { width: 299px; } .framer-e1bSx .framer-lvz432 { padding: 40px; } .framer-e1bSx .framer-12s92qw, .framer-e1bSx .framer-w4ci1j { gap: 36px; } .framer-e1bSx .framer-h5k879-container { height: var(--framer-aspect-ratio-supported, 378px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-e1bSx .framer-14h4h5m, .framer-e1bSx .framer-12s92qw, .framer-e1bSx .framer-w4ci1j { gap: 0px; } .framer-e1bSx .framer-14h4h5m > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-e1bSx .framer-14h4h5m > :first-child, .framer-e1bSx .framer-12s92qw > :first-child, .framer-e1bSx .framer-w4ci1j > :first-child { margin-left: 0px; } .framer-e1bSx .framer-14h4h5m > :last-child, .framer-e1bSx .framer-12s92qw > :last-child, .framer-e1bSx .framer-w4ci1j > :last-child { margin-right: 0px; } .framer-e1bSx .framer-12s92qw > *, .framer-e1bSx .framer-w4ci1j > * { margin: 0px; margin-left: calc(36px / 2); margin-right: calc(36px / 2); } }}\",\"@media (min-width: 1928px) { .framer-e1bSx.framer-72rtr7 { width: 1928px; } .framer-e1bSx .framer-75t1fx { padding: 152px 280px 96px 280px; } .framer-e1bSx .framer-7fav01 { max-width: unset; } .framer-e1bSx .framer-lvz432 { max-width: 1600px; padding: 40px 280px 40px 280px; } .framer-e1bSx .framer-yw9ba2, .framer-e1bSx .framer-2xl0ib { padding: 80px 280px 80px 280px; } .framer-e1bSx .framer-19hkeg0 { padding: 0px 280px 0px 280px; } .framer-e1bSx .framer-h5k879-container { height: var(--framer-aspect-ratio-supported, 380px); }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4537\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"P3H5TCksB\":{\"layout\":[\"fixed\",\"auto\"]},\"xI1BPuEJK\":{\"layout\":[\"fixed\",\"auto\"]},\"kJIbK6TN3\":{\"layout\":[\"fixed\",\"auto\"]},\"SAoLtcIOY\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Mpv666ndc\":{\"pattern\":\":Mpv666ndc\",\"name\":\"all-work\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-e1bSx\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:4537,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Neue Montreal Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/of3o5ynODnhRHcaSyDkINttrjZI.otf\"},{family:\"Instrument Serif\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentserif/v4/jizBRFtNs2ka5fXjeivQ4LroWlx-2zcZj1bIkNo.woff2\",weight:\"400\"},{family:\"Neue Montreal Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/EN0wrjjcgDdG3SMgxfEI19PNHRs.woff2\"},{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\"}]},...TopNavigationFonts,...TimeDateFonts,...BtnDivFonts,...CopyEmailFonts,...TickerFonts,...CardPortoFonts,...SlideshowFonts,...BottomNavigationFonts,...CursorCustomFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"4537\",\"framerScrollSections\":\"{\\\"Mpv666ndc\\\":{\\\"pattern\\\":\\\":Mpv666ndc\\\",\\\"name\\\":\\\"all-work\\\"}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"P3H5TCksB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xI1BPuEJK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kJIbK6TN3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SAoLtcIOY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__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", "fontStack", "useForceRender", "_", "set", "ye", "te", "v", "formatTimeOrDate", "outputType", "showYear", "showMonth", "showWeekday", "showMinutes", "showSeconds", "timeFormat", "monthFormat", "localCode", "date", "onlyYearIsShown", "Time", "props", "fontFamily", "fontSize", "fontWeight", "showHours", "color", "font", "tabularFont", "alignment", "visible", "setIsVisible", "isCanvas", "RenderTarget", "render", "useLocaleCode", "textContent", "ue", "int", "p", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "TopNavigationFonts", "getFonts", "eYjR3Bv72_default", "TimeDateFonts", "Time", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText2", "BtnDivFonts", "VpFTgtZIC_default", "ContainerWithOptimizedAppearEffect", "Container", "CopyEmailFonts", "nFEdqzqQb_default", "TickerFonts", "Ticker", "CardPortoFonts", "UNm37oHfV_default", "SlideshowFonts", "Slideshow", "BottomNavigationFonts", "rphTyI6OZ_default", "CursorCustomFonts", "E9v5XrIgt_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transformTemplate1", "_", "t", "transition2", "animation2", "transition3", "animation3", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref1", "isDisplayed2", "isDisplayed3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "SVG", "x", "Image2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
