{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/iOSn79hPPyvwKS85zbhH/2eCyHYWPzK8dRsZU2iwE/EW5SaNYw3.js", "ssg:https://framerusercontent.com/modules/3HuRnZr4APxMRAocRTlu/jqgzNPE5SoVa2B2Ebab0/IUpReIVnf.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 (8dd9d28)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useRouter,useVariantState,withCSS,withFX,withOptimizedAppearEffect}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 ButtonDefault from\"https://framerusercontent.com/modules/ZjwHEsYp7VcQf6l5VC7o/FyP5kbsvfr7bi9AhPzev/QbJpAlr3_.js\";const VideoFonts=getFonts(Video);const ButtonDefaultFonts=getFonts(ButtonDefault);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const ButtonDefaultControls=getPropertyControls(ButtonDefault);const VideoControls=getPropertyControls(Video);const cycleOrder=[\"wkkIvGpsr\",\"KuUw_EOaX\",\"fYhrII78I\",\"pcvg0I3Of\",\"mfpK2jfFu\",\"CLvjWQnDa\",\"BUbQJNFZ8\",\"vhJTdo3ig\"];const serializationHash=\"framer-WLvVh\";const variantClassNames={BUbQJNFZ8:\"framer-v-1i4bsvc\",CLvjWQnDa:\"framer-v-r7vmrg\",fYhrII78I:\"framer-v-zqvqsl\",KuUw_EOaX:\"framer-v-15o9r8h\",mfpK2jfFu:\"framer-v-oq3yes\",pcvg0I3Of:\"framer-v-ctm82e\",vhJTdo3ig:\"framer-v-1jlmcx2\",wkkIvGpsr:\"framer-v-1gz3z6m\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};const transition1={delay:0,duration:0,ease:[.44,0,.56,1],type:\"tween\"};const transition2={bounce:.2,delay:0,duration:3,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition3={bounce:.3,delay:0,duration:2,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const transition5={bounce:.2,delay:0,duration:2,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={bounce:.2,delay:1,duration:2,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const 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 humanReadableEnumMap={\"Variant 1\":\"QolK2t8fC\",\"Variant 2\":\"kGii8sTuY\",\"Variant 3\":\"QM9KNRaS5\",\"Variant 4\":\"i5cGcROYf\",\"Variant 5 Mobile\":\"TN5D5n4Rt\",\"Variant 6\":\"k7ukAjEye\"};const humanReadableEnumMap1={Horizontal:\"row\",Vertical:\"column\"};const humanReadableEnumMap2={\"Scale Down\":\"scale-down\",Contain:\"contain\",Cover:\"cover\",Fill:\"fill\",None:\"none\"};const humanReadableVariantMap={\"Slide 2 (defunct)\":\"mfpK2jfFu\",\"Slide 3\":\"fYhrII78I\",\"Slide 4\":\"pcvg0I3Of\",\"Slide 6\":\"KuUw_EOaX\",\"Slide 7\":\"vhJTdo3ig\",\"Slide 8\":\"BUbQJNFZ8\",\"Variant 1\":\"wkkIvGpsr\",\"Variant 5\":\"CLvjWQnDa\"};const getProps=({buttonDirection,buttonGaps,buttonPadding,buttonVariant,carouselGap,carouselPadding,gap,height,id,radius,subtitle,textContainerGap,textContainerPadding,textGap,title,video,videoFitness,width,...props})=>{return{...props,bLiO5Ic_E:carouselPadding??props.bLiO5Ic_E??\"24px 24px 24px 24px\",BrLp64pWG:textContainerGap??props.BrLp64pWG??20,GSifYP8Kv:subtitle??props.GSifYP8Kv??20,IEVIt8tSy:textContainerPadding??props.IEVIt8tSy??\"20px 80px 20px 80px\",izgFTu4eD:buttonPadding??props.izgFTu4eD??\"16px\",kbq2JJwTV:humanReadableEnumMap1[buttonDirection]??buttonDirection??props.kbq2JJwTV??\"row\",Mg4_VA4MX:buttonGaps??props.Mg4_VA4MX??24,NswFkmqQa:radius??props.NswFkmqQa??\"24px\",OJnJihp0F:textGap??props.OJnJihp0F??36,ON_KuALDf:gap??props.ON_KuALDf??10,P7WQ4HLs4:humanReadableEnumMap[buttonVariant]??buttonVariant??props.P7WQ4HLs4??\"QM9KNRaS5\",rsy1z1GD8:video??props.rsy1z1GD8??\"https://framerusercontent.com/assets/DqexjxFIIXdECfWBhsiz3AjDBzE.mp4\",sTHoxj9QF:humanReadableEnumMap2[videoFitness]??videoFitness??props.sTHoxj9QF??\"cover\",tr1aB9NU3:carouselGap??props.tr1aB9NU3??14,variant:humanReadableVariantMap[props.variant]??props.variant??\"wkkIvGpsr\",wCtHL4B0_:title??props.wCtHL4B0_??72};};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,wCtHL4B0_,GSifYP8Kv,NswFkmqQa,ON_KuALDf,IEVIt8tSy,izgFTu4eD,BrLp64pWG,bLiO5Ic_E,OJnJihp0F,P7WQ4HLs4,kbq2JJwTV,Mg4_VA4MX,rsy1z1GD8,tr1aB9NU3,sTHoxj9QF,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wkkIvGpsr\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear19slbfo=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"fYhrII78I\",true),5e3);});const onAppear1kkwoqb=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"vhJTdo3ig\",true),5e3);});const onAppeardps1o3=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"pcvg0I3Of\",true),5e3);});const onAppear1kclv99=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"CLvjWQnDa\",true),5e3);});const onAppearqijzhu=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"KuUw_EOaX\",true),5e3);});const onAppear1y0u6cc=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"wkkIvGpsr\",true),5e3);});const onAppearr9j2xt=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"BUbQJNFZ8\",true),5e3);});const onTapdujtp6=activeVariantCallback(async(...args)=>{setVariant(\"wkkIvGpsr\");});const onTap1ycl1kw=activeVariantCallback(async(...args)=>{setVariant(\"fYhrII78I\");});const onTap3ub12x=activeVariantCallback(async(...args)=>{setVariant(\"pcvg0I3Of\");});const onTap17n7cr4=activeVariantCallback(async(...args)=>{setVariant(\"CLvjWQnDa\");});const onTapi8pb7g=activeVariantCallback(async(...args)=>{setVariant(\"KuUw_EOaX\");});const onTap1u4zdpm=activeVariantCallback(async(...args)=>{setVariant(\"vhJTdo3ig\");});const onTap1xwmkan=activeVariantCallback(async(...args)=>{setVariant(\"BUbQJNFZ8\");});useOnVariantChange(baseVariant,{BUbQJNFZ8:onAppear1y0u6cc,CLvjWQnDa:onAppearqijzhu,default:onAppear19slbfo,fYhrII78I:onAppeardps1o3,KuUw_EOaX:onAppear1kkwoqb,mfpK2jfFu:undefined,pcvg0I3Of:onAppear1kclv99,vhJTdo3ig:onAppearr9j2xt});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(baseVariant===\"BUbQJNFZ8\")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(MotionDivWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1gz3z6m\",className,classNames),\"data-framer-appear-id\":\"1gz3z6m\",\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wkkIvGpsr\",ref:refBinding,style:{borderBottomLeftRadius:radiusForCorner(NswFkmqQa,3),borderBottomRightRadius:radiusForCorner(NswFkmqQa,2),borderTopLeftRadius:radiusForCorner(NswFkmqQa,0),borderTopRightRadius:radiusForCorner(NswFkmqQa,1),...style},...addPropertyOverrides({BUbQJNFZ8:{\"data-framer-name\":\"Slide 8\"},CLvjWQnDa:{\"data-framer-name\":\"Variant 5\"},fYhrII78I:{\"data-framer-name\":\"Slide 3\"},KuUw_EOaX:{__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,\"data-framer-name\":\"Slide 6\",optimized:true},mfpK2jfFu:{\"data-framer-name\":\"Slide 2 (defunct)\",\"data-highlight\":undefined},pcvg0I3Of:{\"data-framer-name\":\"Slide 4\"},vhJTdo3ig:{\"data-framer-name\":\"Slide 7\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1sffsmz-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrFshpKvXCo-container\",nodeId:\"wkkIvGpsrFshpKvXCo\",rendersWithMotion:true,scopeId:\"EW5SaNYw3\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,controls:false,height:\"100%\",id:\"wkkIvGpsrFshpKvXCo\",isMixedBorderRadius:false,layoutId:\"wkkIvGpsrFshpKvXCo\",loop:false,muted:true,objectFit:sTHoxj9QF,playing:true,poster:\"https://framerusercontent.com/images/K8yZ6nMF5EwU4bY0nykPeFq6O3c.png\",posterEnabled:true,srcFile:rsy1z1GD8,srcType:\"Upload\",srcUrl:\"https://cdn-develop.alethea.ai/video/cleopetra.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:12,topRightRadius:12,volume:25,width:\"100%\",...addPropertyOverrides({BUbQJNFZ8:{poster:\"https://framerusercontent.com/images/mIGUnEIi8SgFN1odsDW9laWWrI.png\",srcFile:\"https://framerusercontent.com/assets/1HrVZWBbYG2n8Qse2jAVYL6uok.mp4\",srcUrl:\"https://cdn-develop.alethea.ai/video/meet_the_team.mp4\"},CLvjWQnDa:{poster:\"https://framerusercontent.com/images/aOGatGOivZHh03Nj7Buaqjr4Zpo.png\",srcFile:\"https://framerusercontent.com/assets/nnoAwT7EqLrl0XLDOVtUjVP3Yeo.mp4\",srcUrl:\"https://cdn-develop.alethea.ai/video/nietzche.mp4\"},fYhrII78I:{poster:\"https://framerusercontent.com/images/WKlJnphuWEgGEKbelnDupXWwXjo.png\",srcFile:\"https://framerusercontent.com/assets/y1JNRCS7wEUHN2FAQin6QmXNC84.mp4\",srcUrl:\"https://cdn-develop.alethea.ai/video/oracle.mp4\"},KuUw_EOaX:{backgroundColor:\"rgb(26, 44, 24)\",objectFit:\"cover\",poster:\"https://framerusercontent.com/images/a6kAxQu9jhuYM0lxa9rz8jd1IeQ.png\",srcFile:\"https://framerusercontent.com/assets/2eJXHnbmB3ppxLLex5gUGHIdysQ.mp4\",srcType:\"URL\",srcUrl:\"https://cdn-develop.alethea.ai/video/morgan_2.mp4\"},mfpK2jfFu:{objectFit:\"cover\",srcFile:\"https://framerusercontent.com/assets/Yr2zpWd6FqkTQhsgxOh5L2StYQ.mp4\"},pcvg0I3Of:{poster:\"https://framerusercontent.com/images/wN895wNuw1SV1gBMEzW5HPbhJw0.png\",srcFile:\"https://framerusercontent.com/assets/oJy9Ua77pPsiq40rYSSUkNtiTnw.mp4\",srcUrl:\"https://cdn-develop.alethea.ai/video/bethoven.mp4\"},vhJTdo3ig:{objectFit:\"cover\",poster:\"https://framerusercontent.com/images/yjWNBPT0JLch5ZDkBfKaPmB4VgM.png\",srcFile:\"https://framerusercontent.com/assets/uhEsHIZoRDTuFPElgMGfOzzpv8.mp4\",srcUrl:\"https://cdn-develop.alethea.ai/video/morgan_1.mp4\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-a682e6\",\"data-framer-name\":\"Grey Overlay\",layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrsAiplUPx6\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.26) 62%, rgb(0, 0, 0) 100%)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xr8ekr\",\"data-framer-name\":\"Frame 1321321018\",layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrT2WGoGOM1\",style:{\"--1i9sxys\":numberToPixelString(BrLp64pWG),\"--j99o5e\":numberToPixelString(IEVIt8tSy)},children:[/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-149oxup\",\"data-framer-appear-id\":\"149oxup\",\"data-framer-name\":\"Frame 1321321021\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrAGajHH5dC\",optimized:true,style:{\"--u94q92\":numberToPixelString(OJnJihp0F)},...addPropertyOverrides({fYhrII78I:{animate:animation5},KuUw_EOaX:{animate:animation3,initial:animation4},vhJTdo3ig:{animate:animation6}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kol6ja\",layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrs4FHL5tls\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-wCtHL4B0_-EW5SaNYw3) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:\"Introducing EMOTE-1\"})}),className:\"framer-1gw02in\",\"data-framer-name\":\"Nav Item\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrm4crxRGBJ\",style:{\"--extracted-gdpscs\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"2px\",\"--variable-reference-wCtHL4B0_-EW5SaNYw3\":wCtHL4B0_},variants:{BUbQJNFZ8:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},CLvjWQnDa:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},fYhrII78I:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},KuUw_EOaX:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},mfpK2jfFu:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},pcvg0I3Of:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},vhJTdo3ig:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({BUbQJNFZ8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-wCtHL4B0_-EW5SaNYw3) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Join Our Team\"})})},CLvjWQnDa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-wCtHL4B0_-EW5SaNYw3) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Enhanced Storytelling\"})})},fYhrII78I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-wCtHL4B0_-EW5SaNYw3) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Human-Like Connections\"})})},KuUw_EOaX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-wCtHL4B0_-EW5SaNYw3) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Real - Time Gestures\"})})},mfpK2jfFu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-wCtHL4B0_-EW5SaNYw3) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Transcend Conventional Animation\"})})},pcvg0I3Of:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-wCtHL4B0_-EW5SaNYw3) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Realistic Micro-Expressions\"})})},vhJTdo3ig:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-wCtHL4B0_-EW5SaNYw3) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Integrated Emotional Intelligence\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"calc(var(--variable-reference-GSifYP8Kv-EW5SaNYw3) * 1px)\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"EMOTE-1 is a breakthrough multimodal AI engine that delivers real-time facial expressions, multilingual voices, full-body gestures, and consistent personality, bringing your AI Agents to life with stunning emotional depth.\"})}),className:\"framer-t07z4o\",\"data-framer-name\":\"Nav Item\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrzs_5Rr0r0\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"2px\",\"--variable-reference-GSifYP8Kv-EW5SaNYw3\":GSifYP8Kv},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({BUbQJNFZ8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"calc(var(--variable-reference-GSifYP8Kv-EW5SaNYw3) * 1px)\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Arif Khan, CEO of Alethea AI Labs, is leading the charge in bringing AI Assets to life through highly expressive, collaborative agentic intelligence. Be part of our growing team and help shape the next generation of expressive, intelligent agents\u2014powered by breakthroughs like EMOTE-1.\"})})},CLvjWQnDa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"calc(var(--variable-reference-GSifYP8Kv-EW5SaNYw3) * 1px)\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"EMOTE-1 fuses expression, movement, and voice to elevate your narrative. It equips AI Agents with the emotion and presence needed to make your vision unforgettable.\"})})},fYhrII78I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"calc(var(--variable-reference-GSifYP8Kv-EW5SaNYw3) * 1px)\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"With live emotional responses and authentic gestures, EMOTE-1 creates experiences that resonate deeply with audiences, transforming digital interactions into personal, engaging conversations.\"})})},KuUw_EOaX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"calc(var(--variable-reference-GSifYP8Kv-EW5SaNYw3) * 1px)\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"From expressive faces to synchronized, full-body movement, EMOTE-1 animates characters in real-time, reflecting emotional nuance and matching each gesture to the agent\u2019s unique personality.\"})})},mfpK2jfFu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"calc(var(--variable-reference-GSifYP8Kv-EW5SaNYw3) * 1px)\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"EMOTE-1 surpasses standard animation by delivering fluid, real-time emotional responses and lifelike character dynamics. From subtle nuances to seamless transitions, each AI Agent exudes genuine vitality\u2014redefining the boundaries of immersive experiences.\"})})},pcvg0I3Of:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"calc(var(--variable-reference-GSifYP8Kv-EW5SaNYw3) * 1px)\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"EMOTE-1 captures subtle facial cues, enriching agent interactions with realism that feels deeply human.\"})})},vhJTdo3ig:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"calc(var(--variable-reference-GSifYP8Kv-EW5SaNYw3) * 1px)\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"EMOTE-1 blends emotion, expression, and personality to make every AI Agent feel alive and uniquely self-aware.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5oj9tv\",\"data-framer-name\":\"Frame 1321321018\",layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrpvgW4oQBr\",style:{\"--18cc2js\":kbq2JJwTV,\"--1bvggyh\":numberToPixelString(Mg4_VA4MX)},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YKSK71MOz\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1yqd9om-container\",layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrhGAe8rs9w-container\",nodeId:\"wkkIvGpsrhGAe8rs9w\",rendersWithMotion:true,scopeId:\"EW5SaNYw3\",children:/*#__PURE__*/_jsx(ButtonDefault,{FpzjLqCGl:\"Join the Waitlist to Get API Access\",h8xab94ng:16,height:\"100%\",id:\"wkkIvGpsrhGAe8rs9w\",IfU4zdmqt:\"row\",IlhNeYN_x:\"rgb(242, 242, 242)\",l6UtUgxLR:\"rgb(245, 245, 245)\",layoutId:\"wkkIvGpsrhGAe8rs9w\",mIG0Rua6K:10,QK3U2AnO_:\"36px\",RIAEZgqO7:\"rgba(18, 18, 18, 0.2)\",V2XZctgJ8:\"https://forms.gle/A2XPzmon1t9cNJx19\",variant:P7WQ4HLs4,width:\"100%\",XM0niE4tF:{borderColor:\"rgb(46, 144, 250)\",borderStyle:\"solid\",borderWidth:1},ZZr6z1BZz:numberToPixelString(izgFTu4eD),...addPropertyOverrides({BUbQJNFZ8:{FpzjLqCGl:\"Explore Careers at Alethea AI\",V2XZctgJ8:resolvedLinks[0],ZZr6z1BZz:\"16px\"}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-u5z90u-container\",layoutDependency:layoutDependency,layoutId:\"Dv7hRy8T_-container\",nodeId:\"Dv7hRy8T_\",rendersWithMotion:true,scopeId:\"EW5SaNYw3\",children:/*#__PURE__*/_jsx(ButtonDefault,{FpzjLqCGl:\"Experience It Now\",h8xab94ng:16,height:\"100%\",id:\"Dv7hRy8T_\",IfU4zdmqt:\"row\",IlhNeYN_x:\"rgb(242, 242, 242)\",l6UtUgxLR:\"rgb(245, 245, 245)\",layoutId:\"Dv7hRy8T_\",mIG0Rua6K:10,QK3U2AnO_:\"36px\",RIAEZgqO7:\"rgba(18, 18, 18, 0.2)\",V2XZctgJ8:\"https://aliagents.ai/\",variant:P7WQ4HLs4,width:\"100%\",XM0niE4tF:{borderColor:\"rgb(46, 144, 250)\",borderStyle:\"solid\",borderWidth:1},ZZr6z1BZz:numberToPixelString(izgFTu4eD)})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n2av77\",\"data-framer-name\":\"Frame 1321320793\",layoutDependency:layoutDependency,layoutId:\"wkkIvGpsriM4S3XOPP\",style:{\"--1vpl304\":numberToPixelString(bLiO5Ic_E),\"--yq0eap\":numberToPixelString(ON_KuALDf),backdropFilter:\"blur(4px)\",backgroundColor:\"rgba(122, 125, 127, 0.35)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,WebkitBackdropFilter:\"blur(4px)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8jbin\",\"data-framer-name\":\"Frame 1321320792\",layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrnoHszXeLi\",style:{\"--18jnqhd\":numberToPixelString(tr1aB9NU3)},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bii5k5\",\"data-framer-name\":\"Component 354\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrqequSDD51\",onTap:onTapdujtp6,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gj7fwb\",\"data-framer-name\":\"Rectangle 3\",layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrBylFX5oT8\",style:{backgroundColor:\"rgb(244, 244, 244)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},variants:{BUbQJNFZ8:{backgroundColor:\"rgb(128, 128, 128)\"},CLvjWQnDa:{backgroundColor:\"rgb(128, 128, 128)\"},fYhrII78I:{backgroundColor:\"rgb(128, 128, 128)\"},KuUw_EOaX:{backgroundColor:\"rgb(128, 128, 128)\"},mfpK2jfFu:{backgroundColor:\"rgb(128, 128, 128)\"},pcvg0I3Of:{backgroundColor:\"rgb(128, 128, 128)\"},vhJTdo3ig:{backgroundColor:\"rgb(128, 128, 128)\"}},...addPropertyOverrides({KuUw_EOaX:{\"data-highlight\":true,onTap:onTapdujtp6},vhJTdo3ig:{\"data-highlight\":true,onTap:onTapdujtp6}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cwmg8i\",\"data-framer-name\":\"Component 354\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrSRwwx0KVQ\",onTap:onTap1ycl1kw,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-aptn3p\",\"data-framer-name\":\"Rectangle 5\",layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrfJQP8W1Y3\",style:{backgroundColor:\"rgb(128, 128, 128)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},variants:{fYhrII78I:{backgroundColor:\"rgb(244, 244, 244)\"}}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k1wbcs\",\"data-framer-name\":\"Component 354\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrVNqW3NsRZ\",onTap:onTap3ub12x,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17ircm8\",\"data-framer-name\":\"Rectangle 5\",layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrR2bVeYBG0\",style:{backgroundColor:\"rgb(128, 128, 128)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},variants:{fYhrII78I:{backgroundColor:\"rgb(127, 127, 127)\"},pcvg0I3Of:{backgroundColor:\"rgb(244, 244, 244)\"}}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-oq8v0z\",\"data-framer-name\":\"Component 354\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrDUmKaUKga\",onTap:onTap17n7cr4,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19iqbpc\",\"data-framer-name\":\"Rectangle 5\",layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrRcJHN5nrv\",style:{backgroundColor:\"rgb(128, 128, 128)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},variants:{CLvjWQnDa:{backgroundColor:\"rgb(244, 244, 244)\"}}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-njmetd\",\"data-framer-name\":\"Component 355\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrEBpV1YvSz\",onTap:onTapi8pb7g,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pcxot\",\"data-framer-name\":\"Rectangle 5\",layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrWBPBrIKfl\",style:{backgroundColor:\"rgb(128, 128, 128)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},variants:{KuUw_EOaX:{backgroundColor:\"rgb(244, 244, 244)\"}}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mur77o\",\"data-framer-name\":\"Component 356\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrNt7Rf6YNE\",onTap:onTap1u4zdpm,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kyvvpe\",\"data-framer-name\":\"Rectangle 5\",layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrFLSiLQSrd\",style:{backgroundColor:\"rgb(128, 128, 128)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},variants:{vhJTdo3ig:{backgroundColor:\"rgb(244, 244, 244)\"}}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o6eymu\",\"data-framer-name\":\"Component 357\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrPJ5bxDWM3\",onTap:onTap1xwmkan,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13grt6j\",\"data-framer-name\":\"Rectangle 5\",layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrTtY0sus3V\",style:{backgroundColor:\"rgb(128, 128, 128)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},variants:{BUbQJNFZ8:{backgroundColor:\"rgb(244, 244, 244)\"}}})})]})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WLvVh.framer-1f2p0cq, .framer-WLvVh .framer-1f2p0cq { display: block; }\",\".framer-WLvVh.framer-1gz3z6m { height: 686px; overflow: hidden; position: relative; width: 1800px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WLvVh .framer-1sffsmz-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-WLvVh .framer-a682e6 { bottom: 0px; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; }\",\".framer-WLvVh .framer-xr8ekr { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: var(--1i9sxys); height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: var(--j99o5e); position: absolute; width: 100%; }\",\".framer-WLvVh .framer-149oxup { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: var(--u94q92); height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WLvVh .framer-kol6ja { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WLvVh .framer-1gw02in { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 64%; word-break: break-word; word-wrap: break-word; }\",\".framer-WLvVh .framer-t07z4o { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-WLvVh .framer-5oj9tv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: var(--18cc2js); flex-wrap: nowrap; gap: var(--1bvggyh); height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-WLvVh .framer-1yqd9om-container, .framer-WLvVh .framer-u5z90u-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-WLvVh .framer-1n2av77 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: var(--yq0eap); height: min-content; justify-content: center; overflow: visible; padding: var(--1vpl304); position: relative; width: min-content; }\",\".framer-WLvVh .framer-8jbin { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: var(--18jnqhd); height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WLvVh .framer-1bii5k5 { cursor: pointer; flex: none; gap: 0px; height: 10px; overflow: visible; position: relative; width: 36px; }\",\".framer-WLvVh .framer-gj7fwb, .framer-WLvVh .framer-aptn3p, .framer-WLvVh .framer-17ircm8, .framer-WLvVh .framer-19iqbpc, .framer-WLvVh .framer-1pcxot, .framer-WLvVh .framer-kyvvpe, .framer-WLvVh .framer-13grt6j { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-WLvVh .framer-cwmg8i, .framer-WLvVh .framer-1k1wbcs, .framer-WLvVh .framer-oq8v0z, .framer-WLvVh .framer-njmetd, .framer-WLvVh .framer-1mur77o, .framer-WLvVh .framer-o6eymu { cursor: pointer; flex: none; gap: 0px; height: 10px; overflow: visible; position: relative; width: 10px; }\",\".framer-WLvVh.framer-v-15o9r8h .framer-1bii5k5, .framer-WLvVh.framer-v-zqvqsl .framer-1bii5k5, .framer-WLvVh.framer-v-ctm82e .framer-1bii5k5, .framer-WLvVh.framer-v-oq3yes .framer-1bii5k5, .framer-WLvVh.framer-v-r7vmrg .framer-1bii5k5, .framer-WLvVh.framer-v-1i4bsvc .framer-1bii5k5, .framer-WLvVh.framer-v-1i4bsvc .framer-1mur77o, .framer-WLvVh.framer-v-1jlmcx2 .framer-1bii5k5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: center; padding: 0px; width: min-content; }\",\".framer-WLvVh.framer-v-15o9r8h .framer-gj7fwb, .framer-WLvVh.framer-v-1jlmcx2 .framer-gj7fwb { bottom: unset; cursor: pointer; height: 10px; left: unset; position: relative; right: unset; top: unset; width: 10px; }\",\".framer-WLvVh.framer-v-15o9r8h .framer-njmetd, .framer-WLvVh.framer-v-zqvqsl .framer-cwmg8i, .framer-WLvVh.framer-v-zqvqsl .framer-1k1wbcs, .framer-WLvVh.framer-v-ctm82e .framer-1k1wbcs, .framer-WLvVh.framer-v-ctm82e .framer-oq8v0z, .framer-WLvVh.framer-v-oq3yes .framer-njmetd, .framer-WLvVh.framer-v-r7vmrg .framer-oq8v0z, .framer-WLvVh.framer-v-r7vmrg .framer-1mur77o, .framer-WLvVh.framer-v-1i4bsvc .framer-o6eymu, .framer-WLvVh.framer-v-1jlmcx2 .framer-cwmg8i, .framer-WLvVh.framer-v-1jlmcx2 .framer-1mur77o { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: center; padding: 0px; width: min-content; }\",\".framer-WLvVh.framer-v-15o9r8h .framer-1pcxot, .framer-WLvVh.framer-v-zqvqsl .framer-aptn3p, .framer-WLvVh.framer-v-ctm82e .framer-17ircm8, .framer-WLvVh.framer-v-r7vmrg .framer-19iqbpc, .framer-WLvVh.framer-v-1i4bsvc .framer-13grt6j, .framer-WLvVh.framer-v-1jlmcx2 .framer-kyvvpe { bottom: unset; height: 10px; left: unset; position: relative; right: unset; top: unset; width: 36px; }\",\".framer-WLvVh.framer-v-zqvqsl .framer-gj7fwb, .framer-WLvVh.framer-v-zqvqsl .framer-17ircm8, .framer-WLvVh.framer-v-ctm82e .framer-gj7fwb, .framer-WLvVh.framer-v-ctm82e .framer-19iqbpc, .framer-WLvVh.framer-v-oq3yes .framer-gj7fwb, .framer-WLvVh.framer-v-oq3yes .framer-1pcxot, .framer-WLvVh.framer-v-r7vmrg .framer-gj7fwb, .framer-WLvVh.framer-v-r7vmrg .framer-kyvvpe, .framer-WLvVh.framer-v-1i4bsvc .framer-gj7fwb, .framer-WLvVh.framer-v-1i4bsvc .framer-kyvvpe, .framer-WLvVh.framer-v-1jlmcx2 .framer-aptn3p { bottom: unset; height: 10px; left: unset; position: relative; right: unset; top: unset; width: 10px; }\",\".framer-WLvVh.framer-v-oq3yes .framer-1sffsmz-container { bottom: 0px; left: calc(50.00000000000002% - 100% / 2); top: unset; }\",\".framer-WLvVh.framer-v-1i4bsvc .framer-1yqd9om-container { order: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 686\n * @framerIntrinsicWidth 1800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"KuUw_EOaX\":{\"layout\":[\"fixed\",\"fixed\"]},\"fYhrII78I\":{\"layout\":[\"fixed\",\"fixed\"]},\"pcvg0I3Of\":{\"layout\":[\"fixed\",\"fixed\"]},\"mfpK2jfFu\":{\"layout\":[\"fixed\",\"fixed\"]},\"CLvjWQnDa\":{\"layout\":[\"fixed\",\"fixed\"]},\"BUbQJNFZ8\":{\"layout\":[\"fixed\",\"fixed\"]},\"vhJTdo3ig\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"wCtHL4B0_\":\"title\",\"GSifYP8Kv\":\"subtitle\",\"NswFkmqQa\":\"radius\",\"ON_KuALDf\":\"gap\",\"IEVIt8tSy\":\"textContainerPadding\",\"izgFTu4eD\":\"buttonPadding\",\"BrLp64pWG\":\"textContainerGap\",\"bLiO5Ic_E\":\"carouselPadding\",\"OJnJihp0F\":\"textGap\",\"P7WQ4HLs4\":\"buttonVariant\",\"kbq2JJwTV\":\"buttonDirection\",\"Mg4_VA4MX\":\"buttonGaps\",\"rsy1z1GD8\":\"video\",\"tr1aB9NU3\":\"carouselGap\",\"sTHoxj9QF\":\"videoFitness\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerEW5SaNYw3=withCSS(Component,css,\"framer-WLvVh\");export default FramerEW5SaNYw3;FramerEW5SaNYw3.displayName=\"Carousel-without-play\";FramerEW5SaNYw3.defaultProps={height:686,width:1800};addPropertyControls(FramerEW5SaNYw3,{variant:{options:[\"wkkIvGpsr\",\"KuUw_EOaX\",\"fYhrII78I\",\"pcvg0I3Of\",\"mfpK2jfFu\",\"CLvjWQnDa\",\"BUbQJNFZ8\",\"vhJTdo3ig\"],optionTitles:[\"Variant 1\",\"Slide 6\",\"Slide 3\",\"Slide 4\",\"Slide 2 (defunct)\",\"Variant 5\",\"Slide 8\",\"Slide 7\"],title:\"Variant\",type:ControlType.Enum},wCtHL4B0_:{defaultValue:72,title:\"Title\",type:ControlType.Number},GSifYP8Kv:{defaultValue:20,displayStepper:true,title:\"Subtitle\",type:ControlType.Number},NswFkmqQa:{defaultValue:\"24px\",title:\"Radius\",type:ControlType.BorderRadius},ON_KuALDf:{defaultValue:10,min:0,title:\"Gap\",type:ControlType.Number},IEVIt8tSy:{defaultValue:\"20px 80px 20px 80px\",title:\"Text-Container Padding\",type:ControlType.Padding},izgFTu4eD:{defaultValue:\"16px\",title:\"Button-Padding\",type:ControlType.Padding},BrLp64pWG:{defaultValue:20,min:0,title:\"Text-Container Gap\",type:ControlType.Number},bLiO5Ic_E:{defaultValue:\"24px 24px 24px 24px\",title:\"carousel-padding\",type:ControlType.Padding},OJnJihp0F:{defaultValue:36,min:0,title:\"Text Gap\",type:ControlType.Number},P7WQ4HLs4:ButtonDefaultControls?.[\"variant\"]&&{...ButtonDefaultControls[\"variant\"],defaultValue:\"QM9KNRaS5\",description:undefined,hidden:undefined,title:\"button Variant\"},kbq2JJwTV:{defaultValue:\"row\",displaySegmentedControl:true,optionIcons:[\"direction-horizontal\",\"direction-vertical\"],options:[\"row\",\"column\"],optionTitles:[\"Horizontal\",\"Vertical\"],title:\"Button Direction\",type:ControlType.Enum},Mg4_VA4MX:{defaultValue:24,min:0,title:\"Button gaps\",type:ControlType.Number},rsy1z1GD8:VideoControls?.[\"srcFile\"]&&{...VideoControls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,DqexjxFIIXdECfWBhsiz3AjDBzE.mp4?originalFilename=Professional_Mode_She_Smiles__looking_at_the_camer.mp4\",description:undefined,hidden:undefined,title:\"Video\"},tr1aB9NU3:{defaultValue:14,min:0,title:\"Carousel Gap\",type:ControlType.Number},sTHoxj9QF:VideoControls?.[\"objectFit\"]&&{...VideoControls[\"objectFit\"],defaultValue:\"cover\",description:undefined,hidden:undefined,title:\"video fitness\"}});addFonts(FramerEW5SaNYw3,[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4S-EiAou6Y.woff2\",weight:\"600\"},{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\"}]},...VideoFonts,...ButtonDefaultFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEW5SaNYw3\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"686\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1800\",\"framerVariables\":\"{\\\"wCtHL4B0_\\\":\\\"title\\\",\\\"GSifYP8Kv\\\":\\\"subtitle\\\",\\\"NswFkmqQa\\\":\\\"radius\\\",\\\"ON_KuALDf\\\":\\\"gap\\\",\\\"IEVIt8tSy\\\":\\\"textContainerPadding\\\",\\\"izgFTu4eD\\\":\\\"buttonPadding\\\",\\\"BrLp64pWG\\\":\\\"textContainerGap\\\",\\\"bLiO5Ic_E\\\":\\\"carouselPadding\\\",\\\"OJnJihp0F\\\":\\\"textGap\\\",\\\"P7WQ4HLs4\\\":\\\"buttonVariant\\\",\\\"kbq2JJwTV\\\":\\\"buttonDirection\\\",\\\"Mg4_VA4MX\\\":\\\"buttonGaps\\\",\\\"rsy1z1GD8\\\":\\\"video\\\",\\\"tr1aB9NU3\\\":\\\"carouselGap\\\",\\\"sTHoxj9QF\\\":\\\"videoFitness\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KuUw_EOaX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fYhrII78I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pcvg0I3Of\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mfpK2jfFu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CLvjWQnDa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BUbQJNFZ8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vhJTdo3ig\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EW5SaNYw3.map", "// Generated by Framer (dc53115)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import CookieBanner from\"https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/IH6s9ASs8tTeXMp8PWOj/Cookies.js\";import CarouselWithoutPlay from\"#framer/local/canvasComponent/EW5SaNYw3/EW5SaNYw3.js\";import Navigation from\"#framer/local/canvasComponent/mbbEXxwxl/mbbEXxwxl.js\";import Footer from\"#framer/local/canvasComponent/MHyaJwkf3/MHyaJwkf3.js\";import metadataProvider from\"#framer/local/webPageMetadata/IUpReIVnf/IUpReIVnf.js\";const NavigationFonts=getFonts(Navigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const CarouselWithoutPlayFonts=getFonts(CarouselWithoutPlay);const TickerFonts=getFonts(Ticker);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const FooterFonts=getFonts(Footer);const CookieBannerFonts=getFonts(CookieBanner);const breakpoints={AApFdBRJV:\"(max-width: 375px)\",b7c3HkCGg:\"(min-width: 1920px)\",dk7yrNgzF:\"(min-width: 376px) and (max-width: 875px)\",EczfGoQY_:\"(min-width: 1200px) and (max-width: 1919px)\",godMSCkw3:\"(min-width: 876px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-th72v\";const variantClassNames={AApFdBRJV:\"framer-v-6gol95\",b7c3HkCGg:\"framer-v-1ewxzap\",dk7yrNgzF:\"framer-v-1iufs90\",EczfGoQY_:\"framer-v-r26yc6\",godMSCkw3:\"framer-v-1myt77q\"};const transition1={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const transition2={delay:0,duration:1.5,ease:[.61,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:50};const transition3={delay:.5,duration:1,ease:[.77,0,.3,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition4={delay:1,duration:.5,ease:[.04,.82,.31,.97],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop (S)\":\"EczfGoQY_\",\"Phone (L)\":\"dk7yrNgzF\",Desktop:\"b7c3HkCGg\",Phone:\"AApFdBRJV\",Tablet:\"godMSCkw3\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"b7c3HkCGg\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"godMSCkw3\",\"dk7yrNgzF\",\"AApFdBRJV\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"AApFdBRJV\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"AApFdBRJV\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"godMSCkw3\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"dk7yrNgzF\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"b7c3HkCGg\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(248, 250, 252); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1ewxzap\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AApFdBRJV:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+12+0},dk7yrNgzF:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+12+0},godMSCkw3:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`calc(${componentViewport?.width||\"100vw\"} - 160px)`,y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1osec8j-container\",\"data-framer-appear-id\":\"1osec8j\",initial:animation1,nodeId:\"YDTw6hyJJ\",optimized:true,rendersWithMotion:true,scopeId:\"IUpReIVnf\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AApFdBRJV:{variant:\"GynJFGRPg\"},dk7yrNgzF:{variant:\"GynJFGRPg\"},godMSCkw3:{variant:\"GynJFGRPg\"}},children:/*#__PURE__*/_jsx(Navigation,{Fhx7v7poj:\"space-between\",height:\"100%\",id:\"YDTw6hyJJ\",kumHXihTr:140,layoutId:\"YDTw6hyJJ\",style:{width:\"100%\"},variant:\"YQIGVyM86\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EczfGoQY_:{height:750,y:(componentViewport?.y||0)+0+76}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:800,width:`calc(${componentViewport?.width||\"100vw\"} - 160px)`,y:(componentViewport?.y||0)+0+84,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-prem9x-container hidden-1myt77q hidden-1iufs90 hidden-6gol95\",\"data-framer-appear-id\":\"prem9x\",initial:animation3,nodeId:\"uoanc25ou\",optimized:true,rendersWithMotion:true,scopeId:\"IUpReIVnf\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EczfGoQY_:{bLiO5Ic_E:\"20px 20px 20px 20px\",IEVIt8tSy:\"20px 60px 20px 60px\",wCtHL4B0_:56}},children:/*#__PURE__*/_jsx(CarouselWithoutPlay,{bLiO5Ic_E:\"24px 24px 24px 24px\",BrLp64pWG:20,GSifYP8Kv:20,height:\"100%\",id:\"uoanc25ou\",IEVIt8tSy:\"20px 80px 20px 80px\",izgFTu4eD:\"16px\",kbq2JJwTV:\"row\",layoutId:\"uoanc25ou\",Mg4_VA4MX:24,NswFkmqQa:\"24px\",OJnJihp0F:36,ON_KuALDf:10,P7WQ4HLs4:\"QM9KNRaS5\",sTHoxj9QF:\"cover\",style:{height:\"100%\",width:\"100%\"},tr1aB9NU3:14,variant:\"wkkIvGpsr\",wCtHL4B0_:72,width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1esa5sz hidden-6gol95\",\"data-framer-appear-id\":\"1esa5sz\",initial:animation5,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-104ji06\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dk7yrNgzF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(79, 79, 79)\"},children:\"Backed by\"})})},godMSCkw3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(79, 79, 79)\"},children:\"Backed by\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(79, 79, 79)\"},children:\"Backed by\"})}),className:\"framer-13ozemv\",\"data-framer-name\":\"Backed by\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y85xdh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JhqeLEmxr\",scopeId:\"IUpReIVnf\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dk7yrNgzF:{paddingPerSide:true}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"JhqeLEmxr\",layoutId:\"JhqeLEmxr\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:78,intrinsicWidth:2503,pixelHeight:78,pixelWidth:2705,positionX:\"center\",positionY:\"center\",sizes:\"1868px\",src:\"https://framerusercontent.com/images/61p7U9YB04fccV69HTaPS6c1Sdw.png\",srcSet:\"https://framerusercontent.com/images/61p7U9YB04fccV69HTaPS6c1Sdw.png?scale-down-to=512 512w,https://framerusercontent.com/images/61p7U9YB04fccV69HTaPS6c1Sdw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/61p7U9YB04fccV69HTaPS6c1Sdw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/61p7U9YB04fccV69HTaPS6c1Sdw.png 2705w\"},className:\"framer-1mush30\",\"data-framer-name\":\"STRIP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:78,intrinsicWidth:2503,pixelHeight:78,pixelWidth:2705,positionX:\"center\",positionY:\"center\",sizes:\"1868px\",src:\"https://framerusercontent.com/images/61p7U9YB04fccV69HTaPS6c1Sdw.png\",srcSet:\"https://framerusercontent.com/images/61p7U9YB04fccV69HTaPS6c1Sdw.png?scale-down-to=512 512w,https://framerusercontent.com/images/61p7U9YB04fccV69HTaPS6c1Sdw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/61p7U9YB04fccV69HTaPS6c1Sdw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/61p7U9YB04fccV69HTaPS6c1Sdw.png 2705w\"},className:\"framer-1mush30\",\"data-framer-name\":\"STRIP\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation6,className:\"framer-18wqdf\",\"data-framer-appear-id\":\"18wqdf\",\"data-framer-name\":\".footer\",initial:animation5,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AApFdBRJV:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+12+989.5+0+0},dk7yrNgzF:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+12+987.6+0+0},EczfGoQY_:{y:(componentViewport?.y||0)+0+934.4+0+0},godMSCkw3:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+953.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:`calc(${componentViewport?.width||\"100vw\"} - 160px)`,y:(componentViewport?.y||0)+0+1008.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-142ynr6-container\",nodeId:\"NJdKRk0E6\",scopeId:\"IUpReIVnf\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AApFdBRJV:{variant:\"KB_OWuw4L\"},dk7yrNgzF:{variant:\"KB_OWuw4L\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"NJdKRk0E6\",layoutId:\"NJdKRk0E6\",style:{width:\"100%\"},variant:\"L5mlvuUo3\",width:\"100%\"})})})})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-14iqxl1 hidden-1ewxzap hidden-1myt77q hidden-1iufs90 hidden-r26yc6\",\"data-framer-appear-id\":\"14iqxl1\",initial:animation5,optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(79, 79, 79)\"},children:\"Backed by\"})}),className:\"framer-j6umqk\",\"data-framer-name\":\"Backed by\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hcy4p3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"QcTabZHMS\",scopeId:\"IUpReIVnf\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"QcTabZHMS\",layoutId:\"QcTabZHMS\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:78,intrinsicWidth:2503,pixelHeight:78,pixelWidth:2705,positionX:\"center\",positionY:\"center\",sizes:\"1868px\",src:\"https://framerusercontent.com/images/61p7U9YB04fccV69HTaPS6c1Sdw.png\",srcSet:\"https://framerusercontent.com/images/61p7U9YB04fccV69HTaPS6c1Sdw.png?scale-down-to=512 512w,https://framerusercontent.com/images/61p7U9YB04fccV69HTaPS6c1Sdw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/61p7U9YB04fccV69HTaPS6c1Sdw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/61p7U9YB04fccV69HTaPS6c1Sdw.png 2705w\"},className:\"framer-1mush30\",\"data-framer-name\":\"STRIP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:78,intrinsicWidth:2503,pixelHeight:78,pixelWidth:2705,positionX:\"center\",positionY:\"center\",sizes:\"1868px\",src:\"https://framerusercontent.com/images/61p7U9YB04fccV69HTaPS6c1Sdw.png\",srcSet:\"https://framerusercontent.com/images/61p7U9YB04fccV69HTaPS6c1Sdw.png?scale-down-to=512 512w,https://framerusercontent.com/images/61p7U9YB04fccV69HTaPS6c1Sdw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/61p7U9YB04fccV69HTaPS6c1Sdw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/61p7U9YB04fccV69HTaPS6c1Sdw.png 2705w\"},className:\"framer-1mush30\",\"data-framer-name\":\"STRIP\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{godMSCkw3:{height:750,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+84}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1o3x6ld-container hidden-1ewxzap hidden-1iufs90 hidden-6gol95 hidden-r26yc6\",\"data-framer-appear-id\":\"1o3x6ld\",initial:animation3,nodeId:\"rO5Knnzak\",optimized:true,rendersWithMotion:true,scopeId:\"IUpReIVnf\",children:/*#__PURE__*/_jsx(CarouselWithoutPlay,{bLiO5Ic_E:\"24px 24px 24px 24px\",BrLp64pWG:20,GSifYP8Kv:16,height:\"100%\",id:\"rO5Knnzak\",IEVIt8tSy:\"20px 40px 20px 40px\",izgFTu4eD:\"16px\",kbq2JJwTV:\"row\",layoutId:\"rO5Knnzak\",Mg4_VA4MX:24,NswFkmqQa:\"24px\",OJnJihp0F:36,ON_KuALDf:10,P7WQ4HLs4:\"QM9KNRaS5\",sTHoxj9QF:\"cover\",style:{height:\"100%\",width:\"100%\"},tr1aB9NU3:14,variant:\"wkkIvGpsr\",wCtHL4B0_:48,width:\"100%\"})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dk7yrNgzF:{height:800,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+12+80}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-17ugsuv-container hidden-1ewxzap hidden-1myt77q hidden-6gol95 hidden-r26yc6\",\"data-framer-appear-id\":\"17ugsuv\",initial:animation3,nodeId:\"gHREVPtVe\",optimized:true,rendersWithMotion:true,scopeId:\"IUpReIVnf\",children:/*#__PURE__*/_jsx(CarouselWithoutPlay,{bLiO5Ic_E:\"12px\",BrLp64pWG:16,GSifYP8Kv:16,height:\"100%\",id:\"gHREVPtVe\",IEVIt8tSy:\"8px 12px 20px 12px\",izgFTu4eD:\"12px\",kbq2JJwTV:\"column\",layoutId:\"gHREVPtVe\",Mg4_VA4MX:16,NswFkmqQa:\"24px\",OJnJihp0F:20,ON_KuALDf:20,P7WQ4HLs4:\"QM9KNRaS5\",sTHoxj9QF:\"cover\",style:{height:\"100%\",width:\"100%\"},tr1aB9NU3:16,variant:\"wkkIvGpsr\",wCtHL4B0_:32,width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AApFdBRJV:{height:800,width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+12+80}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-fksu72-container hidden-1ewxzap hidden-1myt77q hidden-1iufs90 hidden-r26yc6\",\"data-framer-appear-id\":\"fksu72\",initial:animation3,nodeId:\"D5Q14KFLh\",optimized:true,rendersWithMotion:true,scopeId:\"IUpReIVnf\",children:/*#__PURE__*/_jsx(CarouselWithoutPlay,{bLiO5Ic_E:\"12px\",BrLp64pWG:16,GSifYP8Kv:14,height:\"100%\",id:\"D5Q14KFLh\",IEVIt8tSy:\"8px 12px 20px 12px\",izgFTu4eD:\"12px\",kbq2JJwTV:\"column\",layoutId:\"D5Q14KFLh\",Mg4_VA4MX:16,NswFkmqQa:\"16px\",OJnJihp0F:16,ON_KuALDf:20,P7WQ4HLs4:\"QM9KNRaS5\",sTHoxj9QF:\"cover\",style:{height:\"100%\",width:\"100%\"},tr1aB9NU3:16,variant:\"wkkIvGpsr\",wCtHL4B0_:24,width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1th2tnc-container\",isAuthoredByUser:true,isModuleExternal:true,layoutScroll:true,nodeId:\"mTOCwWWqh\",scopeId:\"IUpReIVnf\",children:/*#__PURE__*/_jsx(CookieBanner,{banner:{animation:{scale:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},x:0,y:10},containerWidth:0,inset:20,insetBottom:20,insetLeft:20,insetPerSide:false,insetRight:20,insetTop:20,padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,position:\"bottom-right\",style:{backdrop:\"rgba(0, 0, 0, 0.1)\",border:{color:\"rgba(0, 0, 0, 0.05)\",radius:14,width:1},colorBody:\"rgb(68, 68, 68)\",colorTitle:\"rgb(0, 0, 0)\",fill:\"rgb(255, 255, 255)\",fontBody:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"150%\"},fontTitle:{fontFamily:'\"Outfit\", \"Outfit Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},link:\"rgb(46, 144, 250)\"},width:360,zIndex:10},button:{borderRadius:8,direction:\"row\",fluid:true,font:{},hoverOpacity:.6,labels:{accept:\"Accept\",acceptAll:\"Accept all\",confirm:\"Okay\",customize:\"Customize\",reject:\"Reject\",rejectAll:\"Reject all\",save:\"Save Preferences\"},padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,primary:{color:\"rgb(255, 255, 255)\",fill:\"rgb(46, 144, 250)\"},secondary:{color:\"rgb(68, 68, 68)\",fill:\"rgb(238, 238, 238)\"},tapOpacity:.4},content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"We use necessary cookies to provide website functionality and security. We also use\\n          cookies to analyze traffic on our website, personalize content and improve user experience. These will be set only if you accept these cookies, You can read about how we use cookies in our\",euPolicy:{label:\"Privacy Policy\",link:\"https://www.alethea.ai/privacy-policy\",prefix:\"Read our\"},euShowReject:true,euTitle:\"We Value Your Privacy\",euType:\"medium\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"},gtmId:\"G-JJPP8ZW90B\",height:\"100%\",id:\"mTOCwWWqh\",layoutId:\"mTOCwWWqh\",options:{analytics:{description:\"Enables tracking of performance.\",title:\"Analytics\"},marketing:{description:\"Enables ads personalization and tracking.\",title:\"Marketing\"},necessary:{description:\"Enables security and basic functionality.\",optional:true,title:\"Necessary\"},preferences:{description:\"Enables personalized content and settings.\",title:\"Preferences\"},preview:false,style:{background:\"rgba(0, 0, 0, 0.02)\",border:{color:\"rgba(0, 0, 0, 0.02)\",radius:8,width:0},fontBody:{},fontTitle:{},padding:12,paddingBottom:12,paddingLeft:12,paddingPerSide:false,paddingRight:12,paddingTop:12,toggleColor:\"rgb(0, 0, 0)\",toggleColorInactive:\"rgba(0, 0, 0, 0.1)\"}},preview:false,trigger:{color:\"rgb(0, 136, 255)\",iconSize:24,iconType:\"default\",text:\"Cookie Settings\",textFont:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},type:\"none\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-th72v.framer-b5zwhh, .framer-th72v .framer-b5zwhh { display: block; }\",\".framer-th72v.framer-1ewxzap { align-content: center; align-items: center; background-color: #f8fafc; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 80px 0px 80px; position: relative; width: 1920px; }\",\".framer-th72v .framer-1osec8j-container { flex: none; height: auto; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-th72v .framer-prem9x-container, .framer-th72v .framer-17ugsuv-container, .framer-th72v .framer-fksu72-container { flex: none; height: 80vh; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-th72v .framer-1esa5sz { 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: 1760px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-th72v .framer-104ji06 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-th72v .framer-13ozemv, .framer-th72v .framer-j6umqk { --framer-paragraph-spacing: 4px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-th72v .framer-1y85xdh-container { flex: none; height: 54px; position: relative; width: 100%; }\",\".framer-th72v .framer-1mush30 { height: 60px; position: relative; width: 1868px; }\",\".framer-th72v .framer-18wqdf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-th72v .framer-142ynr6-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-th72v .framer-14iqxl1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 78px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-th72v .framer-1hcy4p3-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-th72v .framer-1o3x6ld-container { flex: none; height: 75vh; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-th72v .framer-1th2tnc-container { flex: none; height: auto; left: 50%; position: fixed; top: 913px; transform: translateX(-50%); width: auto; z-index: 1; }\",\"@media (min-width: 876px) and (max-width: 1199px) { .framer-th72v.framer-1ewxzap { padding: 0px 20px 0px 20px; width: 876px; } .framer-th72v .framer-1osec8j-container { order: 0; } .framer-th72v .framer-1esa5sz { gap: 16px; order: 3; padding: 0px 0px 8px 0px; width: 770px; } .framer-th72v .framer-104ji06 { gap: 12px; } .framer-th72v .framer-1y85xdh-container { height: 40px; } .framer-th72v .framer-18wqdf { order: 4; } .framer-th72v .framer-1o3x6ld-container { order: 1; } .framer-th72v .framer-1th2tnc-container { order: 9; }}\",\"@media (min-width: 376px) and (max-width: 875px) { .framer-th72v.framer-1ewxzap { gap: 16px; padding: 12px 20px 0px 20px; width: 376px; } .framer-th72v .framer-1osec8j-container { order: 0; } .framer-th72v .framer-1esa5sz { gap: 8px; order: 3; width: 100%; } .framer-th72v .framer-1y85xdh-container { height: 48px; } .framer-th72v .framer-18wqdf { order: 4; } .framer-th72v .framer-17ugsuv-container { order: 1; } .framer-th72v .framer-1th2tnc-container { order: 9; }}\",\"@media (max-width: 375px) { .framer-th72v.framer-1ewxzap { gap: 16px; padding: 12px 16px 0px 16px; width: 375px; } .framer-th72v .framer-1osec8j-container { order: 0; } .framer-th72v .framer-18wqdf { order: 5; } .framer-th72v .framer-14iqxl1 { order: 4; } .framer-th72v .framer-fksu72-container { order: 2; } .framer-th72v .framer-1th2tnc-container { order: 9; }}\",\"@media (min-width: 1200px) and (max-width: 1919px) { .framer-th72v.framer-1ewxzap { gap: 12px; width: 1200px; } .framer-th72v .framer-prem9x-container { height: 75vh; } .framer-th72v .framer-1esa5sz { gap: 8px; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 892.5\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"godMSCkw3\":{\"layout\":[\"fixed\",\"auto\"]},\"dk7yrNgzF\":{\"layout\":[\"fixed\",\"auto\"]},\"AApFdBRJV\":{\"layout\":[\"fixed\",\"auto\"]},\"EczfGoQY_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerIUpReIVnf=withCSS(Component,css,\"framer-th72v\");export default FramerIUpReIVnf;FramerIUpReIVnf.displayName=\"Page\";FramerIUpReIVnf.defaultProps={height:892.5,width:1920};addFonts(FramerIUpReIVnf,[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4S-EiAou6Y.woff2\",weight:\"600\"},{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:\"Outfit\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LLL2G3NRT7NQD2GKJUPGXM7TQ2DC6HXX/PW5PSBLUQB3EYD5A5UFT4XOSWCSQOKTH/P65L7VCWZE3ZYHD2XJZ2WDLQCATH7Y3R.woff2\",weight:\"600\"}]},...NavigationFonts,...CarouselWithoutPlayFonts,...TickerFonts,...FooterFonts,...CookieBannerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIUpReIVnf\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1920\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"godMSCkw3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dk7yrNgzF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AApFdBRJV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EczfGoQY_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"892.5\"}},\"__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", "VideoFonts", "getFonts", "Video", "ButtonDefaultFonts", "QbJpAlr3_default", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "ButtonDefaultControls", "getPropertyControls", "VideoControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "radiusForCorner", "value", "cornerIndex", "segments", "transition1", "transition2", "animation", "animation1", "numberToPixelString", "transition3", "animation2", "transition4", "animation3", "animation4", "transition5", "animation5", "transition6", "animation6", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableEnumMap", "humanReadableEnumMap1", "humanReadableEnumMap2", "humanReadableVariantMap", "getProps", "buttonDirection", "buttonGaps", "buttonPadding", "buttonVariant", "carouselGap", "carouselPadding", "gap", "height", "id", "radius", "subtitle", "textContainerGap", "textContainerPadding", "textGap", "title", "video", "videoFitness", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "wCtHL4B0_", "GSifYP8Kv", "NswFkmqQa", "ON_KuALDf", "IEVIt8tSy", "izgFTu4eD", "BrLp64pWG", "bLiO5Ic_E", "OJnJihp0F", "P7WQ4HLs4", "kbq2JJwTV", "Mg4_VA4MX", "rsy1z1GD8", "tr1aB9NU3", "sTHoxj9QF", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear19slbfo", "args", "onAppear1kkwoqb", "onAppeardps1o3", "onAppear1kclv99", "onAppearqijzhu", "onAppear1y0u6cc", "onAppearr9j2xt", "onTapdujtp6", "onTap1ycl1kw", "onTap3ub12x", "onTap17n7cr4", "onTapi8pb7g", "onTap1u4zdpm", "onTap1xwmkan", "useOnVariantChange", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "ResolveLinks", "resolvedLinks", "css", "FramerEW5SaNYw3", "withCSS", "EW5SaNYw3_default", "addPropertyControls", "ControlType", "addFonts", "NavigationFonts", "getFonts", "mbbEXxwxl_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "CarouselWithoutPlayFonts", "EW5SaNYw3_default", "TickerFonts", "Ticker", "MotionDivWithOptimizedAppearEffect", "motion", "FooterFonts", "MHyaJwkf3_default", "CookieBannerFonts", "CookieBanner", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "x", "RichText2", "Image2", "css", "FramerIUpReIVnf", "withCSS", "IUpReIVnf_default", "addFonts", "__FramerMetadata__"]
}
