{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/H7Hprjo8hFoL6HVuvde6/SlideShow.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/A6Q7MaNuQxpx9k3eKY7Z/Video.js", "ssg:https://framerusercontent.com/modules/6juMaAlpyYULo2wXbCru/fFpNbo0vcy51ZSN6ZhE8/b8Z7mhznH.js", "ssg:https://framerusercontent.com/modules/hcl7PyFsE8HIv3Izz6hT/2NQVx6psNSNuYBUEz7wv/BJRkGEe70.js", "ssg:https://framerusercontent.com/modules/J1krfWj8bP0qpnFqHYdB/BFtioKbnU8oXctMX8XR3/ehD6KCtvS.js", "ssg:https://framerusercontent.com/modules/VkzLUoSz8ZfLNNSWh1gZ/rgG54Kd0UbVzeA7as0io/GMjUFyErP.js", "ssg:https://framerusercontent.com/modules/BuhkEoCjokxASSm4N8ag/GL63galqG8UMMki1wJiQ/in2sAWAxB.js", "ssg:https://framerusercontent.com/modules/ZQFWIKoFzSXqmhRMcuvF/N6dnQvpZk4olKvRqSOuj/OT65yoXqA.js", "ssg:https://framerusercontent.com/modules/m9ccriRjboLBwYsVnodW/dXswCiaKjhcw9VbPFenN/uJVkY4gBH.js", "ssg:https://framerusercontent.com/modules/kmXS7JZLPBLlxvJuyL1g/WPW4FrNfo8YI9iSBSlEW/W7kSNdLiN.js", "ssg:https://framerusercontent.com/modules/Yyu4Kzx8lJkT8drCBaVO/L5ypJLq9X3wSAnlcfu90/ZgerIGKyp.js", "ssg:https://framerusercontent.com/modules/2KdXa4AFwpER130h5KVN/uBZ1HhHCmW9i6kLJzfJw/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,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){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 swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync,mix}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;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[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});}},[hasChildren]);const scheduleMeasure=useCallback(()=>{sync.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\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(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */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}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},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\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},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},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},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;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// autoplay overrides this to auto from browser side; so all good for LCP videos\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/A6Q7MaNuQxpx9k3eKY7Z/Video.js\";const VideoFonts=getFonts(Video);const HeroFonts=getFonts(Hero);const cycleOrder=[\"fNhF0IFD8\",\"C4ygWNFFz\"];const serializationHash=\"framer-NfgqN\";const variantClassNames={C4ygWNFFz:\"framer-v-1lj57oi\",fNhF0IFD8:\"framer-v-1wgrf50\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"fNhF0IFD8\",\"Variant 2\":\"C4ygWNFFz\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"fNhF0IFD8\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fNhF0IFD8\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1tqrx9r=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"C4ygWNFFz\");});const onMouseLeave9bya5f=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"fNhF0IFD8\");});const onTap1ntxbu4=activeVariantCallback(async(...args)=>{setVariant(\"C4ygWNFFz\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"C4ygWNFFz\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1wgrf50\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"fNhF0IFD8\",onTap:onTap1tqrx9r,ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({C4ygWNFFz:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeave9bya5f,onTap:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14ugi-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"b7uFUy4Qs-container\",nodeId:\"b7uFUy4Qs\",rendersWithMotion:true,scopeId:\"b8Z7mhznH\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"b7uFUy4Qs\",isMixedBorderRadius:false,layoutId:\"b7uFUy4Qs\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/AU0fAKfhKOwwt4lBuMGlh73NvsA.mp4\",srcType:\"URL\",srcUrl:\"https://player.vimeo.com/progressive_redirect/playback/1051092255/rendition/540p/file.mp4?loc=external&log_user=0&signature=4bb260d4dc758afad5c6f3faad9f5c4f02efe4ca93e7b7ecc71295f0384fb014\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({C4ygWNFFz:{muted:false}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1edx46x\",layoutDependency:layoutDependency,layoutId:\"D8jT24wLb\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17q2jiw\",layoutDependency:layoutDependency,layoutId:\"VQv7MDADN\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-at0jsp\",layoutDependency:layoutDependency,layoutId:\"oAM5iLlD5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255)))\"},children:\"ISO 27001 Certification\"})}),className:\"framer-1g6tax\",fonts:[\"FS;Satoshi-black\"],layoutDependency:layoutDependency,layoutId:\"yr0T5aUwb\",style:{\"--extracted-r6o4lv\":\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hihtm5\",layoutDependency:layoutDependency,layoutId:\"SMImK5_Sh\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:'\"I only hope this assures our partners that we treat their data with the highest standards\"'})}),className:\"framer-6mz6h0\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"G3HvmBHKS\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nz53ik\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"eQLEsW9Im\",onTap:onTap1ntxbu4,style:{backgroundColor:\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transformTemplate:transformTemplate1,whileHover:animation,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2z0yoh-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"abAnmKmPt-container\",nodeId:\"abAnmKmPt\",rendersWithMotion:true,scopeId:\"b8Z7mhznH\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Play\",id:\"abAnmKmPt\",layoutId:\"abAnmKmPt\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NfgqN.framer-ybtgzn, .framer-NfgqN .framer-ybtgzn { display: block; }\",\".framer-NfgqN.framer-1wgrf50 { cursor: pointer; height: 508px; overflow: hidden; position: relative; width: 356px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NfgqN .framer-14ugi-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-NfgqN .framer-1edx46x { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: flex-end; left: 0px; overflow: hidden; padding: 0px 0px 30px 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-NfgqN .framer-17q2jiw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 111px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 296px; }\",\".framer-NfgqN .framer-at0jsp, .framer-NfgqN .framer-1hihtm5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-NfgqN .framer-1g6tax { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NfgqN .framer-6mz6h0 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-NfgqN .framer-1nz53ik { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 105px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 105px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-NfgqN .framer-2z0yoh-container { flex: none; height: 60px; left: calc(52.38095238095241% - 60px / 2); position: absolute; top: calc(51.428571428571445% - 60px / 2); width: 60px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NfgqN .framer-1edx46x, .framer-NfgqN .framer-17q2jiw, .framer-NfgqN .framer-at0jsp, .framer-NfgqN .framer-1hihtm5 { gap: 0px; } .framer-NfgqN .framer-1edx46x > *, .framer-NfgqN .framer-17q2jiw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NfgqN .framer-1edx46x > :first-child, .framer-NfgqN .framer-17q2jiw > :first-child { margin-top: 0px; } .framer-NfgqN .framer-1edx46x > :last-child, .framer-NfgqN .framer-17q2jiw > :last-child { margin-bottom: 0px; } .framer-NfgqN .framer-at0jsp > *, .framer-NfgqN .framer-1hihtm5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NfgqN .framer-at0jsp > :first-child, .framer-NfgqN .framer-1hihtm5 > :first-child { margin-left: 0px; } .framer-NfgqN .framer-at0jsp > :last-child, .framer-NfgqN .framer-1hihtm5 > :last-child { margin-right: 0px; } }\",\".framer-NfgqN.framer-v-1lj57oi.framer-1wgrf50 { cursor: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 508\n * @framerIntrinsicWidth 356\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"C4ygWNFFz\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerb8Z7mhznH=withCSS(Component,css,\"framer-NfgqN\");export default Framerb8Z7mhznH;Framerb8Z7mhznH.displayName=\"Test\";Framerb8Z7mhznH.defaultProps={height:508,width:356};addPropertyControls(Framerb8Z7mhznH,{variant:{options:[\"fNhF0IFD8\",\"C4ygWNFFz\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerb8Z7mhznH,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHPGVFYUXYXE33DZ75OIT4JFGHITX5PE/PSUTMASCDJTVPERDYJZPN23BVUFUCQIF/J64QX5IPOHK56I2KYUNBQ5M2XWZEYKYX.woff2\",weight:\"900\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]},...VideoFonts,...HeroFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerb8Z7mhznH\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"356\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"C4ygWNFFz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"508\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./b8Z7mhznH.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";const IconoirFonts=getFonts(Iconoir);const enabledGestures={YFdWPPa59:{hover:true}};const serializationHash=\"framer-2AUXX\";const variantClassNames={YFdWPPa59:\"framer-v-15c1lts\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({description,height,id,image,link,title,width,...props})=>{return{...props,LiAD_G3WP:image??props.LiAD_G3WP??{src:\"https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg 1620w\"},m_0iHq4Sj:description??props.m_0iHq4Sj??\"Property video, Slideshow, Social media and add-on graphics. Your one-stop-shop solution for dynamic real estate video editing service. \",nap7Mak5w:title??props.nap7Mak5w??\"Photo\",zU0gvxmxo:link??props.zU0gvxmxo};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,nap7Mak5w,m_0iHq4Sj,zU0gvxmxo,LiAD_G3WP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"YFdWPPa59\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"YFdWPPa59-hover\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:zU0gvxmxo,motionChild:true,nodeId:\"YFdWPPa59\",scopeId:\"BJRkGEe70\",children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1080,pixelWidth:1620,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(LiAD_G3WP),...{positionX:\"center\",positionY:\"center\"}},className:`${cx(scopingClassNames,\"framer-15c1lts\",className,classNames)} framer-1mgvt8p`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"YFdWPPa59\",ref:refBinding,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({\"YFdWPPa59-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l5ejf1\",layoutDependency:layoutDependency,layoutId:\"TNV3Firq3\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 78%, rgba(0, 0, 0, 0.74) 100%)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},variants:{\"YFdWPPa59-hover\":{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 28.000000000000004%, rgba(0, 0, 0, 0.74) 100%)\"}}}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-17ijdd5\",layoutDependency:layoutDependency,layoutId:\"XBll_rO6P\",style:{backgroundColor:\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ejgjld-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"D0WOHYJo0-container\",nodeId:\"D0WOHYJo0\",rendersWithMotion:true,scopeId:\"BJRkGEe70\",style:{rotate:45},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowUp\",id:\"D0WOHYJo0\",layoutId:\"D0WOHYJo0\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-180z3w6\",layoutDependency:layoutDependency,layoutId:\"eWw2E47XN\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n9u2dl\",layoutDependency:layoutDependency,layoutId:\"yCA3KROhc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255)))\"},children:\"Photo\"})}),className:\"framer-1dj45un\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"d2HRVyrUj\",style:{\"--extracted-r6o4lv\":\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:nap7Mak5w,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kev6th\",layoutDependency:layoutDependency,layoutId:\"QH23_fgld\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255)))\"},children:\"Property video, Slideshow, Social media and add-on graphics. Your one-stop-shop solution for dynamic real estate video editing service. \"})}),className:\"framer-ac179d\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"X68rLXO06\",style:{\"--extracted-r6o4lv\":\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:m_0iHq4Sj,verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2AUXX.framer-1mgvt8p, .framer-2AUXX .framer-1mgvt8p { display: block; }\",\".framer-2AUXX.framer-15c1lts { cursor: pointer; height: 395px; position: relative; text-decoration: none; width: 595px; }\",\".framer-2AUXX .framer-1l5ejf1 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2AUXX .framer-17ijdd5 { flex: none; height: 50px; position: absolute; right: 19px; top: 16px; width: 50px; z-index: 1; }\",\".framer-2AUXX .framer-ejgjld-container { aspect-ratio: 1.3529411764705883 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); left: 48%; position: absolute; top: 52%; width: 45px; }\",\".framer-2AUXX .framer-180z3w6 { align-content: center; align-items: center; bottom: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 0px; width: 100%; }\",\".framer-2AUXX .framer-1n9u2dl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-2AUXX .framer-1dj45un { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-2AUXX .framer-1kev6th { 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 20px 0px 20px; position: relative; width: 100%; }\",\".framer-2AUXX .framer-ac179d { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2AUXX .framer-180z3w6, .framer-2AUXX .framer-1n9u2dl, .framer-2AUXX .framer-1kev6th { gap: 0px; } .framer-2AUXX .framer-180z3w6 > *, .framer-2AUXX .framer-1n9u2dl > *, .framer-2AUXX .framer-1kev6th > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2AUXX .framer-180z3w6 > :first-child, .framer-2AUXX .framer-1n9u2dl > :first-child, .framer-2AUXX .framer-1kev6th > :first-child { margin-top: 0px; } .framer-2AUXX .framer-180z3w6 > :last-child, .framer-2AUXX .framer-1n9u2dl > :last-child, .framer-2AUXX .framer-1kev6th > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 395\n * @framerIntrinsicWidth 595\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"CTILPhY81\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"nap7Mak5w\":\"title\",\"m_0iHq4Sj\":\"description\",\"zU0gvxmxo\":\"link\",\"LiAD_G3WP\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBJRkGEe70=withCSS(Component,css,\"framer-2AUXX\");export default FramerBJRkGEe70;FramerBJRkGEe70.displayName=\"Card_services\";FramerBJRkGEe70.defaultProps={height:395,width:595};addPropertyControls(FramerBJRkGEe70,{nap7Mak5w:{defaultValue:\"Photo\",description:\"Photo\",displayTextArea:false,placeholder:\"\",title:\"Title\",type:ControlType.String},m_0iHq4Sj:{defaultValue:\"Property video, Slideshow, Social media and add-on graphics. Your one-stop-shop solution for dynamic real estate video editing service. \",description:\"\",displayTextArea:false,title:\"Description\",type:ControlType.String},zU0gvxmxo:{title:\"Link\",type:ControlType.Link},LiAD_G3WP:{__defaultAssetReference:\"data:framer/asset-reference,BsgvRfbi9asJlDwNwndjEmiPD7w.jpg?originalFilename=12-1-1620x1080.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerBJRkGEe70,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]},...IconoirFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBJRkGEe70\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"595\",\"framerVariables\":\"{\\\"nap7Mak5w\\\":\\\"title\\\",\\\"m_0iHq4Sj\\\":\\\"description\\\",\\\"zU0gvxmxo\\\":\\\"link\\\",\\\"LiAD_G3WP\\\":\\\"image\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"395\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CTILPhY81\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BJRkGEe70.map", "// Generated by Framer (99ae5b3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"P4ROtkjcX\"];const serializationHash=\"framer-ucQg3\";const variantClassNames={P4ROtkjcX:\"framer-v-8r1kfu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,image,width,...props})=>{var _ref;return{...props,lplj5623k:(_ref=image!==null&&image!==void 0?image:props.lplj5623k)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/A3Mpvm0FGMsayEoAJl3E1Zgg.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/A3Mpvm0FGMsayEoAJl3E1Zgg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/A3Mpvm0FGMsayEoAJl3E1Zgg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/A3Mpvm0FGMsayEoAJl3E1Zgg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/A3Mpvm0FGMsayEoAJl3E1Zgg.jpg 3781w\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,lplj5623k,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"P4ROtkjcX\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",pixelHeight:2521,pixelWidth:3781,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(lplj5623k),...{positionX:\"center\",positionY:\"center\"}},className:cx(serializationHash,...sharedStyleClassNames,\"framer-8r1kfu\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"P4ROtkjcX\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style}})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ucQg3.framer-1d6ulv4, .framer-ucQg3 .framer-1d6ulv4 { display: block; }\",\".framer-ucQg3.framer-8r1kfu { height: 514px; overflow: hidden; position: relative; width: 766px; will-change: var(--framer-will-change-override, transform); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 514\n * @framerIntrinsicWidth 766\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"lplj5623k\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerehD6KCtvS=withCSS(Component,css,\"framer-ucQg3\");export default FramerehD6KCtvS;FramerehD6KCtvS.displayName=\"Gallry_Hero1\";FramerehD6KCtvS.defaultProps={height:514,width:766};addPropertyControls(FramerehD6KCtvS,{lplj5623k:{__defaultAssetReference:\"data:framer/asset-reference,A3Mpvm0FGMsayEoAJl3E1Zgg.jpg?originalFilename=aubrey-odom-ITzfgP77DTg-unsplash.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerehD6KCtvS,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerehD6KCtvS\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"514\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"lplj5623k\\\":\\\"image\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"766\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ehD6KCtvS.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/A6Q7MaNuQxpx9k3eKY7Z/Video.js\";const VideoFonts=getFonts(Video);const HeroFonts=getFonts(Hero);const cycleOrder=[\"poTnGHbK2\",\"SvVRu8hqB\"];const serializationHash=\"framer-BwOZA\";const variantClassNames={poTnGHbK2:\"framer-v-1ab7ft0\",SvVRu8hqB:\"framer-v-ldfjnt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"poTnGHbK2\",\"Variant 2\":\"SvVRu8hqB\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"poTnGHbK2\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"poTnGHbK2\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseLeave1mgw1sp=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"poTnGHbK2\");});const onTape50ieg=activeVariantCallback(async(...args)=>{setVariant(\"SvVRu8hqB\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"SvVRu8hqB\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1ab7ft0\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"poTnGHbK2\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({SvVRu8hqB:{\"data-framer-name\":\"Variant 2\",\"data-highlight\":true,onMouseLeave:onMouseLeave1mgw1sp}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1s86mz1-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"k2CToiWKJ-container\",nodeId:\"k2CToiWKJ\",rendersWithMotion:true,scopeId:\"GMjUFyErP\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"k2CToiWKJ\",isMixedBorderRadius:false,layoutId:\"k2CToiWKJ\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/twauzn3rRzZhmDdfg4kPlAm2C18.mp4\",srcType:\"URL\",srcUrl:\"https://player.vimeo.com/progressive_redirect/playback/1051093462/rendition/540p/file.mp4?loc=external&log_user=0&signature=02fcddd8c6fc9360456e8dd88841a0f86f4c97e41bf084bbb653c1578a9f266a\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({SvVRu8hqB:{muted:false}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ff62ma\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"fKOUeTZuo\",onTap:onTape50ieg,style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sw7quy\",layoutDependency:layoutDependency,layoutId:\"gkbPBDEx_\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n4szpj\",layoutDependency:layoutDependency,layoutId:\"OBnof7iiv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255)))\"},children:\"Innovation is in our DNA\"})}),className:\"framer-7oiouz\",fonts:[\"FS;Satoshi-black\"],layoutDependency:layoutDependency,layoutId:\"AFiGCJMak\",style:{\"--extracted-r6o4lv\":\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sjphdn\",layoutDependency:layoutDependency,layoutId:\"RMbmCgU6W\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:'\"Instead of humans supported by tech it\\'s tech supported by humans\"'})}),className:\"framer-1uve14j\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"WAR2ozXwc\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-m8todl\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"YlrKUwlWf\",onTap:onTape50ieg,style:{backgroundColor:\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transformTemplate:transformTemplate1,whileHover:animation,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rzde08-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Diwjuy46W-container\",nodeId:\"Diwjuy46W\",rendersWithMotion:true,scopeId:\"GMjUFyErP\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Play\",id:\"Diwjuy46W\",layoutId:\"Diwjuy46W\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BwOZA.framer-1bahdx9, .framer-BwOZA .framer-1bahdx9 { display: block; }\",\".framer-BwOZA.framer-1ab7ft0 { height: 508px; overflow: hidden; position: relative; width: 356px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BwOZA .framer-1s86mz1-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-BwOZA .framer-1ff62ma { align-content: center; align-items: center; bottom: 0px; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: flex-end; left: 0px; overflow: hidden; padding: 0px 0px 30px 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-BwOZA .framer-sw7quy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 111px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 296px; }\",\".framer-BwOZA .framer-1n4szpj, .framer-BwOZA .framer-1sjphdn { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-BwOZA .framer-7oiouz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BwOZA .framer-1uve14j { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-BwOZA .framer-m8todl { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 105px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 105px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-BwOZA .framer-1rzde08-container { flex: none; height: 60px; left: calc(52.38095238095241% - 60px / 2); position: absolute; top: calc(51.428571428571445% - 60px / 2); width: 60px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BwOZA .framer-1ff62ma, .framer-BwOZA .framer-sw7quy, .framer-BwOZA .framer-1n4szpj, .framer-BwOZA .framer-1sjphdn { gap: 0px; } .framer-BwOZA .framer-1ff62ma > *, .framer-BwOZA .framer-sw7quy > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BwOZA .framer-1ff62ma > :first-child, .framer-BwOZA .framer-sw7quy > :first-child { margin-top: 0px; } .framer-BwOZA .framer-1ff62ma > :last-child, .framer-BwOZA .framer-sw7quy > :last-child { margin-bottom: 0px; } .framer-BwOZA .framer-1n4szpj > *, .framer-BwOZA .framer-1sjphdn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-BwOZA .framer-1n4szpj > :first-child, .framer-BwOZA .framer-1sjphdn > :first-child { margin-left: 0px; } .framer-BwOZA .framer-1n4szpj > :last-child, .framer-BwOZA .framer-1sjphdn > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 508\n * @framerIntrinsicWidth 356\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"SvVRu8hqB\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGMjUFyErP=withCSS(Component,css,\"framer-BwOZA\");export default FramerGMjUFyErP;FramerGMjUFyErP.displayName=\"Test3\";FramerGMjUFyErP.defaultProps={height:508,width:356};addPropertyControls(FramerGMjUFyErP,{variant:{options:[\"poTnGHbK2\",\"SvVRu8hqB\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerGMjUFyErP,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHPGVFYUXYXE33DZ75OIT4JFGHITX5PE/PSUTMASCDJTVPERDYJZPN23BVUFUCQIF/J64QX5IPOHK56I2KYUNBQ5M2XWZEYKYX.woff2\",weight:\"900\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]},...VideoFonts,...HeroFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGMjUFyErP\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"508\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"356\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SvVRu8hqB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GMjUFyErP.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/A6Q7MaNuQxpx9k3eKY7Z/Video.js\";const VideoFonts=getFonts(Video);const HeroFonts=getFonts(Hero);const cycleOrder=[\"p_8cPUHOs\",\"JwRsMBQAv\"];const serializationHash=\"framer-HocVZ\";const variantClassNames={JwRsMBQAv:\"framer-v-dboop5\",p_8cPUHOs:\"framer-v-7f3l0x\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"p_8cPUHOs\",\"Variant 2\":\"JwRsMBQAv\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"p_8cPUHOs\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"p_8cPUHOs\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseLeave1t1oy2f=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"p_8cPUHOs\");});const onTapmohsnl=activeVariantCallback(async(...args)=>{setVariant(\"JwRsMBQAv\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"JwRsMBQAv\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-7f3l0x\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"p_8cPUHOs\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({JwRsMBQAv:{\"data-framer-name\":\"Variant 2\",\"data-highlight\":true,onMouseLeave:onMouseLeave1t1oy2f}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-re72m4-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"IG7TswirW-container\",nodeId:\"IG7TswirW\",rendersWithMotion:true,scopeId:\"in2sAWAxB\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"IG7TswirW\",isMixedBorderRadius:false,layoutId:\"IG7TswirW\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/46kkZAemacV5zH5BNvMB62rh3ps.mp4\",srcType:\"URL\",srcUrl:\"https://player.vimeo.com/progressive_redirect/playback/1051093123/rendition/540p/file.mp4?loc=external&log_user=0&signature=e9284b824cc79b4a35e5e68aeda14a606893f36c6761cbdc4e27564cd4a5d5fc\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({JwRsMBQAv:{muted:false}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lobihv\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"AVQScacNz\",onTap:onTapmohsnl,style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vxq2tn\",layoutDependency:layoutDependency,layoutId:\"oN9S0dRJJ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-d7cjjm\",layoutDependency:layoutDependency,layoutId:\"reV_P85ry\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255)))\"},children:\"ESG our view on sustainbility\"})}),className:\"framer-1p7l5uk\",fonts:[\"FS;Satoshi-black\"],layoutDependency:layoutDependency,layoutId:\"p6kw8c47w\",style:{\"--extracted-r6o4lv\":\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ag5bc0\",layoutDependency:layoutDependency,layoutId:\"qQyeMsDCk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:'\"ESG has been incorporated in all our business strategies\"'})}),className:\"framer-1b6zl1j\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"oVGW5qlSj\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-12e6qkv\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"R2B9WNn8r\",onTap:onTapmohsnl,style:{backgroundColor:\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transformTemplate:transformTemplate1,whileHover:animation,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gl12j-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"JVeHvpz0M-container\",nodeId:\"JVeHvpz0M\",rendersWithMotion:true,scopeId:\"in2sAWAxB\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Play\",id:\"JVeHvpz0M\",layoutId:\"JVeHvpz0M\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HocVZ.framer-6y4rhd, .framer-HocVZ .framer-6y4rhd { display: block; }\",\".framer-HocVZ.framer-7f3l0x { height: 508px; overflow: hidden; position: relative; width: 356px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HocVZ .framer-re72m4-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-HocVZ .framer-1lobihv { align-content: center; align-items: center; bottom: 0px; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: flex-end; left: 0px; overflow: hidden; padding: 0px 0px 30px 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-HocVZ .framer-vxq2tn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 111px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 296px; }\",\".framer-HocVZ .framer-d7cjjm, .framer-HocVZ .framer-1ag5bc0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-HocVZ .framer-1p7l5uk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HocVZ .framer-1b6zl1j { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-HocVZ .framer-12e6qkv { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 105px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 105px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-HocVZ .framer-gl12j-container { flex: none; height: 60px; left: calc(52.38095238095241% - 60px / 2); position: absolute; top: calc(51.428571428571445% - 60px / 2); width: 60px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HocVZ .framer-1lobihv, .framer-HocVZ .framer-vxq2tn, .framer-HocVZ .framer-d7cjjm, .framer-HocVZ .framer-1ag5bc0 { gap: 0px; } .framer-HocVZ .framer-1lobihv > *, .framer-HocVZ .framer-vxq2tn > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-HocVZ .framer-1lobihv > :first-child, .framer-HocVZ .framer-vxq2tn > :first-child { margin-top: 0px; } .framer-HocVZ .framer-1lobihv > :last-child, .framer-HocVZ .framer-vxq2tn > :last-child { margin-bottom: 0px; } .framer-HocVZ .framer-d7cjjm > *, .framer-HocVZ .framer-1ag5bc0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-HocVZ .framer-d7cjjm > :first-child, .framer-HocVZ .framer-1ag5bc0 > :first-child { margin-left: 0px; } .framer-HocVZ .framer-d7cjjm > :last-child, .framer-HocVZ .framer-1ag5bc0 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 508\n * @framerIntrinsicWidth 356\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"JwRsMBQAv\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerin2sAWAxB=withCSS(Component,css,\"framer-HocVZ\");export default Framerin2sAWAxB;Framerin2sAWAxB.displayName=\"Test2\";Framerin2sAWAxB.defaultProps={height:508,width:356};addPropertyControls(Framerin2sAWAxB,{variant:{options:[\"p_8cPUHOs\",\"JwRsMBQAv\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerin2sAWAxB,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHPGVFYUXYXE33DZ75OIT4JFGHITX5PE/PSUTMASCDJTVPERDYJZPN23BVUFUCQIF/J64QX5IPOHK56I2KYUNBQ5M2XWZEYKYX.woff2\",weight:\"900\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]},...VideoFonts,...HeroFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerin2sAWAxB\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"356\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JwRsMBQAv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"508\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./in2sAWAxB.map", "// Generated by Framer (5053712)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";const HeroFonts=getFonts(Hero);const IconoirFonts=getFonts(Iconoir);const HeroControls=getPropertyControls(Hero);const enabledGestures={hDkoSvy65:{hover:true}};const cycleOrder=[\"hDkoSvy65\",\"D6MEuY3RJ\"];const serializationHash=\"framer-Lac7o\";const variantClassNames={D6MEuY3RJ:\"framer-v-11u79ps\",hDkoSvy65:\"framer-v-axx764\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"hDkoSvy65\",\"Variant 2\":\"D6MEuY3RJ\"};const getProps=({height,id,link,name1,techDrivenWorkflow,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2,_ref3;return{...props,G2DrCWNz0:(_ref=text!==null&&text!==void 0?text:props.G2DrCWNz0)!==null&&_ref!==void 0?_ref:\"To scale your business, a streamlined post-production setup is essential. We offer a variety of workflow options designed for effortless order management. Discover the system solutions we provide to elevate your operations!\",LtsVTOEXO:link!==null&&link!==void 0?link:props.LtsVTOEXO,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"hDkoSvy65\",Z4NeGXB7t:(_ref2=techDrivenWorkflow!==null&&techDrivenWorkflow!==void 0?techDrivenWorkflow:props.Z4NeGXB7t)!==null&&_ref2!==void 0?_ref2:\"Innovative Product Solution\",ziFAvQBtu:(_ref3=name1!==null&&name1!==void 0?name1:props.ziFAvQBtu)!==null&&_ref3!==void 0?_ref3:\"LightBulb\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ziFAvQBtu,Z4NeGXB7t,G2DrCWNz0,LtsVTOEXO,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hDkoSvy65\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:LtsVTOEXO,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-axx764\",className,classNames)} framer-15okwgf`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"hDkoSvy65\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"hDkoSvy65-hover\":{\"data-framer-name\":undefined},D6MEuY3RJ:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pkfrb1\",\"data-border\":true,\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"DDriQVRMe\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(230, 235, 242, 0.27)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(7px)\",backgroundColor:\"rgba(11, 12, 38, 0.36)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,WebkitBackdropFilter:\"blur(7px)\"},variants:{\"hDkoSvy65-hover\":{backgroundColor:\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6c1ub\",layoutDependency:layoutDependency,layoutId:\"hnWox1tBV\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4wnlb1\",layoutDependency:layoutDependency,layoutId:\"ZbXR29xUs\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ak3zdr\",layoutDependency:layoutDependency,layoutId:\"h7k8bDdKf\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vhx99h\",layoutDependency:layoutDependency,layoutId:\"qXBt1LVfu\",style:{backgroundColor:\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},variants:{\"hDkoSvy65-hover\":{backgroundColor:\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l82d3-container\",layoutDependency:layoutDependency,layoutId:\"yPMLeWBXj-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:ziFAvQBtu,id:\"yPMLeWBXj\",layoutId:\"yPMLeWBXj\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"hDkoSvy65-hover\":{color:\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dzohie\",layoutDependency:layoutDependency,layoutId:\"PbJoJ8S2t\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255)))\"},children:\"Innovative Product Solution\"})}),className:\"framer-1k3n3w9\",fonts:[\"FS;Satoshi-black\"],layoutDependency:layoutDependency,layoutId:\"CD_foyzwQ\",style:{\"--extracted-1of0zx5\":\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:Z4NeGXB7t,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255)))\"},children:\"To scale your business, a streamlined post-production setup is essential. We offer a variety of workflow options designed for effortless order management. Discover the system solutions we provide to elevate your operations!\"})}),className:\"framer-16da4kv\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"lbgNxR6cD\",style:{\"--extracted-r6o4lv\":\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:G2DrCWNz0,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c0xb8c\",layoutDependency:layoutDependency,layoutId:\"M5mOGM7iX\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-366j2u\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"KDbO9BEDw\",style:{backgroundColor:\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255)))\"},children:\"Explore the posibilites\"})}),className:\"framer-1wxrlru\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"r8Czdz2Aa\",style:{\"--extracted-r6o4lv\":\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5qmmzh-container\",layoutDependency:layoutDependency,layoutId:\"R3ca2OQO5-container\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"R3ca2OQO5\",layoutId:\"R3ca2OQO5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Lac7o.framer-15okwgf, .framer-Lac7o .framer-15okwgf { display: block; }\",\".framer-Lac7o.framer-axx764 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 485px; }\",\".framer-Lac7o .framer-1pkfrb1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 440px; justify-content: flex-start; padding: 40px; position: relative; width: 100%; }\",\".framer-Lac7o .framer-6c1ub { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Lac7o .framer-4wnlb1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 10px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Lac7o .framer-1ak3zdr { flex: none; height: 120px; overflow: visible; position: relative; width: 405px; }\",\".framer-Lac7o .framer-1vhx99h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 60px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Lac7o .framer-1l82d3-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-Lac7o .framer-1dzohie { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; left: calc(49.876543209876566% - 405px / 2); overflow: hidden; padding: 0px; position: absolute; width: 405px; }\",\".framer-Lac7o .framer-1k3n3w9 { flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Lac7o .framer-16da4kv { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-Lac7o .framer-1c0xb8c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Lac7o .framer-366j2u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; padding: 12px 20px 12px 20px; position: relative; width: min-content; }\",\".framer-Lac7o .framer-1wxrlru { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-Lac7o .framer-5qmmzh-container { flex: none; height: 17px; position: relative; width: 18px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Lac7o.framer-axx764, .framer-Lac7o .framer-1pkfrb1, .framer-Lac7o .framer-6c1ub, .framer-Lac7o .framer-4wnlb1, .framer-Lac7o .framer-1vhx99h, .framer-Lac7o .framer-1dzohie, .framer-Lac7o .framer-1c0xb8c, .framer-Lac7o .framer-366j2u { gap: 0px; } .framer-Lac7o.framer-axx764 > *, .framer-Lac7o .framer-1pkfrb1 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Lac7o.framer-axx764 > :first-child, .framer-Lac7o .framer-1pkfrb1 > :first-child, .framer-Lac7o .framer-6c1ub > :first-child, .framer-Lac7o .framer-4wnlb1 > :first-child, .framer-Lac7o .framer-1c0xb8c > :first-child { margin-top: 0px; } .framer-Lac7o.framer-axx764 > :last-child, .framer-Lac7o .framer-1pkfrb1 > :last-child, .framer-Lac7o .framer-6c1ub > :last-child, .framer-Lac7o .framer-4wnlb1 > :last-child, .framer-Lac7o .framer-1c0xb8c > :last-child { margin-bottom: 0px; } .framer-Lac7o .framer-6c1ub > *, .framer-Lac7o .framer-4wnlb1 > *, .framer-Lac7o .framer-1c0xb8c > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Lac7o .framer-1vhx99h > *, .framer-Lac7o .framer-1dzohie > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Lac7o .framer-1vhx99h > :first-child, .framer-Lac7o .framer-1dzohie > :first-child, .framer-Lac7o .framer-366j2u > :first-child { margin-left: 0px; } .framer-Lac7o .framer-1vhx99h > :last-child, .framer-Lac7o .framer-1dzohie > :last-child, .framer-Lac7o .framer-366j2u > :last-child { margin-right: 0px; } .framer-Lac7o .framer-366j2u > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-Lac7o.framer-v-11u79ps.framer-axx764 { cursor: unset; width: 309px; }\",\".framer-Lac7o.framer-v-11u79ps .framer-1pkfrb1 { height: 566px; }\",\".framer-Lac7o.framer-v-11u79ps .framer-1ak3zdr { height: 143px; width: 210px; }\",\".framer-Lac7o.framer-v-11u79ps .framer-1dzohie { left: calc(50.00000000000002% - 210px / 2); width: 210px; }\",'.framer-Lac7o[data-border=\"true\"]::after, .framer-Lac7o [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 440\n * @framerIntrinsicWidth 485\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"D6MEuY3RJ\":{\"layout\":[\"fixed\",\"auto\"]},\"Z2JIYLdZB\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ziFAvQBtu\":\"name1\",\"Z4NeGXB7t\":\"techDrivenWorkflow\",\"G2DrCWNz0\":\"text\",\"LtsVTOEXO\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOT65yoXqA=withCSS(Component,css,\"framer-Lac7o\");export default FramerOT65yoXqA;FramerOT65yoXqA.displayName=\"Strategic_tile\";FramerOT65yoXqA.defaultProps={height:440,width:485};addPropertyControls(FramerOT65yoXqA,{variant:{options:[\"hDkoSvy65\",\"D6MEuY3RJ\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},ziFAvQBtu:(HeroControls===null||HeroControls===void 0?void 0:HeroControls[\"iconSelection\"])&&{...HeroControls[\"iconSelection\"],defaultValue:\"LightBulb\",description:undefined,hidden:undefined,title:\"Name\"},Z4NeGXB7t:{defaultValue:\"Innovative Product Solution\",displayTextArea:true,title:\"Tech-driven Workflow\",type:ControlType.String},G2DrCWNz0:{defaultValue:\"To scale your business, a streamlined post-production setup is essential. We offer a variety of workflow options designed for effortless order management. Discover the system solutions we provide to elevate your operations!\",displayTextArea:true,title:\"Text\",type:ControlType.String},LtsVTOEXO:{title:\"Link\",type:ControlType.Link}});addFonts(FramerOT65yoXqA,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHPGVFYUXYXE33DZ75OIT4JFGHITX5PE/PSUTMASCDJTVPERDYJZPN23BVUFUCQIF/J64QX5IPOHK56I2KYUNBQ5M2XWZEYKYX.woff2\",weight:\"900\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...HeroFonts,...IconoirFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOT65yoXqA\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"D6MEuY3RJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Z2JIYLdZB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"ziFAvQBtu\\\":\\\"name1\\\",\\\"Z4NeGXB7t\\\":\\\"techDrivenWorkflow\\\",\\\"G2DrCWNz0\\\":\\\"text\\\",\\\"LtsVTOEXO\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"485\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OT65yoXqA.map", "// Generated by Framer (d95cfb1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"WzP5JxRzn\"];const serializationHash=\"framer-UigiC\";const variantClassNames={WzP5JxRzn:\"framer-v-1bbj4m2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,image,width,...props})=>{var _ref;return{...props,vn71YcCc6:(_ref=image!==null&&image!==void 0?image:props.vn71YcCc6)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/g7TcMjN4c7F3mNLoAyLfYT7jk.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/g7TcMjN4c7F3mNLoAyLfYT7jk.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/g7TcMjN4c7F3mNLoAyLfYT7jk.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/g7TcMjN4c7F3mNLoAyLfYT7jk.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/g7TcMjN4c7F3mNLoAyLfYT7jk.jpg 3109w\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,vn71YcCc6,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WzP5JxRzn\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",pixelHeight:4663,pixelWidth:3109,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(vn71YcCc6),...{positionX:\"center\",positionY:\"center\"}},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1bbj4m2\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"WzP5JxRzn\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style}})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UigiC.framer-hd9jft, .framer-UigiC .framer-hd9jft { display: block; }\",\".framer-UigiC.framer-1bbj4m2 { height: 498px; overflow: hidden; position: relative; width: 694px; will-change: var(--framer-will-change-override, transform); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 498\n * @framerIntrinsicWidth 694\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"vn71YcCc6\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameruJVkY4gBH=withCSS(Component,css,\"framer-UigiC\");export default FrameruJVkY4gBH;FrameruJVkY4gBH.displayName=\"GallryIMG1\";FrameruJVkY4gBH.defaultProps={height:498,width:694};addPropertyControls(FrameruJVkY4gBH,{vn71YcCc6:{__defaultAssetReference:\"data:framer/asset-reference,g7TcMjN4c7F3mNLoAyLfYT7jk.jpg?originalFilename=brina-blum-nWX4pKwzLoE-unsplash.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FrameruJVkY4gBH,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruJVkY4gBH\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"498\",\"framerIntrinsicWidth\":\"694\",\"framerVariables\":\"{\\\"vn71YcCc6\\\":\\\"image\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uJVkY4gBH.map", "// Generated by Framer (bf2ee14)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";const IconoirFonts=getFonts(Iconoir);const enabledGestures={aLOqc3iGP:{hover:true},vfs9YNAnR:{hover:true}};const cycleOrder=[\"vfs9YNAnR\",\"aLOqc3iGP\",\"vmz9fLtZN\"];const serializationHash=\"framer-L7FwB\";const variantClassNames={aLOqc3iGP:\"framer-v-14i99gh\",vfs9YNAnR:\"framer-v-jcbod9\",vmz9fLtZN:\"framer-v-jclz4u\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:1.5,ease:[.44,0,0,.98],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"vfs9YNAnR\",\"Variant 2\":\"aLOqc3iGP\",mobile:\"vmz9fLtZN\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"vfs9YNAnR\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vfs9YNAnR\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearw0dmko=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"aLOqc3iGP\",true),3e3);});const onAppear7kp2r5=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"vfs9YNAnR\"),3e3);});useOnVariantChange(baseVariant,{aLOqc3iGP:onAppear7kp2r5,default:onAppearw0dmko,vmz9fLtZN:undefined});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-jcbod9\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vfs9YNAnR\",ref:refBinding,style:{backgroundColor:\"var(--token-0abcbbc0-cfaf-4a46-a496-4280556385f7, rgb(231, 236, 243))\",borderBottomLeftRadius:29,borderBottomRightRadius:29,borderTopLeftRadius:29,borderTopRightRadius:29,...style},...addPropertyOverrides({\"aLOqc3iGP-hover\":{\"data-framer-name\":undefined},\"vfs9YNAnR-hover\":{\"data-framer-name\":undefined},aLOqc3iGP:{\"data-framer-name\":\"Variant 2\"},vmz9fLtZN:{\"data-framer-name\":\"mobile\",\"data-highlight\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8cbrtq\",layoutDependency:layoutDependency,layoutId:\"xOY2F0bFX\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgba(11, 12, 38, 0.6))\"},children:\"Highlight Webinar\"})}),className:\"framer-tiz1p0\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"k1tvqrnZ9\",style:{\"--extracted-1w1cjl5\":\"rgba(11, 12, 38, 0.6)\"},variants:{\"vfs9YNAnR-hover\":{\"--extracted-1w1cjl5\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},aLOqc3iGP:{\"--extracted-1w1cjl5\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"vfs9YNAnR-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43)))\"},children:\"Highlight Webinar\"})}),fonts:[\"FS;Satoshi-black\"]},aLOqc3iGP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43)))\"},children:\"Maximizing Efficiency: Manual, AI, or Hybrid \"})}),fonts:[\"FS;Satoshi-black\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgba(11, 12, 38, 0.6))\"},children:\"\u2219 May 2025 \u2219 Watch Now\"})}),className:\"framer-kmy7p3\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"h_f7uMWVM\",style:{\"--extracted-1w1cjl5\":\"rgba(11, 12, 38, 0.6)\"},variants:{\"aLOqc3iGP-hover\":{\"--extracted-1w1cjl5\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},\"vfs9YNAnR-hover\":{\"--extracted-1w1cjl5\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"aLOqc3iGP-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43)))\"},children:\"\u2219 May 2025 \u2219 Watch Now\"})}),fonts:[\"FS;Satoshi-black\"]},\"vfs9YNAnR-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43)))\"},children:\"\u2219 May 2025 \u2219 Watch Now\"})}),fonts:[\"FS;Satoshi-black\"]},vmz9fLtZN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h6,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgba(11, 12, 38, 0.6))\"},children:[\"\u2219 May 2025 \u2219 \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"Watch Now\"})]})}),fonts:[\"FS;Satoshi-bold\",\"FS;Satoshi-black\"]}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hdn2ey-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"fj41MyQ9y-container\",nodeId:\"fj41MyQ9y\",rendersWithMotion:true,scopeId:\"W7kSNdLiN\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-a4028bb8-1d13-439b-86ba-5c0777195c91, rgb(11, 12, 38))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"fj41MyQ9y\",layoutId:\"fj41MyQ9y\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"aLOqc3iGP-hover\":{color:\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\",iconSelection:\"ArrowRightCircled\"},\"vfs9YNAnR-hover\":{color:\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\",iconSelection:\"ArrowRightCircled\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-L7FwB.framer-aq1lfv, .framer-L7FwB .framer-aq1lfv { display: block; }\",\".framer-L7FwB.framer-jcbod9 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 10px 20px 10px 20px; position: relative; width: min-content; }\",\".framer-L7FwB .framer-8cbrtq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-L7FwB .framer-tiz1p0, .framer-L7FwB .framer-kmy7p3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-L7FwB .framer-1hdn2ey-container { flex: none; height: 17px; position: relative; width: 18px; }\",\".framer-L7FwB.framer-v-14i99gh .framer-tiz1p0 { order: 0; }\",\".framer-L7FwB.framer-v-14i99gh .framer-kmy7p3 { order: 1; }\",\".framer-L7FwB.framer-v-jclz4u.framer-jcbod9 { cursor: unset; }\",\".framer-L7FwB.framer-v-jcbod9.hover.framer-jcbod9, .framer-L7FwB.framer-v-14i99gh.hover.framer-jcbod9 { gap: 10px; }\",\".framer-L7FwB.framer-v-jcbod9.hover .framer-1hdn2ey-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 28px); width: 25px; }\",\".framer-L7FwB.framer-v-14i99gh.hover .framer-1hdn2ey-container { aspect-ratio: 1.0588235294117647 / 1; height: var(--framer-aspect-ratio-supported, 27px); width: 25px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 39.5\n * @framerIntrinsicWidth 319.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"aLOqc3iGP\":{\"layout\":[\"auto\",\"auto\"]},\"vmz9fLtZN\":{\"layout\":[\"auto\",\"auto\"]},\"sUtqHOfRv\":{\"layout\":[\"auto\",\"auto\"]},\"HrmUq6YRV\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerW7kSNdLiN=withCSS(Component,css,\"framer-L7FwB\");export default FramerW7kSNdLiN;FramerW7kSNdLiN.displayName=\"Highlight event 2\";FramerW7kSNdLiN.defaultProps={height:39.5,width:319.5};addPropertyControls(FramerW7kSNdLiN,{variant:{options:[\"vfs9YNAnR\",\"aLOqc3iGP\",\"vmz9fLtZN\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerW7kSNdLiN,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHPGVFYUXYXE33DZ75OIT4JFGHITX5PE/PSUTMASCDJTVPERDYJZPN23BVUFUCQIF/J64QX5IPOHK56I2KYUNBQ5M2XWZEYKYX.woff2\",weight:\"900\"}]},...IconoirFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW7kSNdLiN\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"39.5\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"319.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"aLOqc3iGP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vmz9fLtZN\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"sUtqHOfRv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HrmUq6YRV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./W7kSNdLiN.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"MnaqNqD_y\",\"zu_HHVAeH\",\"cg94SKDVe\"];const serializationHash=\"framer-zrOhA\";const variantClassNames={cg94SKDVe:\"framer-v-72lta9\",MnaqNqD_y:\"framer-v-1vuf2r0\",zu_HHVAeH:\"framer-v-dakbk0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"MnaqNqD_y\",\"Variant 2\":\"zu_HHVAeH\",\"Variant 3\":\"cg94SKDVe\"};const getProps=({height,id,name1,text,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"MnaqNqD_y\",W7iAVExdN:text??props.W7iAVExdN??\"Their team keeps innovating and making life easier for my business.\",ZOda3Pb_W:name1??props.ZOda3Pb_W??\"Phil Eustacia\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,W7iAVExdN,ZOda3Pb_W,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MnaqNqD_y\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"cg94SKDVe\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"zu_HHVAeH\")return true;return false;};const isDisplayed2=()=>{if([\"zu_HHVAeH\",\"cg94SKDVe\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1vuf2r0\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"MnaqNqD_y\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-0abcbbc0-cfaf-4a46-a496-4280556385f7, rgb(231, 236, 243))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({cg94SKDVe:{\"data-framer-name\":\"Variant 3\"},zu_HHVAeH:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l8y8v1\",layoutDependency:layoutDependency,layoutId:\"ZB9e11P3A\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a4028bb8-1d13-439b-86ba-5c0777195c91, rgb(11, 12, 38)))\"},children:\"Their team keeps innovating and making life easier for my business.\"})}),className:\"framer-dbj725\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"AEN99HsL6\",style:{\"--extracted-r6o4lv\":\"var(--token-a4028bb8-1d13-439b-86ba-5c0777195c91, rgb(11, 12, 38))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:W7iAVExdN,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4587df\",layoutDependency:layoutDependency,layoutId:\"jY98kB1UI\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:956,pixelWidth:1337,positionX:\"4.2%\",positionY:\"27.7%\",src:\"https://framerusercontent.com/images/tVsWmLuyXePOxnLn4MtXxeuB0Q8.webp\",srcSet:\"https://framerusercontent.com/images/tVsWmLuyXePOxnLn4MtXxeuB0Q8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/tVsWmLuyXePOxnLn4MtXxeuB0Q8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/tVsWmLuyXePOxnLn4MtXxeuB0Q8.webp 1337w\"},className:\"framer-1wy2frb\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"c39lsV1Bh\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(235, 235, 235)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},...addPropertyOverrides({cg94SKDVe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||220)-80-158)/2+117+16)+0),pixelHeight:956,pixelWidth:1337,positionX:\"4.2%\",positionY:\"27.7%\",sizes:\"25px\",src:\"https://framerusercontent.com/images/tVsWmLuyXePOxnLn4MtXxeuB0Q8.webp\",srcSet:\"https://framerusercontent.com/images/tVsWmLuyXePOxnLn4MtXxeuB0Q8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/tVsWmLuyXePOxnLn4MtXxeuB0Q8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/tVsWmLuyXePOxnLn4MtXxeuB0Q8.webp 1337w\"}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:980,pixelWidth:980,src:\"https://framerusercontent.com/images/wMBZQuJz17ijnR8FMBxFecj4E.webp\",srcSet:\"https://framerusercontent.com/images/wMBZQuJz17ijnR8FMBxFecj4E.webp?scale-down-to=512 512w,https://framerusercontent.com/images/wMBZQuJz17ijnR8FMBxFecj4E.webp 980w\"},className:\"framer-1n61wi8\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"SOP1Ulkhu\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(235, 235, 235)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},...addPropertyOverrides({zu_HHVAeH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||220)-80-158)/2+117+16)+0),pixelHeight:980,pixelWidth:980,sizes:\"25px\",src:\"https://framerusercontent.com/images/wMBZQuJz17ijnR8FMBxFecj4E.webp\",srcSet:\"https://framerusercontent.com/images/wMBZQuJz17ijnR8FMBxFecj4E.webp?scale-down-to=512 512w,https://framerusercontent.com/images/wMBZQuJz17ijnR8FMBxFecj4E.webp 980w\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||220)-80-158)/2+117+16)+0),pixelHeight:1280,pixelWidth:2560,positionX:\"39.9%\",positionY:\"50%\",sizes:\"25px\",src:\"https://framerusercontent.com/images/ox4I7wfb03lVW661ciSllGT3t9w.png\",srcSet:\"https://framerusercontent.com/images/ox4I7wfb03lVW661ciSllGT3t9w.png?scale-down-to=512 512w,https://framerusercontent.com/images/ox4I7wfb03lVW661ciSllGT3t9w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ox4I7wfb03lVW661ciSllGT3t9w.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ox4I7wfb03lVW661ciSllGT3t9w.png 2560w\"},className:\"framer-10bojyc\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"HdBXEchJb\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(235, 235, 235)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43)))\"},children:\"Phil Eustacia\"})}),className:\"framer-2pff6m\",fonts:[\"FS;Satoshi-black\"],layoutDependency:layoutDependency,layoutId:\"JTja7pJml\",style:{\"--extracted-r6o4lv\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ZOda3Pb_W,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zrOhA.framer-48oe1l, .framer-zrOhA .framer-48oe1l { display: block; }\",\".framer-zrOhA.framer-1vuf2r0 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 220px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 470px; will-change: var(--framer-will-change-override, transform); }\",\".framer-zrOhA .framer-1l8y8v1, .framer-zrOhA .framer-4587df { 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: 0px; position: relative; width: 100%; }\",\".framer-zrOhA .framer-dbj725 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-zrOhA .framer-1wy2frb, .framer-zrOhA .framer-1n61wi8, .framer-zrOhA .framer-10bojyc { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); overflow: hidden; position: relative; width: 25px; will-change: var(--framer-will-change-override, transform); }\",\".framer-zrOhA .framer-2pff6m { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zrOhA.framer-1vuf2r0, .framer-zrOhA .framer-1l8y8v1, .framer-zrOhA .framer-4587df { gap: 0px; } .framer-zrOhA.framer-1vuf2r0 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-zrOhA.framer-1vuf2r0 > :first-child { margin-top: 0px; } .framer-zrOhA.framer-1vuf2r0 > :last-child { margin-bottom: 0px; } .framer-zrOhA .framer-1l8y8v1 > *, .framer-zrOhA .framer-4587df > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-zrOhA .framer-1l8y8v1 > :first-child, .framer-zrOhA .framer-4587df > :first-child { margin-left: 0px; } .framer-zrOhA .framer-1l8y8v1 > :last-child, .framer-zrOhA .framer-4587df > :last-child { margin-right: 0px; } }\",'.framer-zrOhA[data-border=\"true\"]::after, .framer-zrOhA [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 220\n * @framerIntrinsicWidth 470\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"zu_HHVAeH\":{\"layout\":[\"fixed\",\"fixed\"]},\"cg94SKDVe\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"W7iAVExdN\":\"text\",\"ZOda3Pb_W\":\"name1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZgerIGKyp=withCSS(Component,css,\"framer-zrOhA\");export default FramerZgerIGKyp;FramerZgerIGKyp.displayName=\"ticker_testimonial\";FramerZgerIGKyp.defaultProps={height:220,width:470};addPropertyControls(FramerZgerIGKyp,{variant:{options:[\"MnaqNqD_y\",\"zu_HHVAeH\",\"cg94SKDVe\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},W7iAVExdN:{defaultValue:\"Their team keeps innovating and making life easier for my business.\",displayTextArea:false,title:\"Text\",type:ControlType.String},ZOda3Pb_W:{defaultValue:\"Phil Eustacia\",displayTextArea:false,title:\"Name\",type:ControlType.String}});addFonts(FramerZgerIGKyp,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHPGVFYUXYXE33DZ75OIT4JFGHITX5PE/PSUTMASCDJTVPERDYJZPN23BVUFUCQIF/J64QX5IPOHK56I2KYUNBQ5M2XWZEYKYX.woff2\",weight:\"900\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZgerIGKyp\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zu_HHVAeH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cg94SKDVe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"220\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"W7iAVExdN\\\":\\\"text\\\",\\\"ZOda3Pb_W\\\":\\\"name1\\\"}\",\"framerIntrinsicWidth\":\"470\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZgerIGKyp.map", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouter,withCSS}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Vimeo from\"https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/H7Hprjo8hFoL6HVuvde6/SlideShow.js\";import Test from\"#framer/local/canvasComponent/b8Z7mhznH/b8Z7mhznH.js\";import Card_services from\"#framer/local/canvasComponent/BJRkGEe70/BJRkGEe70.js\";import Footer from\"#framer/local/canvasComponent/blKyqLPSF/blKyqLPSF.js\";import Gallry_Hero1 from\"#framer/local/canvasComponent/ehD6KCtvS/ehD6KCtvS.js\";import Test3 from\"#framer/local/canvasComponent/GMjUFyErP/GMjUFyErP.js\";import Test2 from\"#framer/local/canvasComponent/in2sAWAxB/in2sAWAxB.js\";import Navigation from\"#framer/local/canvasComponent/MFTZcFISM/MFTZcFISM.js\";import Button from\"#framer/local/canvasComponent/MSYwkIw0b/MSYwkIw0b.js\";import Strategic_tile from\"#framer/local/canvasComponent/OT65yoXqA/OT65yoXqA.js\";import GallryIMG1 from\"#framer/local/canvasComponent/uJVkY4gBH/uJVkY4gBH.js\";import HighlightEvent2 from\"#framer/local/canvasComponent/W7kSNdLiN/W7kSNdLiN.js\";import Ticker_testimonial from\"#framer/local/canvasComponent/ZgerIGKyp/ZgerIGKyp.js\";import*as sharedStyle1 from\"#framer/local/css/nlmYToOd7/nlmYToOd7.js\";import*as sharedStyle2 from\"#framer/local/css/PnVux11hH/PnVux11hH.js\";import*as sharedStyle from\"#framer/local/css/yT0cNXxIM/yT0cNXxIM.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const HighlightEvent2Fonts=getFonts(HighlightEvent2);const Gallry_Hero1Fonts=getFonts(Gallry_Hero1);const SlideshowFonts=getFonts(Slideshow);const ButtonFonts=getFonts(Button);const VimeoFonts=getFonts(Vimeo);const HeroFonts=getFonts(Hero);const Card_servicesFonts=getFonts(Card_services);const Strategic_tileFonts=getFonts(Strategic_tile);const CarouselFonts=getFonts(Carousel);const IconoirFonts=getFonts(Iconoir);const Ticker_testimonialFonts=getFonts(Ticker_testimonial);const TickerFonts=getFonts(Ticker);const TestFonts=getFonts(Test);const Test2Fonts=getFonts(Test2);const Test3Fonts=getFonts(Test3);const GallryIMG1Fonts=getFonts(GallryIMG1);const FooterFonts=getFonts(Footer);const breakpoints={HwUkd60ZM:\"(min-width: 810px) and (max-width: 1199px)\",PpEYk4DC4:\"(max-width: 809px)\",TV3p3h2Tu:\"(min-width: 1200px) and (max-width: 1399px)\",WQLkyLRf1:\"(min-width: 1400px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-svBTa\";const variantClassNames={HwUkd60ZM:\"framer-v-8vqset\",PpEYk4DC4:\"framer-v-n94wea\",TV3p3h2Tu:\"framer-v-1jzqwlw\",WQLkyLRf1:\"framer-v-72rtr7\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"TV3p3h2Tu\",Desktop:\"WQLkyLRf1\",Phone:\"PpEYk4DC4\",Tablet:\"HwUkd60ZM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onClick1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"PpEYk4DC4\")return true;return false;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"PpEYk4DC4\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"TV3p3h2Tu\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"TV3p3h2Tu\")return false;return true;};const isDisplayed4=()=>{if(!isBrowser())return true;if([\"HwUkd60ZM\",\"TV3p3h2Tu\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if(!isBrowser())return true;if([\"HwUkd60ZM\",\"TV3p3h2Tu\"].includes(baseVariant))return true;return false;};const isDisplayed6=()=>{if(!isBrowser())return true;if([\"HwUkd60ZM\",\"PpEYk4DC4\"].includes(baseVariant))return false;return true;};const isDisplayed7=()=>{if(!isBrowser())return true;if(baseVariant===\"HwUkd60ZM\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-76j0du-container\",nodeId:\"JD9ydBKte\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{variant:\"QMxIS6lv4\"},PpEYk4DC4:{variant:\"QMxIS6lv4\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"JD9ydBKte\",layoutId:\"JD9ydBKte\",style:{width:\"100%\"},variant:\"ZOY9_0d1W\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1240,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xW4XLXvzqNXkj2c5fI42QU8om4.png\",srcSet:\"https://framerusercontent.com/images/xW4XLXvzqNXkj2c5fI42QU8om4.png?scale-down-to=512 512w,https://framerusercontent.com/images/xW4XLXvzqNXkj2c5fI42QU8om4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xW4XLXvzqNXkj2c5fI42QU8om4.png 1920w\"},className:\"framer-1x0prx0\",\"data-framer-name\":\"Primary section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-72005g\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-fqdj5w\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-eh32z0\",\"data-framer-name\":\"FP-Hero_section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-bnudg5\",\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xin96\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m4s6rs\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"IAPdcCdyo\"},motionChild:true,nodeId:\"fz0tTPZto\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1cdosov framer-lux5qc\",\"data-framer-name\":\"Toaster\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,children:/*#__PURE__*/_jsx(Container,{className:\"framer-115lbhs-container\",nodeId:\"QJzX84QSB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PpEYk4DC4:{variant:\"vmz9fLtZN\"}},children:/*#__PURE__*/_jsx(HighlightEvent2,{height:\"100%\",id:\"QJzX84QSB\",layoutId:\"QJzX84QSB\",variant:\"vfs9YNAnR\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-cyptvc\",\"data-styles-preset\":\"yT0cNXxIM\",children:[\"Your strategic \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},children:\"partner\"}),\" for Innovation & Scalability\"]})}),className:\"framer-jv3tek\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tyy2zb-container hidden-72rtr7 hidden-8vqset hidden-1jzqwlw\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Gz2R0rV2J\",scopeId:\"augiA20Il\",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: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:\"Gz2R0rV2J\",intervalControl:2,itemAmount:1,layoutId:\"Gz2R0rV2J\",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:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4zdkdo-container\",inComponentSlot:true,nodeId:\"O79Pghz0I\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"O79Pghz0I\",layoutId:\"O79Pghz0I\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg\",srcSet:\"https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16gxomh-container\",inComponentSlot:true,nodeId:\"BlQdrWfvC\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"BlQdrWfvC\",layoutId:\"BlQdrWfvC\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/N7LcZ7wmulCunEzn8naPDw7zx0.jpg\",srcSet:\"https://framerusercontent.com/images/N7LcZ7wmulCunEzn8naPDw7zx0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/N7LcZ7wmulCunEzn8naPDw7zx0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/N7LcZ7wmulCunEzn8naPDw7zx0.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1da4h4e-container\",inComponentSlot:true,nodeId:\"iLPwFtuwH\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"iLPwFtuwH\",layoutId:\"iLPwFtuwH\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/xxhIcpH8fZvmaIRTW5nHfMCCd78.jpg\",srcSet:\"https://framerusercontent.com/images/xxhIcpH8fZvmaIRTW5nHfMCCd78.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xxhIcpH8fZvmaIRTW5nHfMCCd78.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xxhIcpH8fZvmaIRTW5nHfMCCd78.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-e4dy1a-container\",inComponentSlot:true,nodeId:\"oqhq8aHDb\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"oqhq8aHDb\",layoutId:\"oqhq8aHDb\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg\",srcSet:\"https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1snc6uv-container\",inComponentSlot:true,nodeId:\"OZmzg20y5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"OZmzg20y5\",layoutId:\"OZmzg20y5\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg\",srcSet:\"https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-5be2af\",\"data-styles-preset\":\"nlmYToOd7\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Esoft provides post-production services in Photo, Video, Floorplan, and 3D Visualization for real estate photography companies worldwide. We deliver consistently high-quality work with a quick turnaround time, leveraging technology-driven systems to offer \",/*#__PURE__*/_jsx(\"strong\",{children:\"scalable solutions that foster innovation and business growth\"}),\".\"]})}),className:\"framer-1jx24te\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h3rfs0\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tUK2xnuET\"},implicitPathVariables:undefined},{href:{webPageId:\"tUK2xnuET\"},implicitPathVariables:undefined},{href:{webPageId:\"tUK2xnuET\"},implicitPathVariables:undefined},{href:{webPageId:\"tUK2xnuET\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cekanh-container\",nodeId:\"V_GqE_D4s\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{mso6iTdH4:resolvedLinks[1]},PpEYk4DC4:{mso6iTdH4:resolvedLinks[2]},TV3p3h2Tu:{mso6iTdH4:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Button,{BEPdeWZtJ:\"ArrowRightCircled\",height:\"100%\",id:\"V_GqE_D4s\",layoutId:\"V_GqE_D4s\",mso6iTdH4:resolvedLinks[0],MUwQZW7kQ:\"Get started\",Rucaa05ae:\"ArrowRight\",variant:\"rYp9mL7PI\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ttqsl2\",id:\"ttqsl2\",onTap:onTap3bnx0g({overlay}),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1103,pixelWidth:1765,sizes:\"43px\",src:\"https://framerusercontent.com/images/yLTV31CFy8FWTf3IaCUGWcz4Vs.svg\",srcSet:\"https://framerusercontent.com/images/yLTV31CFy8FWTf3IaCUGWcz4Vs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/yLTV31CFy8FWTf3IaCUGWcz4Vs.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yLTV31CFy8FWTf3IaCUGWcz4Vs.svg 1765w\"},className:\"framer-35k1nn\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sgnwdm\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1dvo1fg\",\"data-framer-name\":\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 4.029 2.647 C 3.92 2.582 3.786 2.581 3.677 2.644 C 3.568 2.706 3.5 2.822 3.5 2.948 L 3.5 11.052 C 3.5 11.178 3.568 11.294 3.677 11.356 C 3.786 11.419 3.92 11.418 4.029 11.353 L 10.867 7.301 C 10.973 7.238 11.038 7.124 11.038 7 C 11.038 6.876 10.973 6.762 10.867 6.699 Z\" fill=\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43)) /* {&quot;name&quot;:&quot;Esoft Orange&quot;} */\" stroke-width=\"0.6829268292682927\" stroke=\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43)) /* {&quot;name&quot;:&quot;Esoft Orange&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12637675864,withExternalLayout:true})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-mfmz31\"),\"data-framer-portal-id\":\"ttqsl2\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"j6cRG0NpJ\"),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:`${cx(scopingClassNames,\"framer-1u9so4u-container\")} hidden-n94wea`,\"data-framer-portal-id\":\"ttqsl2\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CK5B96gia\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:false,height:\"100%\",id:\"CK5B96gia\",isMixedBorderRadius:false,layoutId:\"CK5B96gia\",loop:false,mute:false,style:{height:\"100%\",width:\"100%\"},topLeftRadius:20,topRightRadius:20,video:\"https://vimeo.com/990501945?share=copy\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:`${cx(scopingClassNames,\"framer-wedbn3-container\")} hidden-72rtr7 hidden-8vqset hidden-1jzqwlw`,\"data-framer-portal-id\":\"ttqsl2\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ugmrOEvsl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:false,height:\"100%\",id:\"ugmrOEvsl\",isMixedBorderRadius:false,layoutId:\"ugmrOEvsl\",loop:false,mute:false,style:{height:\"100%\",width:\"100%\"},topLeftRadius:20,topRightRadius:20,video:\"https://vimeo.com/999007664?share=copy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-jcdzsf-container\"),\"data-framer-portal-id\":\"ttqsl2\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Y1lrYxV1o\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"XMark\",id:\"Y1lrYxV1o\",layoutId:\"Y1lrYxV1o\",mirrored:false,onClick:onClick1wnntms({overlay}),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-yz9c64 hidden-n94wea\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sz94rk-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NKCGMnu1i\",scopeId:\"augiA20Il\",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:true},autoPlayControl:true,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:false},gap:10,height:\"100%\",id:\"NKCGMnu1i\",intervalControl:2,itemAmount:1,layoutId:\"NKCGMnu1i\",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:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1da4h4e-container\",inComponentSlot:true,nodeId:\"iLPwFtuwH\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"iLPwFtuwH\",layoutId:\"iLPwFtuwH\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/xxhIcpH8fZvmaIRTW5nHfMCCd78.jpg\",srcSet:\"https://framerusercontent.com/images/xxhIcpH8fZvmaIRTW5nHfMCCd78.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xxhIcpH8fZvmaIRTW5nHfMCCd78.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xxhIcpH8fZvmaIRTW5nHfMCCd78.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4zdkdo-container\",inComponentSlot:true,nodeId:\"O79Pghz0I\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"O79Pghz0I\",layoutId:\"O79Pghz0I\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg\",srcSet:\"https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16gxomh-container\",inComponentSlot:true,nodeId:\"BlQdrWfvC\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"BlQdrWfvC\",layoutId:\"BlQdrWfvC\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/N7LcZ7wmulCunEzn8naPDw7zx0.jpg\",srcSet:\"https://framerusercontent.com/images/N7LcZ7wmulCunEzn8naPDw7zx0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/N7LcZ7wmulCunEzn8naPDw7zx0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/N7LcZ7wmulCunEzn8naPDw7zx0.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-e4dy1a-container\",inComponentSlot:true,nodeId:\"oqhq8aHDb\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"oqhq8aHDb\",layoutId:\"oqhq8aHDb\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg\",srcSet:\"https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1snc6uv-container\",inComponentSlot:true,nodeId:\"OZmzg20y5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"OZmzg20y5\",layoutId:\"OZmzg20y5\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg\",srcSet:\"https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],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-13li1bu\",\"data-framer-name\":\"Free resources\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o1h444\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nv4cbt\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-mlh15w\",\"data-framer-name\":\"logomark\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><g transform=\"translate(-0.011 -0.01)\"><g transform=\"translate(0 0)\"><path d=\"M 0.011 0.01 L 18.011 0.01 L 18.011 18.01 L 0.011 18.01 Z\" fill=\"transparent\"></path><path d=\"M 12.252 13.132 L 11.09 13.132 C 10.819 13.131 10.6 12.911 10.599 12.64 L 10.599 10.217 C 10.599 9.946 10.379 9.726 10.108 9.725 L 7.88 9.725 C 7.609 9.726 7.389 9.946 7.389 10.217 L 7.389 12.639 C 7.389 12.91 7.169 13.13 6.898 13.131 L 5.811 13.131 C 5.494 13.12 5.187 13.244 4.966 13.471 L 2.804 15.536 C 6.287 18.856 11.766 18.848 15.238 15.517 L 13.098 13.471 C 12.877 13.242 12.569 13.118 12.251 13.131\" fill=\"rgb(255,100,43)\"></path><path d=\"M 4.469 11.854 L 4.469 8.041 C 4.483 7.735 4.312 7.451 4.035 7.319 L 0.687 5.544 C -0.581 8.605 -0.07 12.115 2.018 14.688 L 4.112 12.685 C 4.346 12.473 4.476 12.17 4.468 11.854\" fill=\"rgb(255,100,43)\"></path><path d=\"M 9.996 4.653 L 12.576 6.285 C 12.833 6.449 13.158 6.461 13.426 6.317 L 16.827 4.514 C 15.324 1.887 12.601 0.191 9.58 0 L 9.58 3.898 C 9.577 4.205 9.734 4.491 9.995 4.653\" fill=\"rgb(255,100,43)\"></path><path d=\"M 5.452 6.277 L 8.012 4.644 C 8.278 4.487 8.437 4.197 8.426 3.889 L 8.426 0.001 C 5.414 0.197 2.701 1.889 1.199 4.507 L 4.604 6.311 C 4.872 6.453 5.196 6.44 5.452 6.277\" fill=\"rgb(255,100,43)\"></path><path d=\"M 17.338 5.552 L 13.99 7.327 C 13.72 7.465 13.551 7.745 13.556 8.049 L 13.556 11.819 C 13.553 12.133 13.681 12.435 13.91 12.65 L 16.02 14.666 C 18.093 12.098 18.598 8.603 17.338 5.552\" fill=\"rgb(255,100,43)\"></path></g></g></svg>',svgContentId:10103973198,withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j89v8e\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"SERVICES\"})})}),className:\"framer-1hqx414\",fonts:[\"FS;Satoshi-regular\",\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ebr90k\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ylbpu3\",\"data-styles-preset\":\"PnVux11hH\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a4028bb8-1d13-439b-86ba-5c0777195c91, rgb(11, 12, 38))\"},children:\"Check out our consistently High-quality Offerings\"})}),className:\"framer-1l254us\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-azsalo\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"OI3qvYN8j\"},implicitPathVariables:undefined},{href:{webPageId:\"OI3qvYN8j\"},implicitPathVariables:undefined},{href:{webPageId:\"OI3qvYN8j\"},implicitPathVariables:undefined},{href:{webPageId:\"OI3qvYN8j\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 40px, 1200px) - 20px) / 3, 50px) * 2 + 10px)`},PpEYk4DC4:{height:192.5,width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 50px)`},TV3p3h2Tu:{width:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1000px) - 20px) / 3, 50px) * 2 + 10px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:395,width:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 20px) / 3, 50px) * 2 + 10px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nr9nak-container\",nodeId:\"GZIfYTcCW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{zU0gvxmxo:resolvedLinks1[1]},PpEYk4DC4:{zU0gvxmxo:resolvedLinks1[2]},TV3p3h2Tu:{zU0gvxmxo:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(Card_services,{height:\"100%\",id:\"GZIfYTcCW\",layoutId:\"GZIfYTcCW\",LiAD_G3WP:addImageAlt({pixelHeight:2304,pixelWidth:3456,src:\"https://framerusercontent.com/images/Fq0JxkmyJD6CgUdvwsEVbrtXRQ.jpg\",srcSet:\"https://framerusercontent.com/images/Fq0JxkmyJD6CgUdvwsEVbrtXRQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Fq0JxkmyJD6CgUdvwsEVbrtXRQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Fq0JxkmyJD6CgUdvwsEVbrtXRQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Fq0JxkmyJD6CgUdvwsEVbrtXRQ.jpg 3456w\"},\"\"),m_0iHq4Sj:\"First-class photo editing with top-notch quality to take your visual storytelling to new heights.\",nap7Mak5w:\"Photo Editing\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",zU0gvxmxo:resolvedLinks1[0]})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"GiEaON1im\"},implicitPathVariables:undefined},{href:{webPageId:\"GiEaON1im\"},implicitPathVariables:undefined},{href:{webPageId:\"GiEaON1im\"},implicitPathVariables:undefined},{href:{webPageId:\"GiEaON1im\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{width:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1200px) - 20px) / 3, 50px)`},PpEYk4DC4:{height:192.5,width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 50px)`},TV3p3h2Tu:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1000px) - 20px) / 3, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:395,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 20px) / 3, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wcqv41-container\",nodeId:\"XcqDzIlEn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{zU0gvxmxo:resolvedLinks2[1]},PpEYk4DC4:{zU0gvxmxo:resolvedLinks2[2]},TV3p3h2Tu:{zU0gvxmxo:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(Card_services,{height:\"100%\",id:\"XcqDzIlEn\",layoutId:\"XcqDzIlEn\",LiAD_G3WP:addImageAlt({pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/6HfRZeOliiLCLNlK43FTOmgcEDg.png\",srcSet:\"https://framerusercontent.com/images/6HfRZeOliiLCLNlK43FTOmgcEDg.png?scale-down-to=512 512w,https://framerusercontent.com/images/6HfRZeOliiLCLNlK43FTOmgcEDg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6HfRZeOliiLCLNlK43FTOmgcEDg.png 1920w\"},\"\"),m_0iHq4Sj:\"Exceptional real estate videography solutions tailored to your specific needs and property presentation styles.\",nap7Mak5w:\"Video Editing\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",zU0gvxmxo:resolvedLinks2[0]})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DHtIlOOLr\"},implicitPathVariables:undefined},{href:{webPageId:\"DHtIlOOLr\"},implicitPathVariables:undefined},{href:{webPageId:\"DHtIlOOLr\"},implicitPathVariables:undefined},{href:{webPageId:\"DHtIlOOLr\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{width:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1200px) - 20px) / 3, 50px)`},PpEYk4DC4:{height:192.5,width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 50px)`},TV3p3h2Tu:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1000px) - 20px) / 3, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:395,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 20px) / 3, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2udvtk-container\",nodeId:\"zS9xmqiuY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{zU0gvxmxo:resolvedLinks3[1]},PpEYk4DC4:{zU0gvxmxo:resolvedLinks3[2]},TV3p3h2Tu:{zU0gvxmxo:resolvedLinks3[3]}},children:/*#__PURE__*/_jsx(Card_services,{height:\"100%\",id:\"zS9xmqiuY\",layoutId:\"zS9xmqiuY\",LiAD_G3WP:addImageAlt({pixelHeight:545,pixelWidth:797,src:\"https://framerusercontent.com/images/YVZGQ85tm7O9LPfisq0HwSCJpkI.png\",srcSet:\"https://framerusercontent.com/images/YVZGQ85tm7O9LPfisq0HwSCJpkI.png?scale-down-to=512 512w,https://framerusercontent.com/images/YVZGQ85tm7O9LPfisq0HwSCJpkI.png 797w\"},\"\"),m_0iHq4Sj:\"All-in-one floorplan creation service that fits any client's requests.\",nap7Mak5w:\"Floorplan\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",zU0gvxmxo:resolvedLinks3[0]})})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"POAFyjOcN\"},implicitPathVariables:undefined},{href:{webPageId:\"POAFyjOcN\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TV3p3h2Tu:{height:395,width:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1000px) - 20px) / 3, 50px) * 2 + 10px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nniw1s-container hidden-72rtr7 hidden-8vqset hidden-n94wea\",nodeId:\"VBxIEpGNf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TV3p3h2Tu:{zU0gvxmxo:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Card_services,{height:\"100%\",id:\"VBxIEpGNf\",layoutId:\"VBxIEpGNf\",LiAD_G3WP:addImageAlt({pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/qtRLXcQ5mJhhmqwOVolKEAsGA.jpg\",srcSet:\"https://framerusercontent.com/images/qtRLXcQ5mJhhmqwOVolKEAsGA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qtRLXcQ5mJhhmqwOVolKEAsGA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qtRLXcQ5mJhhmqwOVolKEAsGA.jpg 1920w\"},\"\"),m_0iHq4Sj:\"Bring your projects to life with compelling visuals and authentic representation.\",nap7Mak5w:\"3D Visualization\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",zU0gvxmxo:resolvedLinks4[0]})})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"POAFyjOcN\"},implicitPathVariables:undefined},{href:{webPageId:\"POAFyjOcN\"},implicitPathVariables:undefined},{href:{webPageId:\"POAFyjOcN\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 40px, 1200px) - 20px) / 3, 50px) * 2 + 10px)`},PpEYk4DC4:{height:192.5,width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:395,width:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 20px) / 3, 50px) * 2 + 10px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tft6x6-container hidden-1jzqwlw\",nodeId:\"osOdk071P\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{zU0gvxmxo:resolvedLinks5[1]},PpEYk4DC4:{zU0gvxmxo:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(Card_services,{height:\"100%\",id:\"osOdk071P\",layoutId:\"osOdk071P\",LiAD_G3WP:addImageAlt({pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/qtRLXcQ5mJhhmqwOVolKEAsGA.jpg\",srcSet:\"https://framerusercontent.com/images/qtRLXcQ5mJhhmqwOVolKEAsGA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qtRLXcQ5mJhhmqwOVolKEAsGA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qtRLXcQ5mJhhmqwOVolKEAsGA.jpg 1920w\"},\"\"),m_0iHq4Sj:\"Bring your projects to life with compelling visuals and authentic representation.\",nap7Mak5w:\"3D Visualization\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",zU0gvxmxo:resolvedLinks5[0]})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pa36s5\",\"data-framer-name\":\"Intro\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-3xe2y4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-136mh9t\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2voz3g\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 366 303\"><path d=\"M 12.065 291.429 C 66.973 291.429 116.862 247.134 133.144 214.423 C 140.596 199.455 144.53 183.018 145.815 166.384 C 146.553 156.825 147.759 144.472 142.295 136.005 C 133.358 122.154 113.765 119.412 101.467 131.767 C 90.061 143.222 88.195 160.011 93.019 178.394 C 97.844 196.776 110.318 199.412 120.473 205.239 C 133.575 212.761 143.001 206.044 157.782 205.946 C 168.478 205.874 218.577 192.522 260.558 146.602 C 302.54 100.683 336.404 22.195 354.887 10.96\" fill=\"transparent\" stroke-width=\"22.68\" stroke=\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43)) /* {&quot;name&quot;:&quot;Esoft Orange&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9935169440},PpEYk4DC4:{opacity:.16,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 455 378\"><path d=\"M 22.13 356.776 C 88.263 356.776 148.35 303.573 167.961 264.285 C 176.936 246.306 181.674 226.564 183.222 206.584 C 184.111 195.104 185.563 180.267 178.983 170.097 C 168.219 153.46 144.62 150.166 129.807 165.006 C 116.071 178.765 113.822 198.93 119.633 221.009 C 125.444 243.089 140.469 246.254 152.7 253.254 C 168.48 262.287 179.832 254.22 197.636 254.102 C 210.518 254.016 270.859 237.979 321.423 182.825 C 371.987 127.671 412.773 33.399 435.035 19.905\" fill=\"transparent\" stroke-width=\"39.59\" stroke=\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43)) /* {&quot;name&quot;:&quot;Esoft Orange&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9197087127},TV3p3h2Tu:{svgContentId:12803393326}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-y6gw8b\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 331 322\"><path d=\"M 11 311.5 C 60.016 311.5 108.348 220.085 122.883 191.01 C 129.535 177.706 133.047 163.096 134.195 148.31 C 134.854 139.815 135.929 128.835 131.053 121.309 C 123.074 108.997 105.584 106.56 94.605 117.541 C 89.323 122.823 78.128 140.471 87.064 158.985 C 96 177.5 113.935 181.32 123 186.5 C 134.696 193.185 202 190.5 236.625 130.728 C 251.395 105.229 254.695 82.291 269 58.5 C 283.305 34.709 312.581 15.156 320.831 10.163\" fill=\"transparent\" stroke-width=\"20.23\" stroke=\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43)) /* {&quot;name&quot;:&quot;Esoft Orange&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:11806950668,withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t1tfom\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b4pd0f\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3t0q64\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dzkw63\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fxsyqd\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ynkqmk\",\"data-framer-name\":\"logomark\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><g transform=\"translate(-0.011 -0.01)\"><g transform=\"translate(0 0)\"><path d=\"M 0.011 0.01 L 18.011 0.01 L 18.011 18.01 L 0.011 18.01 Z\" fill=\"transparent\"></path><path d=\"M 12.252 13.132 L 11.09 13.132 C 10.819 13.131 10.6 12.911 10.599 12.64 L 10.599 10.217 C 10.599 9.946 10.379 9.726 10.108 9.725 L 7.88 9.725 C 7.609 9.726 7.389 9.946 7.389 10.217 L 7.389 12.639 C 7.389 12.91 7.169 13.13 6.898 13.131 L 5.811 13.131 C 5.494 13.12 5.187 13.244 4.966 13.471 L 2.804 15.536 C 6.287 18.856 11.766 18.848 15.238 15.517 L 13.098 13.471 C 12.877 13.242 12.569 13.118 12.251 13.131\" fill=\"rgb(255,100,43)\"></path><path d=\"M 4.469 11.854 L 4.469 8.041 C 4.483 7.735 4.312 7.451 4.035 7.319 L 0.687 5.544 C -0.581 8.605 -0.07 12.115 2.018 14.688 L 4.112 12.685 C 4.346 12.473 4.476 12.17 4.468 11.854\" fill=\"rgb(255,100,43)\"></path><path d=\"M 9.996 4.653 L 12.576 6.285 C 12.833 6.449 13.158 6.461 13.426 6.317 L 16.827 4.514 C 15.324 1.887 12.601 0.191 9.58 0 L 9.58 3.898 C 9.577 4.205 9.734 4.491 9.995 4.653\" fill=\"rgb(255,100,43)\"></path><path d=\"M 5.452 6.277 L 8.012 4.644 C 8.278 4.487 8.437 4.197 8.426 3.889 L 8.426 0.001 C 5.414 0.197 2.701 1.889 1.199 4.507 L 4.604 6.311 C 4.872 6.453 5.196 6.44 5.452 6.277\" fill=\"rgb(255,100,43)\"></path><path d=\"M 17.338 5.552 L 13.99 7.327 C 13.72 7.465 13.551 7.745 13.556 8.049 L 13.556 11.819 C 13.553 12.133 13.681 12.435 13.91 12.65 L 16.02 14.666 C 18.093 12.098 18.598 8.603 17.338 5.552\" fill=\"rgb(255,100,43)\"></path></g></g></svg>',svgContentId:10103973198,withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8rhcb3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"THE INTRO\"})})}),className:\"framer-o99ot\",fonts:[\"FS;Satoshi-regular\",\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iyzze3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-ylbpu3\",\"data-styles-preset\":\"PnVux11hH\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a4028bb8-1d13-439b-86ba-5c0777195c91, rgb(11, 12, 38))\"},children:[/*#__PURE__*/_jsx(\"em\",{children:\"More than a post-production service,\"}),/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"em\",{children:\"we are your \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Strategic Partner\"})}),/*#__PURE__*/_jsx(\"em\",{children:\".\"})]})}),className:\"framer-1gesace\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3sur8j\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PpEYk4DC4:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 232 193\"><path d=\"M 20.798 182.163 C 54.592 182.163 85.298 154.999 95.319 134.939 C 99.906 125.76 102.327 115.679 103.118 105.478 C 103.572 99.616 104.314 92.041 100.952 86.848 C 95.451 78.354 83.392 76.672 75.822 84.249 C 68.803 91.274 67.654 101.57 70.623 112.843 C 73.593 124.117 81.27 125.733 87.52 129.307 C 95.584 133.919 101.386 129.8 110.483 129.74 C 117.066 129.696 147.901 121.508 173.74 93.347 C 199.579 65.186 220.422 17.053 231.798 10.163\" fill=\"transparent\" stroke-width=\"20.23\" stroke=\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43)) /* {&quot;name&quot;:&quot;Esoft Orange&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:10967500212}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-btg4b3 hidden-8vqset hidden-1jzqwlw\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 331 322\"><path d=\"M 11 311.5 C 60.016 311.5 66.477 236.203 122.883 191.01 C 179.289 145.817 202 190.5 236.625 130.728 C 251.395 105.229 254.695 82.291 269 58.5 C 283.305 34.709 312.581 15.156 320.831 10.163\" fill=\"transparent\" stroke-width=\"20.23\" stroke=\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43)) /* {&quot;name&quot;:&quot;Esoft Orange&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:10375863076,withExternalLayout:true})}),isDisplayed5()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{svgContentId:11980799678},TV3p3h2Tu:{svgContentId:12848960570}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gr933 hidden-72rtr7 hidden-n94wea\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 331 322\"><path d=\"M 11 311.5 C 60.016 311.5 66.477 236.203 122.883 191.01 C 179.289 145.817 202 190.5 236.625 130.728 C 251.395 105.229 254.695 82.291 269 58.5 C 283.305 34.709 312.581 15.156 320.831 10.163\" fill=\"transparent\" stroke-width=\"20.23\" stroke=\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43)) /* {&quot;name&quot;:&quot;Esoft Orange&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:11126777031,withExternalLayout:true})})]})]})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8om39h\",\"data-framer-name\":\"USPS\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{background:{alt:\"\",fit:\"fill\",pixelHeight:447,pixelWidth:992,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/JNlBQ0UirXpoJF0V6iEy6K7Jk.svg\",srcSet:\"https://framerusercontent.com/images/JNlBQ0UirXpoJF0V6iEy6K7Jk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/JNlBQ0UirXpoJF0V6iEy6K7Jk.svg 992w\"}},TV3p3h2Tu:{background:{alt:\"\",fit:\"fill\",pixelHeight:447,pixelWidth:992,sizes:`min(${componentViewport?.width||\"100vw\"}, 1000px)`,src:\"https://framerusercontent.com/images/JNlBQ0UirXpoJF0V6iEy6K7Jk.svg\",srcSet:\"https://framerusercontent.com/images/JNlBQ0UirXpoJF0V6iEy6K7Jk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/JNlBQ0UirXpoJF0V6iEy6K7Jk.svg 992w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:447,pixelWidth:992,sizes:`min(${componentViewport?.width||\"100vw\"}, 1200px)`,src:\"https://framerusercontent.com/images/JNlBQ0UirXpoJF0V6iEy6K7Jk.svg\",srcSet:\"https://framerusercontent.com/images/JNlBQ0UirXpoJF0V6iEy6K7Jk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/JNlBQ0UirXpoJF0V6iEy6K7Jk.svg 992w\"},className:\"framer-1l9al8b\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g9nnrf\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b8h5q4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18ngo03\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tm6fi4\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-i40wy7\",\"data-framer-name\":\"logomark\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><g transform=\"translate(-0.011 -0.01)\"><g transform=\"translate(0 0)\"><path d=\"M 0.011 0.01 L 18.011 0.01 L 18.011 18.01 L 0.011 18.01 Z\" fill=\"transparent\"></path><path d=\"M 12.252 13.132 L 11.09 13.132 C 10.819 13.131 10.6 12.911 10.599 12.64 L 10.599 10.217 C 10.599 9.946 10.379 9.726 10.108 9.725 L 7.88 9.725 C 7.609 9.726 7.389 9.946 7.389 10.217 L 7.389 12.639 C 7.389 12.91 7.169 13.13 6.898 13.131 L 5.811 13.131 C 5.494 13.12 5.187 13.244 4.966 13.471 L 2.804 15.536 C 6.287 18.856 11.766 18.848 15.238 15.517 L 13.098 13.471 C 12.877 13.242 12.569 13.118 12.251 13.131\" fill=\"rgb(255,100,43)\"></path><path d=\"M 4.469 11.854 L 4.469 8.041 C 4.483 7.735 4.312 7.451 4.035 7.319 L 0.687 5.544 C -0.581 8.605 -0.07 12.115 2.018 14.688 L 4.112 12.685 C 4.346 12.473 4.476 12.17 4.468 11.854\" fill=\"rgb(255,100,43)\"></path><path d=\"M 9.996 4.653 L 12.576 6.285 C 12.833 6.449 13.158 6.461 13.426 6.317 L 16.827 4.514 C 15.324 1.887 12.601 0.191 9.58 0 L 9.58 3.898 C 9.577 4.205 9.734 4.491 9.995 4.653\" fill=\"rgb(255,100,43)\"></path><path d=\"M 5.452 6.277 L 8.012 4.644 C 8.278 4.487 8.437 4.197 8.426 3.889 L 8.426 0.001 C 5.414 0.197 2.701 1.889 1.199 4.507 L 4.604 6.311 C 4.872 6.453 5.196 6.44 5.452 6.277\" fill=\"rgb(255,100,43)\"></path><path d=\"M 17.338 5.552 L 13.99 7.327 C 13.72 7.465 13.551 7.745 13.556 8.049 L 13.556 11.819 C 13.553 12.133 13.681 12.435 13.91 12.65 L 16.02 14.666 C 18.093 12.098 18.598 8.603 17.338 5.552\" fill=\"rgb(255,100,43)\"></path></g></g></svg>',svgContentId:10103973198,withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c33dtw\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"WHAT WE CAN DO\"})})}),className:\"framer-9bod32\",fonts:[\"FS;Satoshi-regular\",\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pmu7ve\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PpEYk4DC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\"},children:\"Why\"}),\" strategic partner?\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\"},children:\"Why\"}),\" strategic partner?\"]})}),className:\"framer-22kyam\",fonts:[\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1huzz99\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5be2af\",\"data-styles-preset\":\"nlmYToOd7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\"},children:\"By constantly innovating product offerings, leveraging cutting-edge technology, and customizing solutions to fit your needs, we help real estate photography companies save costs and strengthen their business strategies. Work with us to stay competitive in the market.\"})}),className:\"framer-1wu2zvs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r6deq6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 330 273\"><path d=\"M 10.868 246.345 C 60.328 246.345 105.267 206.607 119.934 177.262 C 126.646 163.834 130.19 149.087 131.347 134.164 C 132.012 125.589 133.098 114.507 128.177 106.911 C 120.126 94.485 102.478 92.025 91.399 103.108 C 81.125 113.386 79.444 128.447 83.79 144.939 C 88.136 161.43 99.373 163.794 108.52 169.023 C 120.322 175.77 128.812 169.745 142.127 169.656 C 151.761 169.592 196.89 157.614 234.706 116.418 C 272.522 75.222 303.026 4.808 319.675 -5.27\" fill=\"transparent\" stroke-width=\"20.41\" stroke=\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43)) /* {&quot;name&quot;:&quot;Esoft Orange&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:11554188127},PpEYk4DC4:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 232 193\"><path d=\"M 20.798 182.163 C 54.592 182.163 85.298 154.999 95.319 134.939 C 99.906 125.76 102.327 115.679 103.118 105.478 C 103.572 99.616 104.314 92.041 100.952 86.848 C 95.451 78.354 83.392 76.672 75.822 84.249 C 68.803 91.274 67.654 101.57 70.623 112.843 C 73.593 124.117 81.27 125.733 87.52 129.307 C 95.584 133.919 101.386 129.8 110.483 129.74 C 117.066 129.696 147.901 121.508 173.74 93.347 C 199.579 65.186 220.422 17.053 231.798 10.163\" fill=\"transparent\" stroke-width=\"32.01\" stroke=\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43)) /* {&quot;name&quot;:&quot;Esoft Orange&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:11771117574}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1myx4i4\",opacity:.18,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3531 1178\"><path d=\"M -48.65 928.631 C 199.723 1194.961 795.174 1064.665 1167.615 1011.789 C 1540.057 958.913 1400.116 679.412 1719.157 569.702 C 2038.199 459.991 2140.4 971.002 2396.036 1048.351 C 2907.308 1203.05 3536.121 1256.422 3843.387 1011.859\" fill=\"transparent\" stroke-width=\"32.01\" stroke=\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43)) /* {&quot;name&quot;:&quot;Esoft Orange&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:12600716334,withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yvmrrh\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"A5S4XMTWL\"},implicitPathVariables:undefined},{href:{webPageId:\"A5S4XMTWL\"},implicitPathVariables:undefined},{href:{webPageId:\"A5S4XMTWL\"},implicitPathVariables:undefined},{href:{webPageId:\"A5S4XMTWL\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{width:`max(min((min(${componentViewport?.width||\"100vw\"} - 40px, 1200px) - 100px) * 0.8612, 1000px), 200px)`},PpEYk4DC4:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 100px, 1000px), 200px)`},TV3p3h2Tu:{width:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1000px) - 100px, 1000px) - 90px) / 4, 200px) * 2 + 30px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 100px, 1000px) - 90px) / 4, 200px) * 2 + 30px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qz3962-container\",nodeId:\"XeRw429Gq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{LtsVTOEXO:resolvedLinks6[1]},PpEYk4DC4:{LtsVTOEXO:resolvedLinks6[2],variant:\"D6MEuY3RJ\"},TV3p3h2Tu:{LtsVTOEXO:resolvedLinks6[3],variant:\"D6MEuY3RJ\"}},children:/*#__PURE__*/_jsx(Strategic_tile,{G2DrCWNz0:\"Innovation is how we help you stand out in the market and create more value for your end clients. Explore our latest solutions and make a mark with us today!\",height:\"100%\",id:\"XeRw429Gq\",layoutId:\"XeRw429Gq\",LtsVTOEXO:resolvedLinks6[0],style:{width:\"100%\"},variant:\"hDkoSvy65\",width:\"100%\",Z4NeGXB7t:\"Innovative Product Solution\",ziFAvQBtu:\"LightBulb\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"OcBSbBdXE\"},implicitPathVariables:undefined},{href:{webPageId:\"OcBSbBdXE\"},implicitPathVariables:undefined},{href:{webPageId:\"OcBSbBdXE\"},implicitPathVariables:undefined},{href:{webPageId:\"OcBSbBdXE\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{width:`max(min((min(${componentViewport?.width||\"100vw\"} - 40px, 1200px) - 100px) * 0.8612, 1000px), 200px)`},PpEYk4DC4:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 100px, 1000px), 200px)`},TV3p3h2Tu:{width:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1000px) - 100px, 1000px) - 90px) / 4, 200px) * 2 + 30px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 100px, 1000px) - 90px) / 4, 200px) * 2 + 30px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uuha4v-container\",nodeId:\"kU4RPB9IL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{LtsVTOEXO:resolvedLinks7[1]},PpEYk4DC4:{LtsVTOEXO:resolvedLinks7[2],variant:\"D6MEuY3RJ\"},TV3p3h2Tu:{LtsVTOEXO:resolvedLinks7[3],variant:\"D6MEuY3RJ\"}},children:/*#__PURE__*/_jsx(Strategic_tile,{G2DrCWNz0:\"To scale your business, a streamlined post-production setup is essential. We offer a variety of workflow options designed for effortless order management. Discover the system solutions we provide to elevate your operations!\",height:\"100%\",id:\"kU4RPB9IL\",layoutId:\"kU4RPB9IL\",LtsVTOEXO:resolvedLinks7[0],style:{width:\"100%\"},variant:\"hDkoSvy65\",width:\"100%\",Z4NeGXB7t:\"Tech-driven Workflow\",ziFAvQBtu:\"CpuChip\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QlX_G2Dbp\"},implicitPathVariables:undefined},{href:{webPageId:\"QlX_G2Dbp\"},implicitPathVariables:undefined},{href:{webPageId:\"QlX_G2Dbp\"},implicitPathVariables:undefined},{href:{webPageId:\"QlX_G2Dbp\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{width:`max(min((min(${componentViewport?.width||\"100vw\"} - 40px, 1200px) - 100px) * 0.8612, 1000px), 200px)`},PpEYk4DC4:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 100px, 1000px), 200px)`},TV3p3h2Tu:{width:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1000px) - 100px, 1000px) - 90px) / 4, 200px) * 2 + 30px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 100px, 1000px) - 90px) / 4, 200px) * 2 + 30px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hkzpiq-container\",nodeId:\"Jbh7bbHih\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{LtsVTOEXO:resolvedLinks8[1]},PpEYk4DC4:{LtsVTOEXO:resolvedLinks8[2],variant:\"D6MEuY3RJ\"},TV3p3h2Tu:{LtsVTOEXO:resolvedLinks8[3]}},children:/*#__PURE__*/_jsx(Strategic_tile,{G2DrCWNz0:\"Rooted in the Nordics with 20 years of experience in delivering world-class photo enhancement services, we are proud to be the pioneer market leader in the real estate post-processing media industry. Partner up with us now!\",height:\"100%\",id:\"Jbh7bbHih\",layoutId:\"Jbh7bbHih\",LtsVTOEXO:resolvedLinks8[0],style:{width:\"100%\"},variant:\"hDkoSvy65\",width:\"100%\",Z4NeGXB7t:\"Pioneer Market Leader\",ziFAvQBtu:\"Megaphone\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QlX_G2Dbp\"},implicitPathVariables:undefined},{href:{webPageId:\"QlX_G2Dbp\"},implicitPathVariables:undefined},{href:{webPageId:\"QlX_G2Dbp\"},implicitPathVariables:undefined},{href:{webPageId:\"QlX_G2Dbp\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{width:`max(min((min(${componentViewport?.width||\"100vw\"} - 40px, 1200px) - 100px) * 0.8612, 1000px), 200px)`},PpEYk4DC4:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 100px, 1000px), 200px)`},TV3p3h2Tu:{width:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1000px) - 100px, 1000px) - 90px) / 4, 200px) * 2 + 30px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 100px, 1000px) - 90px) / 4, 200px) * 2 + 30px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w4plfz-container\",nodeId:\"SWaOFAbGw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{LtsVTOEXO:resolvedLinks9[1]},PpEYk4DC4:{LtsVTOEXO:resolvedLinks9[2],variant:\"D6MEuY3RJ\"},TV3p3h2Tu:{LtsVTOEXO:resolvedLinks9[3]}},children:/*#__PURE__*/_jsx(Strategic_tile,{G2DrCWNz0:\"Esoft Group commits to respect human rights, environmental, and economic sustainability, contributing to the global transition towards sustainable development. Find out how we uphold these commitments!\",height:\"100%\",id:\"SWaOFAbGw\",layoutId:\"SWaOFAbGw\",LtsVTOEXO:resolvedLinks9[0],style:{width:\"100%\"},variant:\"hDkoSvy65\",width:\"100%\",Z4NeGXB7t:\"Sustainable Development\",ziFAvQBtu:\"Heart\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oy4oqs\"})]})]})})}),/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",pixelHeight:1240,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xW4XLXvzqNXkj2c5fI42QU8om4.png\",srcSet:\"https://framerusercontent.com/images/xW4XLXvzqNXkj2c5fI42QU8om4.png?scale-down-to=512 512w,https://framerusercontent.com/images/xW4XLXvzqNXkj2c5fI42QU8om4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xW4XLXvzqNXkj2c5fI42QU8om4.png 1920w\"},className:\"framer-sm4j2j\",\"data-framer-name\":\"Videosection\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xn6xyt\",children:[isDisplayed6()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kactmk hidden-8vqset hidden-n94wea\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-blbsd2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LDvgsfEi3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:20,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"LDvgsfEi3\",layoutId:\"LDvgsfEi3\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16gxomh-container\",inComponentSlot:true,nodeId:\"BlQdrWfvC\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"BlQdrWfvC\",layoutId:\"BlQdrWfvC\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/N7LcZ7wmulCunEzn8naPDw7zx0.jpg\",srcSet:\"https://framerusercontent.com/images/N7LcZ7wmulCunEzn8naPDw7zx0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/N7LcZ7wmulCunEzn8naPDw7zx0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/N7LcZ7wmulCunEzn8naPDw7zx0.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1da4h4e-container\",inComponentSlot:true,nodeId:\"iLPwFtuwH\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"iLPwFtuwH\",layoutId:\"iLPwFtuwH\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/xxhIcpH8fZvmaIRTW5nHfMCCd78.jpg\",srcSet:\"https://framerusercontent.com/images/xxhIcpH8fZvmaIRTW5nHfMCCd78.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xxhIcpH8fZvmaIRTW5nHfMCCd78.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xxhIcpH8fZvmaIRTW5nHfMCCd78.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-e4dy1a-container\",inComponentSlot:true,nodeId:\"oqhq8aHDb\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"oqhq8aHDb\",layoutId:\"oqhq8aHDb\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg\",srcSet:\"https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1snc6uv-container\",inComponentSlot:true,nodeId:\"OZmzg20y5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"OZmzg20y5\",layoutId:\"OZmzg20y5\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg\",srcSet:\"https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4zdkdo-container\",inComponentSlot:true,nodeId:\"O79Pghz0I\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"O79Pghz0I\",layoutId:\"O79Pghz0I\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg\",srcSet:\"https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15idha3\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cp783l\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uhggzn\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qg0lw1\",\"data-framer-name\":\"logomark\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><g transform=\"translate(-0.011 -0.01)\"><g transform=\"translate(0 0)\"><path d=\"M 0.011 0.01 L 18.011 0.01 L 18.011 18.01 L 0.011 18.01 Z\" fill=\"transparent\"></path><path d=\"M 12.252 13.132 L 11.09 13.132 C 10.819 13.131 10.6 12.911 10.599 12.64 L 10.599 10.217 C 10.599 9.946 10.379 9.726 10.108 9.725 L 7.88 9.725 C 7.609 9.726 7.389 9.946 7.389 10.217 L 7.389 12.639 C 7.389 12.91 7.169 13.13 6.898 13.131 L 5.811 13.131 C 5.494 13.12 5.187 13.244 4.966 13.471 L 2.804 15.536 C 6.287 18.856 11.766 18.848 15.238 15.517 L 13.098 13.471 C 12.877 13.242 12.569 13.118 12.251 13.131\" fill=\"rgb(255,100,43)\"></path><path d=\"M 4.469 11.854 L 4.469 8.041 C 4.483 7.735 4.312 7.451 4.035 7.319 L 0.687 5.544 C -0.581 8.605 -0.07 12.115 2.018 14.688 L 4.112 12.685 C 4.346 12.473 4.476 12.17 4.468 11.854\" fill=\"rgb(255,100,43)\"></path><path d=\"M 9.996 4.653 L 12.576 6.285 C 12.833 6.449 13.158 6.461 13.426 6.317 L 16.827 4.514 C 15.324 1.887 12.601 0.191 9.58 0 L 9.58 3.898 C 9.577 4.205 9.734 4.491 9.995 4.653\" fill=\"rgb(255,100,43)\"></path><path d=\"M 5.452 6.277 L 8.012 4.644 C 8.278 4.487 8.437 4.197 8.426 3.889 L 8.426 0.001 C 5.414 0.197 2.701 1.889 1.199 4.507 L 4.604 6.311 C 4.872 6.453 5.196 6.44 5.452 6.277\" fill=\"rgb(255,100,43)\"></path><path d=\"M 17.338 5.552 L 13.99 7.327 C 13.72 7.465 13.551 7.745 13.556 8.049 L 13.556 11.819 C 13.553 12.133 13.681 12.435 13.91 12.65 L 16.02 14.666 C 18.093 12.098 18.598 8.603 17.338 5.552\" fill=\"rgb(255,100,43)\"></path></g></g></svg>',svgContentId:10103973198,withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yutgad\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"HIGHLIGHTS\"})})}),className:\"framer-hdpjd5\",fonts:[\"FS;Satoshi-regular\",\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cp31rh-container hidden-72rtr7 hidden-8vqset hidden-1jzqwlw\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ESkdjEERs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:20,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"ESkdjEERs\",layoutId:\"ESkdjEERs\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16gxomh-container\",inComponentSlot:true,nodeId:\"BlQdrWfvC\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"BlQdrWfvC\",layoutId:\"BlQdrWfvC\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/N7LcZ7wmulCunEzn8naPDw7zx0.jpg\",srcSet:\"https://framerusercontent.com/images/N7LcZ7wmulCunEzn8naPDw7zx0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/N7LcZ7wmulCunEzn8naPDw7zx0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/N7LcZ7wmulCunEzn8naPDw7zx0.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1da4h4e-container\",inComponentSlot:true,nodeId:\"iLPwFtuwH\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"iLPwFtuwH\",layoutId:\"iLPwFtuwH\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/xxhIcpH8fZvmaIRTW5nHfMCCd78.jpg\",srcSet:\"https://framerusercontent.com/images/xxhIcpH8fZvmaIRTW5nHfMCCd78.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xxhIcpH8fZvmaIRTW5nHfMCCd78.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xxhIcpH8fZvmaIRTW5nHfMCCd78.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-e4dy1a-container\",inComponentSlot:true,nodeId:\"oqhq8aHDb\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"oqhq8aHDb\",layoutId:\"oqhq8aHDb\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg\",srcSet:\"https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1snc6uv-container\",inComponentSlot:true,nodeId:\"OZmzg20y5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"OZmzg20y5\",layoutId:\"OZmzg20y5\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg\",srcSet:\"https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4zdkdo-container\",inComponentSlot:true,nodeId:\"O79Pghz0I\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"O79Pghz0I\",layoutId:\"O79Pghz0I\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg\",srcSet:\"https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ylbpu3\",\"data-styles-preset\":\"PnVux11hH\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a4028bb8-1d13-439b-86ba-5c0777195c91, rgb(11, 12, 38))\"},children:\"Numbers that make an impact!\"})})},PpEYk4DC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-ylbpu3\",\"data-styles-preset\":\"PnVux11hH\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a4028bb8-1d13-439b-86ba-5c0777195c91, rgb(11, 12, 38))\"},children:[\"Numbers that\",/*#__PURE__*/_jsx(\"br\",{}),\"make an impact!\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ylbpu3\",\"data-styles-preset\":\"PnVux11hH\",style:{\"--framer-text-color\":\"var(--token-a4028bb8-1d13-439b-86ba-5c0777195c91, rgb(11, 12, 38))\"},children:\"Numbers that make an impact!\"})}),className:\"framer-1udgjpw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5be2af\",\"data-styles-preset\":\"nlmYToOd7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a4028bb8-1d13-439b-86ba-5c0777195c91, rgb(11, 12, 38))\"},children:\"We are proud of what we've delivered for our partners all over the world!\"})})},PpEYk4DC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5be2af\",\"data-styles-preset\":\"nlmYToOd7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a4028bb8-1d13-439b-86ba-5c0777195c91, rgb(11, 12, 38))\"},children:\"We are proud of what we've delivered for our partners all over the world!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5be2af\",\"data-styles-preset\":\"nlmYToOd7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a4028bb8-1d13-439b-86ba-5c0777195c91, rgb(11, 12, 38))\"},children:\"We are proud of what we've delivered for our partners all over the world!\"})}),className:\"framer-34ygxg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z7or6z\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yrxrz9\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f3fjrp\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bpurwt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-147zbo1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PpEYk4DC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},children:\"3 regions\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},children:\"3 regions\"})}),className:\"framer-7giq3y\",fonts:[\"FS;Satoshi-black\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rjucf3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PpEYk4DC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5be2af\",\"data-styles-preset\":\"nlmYToOd7\",style:{\"--framer-text-alignment\":\"center\"},children:\"North America, Australasia, Europe\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5be2af\",\"data-styles-preset\":\"nlmYToOd7\",style:{\"--framer-text-alignment\":\"left\"},children:\"North America, Australasia, Europe\"})}),className:\"framer-gn4k83\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iqbibt\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-103hik7\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fw6nfy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PpEYk4DC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"800K\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"800K\"})})}),className:\"framer-15ifl76\",fonts:[\"FS;Satoshi-black\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-idl7qz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PpEYk4DC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5be2af\",\"data-styles-preset\":\"nlmYToOd7\",style:{\"--framer-text-alignment\":\"center\"},children:\"listings/year\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5be2af\",\"data-styles-preset\":\"nlmYToOd7\",style:{\"--framer-text-alignment\":\"left\"},children:\"listings/year\"})}),className:\"framer-vxtv1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l2kv3z\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lqk7kg\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ujab24\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18deja\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PpEYk4DC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},children:\"54\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},children:\"54\"})}),className:\"framer-1difhng\",fonts:[\"FS;Satoshi-black\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6hcv2h\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5be2af\",\"data-styles-preset\":\"nlmYToOd7\",style:{\"--framer-text-alignment\":\"left\"},children:\"Net Promoter Score\"})}),className:\"framer-5wrmq8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h6piql\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g1xsnk\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q0jv6z\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PpEYk4DC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},children:\"90\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},children:\"90\"})}),className:\"framer-19sfusc\",fonts:[\"FS;Satoshi-black\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x7hg0z\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PpEYk4DC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5be2af\",\"data-styles-preset\":\"nlmYToOd7\",style:{\"--framer-text-alignment\":\"center\"},children:\"Customer Service Score\"})})},TV3p3h2Tu:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5be2af\",\"data-styles-preset\":\"nlmYToOd7\",style:{\"--framer-text-alignment\":\"left\"},children:\"Customer Service Score\"})}),className:\"framer-2nnp3s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-myf097 hidden-n94wea\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e2idn8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dvez2m\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"9\"})})}),className:\"framer-1ptojh1\",fonts:[\"FS;Satoshi-black\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hg288k\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5be2af\",\"data-styles-preset\":\"nlmYToOd7\",style:{\"--framer-text-alignment\":\"left\"},children:\"Partnership Score\"})}),className:\"framer-14nfgc1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1poe4rz hidden-72rtr7 hidden-8vqset hidden-1jzqwlw\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oefih6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10deq9h\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nvd011\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"9\"})})}),className:\"framer-e5jrbj\",fonts:[\"FS;Satoshi-black\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1slkdus\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5be2af\",\"data-styles-preset\":\"nlmYToOd7\",style:{\"--framer-text-alignment\":\"center\"},children:\"Partnership Score\"})}),className:\"framer-3103vl\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})})})]}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-109bxfy-container hidden-72rtr7 hidden-n94wea hidden-1jzqwlw\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dNsQ8eUo2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:20,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"dNsQ8eUo2\",layoutId:\"dNsQ8eUo2\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16gxomh-container\",inComponentSlot:true,nodeId:\"BlQdrWfvC\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"BlQdrWfvC\",layoutId:\"BlQdrWfvC\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/N7LcZ7wmulCunEzn8naPDw7zx0.jpg\",srcSet:\"https://framerusercontent.com/images/N7LcZ7wmulCunEzn8naPDw7zx0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/N7LcZ7wmulCunEzn8naPDw7zx0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/N7LcZ7wmulCunEzn8naPDw7zx0.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1da4h4e-container\",inComponentSlot:true,nodeId:\"iLPwFtuwH\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"iLPwFtuwH\",layoutId:\"iLPwFtuwH\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/xxhIcpH8fZvmaIRTW5nHfMCCd78.jpg\",srcSet:\"https://framerusercontent.com/images/xxhIcpH8fZvmaIRTW5nHfMCCd78.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xxhIcpH8fZvmaIRTW5nHfMCCd78.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xxhIcpH8fZvmaIRTW5nHfMCCd78.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-e4dy1a-container\",inComponentSlot:true,nodeId:\"oqhq8aHDb\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"oqhq8aHDb\",layoutId:\"oqhq8aHDb\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg\",srcSet:\"https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1snc6uv-container\",inComponentSlot:true,nodeId:\"OZmzg20y5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"OZmzg20y5\",layoutId:\"OZmzg20y5\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg\",srcSet:\"https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"766px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4zdkdo-container\",inComponentSlot:true,nodeId:\"O79Pghz0I\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Gallry_Hero1,{height:\"100%\",id:\"O79Pghz0I\",layoutId:\"O79Pghz0I\",lplj5623k:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg\",srcSet:\"https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg 1620w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nHzhTpM1F\"},motionChild:true,nodeId:\"iA0ryVQdD\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1aq7zam framer-lux5qc\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\"},children:\"Discover the opportunity!\"})}),className:\"framer-1oi8r88\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vaun3y-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IQbIwK501\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"IQbIwK501\",layoutId:\"IQbIwK501\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q26wnt\",\"data-framer-name\":\"KAM\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bmcoag\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12agvl2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11elysk\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j9e57m\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1dfuevl\",\"data-framer-name\":\"logomark\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><g transform=\"translate(-0.011 -0.01)\"><g transform=\"translate(0 0)\"><path d=\"M 0.011 0.01 L 18.011 0.01 L 18.011 18.01 L 0.011 18.01 Z\" fill=\"transparent\"></path><path d=\"M 12.252 13.132 L 11.09 13.132 C 10.819 13.131 10.6 12.911 10.599 12.64 L 10.599 10.217 C 10.599 9.946 10.379 9.726 10.108 9.725 L 7.88 9.725 C 7.609 9.726 7.389 9.946 7.389 10.217 L 7.389 12.639 C 7.389 12.91 7.169 13.13 6.898 13.131 L 5.811 13.131 C 5.494 13.12 5.187 13.244 4.966 13.471 L 2.804 15.536 C 6.287 18.856 11.766 18.848 15.238 15.517 L 13.098 13.471 C 12.877 13.242 12.569 13.118 12.251 13.131\" fill=\"rgb(255,100,43)\"></path><path d=\"M 4.469 11.854 L 4.469 8.041 C 4.483 7.735 4.312 7.451 4.035 7.319 L 0.687 5.544 C -0.581 8.605 -0.07 12.115 2.018 14.688 L 4.112 12.685 C 4.346 12.473 4.476 12.17 4.468 11.854\" fill=\"rgb(255,100,43)\"></path><path d=\"M 9.996 4.653 L 12.576 6.285 C 12.833 6.449 13.158 6.461 13.426 6.317 L 16.827 4.514 C 15.324 1.887 12.601 0.191 9.58 0 L 9.58 3.898 C 9.577 4.205 9.734 4.491 9.995 4.653\" fill=\"rgb(255,100,43)\"></path><path d=\"M 5.452 6.277 L 8.012 4.644 C 8.278 4.487 8.437 4.197 8.426 3.889 L 8.426 0.001 C 5.414 0.197 2.701 1.889 1.199 4.507 L 4.604 6.311 C 4.872 6.453 5.196 6.44 5.452 6.277\" fill=\"rgb(255,100,43)\"></path><path d=\"M 17.338 5.552 L 13.99 7.327 C 13.72 7.465 13.551 7.745 13.556 8.049 L 13.556 11.819 C 13.553 12.133 13.681 12.435 13.91 12.65 L 16.02 14.666 C 18.093 12.098 18.598 8.603 17.338 5.552\" fill=\"rgb(255,100,43)\"></path></g></g></svg>',svgContentId:10103973198,withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cp7ol2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"TESTIMONIAL\"})})}),className:\"framer-5rfgb2\",fonts:[\"FS;Satoshi-regular\",\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PpEYk4DC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ylbpu3\",\"data-styles-preset\":\"PnVux11hH\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a4028bb8-1d13-439b-86ba-5c0777195c91, rgb(11, 12, 38))\"},children:\"Don\u2019t just take our words. Take our partners'!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ylbpu3\",\"data-styles-preset\":\"PnVux11hH\",style:{\"--framer-text-color\":\"var(--token-a4028bb8-1d13-439b-86ba-5c0777195c91, rgb(11, 12, 38))\"},children:\"Don\u2019t just take our words. Take our partners'!\"})}),className:\"framer-z9ndcl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5be2af\",\"data-styles-preset\":\"nlmYToOd7\",style:{\"--framer-text-alignment\":\"center\"},children:\"We prioritize protecting our clients\u2019 confidentiality, but that doesn't stop them from sharing their true experiences with us.\"})}),className:\"framer-c9ithw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19cxqmn-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zfeUe8hOJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.3,id:\"zfeUe8hOJ\",layoutId:\"zfeUe8hOJ\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:\"470px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i4vbm0-container\",inComponentSlot:true,nodeId:\"E0TO_RUCr\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker_testimonial,{height:\"100%\",id:\"E0TO_RUCr\",layoutId:\"E0TO_RUCr\",style:{height:\"100%\",width:\"100%\"},variant:\"cg94SKDVe\",W7iAVExdN:'\"Esoft\u2019s automated workflow minimize friction and enhance efficiency of my work\"',width:\"100%\",ZOda3Pb_W:\"Malcolm Eve\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:\"470px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1flkmuo-container\",inComponentSlot:true,nodeId:\"bV_EQt40U\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker_testimonial,{height:\"100%\",id:\"bV_EQt40U\",layoutId:\"bV_EQt40U\",style:{height:\"100%\",width:\"100%\"},variant:\"cg94SKDVe\",W7iAVExdN:'\"We always find the support we need from Esoft\u2019s extensive expertise\"',width:\"100%\",ZOda3Pb_W:\"Carlie Kory\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:\"470px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qrfiok-container\",inComponentSlot:true,nodeId:\"F6ZyQGQ5r\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker_testimonial,{height:\"100%\",id:\"F6ZyQGQ5r\",layoutId:\"F6ZyQGQ5r\",style:{height:\"100%\",width:\"100%\"},variant:\"MnaqNqD_y\",W7iAVExdN:'\"The production in Vietnam truly reflect Esoft\u2019s dedication to CSR and ethical practices\"',width:\"100%\",ZOda3Pb_W:\"Shanelle Evelynn\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:\"470px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-d3d3h1-container\",inComponentSlot:true,nodeId:\"hZPkbpZZl\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker_testimonial,{height:\"100%\",id:\"hZPkbpZZl\",layoutId:\"hZPkbpZZl\",style:{height:\"100%\",width:\"100%\"},variant:\"zu_HHVAeH\",W7iAVExdN:'\"Esoft\u2019s Product Experts add immense value to my business with extensive insights in technical and commercial knowledge\"',width:\"100%\",ZOda3Pb_W:\"Terrie Petunia\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:\"470px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-51461c-container\",inComponentSlot:true,nodeId:\"XsfVMjzZo\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker_testimonial,{height:\"100%\",id:\"XsfVMjzZo\",layoutId:\"XsfVMjzZo\",style:{height:\"100%\",width:\"100%\"},variant:\"MnaqNqD_y\",W7iAVExdN:'\"Your scalable tailored-solutions always meet our business\u2019s specific requirements for growth \"',width:\"100%\",ZOda3Pb_W:\"Phil Eustacia\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:\"470px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-108tdyh-container\",inComponentSlot:true,nodeId:\"OoyjbJ7uf\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker_testimonial,{height:\"100%\",id:\"OoyjbJ7uf\",layoutId:\"OoyjbJ7uf\",style:{height:\"100%\",width:\"100%\"},variant:\"MnaqNqD_y\",W7iAVExdN:'\"We and our clients highly value your fast turnaround times and 24/6 operation\"',width:\"100%\",ZOda3Pb_W:\"Kilie Alfreda\"})})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hf7fdj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xufdVcO0W\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.3,id:\"xufdVcO0W\",layoutId:\"xufdVcO0W\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:\"470px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5ciznb-container\",inComponentSlot:true,nodeId:\"aL2gElgd6\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker_testimonial,{height:\"100%\",id:\"aL2gElgd6\",layoutId:\"aL2gElgd6\",style:{height:\"100%\",width:\"100%\"},variant:\"cg94SKDVe\",W7iAVExdN:'\"Coconut white label solution has streamlined our operation efficiently\"',width:\"100%\",ZOda3Pb_W:\"Karly Ardath\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:\"470px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-w4uq3b-container\",inComponentSlot:true,nodeId:\"fdtuBTWNq\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker_testimonial,{height:\"100%\",id:\"fdtuBTWNq\",layoutId:\"fdtuBTWNq\",style:{height:\"100%\",width:\"100%\"},variant:\"MnaqNqD_y\",W7iAVExdN:'\"Esoft\\'s One-Stop-Shop approach has significantly boosted my sales and earnings per listing\"',width:\"100%\",ZOda3Pb_W:\"Tamara Wally\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:\"470px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-3gtrgu-container\",inComponentSlot:true,nodeId:\"kueujaBuL\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker_testimonial,{height:\"100%\",id:\"kueujaBuL\",layoutId:\"kueujaBuL\",style:{height:\"100%\",width:\"100%\"},variant:\"zu_HHVAeH\",W7iAVExdN:'\"Your solutions are custom-made for my needs\"',width:\"100%\",ZOda3Pb_W:\"Deven Floyd\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:\"470px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-egkgzr-container\",inComponentSlot:true,nodeId:\"iFAoptnmx\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker_testimonial,{height:\"100%\",id:\"iFAoptnmx\",layoutId:\"iFAoptnmx\",style:{height:\"100%\",width:\"100%\"},variant:\"cg94SKDVe\",W7iAVExdN:'\"Esoft\u2019s has always been a true partner accompanying us in our growth journey\"',width:\"100%\",ZOda3Pb_W:\"Katherine Minerva\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:\"470px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ifd45u-container\",inComponentSlot:true,nodeId:\"a7iIGUouh\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker_testimonial,{height:\"100%\",id:\"a7iIGUouh\",layoutId:\"a7iIGUouh\",style:{height:\"100%\",width:\"100%\"},variant:\"cg94SKDVe\",W7iAVExdN:'\"Their team keeps innovating and making life easier for my business.\"',width:\"100%\",ZOda3Pb_W:\"Nate Ronan\"})})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b6a6pr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-ylbpu3\",\"data-styles-preset\":\"PnVux11hH\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\"},children:[\"Our \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},children:\"Mission\"}),\" for a\",/*#__PURE__*/_jsx(\"br\",{}),\"Transformative \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},children:\"Vision\"}),\" ahead\"]})}),className:\"framer-d2vaf1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-5be2af\",\"data-styles-preset\":\"nlmYToOd7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\"},children:[\"Esoft aims to be the \",/*#__PURE__*/_jsx(\"strong\",{children:\"world's leading tech-driven post-production company\"}),\", delivering top-notch work with a fast turnaround time to real estate photography and media companies worldwide.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-5be2af\",\"data-styles-preset\":\"nlmYToOd7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\"},children:[\"Our mission is to consistently provide high-quality post-production services through advanced technology, \",/*#__PURE__*/_jsx(\"strong\",{children:\"fostering\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"strong partnerships\"}),\" and \",/*#__PURE__*/_jsx(\"strong\",{children:\"driving\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"business growth\"}),\" for our clients.\"]})]}),className:\"framer-gg7uac\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15tn29g-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IlC9rsOHQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PpEYk4DC4:{borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,topLeftRadius:20,topRightRadius:20,video:\"https://vimeo.com/999007664?share=copy\"}},children:/*#__PURE__*/_jsx(Vimeo,{autoplay:false,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"IlC9rsOHQ\",isMixedBorderRadius:false,layoutId:\"IlC9rsOHQ\",loop:false,mute:false,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/990501945?share=copy\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m3xp0b\"})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1240,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xW4XLXvzqNXkj2c5fI42QU8om4.png\",srcSet:\"https://framerusercontent.com/images/xW4XLXvzqNXkj2c5fI42QU8om4.png?scale-down-to=512 512w,https://framerusercontent.com/images/xW4XLXvzqNXkj2c5fI42QU8om4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xW4XLXvzqNXkj2c5fI42QU8om4.png 1920w\"},className:\"framer-yoazhf\",\"data-framer-name\":\"Secondary section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18ixqd0\",\"data-framer-name\":\"KAM\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nHzhTpM1F\"},motionChild:true,nodeId:\"WX6PCx1cR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{background:{alt:\"\",fit:\"fill\",pixelHeight:447,pixelWidth:992,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) * 0.9, 1000px)`,src:\"https://framerusercontent.com/images/DR21B9hWhl0k2Ji4f7nz3gLx8g.svg\",srcSet:\"https://framerusercontent.com/images/DR21B9hWhl0k2Ji4f7nz3gLx8g.svg?scale-down-to=512 512w,https://framerusercontent.com/images/DR21B9hWhl0k2Ji4f7nz3gLx8g.svg 992w\"}},PpEYk4DC4:{background:{alt:\"\",fit:\"fill\",pixelHeight:447,pixelWidth:992,sizes:`min(min(${componentViewport?.width||\"100vw\"} * 0.9, 1200px), 1000px)`,src:\"https://framerusercontent.com/images/DR21B9hWhl0k2Ji4f7nz3gLx8g.svg\",srcSet:\"https://framerusercontent.com/images/DR21B9hWhl0k2Ji4f7nz3gLx8g.svg?scale-down-to=512 512w,https://framerusercontent.com/images/DR21B9hWhl0k2Ji4f7nz3gLx8g.svg 992w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:447,pixelWidth:992,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1200px), 1000px)`,src:\"https://framerusercontent.com/images/DR21B9hWhl0k2Ji4f7nz3gLx8g.svg\",srcSet:\"https://framerusercontent.com/images/DR21B9hWhl0k2Ji4f7nz3gLx8g.svg?scale-down-to=512 512w,https://framerusercontent.com/images/DR21B9hWhl0k2Ji4f7nz3gLx8g.svg 992w\"},className:\"framer-1lc215b framer-lux5qc\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-106xg5e\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bl3ccy\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10d0ho4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-x3crod\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-ylbpu3\",\"data-styles-preset\":\"PnVux11hH\",style:{\"--framer-text-color\":\"var(--token-a4028bb8-1d13-439b-86ba-5c0777195c91, rgb(11, 12, 38))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},children:\"Key Account Manager\"}),\" to accompany you through the growth journey\"]})}),className:\"framer-1jf47xn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mxah1h\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-5be2af\",\"data-styles-preset\":\"nlmYToOd7\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Our KAM will assist and consult you with \",/*#__PURE__*/_jsx(\"strong\",{children:\"operation\"}),\", \",/*#__PURE__*/_jsx(\"strong\",{children:\"volumes\"}),\", \",/*#__PURE__*/_jsx(\"strong\",{children:\"product\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"innovation\"}),\", and \",/*#__PURE__*/_jsx(\"strong\",{children:\"business\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"strategies.\"})]})}),className:\"framer-rqub7b\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"button\",{className:\"framer-rl4j15\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\"},children:\"Get in touch\"})}),className:\"framer-1mjht10\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pb288s-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GPcjcxLXe\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"GPcjcxLXe\",layoutId:\"GPcjcxLXe\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ddc2m8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PpEYk4DC4:{background:{alt:\"\",fit:\"fill\",pixelHeight:768,pixelWidth:512,positionX:\"48.6%\",positionY:\"15.6%\",sizes:\"100px\",src:\"https://framerusercontent.com/images/ArNWudH2dRgNkbhY6iKv33VjfU.png\",srcSet:\"https://framerusercontent.com/images/ArNWudH2dRgNkbhY6iKv33VjfU.png 512w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:768,pixelWidth:512,positionX:\"48.6%\",positionY:\"15.6%\",sizes:\"172px\",src:\"https://framerusercontent.com/images/ArNWudH2dRgNkbhY6iKv33VjfU.png\",srcSet:\"https://framerusercontent.com/images/ArNWudH2dRgNkbhY6iKv33VjfU.png 512w\"},className:\"framer-1dpq3r9\",\"data-border\":true,transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PpEYk4DC4:{background:{alt:\"\",fit:\"fill\",pixelHeight:3406,pixelWidth:2271,positionX:\"51.8%\",positionY:\"23%\",sizes:\"100px\",src:\"https://framerusercontent.com/images/sc6BjZy9QXIogFChYIXpYlq3HE.png\",srcSet:\"https://framerusercontent.com/images/sc6BjZy9QXIogFChYIXpYlq3HE.png?scale-down-to=1024 682w,https://framerusercontent.com/images/sc6BjZy9QXIogFChYIXpYlq3HE.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/sc6BjZy9QXIogFChYIXpYlq3HE.png 2271w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3406,pixelWidth:2271,positionX:\"51.8%\",positionY:\"23%\",sizes:\"172px\",src:\"https://framerusercontent.com/images/sc6BjZy9QXIogFChYIXpYlq3HE.png\",srcSet:\"https://framerusercontent.com/images/sc6BjZy9QXIogFChYIXpYlq3HE.png?scale-down-to=1024 682w,https://framerusercontent.com/images/sc6BjZy9QXIogFChYIXpYlq3HE.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/sc6BjZy9QXIogFChYIXpYlq3HE.png 2271w\"},className:\"framer-1jlemrq\",\"data-border\":true,transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PpEYk4DC4:{background:{alt:\"\",fit:\"fill\",pixelHeight:3406,pixelWidth:2271,positionX:\"52.1%\",positionY:\"7.8%\",sizes:\"100px\",src:\"https://framerusercontent.com/images/8ogT8WsVhjkrBDB6bJjlpYVGxL4.png\",srcSet:\"https://framerusercontent.com/images/8ogT8WsVhjkrBDB6bJjlpYVGxL4.png?scale-down-to=1024 682w,https://framerusercontent.com/images/8ogT8WsVhjkrBDB6bJjlpYVGxL4.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/8ogT8WsVhjkrBDB6bJjlpYVGxL4.png 2271w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3406,pixelWidth:2271,positionX:\"52.1%\",positionY:\"7.8%\",sizes:\"172px\",src:\"https://framerusercontent.com/images/8ogT8WsVhjkrBDB6bJjlpYVGxL4.png\",srcSet:\"https://framerusercontent.com/images/8ogT8WsVhjkrBDB6bJjlpYVGxL4.png?scale-down-to=1024 682w,https://framerusercontent.com/images/8ogT8WsVhjkrBDB6bJjlpYVGxL4.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/8ogT8WsVhjkrBDB6bJjlpYVGxL4.png 2271w\"},className:\"framer-1szyn03\",\"data-border\":true,transformTemplate:transformTemplate2})})]})]})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xrrxcr\",\"data-framer-name\":\"Testimonial\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ddt3pp\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e7c0tt\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w0auii\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9ig4xf\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15u8l40\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gjp5ce\",\"data-framer-name\":\"logomark\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><g transform=\"translate(-0.011 -0.01)\"><g transform=\"translate(0 0)\"><path d=\"M 0.011 0.01 L 18.011 0.01 L 18.011 18.01 L 0.011 18.01 Z\" fill=\"transparent\"></path><path d=\"M 12.252 13.132 L 11.09 13.132 C 10.819 13.131 10.6 12.911 10.599 12.64 L 10.599 10.217 C 10.599 9.946 10.379 9.726 10.108 9.725 L 7.88 9.725 C 7.609 9.726 7.389 9.946 7.389 10.217 L 7.389 12.639 C 7.389 12.91 7.169 13.13 6.898 13.131 L 5.811 13.131 C 5.494 13.12 5.187 13.244 4.966 13.471 L 2.804 15.536 C 6.287 18.856 11.766 18.848 15.238 15.517 L 13.098 13.471 C 12.877 13.242 12.569 13.118 12.251 13.131\" fill=\"rgb(255,100,43)\"></path><path d=\"M 4.469 11.854 L 4.469 8.041 C 4.483 7.735 4.312 7.451 4.035 7.319 L 0.687 5.544 C -0.581 8.605 -0.07 12.115 2.018 14.688 L 4.112 12.685 C 4.346 12.473 4.476 12.17 4.468 11.854\" fill=\"rgb(255,100,43)\"></path><path d=\"M 9.996 4.653 L 12.576 6.285 C 12.833 6.449 13.158 6.461 13.426 6.317 L 16.827 4.514 C 15.324 1.887 12.601 0.191 9.58 0 L 9.58 3.898 C 9.577 4.205 9.734 4.491 9.995 4.653\" fill=\"rgb(255,100,43)\"></path><path d=\"M 5.452 6.277 L 8.012 4.644 C 8.278 4.487 8.437 4.197 8.426 3.889 L 8.426 0.001 C 5.414 0.197 2.701 1.889 1.199 4.507 L 4.604 6.311 C 4.872 6.453 5.196 6.44 5.452 6.277\" fill=\"rgb(255,100,43)\"></path><path d=\"M 17.338 5.552 L 13.99 7.327 C 13.72 7.465 13.551 7.745 13.556 8.049 L 13.556 11.819 C 13.553 12.133 13.681 12.435 13.91 12.65 L 16.02 14.666 C 18.093 12.098 18.598 8.603 17.338 5.552\" fill=\"rgb(255,100,43)\"></path></g></g></svg>',svgContentId:10103973198,withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cmbt5c\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"HIGHLIGHTS\"})})}),className:\"framer-f4b77w\",fonts:[\"FS;Satoshi-regular\",\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ylbpu3\",\"data-styles-preset\":\"PnVux11hH\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a4028bb8-1d13-439b-86ba-5c0777195c91, rgb(11, 12, 38))\"},children:\"This is where we show our trust!\"})}),className:\"framer-m4x4dy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r9ch58-container\",id:\"1r9ch58\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"eVS0olEP_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{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:true},itemAmount:2},PpEYk4DC4:{itemAmount:1}},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:false},gap:10,height:\"100%\",id:\"eVS0olEP_\",intervalControl:1.5,itemAmount:3,layoutId:\"eVS0olEP_\",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:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:508,width:\"356px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hx21zg-container\",inComponentSlot:true,nodeId:\"F_1JTG5sx\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Test,{height:\"100%\",id:\"F_1JTG5sx\",layoutId:\"F_1JTG5sx\",style:{height:\"100%\",width:\"100%\"},variant:\"fNhF0IFD8\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:508,width:\"356px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yu12rf-container\",inComponentSlot:true,nodeId:\"bOgh0cMuv\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Test2,{height:\"100%\",id:\"bOgh0cMuv\",layoutId:\"bOgh0cMuv\",style:{height:\"100%\",width:\"100%\"},variant:\"p_8cPUHOs\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:508,width:\"356px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-dh2atp-container\",inComponentSlot:true,nodeId:\"ob7RX26eR\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Test3,{height:\"100%\",id:\"ob7RX26eR\",layoutId:\"ob7RX26eR\",style:{height:\"100%\",width:\"100%\"},variant:\"poTnGHbK2\",width:\"100%\"})})})],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-1ss00yh\",\"data-framer-name\":\"KAM\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{background:{alt:\"\",fit:\"fill\",pixelHeight:447,pixelWidth:992,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) * 0.9, 1000px)`,src:\"https://framerusercontent.com/images/DR21B9hWhl0k2Ji4f7nz3gLx8g.svg\",srcSet:\"https://framerusercontent.com/images/DR21B9hWhl0k2Ji4f7nz3gLx8g.svg?scale-down-to=512 512w,https://framerusercontent.com/images/DR21B9hWhl0k2Ji4f7nz3gLx8g.svg 992w\"}},PpEYk4DC4:{background:{alt:\"\",fit:\"fill\",pixelHeight:447,pixelWidth:992,sizes:`min(min(${componentViewport?.width||\"100vw\"} * 0.9, 1200px), 1000px)`,src:\"https://framerusercontent.com/images/DR21B9hWhl0k2Ji4f7nz3gLx8g.svg\",srcSet:\"https://framerusercontent.com/images/DR21B9hWhl0k2Ji4f7nz3gLx8g.svg?scale-down-to=512 512w,https://framerusercontent.com/images/DR21B9hWhl0k2Ji4f7nz3gLx8g.svg 992w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:447,pixelWidth:992,sizes:\"1000px\",src:\"https://framerusercontent.com/images/DR21B9hWhl0k2Ji4f7nz3gLx8g.svg\",srcSet:\"https://framerusercontent.com/images/DR21B9hWhl0k2Ji4f7nz3gLx8g.svg?scale-down-to=512 512w,https://framerusercontent.com/images/DR21B9hWhl0k2Ji4f7nz3gLx8g.svg 992w\"},className:\"framer-1bd3nnr\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jaghgo\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nlx59n\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11o98q2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pnpl4c\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-a4028bb8-1d13-439b-86ba-5c0777195c91, rgb(11, 12, 38))\"},children:\"Check out upcoming webinar\"})}),className:\"framer-a3xbvm\",fonts:[\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y87n7k\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5be2af\",\"data-styles-preset\":\"nlmYToOd7\",style:{\"--framer-text-alignment\":\"left\"},children:\"View our latest webinars or sign up to upcoming sessions.\"})}),className:\"framer-su7go6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-egik7k\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{href:{webPageId:\"a1sbgPlgB\"}},PpEYk4DC4:{href:{webPageId:\"a1sbgPlgB\"}},TV3p3h2Tu:{href:{webPageId:\"a1sbgPlgB\"}}},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"IAPdcCdyo\"},motionChild:true,nodeId:\"G3Z80cUH6\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-66acng framer-lux5qc\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, rgb(255, 255, 255))\"},children:\"View now\"})}),className:\"framer-14cnv83\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4ijo84-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"TakJidZUo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"TakJidZUo\",layoutId:\"TakJidZUo\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"IAPdcCdyo\"},motionChild:true,nodeId:\"hEN3S_TF9\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{background:{alt:\"\",fit:\"fill\",pixelHeight:1530,pixelWidth:2037,positionX:\"center\",positionY:\"top\",sizes:`calc(min(min(min(${componentViewport?.width||\"100vw\"}, 1200px) * 0.9, 1000px), 1200px) - 100px)`,src:\"https://framerusercontent.com/images/QUAhgMP013e7kD0C9JEShBo38A.jpg\",srcSet:\"https://framerusercontent.com/images/QUAhgMP013e7kD0C9JEShBo38A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QUAhgMP013e7kD0C9JEShBo38A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QUAhgMP013e7kD0C9JEShBo38A.jpg 2037w\"}},PpEYk4DC4:{background:{alt:\"\",fit:\"fill\",pixelHeight:1530,pixelWidth:2037,positionX:\"center\",positionY:\"top\",sizes:`calc(min(min(min(${componentViewport?.width||\"100vw\"} * 0.9, 1200px), 1000px), 1200px) - 40px)`,src:\"https://framerusercontent.com/images/QUAhgMP013e7kD0C9JEShBo38A.jpg\",srcSet:\"https://framerusercontent.com/images/QUAhgMP013e7kD0C9JEShBo38A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QUAhgMP013e7kD0C9JEShBo38A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QUAhgMP013e7kD0C9JEShBo38A.jpg 2037w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:1530,pixelWidth:2037,positionX:\"center\",positionY:\"top\",sizes:\"411.5px\",src:\"https://framerusercontent.com/images/QUAhgMP013e7kD0C9JEShBo38A.jpg\",srcSet:\"https://framerusercontent.com/images/QUAhgMP013e7kD0C9JEShBo38A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QUAhgMP013e7kD0C9JEShBo38A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QUAhgMP013e7kD0C9JEShBo38A.jpg 2037w\"},className:\"framer-3resxa framer-lux5qc\"})})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8dxh5v\",\"data-framer-name\":\"Gallery\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n6yydq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 266 323\"><path d=\"M 0 251.615 C 49.46 251.615 94.398 211.877 109.065 182.532 C 115.778 169.104 119.321 154.357 120.479 139.434 C 121.144 130.859 122.23 119.777 117.309 112.181 C 109.258 99.755 91.609 97.295 80.531 108.378 C 70.257 118.656 68.576 133.717 72.922 150.209 C 77.267 166.7 88.504 169.064 97.651 174.293 C 109.453 181.04 117.944 175.015 131.259 174.926 C 140.893 174.862 186.021 162.884 223.837 121.688 C 261.654 80.492 292.157 10.078 308.807 0\" transform=\"translate(-21.132 35.73) rotate(90 154.403 125.808)\" fill=\"transparent\" stroke-width=\"12.41\" stroke=\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43)) /* {&quot;name&quot;:&quot;Esoft Orange&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:11855005532},PpEYk4DC4:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 188 227\"><path d=\"M 0 172 C 33.795 172 64.5 144.836 74.522 124.776 C 79.108 115.596 81.529 105.516 82.32 95.315 C 82.775 89.453 83.516 81.878 80.154 76.685 C 74.653 68.191 62.594 66.509 55.025 74.086 C 48.005 81.111 46.856 91.407 49.825 102.68 C 52.795 113.953 60.473 115.57 66.723 119.144 C 74.787 123.756 80.588 119.637 89.686 119.577 C 96.269 119.533 127.104 111.345 152.943 83.184 C 178.781 55.023 199.624 6.889 211 0\" transform=\"translate(-11.202 27.163) rotate(90 105.5 86)\" fill=\"transparent\" stroke-width=\"14.11\" stroke=\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43)) /* {&quot;name&quot;:&quot;Esoft Orange&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9304175267}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1blfc73\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 945 739\"><path d=\"M 11.5 11.5 C 11.5 11.5 51.378 155.882 97.063 201.567 C 142.748 247.252 182.102 265.301 252.011 239.18 C 321.92 213.06 306.537 169.596 304.704 160.297 C 302.871 150.998 290.357 129.736 275.488 123.728 C 260.619 117.72 245.229 118.243 223.186 124.806 C 201.144 131.368 181 150 170 170 C 159 190 131.045 257.104 166 311.5 C 200.955 365.896 359.828 490.917 400 522 C 480.343 584.167 933.5 727.5 933.5 727.5\" fill=\"transparent\" stroke-width=\"21.11\" stroke=\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43)) /* {&quot;name&quot;:&quot;Esoft Orange&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:11780195922,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-112o9z3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17wwwzb\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nsasre\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ae2y3e\",\"data-framer-name\":\"logomark\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><g transform=\"translate(-0.011 -0.01)\"><g transform=\"translate(0 0)\"><path d=\"M 0.011 0.01 L 18.011 0.01 L 18.011 18.01 L 0.011 18.01 Z\" fill=\"transparent\"></path><path d=\"M 12.252 13.132 L 11.09 13.132 C 10.819 13.131 10.6 12.911 10.599 12.64 L 10.599 10.217 C 10.599 9.946 10.379 9.726 10.108 9.725 L 7.88 9.725 C 7.609 9.726 7.389 9.946 7.389 10.217 L 7.389 12.639 C 7.389 12.91 7.169 13.13 6.898 13.131 L 5.811 13.131 C 5.494 13.12 5.187 13.244 4.966 13.471 L 2.804 15.536 C 6.287 18.856 11.766 18.848 15.238 15.517 L 13.098 13.471 C 12.877 13.242 12.569 13.118 12.251 13.131\" fill=\"rgb(255,100,43)\"></path><path d=\"M 4.469 11.854 L 4.469 8.041 C 4.483 7.735 4.312 7.451 4.035 7.319 L 0.687 5.544 C -0.581 8.605 -0.07 12.115 2.018 14.688 L 4.112 12.685 C 4.346 12.473 4.476 12.17 4.468 11.854\" fill=\"rgb(255,100,43)\"></path><path d=\"M 9.996 4.653 L 12.576 6.285 C 12.833 6.449 13.158 6.461 13.426 6.317 L 16.827 4.514 C 15.324 1.887 12.601 0.191 9.58 0 L 9.58 3.898 C 9.577 4.205 9.734 4.491 9.995 4.653\" fill=\"rgb(255,100,43)\"></path><path d=\"M 5.452 6.277 L 8.012 4.644 C 8.278 4.487 8.437 4.197 8.426 3.889 L 8.426 0.001 C 5.414 0.197 2.701 1.889 1.199 4.507 L 4.604 6.311 C 4.872 6.453 5.196 6.44 5.452 6.277\" fill=\"rgb(255,100,43)\"></path><path d=\"M 17.338 5.552 L 13.99 7.327 C 13.72 7.465 13.551 7.745 13.556 8.049 L 13.556 11.819 C 13.553 12.133 13.681 12.435 13.91 12.65 L 16.02 14.666 C 18.093 12.098 18.598 8.603 17.338 5.552\" fill=\"rgb(255,100,43)\"></path></g></g></svg>',svgContentId:10103973198,withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1presfp\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, rgb(255, 100, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"HIGHLIGHTS\"})})}),className:\"framer-snwrpj\",fonts:[\"FS;Satoshi-regular\",\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-ylbpu3\",\"data-styles-preset\":\"PnVux11hH\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Check out our \",/*#__PURE__*/_jsx(\"br\",{}),\"High-quality Samples!\"]})}),className:\"framer-olk454\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lk9uqo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uMqq8zaCi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PpEYk4DC4:{itemAmount:1}},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:true},autoPlayControl:true,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:false},gap:10,height:\"100%\",id:\"uMqq8zaCi\",intervalControl:1.5,itemAmount:2,layoutId:\"uMqq8zaCi\",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:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:498,width:\"694px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f06rm8-container\",inComponentSlot:true,nodeId:\"aJQPfiNty\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(GallryIMG1,{height:\"100%\",id:\"aJQPfiNty\",layoutId:\"aJQPfiNty\",style:{height:\"100%\",width:\"100%\"},vn71YcCc6:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg\",srcSet:\"https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DtaF6agoJBhwrJsCOfII0A9pqM.jpg 1620w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:498,width:\"694px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2mjrr4-container\",inComponentSlot:true,nodeId:\"ubtWagaaB\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(GallryIMG1,{height:\"100%\",id:\"ubtWagaaB\",layoutId:\"ubtWagaaB\",style:{height:\"100%\",width:\"100%\"},vn71YcCc6:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/Ld0K3WlXeQwlNQDPHk52o3hY.jpg\",srcSet:\"https://framerusercontent.com/images/Ld0K3WlXeQwlNQDPHk52o3hY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ld0K3WlXeQwlNQDPHk52o3hY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ld0K3WlXeQwlNQDPHk52o3hY.jpg 1620w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:498,width:\"694px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jd3uv2-container\",inComponentSlot:true,nodeId:\"DZ4mdtk42\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(GallryIMG1,{height:\"100%\",id:\"DZ4mdtk42\",layoutId:\"DZ4mdtk42\",style:{height:\"100%\",width:\"100%\"},vn71YcCc6:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg\",srcSet:\"https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qh8MUYj2XX1IRJIQeSnHXNWEUY.jpg 1620w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:498,width:\"694px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b1h0nx-container\",inComponentSlot:true,nodeId:\"O8Hur7yq6\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(GallryIMG1,{height:\"100%\",id:\"O8Hur7yq6\",layoutId:\"O8Hur7yq6\",style:{height:\"100%\",width:\"100%\"},vn71YcCc6:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg\",srcSet:\"https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BsgvRfbi9asJlDwNwndjEmiPD7w.jpg 1620w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:498,width:\"694px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-uoh7qq-container\",inComponentSlot:true,nodeId:\"QOvMkWFKV\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(GallryIMG1,{height:\"100%\",id:\"QOvMkWFKV\",layoutId:\"QOvMkWFKV\",style:{height:\"100%\",width:\"100%\"},vn71YcCc6:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/ClfNVIRRRH2abkcBdLZoFf3Ntz4.jpg\",srcSet:\"https://framerusercontent.com/images/ClfNVIRRRH2abkcBdLZoFf3Ntz4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ClfNVIRRRH2abkcBdLZoFf3Ntz4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ClfNVIRRRH2abkcBdLZoFf3Ntz4.jpg 1620w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:498,width:\"694px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qm0tvs-container\",inComponentSlot:true,nodeId:\"w3Kx28hRM\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(GallryIMG1,{height:\"100%\",id:\"w3Kx28hRM\",layoutId:\"w3Kx28hRM\",style:{height:\"100%\",width:\"100%\"},vn71YcCc6:addImageAlt({pixelHeight:1080,pixelWidth:1620,src:\"https://framerusercontent.com/images/lx2WyWyh7hluaJzaYJp11kX0s.jpg\",srcSet:\"https://framerusercontent.com/images/lx2WyWyh7hluaJzaYJp11kX0s.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lx2WyWyh7hluaJzaYJp11kX0s.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/lx2WyWyh7hluaJzaYJp11kX0s.jpg 1620w\"},\"\"),width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:403,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5r4mvb-container\",nodeId:\"knbNYVXP6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwUkd60ZM:{variant:\"dvWi55v2M\"},PpEYk4DC4:{variant:\"Ry0oLq56A\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"knbNYVXP6\",layoutId:\"knbNYVXP6\",style:{width:\"100%\"},variant:\"vWIeICeu1\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-svBTa.framer-lux5qc, .framer-svBTa .framer-lux5qc { display: block; }\",\".framer-svBTa.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1400px; }\",\".framer-svBTa .framer-76j0du-container, .framer-svBTa .framer-5r4mvb-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-svBTa .framer-1x0prx0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-svBTa .framer-72005g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-svBTa .framer-fqdj5w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 31px; min-width: 561px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-svBTa .framer-eh32z0, .framer-svBTa .framer-1xrrxcr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-svBTa .framer-bnudg5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-svBTa .framer-xin96, .framer-svBTa .framer-1e7c0tt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-svBTa .framer-1m4s6rs, .framer-svBTa .framer-15idha3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-svBTa .framer-1cdosov { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-svBTa .framer-115lbhs-container, .framer-svBTa .framer-cekanh-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-svBTa .framer-jv3tek, .framer-svBTa .framer-1udgjpw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-svBTa .framer-tyy2zb-container { flex: none; height: 293px; position: relative; width: 351px; }\",\".framer-svBTa .framer-4zdkdo-container, .framer-svBTa .framer-16gxomh-container, .framer-svBTa .framer-1da4h4e-container, .framer-svBTa .framer-e4dy1a-container, .framer-svBTa .framer-1snc6uv-container { height: 514px; position: relative; width: 766px; }\",\".framer-svBTa .framer-1jx24te, .framer-svBTa .framer-1jf47xn, .framer-svBTa .framer-a3xbvm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-svBTa .framer-1h3rfs0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 106px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 244px; }\",\".framer-svBTa .framer-ttqsl2 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-svBTa .framer-35k1nn { aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 43px); overflow: hidden; position: relative; width: 43px; will-change: var(--framer-will-change-override, transform); }\",\".framer-svBTa .framer-sgnwdm { aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 22px); left: 30px; overflow: hidden; position: absolute; top: 51%; transform: translateY(-50%); width: 22px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-svBTa .framer-1dvo1fg { flex: none; height: 12px; left: calc(45.454545454545475% - 12px / 2); position: absolute; top: calc(45.454545454545475% - 12px / 2); width: 12px; }\",\".framer-svBTa.framer-mfmz31 { background-color: rgba(11, 12, 38, 0.54); inset: 0px; position: fixed; user-select: none; z-index: 7; }\",\".framer-svBTa.framer-1u9so4u-container { flex: none; height: 449px; left: calc(50.00000000000002% - 798px / 2); position: fixed; top: 111px; width: 798px; z-index: 7; }\",\".framer-svBTa.framer-wedbn3-container { flex: none; height: 350px; left: calc(50.00000000000002% - 350px / 2); position: fixed; top: 186px; width: 350px; z-index: 7; }\",\".framer-svBTa.framer-jcdzsf-container { flex: none; height: 60px; left: 1139px; position: fixed; top: 59px; width: 60px; z-index: 7; }\",\".framer-svBTa .framer-yz9c64 { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 467px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-svBTa .framer-sz94rk-container, .framer-svBTa .framer-blbsd2-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-svBTa .framer-13li1bu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-svBTa .framer-o1h444, .framer-svBTa .framer-dzkw63, .framer-svBTa .framer-cp783l, .framer-svBTa .framer-11elysk, .framer-svBTa .framer-9ig4xf { --border-bottom-width: 1px; --border-color: var(--token-0abcbbc0-cfaf-4a46-a496-4280556385f7, #e7ecf3); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 29px; justify-content: center; overflow: hidden; padding: 0px 10px 0px 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-svBTa .framer-1nv4cbt, .framer-svBTa .framer-fxsyqd, .framer-svBTa .framer-1tm6fi4, .framer-svBTa .framer-uhggzn, .framer-svBTa .framer-1j9e57m, .framer-svBTa .framer-15u8l40, .framer-svBTa .framer-nsasre { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-end; padding: 0px; position: relative; width: 19px; }\",\".framer-svBTa .framer-mlh15w, .framer-svBTa .framer-1ynkqmk, .framer-svBTa .framer-i40wy7, .framer-svBTa .framer-1qg0lw1, .framer-svBTa .framer-1dfuevl, .framer-svBTa .framer-1gjp5ce, .framer-svBTa .framer-ae2y3e { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-svBTa .framer-j89v8e, .framer-svBTa .framer-8rhcb3, .framer-svBTa .framer-c33dtw, .framer-svBTa .framer-1yutgad, .framer-svBTa .framer-cp7ol2, .framer-svBTa .framer-cmbt5c, .framer-svBTa .framer-1presfp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-svBTa .framer-1hqx414, .framer-svBTa .framer-o99ot, .framer-svBTa .framer-1gesace, .framer-svBTa .framer-9bod32, .framer-svBTa .framer-22kyam, .framer-svBTa .framer-hdpjd5, .framer-svBTa .framer-5rfgb2, .framer-svBTa .framer-f4b77w, .framer-svBTa .framer-snwrpj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-svBTa .framer-1ebr90k { 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: hidden; padding: 0px 0px 40px 0px; position: relative; width: 1000px; }\",\".framer-svBTa .framer-1l254us { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 44%; word-break: break-word; word-wrap: break-word; }\",\".framer-svBTa .framer-azsalo { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 800px; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-svBTa .framer-1nr9nak-container, .framer-svBTa .framer-1nniw1s-container, .framer-svBTa .framer-tft6x6-container { align-self: start; flex: none; grid-column: span 2; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-svBTa .framer-1wcqv41-container, .framer-svBTa .framer-2udvtk-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-svBTa .framer-pa36s5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-svBTa .framer-3xe2y4 { align-content: center; align-items: center; background-color: var(--token-b87f08d8-1dab-4a8e-bd3d-c2992c569afa, #f9f9f9); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-svBTa .framer-136mh9t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-svBTa .framer-2voz3g, .framer-svBTa .framer-3sur8j, .framer-svBTa .framer-bl3ccy, .framer-svBTa .framer-1ddc2m8, .framer-svBTa .framer-nlx59n { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-svBTa .framer-y6gw8b { bottom: 50px; flex: none; height: 322px; position: absolute; right: 50px; width: 331px; }\",\".framer-svBTa .framer-t1tfom { flex: none; height: 100%; position: relative; width: 60%; }\",\".framer-svBTa .framer-1b4pd0f { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-svBTa .framer-3t0q64, .framer-svBTa .framer-1iyzze3, .framer-svBTa .framer-1b8h5q4, .framer-svBTa .framer-1pmu7ve, .framer-svBTa .framer-1huzz99, .framer-svBTa .framer-x3crod, .framer-svBTa .framer-1mxah1h, .framer-svBTa .framer-pnpl4c, .framer-svBTa .framer-y87n7k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-svBTa .framer-btg4b3 { bottom: -32px; flex: none; height: 322px; position: absolute; right: -155px; width: 331px; }\",\".framer-svBTa .framer-1gr933 { bottom: -44px; flex: none; height: 322px; left: -10px; position: absolute; width: 331px; }\",\".framer-svBTa .framer-8om39h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-svBTa .framer-1l9al8b { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 50px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-svBTa .framer-g9nnrf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 651px; }\",\".framer-svBTa .framer-18ngo03 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.43); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, #ffffff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 29px; justify-content: center; overflow: hidden; padding: 0px 10px 0px 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-svBTa .framer-1wu2zvs, .framer-svBTa .framer-rqub7b, .framer-svBTa .framer-su7go6 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-svBTa .framer-r6deq6 { bottom: -50px; flex: none; height: 918px; left: calc(49.90000000000002% - 120% / 2); position: absolute; width: 120%; z-index: 0; }\",\".framer-svBTa .framer-1myx4i4 { flex: none; height: 1178px; left: calc(36.33333333333336% - 3531px / 2); opacity: 0.18; position: absolute; top: -272px; width: 3531px; }\",\".framer-svBTa .framer-yvmrrh { display: grid; flex: none; gap: 30px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 65px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-svBTa .framer-qz3962-container, .framer-svBTa .framer-uuha4v-container, .framer-svBTa .framer-hkzpiq-container, .framer-svBTa .framer-1w4plfz-container { align-self: start; flex: none; grid-column: span 2; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-svBTa .framer-oy4oqs { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; grid-column: span 2; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-svBTa .framer-sm4j2j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 2186px; justify-content: center; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-svBTa .framer-1xn6xyt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-svBTa .framer-1kactmk { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 471px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 565px; will-change: var(--framer-will-change-override, transform); }\",\".framer-svBTa .framer-cp31rh-container { flex: none; height: 264px; position: relative; width: 316px; }\",\".framer-svBTa .framer-34ygxg { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-svBTa .framer-z7or6z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 256px; justify-content: center; overflow: hidden; padding: 0px 14px 0px 14px; position: relative; width: min-content; }\",\".framer-svBTa .framer-yrxrz9 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-svBTa .framer-1f3fjrp, .framer-svBTa .framer-1iqbibt, .framer-svBTa .framer-1h6piql, .framer-svBTa .framer-myf097, .framer-svBTa .framer-1oefih6 { flex: none; height: 100px; position: relative; width: 140px; }\",\".framer-svBTa .framer-1bpurwt { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 140px; }\",\".framer-svBTa .framer-147zbo1, .framer-svBTa .framer-1rjucf3, .framer-svBTa .framer-fw6nfy, .framer-svBTa .framer-idl7qz, .framer-svBTa .framer-18deja, .framer-svBTa .framer-6hcv2h, .framer-svBTa .framer-1q0jv6z, .framer-svBTa .framer-1x7hg0z, .framer-svBTa .framer-dvez2m, .framer-svBTa .framer-1nvd011, .framer-svBTa .framer-1slkdus { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-svBTa .framer-7giq3y, .framer-svBTa .framer-15ifl76, .framer-svBTa .framer-1difhng, .framer-svBTa .framer-19sfusc, .framer-svBTa .framer-1ptojh1 { flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-svBTa .framer-gn4k83 { flex: none; height: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-svBTa .framer-103hik7, .framer-svBTa .framer-e2idn8, .framer-svBTa .framer-10deq9h { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-svBTa .framer-vxtv1, .framer-svBTa .framer-14nfgc1 { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(48.00000000000002% - 100% / 2); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-svBTa .framer-1l2kv3z { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-svBTa .framer-lqk7kg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100px; justify-content: center; padding: 0px; position: relative; width: 140px; }\",\".framer-svBTa .framer-1ujab24 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 101px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-svBTa .framer-5wrmq8 { flex: none; height: 100%; left: calc(50.34482758620692% - 100% / 2); position: absolute; top: calc(49.50495049504953% - 100% / 2); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-svBTa .framer-1g1xsnk { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 140px; }\",\".framer-svBTa .framer-2nnp3s { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-svBTa .framer-hg288k { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-svBTa .framer-1poe4rz { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-svBTa .framer-e5jrbj { flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; z-index: 1; }\",\".framer-svBTa .framer-3103vl { flex: none; height: auto; left: 50%; position: absolute; top: 48%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 59%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-svBTa .framer-109bxfy-container { flex: none; height: 608px; position: relative; width: 100%; }\",\".framer-svBTa .framer-1aq7zam, .framer-svBTa .framer-66acng { align-content: center; align-items: center; background-color: var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, #ff642b); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-svBTa .framer-1oi8r88, .framer-svBTa .framer-1mjht10, .framer-svBTa .framer-14cnv83 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-svBTa .framer-1vaun3y-container, .framer-svBTa .framer-1pb288s-container, .framer-svBTa .framer-4ijo84-container { flex: none; height: 17px; position: relative; width: 18px; }\",\".framer-svBTa .framer-q26wnt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: 1200px; z-index: 2; }\",\".framer-svBTa .framer-bmcoag, .framer-svBTa .framer-1bd3nnr { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-svBTa .framer-12agvl2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 1021px; }\",\".framer-svBTa .framer-z9ndcl, .framer-svBTa .framer-d2vaf1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-svBTa .framer-c9ithw { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 584px; word-break: break-word; word-wrap: break-word; }\",\".framer-svBTa .framer-19cxqmn-container, .framer-svBTa .framer-1hf7fdj-container { flex: none; height: 150px; position: relative; width: 100%; }\",\".framer-svBTa .framer-1i4vbm0-container, .framer-svBTa .framer-1flkmuo-container, .framer-svBTa .framer-qrfiok-container, .framer-svBTa .framer-d3d3h1-container, .framer-svBTa .framer-51461c-container, .framer-svBTa .framer-108tdyh-container, .framer-svBTa .framer-5ciznb-container, .framer-svBTa .framer-w4uq3b-container, .framer-svBTa .framer-3gtrgu-container, .framer-svBTa .framer-egkgzr-container, .framer-svBTa .framer-1ifd45u-container { height: 150px; position: relative; width: 470px; }\",\".framer-svBTa .framer-b6a6pr { align-content: center; align-items: center; background-color: var(--token-a4028bb8-1d13-439b-86ba-5c0777195c91, #0b0c26); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: center; overflow: hidden; padding: 79px 0px 79px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-svBTa .framer-gg7uac { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 724px; word-break: break-word; word-wrap: break-word; }\",\".framer-svBTa .framer-15tn29g-container { flex: none; height: 509px; position: relative; width: 64%; }\",\".framer-svBTa .framer-1m3xp0b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1932px; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-svBTa .framer-yoazhf { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-svBTa .framer-18ixqd0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-svBTa .framer-1lc215b { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-svBTa .framer-106xg5e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 77px; height: 414px; justify-content: center; overflow: hidden; padding: 50px; position: relative; width: 1000px; }\",\".framer-svBTa .framer-10d0ho4, .framer-svBTa .framer-11o98q2 { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-svBTa .framer-rl4j15 { align-content: center; align-items: center; background-color: var(--token-fe3040c3-ca0a-4cba-af21-7ee736738acd, #ff642b); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; padding: 12px 20px 12px 20px; position: relative; width: min-content; }\",\".framer-svBTa .framer-1dpq3r9 { --border-bottom-width: 5px; --border-color: var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, #ffffff); --border-left-width: 5px; --border-right-width: 5px; --border-style: solid; --border-top-width: 5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: 0.39809593676181976px 0.39809593676181976px 0.5629926728941875px -0.4375px rgba(0, 0, 0, 0.09), 1.207253071552259px 1.207253071552259px 1.7073136670057811px -0.875px rgba(0, 0, 0, 0.1), 3.1913267607422307px 3.1913267607422307px 4.51321758700586px -1.3125px rgba(0, 0, 0, 0.11), 10px 10px 14.142135623730951px -1.75px rgba(0, 0, 0, 0.16); flex: none; height: var(--framer-aspect-ratio-supported, 172px); left: 0px; overflow: hidden; position: absolute; top: 52%; transform: translateY(-50%); width: 172px; will-change: var(--framer-will-change-override, transform); }\",\".framer-svBTa .framer-1jlemrq { --border-bottom-width: 5px; --border-color: var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, #ffffff); --border-left-width: 5px; --border-right-width: 5px; --border-style: solid; --border-top-width: 5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: 0.39809593676181976px 0.39809593676181976px 0.5629926728941875px -0.4375px rgba(0, 0, 0, 0.09), 1.207253071552259px 1.207253071552259px 1.7073136670057811px -0.875px rgba(0, 0, 0, 0.1), 3.1913267607422307px 3.1913267607422307px 4.51321758700586px -1.3125px rgba(0, 0, 0, 0.11), 10px 10px 14.142135623730951px -1.75px rgba(0, 0, 0, 0.16); flex: none; height: var(--framer-aspect-ratio-supported, 172px); left: 50%; overflow: hidden; position: absolute; top: 52%; transform: translate(-50%, -50%); width: 172px; will-change: var(--framer-will-change-override, transform); }\",\".framer-svBTa .framer-1szyn03 { --border-bottom-width: 5px; --border-color: var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, #ffffff); --border-left-width: 5px; --border-right-width: 5px; --border-style: solid; --border-top-width: 5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: 0.39809593676181976px 0.39809593676181976px 0.5629926728941875px -0.4375px rgba(0, 0, 0, 0.09), 1.207253071552259px 1.207253071552259px 1.7073136670057811px -0.875px rgba(0, 0, 0, 0.1), 3.1913267607422307px 3.1913267607422307px 4.51321758700586px -1.3125px rgba(0, 0, 0, 0.11), 10px 10px 14.142135623730951px -1.75px rgba(0, 0, 0, 0.16); flex: none; height: var(--framer-aspect-ratio-supported, 172px); overflow: hidden; position: absolute; right: 0px; top: 52%; transform: translateY(-50%); width: 172px; will-change: var(--framer-will-change-override, transform); }\",\".framer-svBTa .framer-ddt3pp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 54px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-svBTa .framer-w0auii { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-svBTa .framer-m4x4dy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 564px; word-break: break-word; word-wrap: break-word; }\",\".framer-svBTa .framer-1r9ch58-container { flex: none; height: 484px; position: relative; width: 100%; }\",\".framer-svBTa .framer-hx21zg-container, .framer-svBTa .framer-1yu12rf-container, .framer-svBTa .framer-dh2atp-container { height: 508px; position: relative; width: 356px; }\",\".framer-svBTa .framer-1ss00yh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: 1200px; }\",\".framer-svBTa .framer-jaghgo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 77px; height: 326px; justify-content: center; max-width: 1200px; overflow: hidden; padding: 50px; position: relative; width: 100%; }\",\".framer-svBTa .framer-egik7k { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-svBTa .framer-3resxa { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: 100%; position: relative; text-decoration: none; width: 1px; }\",\".framer-svBTa .framer-8dxh5v { align-content: center; align-items: center; background-color: var(--token-a4028bb8-1d13-439b-86ba-5c0777195c91, #0b0c26); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-svBTa .framer-1n6yydq { flex: none; height: 808px; overflow: hidden; position: relative; width: 100%; }\",\".framer-svBTa .framer-1blfc73 { flex: none; height: 739px; left: calc(109.75000000000001% - 945px / 2); position: absolute; top: calc(36.26237623762378% - 739px / 2); width: 945px; }\",\".framer-svBTa .framer-112o9z3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; left: 51%; overflow: hidden; padding: 0px 0px 44px 0px; position: absolute; top: 89px; transform: translateX(-50%); width: 1000px; }\",\".framer-svBTa .framer-17wwwzb { --border-bottom-width: 1px; --border-color: var(--token-0abcbbc0-cfaf-4a46-a496-4280556385f7, #e7ecf3); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-06b396bd-f847-4e03-ac82-bf9e5e8e86a2, #ffffff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 29px; justify-content: center; overflow: hidden; padding: 0px 10px 0px 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-svBTa .framer-olk454 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-svBTa .framer-1lk9uqo-container { bottom: 139px; flex: none; height: 413px; left: calc(50.505050505050534% - 1000px / 2); position: absolute; width: 1000px; }\",\".framer-svBTa .framer-1f06rm8-container, .framer-svBTa .framer-2mjrr4-container, .framer-svBTa .framer-1jd3uv2-container, .framer-svBTa .framer-1b1h0nx-container, .framer-svBTa .framer-uoh7qq-container, .framer-svBTa .framer-qm0tvs-container { height: 498px; position: relative; width: 694px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-svBTa[data-border=\"true\"]::after, .framer-svBTa [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-svBTa.framer-72rtr7 { width: 810px; } .framer-svBTa .framer-bnudg5, .framer-svBTa .framer-bmcoag, .framer-svBTa .framer-1lc215b, .framer-svBTa .framer-1bd3nnr { width: 90%; } .framer-svBTa .framer-xin96 { height: 561px; } .framer-svBTa.framer-1u9so4u-container { height: 372px; left: calc(49.876543209876566% - 661px / 2); top: 215px; width: 661px; } .framer-svBTa.framer-jcdzsf-container { left: 719px; top: 29px; } .framer-svBTa .framer-yz9c64 { aspect-ratio: unset; flex: none; height: 100%; width: 324px; } .framer-svBTa .framer-13li1bu { padding: 100px 20px 100px 20px; } .framer-svBTa .framer-pa36s5 { padding: 0px; width: 90%; } .framer-svBTa .framer-y6gw8b { bottom: 121px; height: 303px; left: -190px; right: unset; width: 366px; } .framer-svBTa .framer-1gesace { white-space: pre-wrap; width: 307px; word-break: break-word; word-wrap: break-word; } .framer-svBTa .framer-1gr933 { bottom: -20px; } .framer-svBTa .framer-8om39h { padding: 0px 20px 50px 20px; } .framer-svBTa .framer-1myx4i4 { height: 273px; left: -49px; top: -45px; width: 330px; } .framer-svBTa .framer-yvmrrh { grid-template-columns: repeat(1, minmax(200px, 1fr)); width: 86%; } .framer-svBTa .framer-qz3962-container, .framer-svBTa .framer-uuha4v-container, .framer-svBTa .framer-hkzpiq-container, .framer-svBTa .framer-1w4plfz-container { grid-column: span 1; } .framer-svBTa .framer-oy4oqs { grid-column: unset; } .framer-svBTa .framer-sm4j2j { height: min-content; } .framer-svBTa .framer-1xn6xyt { flex-direction: column; width: 90%; } .framer-svBTa .framer-15idha3 { align-content: center; align-items: center; flex: none; order: 0; width: 100%; } .framer-svBTa .framer-cp783l { order: 0; } .framer-svBTa .framer-1udgjpw { order: 2; } .framer-svBTa .framer-34ygxg { order: 3; } .framer-svBTa .framer-z7or6z { order: 4; } .framer-svBTa .framer-109bxfy-container { order: 5; } .framer-svBTa .framer-1aq7zam { order: 6; } .framer-svBTa .framer-q26wnt, .framer-svBTa .framer-1ss00yh { padding: 58px 0px 58px 0px; width: 100%; } .framer-svBTa .framer-15tn29g-container { height: 292px; width: 63%; } .framer-svBTa .framer-1m3xp0b { bottom: -100px; height: 800px; top: unset; } .framer-svBTa .framer-18ixqd0 { padding: 58px 0px 58px 0px; } .framer-svBTa .framer-106xg5e { flex-direction: column; gap: 0px; height: min-content; padding: 21px 50px 21px 50px; width: 100%; } .framer-svBTa .framer-bl3ccy, .framer-svBTa .framer-nlx59n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 100%; } .framer-svBTa .framer-10d0ho4, .framer-svBTa .framer-11o98q2 { bottom: unset; height: 226px; left: unset; position: relative; right: unset; top: unset; width: 100%; } .framer-svBTa .framer-1ddc2m8 { flex: none; height: 250px; width: 100%; } .framer-svBTa .framer-1dpq3r9 { left: 20px; top: 52%; } .framer-svBTa .framer-1jlemrq { left: 50%; top: 52%; } .framer-svBTa .framer-1szyn03 { left: 436px; right: unset; top: 52%; } .framer-svBTa .framer-1xrrxcr { padding: 60px 40px 60px 40px; } .framer-svBTa .framer-jaghgo { flex-direction: column; gap: 0px; height: min-content; padding: 21px 50px 21px 50px; } .framer-svBTa .framer-3resxa { flex: none; height: 355px; width: 100%; } .framer-svBTa .framer-1blfc73 { height: 323px; left: unset; right: -39px; top: -28px; width: 266px; } .framer-svBTa .framer-112o9z3 { left: 50%; top: 90px; width: 90%; } .framer-svBTa .framer-1lk9uqo-container { left: calc(50.505050505050534% - 90% / 2); width: 90%; }}\",\"@media (max-width: 809px) { .framer-svBTa.framer-72rtr7 { width: 390px; } .framer-svBTa .framer-bnudg5, .framer-svBTa .framer-1ebr90k { width: 90%; } .framer-svBTa .framer-xin96 { gap: 4px; } .framer-svBTa .framer-1m4s6rs, .framer-svBTa .framer-w0auii { flex: none; order: 0; width: 100%; } .framer-svBTa.framer-jcdzsf-container { left: 319px; top: 19px; } .framer-svBTa .framer-13li1bu { padding: 48px 20px 48px 20px; } .framer-svBTa .framer-o1h444, .framer-svBTa .framer-dzkw63, .framer-svBTa .framer-18ngo03, .framer-svBTa .framer-11elysk, .framer-svBTa .framer-9ig4xf, .framer-svBTa .framer-17wwwzb { background-color: var(--token-b87f08d8-1dab-4a8e-bd3d-c2992c569afa, #f9f9f9); } .framer-svBTa .framer-1l254us { width: 74%; } .framer-svBTa .framer-azsalo { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-svBTa .framer-1nr9nak-container, .framer-svBTa .framer-tft6x6-container, .framer-svBTa .framer-qz3962-container, .framer-svBTa .framer-uuha4v-container, .framer-svBTa .framer-hkzpiq-container, .framer-svBTa .framer-1w4plfz-container, .framer-svBTa .framer-oy4oqs { grid-column: span 1; } .framer-svBTa .framer-pa36s5 { height: 500px; } .framer-svBTa .framer-3xe2y4 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; width: 90%; } .framer-svBTa .framer-136mh9t { flex-direction: column; gap: 25px; } .framer-svBTa .framer-2voz3g, .framer-svBTa .framer-3sur8j { flex: none; height: 1px; width: 100%; } .framer-svBTa .framer-y6gw8b { bottom: unset; height: 378px; left: -34px; opacity: 0.16; right: unset; top: -52px; width: 455px; } .framer-svBTa .framer-t1tfom { flex: 1 0 0px; height: 1px; } .framer-svBTa .framer-1b4pd0f { bottom: unset; height: min-content; } .framer-svBTa .framer-1gesace { order: 0; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-svBTa .framer-btg4b3 { bottom: unset; height: 193px; left: 189px; right: unset; top: -52px; width: 232px; } .framer-svBTa .framer-g9nnrf, .framer-svBTa .framer-12agvl2, .framer-svBTa .framer-c9ithw, .framer-svBTa .framer-m4x4dy, .framer-svBTa .framer-olk454 { width: 100%; } .framer-svBTa .framer-22kyam { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-svBTa .framer-r6deq6 { height: 1px; } .framer-svBTa .framer-1myx4i4 { height: 193px; left: -41px; top: -52px; width: 232px; } .framer-svBTa .framer-yvmrrh { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-svBTa .framer-sm4j2j { height: min-content; padding: 31px 0px 31px 0px; } .framer-svBTa .framer-1xn6xyt { flex-direction: column; width: 90%; } .framer-svBTa .framer-15idha3 { align-content: center; align-items: center; flex: none; padding: 0px 0px 40px 0px; width: 100%; } .framer-svBTa .framer-cp783l { order: 0; } .framer-svBTa .framer-cp31rh-container { order: 3; } .framer-svBTa .framer-1udgjpw { order: 1; } .framer-svBTa .framer-34ygxg { order: 2; } .framer-svBTa .framer-z7or6z { gap: 0px; height: 300px; order: 4; width: 317px; } .framer-svBTa .framer-yrxrz9, .framer-svBTa .framer-1poe4rz { align-self: unset; width: 100%; } .framer-svBTa .framer-1iqbibt { width: 142px; } .framer-svBTa .framer-103hik7 { right: 50px; } .framer-svBTa .framer-1l2kv3z { align-self: unset; gap: 10px; width: 100%; } .framer-svBTa .framer-1aq7zam { order: 6; } .framer-svBTa .framer-q26wnt, .framer-svBTa .framer-18ixqd0, .framer-svBTa .framer-1ss00yh { padding: 22px 0px 22px 0px; width: 90%; } .framer-svBTa .framer-d2vaf1 { width: 321px; } .framer-svBTa .framer-gg7uac { width: 87%; } .framer-svBTa .framer-15tn29g-container { height: 324px; width: 70%; } .framer-svBTa .framer-1m3xp0b { flex-direction: row; height: min-content; left: 50%; min-height: 512px; transform: translateX(-50%); } .framer-svBTa .framer-106xg5e { flex-direction: column; gap: 55px; height: min-content; padding: 20px; width: 100%; } .framer-svBTa .framer-bl3ccy, .framer-svBTa .framer-1ddc2m8, .framer-svBTa .framer-nlx59n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 100%; } .framer-svBTa .framer-10d0ho4, .framer-svBTa .framer-11o98q2 { bottom: unset; height: min-content; left: unset; position: relative; right: unset; top: unset; width: 100%; } .framer-svBTa .framer-1dpq3r9 { height: var(--framer-aspect-ratio-supported, 100px); left: unset; order: 0; position: relative; top: unset; transform: unset; width: 100px; } .framer-svBTa .framer-1jlemrq { height: var(--framer-aspect-ratio-supported, 100px); left: unset; order: 1; position: relative; top: unset; transform: unset; width: 100px; } .framer-svBTa .framer-1szyn03 { height: var(--framer-aspect-ratio-supported, 100px); order: 2; position: relative; right: unset; top: unset; transform: unset; width: 100px; } .framer-svBTa .framer-1xrrxcr { gap: 20px; padding: 60px 20px 60px 20px; } .framer-svBTa .framer-ddt3pp { gap: 60px; } .framer-svBTa .framer-1e7c0tt { flex-direction: column; } .framer-svBTa .framer-jaghgo { flex-direction: column; gap: 55px; height: min-content; padding: 20px; } .framer-svBTa .framer-3resxa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 200px; justify-content: center; padding: 0px; width: 100%; } .framer-svBTa .framer-1blfc73 { height: 227px; left: unset; right: -29px; top: -25px; width: 188px; } .framer-svBTa .framer-112o9z3 { left: 51%; width: 90%; } .framer-svBTa .framer-1lk9uqo-container { left: calc(50.505050505050534% - 90% / 2); width: 90%; }}\",\"@media (min-width: 1200px) and (max-width: 1399px) { .framer-svBTa.framer-72rtr7 { width: 1200px; } .framer-svBTa .framer-eh32z0, .framer-svBTa .framer-azsalo, .framer-svBTa .framer-pa36s5, .framer-svBTa .framer-1l9al8b, .framer-svBTa .framer-1xn6xyt { max-width: 1000px; } .framer-svBTa.framer-jcdzsf-container { left: 1103px; top: 28px; } .framer-svBTa .framer-yz9c64 { height: var(--framer-aspect-ratio-supported, 384px); } .framer-svBTa .framer-2voz3g { order: 0; } .framer-svBTa .framer-y6gw8b { left: -150px; right: unset; } .framer-svBTa .framer-t1tfom { order: 1; } .framer-svBTa .framer-3sur8j { order: 2; } .framer-svBTa .framer-1kactmk { height: var(--framer-aspect-ratio-supported, 417px); width: 50%; } .framer-svBTa .framer-34ygxg { width: 89%; } .framer-svBTa .framer-z7or6z { gap: 13px; width: 100%; } .framer-svBTa .framer-yrxrz9 { align-self: unset; gap: 26px; width: 100%; } .framer-svBTa .framer-gn4k83 { height: auto; width: 117%; } .framer-svBTa .framer-1l2kv3z { align-self: unset; gap: 25px; width: 100%; } .framer-svBTa .framer-2nnp3s { height: auto; left: 54%; top: 50%; transform: translate(-50%, -50%); width: 109%; } .framer-svBTa .framer-14nfgc1 { left: calc(30.00000000000002% - 60.71428571428571% / 2); width: 61%; } .framer-svBTa .framer-15tn29g-container { height: 431px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8602\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"HwUkd60ZM\":{\"layout\":[\"fixed\",\"auto\"]},\"PpEYk4DC4\":{\"layout\":[\"fixed\",\"auto\"]},\"TV3p3h2Tu\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-svBTa\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8602,width:1400};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHPGVFYUXYXE33DZ75OIT4JFGHITX5PE/PSUTMASCDJTVPERDYJZPN23BVUFUCQIF/J64QX5IPOHK56I2KYUNBQ5M2XWZEYKYX.woff2\",weight:\"900\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...NavigationFonts,...HighlightEvent2Fonts,...Gallry_Hero1Fonts,...SlideshowFonts,...ButtonFonts,...VimeoFonts,...HeroFonts,...Card_servicesFonts,...Strategic_tileFonts,...CarouselFonts,...IconoirFonts,...Ticker_testimonialFonts,...TickerFonts,...TestFonts,...Test2Fonts,...Test3Fonts,...GallryIMG1Fonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HwUkd60ZM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PpEYk4DC4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TV3p3h2Tu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1400\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"8602\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "sync", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "VideoFonts", "getFonts", "Video", "HeroFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1tqrx9r", "args", "onMouseLeave9bya5f", "onTap1ntxbu4", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "css", "Framerb8Z7mhznH", "withCSS", "b8Z7mhznH_default", "addPropertyControls", "ControlType", "addFonts", "IconoirFonts", "getFonts", "Icon", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "toResponsiveImage", "value", "transition1", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "description", "height", "id", "image", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "nap7Mak5w", "m_0iHq4Sj", "zU0gvxmxo", "LiAD_G3WP", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "css", "FramerBJRkGEe70", "withCSS", "BJRkGEe70_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "lplj5623k", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "cx", "serializationHash", "css", "FramerehD6KCtvS", "withCSS", "ehD6KCtvS_default", "addPropertyControls", "ControlType", "addFonts", "VideoFonts", "getFonts", "Video", "HeroFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseLeave1mgw1sp", "args", "onTape50ieg", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "css", "FramerGMjUFyErP", "withCSS", "GMjUFyErP_default", "addPropertyControls", "ControlType", "addFonts", "VideoFonts", "getFonts", "Video", "HeroFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseLeave1t1oy2f", "args", "onTapmohsnl", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "css", "Framerin2sAWAxB", "withCSS", "in2sAWAxB_default", "addPropertyControls", "ControlType", "addFonts", "HeroFonts", "getFonts", "Icon", "IconoirFonts", "HeroControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "name1", "techDrivenWorkflow", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ziFAvQBtu", "Z4NeGXB7t", "G2DrCWNz0", "LtsVTOEXO", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "u", "ComponentViewportProvider", "RichText", "css", "FramerOT65yoXqA", "withCSS", "OT65yoXqA_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "vn71YcCc6", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "cx", "serializationHash", "css", "FrameruJVkY4gBH", "withCSS", "uJVkY4gBH_default", "addPropertyControls", "ControlType", "addFonts", "IconoirFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearw0dmko", "args", "onAppear7kp2r5", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerW7kSNdLiN", "withCSS", "W7kSNdLiN_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "name1", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "W7iAVExdN", "ZOda3Pb_W", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "RichText", "Image2", "getLoadingLazyAtYPosition", "css", "FramerZgerIGKyp", "withCSS", "ZgerIGKyp_default", "addPropertyControls", "ControlType", "addFonts", "NavigationFonts", "getFonts", "MFTZcFISM_default", "HighlightEvent2Fonts", "W7kSNdLiN_default", "Gallry_Hero1Fonts", "ehD6KCtvS_default", "SlideshowFonts", "Slideshow", "ButtonFonts", "MSYwkIw0b_default", "VimeoFonts", "Vimeo_default", "HeroFonts", "Icon", "Card_servicesFonts", "BJRkGEe70_default", "Strategic_tileFonts", "OT65yoXqA_default", "CarouselFonts", "Carousel", "IconoirFonts", "Ticker_testimonialFonts", "ZgerIGKyp_default", "TickerFonts", "Ticker", "TestFonts", "b8Z7mhznH_default", "Test2Fonts", "in2sAWAxB_default", "Test3Fonts", "GMjUFyErP_default", "GallryIMG1Fonts", "uJVkY4gBH_default", "FooterFonts", "blKyqLPSF_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transformTemplate1", "_", "t", "transformTemplate2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "onClick1wnntms", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "Image2", "Link", "RichText", "x", "ResolveLinks", "resolvedLinks", "l", "SVG", "AnimatePresence", "Ga", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
