{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/7Y2ft6FI3tjRFofWSIUg/5tWwYP6VhCqR34LetfNB/aL1M4pcFt.js", "ssg:https://framerusercontent.com/modules/nKEZQSY8bWegUHYiQ24q/v4drf3hN93uCPIJpKFyj/fbekXnNAc.js", "ssg:https://framerusercontent.com/modules/kGSjxMTRwoWF8jbTaufI/QngbUL8PDpZkuGxiTBl5/L8yk06JFc.js", "ssg:https://framerusercontent.com/modules/O4E22jGpGtiv0ELPOUWs/1Qqot42cKaL4vsmLvcBu/p325mtE1y.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/HwZ0IjKqL3GfE83nKk83/p9ocUitjdYNJSjtxJtRH/DaHaAJ8go.js", "ssg:https://framerusercontent.com/modules/tGJFXE4kgULBA9WNXzac/mESxpGLaCr12WqC60N38/WTlD6tMvM.js", "ssg:https://framerusercontent.com/modules/lS3Ddm8Ko2DPjcD5lLXl/I2LTwFXtfF0asglSDS57/UNR8ffawR.js", "ssg:https://framerusercontent.com/modules/d76gYr6GrxlGuj7tvW9n/5VoPxutHyIX6aUPLSPTw/ScrollToTopButton.js", "ssg:https://framerusercontent.com/modules/9TouY1uSeUDRIzjnYfCJ/bClWLFa0sKYfTJJwlMEx/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,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)`};/**\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 currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// 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[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;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;startTransition(()=>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)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"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.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.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){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]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* 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,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||!isInView?\"auto\":\"transform\",transform:transformer(0)},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\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (d407068)\nimport{jsx as _jsx}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\";const enabledGestures={l4RLHSA6V:{hover:true}};const cycleOrder=[\"l4RLHSA6V\",\"Mt0Mip0FK\"];const serializationHash=\"framer-fkPzn\";const variantClassNames={l4RLHSA6V:\"framer-v-13iksw3\",Mt0Mip0FK:\"framer-v-1gfu0n0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const 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={Image:\"l4RLHSA6V\",Text:\"Mt0Mip0FK\"};const getProps=({height,id,image,textBG,width,...props})=>{return{...props,HJYYGhJC3:textBG??props.HJYYGhJC3??\"rgb(218, 225, 25)\",shYZ8xZ6P:image??props.shYZ8xZ6P,variant:humanReadableVariantMap[props.variant]??props.variant??\"l4RLHSA6V\"};};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,shYZ8xZ6P,HJYYGhJC3,b4EsfMO6DwoijqL5Mw,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"l4RLHSA6V\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Mt0Mip0FK\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-13iksw3\",className,classNames),\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"l4RLHSA6V\",ref:ref??ref1,style:{...style},...addPropertyOverrides({\"l4RLHSA6V-hover\":{\"data-framer-name\":undefined},Mt0Mip0FK:{\"data-framer-name\":\"Text\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),sizes:(componentViewport?.height||40)-0,...toResponsiveImage(shYZ8xZ6P)},className:\"framer-4rceim\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"FKFFQcwvq\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99},variants:{\"l4RLHSA6V-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},Mt0Mip0FK:{backgroundColor:HJYYGhJC3}},...addPropertyOverrides({\"l4RLHSA6V-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-10),sizes:(componentViewport?.height||40)-0,...toResponsiveImage(shYZ8xZ6P)}},Mt0Mip0FK:{background:undefined}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-b4EsfMO6D-woijqL5Mw))\"},children:\"+1k\"})}),className:\"framer-1f7j4lv\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"Kg1ynTzIM\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-b4EsfMO6D-woijqL5Mw)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-b4EsfMO6D-woijqL5Mw\":b4EsfMO6DwoijqL5Mw},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fkPzn.framer-31hwom, .framer-fkPzn .framer-31hwom { display: block; }\",\".framer-fkPzn.framer-13iksw3 { cursor: pointer; height: 40px; overflow: visible; position: relative; width: 28px; }\",\".framer-fkPzn .framer-4rceim { aspect-ratio: 1 / 1; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 40px); z-index: 1; }\",\".framer-fkPzn .framer-1f7j4lv { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre; width: auto; z-index: 1; }\",\".framer-fkPzn.framer-v-1gfu0n0.framer-13iksw3 { cursor: unset; }\",\".framer-fkPzn.framer-v-13iksw3.hover .framer-4rceim { bottom: 10px; top: -10px; width: var(--framer-aspect-ratio-supported, 30px); }\",'.framer-fkPzn[data-border=\"true\"]::after, .framer-fkPzn [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 40\n * @framerIntrinsicWidth 28\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Mt0Mip0FK\":{\"layout\":[\"fixed\",\"fixed\"]},\"CXZuSKHYI\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"shYZ8xZ6P\":\"image\",\"HJYYGhJC3\":\"textBG\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraL1M4pcFt=withCSS(Component,css,\"framer-fkPzn\");export default FrameraL1M4pcFt;FrameraL1M4pcFt.displayName=\"Avatar\";FrameraL1M4pcFt.defaultProps={height:40,width:28};addPropertyControls(FrameraL1M4pcFt,{variant:{options:[\"l4RLHSA6V\",\"Mt0Mip0FK\"],optionTitles:[\"Image\",\"Text\"],title:\"Variant\",type:ControlType.Enum},shYZ8xZ6P:{title:\"Image\",type:ControlType.ResponsiveImage},HJYYGhJC3:{defaultValue:\"rgb(218, 225, 25)\",title:\"Text BG\",type:ControlType.Color}});addFonts(FrameraL1M4pcFt,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraL1M4pcFt\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Mt0Mip0FK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CXZuSKHYI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"shYZ8xZ6P\\\":\\\"image\\\",\\\"HJYYGhJC3\\\":\\\"textBG\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"28\",\"framerIntrinsicHeight\":\"40\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./aL1M4pcFt.map", "// Generated by Framer (d407068)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/eR1KFN87aVqXoZJlUKe9/DscAbzR1F15A46xNPXyR/lD51pbnhn.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/eWEeRFvxxYAjd00zQ6P2/DcPeZPzTRijGAKMZACp5/MOhTEatyY.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const serializationHash=\"framer-95w50\";const variantClassNames={gy_oO8UYx:\"framer-v-lcqkjb\"};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 getProps=({background,chooseIcon,featureDescription,height,iconVisibility,id,platformAgnostic,width,...props})=>{return{...props,AcK1FdgYt:iconVisibility??props.AcK1FdgYt??true,C61oJi4fb:background??props.C61oJi4fb??\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",enz2a1Khk:featureDescription??props.enz2a1Khk??\"Translingo is compatible with all conference platforms and video call apps.\",QCU9Jk4kB:platformAgnostic??props.QCU9Jk4kB??\"Platform Agnostic\",qJ7dCCiMu:chooseIcon??props.qJ7dCCiMu??\"Graph\"};};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,enz2a1Khk,QCU9Jk4kB,qJ7dCCiMu,C61oJi4fb,AcK1FdgYt,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"gy_oO8UYx\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-lcqkjb\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"gy_oO8UYx\",ref:ref??ref1,style:{backgroundColor:C61oJi4fb,borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},children:[AcK1FdgYt&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-18302xy\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"RFYw1p7eX\",style:{background:'linear-gradient(131deg, var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255)) /* {\"name\":\"Primary/Blue-500\"} */ 0%, hsl(221, 100%, 61%) 100%)',borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-46x2pq-container\",layoutDependency:layoutDependency,layoutId:\"h_j5BfPC4-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:qJ7dCCiMu,id:\"h_j5BfPC4\",layoutId:\"h_j5BfPC4\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17ramyl\",\"data-styles-preset\":\"lD51pbnhn\",children:\"Platform Agnostic\"})}),className:\"framer-18h7ur1\",\"data-framer-name\":\"Powered by AI\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"l_2qNSG0P\",style:{\"--framer-paragraph-spacing\":\"30px\"},text:QCU9Jk4kB,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116)))\"},children:\"Translingo is compatible with all conference platforms and video call apps.\"})}),className:\"framer-xpx9e8\",\"data-framer-name\":\"Provides powerful insights into your data, helping you make informed decisions.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"R5bacuWEX\",style:{\"--extracted-r6o4lv\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\",\"--framer-paragraph-spacing\":\"30px\"},text:enz2a1Khk,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-95w50.framer-ezmcaf, .framer-95w50 .framer-ezmcaf { display: block; }\",\".framer-95w50.framer-lcqkjb { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 20px 40px 20px; position: relative; width: 357px; }\",\".framer-95w50 .framer-18302xy { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 64px); justify-content: center; overflow: visible; padding: 2px 0px 0px 0px; position: relative; width: 64px; }\",\".framer-95w50 .framer-46x2pq-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); position: relative; width: 40px; }\",\".framer-95w50 .framer-18h7ur1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-95w50 .framer-xpx9e8 { 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-95w50.framer-lcqkjb, .framer-95w50 .framer-18302xy { gap: 0px; } .framer-95w50.framer-lcqkjb > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-95w50.framer-lcqkjb > :first-child { margin-top: 0px; } .framer-95w50.framer-lcqkjb > :last-child { margin-bottom: 0px; } .framer-95w50 .framer-18302xy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-95w50 .framer-18302xy > :first-child { margin-left: 0px; } .framer-95w50 .framer-18302xy > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 248\n * @framerIntrinsicWidth 357\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"enz2a1Khk\":\"featureDescription\",\"QCU9Jk4kB\":\"platformAgnostic\",\"qJ7dCCiMu\":\"chooseIcon\",\"C61oJi4fb\":\"background\",\"AcK1FdgYt\":\"iconVisibility\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfbekXnNAc=withCSS(Component,css,\"framer-95w50\");export default FramerfbekXnNAc;FramerfbekXnNAc.displayName=\"Feature Card\";FramerfbekXnNAc.defaultProps={height:248,width:357};addPropertyControls(FramerfbekXnNAc,{enz2a1Khk:{defaultValue:\"Translingo is compatible with all conference platforms and video call apps.\",displayTextArea:false,title:\"Feature Description\",type:ControlType.String},QCU9Jk4kB:{defaultValue:\"Platform Agnostic\",displayTextArea:false,title:\"Platform Agnostic\",type:ControlType.String},qJ7dCCiMu:PhosphorControls?.[\"iconSelection\"]&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Graph\",description:undefined,hidden:undefined,title:\"Choose Icon\"},C61oJi4fb:{defaultValue:'var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255)) /* {\"name\":\"UI/White\"} */',title:\"Background\",type:ControlType.Color},AcK1FdgYt:{defaultValue:true,title:\"Icon Visibility\",type:ControlType.Boolean}});addFonts(FramerfbekXnNAc,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfbekXnNAc\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"357\",\"framerVariables\":\"{\\\"enz2a1Khk\\\":\\\"featureDescription\\\",\\\"QCU9Jk4kB\\\":\\\"platformAgnostic\\\",\\\"qJ7dCCiMu\\\":\\\"chooseIcon\\\",\\\"C61oJi4fb\\\":\\\"background\\\",\\\"AcK1FdgYt\\\":\\\"iconVisibility\\\"}\",\"framerIntrinsicHeight\":\"248\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,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*as sharedStyle from\"https://framerusercontent.com/modules/bVag7cYxEaqJEqLbyjn1/WIto26tw0m3IIpntDz5h/KcUpCwhm3.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/eWEeRFvxxYAjd00zQ6P2/DcPeZPzTRijGAKMZACp5/MOhTEatyY.js\";import Buttons from\"https://framerusercontent.com/modules/uKtOdaMlCUO9fEV51LMa/B7ZV38BYVWjdAnXBe3Hh/yORaTwldW.js\";const ButtonsFonts=getFonts(Buttons);const cycleOrder=[\"vlKoatX9W\",\"Lc1zdY1RM\",\"pRL4OWPK5\",\"M2SieRvQ3\",\"IX9Nedfcw\",\"GL12cUzwk\"];const serializationHash=\"framer-vMN5D\";const variantClassNames={GL12cUzwk:\"framer-v-uzhded\",IX9Nedfcw:\"framer-v-ruwn1m\",Lc1zdY1RM:\"framer-v-65viju\",M2SieRvQ3:\"framer-v-8nbt9t\",pRL4OWPK5:\"framer-v-w1ex6w\",vlKoatX9W:\"framer-v-xixe74\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const 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={\"Left to Right \u2013 Phone\":\"pRL4OWPK5\",\"Left to Right \u2013 Tablet\":\"Lc1zdY1RM\",\"Left to Right\":\"vlKoatX9W\",\"Right to Left \u2013 Mobile\":\"GL12cUzwk\",\"Right to Left \u2013 Tablet\":\"IX9Nedfcw\",\"Right to Left\":\"M2SieRvQ3\"};const getProps=({description,height,id,title,visual,width,...props})=>{return{...props,MyzOwQ53a:description??props.MyzOwQ53a??\"Make your international conferences, seminars, and events truly global. Our web-app offers real-time voice translation, allowing participants from different countries to engage fully, breaking down language barriers and fostering a more inclusive experience.\",NacojSf_1:visual??props.NacojSf_1,Pn08AubqI:title??props.Pn08AubqI??\"International Conferences & Events\",variant:humanReadableVariantMap[props.variant]??props.variant??\"vlKoatX9W\"};};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,NacojSf_1,Pn08AubqI,MyzOwQ53a,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vlKoatX9W\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"M2SieRvQ3\",\"IX9Nedfcw\",\"GL12cUzwk\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"M2SieRvQ3\",\"IX9Nedfcw\",\"GL12cUzwk\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.section,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-xixe74\",className,classNames),\"data-framer-name\":\"Left to Right\",layoutDependency:layoutDependency,layoutId:\"vlKoatX9W\",ref:refBinding,style:{backgroundColor:\"var(--token-607f4dd0-6262-4d67-8ce1-e151d2b2ec1d, rgb(250, 252, 255))\",...style},...addPropertyOverrides({GL12cUzwk:{\"data-framer-name\":\"Right to Left \u2013 Mobile\"},IX9Nedfcw:{\"data-framer-name\":\"Right to Left \u2013 Tablet\"},Lc1zdY1RM:{\"data-framer-name\":\"Left to Right \u2013 Tablet\"},M2SieRvQ3:{\"data-framer-name\":\"Right to Left\"},pRL4OWPK5:{\"data-framer-name\":\"Left to Right \u2013 Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x9grgl\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"uc2gnrLEo\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bebtej\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"GBq2DQGI6\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pklv9g\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"khO7MjFru\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-edp5sw\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"s8tj05WOk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-144ivnp\",\"data-styles-preset\":\"KcUpCwhm3\",children:\"International Conferences & Events\"})}),className:\"framer-1jlppfv\",\"data-framer-name\":\"Analyze active visit\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"grSuiYmZa\",text:Pn08AubqI,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",children:\"Make your international conferences, seminars, and events truly global. Our web-app offers real-time voice translation, allowing participants from different countries to engage fully, breaking down language barriers and fostering a more inclusive experience.\"})}),className:\"framer-1ig681w\",\"data-framer-name\":\"Podcasting operation\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MYqV9FdQ_\",style:{\"--framer-paragraph-spacing\":\"30px\"},text:MyzOwQ53a,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+(80+((componentViewport?.height||520)-160-360)/2)+56.3+0+198.4,...addPropertyOverrides({GL12cUzwk:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1180px)`,y:(componentViewport?.y||0)+(40+((componentViewport?.height||696)-70-565.4)/2)+0+0+0+206.4},IX9Nedfcw:{y:(componentViewport?.y||0)+(60+((componentViewport?.height||801)-100-735.4)/2)+0+0+0+206.4},Lc1zdY1RM:{y:(componentViewport?.y||0)+(60+((componentViewport?.height||766)-100-627.4)/2)+0+0+0+198.4},pRL4OWPK5:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1180px)`,y:(componentViewport?.y||0)+(40+((componentViewport?.height||661.5)-60-540.9)/2)+0+0+0+198.4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-upx5en-container\",layoutDependency:layoutDependency,layoutId:\"UbOULf6u4-container\",nodeId:\"UbOULf6u4\",rendersWithMotion:true,scopeId:\"L8yk06JFc\",children:/*#__PURE__*/_jsx(Buttons,{bOwGuieUn:\"ArrowUpRight\",height:\"100%\",id:\"UbOULf6u4\",layoutId:\"UbOULf6u4\",variant:\"JiPCvmJb6\",vjZWklrqI:\"https://tally.so/r/mVDX1J\",width:\"100%\",xEfGs_njT:\"Book a Demo\",...addPropertyOverrides({GL12cUzwk:{style:{width:\"100%\"}},M2SieRvQ3:{vjZWklrqI:\"app.translingo.cc/demo\"},pRL4OWPK5:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(80+((componentViewport?.height||520)-160-360)/2)+0),sizes:\"520px\",...toResponsiveImage(NacojSf_1),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1kabc94\",\"data-framer-name\":\"Visual\",layoutDependency:layoutDependency,layoutId:\"aMtH575i8\",style:{filter:\"drop-shadow(0px 1px 1px rgba(0,0,0,0.25))\",WebkitFilter:\"drop-shadow(0px 1px 1px rgba(0,0,0,0.25))\"},...addPropertyOverrides({Lc1zdY1RM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(60+((componentViewport?.height||766)-100-627.4)/2)+0+287.4),sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1180px)`,...toResponsiveImage(NacojSf_1),...{positionX:\"center\",positionY:\"center\"}}},pRL4OWPK5:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(40+((componentViewport?.height||661.5)-60-540.9)/2)+0+287.4),sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1180px)`,...toResponsiveImage(NacojSf_1),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",...toResponsiveImage(NacojSf_1),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-vhsmgm\",\"data-framer-name\":\"Visual\",layoutDependency:layoutDependency,layoutId:\"Sbl91mLPV\",...addPropertyOverrides({GL12cUzwk:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(40+((componentViewport?.height||696)-70-565.4)/2)+0+315.4),sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1180px)`,...toResponsiveImage(NacojSf_1),...{positionX:\"center\",positionY:\"center\"}}},IX9Nedfcw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(60+((componentViewport?.height||801)-100-735.4)/2)+0+315.4),sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1180px)`,...toResponsiveImage(NacojSf_1),...{positionX:\"center\",positionY:\"center\"}}},M2SieRvQ3:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(80+((componentViewport?.height||520)-160-360)/2)+0),sizes:\"520px\",...toResponsiveImage(NacojSf_1),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vMN5D.framer-itlfxj, .framer-vMN5D .framer-itlfxj { display: block; }\",\".framer-vMN5D.framer-xixe74 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 110px; height: min-content; justify-content: center; overflow: visible; padding: 80px 60px 80px 60px; position: relative; width: 1280px; }\",\".framer-vMN5D .framer-1x9grgl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1180px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vMN5D .framer-bebtej { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.9 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-vMN5D .framer-pklv9g, .framer-vMN5D .framer-edp5sw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vMN5D .framer-1jlppfv, .framer-vMN5D .framer-1ig681w { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-vMN5D .framer-upx5en-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-vMN5D .framer-1kabc94 { aspect-ratio: 1.4444444444444444 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 360px); position: relative; width: 520px; }\",\".framer-vMN5D .framer-vhsmgm { aspect-ratio: 1.4285714285714286 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 140px); position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vMN5D.framer-xixe74, .framer-vMN5D .framer-bebtej, .framer-vMN5D .framer-pklv9g, .framer-vMN5D .framer-edp5sw { gap: 0px; } .framer-vMN5D.framer-xixe74 > * { margin: 0px; margin-left: calc(110px / 2); margin-right: calc(110px / 2); } .framer-vMN5D.framer-xixe74 > :first-child { margin-left: 0px; } .framer-vMN5D.framer-xixe74 > :last-child { margin-right: 0px; } .framer-vMN5D .framer-bebtej > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-vMN5D .framer-bebtej > :first-child, .framer-vMN5D .framer-pklv9g > :first-child, .framer-vMN5D .framer-edp5sw > :first-child { margin-top: 0px; } .framer-vMN5D .framer-bebtej > :last-child, .framer-vMN5D .framer-pklv9g > :last-child, .framer-vMN5D .framer-edp5sw > :last-child { margin-bottom: 0px; } .framer-vMN5D .framer-pklv9g > *, .framer-vMN5D .framer-edp5sw > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-vMN5D.framer-v-65viju.framer-xixe74, .framer-vMN5D.framer-v-ruwn1m.framer-xixe74 { padding: 60px 40px 40px 40px; width: 576px; }\",\".framer-vMN5D.framer-v-65viju .framer-1x9grgl, .framer-vMN5D.framer-v-w1ex6w .framer-1x9grgl { flex: 1 0 0px; flex-direction: column; gap: 40px; justify-content: center; width: 1px; }\",\".framer-vMN5D.framer-v-65viju .framer-bebtej, .framer-vMN5D.framer-v-w1ex6w .framer-bebtej { flex: none; width: 100%; }\",\".framer-vMN5D.framer-v-65viju .framer-1kabc94 { aspect-ratio: 1.4588235294117646 / 1; height: var(--framer-aspect-ratio-supported, 340px); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vMN5D.framer-v-65viju .framer-1x9grgl { gap: 0px; } .framer-vMN5D.framer-v-65viju .framer-1x9grgl > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-vMN5D.framer-v-65viju .framer-1x9grgl > :first-child { margin-top: 0px; } .framer-vMN5D.framer-v-65viju .framer-1x9grgl > :last-child { margin-bottom: 0px; } }\",\".framer-vMN5D.framer-v-w1ex6w.framer-xixe74 { padding: 40px 20px 20px 20px; width: 400px; }\",\".framer-vMN5D.framer-v-w1ex6w .framer-upx5en-container, .framer-vMN5D.framer-v-uzhded .framer-upx5en-container { width: 100%; }\",\".framer-vMN5D.framer-v-w1ex6w .framer-1kabc94 { aspect-ratio: unset; height: 254px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vMN5D.framer-v-w1ex6w .framer-1x9grgl { gap: 0px; } .framer-vMN5D.framer-v-w1ex6w .framer-1x9grgl > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-vMN5D.framer-v-w1ex6w .framer-1x9grgl > :first-child { margin-top: 0px; } .framer-vMN5D.framer-v-w1ex6w .framer-1x9grgl > :last-child { margin-bottom: 0px; } }\",\".framer-vMN5D.framer-v-8nbt9t .framer-1x9grgl { flex: 1 0 0px; gap: 80px; justify-content: flex-start; width: 1px; }\",\".framer-vMN5D.framer-v-8nbt9t .framer-bebtej { flex: 1 0 0px; order: 1; }\",\".framer-vMN5D.framer-v-8nbt9t .framer-vhsmgm { aspect-ratio: 1.4444444444444444 / 1; flex: none; height: 360px; order: 0; width: var(--framer-aspect-ratio-supported, 520px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vMN5D.framer-v-8nbt9t .framer-1x9grgl { gap: 0px; } .framer-vMN5D.framer-v-8nbt9t .framer-1x9grgl > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-vMN5D.framer-v-8nbt9t .framer-1x9grgl > :first-child { margin-left: 0px; } .framer-vMN5D.framer-v-8nbt9t .framer-1x9grgl > :last-child { margin-right: 0px; } }\",\".framer-vMN5D.framer-v-ruwn1m .framer-1x9grgl, .framer-vMN5D.framer-v-uzhded .framer-1x9grgl { align-content: flex-start; align-items: flex-start; flex: 1 0 0px; flex-direction: column; gap: 60px; justify-content: flex-start; width: 1px; }\",\".framer-vMN5D.framer-v-ruwn1m .framer-bebtej, .framer-vMN5D.framer-v-uzhded .framer-bebtej { flex: none; order: 0; width: 100%; }\",\".framer-vMN5D.framer-v-ruwn1m .framer-edp5sw, .framer-vMN5D.framer-v-uzhded .framer-edp5sw { gap: 24px; }\",\".framer-vMN5D.framer-v-ruwn1m .framer-vhsmgm { flex: none; height: var(--framer-aspect-ratio-supported, 347px); order: 1; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vMN5D.framer-v-ruwn1m .framer-1x9grgl, .framer-vMN5D.framer-v-ruwn1m .framer-edp5sw { gap: 0px; } .framer-vMN5D.framer-v-ruwn1m .framer-1x9grgl > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-vMN5D.framer-v-ruwn1m .framer-1x9grgl > :first-child, .framer-vMN5D.framer-v-ruwn1m .framer-edp5sw > :first-child { margin-top: 0px; } .framer-vMN5D.framer-v-ruwn1m .framer-1x9grgl > :last-child, .framer-vMN5D.framer-v-ruwn1m .framer-edp5sw > :last-child { margin-bottom: 0px; } .framer-vMN5D.framer-v-ruwn1m .framer-edp5sw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-vMN5D.framer-v-uzhded.framer-xixe74 { padding: 40px 20px 30px 20px; width: 400px; }\",\".framer-vMN5D.framer-v-uzhded .framer-vhsmgm { aspect-ratio: 1.44 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 250px); order: 1; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vMN5D.framer-v-uzhded .framer-1x9grgl, .framer-vMN5D.framer-v-uzhded .framer-edp5sw { gap: 0px; } .framer-vMN5D.framer-v-uzhded .framer-1x9grgl > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-vMN5D.framer-v-uzhded .framer-1x9grgl > :first-child, .framer-vMN5D.framer-v-uzhded .framer-edp5sw > :first-child { margin-top: 0px; } .framer-vMN5D.framer-v-uzhded .framer-1x9grgl > :last-child, .framer-vMN5D.framer-v-uzhded .framer-edp5sw > :last-child { margin-bottom: 0px; } .framer-vMN5D.framer-v-uzhded .framer-edp5sw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 520\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Lc1zdY1RM\":{\"layout\":[\"fixed\",\"auto\"]},\"pRL4OWPK5\":{\"layout\":[\"fixed\",\"auto\"]},\"M2SieRvQ3\":{\"layout\":[\"fixed\",\"auto\"]},\"IX9Nedfcw\":{\"layout\":[\"fixed\",\"auto\"]},\"GL12cUzwk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"NacojSf_1\":\"visual\",\"Pn08AubqI\":\"title\",\"MyzOwQ53a\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerL8yk06JFc=withCSS(Component,css,\"framer-vMN5D\");export default FramerL8yk06JFc;FramerL8yk06JFc.displayName=\"Feature Section\";FramerL8yk06JFc.defaultProps={height:520,width:1280};addPropertyControls(FramerL8yk06JFc,{variant:{options:[\"vlKoatX9W\",\"Lc1zdY1RM\",\"pRL4OWPK5\",\"M2SieRvQ3\",\"IX9Nedfcw\",\"GL12cUzwk\"],optionTitles:[\"Left to Right\",\"Left to Right \u2013 Tablet\",\"Left to Right \u2013 Phone\",\"Right to Left\",\"Right to Left \u2013 Tablet\",\"Right to Left \u2013 Mobile\"],title:\"Variant\",type:ControlType.Enum},NacojSf_1:{title:\"Visual\",type:ControlType.ResponsiveImage},Pn08AubqI:{defaultValue:\"International Conferences & Events\",description:\"\",displayTextArea:false,title:\"Title\",type:ControlType.String},MyzOwQ53a:{defaultValue:\"Make your international conferences, seminars, and events truly global. Our web-app offers real-time voice translation, allowing participants from different countries to engage fully, breaking down language barriers and fostering a more inclusive experience.\",description:\"\",displayTextArea:false,placeholder:\"\",title:\"Description\",type:ControlType.String}});addFonts(FramerL8yk06JFc,[{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\"}]},...ButtonsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerL8yk06JFc\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"NacojSf_1\\\":\\\"visual\\\",\\\"Pn08AubqI\\\":\\\"title\\\",\\\"MyzOwQ53a\\\":\\\"description\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Lc1zdY1RM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pRL4OWPK5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"M2SieRvQ3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IX9Nedfcw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GL12cUzwk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"520\",\"framerIntrinsicWidth\":\"1280\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./L8yk06JFc.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/xstQ7RXT4cJaAi7dy4E2/LsUaxj87NVQzrW8CW5qY/Nvghb4gXm.js\";const cycleOrder=[\"AVFjxaLyv\",\"jIubLQijU\",\"fBlu_A0VS\"];const serializationHash=\"framer-iSLot\";const variantClassNames={AVFjxaLyv:\"framer-v-d82l93\",fBlu_A0VS:\"framer-v-vizayz\",jIubLQijU:\"framer-v-1b4pwke\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,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={\"home update/desktop\":\"AVFjxaLyv\",\"home update/phone\":\"fBlu_A0VS\",\"home update/tablet\":\"jIubLQijU\"};const getProps=({click,click2,click3,height,id,width,...props})=>{return{...props,C6ETCnAwt:click3??props.C6ETCnAwt,m5lAfPjzm:click2??props.m5lAfPjzm,Rt2Xq2uAK:click??props.Rt2Xq2uAK,variant:humanReadableVariantMap[props.variant]??props.variant??\"AVFjxaLyv\"};};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,Rt2Xq2uAK,m5lAfPjzm,C6ETCnAwt,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"AVFjxaLyv\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1jclcdn=activeVariantCallback(async(...args)=>{if(Rt2Xq2uAK){const res=await Rt2Xq2uAK(...args);if(res===false)return false;}});const onTapuudjza=activeVariantCallback(async(...args)=>{if(m5lAfPjzm){const res=await m5lAfPjzm(...args);if(res===false)return false;}});const onTap16jlu7v=activeVariantCallback(async(...args)=>{if(C6ETCnAwt){const res=await C6ETCnAwt(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"jIubLQijU\",\"fBlu_A0VS\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"jIubLQijU\",\"fBlu_A0VS\"].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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-d82l93\",className,classNames),\"data-framer-name\":\"home update/desktop\",layoutDependency:layoutDependency,layoutId:\"AVFjxaLyv\",ref:refBinding,style:{...style},...addPropertyOverrides({fBlu_A0VS:{\"data-framer-name\":\"home update/phone\"},jIubLQijU:{\"data-framer-name\":\"home update/tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-117axbv\",layoutDependency:layoutDependency,layoutId:\"XqDY6IBLs\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9f4os1\",layoutDependency:layoutDependency,layoutId:\"w3qB377xY\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wk45xz\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"tDwX7JWiZ\",onTap:onTap1jclcdn,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||620)-0-560)/2+0+0)+0+0+0+0+0),pixelHeight:386,pixelWidth:686,sizes:`max((${componentViewport?.width||\"100vw\"} - 32px) / 2, 1px)`,src:\"https://framerusercontent.com/images/9aECij92zCrxBSZDg6n2W7dVXI.png\",srcSet:\"https://framerusercontent.com/images/9aECij92zCrxBSZDg6n2W7dVXI.png?scale-down-to=512 512w,https://framerusercontent.com/images/9aECij92zCrxBSZDg6n2W7dVXI.png 686w\"},className:\"framer-x82ow0\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"nLBaI16Rc\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({fBlu_A0VS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||876)-0-876)/2+0+0)+0+0+0+0+0+0),pixelHeight:386,pixelWidth:686,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/9aECij92zCrxBSZDg6n2W7dVXI.png\",srcSet:\"https://framerusercontent.com/images/9aECij92zCrxBSZDg6n2W7dVXI.png?scale-down-to=512 512w,https://framerusercontent.com/images/9aECij92zCrxBSZDg6n2W7dVXI.png 686w\"}},jIubLQijU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||394)-0-304)/2+0+0)+0+0+0+0+0),pixelHeight:386,pixelWidth:686,sizes:`max((${componentViewport?.width||\"100vw\"} - 64px) / 3, 1px)`,src:\"https://framerusercontent.com/images/9aECij92zCrxBSZDg6n2W7dVXI.png\",srcSet:\"https://framerusercontent.com/images/9aECij92zCrxBSZDg6n2W7dVXI.png?scale-down-to=512 512w,https://framerusercontent.com/images/9aECij92zCrxBSZDg6n2W7dVXI.png 686w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-48atgk\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"OpSmpsb1d\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-rbqe3y\",\"data-styles-preset\":\"Nvghb4gXm\",children:\"PM Modi Delivers a Groundbreaking Address at AI Action Summit 2025 | Modi In France | AI Summit\"})}),className:\"framer-1gdhruz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qKjuqNoBz\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13bdu99\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"aKAddmmnq\",onTap:onTapuudjza,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||620)-0-560)/2+0+0)+0+0+0+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 32px) / 2, 1px)`,src:\"https://framerusercontent.com/images/FpQlh005VgobLJNFgtI7m6mDP0.png\",srcSet:\"https://framerusercontent.com/images/FpQlh005VgobLJNFgtI7m6mDP0.png?scale-down-to=512 512w,https://framerusercontent.com/images/FpQlh005VgobLJNFgtI7m6mDP0.png 686w\"},className:\"framer-jils3c\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Q2UCsMwVd\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({fBlu_A0VS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||876)-0-876)/2+0+0)+0+0+0+286+0+0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/FpQlh005VgobLJNFgtI7m6mDP0.png\",srcSet:\"https://framerusercontent.com/images/FpQlh005VgobLJNFgtI7m6mDP0.png?scale-down-to=512 512w,https://framerusercontent.com/images/FpQlh005VgobLJNFgtI7m6mDP0.png 686w\"}},jIubLQijU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||394)-0-304)/2+0+0)+0+0+0+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 64px) / 3, 1px)`,src:\"https://framerusercontent.com/images/FpQlh005VgobLJNFgtI7m6mDP0.png\",srcSet:\"https://framerusercontent.com/images/FpQlh005VgobLJNFgtI7m6mDP0.png?scale-down-to=512 512w,https://framerusercontent.com/images/FpQlh005VgobLJNFgtI7m6mDP0.png 686w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kc8tr5\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"vabeEFwTU\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-rbqe3y\",\"data-styles-preset\":\"Nvghb4gXm\",children:\"VP JD Vance on the future of artificial intelligence\"})}),className:\"framer-1p1c8wn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yPClH0yDW\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qbgr6y\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"dRr5hZWod\",onTap:onTap16jlu7v,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:363,pixelWidth:640,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qj0N8PDQmDGvqHVmTORzYQ4ApSo.png\"},className:\"framer-xye7wo\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"BwMk1jmn0\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({fBlu_A0VS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||876)-0-876)/2+0+0)+0+0+0+572+0+0),pixelHeight:363,pixelWidth:640,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qj0N8PDQmDGvqHVmTORzYQ4ApSo.png\"}},jIubLQijU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||394)-0-304)/2+0+0)+0+0+0+0+0),pixelHeight:363,pixelWidth:640,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qj0N8PDQmDGvqHVmTORzYQ4ApSo.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-j6l5l2\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"JtK7xmLvq\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-rbqe3y\",\"data-styles-preset\":\"Nvghb4gXm\",children:\"AI Action Summit in Paris | Ursula von der Leyen\"})}),className:\"framer-1l35vr1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"q2cRUYO4F\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-glmodo\",layoutDependency:layoutDependency,layoutId:\"Mg6kGvKRi\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18icafp\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"TapyOrM0r\",onTap:onTap16jlu7v,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||620)-0-560)/2+0+0)+0+286+0+0+0),pixelHeight:363,pixelWidth:640,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qj0N8PDQmDGvqHVmTORzYQ4ApSo.png\"},className:\"framer-14rqb2q\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"hEMiiO7Wi\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t2tmfi\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"UWuFZlXIk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-rbqe3y\",\"data-styles-preset\":\"Nvghb4gXm\",children:\"AI Action Summit in Paris | Ursula von der Leyen\"})}),className:\"framer-1rvh9ac\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"J6FNhrukp\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-np3p86\",layoutDependency:layoutDependency,layoutId:\"T1YsznNBO\",style:{opacity:0},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||620)-0-560)/2+0+0)+0+286+0+0+0),pixelHeight:386,pixelWidth:686,sizes:`max(${componentViewport?.width||\"100vw\"} * 0.5138 - 32px, 1px)`,src:\"https://framerusercontent.com/images/9aECij92zCrxBSZDg6n2W7dVXI.png\",srcSet:\"https://framerusercontent.com/images/9aECij92zCrxBSZDg6n2W7dVXI.png?scale-down-to=512 512w,https://framerusercontent.com/images/9aECij92zCrxBSZDg6n2W7dVXI.png 686w\"},className:\"framer-94xjs2\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"pEAHZQFFK\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x9ba1s\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"bLnFSijWP\"})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iSLot.framer-2x8ll6, .framer-iSLot .framer-2x8ll6 { display: block; }\",\".framer-iSLot.framer-d82l93 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1160px; }\",\".framer-iSLot .framer-117axbv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-iSLot .framer-9f4os1, .framer-iSLot .framer-glmodo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-iSLot .framer-1wk45xz, .framer-iSLot .framer-13bdu99, .framer-iSLot .framer-1qbgr6y { align-content: center; align-items: center; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-iSLot .framer-x82ow0, .framer-iSLot .framer-jils3c, .framer-iSLot .framer-14rqb2q { flex: none; height: 200px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-iSLot .framer-48atgk, .framer-iSLot .framer-kc8tr5, .framer-iSLot .framer-j6l5l2, .framer-iSLot .framer-1t2tmfi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-iSLot .framer-1gdhruz, .framer-iSLot .framer-1p1c8wn, .framer-iSLot .framer-1l35vr1, .framer-iSLot .framer-1rvh9ac { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iSLot .framer-xye7wo, .framer-iSLot .framer-94xjs2 { flex: none; height: 250px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-iSLot .framer-18icafp { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 49%; }\",\".framer-iSLot .framer-np3p86 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-iSLot .framer-1x9ba1s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; min-height: 30px; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iSLot.framer-d82l93, .framer-iSLot .framer-117axbv, .framer-iSLot .framer-9f4os1, .framer-iSLot .framer-1wk45xz, .framer-iSLot .framer-48atgk, .framer-iSLot .framer-13bdu99, .framer-iSLot .framer-kc8tr5, .framer-iSLot .framer-1qbgr6y, .framer-iSLot .framer-j6l5l2, .framer-iSLot .framer-glmodo, .framer-iSLot .framer-18icafp, .framer-iSLot .framer-1t2tmfi, .framer-iSLot .framer-np3p86, .framer-iSLot .framer-1x9ba1s { gap: 0px; } .framer-iSLot.framer-d82l93 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-iSLot.framer-d82l93 > :first-child, .framer-iSLot .framer-117axbv > :first-child, .framer-iSLot .framer-1wk45xz > :first-child, .framer-iSLot .framer-48atgk > :first-child, .framer-iSLot .framer-13bdu99 > :first-child, .framer-iSLot .framer-kc8tr5 > :first-child, .framer-iSLot .framer-1qbgr6y > :first-child, .framer-iSLot .framer-j6l5l2 > :first-child, .framer-iSLot .framer-18icafp > :first-child, .framer-iSLot .framer-1t2tmfi > :first-child, .framer-iSLot .framer-np3p86 > :first-child, .framer-iSLot .framer-1x9ba1s > :first-child { margin-top: 0px; } .framer-iSLot.framer-d82l93 > :last-child, .framer-iSLot .framer-117axbv > :last-child, .framer-iSLot .framer-1wk45xz > :last-child, .framer-iSLot .framer-48atgk > :last-child, .framer-iSLot .framer-13bdu99 > :last-child, .framer-iSLot .framer-kc8tr5 > :last-child, .framer-iSLot .framer-1qbgr6y > :last-child, .framer-iSLot .framer-j6l5l2 > :last-child, .framer-iSLot .framer-18icafp > :last-child, .framer-iSLot .framer-1t2tmfi > :last-child, .framer-iSLot .framer-np3p86 > :last-child, .framer-iSLot .framer-1x9ba1s > :last-child { margin-bottom: 0px; } .framer-iSLot .framer-117axbv > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-iSLot .framer-9f4os1 > *, .framer-iSLot .framer-glmodo > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-iSLot .framer-9f4os1 > :first-child, .framer-iSLot .framer-glmodo > :first-child { margin-left: 0px; } .framer-iSLot .framer-9f4os1 > :last-child, .framer-iSLot .framer-glmodo > :last-child { margin-right: 0px; } .framer-iSLot .framer-1wk45xz > *, .framer-iSLot .framer-13bdu99 > *, .framer-iSLot .framer-1qbgr6y > *, .framer-iSLot .framer-18icafp > *, .framer-iSLot .framer-np3p86 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-iSLot .framer-48atgk > *, .framer-iSLot .framer-kc8tr5 > *, .framer-iSLot .framer-j6l5l2 > *, .framer-iSLot .framer-1t2tmfi > *, .framer-iSLot .framer-1x9ba1s > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-iSLot.framer-v-1b4pwke .framer-x82ow0, .framer-iSLot.framer-v-1b4pwke .framer-jils3c { height: 250px; }\",\".framer-iSLot.framer-v-vizayz .framer-9f4os1 { flex-direction: column; }\",\".framer-iSLot.framer-v-vizayz .framer-1wk45xz, .framer-iSLot.framer-v-vizayz .framer-13bdu99, .framer-iSLot.framer-v-vizayz .framer-1qbgr6y { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iSLot.framer-v-vizayz .framer-9f4os1 { gap: 0px; } .framer-iSLot.framer-v-vizayz .framer-9f4os1 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-iSLot.framer-v-vizayz .framer-9f4os1 > :first-child { margin-top: 0px; } .framer-iSLot.framer-v-vizayz .framer-9f4os1 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 620\n * @framerIntrinsicWidth 1160\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jIubLQijU\":{\"layout\":[\"fixed\",\"auto\"]},\"fBlu_A0VS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Rt2Xq2uAK\":\"click\",\"m5lAfPjzm\":\"click2\",\"C6ETCnAwt\":\"click3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerp325mtE1y=withCSS(Component,css,\"framer-iSLot\");export default Framerp325mtE1y;Framerp325mtE1y.displayName=\"Homepage uploaded\";Framerp325mtE1y.defaultProps={height:620,width:1160};addPropertyControls(Framerp325mtE1y,{variant:{options:[\"AVFjxaLyv\",\"jIubLQijU\",\"fBlu_A0VS\"],optionTitles:[\"home update/desktop\",\"home update/tablet\",\"home update/phone\"],title:\"Variant\",type:ControlType.Enum},Rt2Xq2uAK:{title:\"Click\",type:ControlType.EventHandler},m5lAfPjzm:{title:\"Click 2\",type:ControlType.EventHandler},C6ETCnAwt:{title:\"Click 3\",type:ControlType.EventHandler}});addFonts(Framerp325mtE1y,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerp325mtE1y\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1160\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"Rt2Xq2uAK\\\":\\\"click\\\",\\\"m5lAfPjzm\\\":\\\"click2\\\",\\\"C6ETCnAwt\\\":\\\"click3\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jIubLQijU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fBlu_A0VS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"620\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./p325mtE1y.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/zfbTEIZE0us4TTua7RKC/uiY7cvd90KaXNfo8KsBn/tmzBJW82u.js\";const cycleOrder=[\"vYcIGLoDg\",\"Qu2x_Rz0E\",\"wLpNmPO5a\",\"lOby0IBl8\"];const serializationHash=\"framer-3DHVX\";const variantClassNames={lOby0IBl8:\"framer-v-u0aa40\",Qu2x_Rz0E:\"framer-v-12gm5em\",vYcIGLoDg:\"framer-v-14goqwy\",wLpNmPO5a:\"framer-v-11envwx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,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={\"tablet/click/translation\":\"wLpNmPO5a\",\"tablet/default/translation\":\"lOby0IBl8\",click:\"vYcIGLoDg\",default:\"Qu2x_Rz0E\"};const getProps=({click,height,id,width,...props})=>{return{...props,FERAIDNeL:click??props.FERAIDNeL,variant:humanReadableVariantMap[props.variant]??props.variant??\"vYcIGLoDg\"};};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,FERAIDNeL,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vYcIGLoDg\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap4eoli8=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(FERAIDNeL){const res=await FERAIDNeL(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"wLpNmPO5a\",\"lOby0IBl8\"].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-14goqwy\",className,classNames),\"data-framer-name\":\"click\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vYcIGLoDg\",onTap:onTap4eoli8,ref:refBinding,style:{...style},...addPropertyOverrides({lOby0IBl8:{\"data-framer-name\":\"tablet/default/translation\"},Qu2x_Rz0E:{\"data-framer-name\":\"default\"},wLpNmPO5a:{\"data-framer-name\":\"tablet/click/translation\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3vmsnd\",\"data-styles-preset\":\"tmzBJW82u\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255)))\"},children:\"Translation\"})}),className:\"framer-l8entv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pCrK8TqJ4\",style:{\"--extracted-r6o4lv\":\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{lOby0IBl8:{\"--extracted-r6o4lv\":\"var(--token-1b3e504c-d305-4876-8e2c-5dc8f71ef80f, rgb(185, 190, 209))\"},Qu2x_Rz0E:{\"--extracted-r6o4lv\":\"var(--token-1b3e504c-d305-4876-8e2c-5dc8f71ef80f, rgb(185, 190, 209))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({lOby0IBl8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3vmsnd\",\"data-styles-preset\":\"tmzBJW82u\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3e504c-d305-4876-8e2c-5dc8f71ef80f, rgb(185, 190, 209)))\"},children:\"Translation\"})})},Qu2x_Rz0E:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3vmsnd\",\"data-styles-preset\":\"tmzBJW82u\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3e504c-d305-4876-8e2c-5dc8f71ef80f, rgb(185, 190, 209)))\"},children:\"Translation\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cphgxu\",layoutDependency:layoutDependency,layoutId:\"f9ZaqYcXW\",style:{backgroundColor:\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\"},variants:{Qu2x_Rz0E:{backgroundColor:\"rgba(0, 0, 0, 0)\"}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3DHVX.framer-15vpf5m, .framer-3DHVX .framer-15vpf5m { display: block; }\",\".framer-3DHVX.framer-14goqwy { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 460px; }\",\".framer-3DHVX .framer-l8entv { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-3DHVX .framer-1cphgxu { flex: none; height: 2px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3DHVX.framer-14goqwy { gap: 0px; } .framer-3DHVX.framer-14goqwy > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-3DHVX.framer-14goqwy > :first-child { margin-top: 0px; } .framer-3DHVX.framer-14goqwy > :last-child { margin-bottom: 0px; } }\",\".framer-3DHVX.framer-v-11envwx.framer-14goqwy, .framer-3DHVX.framer-v-u0aa40.framer-14goqwy { align-content: flex-start; align-items: flex-start; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 28.5\n * @framerIntrinsicWidth 460\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Qu2x_Rz0E\":{\"layout\":[\"fixed\",\"auto\"]},\"wLpNmPO5a\":{\"layout\":[\"fixed\",\"auto\"]},\"lOby0IBl8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"FERAIDNeL\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDaHaAJ8go=withCSS(Component,css,\"framer-3DHVX\");export default FramerDaHaAJ8go;FramerDaHaAJ8go.displayName=\"How it works/translation\";FramerDaHaAJ8go.defaultProps={height:28.5,width:460};addPropertyControls(FramerDaHaAJ8go,{variant:{options:[\"vYcIGLoDg\",\"Qu2x_Rz0E\",\"wLpNmPO5a\",\"lOby0IBl8\"],optionTitles:[\"click\",\"default\",\"tablet/click/translation\",\"tablet/default/translation\"],title:\"Variant\",type:ControlType.Enum},FERAIDNeL:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerDaHaAJ8go,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDaHaAJ8go\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"FERAIDNeL\\\":\\\"click\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"460\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"28.5\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Qu2x_Rz0E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wLpNmPO5a\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lOby0IBl8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DaHaAJ8go.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/zfbTEIZE0us4TTua7RKC/uiY7cvd90KaXNfo8KsBn/tmzBJW82u.js\";const cycleOrder=[\"txuG0AeSC\",\"wFJXLKdFX\",\"RjnOPYWsA\",\"k6npc5Y2o\"];const serializationHash=\"framer-OskRo\";const variantClassNames={k6npc5Y2o:\"framer-v-8i5hgs\",RjnOPYWsA:\"framer-v-gqh7wc\",txuG0AeSC:\"framer-v-4k9f1e\",wFJXLKdFX:\"framer-v-1x71eqb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,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={\"tablet/click/transcription\":\"RjnOPYWsA\",\"tablet/default/transcription\":\"k6npc5Y2o\",Click:\"txuG0AeSC\",default:\"wFJXLKdFX\"};const getProps=({click2,height,id,width,...props})=>{return{...props,KzOhvghDO:click2??props.KzOhvghDO,variant:humanReadableVariantMap[props.variant]??props.variant??\"txuG0AeSC\"};};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,KzOhvghDO,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"txuG0AeSC\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1u5z53g=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(KzOhvghDO){const res=await KzOhvghDO(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"RjnOPYWsA\",\"k6npc5Y2o\"].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-4k9f1e\",className,classNames),\"data-framer-name\":\"Click\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"txuG0AeSC\",onTap:onTap1u5z53g,ref:refBinding,style:{...style},...addPropertyOverrides({k6npc5Y2o:{\"data-framer-name\":\"tablet/default/transcription\"},RjnOPYWsA:{\"data-framer-name\":\"tablet/click/transcription\"},wFJXLKdFX:{\"data-framer-name\":\"default\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3vmsnd\",\"data-styles-preset\":\"tmzBJW82u\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255)))\"},children:\"Transcription\"})}),className:\"framer-l24wq0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mrznHxIvq\",style:{\"--extracted-r6o4lv\":\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{k6npc5Y2o:{\"--extracted-r6o4lv\":\"var(--token-1b3e504c-d305-4876-8e2c-5dc8f71ef80f, rgb(185, 190, 209))\"},wFJXLKdFX:{\"--extracted-r6o4lv\":\"var(--token-1b3e504c-d305-4876-8e2c-5dc8f71ef80f, rgb(185, 190, 209))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({k6npc5Y2o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3vmsnd\",\"data-styles-preset\":\"tmzBJW82u\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3e504c-d305-4876-8e2c-5dc8f71ef80f, rgb(185, 190, 209)))\"},children:\"Transcription\"})})},wFJXLKdFX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3vmsnd\",\"data-styles-preset\":\"tmzBJW82u\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3e504c-d305-4876-8e2c-5dc8f71ef80f, rgb(185, 190, 209)))\"},children:\"Transcription\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v4fcl5\",layoutDependency:layoutDependency,layoutId:\"RubaUebaI\",style:{backgroundColor:\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\"},variants:{wFJXLKdFX:{backgroundColor:\"rgba(87, 60, 255, 0)\"}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OskRo.framer-wv9mk3, .framer-OskRo .framer-wv9mk3 { display: block; }\",\".framer-OskRo.framer-4k9f1e { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 460px; }\",\".framer-OskRo .framer-l24wq0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-OskRo .framer-1v4fcl5 { flex: none; height: 2px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OskRo.framer-4k9f1e { gap: 0px; } .framer-OskRo.framer-4k9f1e > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-OskRo.framer-4k9f1e > :first-child { margin-top: 0px; } .framer-OskRo.framer-4k9f1e > :last-child { margin-bottom: 0px; } }\",\".framer-OskRo.framer-v-gqh7wc.framer-4k9f1e { align-content: flex-start; align-items: flex-start; }\",\".framer-OskRo.framer-v-8i5hgs.framer-4k9f1e { flex-direction: row; justify-content: flex-start; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OskRo.framer-v-8i5hgs.framer-4k9f1e { gap: 0px; } .framer-OskRo.framer-v-8i5hgs.framer-4k9f1e > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-OskRo.framer-v-8i5hgs.framer-4k9f1e > :first-child { margin-left: 0px; } .framer-OskRo.framer-v-8i5hgs.framer-4k9f1e > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 28.5\n * @framerIntrinsicWidth 460\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wFJXLKdFX\":{\"layout\":[\"fixed\",\"auto\"]},\"RjnOPYWsA\":{\"layout\":[\"fixed\",\"auto\"]},\"k6npc5Y2o\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"KzOhvghDO\":\"click2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWTlD6tMvM=withCSS(Component,css,\"framer-OskRo\");export default FramerWTlD6tMvM;FramerWTlD6tMvM.displayName=\"Transcription\";FramerWTlD6tMvM.defaultProps={height:28.5,width:460};addPropertyControls(FramerWTlD6tMvM,{variant:{options:[\"txuG0AeSC\",\"wFJXLKdFX\",\"RjnOPYWsA\",\"k6npc5Y2o\"],optionTitles:[\"Click\",\"default\",\"tablet/click/transcription\",\"tablet/default/transcription\"],title:\"Variant\",type:ControlType.Enum},KzOhvghDO:{title:\"Click 2\",type:ControlType.EventHandler}});addFonts(FramerWTlD6tMvM,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWTlD6tMvM\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"28.5\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wFJXLKdFX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RjnOPYWsA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"k6npc5Y2o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"460\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"KzOhvghDO\\\":\\\"click2\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WTlD6tMvM.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,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{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import HowItWorksTranslation from\"https://framerusercontent.com/modules/HwZ0IjKqL3GfE83nKk83/p9ocUitjdYNJSjtxJtRH/DaHaAJ8go.js\";import Transcription from\"https://framerusercontent.com/modules/tGJFXE4kgULBA9WNXzac/mESxpGLaCr12WqC60N38/WTlD6tMvM.js\";const HowItWorksTranslationFonts=getFonts(HowItWorksTranslation);const TranscriptionFonts=getFonts(Transcription);const VideoFonts=getFonts(Video);const cycleOrder=[\"od2jZWPU7\",\"SA2TFxB3f\",\"V2CfqMTrR\",\"mvv4z6mnc\"];const serializationHash=\"framer-cMh1k\";const variantClassNames={mvv4z6mnc:\"framer-v-hvflpl\",od2jZWPU7:\"framer-v-gw1w6a\",SA2TFxB3f:\"framer-v-1fc5k0\",V2CfqMTrR:\"framer-v-gv2yfx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],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={\"tablet/transcription\":\"mvv4z6mnc\",\"tablet/translation\":\"V2CfqMTrR\",\"transcription video\":\"SA2TFxB3f\",\"translation video\":\"od2jZWPU7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"od2jZWPU7\"};};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:\"od2jZWPU7\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const FERAIDNeLus7y93=activeVariantCallback(async(...args)=>{setVariant(\"od2jZWPU7\");});const KzOhvghDO1fsq7ab=activeVariantCallback(async(...args)=>{setVariant(\"SA2TFxB3f\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"SA2TFxB3f\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"SA2TFxB3f\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-gw1w6a\",className,classNames),\"data-framer-name\":\"translation video\",layoutDependency:layoutDependency,layoutId:\"od2jZWPU7\",ref:refBinding,style:{...style},...addPropertyOverrides({mvv4z6mnc:{\"data-framer-name\":\"tablet/transcription\"},SA2TFxB3f:{\"data-framer-name\":\"transcription video\"},V2CfqMTrR:{\"data-framer-name\":\"tablet/translation\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13frfg1\",layoutDependency:layoutDependency,layoutId:\"ixgZfF0jF\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:\"465px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||536)-0-(28+Math.max(0,((componentViewport?.height||536)-0-48)/1)*1+20))/2+0+0)+0,...addPropertyOverrides({mvv4z6mnc:{width:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`},V2CfqMTrR:{width:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mfl0on-container\",layoutDependency:layoutDependency,layoutId:\"TGGouU4xG-container\",nodeId:\"TGGouU4xG\",rendersWithMotion:true,scopeId:\"UNR8ffawR\",children:/*#__PURE__*/_jsx(HowItWorksTranslation,{height:\"100%\",id:\"TGGouU4xG\",layoutId:\"TGGouU4xG\",style:{width:\"100%\"},variant:\"vYcIGLoDg\",width:\"100%\",...addPropertyOverrides({mvv4z6mnc:{FERAIDNeL:undefined,variant:\"Qu2x_Rz0E\"},SA2TFxB3f:{FERAIDNeL:FERAIDNeLus7y93,variant:\"Qu2x_Rz0E\"},V2CfqMTrR:{FERAIDNeL:undefined}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:\"465px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||536)-0-(28+Math.max(0,((componentViewport?.height||536)-0-48)/1)*1+20))/2+0+0)+0,...addPropertyOverrides({mvv4z6mnc:{width:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`},V2CfqMTrR:{width:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lb1oyu-container\",layoutDependency:layoutDependency,layoutId:\"y0rFy3blg-container\",nodeId:\"y0rFy3blg\",rendersWithMotion:true,scopeId:\"UNR8ffawR\",children:/*#__PURE__*/_jsx(Transcription,{height:\"100%\",id:\"y0rFy3blg\",KzOhvghDO:KzOhvghDO1fsq7ab,layoutId:\"y0rFy3blg\",style:{width:\"100%\"},variant:\"wFJXLKdFX\",width:\"100%\",...addPropertyOverrides({mvv4z6mnc:{variant:\"txuG0AeSC\"},SA2TFxB3f:{variant:\"txuG0AeSC\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11g9dzy\",\"data-border\":true,\"data-framer-name\":\"video\",layoutDependency:layoutDependency,layoutId:\"NbyuFKvMX\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, rgb(236, 241, 247))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fq7d6q-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"DYWzkqa2Y-container\",nodeId:\"DYWzkqa2Y\",rendersWithMotion:true,scopeId:\"UNR8ffawR\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(255, 255, 255, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:false,height:\"100%\",id:\"DYWzkqa2Y\",isMixedBorderRadius:false,layoutId:\"DYWzkqa2Y\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/Fnsghp7SJwwVrecqE4jUpypT0U.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9hnr48-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"nE48UFfdK-container\",nodeId:\"nE48UFfdK\",rendersWithMotion:true,scopeId:\"UNR8ffawR\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(255, 255, 255, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:false,height:\"100%\",id:\"nE48UFfdK\",isMixedBorderRadius:false,layoutId:\"nE48UFfdK\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/Cf37fJ62knUmxaBeUzWoTriypp0.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cMh1k.framer-1whanpd, .framer-cMh1k .framer-1whanpd { display: block; }\",\".framer-cMh1k.framer-gw1w6a { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 536px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-cMh1k .framer-13frfg1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 930px; }\",\".framer-cMh1k .framer-mfl0on-container, .framer-cMh1k .framer-1lb1oyu-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-cMh1k .framer-11g9dzy { align-self: stretch; flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: auto; }\",\".framer-cMh1k .framer-fq7d6q-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.05128205128207% - 100% / 2); width: 100%; }\",\".framer-cMh1k .framer-9hnr48-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(49.84615384615387% - 100% / 2); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cMh1k.framer-gw1w6a, .framer-cMh1k .framer-13frfg1 { gap: 0px; } .framer-cMh1k.framer-gw1w6a > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-cMh1k.framer-gw1w6a > :first-child { margin-top: 0px; } .framer-cMh1k.framer-gw1w6a > :last-child { margin-bottom: 0px; } .framer-cMh1k .framer-13frfg1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-cMh1k .framer-13frfg1 > :first-child { margin-left: 0px; } .framer-cMh1k .framer-13frfg1 > :last-child { margin-right: 0px; } }\",\".framer-cMh1k.framer-v-gv2yfx.framer-gw1w6a, .framer-cMh1k.framer-v-hvflpl.framer-gw1w6a { width: 930px; }\",\".framer-cMh1k.framer-v-gv2yfx .framer-13frfg1, .framer-cMh1k.framer-v-hvflpl .framer-13frfg1 { width: 100%; }\",\".framer-cMh1k.framer-v-gv2yfx .framer-11g9dzy, .framer-cMh1k.framer-v-hvflpl .framer-11g9dzy { align-self: unset; width: 100%; }\",'.framer-cMh1k[data-border=\"true\"]::after, .framer-cMh1k [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 536\n * @framerIntrinsicWidth 930\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"SA2TFxB3f\":{\"layout\":[\"auto\",\"fixed\"]},\"V2CfqMTrR\":{\"layout\":[\"fixed\",\"fixed\"]},\"mvv4z6mnc\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUNR8ffawR=withCSS(Component,css,\"framer-cMh1k\");export default FramerUNR8ffawR;FramerUNR8ffawR.displayName=\"How it works/Interaction\";FramerUNR8ffawR.defaultProps={height:536,width:930};addPropertyControls(FramerUNR8ffawR,{variant:{options:[\"od2jZWPU7\",\"SA2TFxB3f\",\"V2CfqMTrR\",\"mvv4z6mnc\"],optionTitles:[\"translation video\",\"transcription video\",\"tablet/translation\",\"tablet/transcription\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerUNR8ffawR,[{explicitInter:true,fonts:[]},...HowItWorksTranslationFonts,...TranscriptionFonts,...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUNR8ffawR\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"536\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"930\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"SA2TFxB3f\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"V2CfqMTrR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mvv4z6mnc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UNR8ffawR.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{cloneElement}from\"react\";function scrollToTop(){if(window){window.scrollTo({top:0,behavior:\"smooth\"});}}/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerIntrinsicWidth 40\n * @framerIntrinsicHeight 40\n */ export default function ScrollToTopButton(props){let button;if(props.buttonType==\"default\"){button=/*#__PURE__*/ _jsx(\"div\",{style:{width:props.buttonWidth,height:props.buttonHeight,display:\"flex\",justifyContent:\"center\",alignItems:\"center\",backgroundColor:props.fill,borderRadius:props.radiusIsMixed?`${props.radiusTopLeft}px ${props.radiusTopRight}px ${props.radiusBottomRight}px ${props.radiusBottomLeft}px`:`${props.radius}px`,...props.style},onClick:scrollToTop,children:/*#__PURE__*/ _jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",fill:\"none\",viewBox:\"0 0 24 24\",strokeWidth:props.icon.stroke,stroke:props.icon.color,\"stroke-linecap\":\"round\",\"stroke-linejoin\":\"round\",style:{width:props.icon.size,height:props.icon.size},children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M12 5l0 14\"}),/*#__PURE__*/ _jsx(\"path\",{d:\"M18 11l-6 -6\"}),/*#__PURE__*/ _jsx(\"path\",{d:\"M6 11l6 -6\"})]})});}else{var ref,ref1,ref2;let layer=(ref=props.custom)===null||ref===void 0?void 0:ref[0];if(layer&&(((ref1=props.style)===null||ref1===void 0?void 0:ref1.width)||((ref2=props.style)===null||ref2===void 0?void 0:ref2.height))){layer=/*#__PURE__*/ cloneElement(layer,{style:{...layer.props.style,...props.style}});}button=/*#__PURE__*/ _jsx(\"div\",{onClick:scrollToTop,style:props.style,children:layer});}let layer1=button;if(props.effects){layer1=/*#__PURE__*/ _jsx(motion.div,{whileHover:{scale:props.effects.hoverScale},whileTap:{scale:props.effects.pressScale},initial:false,transition:props.effects.transition,style:props.style,children:button});}return layer1;};ScrollToTopButton.displayName=\"Scroll-to-Top Button\";const effectsDefault={hoverScale:1.1,pressScale:.9};addPropertyControls(ScrollToTopButton,{buttonType:{type:ControlType.Enum,defaultValue:\"default\",options:[\"default\",\"custom\"],optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true,title:\"Button\"},custom:{type:ControlType.ComponentInstance,title:\"Custom\",description:\"Use a custom button layer.\",hidden(props){return props.buttonType!==\"custom\";}},fill:{type:ControlType.Color,defaultValue:\"#EDEDED\",optional:true,hidden(props){return props.buttonType!==\"default\";}},icon:{type:ControlType.Object,controls:{color:{type:ControlType.Color,defaultValue:\"black\"},size:{type:ControlType.Number,defaultValue:24,min:1},stroke:{type:ControlType.Number,defaultValue:2,min:1,max:10,step:.1}},hidden(props){return props.buttonType!==\"default\";}},radius:{type:ControlType.FusedNumber,defaultValue:20,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusottomRight\",\"radiusBottomLeft\",],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0,hidden(props){return props.buttonType!==\"default\";}},effects:{type:ControlType.Object,defaultValue:effectsDefault,optional:true,buttonTitle:\"Hover & Press\",icon:\"effect\",controls:{hoverScale:{type:ControlType.Number,defaultValue:effectsDefault.hoverScale,min:0,step:.01,displayStepper:true},pressScale:{type:ControlType.Number,defaultValue:effectsDefault.pressScale,min:0,step:.01,displayStepper:true},transition:{type:ControlType.Transition}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ScrollToTopButton\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"40\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ScrollToTopButton.map", "// Generated by Framer (c105afa)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import Avatar from\"#framer/local/canvasComponent/aL1M4pcFt/aL1M4pcFt.js\";import FeatureCard from\"#framer/local/canvasComponent/fbekXnNAc/fbekXnNAc.js\";import CTALaunch from\"#framer/local/canvasComponent/gCkrcTKxp/gCkrcTKxp.js\";import FeatureSection from\"#framer/local/canvasComponent/L8yk06JFc/L8yk06JFc.js\";import HomepageUploaded from\"#framer/local/canvasComponent/p325mtE1y/p325mtE1y.js\";import Footer from\"#framer/local/canvasComponent/qZ_XI3P7P/qZ_XI3P7P.js\";import Navigation from\"#framer/local/canvasComponent/RG7yJog90/RG7yJog90.js\";import Badge from\"#framer/local/canvasComponent/SXR9yB_tn/SXR9yB_tn.js\";import HowItWorksInteraction from\"#framer/local/canvasComponent/UNR8ffawR/UNR8ffawR.js\";import Buttons from\"#framer/local/canvasComponent/yORaTwldW/yORaTwldW.js\";import ScrollToTopButton from\"#framer/local/codeFile/UmZQLNT/ScrollToTopButton.js\";import Blog from\"#framer/local/collection/CWvRL2Z7h/CWvRL2Z7h.js\";import*as sharedStyle from\"#framer/local/css/bocXxd6oj/bocXxd6oj.js\";import*as sharedStyle6 from\"#framer/local/css/gOjRqHu4S/gOjRqHu4S.js\";import*as sharedStyle5 from\"#framer/local/css/KcUpCwhm3/KcUpCwhm3.js\";import*as sharedStyle7 from\"#framer/local/css/MOhTEatyY/MOhTEatyY.js\";import*as sharedStyle3 from\"#framer/local/css/rHs4MAikW/rHs4MAikW.js\";import*as sharedStyle2 from\"#framer/local/css/W5729J3pQ/W5729J3pQ.js\";import*as sharedStyle4 from\"#framer/local/css/waIKCrlqu/waIKCrlqu.js\";import*as sharedStyle1 from\"#framer/local/css/XuM03kBo3/XuM03kBo3.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const NavigationWithVariantAppearEffect=withVariantAppearEffect(Navigation);const ScrollToTopButtonFonts=getFonts(ScrollToTopButton);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonsFonts=getFonts(Buttons);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const AvatarFonts=getFonts(Avatar);const TickerFonts=getFonts(Ticker);const BadgeFonts=getFonts(Badge);const ContainerWithFX=withFX(Container);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const FeatureSectionFonts=getFonts(FeatureSection);const HowItWorksInteractionFonts=getFonts(HowItWorksInteraction);const FeatureCardFonts=getFonts(FeatureCard);const MotionAWithFX=withFX(motion.a);const HomepageUploadedFonts=getFonts(HomepageUploaded);const MotionSectionWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.section);const CTALaunchFonts=getFonts(CTALaunch);const FooterFonts=getFonts(Footer);const breakpoints={J3uB7PlJN:\"(max-width: 575px)\",PqpaQgc5e:\"(min-width: 992px) and (max-width: 1279px)\",WpCIbgkLd:\"(min-width: 576px) and (max-width: 991px)\",WQLkyLRf1:\"(min-width: 1280px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-t0eGy\";const variantClassNames={J3uB7PlJN:\"framer-v-ujtbii\",PqpaQgc5e:\"framer-v-1uu7l1z\",WpCIbgkLd:\"framer-v-qqyzon\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition1};const transition2={damping:40,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition3={delay:0,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition4={delay:.2,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={damping:50,delay:.5,mass:1,stiffness:150,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const transition6={damping:50,delay:.4,mass:1,stiffness:150,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const transition7={delay:.3,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition8={damping:40,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition9={delay:.4,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition10={damping:30,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition11={damping:40,delay:0,mass:1,stiffness:160,type:\"spring\"};const transition12={damping:40,delay:.1,mass:1,stiffness:160,type:\"spring\"};const transition13={damping:40,delay:.2,mass:1,stiffness:160,type:\"spring\"};const transition14={damping:40,delay:.3,mass:1,stiffness:160,type:\"spring\"};const transition15={damping:40,delay:.4,mass:1,stiffness:160,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation15={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition16={damping:40,delay:.4,mass:1,stiffness:150,type:\"spring\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop L\":\"WQLkyLRf1\",Desktop:\"PqpaQgc5e\",Phone:\"J3uB7PlJN\",Tablet:\"WpCIbgkLd\"};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,wR752i2OMvVZaRttGW,ZVhKDtWyEvVZaRttGW,X3LNSX4KSvVZaRttGW,zgMbIQQN4ihndCfXTj,Lx_TFXkL0vVZaRttGW,idvVZaRttGW,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"J3uB7PlJN\",\"WpCIbgkLd\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"J3uB7PlJN\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"WpCIbgkLd\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"WpCIbgkLd\")return false;return true;};const elementId=useRouteElementId(\"uAiJIOvqF\");const router=useRouter();const elementId1=useRouteElementId(\"BKELtp_qv\");const ref2=React.useRef(null);const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"J3uB7PlJN\")return true;return false;};const elementId2=useRouteElementId(\"SqZiK_A17\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"bG0HDyVqv\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"sh9BTY1V3\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"TBkoari1f\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"SPLtAiMzX\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"SdJnzaJMc\");const ref8=React.useRef(null);const activeLocaleCode=useLocaleCode();const textContent=toDateString(zgMbIQQN4ihndCfXTj,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const elementId8=useRouteElementId(\"TfaP_m3e8\");const ref9=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wde3po-container\",id:\"wde3po\",layoutScroll:true,nodeId:\"tws5NSJQ1\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{__framer__variantAppearEffectEnabled:undefined,variant:\"CGsXOuuLs\"},WpCIbgkLd:{__framer__variantAppearEffectEnabled:undefined,variant:\"CGsXOuuLs\"}},children:/*#__PURE__*/_jsx(NavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"FdLWGNB7Z\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"tws5NSJQ1\",layoutId:\"tws5NSJQ1\",style:{width:\"100%\"},variant:\"TU_nbc0Zt\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19vndmf-container hidden-ujtbii hidden-qqyzon\",isAuthoredByUser:true,layoutScroll:true,nodeId:\"FejEQVibc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ScrollToTopButton,{buttonType:\"default\",custom:[],effects:{hoverScale:1.1,pressScale:.9,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},fill:\"var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, rgb(236, 241, 247))\",height:\"100%\",icon:{color:\"var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, rgb(45, 53, 76))\",size:30,stroke:2},id:\"FejEQVibc\",layoutId:\"FejEQVibc\",radius:50,radiusBottomLeft:50,radiusIsMixed:false,radiusottomRight:50,radiusTopLeft:50,radiusTopRight:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:\"#hero\",motionChild:true,nodeId:\"QD_Y1EPKG\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-p9zqaz hidden-ujtbii framer-lux5qc\",\"data-framer-name\":\"Back-to-Top\",whileTap:animation})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1yp8xwc\",\"data-framer-name\":\"Hero\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ju9owy hidden-72rtr7 hidden-1uu7l1z hidden-ujtbii\",\"data-framer-name\":\"yellow\"}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-aeug7n hidden-ujtbii hidden-qqyzon\",\"data-framer-appear-id\":\"aeug7n\",\"data-framer-name\":\"gradient-top-right\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xze9nt\",\"data-framer-name\":\"blue\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j0lqfi\",\"data-framer-name\":\"blue-2\"})]}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-1d13stc hidden-ujtbii hidden-qqyzon\",\"data-framer-appear-id\":\"1d13stc\",\"data-framer-name\":\"gradient-top-left\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k27plj\",\"data-framer-name\":\"yellow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-184ujgq\",\"data-framer-name\":\"green\"})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17lqxjv hidden-qqyzon\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9o2owm\",\"data-framer-name\":\"Container\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ng0tkn\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g567mr\",\"data-styles-preset\":\"XuM03kBo3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Break Language Barriers, Drive Engagement\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1l15rv8\",\"data-styles-preset\":\"bocXxd6oj\",style:{\"--framer-text-alignment\":\"center\"},children:\"Break Language Barriers, Drive Engagement\"})}),className:\"framer-1uywckh\",\"data-framer-appear-id\":\"1uywckh\",\"data-framer-name\":\"Main Title\",fonts:[\"Inter\"],initial:animation4,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Level up your event with accurate translations, fast transcriptions, shareable recaps\"})}),className:\"framer-u9emc7\",\"data-framer-appear-id\":\"u9emc7\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],initial:animation4,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-225hdf\",\"data-framer-name\":\"Actions\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":SqZiK_A17\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":SqZiK_A17\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+0+160+0+0+282+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+0+180+0+0+305+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+0+180+0+0+297+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation6,className:\"framer-15xh9ns-container\",\"data-framer-appear-id\":\"15xh9ns\",\"data-framer-name\":\"Button Secondary\",initial:animation2,name:\"Button Secondary\",nodeId:\"vUjU2CUgk\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{style:{width:\"100%\"},vjZWklrqI:\"https://tally.so/r/mVDX1J\",xEfGs_njT:\"Request Demo\"},PqpaQgc5e:{vjZWklrqI:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Buttons,{bOwGuieUn:\"ArrowRight\",height:\"100%\",id:\"vUjU2CUgk\",layoutId:\"vUjU2CUgk\",name:\"Button Secondary\",variant:\"hcemchZsc\",vjZWklrqI:resolvedLinks[0],width:\"100%\",xEfGs_njT:\"Learn More\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+0+160+0+0+282+0+65},PqpaQgc5e:{y:(componentViewport?.y||0)+0+0+180+0+0+305+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+0+180+0+0+297+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1rzjr3l-container\",\"data-framer-appear-id\":\"1rzjr3l\",\"data-framer-name\":\"Button Primary\",initial:animation2,name:\"Button Primary\",nodeId:\"mQvQzX_fK\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Buttons,{bOwGuieUn:\"ArrowUpRight\",height:\"100%\",id:\"mQvQzX_fK\",layoutId:\"mQvQzX_fK\",name:\"Button Primary\",style:{height:\"100%\"},variant:\"mQ3MdL6TJ\",vjZWklrqI:\"https://app.translingo.cc/auth\",width:\"100%\",xEfGs_njT:\"Try Now for Free!\"})})})})})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-179pww0 hidden-72rtr7 hidden-1uu7l1z hidden-ujtbii\",\"data-framer-name\":\"green\"}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dxeq1f hidden-72rtr7 hidden-1uu7l1z hidden-ujtbii\",\"data-framer-name\":\"blue-2\"}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-60uh4j hidden-72rtr7 hidden-1uu7l1z hidden-ujtbii\",\"data-framer-name\":\"blue-2\"}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-159lrmq hidden-72rtr7 hidden-1uu7l1z hidden-ujtbii\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x3pvyx\",\"data-framer-name\":\"Container\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1omfrau\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g567mr\",\"data-styles-preset\":\"XuM03kBo3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Break Language Barriers, Drive Engagement\"})}),className:\"framer-dicak8\",\"data-framer-appear-id\":\"dicak8\",\"data-framer-name\":\"Main Title\",fonts:[\"Inter\"],initial:animation4,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Level up your event with automated post-event content and during-event transcriptions and translations\"})}),className:\"framer-1tci2wj\",\"data-framer-appear-id\":\"1tci2wj\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],initial:animation4,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-7fi725\",\"data-framer-appear-id\":\"7fi725\",\"data-framer-name\":\"Social Trust\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tgsn9w\",\"data-framer-name\":\"Stacked Avatars\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WpCIbgkLd:{y:(componentViewport?.y||0)+0+0+160+0+0+0+0+346+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"25.2px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1io66l9-container\",nodeId:\"dArT4zh22\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",HJYYGhJC3:\"rgb(218, 225, 25)\",id:\"dArT4zh22\",layoutId:\"dArT4zh22\",shYZ8xZ6P:addImageAlt({src:\"https://framerusercontent.com/images/535f00Weihgs1dBHDcvx7N4x84.jpg\",srcSet:\"https://framerusercontent.com/images/535f00Weihgs1dBHDcvx7N4x84.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/535f00Weihgs1dBHDcvx7N4x84.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/535f00Weihgs1dBHDcvx7N4x84.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/535f00Weihgs1dBHDcvx7N4x84.jpg 3456w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"l4RLHSA6V\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WpCIbgkLd:{y:(componentViewport?.y||0)+0+0+160+0+0+0+0+346+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"25px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lij97z-container\",nodeId:\"wNChn8zZK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",HJYYGhJC3:\"rgb(218, 225, 25)\",id:\"wNChn8zZK\",layoutId:\"wNChn8zZK\",shYZ8xZ6P:addImageAlt({src:\"https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg\",srcSet:\"https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg 6220w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"l4RLHSA6V\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WpCIbgkLd:{y:(componentViewport?.y||0)+0+0+160+0+0+0+0+346+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"25px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vhoc1a-container\",nodeId:\"lXBnRYO49\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",HJYYGhJC3:\"rgb(218, 225, 25)\",id:\"lXBnRYO49\",layoutId:\"lXBnRYO49\",shYZ8xZ6P:addImageAlt({src:\"https://framerusercontent.com/images/SiHj8IXtMQ0A70pTrI5LN5msw.jpg\",srcSet:\"https://framerusercontent.com/images/SiHj8IXtMQ0A70pTrI5LN5msw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SiHj8IXtMQ0A70pTrI5LN5msw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SiHj8IXtMQ0A70pTrI5LN5msw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SiHj8IXtMQ0A70pTrI5LN5msw.jpg 3648w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"l4RLHSA6V\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WpCIbgkLd:{y:(componentViewport?.y||0)+0+0+160+0+0+0+0+346+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"25px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ws4qbd-container\",nodeId:\"V6uNLlTc6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",HJYYGhJC3:\"rgb(218, 225, 25)\",id:\"V6uNLlTc6\",layoutId:\"V6uNLlTc6\",shYZ8xZ6P:addImageAlt({src:\"https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg\",srcSet:\"https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg 3840w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"l4RLHSA6V\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d78lqw\",\"data-styles-preset\":\"rHs4MAikW\",style:{\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Trusted already by 15+\"})}),className:\"framer-57di0\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-140l3ni\",\"data-framer-name\":\"Actions\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WpCIbgkLd:{y:(componentViewport?.y||0)+0+0+160+0+0+422+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation6,className:\"framer-l0sl95-container\",\"data-framer-appear-id\":\"l0sl95\",\"data-framer-name\":\"Button Secondary\",initial:animation2,name:\"Button Secondary\",nodeId:\"rmzQTE5Ac\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Buttons,{bOwGuieUn:\"ArrowRight\",height:\"100%\",id:\"rmzQTE5Ac\",layoutId:\"rmzQTE5Ac\",name:\"Button Secondary\",variant:\"hcemchZsc\",vjZWklrqI:\"https://tally.so/r/mVDX1J\",width:\"100%\",xEfGs_njT:\"Resquest Demo\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WpCIbgkLd:{y:(componentViewport?.y||0)+0+0+160+0+0+422+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-y18b0c-container\",\"data-framer-appear-id\":\"y18b0c\",\"data-framer-name\":\"Button Primary\",initial:animation2,name:\"Button Primary\",nodeId:\"eI85yp0sg\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Buttons,{bOwGuieUn:\"ArrowUpRight\",height:\"100%\",id:\"eI85yp0sg\",layoutId:\"eI85yp0sg\",name:\"Button Primary\",style:{height:\"100%\"},variant:\"mQ3MdL6TJ\",vjZWklrqI:\"https://app.translingo.cc/dashboard\",width:\"100%\",xEfGs_njT:\"Try Now for Free!\"})})})})]})]}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-vb01t2 hidden-72rtr7 hidden-1uu7l1z hidden-qqyzon\",\"data-framer-name\":\"yellow\"}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ws81o0 hidden-72rtr7 hidden-1uu7l1z hidden-qqyzon\",\"data-framer-name\":\"green\"}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-14u3o1d hidden-72rtr7 hidden-1uu7l1z hidden-qqyzon\",\"data-framer-name\":\"blue-2\"}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-yhsiao hidden-72rtr7 hidden-1uu7l1z hidden-qqyzon\",\"data-framer-name\":\"blue-2\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f4by95\",\"data-framer-name\":\"Frame 509\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9c7a41c5-517c-4dd3-a573-a2bcde21e5ce, rgb(131, 139, 163))\"},children:\"Translingo is trusted by \"})}),className:\"framer-1dwtrdd\",\"data-framer-name\":\"Translingo is trusted by organizations\",fonts:[\"GF;Be Vietnam Pro-500\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-y8vpj9-container hidden-72rtr7 hidden-1uu7l1z hidden-qqyzon\",isModuleExternal:true,nodeId:\"mAeloOVV6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"mAeloOVV6\",layoutId:\"mAeloOVV6\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:278,intrinsicWidth:512,pixelHeight:556,pixelWidth:1024,sizes:\"73.5px\",src:\"https://framerusercontent.com/images/hVrh5Jmcrd0Tb7yUq20ToDShY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/hVrh5Jmcrd0Tb7yUq20ToDShY.png?scale-down-to=512 512w,https://framerusercontent.com/images/hVrh5Jmcrd0Tb7yUq20ToDShY.png 1024w\"},className:\"framer-11baocz\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:1e3,pixelHeight:500,pixelWidth:2e3,sizes:\"160px\",src:\"https://framerusercontent.com/images/zDIN24lL6WE2PVAkXUHqH9GQlc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zDIN24lL6WE2PVAkXUHqH9GQlc.png?scale-down-to=512 512w,https://framerusercontent.com/images/zDIN24lL6WE2PVAkXUHqH9GQlc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zDIN24lL6WE2PVAkXUHqH9GQlc.png 2000w\"},className:\"framer-wb9dzl\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:610.5,intrinsicWidth:600,pixelHeight:1221,pixelWidth:1200,sizes:\"39.5px\",src:\"https://framerusercontent.com/images/SwoFxssn9rhkCpQ0RDvtAWCbrw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/SwoFxssn9rhkCpQ0RDvtAWCbrw.png?scale-down-to=1024 1006w,https://framerusercontent.com/images/SwoFxssn9rhkCpQ0RDvtAWCbrw.png 1200w\"},className:\"framer-1rfot19\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:89,intrinsicWidth:250,pixelHeight:178,pixelWidth:500,src:\"https://framerusercontent.com/images/Jr6uQxGBohF1ingdSIm6AkqGak.png\"},className:\"framer-1w0kti2\",\"data-framer-name\":\"Image\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1es3ew3-container hidden-72rtr7 hidden-1uu7l1z hidden-ujtbii\",isModuleExternal:true,nodeId:\"xGhMI4p63\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"xGhMI4p63\",layoutId:\"xGhMI4p63\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:278,intrinsicWidth:512,pixelHeight:556,pixelWidth:1024,sizes:\"73.5px\",src:\"https://framerusercontent.com/images/hVrh5Jmcrd0Tb7yUq20ToDShY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/hVrh5Jmcrd0Tb7yUq20ToDShY.png?scale-down-to=512 512w,https://framerusercontent.com/images/hVrh5Jmcrd0Tb7yUq20ToDShY.png 1024w\"},className:\"framer-11baocz\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:1e3,pixelHeight:500,pixelWidth:2e3,sizes:\"160px\",src:\"https://framerusercontent.com/images/zDIN24lL6WE2PVAkXUHqH9GQlc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zDIN24lL6WE2PVAkXUHqH9GQlc.png?scale-down-to=512 512w,https://framerusercontent.com/images/zDIN24lL6WE2PVAkXUHqH9GQlc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zDIN24lL6WE2PVAkXUHqH9GQlc.png 2000w\"},className:\"framer-wb9dzl\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:610.5,intrinsicWidth:600,pixelHeight:1221,pixelWidth:1200,sizes:\"39.5px\",src:\"https://framerusercontent.com/images/SwoFxssn9rhkCpQ0RDvtAWCbrw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/SwoFxssn9rhkCpQ0RDvtAWCbrw.png?scale-down-to=1024 1006w,https://framerusercontent.com/images/SwoFxssn9rhkCpQ0RDvtAWCbrw.png 1200w\"},className:\"framer-1rfot19\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:89,intrinsicWidth:250,pixelHeight:178,pixelWidth:500,src:\"https://framerusercontent.com/images/Jr6uQxGBohF1ingdSIm6AkqGak.png\"},className:\"framer-1w0kti2\",\"data-framer-name\":\"Image\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-127cvxm hidden-ujtbii hidden-qqyzon\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+434+0+159+.9111),sizes:\"71.9871px\",src:\"https://framerusercontent.com/images/Ic5GLElVqDriJF507HLyzdEaxDc.png\",srcSet:\"https://framerusercontent.com/images/Ic5GLElVqDriJF507HLyzdEaxDc.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ic5GLElVqDriJF507HLyzdEaxDc.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+426+0+159+.9111),sizes:\"71.9871px\",src:\"https://framerusercontent.com/images/Ic5GLElVqDriJF507HLyzdEaxDc.png\",srcSet:\"https://framerusercontent.com/images/Ic5GLElVqDriJF507HLyzdEaxDc.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ic5GLElVqDriJF507HLyzdEaxDc.png 1024w\"},className:\"framer-8ywt19\",\"data-framer-name\":\"image 7\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+434+0+159+0),sizes:\"164.0212px\",src:\"https://framerusercontent.com/images/CQSvK7KfVuoLxvqOCddOHVYddc.png\",srcSet:\"https://framerusercontent.com/images/CQSvK7KfVuoLxvqOCddOHVYddc.png?scale-down-to=512 512w,https://framerusercontent.com/images/CQSvK7KfVuoLxvqOCddOHVYddc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CQSvK7KfVuoLxvqOCddOHVYddc.png 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+426+0+159+0),sizes:\"164.0212px\",src:\"https://framerusercontent.com/images/CQSvK7KfVuoLxvqOCddOHVYddc.png\",srcSet:\"https://framerusercontent.com/images/CQSvK7KfVuoLxvqOCddOHVYddc.png?scale-down-to=512 512w,https://framerusercontent.com/images/CQSvK7KfVuoLxvqOCddOHVYddc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CQSvK7KfVuoLxvqOCddOHVYddc.png 2000w\"},className:\"framer-1abhe58\",\"data-framer-name\":\"image 8\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+434+0+159+2.2778),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/crDueLRbs77xLlestr4p9zOlwI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+426+0+159+2.2778),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/crDueLRbs77xLlestr4p9zOlwI.png\"},className:\"framer-1tiuqnq\",\"data-framer-name\":\"image 9\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+434+0+159+0),sizes:\"40.0941px\",src:\"https://framerusercontent.com/images/sX1CXjIl3CllzUQo8sZwHLFq9o.png\",srcSet:\"https://framerusercontent.com/images/sX1CXjIl3CllzUQo8sZwHLFq9o.png?scale-down-to=1024 1006w,https://framerusercontent.com/images/sX1CXjIl3CllzUQo8sZwHLFq9o.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+426+0+159+0),sizes:\"40.0941px\",src:\"https://framerusercontent.com/images/sX1CXjIl3CllzUQo8sZwHLFq9o.png\",srcSet:\"https://framerusercontent.com/images/sX1CXjIl3CllzUQo8sZwHLFq9o.png?scale-down-to=1024 1006w,https://framerusercontent.com/images/sX1CXjIl3CllzUQo8sZwHLFq9o.png 1200w\"},className:\"framer-1ee9gjl\",\"data-framer-name\":\"image 10\"})})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1t5bw2x\",\"data-framer-name\":\"Section 2\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4ly1yc\",\"data-framer-name\":\"Solutions \",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p3udwe\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+860+100+0+0+0+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+894+100+0+0+0+0+0},WpCIbgkLd:{y:(componentViewport?.y||0)+0+971+50+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+886+100+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:80,ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fl3pqc-container\",nodeId:\"c_N8gQCAM\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{abNWj2a4p:\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\",DTEBE1LHR:\"SOLUTIONS\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"c_N8gQCAM\",j7oQQHdIz:\"var(--token-b988d70e-4e2a-47cf-8199-0fece17bfdfe, rgb(0, 0, 254))\",layoutId:\"c_N8gQCAM\",mQiWJf8Hp:\"var(--token-79cc7236-ec94-4b2c-8a64-ba34fdc7c370, rgb(234, 242, 255))\",variant:\"A1hLNSIZ_\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:80,ref:ref3,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1qogos3\",\"data-styles-preset\":\"waIKCrlqu\",style:{\"--framer-text-alignment\":\"center\"},children:\"Take your event to a new level\"})}),className:\"framer-1fvuriy\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-101ph1i\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uw9gnp\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+860+100+0+0+170+0+0+0+0),pixelHeight:698,pixelWidth:1022,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/Onepw7Qon9FzyDxBvMXQUMUBAts.png\",srcSet:\"https://framerusercontent.com/images/Onepw7Qon9FzyDxBvMXQUMUBAts.png?scale-down-to=512 512w,https://framerusercontent.com/images/Onepw7Qon9FzyDxBvMXQUMUBAts.png 1022w\"}},PqpaQgc5e:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+894+100+0+0+150+0+0+0),pixelHeight:698,pixelWidth:1022,positionX:\"left\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 200px) / 3, 1px)`,src:\"https://framerusercontent.com/images/Onepw7Qon9FzyDxBvMXQUMUBAts.png\",srcSet:\"https://framerusercontent.com/images/Onepw7Qon9FzyDxBvMXQUMUBAts.png?scale-down-to=512 512w,https://framerusercontent.com/images/Onepw7Qon9FzyDxBvMXQUMUBAts.png 1022w\"}},WpCIbgkLd:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+971+50+0+0+150+0+0+0+0),pixelHeight:698,pixelWidth:1022,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,src:\"https://framerusercontent.com/images/Onepw7Qon9FzyDxBvMXQUMUBAts.png\",srcSet:\"https://framerusercontent.com/images/Onepw7Qon9FzyDxBvMXQUMUBAts.png?scale-down-to=512 512w,https://framerusercontent.com/images/Onepw7Qon9FzyDxBvMXQUMUBAts.png 1022w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+886+100+0+0+150+0+0+0),pixelHeight:698,pixelWidth:1022,positionX:\"left\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 200px) / 3, 1px)`,src:\"https://framerusercontent.com/images/Onepw7Qon9FzyDxBvMXQUMUBAts.png\",srcSet:\"https://framerusercontent.com/images/Onepw7Qon9FzyDxBvMXQUMUBAts.png?scale-down-to=512 512w,https://framerusercontent.com/images/Onepw7Qon9FzyDxBvMXQUMUBAts.png 1022w\"},className:\"framer-17jlu78\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k815ev\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-116v73k\",\"data-styles-preset\":\"gOjRqHu4S\",children:\"Translate\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-144ivnp\",\"data-styles-preset\":\"KcUpCwhm3\",children:\"Translate\"})}),className:\"framer-18gl7is\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",children:\"Provide your audience real-time translations, both written and spoken in 60+ languages\"})}),className:\"framer-b4mmkw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-msufjw\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+860+100+0+0+170+0+422.5+0+0),pixelHeight:698,pixelWidth:1022,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/u94juKqxZIp2idNyvzJ1nhcUmM.png\",srcSet:\"https://framerusercontent.com/images/u94juKqxZIp2idNyvzJ1nhcUmM.png?scale-down-to=512 512w,https://framerusercontent.com/images/u94juKqxZIp2idNyvzJ1nhcUmM.png 1022w\"}},PqpaQgc5e:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+894+100+0+0+150+0+0+0),pixelHeight:698,pixelWidth:1022,positionX:\"left\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 200px) / 3, 1px)`,src:\"https://framerusercontent.com/images/u94juKqxZIp2idNyvzJ1nhcUmM.png\",srcSet:\"https://framerusercontent.com/images/u94juKqxZIp2idNyvzJ1nhcUmM.png?scale-down-to=512 512w,https://framerusercontent.com/images/u94juKqxZIp2idNyvzJ1nhcUmM.png 1022w\"}},WpCIbgkLd:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+971+50+0+0+150+0+422.5+0+0),pixelHeight:698,pixelWidth:1022,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,src:\"https://framerusercontent.com/images/u94juKqxZIp2idNyvzJ1nhcUmM.png\",srcSet:\"https://framerusercontent.com/images/u94juKqxZIp2idNyvzJ1nhcUmM.png?scale-down-to=512 512w,https://framerusercontent.com/images/u94juKqxZIp2idNyvzJ1nhcUmM.png 1022w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+886+100+0+0+150+0+0+0),pixelHeight:698,pixelWidth:1022,positionX:\"left\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 200px) / 3, 1px)`,src:\"https://framerusercontent.com/images/u94juKqxZIp2idNyvzJ1nhcUmM.png\",srcSet:\"https://framerusercontent.com/images/u94juKqxZIp2idNyvzJ1nhcUmM.png?scale-down-to=512 512w,https://framerusercontent.com/images/u94juKqxZIp2idNyvzJ1nhcUmM.png 1022w\"},className:\"framer-ymlzhq\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1glaojn\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-116v73k\",\"data-styles-preset\":\"gOjRqHu4S\",children:\"Transcribe\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-144ivnp\",\"data-styles-preset\":\"KcUpCwhm3\",children:\"Transcribe\"})}),className:\"framer-shh0gc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",children:\"Get high-quality multilingual transcription ready to augment and share. \"})}),className:\"framer-1chvs0o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lng9ua\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+860+100+0+0+170+0+845+0+0),pixelHeight:698,pixelWidth:1022,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/MoXahAGTezGQmmPuJSpjOLPUWQ.png\",srcSet:\"https://framerusercontent.com/images/MoXahAGTezGQmmPuJSpjOLPUWQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/MoXahAGTezGQmmPuJSpjOLPUWQ.png 1022w\"}},PqpaQgc5e:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+894+100+0+0+150+0+0+0),pixelHeight:698,pixelWidth:1022,positionX:\"left\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 200px) / 3, 1px)`,src:\"https://framerusercontent.com/images/MoXahAGTezGQmmPuJSpjOLPUWQ.png\",srcSet:\"https://framerusercontent.com/images/MoXahAGTezGQmmPuJSpjOLPUWQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/MoXahAGTezGQmmPuJSpjOLPUWQ.png 1022w\"}},WpCIbgkLd:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+971+50+0+0+150+0+845+0+0),pixelHeight:698,pixelWidth:1022,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,src:\"https://framerusercontent.com/images/MoXahAGTezGQmmPuJSpjOLPUWQ.png\",srcSet:\"https://framerusercontent.com/images/MoXahAGTezGQmmPuJSpjOLPUWQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/MoXahAGTezGQmmPuJSpjOLPUWQ.png 1022w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+886+100+0+0+150+0+0+0),pixelHeight:698,pixelWidth:1022,positionX:\"left\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 200px) / 3, 1px)`,src:\"https://framerusercontent.com/images/MoXahAGTezGQmmPuJSpjOLPUWQ.png\",srcSet:\"https://framerusercontent.com/images/MoXahAGTezGQmmPuJSpjOLPUWQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/MoXahAGTezGQmmPuJSpjOLPUWQ.png 1022w\"},className:\"framer-1j375of\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iahdim\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-116v73k\",\"data-styles-preset\":\"gOjRqHu4S\",children:\"Recap\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-144ivnp\",\"data-styles-preset\":\"KcUpCwhm3\",children:\"Recap\"})}),className:\"framer-16rp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",children:\"Capture everything said at your event and instantly create a summary in one click for multiple goals.\"})}),className:\"framer-1hjs73b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-as3wee\",\"data-framer-name\":\"use-cases-new\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jj8vfm\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+860+100+1480.5+100+0+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+894+100+602+100+0+0+0},WpCIbgkLd:{y:(componentViewport?.y||0)+0+971+50+1450.5+100+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+886+100+655.5+100+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xjwxfa-container\",nodeId:\"twZZY91Rw\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Badge,{abNWj2a4p:\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\",DTEBE1LHR:\"USE CASES\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"twZZY91Rw\",j7oQQHdIz:\"var(--token-b988d70e-4e2a-47cf-8199-0fece17bfdfe, rgb(0, 0, 254))\",layoutId:\"twZZY91Rw\",mQiWJf8Hp:\"var(--token-79cc7236-ec94-4b2c-8a64-ba34fdc7c370, rgb(234, 242, 255))\",variant:\"A1hLNSIZ_\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1qogos3\",\"data-styles-preset\":\"waIKCrlqu\",style:{\"--framer-text-alignment\":\"center\"},children:\"Facilitate any events you attend\"})}),className:\"framer-1djbaq3\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+860+100+1480.5+100+106},PqpaQgc5e:{width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+894+100+602+100+106},WpCIbgkLd:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+971+50+1450.5+100+106}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:520,width:\"1280px\",y:(componentViewport?.y||0)+0+886+100+655.5+100+106,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cct39u-container\",nodeId:\"dSYoCy0eT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"GL12cUzwk\"},PqpaQgc5e:{variant:\"Lc1zdY1RM\"},WpCIbgkLd:{variant:\"Lc1zdY1RM\"}},children:/*#__PURE__*/_jsx(FeatureSection,{height:\"100%\",id:\"dSYoCy0eT\",layoutId:\"dSYoCy0eT\",MyzOwQ53a:\"Make your international conferences, seminars, and events truly global. Our web-app offers real-time voice translation, allowing participants from different countries to engage fully, breaking down language barriers and fostering a more inclusive experience.\",NacojSf_1:addImageAlt({src:\"https://framerusercontent.com/images/upZLH4sYOmOsvYDNbZgUJyoFgPo.png\",srcSet:\"https://framerusercontent.com/images/upZLH4sYOmOsvYDNbZgUJyoFgPo.png?scale-down-to=512 512w,https://framerusercontent.com/images/upZLH4sYOmOsvYDNbZgUJyoFgPo.png 949w\"},\"\"),Pn08AubqI:\"Enable seamless communication in conferences & events.\",style:{width:\"100%\"},variant:\"vlKoatX9W\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+860+100+1480.5+100+626},PqpaQgc5e:{width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+894+100+602+100+626},WpCIbgkLd:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+971+50+1450.5+100+626}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:520,width:\"1280px\",y:(componentViewport?.y||0)+0+886+100+655.5+100+626,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6cw0qi-container\",nodeId:\"d37VLJ5er\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"GL12cUzwk\"},PqpaQgc5e:{variant:\"Lc1zdY1RM\"},WpCIbgkLd:{variant:\"Lc1zdY1RM\"}},children:/*#__PURE__*/_jsx(FeatureSection,{height:\"100%\",id:\"d37VLJ5er\",layoutId:\"d37VLJ5er\",MyzOwQ53a:\"Make training inclusive, actionable, and easy to digest with our real time and post event services\",NacojSf_1:addImageAlt({src:\"https://framerusercontent.com/images/TOGiECkMY7o01TJ7MMU0wuWrCw.png\",srcSet:\"https://framerusercontent.com/images/TOGiECkMY7o01TJ7MMU0wuWrCw.png?scale-down-to=512 512w,https://framerusercontent.com/images/TOGiECkMY7o01TJ7MMU0wuWrCw.png 949w\"},\"\"),Pn08AubqI:\"Facilitate corporate training & development\",style:{width:\"100%\"},variant:\"M2SieRvQ3\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+860+100+1480.5+100+1146},PqpaQgc5e:{width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+894+100+602+100+1146},WpCIbgkLd:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+971+50+1450.5+100+1146}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:520,width:\"1280px\",y:(componentViewport?.y||0)+0+886+100+655.5+100+1146,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fnyldy-container\",nodeId:\"a_Qckcqkk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"GL12cUzwk\"},PqpaQgc5e:{variant:\"Lc1zdY1RM\"},WpCIbgkLd:{variant:\"Lc1zdY1RM\"}},children:/*#__PURE__*/_jsx(FeatureSection,{height:\"100%\",id:\"a_Qckcqkk\",layoutId:\"a_Qckcqkk\",MyzOwQ53a:\"Turn your meetings into actionable insights with AI-generated summaries and key action items. Ensure seamless communication with real-time transcriptions and translations, making every discussion more inclusive and impactful.\",NacojSf_1:addImageAlt({src:\"https://framerusercontent.com/images/F3h4bV8QNUEYjIFKzmOXLbvBdD8.png\",srcSet:\"https://framerusercontent.com/images/F3h4bV8QNUEYjIFKzmOXLbvBdD8.png?scale-down-to=512 512w,https://framerusercontent.com/images/F3h4bV8QNUEYjIFKzmOXLbvBdD8.png 979w\"},\"\"),Pn08AubqI:\"Craft your AI-powered meeting summaries and insights\",style:{width:\"100%\"},variant:\"vlKoatX9W\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-129d3rw\",\"data-framer-name\":\"how it works (new)\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7r7vx5\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-15oqh1s\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19aq8hw\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1phx8xb\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+860+100+3266.5+60+0+0+0+0+0+0+0+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+894+100+2388+100+0+0+0+0+0+0+0+0+0},WpCIbgkLd:{y:(componentViewport?.y||0)+0+971+50+3236.5+60+0+0+0+0+0+50+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+886+100+2441.5+100+0+0+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gh04hy-container\",nodeId:\"mbbFhjLMB\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{abNWj2a4p:\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\",DTEBE1LHR:\"HOW IT WORKS\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"mbbFhjLMB\",j7oQQHdIz:\"var(--token-b988d70e-4e2a-47cf-8199-0fece17bfdfe, rgb(0, 0, 254))\",layoutId:\"mbbFhjLMB\",mQiWJf8Hp:\"var(--token-79cc7236-ec94-4b2c-8a64-ba34fdc7c370, rgb(234, 242, 255))\",variant:\"A1hLNSIZ_\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1qogos3\",\"data-styles-preset\":\"waIKCrlqu\",style:{\"--framer-text-alignment\":\"center\"},children:\"Simple yet effective solutions for events and conferences\"})}),className:\"framer-8encl8\",\"data-framer-name\":\"Live messaging. limi\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{height:248,width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1180px)`,y:(componentViewport?.y||0)+0+860+100+3266.5+60+0+0+0+0+0+0+146},PqpaQgc5e:{width:`min(${componentViewport?.width||\"100vw\"} - 120px, 1180px)`,y:(componentViewport?.y||0)+0+894+100+2388+100+0+0+0+0+0+0+146},WpCIbgkLd:{height:351,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1180px) - 80px)`,y:(componentViewport?.y||0)+0+971+50+3236.5+60+0+0+0+0+0+50+146}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:536,width:\"928px\",y:(componentViewport?.y||0)+0+886+100+2441.5+100+0+0+0+0+0+0+146,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-voi1x4-container\",nodeId:\"c_GXvAVBe\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{style:{height:\"100%\",maxHeight:\"100%\",width:\"100%\"},variant:\"V2CfqMTrR\"},WpCIbgkLd:{style:{height:\"100%\",maxHeight:\"100%\",width:\"100%\"},variant:\"V2CfqMTrR\"}},children:/*#__PURE__*/_jsx(HowItWorksInteraction,{height:\"100%\",id:\"c_GXvAVBe\",layoutId:\"c_GXvAVBe\",style:{width:\"100%\"},variant:\"SA2TFxB3f\",width:\"100%\"})})})})})]})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-155kb7t\",\"data-framer-name\":\"Features\",id:elementId6,ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ki0ny4\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-114jssf\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fldpmy\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+4730.5+50+0+0+0+0+0+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+4264+60+0+0+0+0+0+0+0},WpCIbgkLd:{y:(componentViewport?.y||0)+0+4914.5+50+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+4309.5+100+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1d07cm8-container\",nodeId:\"wmuYHiUOn\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{abNWj2a4p:\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\",DTEBE1LHR:\"FEATURES\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"wmuYHiUOn\",j7oQQHdIz:\"var(--token-b988d70e-4e2a-47cf-8199-0fece17bfdfe, rgb(0, 0, 254))\",layoutId:\"wmuYHiUOn\",mQiWJf8Hp:\"var(--token-79cc7236-ec94-4b2c-8a64-ba34fdc7c370, rgb(234, 242, 255))\",variant:\"A1hLNSIZ_\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1qogos3\",\"data-styles-preset\":\"waIKCrlqu\",style:{\"--framer-text-alignment\":\"center\"},children:\"Powerful features tailored to your needs\"})}),className:\"framer-11kit8\",\"data-framer-name\":\"Live messaging. limi\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w8vdwa\",\"data-framer-name\":\"Features Card Block\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18xard2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:\"350px\",y:(componentViewport?.y||0)+0+4730.5+50+0+0+150+0+0+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+4264+60+0+0+150+0+0+0},WpCIbgkLd:{width:`calc((${componentViewport?.width||\"100vw\"} - 80px) * 0.8)`,y:(componentViewport?.y||0)+0+4914.5+50+0+0+150+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:248,width:`max((${componentViewport?.width||\"100vw\"} - 168px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4309.5+100+0+0+150+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y067l6-container\",nodeId:\"nuWZBbngU\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WpCIbgkLd:{QCU9Jk4kB:\"Platform agnostic\"}},children:/*#__PURE__*/_jsx(FeatureCard,{AcK1FdgYt:true,C61oJi4fb:\"var(--token-607f4dd0-6262-4d67-8ce1-e151d2b2ec1d, rgb(250, 252, 255))\",enz2a1Khk:\"Translingo is compatible with all conference platforms and video call apps.\",height:\"100%\",id:\"nuWZBbngU\",layoutId:\"nuWZBbngU\",QCU9Jk4kB:\"Platform Agnostic\",qJ7dCCiMu:\"Graph\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:\"350px\",y:(componentViewport?.y||0)+0+4730.5+50+0+0+150+0+0+0+248},PqpaQgc5e:{y:(componentViewport?.y||0)+0+4264+60+0+0+150+0+0+0},WpCIbgkLd:{width:`calc((${componentViewport?.width||\"100vw\"} - 80px) * 0.8)`,y:(componentViewport?.y||0)+0+4914.5+50+0+0+150+0+0+0+272}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:248,width:`max((${componentViewport?.width||\"100vw\"} - 168px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4309.5+100+0+0+150+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ibwxyw-container\",nodeId:\"S7803eIlW\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeatureCard,{AcK1FdgYt:true,C61oJi4fb:\"var(--token-607f4dd0-6262-4d67-8ce1-e151d2b2ec1d, rgb(250, 252, 255))\",enz2a1Khk:\"Access live speaker transcriptions via a simple web link, for either speaker or attendees\",height:\"100%\",id:\"S7803eIlW\",layoutId:\"S7803eIlW\",QCU9Jk4kB:\"No App Download\",qJ7dCCiMu:\"IntersectSquare\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:\"350px\",y:(componentViewport?.y||0)+0+4730.5+50+0+0+150+0+0+0+496},PqpaQgc5e:{y:(componentViewport?.y||0)+0+4264+60+0+0+150+0+0+0},WpCIbgkLd:{width:`calc((${componentViewport?.width||\"100vw\"} - 80px) * 0.8)`,y:(componentViewport?.y||0)+0+4914.5+50+0+0+150+0+0+0+544}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:248,width:`max((${componentViewport?.width||\"100vw\"} - 168px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4309.5+100+0+0+150+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hsr3vk-container\",nodeId:\"fsy4R3dmh\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeatureCard,{AcK1FdgYt:true,C61oJi4fb:\"var(--token-607f4dd0-6262-4d67-8ce1-e151d2b2ec1d, rgb(250, 252, 255))\",enz2a1Khk:\"Connecting Translingo to your A/V setup takes under 2 minutes. It works instantly with any equipment linked to your device.\",height:\"100%\",id:\"fsy4R3dmh\",layoutId:\"fsy4R3dmh\",QCU9Jk4kB:\"Minimal Setup\",qJ7dCCiMu:\"Anchor\",style:{width:\"100%\"},width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WpCIbgkLd:{height:248,width:`calc((${componentViewport?.width||\"100vw\"} - 80px) * 0.8)`,y:(componentViewport?.y||0)+0+4914.5+50+0+0+150+0+0+0+816}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-is4m7h-container hidden-72rtr7 hidden-1uu7l1z hidden-ujtbii\",nodeId:\"ix4XVUy8Z\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeatureCard,{AcK1FdgYt:true,C61oJi4fb:\"var(--token-607f4dd0-6262-4d67-8ce1-e151d2b2ec1d, rgb(250, 252, 255))\",enz2a1Khk:\"Scaling your event to multiple languages doesn't have to cost an arm and a leg.\",height:\"100%\",id:\"ix4XVUy8Z\",layoutId:\"ix4XVUy8Z\",QCU9Jk4kB:\"Cost efficient \",qJ7dCCiMu:\"Money\",style:{width:\"100%\"},width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WpCIbgkLd:{height:248,width:`calc((${componentViewport?.width||\"100vw\"} - 80px) * 0.8)`,y:(componentViewport?.y||0)+0+4914.5+50+0+0+150+0+0+0+1088}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yzhccc-container hidden-72rtr7 hidden-1uu7l1z hidden-ujtbii\",nodeId:\"UfAfuMX_G\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeatureCard,{AcK1FdgYt:true,C61oJi4fb:\"var(--token-607f4dd0-6262-4d67-8ce1-e151d2b2ec1d, rgb(250, 252, 255))\",enz2a1Khk:\"Seamless communication without language barriers\",height:\"100%\",id:\"UfAfuMX_G\",layoutId:\"UfAfuMX_G\",QCU9Jk4kB:\"60+ languages supported\",qJ7dCCiMu:\"Bandaids\",style:{width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hwxbvz hidden-qqyzon\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+4730.5+50+0+0+150+0+744+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+4264+60+0+0+150+0+272+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:248,width:`calc((${componentViewport?.width||\"100vw\"} - 120px) * 0.3)`,y:(componentViewport?.y||0)+0+4309.5+100+0+0+150+0+272+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-63knen-container\",nodeId:\"TX7UUNLf2\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeatureCard,{AcK1FdgYt:true,C61oJi4fb:\"var(--token-607f4dd0-6262-4d67-8ce1-e151d2b2ec1d, rgb(250, 252, 255))\",enz2a1Khk:\"Scaling your event to multiple languages doesn't have to cost an arm and a leg.\",height:\"100%\",id:\"TX7UUNLf2\",layoutId:\"TX7UUNLf2\",QCU9Jk4kB:\"Cost Efficient \",qJ7dCCiMu:\"Money\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+4730.5+50+0+0+150+0+744+0+248},PqpaQgc5e:{y:(componentViewport?.y||0)+0+4264+60+0+0+150+0+272+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:248,width:`calc((${componentViewport?.width||\"100vw\"} - 120px) * 0.3)`,y:(componentViewport?.y||0)+0+4309.5+100+0+0+150+0+272+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14oeeyv-container\",nodeId:\"QTDxPi2_Q\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeatureCard,{AcK1FdgYt:true,C61oJi4fb:\"var(--token-607f4dd0-6262-4d67-8ce1-e151d2b2ec1d, rgb(250, 252, 255))\",enz2a1Khk:\"Seamless communication without language barriers\",height:\"100%\",id:\"QTDxPi2_Q\",layoutId:\"QTDxPi2_Q\",QCU9Jk4kB:\"60+ Languages Supported\",qJ7dCCiMu:\"Bandaids\",style:{width:\"100%\"},width:\"100%\"})})})})]})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-udlfp0\",\"data-framer-name\":\"Blog\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fbqtm7\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+6220.5+50+0+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+5054+100+0+0+0},WpCIbgkLd:{y:(componentViewport?.y||0)+0+6500.5+50+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+5179.5+100+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref8,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8umt2j-container\",nodeId:\"LsBVQzEfI\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{abNWj2a4p:\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\",DTEBE1LHR:\"BLOG\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"LsBVQzEfI\",j7oQQHdIz:\"var(--token-b988d70e-4e2a-47cf-8199-0fece17bfdfe, rgb(0, 0, 254))\",layoutId:\"LsBVQzEfI\",mQiWJf8Hp:\"var(--token-79cc7236-ec94-4b2c-8a64-ba34fdc7c370, rgb(234, 242, 255))\",variant:\"A1hLNSIZ_\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1qogos3\",\"data-styles-preset\":\"waIKCrlqu\",style:{\"--framer-text-alignment\":\"center\"},children:\"From our Blog\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref8,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1qogos3\",\"data-styles-preset\":\"waIKCrlqu\",children:\"From our Blog\"})}),className:\"framer-w1f6wa\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f0dh58\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WpCIbgkLd:{query:{from:{alias:\"vVZaRttGW\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"vVZaRttGW\",name:\"wR752i2OM\",type:\"Identifier\"},{collection:\"vVZaRttGW\",name:\"ZVhKDtWyE\",type:\"Identifier\"},{collection:\"vVZaRttGW\",name:\"X3LNSX4KS\",type:\"Identifier\"},{collection:\"vVZaRttGW\",name:\"Lx_TFXkL0\",type:\"Identifier\"},{collection:\"vVZaRttGW\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"vVZaRttGW\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"vVZaRttGW\",name:\"wR752i2OM\",type:\"Identifier\"},{collection:\"vVZaRttGW\",name:\"ZVhKDtWyE\",type:\"Identifier\"},{collection:\"vVZaRttGW\",name:\"X3LNSX4KS\",type:\"Identifier\"},{collection:\"vVZaRttGW\",name:\"Lx_TFXkL0\",type:\"Identifier\"},{collection:\"vVZaRttGW\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idvVZaRttGW,Lx_TFXkL0:Lx_TFXkL0vVZaRttGW,wR752i2OM:wR752i2OMvVZaRttGW,X3LNSX4KS:X3LNSX4KSvVZaRttGW,ZVhKDtWyE:ZVhKDtWyEvVZaRttGW},index)=>{wR752i2OMvVZaRttGW??=\"\";X3LNSX4KSvVZaRttGW??=\"\";Lx_TFXkL0vVZaRttGW??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`vVZaRttGW-${idvVZaRttGW}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{wR752i2OM:wR752i2OMvVZaRttGW},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{wR752i2OM:wR752i2OMvVZaRttGW},webPageId:\"CcQek4coT\"},motionChild:true,nodeId:\"FF7N9z4eR\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1oomehv framer-lux5qc\",\"data-framer-name\":\"Blog-Module\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6220.5+50+164+0+772.8+0+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1180px)`,...toResponsiveImage(ZVhKDtWyEvVZaRttGW)}},PqpaQgc5e:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5054+100+164+0+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) - 64px) / 3, 200px)`,...toResponsiveImage(ZVhKDtWyEvVZaRttGW)}},WpCIbgkLd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6500.5+50+164+0+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1180px) - 24px) / 2, 200px)`,...toResponsiveImage(ZVhKDtWyEvVZaRttGW)}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5179.5+100+164+0+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) - 64px) / 3, 200px)`,...toResponsiveImage(ZVhKDtWyEvVZaRttGW)},className:\"framer-xmysw7\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l4ozdk\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dbh81q\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fu80cv\",\"data-framer-name\":\"Module-Section-Badge\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNzAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.24px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(0, 0, 254)\"},children:\"Blog\"})}),className:\"framer-803vfq\",\"data-framer-name\":\"Text\",fonts:[\"GF;Be Vietnam Pro-700\"],text:X3LNSX4KSvVZaRttGW,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d78lqw\",\"data-styles-preset\":\"rHs4MAikW\",style:{\"--framer-text-color\":\"var(--token-9c7a41c5-517c-4dd3-a573-a2bcde21e5ce, rgb(131, 139, 163))\"},children:\"Content\"})}),className:\"framer-12s12v6\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dkkbgp\",\"data-framer-name\":\"Middle\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-116v73k\",\"data-styles-preset\":\"gOjRqHu4S\",children:\"AI Action Summit 2025 in Paris: Pioneering a New Era of Global AI Innovation\"})}),className:\"framer-jtccqg\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],text:Lx_TFXkL0vVZaRttGW,verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})},idvVZaRttGW);})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XaWxCCBNU\"},implicitPathVariables:undefined},{href:{webPageId:\"XaWxCCBNU\"},implicitPathVariables:undefined},{href:{webPageId:\"XaWxCCBNU\"},implicitPathVariables:undefined},{href:{webPageId:\"XaWxCCBNU\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+6220.5+50+1343.2},PqpaQgc5e:{y:(componentViewport?.y||0)+0+5054+100+618.4},WpCIbgkLd:{y:(componentViewport?.y||0)+0+6500.5+50+940.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+5179.5+100+618.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mlh6q6-container\",nodeId:\"TGosIi0EZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{vjZWklrqI:resolvedLinks1[2]},PqpaQgc5e:{vjZWklrqI:resolvedLinks1[1]},WpCIbgkLd:{vjZWklrqI:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(Buttons,{bOwGuieUn:\"ArrowRight\",height:\"100%\",id:\"TGosIi0EZ\",layoutId:\"TGosIi0EZ\",variant:\"JiPCvmJb6\",vjZWklrqI:resolvedLinks1[0],width:\"100%\",xEfGs_njT:\"View all\"})})})})})})]}),/*#__PURE__*/_jsxs(MotionSectionWithOptimizedAppearEffect,{animate:animation14,className:\"framer-enfmvr\",\"data-framer-appear-id\":\"enfmvr\",\"data-framer-name\":\"Blog\",id:elementId8,initial:animation15,optimized:true,ref:ref9,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n7g4zc\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+7712.7+50+0+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+5921.4+100+0+0+0},WpCIbgkLd:{y:(componentViewport?.y||0)+0+7590.3+50+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+6046.9+100+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xfl63n-container\",nodeId:\"cwjfh4pr4\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{abNWj2a4p:\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\",DTEBE1LHR:\"RECAP HUB\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"cwjfh4pr4\",j7oQQHdIz:\"var(--token-b988d70e-4e2a-47cf-8199-0fece17bfdfe, rgb(0, 0, 254))\",layoutId:\"cwjfh4pr4\",mQiWJf8Hp:\"var(--token-79cc7236-ec94-4b2c-8a64-ba34fdc7c370, rgb(234, 242, 255))\",variant:\"A1hLNSIZ_\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x1vb7d\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-l2g52s\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1qogos3\",\"data-styles-preset\":\"waIKCrlqu\",style:{\"--framer-text-alignment\":\"center\"},children:\"From our Recap Hub\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1qogos3\",\"data-styles-preset\":\"waIKCrlqu\",children:\"From our Recap Hub\"})}),className:\"framer-rvuvym\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",style:{\"--framer-text-alignment\":\"center\"},children:\"Discover the possibilities of Translingo through Recap Hub\"})}),className:\"framer-14651nm\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+7712.7+50+280},PqpaQgc5e:{width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+5921.4+100+280},WpCIbgkLd:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+7590.3+50+280}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:620,width:\"1160px\",y:(componentViewport?.y||0)+0+6046.9+100+280,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7wjhhc-container\",nodeId:\"EIdvrJTmQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"fBlu_A0VS\"},WpCIbgkLd:{variant:\"AVFjxaLyv\"}},children:/*#__PURE__*/_jsx(HomepageUploaded,{height:\"100%\",id:\"EIdvrJTmQ\",layoutId:\"EIdvrJTmQ\",style:{width:\"100%\"},variant:\"jIubLQijU\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"oXkbmC9vq\"},implicitPathVariables:undefined},{href:{webPageId:\"oXkbmC9vq\"},implicitPathVariables:undefined},{href:{webPageId:\"oXkbmC9vq\"},implicitPathVariables:undefined},{href:{webPageId:\"oXkbmC9vq\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+7712.7+50+940},PqpaQgc5e:{y:(componentViewport?.y||0)+0+5921.4+100+940},WpCIbgkLd:{y:(componentViewport?.y||0)+0+7590.3+50+940}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+6046.9+100+940,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1esprbv-container\",nodeId:\"EAN79dgWk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{vjZWklrqI:resolvedLinks2[2]},PqpaQgc5e:{vjZWklrqI:resolvedLinks2[1]},WpCIbgkLd:{vjZWklrqI:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(Buttons,{bOwGuieUn:\"ArrowRight\",height:\"100%\",id:\"EAN79dgWk\",layoutId:\"EAN79dgWk\",variant:\"JiPCvmJb6\",vjZWklrqI:resolvedLinks2[0],width:\"100%\",xEfGs_njT:\"View all\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+8801.7},PqpaQgc5e:{y:(componentViewport?.y||0)+0+7110.4},WpCIbgkLd:{y:(componentViewport?.y||0)+0+8729.3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:471,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7235.9,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16qlq98-container\",nodeId:\"wxTKsF2d5\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"dDfMYNgad\"},WpCIbgkLd:{variant:\"orCSEo06g\"}},children:/*#__PURE__*/_jsx(CTALaunch,{height:\"100%\",id:\"wxTKsF2d5\",layoutId:\"wxTKsF2d5\",style:{width:\"100%\"},variant:\"mFnVyQAza\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+9272.7},PqpaQgc5e:{y:(componentViewport?.y||0)+0+7581.4},WpCIbgkLd:{y:(componentViewport?.y||0)+0+9200.3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7706.9,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t267rc-container\",nodeId:\"UdEOtZZh7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"IFm_nl1xI\"},WpCIbgkLd:{variant:\"kQqvilYYp\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"UdEOtZZh7\",layoutId:\"UdEOtZZh7\",style:{width:\"100%\"},variant:\"o7RQfo0Of\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-t0eGy.framer-lux5qc, .framer-t0eGy .framer-lux5qc { display: block; }\",\".framer-t0eGy.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-t0eGy .framer-wde3po-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-t0eGy .framer-19vndmf-container { bottom: 30px; flex: none; height: 50px; position: fixed; right: 60px; width: 50px; z-index: 1; }\",\".framer-t0eGy .framer-p9zqaz { align-content: center; align-items: center; background-color: rgba(244, 247, 250, 0.1); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; bottom: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 51px; min-width: 48px; overflow: hidden; padding: 0px; position: fixed; right: 61px; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-t0eGy .framer-1yp8xwc { align-content: center; align-items: center; background-color: var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, #ecf1f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 180px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-1ju9owy { -webkit-filter: blur(40px); background-color: #f8ff37; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(40px); flex: none; height: 279px; left: -164px; position: absolute; top: -39px; width: 300px; z-index: 1; }\",\".framer-t0eGy .framer-aeug7n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 670px; justify-content: center; left: calc(69.84375000000003% - 772px / 2); overflow: visible; padding: 0px; position: absolute; top: -400px; width: 772px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-t0eGy .framer-1xze9nt { -webkit-filter: blur(90px); background-color: #371ae7; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(90px); flex: none; height: 618px; position: absolute; right: -283px; top: 0px; width: 838px; z-index: 1; }\",\".framer-t0eGy .framer-1j0lqfi { -webkit-filter: blur(82px); background-color: #371ae7; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; filter: blur(82px); flex: none; height: 514px; left: -310px; position: absolute; top: 31px; width: 791px; z-index: 1; }\",\".framer-t0eGy .framer-1d13stc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 670px; justify-content: center; left: calc(18.046875000000025% - 772px / 2); overflow: visible; padding: 0px; position: absolute; top: -400px; width: 772px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-t0eGy .framer-1k27plj { -webkit-filter: blur(76px); background-color: #f8ff37; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(76px); flex: none; height: 523px; position: absolute; right: 268px; top: 119px; width: 536px; z-index: 1; }\",\".framer-t0eGy .framer-184ujgq { -webkit-filter: blur(95px); background-color: #02ed2a; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(95px); flex: none; height: 345px; overflow: hidden; position: absolute; right: 62px; top: 123px; width: 345px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-t0eGy .framer-17lqxjv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-9o2owm, .framer-t0eGy .framer-1x3pvyx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1180px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-1ng0tkn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-1uywckh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 82%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-t0eGy .framer-u9emc7 { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 50%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-t0eGy .framer-225hdf, .framer-t0eGy .framer-140l3ni { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-t0eGy .framer-15xh9ns-container, .framer-t0eGy .framer-l0sl95-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-t0eGy .framer-1rzjr3l-container, .framer-t0eGy .framer-y18b0c-container { align-self: stretch; flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-t0eGy .framer-179pww0 { -webkit-filter: blur(60px); background-color: #02ed2a; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(60px); flex: none; height: 147px; left: 113px; overflow: hidden; position: absolute; top: -47px; width: 235px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-t0eGy .framer-1dxeq1f { -webkit-filter: blur(60px); background-color: #371ae7; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; filter: blur(60px); flex: none; height: 204px; position: absolute; right: -208px; top: 11px; width: 308px; z-index: 1; }\",\".framer-t0eGy .framer-60uh4j { -webkit-filter: blur(60px); background-color: #371ae7; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; filter: blur(60px); flex: none; height: 201px; position: absolute; right: 0px; top: -101px; width: 291px; z-index: 1; }\",\".framer-t0eGy .framer-159lrmq, .framer-t0eGy .framer-19aq8hw, .framer-t0eGy .framer-ki0ny4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-1omfrau { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 163px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-dicak8 { flex: none; height: 100%; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-t0eGy .framer-1tci2wj { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-t0eGy .framer-7fi725 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-t0eGy .framer-tgsn9w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-t0eGy .framer-1io66l9-container { aspect-ratio: 0.7 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 25px; }\",\".framer-t0eGy .framer-1lij97z-container, .framer-t0eGy .framer-1vhoc1a-container, .framer-t0eGy .framer-ws4qbd-container { aspect-ratio: 0.6944444444444444 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 25px; }\",\".framer-t0eGy .framer-57di0, .framer-t0eGy .framer-w1f6wa, .framer-t0eGy .framer-rvuvym { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-t0eGy .framer-vb01t2 { -webkit-filter: blur(40px); background-color: #f8ff37; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(40px); flex: none; height: 199px; left: -108px; position: absolute; top: -6px; width: 188px; z-index: 1; }\",\".framer-t0eGy .framer-1ws81o0 { -webkit-filter: blur(60px); background-color: #02ed2a; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(60px); flex: none; height: 127px; left: calc(45.89743589743592% - 183px / 2); overflow: hidden; position: absolute; top: -23px; width: 183px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-t0eGy .framer-14u3o1d { -webkit-filter: blur(60px); background-color: #371ae7; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; filter: blur(60px); flex: none; height: 139px; position: absolute; right: -119px; top: 39px; width: 160px; z-index: 1; }\",\".framer-t0eGy .framer-yhsiao { -webkit-filter: blur(60px); background-color: #371ae7; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; filter: blur(60px); flex: none; height: 136px; left: 208px; position: absolute; top: -37px; width: 152px; z-index: 1; }\",\".framer-t0eGy .framer-f4by95, .framer-t0eGy .framer-w8vdwa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-1dwtrdd { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-t0eGy .framer-y8vpj9-container, .framer-t0eGy .framer-1es3ew3-container { flex: none; height: 65px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-11baocz { aspect-ratio: 1.841726618705036 / 1; height: var(--framer-aspect-ratio-supported, 40px); opacity: 0.6; overflow: visible; position: relative; width: 74px; }\",\".framer-t0eGy .framer-wb9dzl { aspect-ratio: 4 / 1; height: var(--framer-aspect-ratio-supported, 40px); opacity: 0.4; overflow: visible; position: relative; width: 160px; }\",\".framer-t0eGy .framer-1rfot19 { aspect-ratio: 0.9828009828009828 / 1; height: var(--framer-aspect-ratio-supported, 40px); opacity: 0.6; overflow: visible; position: relative; width: 39px; }\",\".framer-t0eGy .framer-1w0kti2 { aspect-ratio: 2.808988764044944 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 112px; }\",\".framer-t0eGy .framer-127cvxm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-8ywt19 { aspect-ratio: 1.841726618705036 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 39px); mix-blend-mode: luminosity; position: relative; width: 72px; }\",\".framer-t0eGy .framer-1abhe58 { aspect-ratio: 4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 41px); mix-blend-mode: luminosity; opacity: 0.4; position: relative; width: 164px; }\",\".framer-t0eGy .framer-1tiuqnq { aspect-ratio: 2.8171701431274414 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 37px); mix-blend-mode: luminosity; opacity: 0.4; position: relative; width: 103px; }\",\".framer-t0eGy .framer-1ee9gjl { aspect-ratio: 0.9828009075588651 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 41px); mix-blend-mode: luminosity; opacity: 0.4; position: relative; width: 40px; }\",\".framer-t0eGy .framer-1t5bw2x { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 0px 0px 0px; position: relative; scroll-margin-top: 80px; width: 100%; }\",\".framer-t0eGy .framer-4ly1yc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 60px 100px 60px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-1p3udwe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-1fl3pqc-container, .framer-t0eGy .framer-1xjwxfa-container, .framer-t0eGy .framer-1gh04hy-container, .framer-t0eGy .framer-1d07cm8-container, .framer-t0eGy .framer-8umt2j-container, .framer-t0eGy .framer-mlh6q6-container, .framer-t0eGy .framer-xfl63n-container, .framer-t0eGy .framer-1esprbv-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-t0eGy .framer-1fvuriy, .framer-t0eGy .framer-11kit8, .framer-t0eGy .framer-jtccqg { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-t0eGy .framer-101ph1i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-1uw9gnp, .framer-t0eGy .framer-msufjw { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 383px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-t0eGy .framer-17jlu78, .framer-t0eGy .framer-ymlzhq, .framer-t0eGy .framer-1j375of { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 249px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-t0eGy .framer-k815ev, .framer-t0eGy .framer-1glaojn, .framer-t0eGy .framer-iahdim { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-18gl7is, .framer-t0eGy .framer-shh0gc, .framer-t0eGy .framer-16rp { --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; width: auto; }\",\".framer-t0eGy .framer-b4mmkw, .framer-t0eGy .framer-1chvs0o, .framer-t0eGy .framer-1hjs73b { --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-t0eGy .framer-1lng9ua { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 406px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-t0eGy .framer-as3wee { align-content: center; align-items: center; background-color: var(--token-607f4dd0-6262-4d67-8ce1-e151d2b2ec1d, #fafcff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 60px 20px 60px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-1jj8vfm, .framer-t0eGy .framer-1phx8xb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-1djbaq3, .framer-t0eGy .framer-8encl8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-t0eGy .framer-1cct39u-container, .framer-t0eGy .framer-6cw0qi-container, .framer-t0eGy .framer-fnyldy-container { flex: none; height: auto; position: relative; width: 1280px; }\",\".framer-t0eGy .framer-129d3rw { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 100px 60px 100px 60px; position: relative; width: 1280px; }\",\".framer-t0eGy .framer-7r7vx5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1180px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-15oqh1s, .framer-t0eGy .framer-114jssf, .framer-t0eGy .framer-l2g52s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-voi1x4-container { flex: none; height: auto; position: relative; width: 80%; }\",\".framer-t0eGy .framer-155kb7t { align-content: center; align-items: center; background-color: var(--token-607f4dd0-6262-4d67-8ce1-e151d2b2ec1d, #fafcff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 100px 60px 100px 60px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-fldpmy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 80%; }\",\".framer-t0eGy .framer-18xard2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-y067l6-container, .framer-t0eGy .framer-1ibwxyw-container, .framer-t0eGy .framer-1hsr3vk-container, .framer-t0eGy .framer-is4m7h-container, .framer-t0eGy .framer-1yzhccc-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-t0eGy .framer-1hwxbvz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-63knen-container, .framer-t0eGy .framer-14oeeyv-container { flex: none; height: auto; position: relative; width: 30%; }\",\".framer-t0eGy .framer-udlfp0 { align-content: center; align-items: center; background-color: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 60px 100px 60px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-fbqtm7, .framer-t0eGy .framer-n7g4zc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-f0dh58 { display: grid; flex: none; gap: 32px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; max-width: 1180px; padding: 0px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-1oomehv { align-content: flex-start; align-items: flex-start; align-self: start; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-t0eGy .framer-xmysw7 { aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 274px); position: relative; width: 100%; }\",\".framer-t0eGy .framer-1l4ozdk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-dbh81q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-fu80cv { align-content: center; align-items: center; background-color: var(--token-79cc7236-ec94-4b2c-8a64-ba34fdc7c370, #eaf2ff); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 8px 14px 8px 14px; position: relative; width: min-content; }\",\".framer-t0eGy .framer-803vfq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-t0eGy .framer-12s12v6 { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-t0eGy .framer-1dkkbgp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-enfmvr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 60px 100px 60px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-t0eGy .framer-1x1vb7d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t0eGy .framer-14651nm { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-t0eGy .framer-7wjhhc-container { flex: none; height: auto; position: relative; width: 1160px; }\",\".framer-t0eGy .framer-16qlq98-container, .framer-t0eGy .framer-1t267rc-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-t0eGy.framer-72rtr7, .framer-t0eGy .framer-p9zqaz, .framer-t0eGy .framer-1yp8xwc, .framer-t0eGy .framer-aeug7n, .framer-t0eGy .framer-1d13stc, .framer-t0eGy .framer-17lqxjv, .framer-t0eGy .framer-9o2owm, .framer-t0eGy .framer-1ng0tkn, .framer-t0eGy .framer-225hdf, .framer-t0eGy .framer-159lrmq, .framer-t0eGy .framer-1x3pvyx, .framer-t0eGy .framer-1omfrau, .framer-t0eGy .framer-7fi725, .framer-t0eGy .framer-tgsn9w, .framer-t0eGy .framer-140l3ni, .framer-t0eGy .framer-f4by95, .framer-t0eGy .framer-127cvxm, .framer-t0eGy .framer-1t5bw2x, .framer-t0eGy .framer-4ly1yc, .framer-t0eGy .framer-1p3udwe, .framer-t0eGy .framer-101ph1i, .framer-t0eGy .framer-1uw9gnp, .framer-t0eGy .framer-k815ev, .framer-t0eGy .framer-msufjw, .framer-t0eGy .framer-1glaojn, .framer-t0eGy .framer-1lng9ua, .framer-t0eGy .framer-iahdim, .framer-t0eGy .framer-as3wee, .framer-t0eGy .framer-1jj8vfm, .framer-t0eGy .framer-129d3rw, .framer-t0eGy .framer-7r7vx5, .framer-t0eGy .framer-15oqh1s, .framer-t0eGy .framer-19aq8hw, .framer-t0eGy .framer-1phx8xb, .framer-t0eGy .framer-155kb7t, .framer-t0eGy .framer-ki0ny4, .framer-t0eGy .framer-114jssf, .framer-t0eGy .framer-fldpmy, .framer-t0eGy .framer-w8vdwa, .framer-t0eGy .framer-18xard2, .framer-t0eGy .framer-1hwxbvz, .framer-t0eGy .framer-udlfp0, .framer-t0eGy .framer-fbqtm7, .framer-t0eGy .framer-1oomehv, .framer-t0eGy .framer-1l4ozdk, .framer-t0eGy .framer-fu80cv, .framer-t0eGy .framer-1dkkbgp, .framer-t0eGy .framer-enfmvr, .framer-t0eGy .framer-n7g4zc, .framer-t0eGy .framer-1x1vb7d, .framer-t0eGy .framer-l2g52s { gap: 0px; } .framer-t0eGy.framer-72rtr7 > *, .framer-t0eGy .framer-1t5bw2x > *, .framer-t0eGy .framer-as3wee > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-t0eGy.framer-72rtr7 > :first-child, .framer-t0eGy .framer-1yp8xwc > :first-child, .framer-t0eGy .framer-17lqxjv > :first-child, .framer-t0eGy .framer-9o2owm > :first-child, .framer-t0eGy .framer-1ng0tkn > :first-child, .framer-t0eGy .framer-159lrmq > :first-child, .framer-t0eGy .framer-1x3pvyx > :first-child, .framer-t0eGy .framer-1omfrau > :first-child, .framer-t0eGy .framer-f4by95 > :first-child, .framer-t0eGy .framer-1t5bw2x > :first-child, .framer-t0eGy .framer-4ly1yc > :first-child, .framer-t0eGy .framer-1p3udwe > :first-child, .framer-t0eGy .framer-1uw9gnp > :first-child, .framer-t0eGy .framer-k815ev > :first-child, .framer-t0eGy .framer-msufjw > :first-child, .framer-t0eGy .framer-1glaojn > :first-child, .framer-t0eGy .framer-1lng9ua > :first-child, .framer-t0eGy .framer-iahdim > :first-child, .framer-t0eGy .framer-as3wee > :first-child, .framer-t0eGy .framer-1jj8vfm > :first-child, .framer-t0eGy .framer-129d3rw > :first-child, .framer-t0eGy .framer-7r7vx5 > :first-child, .framer-t0eGy .framer-15oqh1s > :first-child, .framer-t0eGy .framer-19aq8hw > :first-child, .framer-t0eGy .framer-1phx8xb > :first-child, .framer-t0eGy .framer-155kb7t > :first-child, .framer-t0eGy .framer-ki0ny4 > :first-child, .framer-t0eGy .framer-114jssf > :first-child, .framer-t0eGy .framer-fldpmy > :first-child, .framer-t0eGy .framer-w8vdwa > :first-child, .framer-t0eGy .framer-udlfp0 > :first-child, .framer-t0eGy .framer-fbqtm7 > :first-child, .framer-t0eGy .framer-1oomehv > :first-child, .framer-t0eGy .framer-1l4ozdk > :first-child, .framer-t0eGy .framer-1dkkbgp > :first-child, .framer-t0eGy .framer-enfmvr > :first-child, .framer-t0eGy .framer-n7g4zc > :first-child, .framer-t0eGy .framer-1x1vb7d > :first-child, .framer-t0eGy .framer-l2g52s > :first-child { margin-top: 0px; } .framer-t0eGy.framer-72rtr7 > :last-child, .framer-t0eGy .framer-1yp8xwc > :last-child, .framer-t0eGy .framer-17lqxjv > :last-child, .framer-t0eGy .framer-9o2owm > :last-child, .framer-t0eGy .framer-1ng0tkn > :last-child, .framer-t0eGy .framer-159lrmq > :last-child, .framer-t0eGy .framer-1x3pvyx > :last-child, .framer-t0eGy .framer-1omfrau > :last-child, .framer-t0eGy .framer-f4by95 > :last-child, .framer-t0eGy .framer-1t5bw2x > :last-child, .framer-t0eGy .framer-4ly1yc > :last-child, .framer-t0eGy .framer-1p3udwe > :last-child, .framer-t0eGy .framer-1uw9gnp > :last-child, .framer-t0eGy .framer-k815ev > :last-child, .framer-t0eGy .framer-msufjw > :last-child, .framer-t0eGy .framer-1glaojn > :last-child, .framer-t0eGy .framer-1lng9ua > :last-child, .framer-t0eGy .framer-iahdim > :last-child, .framer-t0eGy .framer-as3wee > :last-child, .framer-t0eGy .framer-1jj8vfm > :last-child, .framer-t0eGy .framer-129d3rw > :last-child, .framer-t0eGy .framer-7r7vx5 > :last-child, .framer-t0eGy .framer-15oqh1s > :last-child, .framer-t0eGy .framer-19aq8hw > :last-child, .framer-t0eGy .framer-1phx8xb > :last-child, .framer-t0eGy .framer-155kb7t > :last-child, .framer-t0eGy .framer-ki0ny4 > :last-child, .framer-t0eGy .framer-114jssf > :last-child, .framer-t0eGy .framer-fldpmy > :last-child, .framer-t0eGy .framer-w8vdwa > :last-child, .framer-t0eGy .framer-udlfp0 > :last-child, .framer-t0eGy .framer-fbqtm7 > :last-child, .framer-t0eGy .framer-1oomehv > :last-child, .framer-t0eGy .framer-1l4ozdk > :last-child, .framer-t0eGy .framer-1dkkbgp > :last-child, .framer-t0eGy .framer-enfmvr > :last-child, .framer-t0eGy .framer-n7g4zc > :last-child, .framer-t0eGy .framer-1x1vb7d > :last-child, .framer-t0eGy .framer-l2g52s > :last-child { margin-bottom: 0px; } .framer-t0eGy .framer-p9zqaz > *, .framer-t0eGy .framer-aeug7n > *, .framer-t0eGy .framer-1d13stc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-t0eGy .framer-p9zqaz > :first-child, .framer-t0eGy .framer-aeug7n > :first-child, .framer-t0eGy .framer-1d13stc > :first-child, .framer-t0eGy .framer-225hdf > :first-child, .framer-t0eGy .framer-7fi725 > :first-child, .framer-t0eGy .framer-tgsn9w > :first-child, .framer-t0eGy .framer-140l3ni > :first-child, .framer-t0eGy .framer-127cvxm > :first-child, .framer-t0eGy .framer-101ph1i > :first-child, .framer-t0eGy .framer-18xard2 > :first-child, .framer-t0eGy .framer-1hwxbvz > :first-child, .framer-t0eGy .framer-fu80cv > :first-child { margin-left: 0px; } .framer-t0eGy .framer-p9zqaz > :last-child, .framer-t0eGy .framer-aeug7n > :last-child, .framer-t0eGy .framer-1d13stc > :last-child, .framer-t0eGy .framer-225hdf > :last-child, .framer-t0eGy .framer-7fi725 > :last-child, .framer-t0eGy .framer-tgsn9w > :last-child, .framer-t0eGy .framer-140l3ni > :last-child, .framer-t0eGy .framer-127cvxm > :last-child, .framer-t0eGy .framer-101ph1i > :last-child, .framer-t0eGy .framer-18xard2 > :last-child, .framer-t0eGy .framer-1hwxbvz > :last-child, .framer-t0eGy .framer-fu80cv > :last-child { margin-right: 0px; } .framer-t0eGy .framer-1yp8xwc > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-t0eGy .framer-17lqxjv > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-t0eGy .framer-9o2owm > *, .framer-t0eGy .framer-1x3pvyx > *, .framer-t0eGy .framer-f4by95 > *, .framer-t0eGy .framer-15oqh1s > *, .framer-t0eGy .framer-114jssf > *, .framer-t0eGy .framer-w8vdwa > *, .framer-t0eGy .framer-1oomehv > *, .framer-t0eGy .framer-1l4ozdk > *, .framer-t0eGy .framer-l2g52s > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-t0eGy .framer-1ng0tkn > *, .framer-t0eGy .framer-1omfrau > *, .framer-t0eGy .framer-1p3udwe > *, .framer-t0eGy .framer-fldpmy > *, .framer-t0eGy .framer-1dkkbgp > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-t0eGy .framer-225hdf > *, .framer-t0eGy .framer-7fi725 > *, .framer-t0eGy .framer-140l3ni > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-t0eGy .framer-159lrmq > *, .framer-t0eGy .framer-4ly1yc > *, .framer-t0eGy .framer-129d3rw > *, .framer-t0eGy .framer-7r7vx5 > *, .framer-t0eGy .framer-19aq8hw > *, .framer-t0eGy .framer-155kb7t > *, .framer-t0eGy .framer-ki0ny4 > *, .framer-t0eGy .framer-enfmvr > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-t0eGy .framer-tgsn9w > *, .framer-t0eGy .framer-fu80cv > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-t0eGy .framer-127cvxm > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-t0eGy .framer-101ph1i > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-t0eGy .framer-1uw9gnp > *, .framer-t0eGy .framer-msufjw > *, .framer-t0eGy .framer-1lng9ua > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-t0eGy .framer-k815ev > *, .framer-t0eGy .framer-1glaojn > *, .framer-t0eGy .framer-iahdim > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-t0eGy .framer-1jj8vfm > *, .framer-t0eGy .framer-1phx8xb > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-t0eGy .framer-18xard2 > *, .framer-t0eGy .framer-1hwxbvz > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-t0eGy .framer-udlfp0 > *, .framer-t0eGy .framer-1x1vb7d > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-t0eGy .framer-fbqtm7 > *, .framer-t0eGy .framer-n7g4zc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,\"@media (min-width: 992px) and (max-width: 1279px) { .framer-t0eGy.framer-72rtr7 { width: 992px; } .framer-t0eGy .framer-wde3po-container { order: 0; } .framer-t0eGy .framer-19vndmf-container { order: 3; } .framer-t0eGy .framer-p9zqaz { order: 4; } .framer-t0eGy .framer-1yp8xwc { order: 1; padding: 180px 40px 80px 40px; } .framer-t0eGy .framer-17lqxjv { padding: 0px; } .framer-t0eGy .framer-9o2owm { gap: 32px; } .framer-t0eGy .framer-1uywckh, .framer-t0eGy .framer-u9emc7, .framer-t0eGy .framer-14651nm { width: 80%; } .framer-t0eGy .framer-127cvxm { gap: 80px; } .framer-t0eGy .framer-1t5bw2x { order: 2; } .framer-t0eGy .framer-1uw9gnp, .framer-t0eGy .framer-1lng9ua { gap: 4px; height: 352px; } .framer-t0eGy .framer-17jlu78 { height: 57%; overflow: visible; will-change: unset; } .framer-t0eGy .framer-k815ev, .framer-t0eGy .framer-1glaojn, .framer-t0eGy .framer-iahdim { gap: 12px; } .framer-t0eGy .framer-msufjw { gap: 4px; height: 329px; } .framer-t0eGy .framer-ymlzhq { height: 61%; } .framer-t0eGy .framer-1j375of { height: 57%; } .framer-t0eGy .framer-1cct39u-container, .framer-t0eGy .framer-6cw0qi-container, .framer-t0eGy .framer-fnyldy-container, .framer-t0eGy .framer-129d3rw, .framer-t0eGy .framer-voi1x4-container, .framer-t0eGy .framer-7wjhhc-container { width: 100%; } .framer-t0eGy .framer-155kb7t { order: 10; padding: 60px; } .framer-t0eGy .framer-11kit8 { width: 70%; } .framer-t0eGy .framer-udlfp0 { order: 11; } .framer-t0eGy .framer-xmysw7 { height: var(--framer-aspect-ratio-supported, 202px); } .framer-t0eGy .framer-enfmvr { order: 12; } .framer-t0eGy .framer-16qlq98-container { order: 13; } .framer-t0eGy .framer-1t267rc-container { order: 14; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-t0eGy .framer-9o2owm, .framer-t0eGy .framer-127cvxm, .framer-t0eGy .framer-1uw9gnp, .framer-t0eGy .framer-k815ev, .framer-t0eGy .framer-msufjw, .framer-t0eGy .framer-1glaojn, .framer-t0eGy .framer-1lng9ua, .framer-t0eGy .framer-iahdim { gap: 0px; } .framer-t0eGy .framer-9o2owm > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-t0eGy .framer-9o2owm > :first-child, .framer-t0eGy .framer-1uw9gnp > :first-child, .framer-t0eGy .framer-k815ev > :first-child, .framer-t0eGy .framer-msufjw > :first-child, .framer-t0eGy .framer-1glaojn > :first-child, .framer-t0eGy .framer-1lng9ua > :first-child, .framer-t0eGy .framer-iahdim > :first-child { margin-top: 0px; } .framer-t0eGy .framer-9o2owm > :last-child, .framer-t0eGy .framer-1uw9gnp > :last-child, .framer-t0eGy .framer-k815ev > :last-child, .framer-t0eGy .framer-msufjw > :last-child, .framer-t0eGy .framer-1glaojn > :last-child, .framer-t0eGy .framer-1lng9ua > :last-child, .framer-t0eGy .framer-iahdim > :last-child { margin-bottom: 0px; } .framer-t0eGy .framer-127cvxm > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-t0eGy .framer-127cvxm > :first-child { margin-left: 0px; } .framer-t0eGy .framer-127cvxm > :last-child { margin-right: 0px; } .framer-t0eGy .framer-1uw9gnp > *, .framer-t0eGy .framer-msufjw > *, .framer-t0eGy .framer-1lng9ua > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-t0eGy .framer-k815ev > *, .framer-t0eGy .framer-1glaojn > *, .framer-t0eGy .framer-iahdim > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }}\",\"@media (max-width: 575px) { .framer-t0eGy.framer-72rtr7 { width: 390px; } .framer-t0eGy .framer-1yp8xwc { gap: 40px; padding: 160px 20px 40px 20px; } .framer-t0eGy .framer-17lqxjv { gap: 32px; padding: 0px; } .framer-t0eGy .framer-9o2owm { gap: 40px; } .framer-t0eGy .framer-1ng0tkn { gap: 24px; } .framer-t0eGy .framer-1uywckh, .framer-t0eGy .framer-u9emc7, .framer-t0eGy .framer-15xh9ns-container, .framer-t0eGy .framer-1djbaq3, .framer-t0eGy .framer-1cct39u-container, .framer-t0eGy .framer-6cw0qi-container, .framer-t0eGy .framer-fnyldy-container, .framer-t0eGy .framer-8encl8, .framer-t0eGy .framer-63knen-container, .framer-t0eGy .framer-14oeeyv-container, .framer-t0eGy .framer-7wjhhc-container { width: 100%; } .framer-t0eGy .framer-225hdf { flex-direction: column; width: 100%; } .framer-t0eGy .framer-1rzjr3l-container { align-self: unset; width: 100%; } .framer-t0eGy .framer-1t5bw2x { padding: 100px 0px 50px 0px; } .framer-t0eGy .framer-4ly1yc { gap: 60px; padding: 0px 20px 60px 20px; } .framer-t0eGy .framer-101ph1i { flex-direction: column; } .framer-t0eGy .framer-1uw9gnp, .framer-t0eGy .framer-msufjw, .framer-t0eGy .framer-1lng9ua { flex: none; gap: 16px; width: 100%; } .framer-t0eGy .framer-k815ev, .framer-t0eGy .framer-1glaojn, .framer-t0eGy .framer-iahdim { gap: 12px; } .framer-t0eGy .framer-ymlzhq { height: 250px; } .framer-t0eGy .framer-as3wee { padding: 100px 0px 20px 0px; } .framer-t0eGy .framer-129d3rw { padding: 60px 20px 0px 20px; width: 100%; } .framer-t0eGy .framer-voi1x4-container { height: 248px; max-height: 300px; width: 100%; } .framer-t0eGy .framer-155kb7t, .framer-t0eGy .framer-udlfp0, .framer-t0eGy .framer-enfmvr { padding: 50px 20px 50px 20px; } .framer-t0eGy .framer-w8vdwa { gap: 0px; } .framer-t0eGy .framer-18xard2 { flex-direction: column; gap: 0px; justify-content: flex-start; width: 350px; } .framer-t0eGy .framer-y067l6-container, .framer-t0eGy .framer-1ibwxyw-container, .framer-t0eGy .framer-1hsr3vk-container { flex: none; width: 100%; } .framer-t0eGy .framer-1hwxbvz { align-content: center; align-items: center; flex-direction: column; gap: 0px; } .framer-t0eGy .framer-w1f6wa, .framer-t0eGy .framer-rvuvym { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-t0eGy .framer-f0dh58 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; justify-content: flex-start; } .framer-t0eGy .framer-1oomehv { align-self: unset; gap: 16px; } .framer-t0eGy .framer-xmysw7 { height: var(--framer-aspect-ratio-supported, 263px); } .framer-t0eGy .framer-1l4ozdk { gap: 16px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-t0eGy .framer-1yp8xwc, .framer-t0eGy .framer-17lqxjv, .framer-t0eGy .framer-9o2owm, .framer-t0eGy .framer-1ng0tkn, .framer-t0eGy .framer-225hdf, .framer-t0eGy .framer-4ly1yc, .framer-t0eGy .framer-101ph1i, .framer-t0eGy .framer-1uw9gnp, .framer-t0eGy .framer-k815ev, .framer-t0eGy .framer-msufjw, .framer-t0eGy .framer-1glaojn, .framer-t0eGy .framer-1lng9ua, .framer-t0eGy .framer-iahdim, .framer-t0eGy .framer-w8vdwa, .framer-t0eGy .framer-18xard2, .framer-t0eGy .framer-1hwxbvz, .framer-t0eGy .framer-f0dh58, .framer-t0eGy .framer-1oomehv, .framer-t0eGy .framer-1l4ozdk { gap: 0px; } .framer-t0eGy .framer-1yp8xwc > *, .framer-t0eGy .framer-9o2owm > *, .framer-t0eGy .framer-101ph1i > *, .framer-t0eGy .framer-f0dh58 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-t0eGy .framer-1yp8xwc > :first-child, .framer-t0eGy .framer-17lqxjv > :first-child, .framer-t0eGy .framer-9o2owm > :first-child, .framer-t0eGy .framer-1ng0tkn > :first-child, .framer-t0eGy .framer-225hdf > :first-child, .framer-t0eGy .framer-4ly1yc > :first-child, .framer-t0eGy .framer-101ph1i > :first-child, .framer-t0eGy .framer-1uw9gnp > :first-child, .framer-t0eGy .framer-k815ev > :first-child, .framer-t0eGy .framer-msufjw > :first-child, .framer-t0eGy .framer-1glaojn > :first-child, .framer-t0eGy .framer-1lng9ua > :first-child, .framer-t0eGy .framer-iahdim > :first-child, .framer-t0eGy .framer-w8vdwa > :first-child, .framer-t0eGy .framer-18xard2 > :first-child, .framer-t0eGy .framer-1hwxbvz > :first-child, .framer-t0eGy .framer-f0dh58 > :first-child, .framer-t0eGy .framer-1oomehv > :first-child, .framer-t0eGy .framer-1l4ozdk > :first-child { margin-top: 0px; } .framer-t0eGy .framer-1yp8xwc > :last-child, .framer-t0eGy .framer-17lqxjv > :last-child, .framer-t0eGy .framer-9o2owm > :last-child, .framer-t0eGy .framer-1ng0tkn > :last-child, .framer-t0eGy .framer-225hdf > :last-child, .framer-t0eGy .framer-4ly1yc > :last-child, .framer-t0eGy .framer-101ph1i > :last-child, .framer-t0eGy .framer-1uw9gnp > :last-child, .framer-t0eGy .framer-k815ev > :last-child, .framer-t0eGy .framer-msufjw > :last-child, .framer-t0eGy .framer-1glaojn > :last-child, .framer-t0eGy .framer-1lng9ua > :last-child, .framer-t0eGy .framer-iahdim > :last-child, .framer-t0eGy .framer-w8vdwa > :last-child, .framer-t0eGy .framer-18xard2 > :last-child, .framer-t0eGy .framer-1hwxbvz > :last-child, .framer-t0eGy .framer-f0dh58 > :last-child, .framer-t0eGy .framer-1oomehv > :last-child, .framer-t0eGy .framer-1l4ozdk > :last-child { margin-bottom: 0px; } .framer-t0eGy .framer-17lqxjv > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-t0eGy .framer-1ng0tkn > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-t0eGy .framer-225hdf > *, .framer-t0eGy .framer-1uw9gnp > *, .framer-t0eGy .framer-msufjw > *, .framer-t0eGy .framer-1lng9ua > *, .framer-t0eGy .framer-1oomehv > *, .framer-t0eGy .framer-1l4ozdk > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-t0eGy .framer-4ly1yc > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-t0eGy .framer-k815ev > *, .framer-t0eGy .framer-1glaojn > *, .framer-t0eGy .framer-iahdim > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-t0eGy .framer-w8vdwa > *, .framer-t0eGy .framer-18xard2 > *, .framer-t0eGy .framer-1hwxbvz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\",\"@media (min-width: 576px) and (max-width: 991px) { .framer-t0eGy.framer-72rtr7 { width: 576px; } .framer-t0eGy .framer-p9zqaz { left: 0px; right: unset; } .framer-t0eGy .framer-1yp8xwc { gap: 56px; padding: 160px 20px 60px 20px; } .framer-t0eGy .framer-1ju9owy { order: 1; } .framer-t0eGy .framer-179pww0 { order: 5; } .framer-t0eGy .framer-1dxeq1f { order: 6; } .framer-t0eGy .framer-60uh4j { order: 7; } .framer-t0eGy .framer-159lrmq { order: 8; } .framer-t0eGy .framer-dicak8 { order: 0; } .framer-t0eGy .framer-f4by95 { order: 13; overflow: hidden; } .framer-t0eGy .framer-1t5bw2x { padding: 50px 0px 0px 0px; } .framer-t0eGy .framer-4ly1yc { padding: 0px 40px 50px 40px; } .framer-t0eGy .framer-1fvuriy { width: 80%; } .framer-t0eGy .framer-101ph1i { flex-direction: column; } .framer-t0eGy .framer-1uw9gnp, .framer-t0eGy .framer-msufjw, .framer-t0eGy .framer-1lng9ua { flex: none; gap: 32px; width: 100%; } .framer-t0eGy .framer-as3wee { padding: 100px 0px 20px 0px; } .framer-t0eGy .framer-1jj8vfm { padding: 0px 40px 0px 40px; } .framer-t0eGy .framer-1cct39u-container, .framer-t0eGy .framer-6cw0qi-container, .framer-t0eGy .framer-fnyldy-container, .framer-t0eGy .framer-7wjhhc-container { width: 100%; } .framer-t0eGy .framer-129d3rw { padding: 60px 0px 0px 0px; width: 100%; } .framer-t0eGy .framer-19aq8hw, .framer-t0eGy .framer-155kb7t, .framer-t0eGy .framer-udlfp0 { padding: 50px 40px 50px 40px; } .framer-t0eGy .framer-voi1x4-container { height: 351px; max-height: 400px; width: 100%; } .framer-t0eGy .framer-w8vdwa { gap: 32px; } .framer-t0eGy .framer-18xard2 { flex-direction: column; width: 80%; } .framer-t0eGy .framer-y067l6-container, .framer-t0eGy .framer-1ibwxyw-container, .framer-t0eGy .framer-1hsr3vk-container, .framer-t0eGy .framer-is4m7h-container, .framer-t0eGy .framer-1yzhccc-container { flex: none; width: 100%; } .framer-t0eGy .framer-f0dh58 { gap: 24px; grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-t0eGy .framer-1oomehv, .framer-t0eGy .framer-1l4ozdk { gap: 16px; } .framer-t0eGy .framer-xmysw7 { height: var(--framer-aspect-ratio-supported, 177px); } .framer-t0eGy .framer-enfmvr { padding: 50px 40px 100px 40px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-t0eGy .framer-1yp8xwc, .framer-t0eGy .framer-101ph1i, .framer-t0eGy .framer-1uw9gnp, .framer-t0eGy .framer-msufjw, .framer-t0eGy .framer-1lng9ua, .framer-t0eGy .framer-w8vdwa, .framer-t0eGy .framer-18xard2, .framer-t0eGy .framer-f0dh58, .framer-t0eGy .framer-1oomehv, .framer-t0eGy .framer-1l4ozdk { gap: 0px; } .framer-t0eGy .framer-1yp8xwc > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-t0eGy .framer-1yp8xwc > :first-child, .framer-t0eGy .framer-101ph1i > :first-child, .framer-t0eGy .framer-1uw9gnp > :first-child, .framer-t0eGy .framer-msufjw > :first-child, .framer-t0eGy .framer-1lng9ua > :first-child, .framer-t0eGy .framer-w8vdwa > :first-child, .framer-t0eGy .framer-18xard2 > :first-child, .framer-t0eGy .framer-1oomehv > :first-child, .framer-t0eGy .framer-1l4ozdk > :first-child { margin-top: 0px; } .framer-t0eGy .framer-1yp8xwc > :last-child, .framer-t0eGy .framer-101ph1i > :last-child, .framer-t0eGy .framer-1uw9gnp > :last-child, .framer-t0eGy .framer-msufjw > :last-child, .framer-t0eGy .framer-1lng9ua > :last-child, .framer-t0eGy .framer-w8vdwa > :last-child, .framer-t0eGy .framer-18xard2 > :last-child, .framer-t0eGy .framer-1oomehv > :last-child, .framer-t0eGy .framer-1l4ozdk > :last-child { margin-bottom: 0px; } .framer-t0eGy .framer-101ph1i > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-t0eGy .framer-1uw9gnp > *, .framer-t0eGy .framer-msufjw > *, .framer-t0eGy .framer-1lng9ua > *, .framer-t0eGy .framer-w8vdwa > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-t0eGy .framer-18xard2 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-t0eGy .framer-f0dh58 > *, .framer-t0eGy .framer-f0dh58 > :first-child, .framer-t0eGy .framer-f0dh58 > :last-child { margin: 0px; } .framer-t0eGy .framer-1oomehv > *, .framer-t0eGy .framer-1l4ozdk > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7968\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"PqpaQgc5e\":{\"layout\":[\"fixed\",\"auto\"]},\"J3uB7PlJN\":{\"layout\":[\"fixed\",\"auto\"]},\"WpCIbgkLd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"uAiJIOvqF\":{\"pattern\":\":uAiJIOvqF\",\"name\":\"change-nav\"},\"BKELtp_qv\":{\"pattern\":\":BKELtp_qv\",\"name\":\"change-nav\"},\"SqZiK_A17\":{\"pattern\":\":SqZiK_A17\",\"name\":\"section-2\"},\"bG0HDyVqv\":{\"pattern\":\":bG0HDyVqv\",\"name\":\"solutions-new\"},\"sh9BTY1V3\":{\"pattern\":\":sh9BTY1V3\",\"name\":\"use-cases-new\"},\"TBkoari1f\":{\"pattern\":\":TBkoari1f\",\"name\":\"how-it-works-new\"},\"SPLtAiMzX\":{\"pattern\":\":SPLtAiMzX\",\"name\":\"features\"},\"SdJnzaJMc\":{\"pattern\":\":SdJnzaJMc\",\"name\":\"blog\"},\"TfaP_m3e8\":{\"pattern\":\":TfaP_m3e8\",\"name\":\"blog\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-t0eGy\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7968,width:1280};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:\"Be Vietnam Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl83T7wrcwap.woff2\",weight:\"500\"},{family:\"Be Vietnam Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HSMIF83T7wrcwap.woff2\",weight:\"700\"}]},...NavigationFonts,...ScrollToTopButtonFonts,...ButtonsFonts,...AvatarFonts,...TickerFonts,...BadgeFonts,...FeatureSectionFonts,...HowItWorksInteractionFonts,...FeatureCardFonts,...HomepageUploadedFonts,...CTALaunchFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"7968\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"uAiJIOvqF\\\":{\\\"pattern\\\":\\\":uAiJIOvqF\\\",\\\"name\\\":\\\"change-nav\\\"},\\\"BKELtp_qv\\\":{\\\"pattern\\\":\\\":BKELtp_qv\\\",\\\"name\\\":\\\"change-nav\\\"},\\\"SqZiK_A17\\\":{\\\"pattern\\\":\\\":SqZiK_A17\\\",\\\"name\\\":\\\"section-2\\\"},\\\"bG0HDyVqv\\\":{\\\"pattern\\\":\\\":bG0HDyVqv\\\",\\\"name\\\":\\\"solutions-new\\\"},\\\"sh9BTY1V3\\\":{\\\"pattern\\\":\\\":sh9BTY1V3\\\",\\\"name\\\":\\\"use-cases-new\\\"},\\\"TBkoari1f\\\":{\\\"pattern\\\":\\\":TBkoari1f\\\",\\\"name\\\":\\\"how-it-works-new\\\"},\\\"SPLtAiMzX\\\":{\\\"pattern\\\":\\\":SPLtAiMzX\\\",\\\"name\\\":\\\"features\\\"},\\\"SdJnzaJMc\\\":{\\\"pattern\\\":\\\":SdJnzaJMc\\\",\\\"name\\\":\\\"blog\\\"},\\\"TfaP_m3e8\\\":{\\\"pattern\\\":\\\":TfaP_m3e8\\\",\\\"name\\\":\\\"blog\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PqpaQgc5e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J3uB7PlJN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WpCIbgkLd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1280\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "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", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "textBG", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "shYZ8xZ6P", "HJYYGhJC3", "b4EsfMO6DwoijqL5Mw", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FrameraL1M4pcFt", "withCSS", "aL1M4pcFt_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "background", "chooseIcon", "featureDescription", "height", "iconVisibility", "id", "platformAgnostic", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "enz2a1Khk", "QCU9Jk4kB", "qJ7dCCiMu", "C61oJi4fb", "AcK1FdgYt", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "Icon", "RichText2", "css", "FramerfbekXnNAc", "withCSS", "fbekXnNAc_default", "addPropertyControls", "ControlType", "PhosphorControls", "addFonts", "PhosphorFonts", "getFontsFromSharedStyle", "fonts", "ButtonsFonts", "getFonts", "yORaTwldW_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description", "height", "id", "title", "visual", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "NacojSf_1", "Pn08AubqI", "MyzOwQ53a", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "css", "FramerL8yk06JFc", "withCSS", "L8yk06JFc_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "click2", "click3", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Rt2Xq2uAK", "m5lAfPjzm", "C6ETCnAwt", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1jclcdn", "args", "onTapuudjza", "onTap16jlu7v", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "Framerp325mtE1y", "withCSS", "p325mtE1y_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "FERAIDNeL", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap4eoli8", "args", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "RichText2", "css", "FramerDaHaAJ8go", "withCSS", "DaHaAJ8go_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click2", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "KzOhvghDO", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1u5z53g", "args", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "RichText2", "css", "FramerWTlD6tMvM", "withCSS", "WTlD6tMvM_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "HowItWorksTranslationFonts", "getFonts", "DaHaAJ8go_default", "TranscriptionFonts", "WTlD6tMvM_default", "VideoFonts", "Video", "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", "FERAIDNeLus7y93", "args", "KzOhvghDO1fsq7ab", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerUNR8ffawR", "withCSS", "UNR8ffawR_default", "addPropertyControls", "ControlType", "addFonts", "scrollToTop", "window", "ScrollToTopButton", "props", "button", "p", "u", "ref", "ref1", "ref2", "layer", "q", "layer1", "motion", "effectsDefault", "addPropertyControls", "ControlType", "NavigationFonts", "getFonts", "RG7yJog90_default", "NavigationWithVariantAppearEffect", "withVariantAppearEffect", "ScrollToTopButtonFonts", "ScrollToTopButton", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText2", "ButtonsFonts", "yORaTwldW_default", "ContainerWithOptimizedAppearEffect", "Container", "AvatarFonts", "aL1M4pcFt_default", "TickerFonts", "Ticker", "BadgeFonts", "SXR9yB_tn_default", "ContainerWithFX", "withFX", "RichTextWithFX", "MotionDivWithFX", "FeatureSectionFonts", "L8yk06JFc_default", "HowItWorksInteractionFonts", "UNR8ffawR_default", "FeatureCardFonts", "fbekXnNAc_default", "MotionAWithFX", "HomepageUploadedFonts", "p325mtE1y_default", "MotionSectionWithOptimizedAppearEffect", "CTALaunchFonts", "gCkrcTKxp_default", "FooterFonts", "qZ_XI3P7P_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "transition2", "animation1", "animation2", "transition3", "animation3", "animation4", "transition4", "animation5", "transition5", "animation6", "transition6", "animation7", "transition7", "animation8", "addImageAlt", "image", "alt", "animation9", "transition8", "animation10", "animation11", "transition9", "animation12", "transition10", "animation13", "transition11", "transition12", "transition13", "transition14", "transition15", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation14", "animation15", "transition16", "animation16", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "wR752i2OMvVZaRttGW", "ZVhKDtWyEvVZaRttGW", "X3LNSX4KSvVZaRttGW", "zgMbIQQN4ihndCfXTj", "Lx_TFXkL0vVZaRttGW", "idvVZaRttGW", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "elementId", "useRouteElementId", "router", "useRouter", "elementId1", "ref2", "isDisplayed4", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "activeLocaleCode", "useLocaleCode", "textContent", "elementId8", "ref9", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "Link", "x", "ResolveLinks", "resolvedLinks", "Image2", "getLoadingLazyAtYPosition", "ChildrenCanSuspend", "CWvRL2Z7h_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks1", "resolvedLinks2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
