{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/D4TWeLfcxT6Tysr2BlYg/iZjmqdxVx1EOiM3k1FaW/useOnNavigationTargetChange.js", "ssg:https://framerusercontent.com/modules/eMBrwoqQK7h6mEeGQUH8/GuplvPJVjmxpk9zqOTcb/isBrowser.js", "ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/iOSn79hPPyvwKS85zbhH/ljjeSmL8TUWMaUeSzEBb/EW5SaNYw3.js", "ssg:https://framerusercontent.com/modules/3HuRnZr4APxMRAocRTlu/Xms1MRq9rRJilEsVNQS5/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", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useIsInCurrentNavigationTarget } from \"framer\";\nimport { useEffect } from \"react\";\nexport function useOnEnter(onEnter, enabled) {\n    return useOnSpecificTargetChange(true, onEnter, enabled);\n}\nexport function useOnExit(onExit, enabled) {\n    return useOnSpecificTargetChange(false, onExit, enabled);\n}\nfunction useOnSpecificTargetChange(goal, callback, enabled = true) {\n    const isInTarget = useIsInCurrentNavigationTarget();\n    useEffect(()=>{\n        if (enabled && isInTarget === goal) callback();\n    }, [\n        isInTarget\n    ]);\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useOnEnter\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnExit\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useOnNavigationTargetChange.map", "import { useMemo } from \"react\";\nexport const isBrowserSafari = ()=>{\n    if (typeof navigator !== `undefined`) {\n        const userAgent = navigator.userAgent.toLowerCase();\n        const isSafari = (userAgent.indexOf(\"safari\") > -1 || userAgent.indexOf(\"framermobile\") > -1 || userAgent.indexOf(\"framerx\") > -1) && userAgent.indexOf(\"chrome\") < 0;\n        return isSafari;\n    } else return false;\n};\nexport const useIsBrowserSafari = ()=>useMemo(()=>isBrowserSafari()\n    , [])\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./isBrowser.map", "import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (47ebf4a)\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/IFdWe9SThAR2czAhbCEM/QbJpAlr3_.js\";const VideoFonts=getFonts(Video);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const ButtonDefaultFonts=getFonts(ButtonDefault);const ButtonDefaultControls=getPropertyControls(ButtonDefault);const VideoControls=getPropertyControls(Video);const cycleOrder=[\"wkkIvGpsr\",\"KuUw_EOaX\",\"fYhrII78I\",\"pcvg0I3Of\",\"mfpK2jfFu\",\"CLvjWQnDa\",\"BUbQJNFZ8\",\"vhJTdo3ig\"];const serializationHash=\"framer-C4Po6\";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={bounce:.1,delay:0,duration:.4,type:\"spring\"};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 transition7={bounce:.2,delay:0,duration:1,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,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\"};const humanReadableEnumMap1={Horizontal:\"row\",Vertical:\"column\"};const humanReadableVariantMap={\"Slide 2\":\"KuUw_EOaX\",\"Slide 3\":\"vhJTdo3ig\",\"Slide 4\":\"fYhrII78I\",\"Slide 5\":\"pcvg0I3Of\",\"Slide 6\":\"mfpK2jfFu\",\"Slide 8\":\"BUbQJNFZ8\",\"Variant 1\":\"wkkIvGpsr\",\"Variant 7\":\"CLvjWQnDa\"};const getProps=({buttonDirection,buttonGaps,buttonPadding,buttonVariant,carouselGap,carouselPadding,click2,gap,height,id,radius,subtitle,textContainerGap,textContainerPadding,textGap,title,video,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\",ROodcMdUx:click2??props.ROodcMdUx,rsy1z1GD8:video??props.rsy1z1GD8??\"https://framerusercontent.com/assets/DqexjxFIIXdECfWBhsiz3AjDBzE.mp4\",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,ROodcMdUx,wCtHL4B0_,GSifYP8Kv,NswFkmqQa,ON_KuALDf,IEVIt8tSy,izgFTu4eD,BrLp64pWG,bLiO5Ic_E,OJnJihp0F,P7WQ4HLs4,kbq2JJwTV,Mg4_VA4MX,rsy1z1GD8,tr1aB9NU3,...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 onAppeare9l7o9=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"KuUw_EOaX\",true),6e3);});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 onTap160819i=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"BUbQJNFZ8\");});const onAppear2tg8st=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"BUbQJNFZ8\",true),6e3);});const onAppearwl6d62=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"wkkIvGpsr\",true),6e3);});const onAppear1xhzg7v=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"fYhrII78I\",true),7e3);});const onPause15h22x4=activeVariantCallback(async(...args)=>{if(ROodcMdUx){const res=await ROodcMdUx(...args);if(res===false)return false;}});const onTapdujtp6=activeVariantCallback(async(...args)=>{setVariant(\"wkkIvGpsr\");});const onTapi8pb7g=activeVariantCallback(async(...args)=>{setVariant(\"KuUw_EOaX\");});const onTap1u4zdpm=activeVariantCallback(async(...args)=>{setVariant(\"vhJTdo3ig\");});const onTap1ycl1kw=activeVariantCallback(async(...args)=>{setVariant(\"fYhrII78I\");});const onTap3ub12x=activeVariantCallback(async(...args)=>{setVariant(\"pcvg0I3Of\");});const onTap17n7cr4=activeVariantCallback(async(...args)=>{setVariant(\"CLvjWQnDa\");});const onTap1xwmkan=activeVariantCallback(async(...args)=>{setVariant(\"BUbQJNFZ8\");});useOnVariantChange(baseVariant,{BUbQJNFZ8:onAppearwl6d62,CLvjWQnDa:onAppear2tg8st,default:onAppeare9l7o9,fYhrII78I:onAppeardps1o3,KuUw_EOaX:onAppear1kkwoqb,mfpK2jfFu:undefined,pcvg0I3Of:onAppear1kclv99,vhJTdo3ig:onAppear1xhzg7v});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 7\",onTap:onTap160819i},fYhrII78I:{\"data-framer-name\":\"Slide 4\"},KuUw_EOaX:{__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,\"data-framer-name\":\"Slide 2\",optimized:true},mfpK2jfFu:{\"data-framer-name\":\"Slide 6\",\"data-highlight\":undefined},pcvg0I3Of:{\"data-framer-name\":\"Slide 5\"},vhJTdo3ig:{\"data-framer-name\":\"Slide 3\"}},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:\"cover\",onPause:onPause15h22x4,playing:true,posterEnabled:true,srcFile:rsy1z1GD8,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:12,topRightRadius:12,volume:25,width:\"100%\",...addPropertyOverrides({BUbQJNFZ8:{srcFile:\"https://framerusercontent.com/assets/crODcadKVyisbHViZYaWJHjp4o.mp4\"},CLvjWQnDa:{srcFile:\"https://framerusercontent.com/assets/nnoAwT7EqLrl0XLDOVtUjVP3Yeo.mp4\"},fYhrII78I:{srcFile:\"https://framerusercontent.com/assets/y1JNRCS7wEUHN2FAQin6QmXNC84.mp4\"},KuUw_EOaX:{backgroundColor:\"rgb(29, 42, 25)\",objectFit:\"contain\",srcFile:\"https://framerusercontent.com/assets/2eJXHnbmB3ppxLLex5gUGHIdysQ.mp4\"},mfpK2jfFu:{srcFile:\"https://framerusercontent.com/assets/Yr2zpWd6FqkTQhsgxOh5L2StYQ.mp4\"},pcvg0I3Of:{srcFile:\"https://framerusercontent.com/assets/oJy9Ua77pPsiq40rYSSUkNtiTnw.mp4\"},vhJTdo3ig:{srcFile:\"https://framerusercontent.com/assets/uhEsHIZoRDTuFPElgMGfOzzpv8.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.26146) 62%, rgb(0, 0, 0) 100%)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xr8ekr\",\"data-framer-name\":\"Frame 1321321018\",layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrT2WGoGOM1\",style:{\"--1okwbr3\":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:{\"--1co9gd5\":OJnJihp0F},...addPropertyOverrides({fYhrII78I:{animate:animation5},KuUw_EOaX:{animate:animation3,initial:animation4},vhJTdo3ig:{animate:animation6}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation5,className:\"framer-kol6ja\",\"data-framer-appear-id\":\"kol6ja\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrs4FHL5tls\",optimized:true,...addPropertyOverrides({fYhrII78I:{animate:undefined,initial:undefined,optimized:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,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:\"Introducing: EMOTE-1\"})}),className:\"framer-1gw02in\",\"data-framer-name\":\"Nav Item\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrm4crxRGBJ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"2px\",\"--variable-reference-wCtHL4B0_-EW5SaNYw3\":wCtHL4B0_},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:\"Bring Your Vision to Life\"})})},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:\"Redefine Digital Presence\"})})},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:\"Generate Full-Body Gestures in Real-Time\"})})},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:\"Elevate Realism with Subtle 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:\"Empower AI Agents With Emotive 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:\"Alethea AI Labs is proud to announce the release of EMOTE-1, a high-fidelity, multimodal generative AI Engine that enables highly realistic facial expressions with emotional nuances in real-time, lifelike multilingual voices, full-body gestures, and a consistent personality.\"})}),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. We invite you to join our growing team at Alethea AI Labs\u2014where cutting-edge innovations like EMOTE-1 are shaping a future where AI enriches human experiences.\"})})},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 merges authentic expressions, real-time gestures, and lifelike voices to elevate your narrative. Empower AI Agents with emotive intelligence, bringing every character and scene to life with captivating realism.\"})})},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:\"EMOTE-1 seamlessly weaves genuine emotional nuance into every gesture, tone, and expression. By responding in real-time with lifelike expressions, EMOTE-1 creates experiences that resonate deeply with audiences\u2014transforming digital interactions into powerfully engaging, human-like connections.\"})})},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:\"EMOTE-1 delivers lifelike, full-body gestures in real-time, perfectly synced with each AI Agent\u2019s emotional cues and personality. These high-fidelity, natural movements create an immersive experience that feels authentic and engaging\u2014 elevating any content featuring EMOTE-1 generated AI Agents to an entirely new level of realism.\"})})},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 nuanced facial cues in real-time, enriching each Agent\u2019s emotional depth and authenticity. These intricate micro-expressions add nuance to every interaction, intensifying realism.\"})})},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\u2019s advanced emotive intelligence enables it to seamlessly unify emotional nuances, facial expressions, and fluid gestures into a highly realistic, dynamic display. Through this integrated approach to self-expression, AI Agents convey personality with remarkable depth and authenticity.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation7,className:\"framer-5oj9tv\",\"data-framer-appear-id\":\"5oj9tv\",\"data-framer-name\":\"Frame 1321321018\",initial:animation4,layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrpvgW4oQBr\",optimized:true,style:{\"--18cc2js\":kbq2JJwTV,\"--1d54uc8\":Mg4_VA4MX,\"--1tohnto\":kbq2JJwTV===\"column\"?0:\"calc(calc(max(0, var(--1d54uc8)) * 1px) / 2)\",\"--g9rfoi\":kbq2JJwTV===\"row\"?0:\"calc(calc(max(0, var(--1d54uc8)) * 1px) / 2)\"},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\",IlhNeYN_x:\"rgb(255, 255, 255)\",layoutId:\"wkkIvGpsrhGAe8rs9w\",mIG0Rua6K:10,V2XZctgJ8:\"https://forms.gle/A2XPzmon1t9cNJx19\",variant:P7WQ4HLs4,width:\"100%\",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_\",IlhNeYN_x:\"rgb(255, 255, 255)\",layoutId:\"Dv7hRy8T_\",mIG0Rua6K:10,V2XZctgJ8:\"https://aliagents.ai/\",variant:P7WQ4HLs4,width:\"100%\",ZZr6z1BZz:numberToPixelString(izgFTu4eD)})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12ocxqr\",\"data-framer-name\":\".carousel\",layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrVHfOGI8mZ\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n2av77\",\"data-framer-name\":\"Frame 1321320793\",layoutDependency:layoutDependency,layoutId:\"wkkIvGpsriM4S3XOPP\",style:{\"--1vpl304\":numberToPixelString(bLiO5Ic_E),\"--2kzs72\":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:{\"--1iw7n25\":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-46rhdu\",\"data-framer-name\":\"Component 354\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrW3nHjSMAN\",onTap:onTapi8pb7g,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1z0lx9f\",\"data-framer-name\":\"Rectangle 5\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrOXatFJwtu\",onTap:onTapi8pb7g,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-cwmg8i\",\"data-framer-name\":\"Component 354\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrSRwwx0KVQ\",onTap:onTap1u4zdpm,...addPropertyOverrides({KuUw_EOaX:{onTap:onTap1ycl1kw},vhJTdo3ig:{onTap:onTap1ycl1kw}},baseVariant,gestureVariant),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:{vhJTdo3ig:{backgroundColor:\"rgb(244, 244, 244)\"}}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k1wbcs\",\"data-framer-name\":\"Component 354\",layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrVNqW3NsRZ\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17ircm8\",\"data-framer-name\":\"Rectangle 5\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrR2bVeYBG0\",onTap:onTap1ycl1kw,style:{backgroundColor:\"rgb(128, 128, 128)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},variants:{fYhrII78I:{backgroundColor:\"rgb(255, 255, 255)\"}}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-oq8v0z\",\"data-framer-name\":\"Component 354\",layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrDUmKaUKga\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19iqbpc\",\"data-framer-name\":\"Rectangle 5\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrRcJHN5nrv\",onTap:onTap3ub12x,style:{backgroundColor:\"rgb(128, 128, 128)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},variants:{pcvg0I3Of:{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:onTap17n7cr4,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kyvvpe\",\"data-framer-name\":\"Rectangle 5\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrFLSiLQSrd\",onTap:onTap17n7cr4,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-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\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wkkIvGpsrTtY0sus3V\",onTap:onTap1xwmkan,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-C4Po6.framer-1f2p0cq, .framer-C4Po6 .framer-1f2p0cq { display: block; }\",\".framer-C4Po6.framer-1gz3z6m { height: 781px; overflow: hidden; position: relative; width: 1800px; will-change: var(--framer-will-change-override, transform); }\",\".framer-C4Po6 .framer-1sffsmz-container { flex: none; height: 780px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-C4Po6 .framer-a682e6 { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(49.93597951344432% - 100% / 2); width: 100%; }\",\".framer-C4Po6 .framer-xr8ekr { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: calc(max(0, var(--1okwbr3)) * 1px); height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: var(--j99o5e); position: absolute; width: 100%; }\",\".framer-C4Po6 .framer-149oxup { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: calc(max(0, var(--1co9gd5)) * 1px); height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-C4Po6 .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-C4Po6 .framer-1gw02in { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 60%; word-break: break-word; word-wrap: break-word; }\",\".framer-C4Po6 .framer-t07z4o { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-C4Po6 .framer-5oj9tv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: var(--18cc2js); flex-wrap: nowrap; gap: calc(max(0, var(--1d54uc8)) * 1px); height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-C4Po6 .framer-1yqd9om-container, .framer-C4Po6 .framer-u5z90u-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-C4Po6 .framer-12ocxqr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1640px; }\",\".framer-C4Po6 .framer-1n2av77 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: calc(max(0, var(--2kzs72)) * 1px); height: min-content; justify-content: center; overflow: visible; padding: var(--1vpl304); position: relative; width: min-content; }\",\".framer-C4Po6 .framer-8jbin { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: calc(max(0, var(--1iw7n25)) * 1px); height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-C4Po6 .framer-1bii5k5 { cursor: pointer; flex: none; height: 10px; overflow: visible; position: relative; width: 36px; }\",\".framer-C4Po6 .framer-gj7fwb, .framer-C4Po6 .framer-aptn3p { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-C4Po6 .framer-46rhdu, .framer-C4Po6 .framer-cwmg8i, .framer-C4Po6 .framer-1mur77o, .framer-C4Po6 .framer-o6eymu { cursor: pointer; flex: none; height: 10px; overflow: visible; position: relative; width: 10px; }\",\".framer-C4Po6 .framer-1z0lx9f, .framer-C4Po6 .framer-17ircm8, .framer-C4Po6 .framer-19iqbpc, .framer-C4Po6 .framer-kyvvpe, .framer-C4Po6 .framer-13grt6j { bottom: 0px; cursor: pointer; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-C4Po6 .framer-1k1wbcs, .framer-C4Po6 .framer-oq8v0z { flex: none; height: 10px; overflow: visible; position: relative; width: 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-C4Po6 .framer-xr8ekr, .framer-C4Po6 .framer-149oxup, .framer-C4Po6 .framer-kol6ja, .framer-C4Po6 .framer-5oj9tv, .framer-C4Po6 .framer-12ocxqr, .framer-C4Po6 .framer-1n2av77, .framer-C4Po6 .framer-8jbin { gap: 0px; } .framer-C4Po6 .framer-xr8ekr > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--1okwbr3)) * 1px) / 2); margin-top: calc(calc(max(0, var(--1okwbr3)) * 1px) / 2); } .framer-C4Po6 .framer-xr8ekr > :first-child, .framer-C4Po6 .framer-149oxup > :first-child, .framer-C4Po6 .framer-kol6ja > :first-child, .framer-C4Po6 .framer-1n2av77 > :first-child { margin-top: 0px; } .framer-C4Po6 .framer-xr8ekr > :last-child, .framer-C4Po6 .framer-149oxup > :last-child, .framer-C4Po6 .framer-kol6ja > :last-child, .framer-C4Po6 .framer-1n2av77 > :last-child { margin-bottom: 0px; } .framer-C4Po6 .framer-149oxup > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--1co9gd5)) * 1px) / 2); margin-top: calc(calc(max(0, var(--1co9gd5)) * 1px) / 2); } .framer-C4Po6 .framer-kol6ja > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-C4Po6 .framer-5oj9tv > * { margin-bottom: var(--g9rfoi); margin-left: var(--1tohnto); margin-right: var(--1tohnto); margin-top: var(--g9rfoi); } .framer-C4Po6 .framer-5oj9tv > :first-child { margin-left: 0px; margin-top: 0px; } .framer-C4Po6 .framer-5oj9tv > :last-child { margin-bottom: 0px; margin-right: 0px; } .framer-C4Po6 .framer-12ocxqr > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-C4Po6 .framer-12ocxqr > :first-child, .framer-C4Po6 .framer-8jbin > :first-child { margin-left: 0px; } .framer-C4Po6 .framer-12ocxqr > :last-child, .framer-C4Po6 .framer-8jbin > :last-child { margin-right: 0px; } .framer-C4Po6 .framer-1n2av77 > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--2kzs72)) * 1px) / 2); margin-top: calc(calc(max(0, var(--2kzs72)) * 1px) / 2); } .framer-C4Po6 .framer-8jbin > * { margin: 0px; margin-left: calc(calc(max(0, var(--1iw7n25)) * 1px) / 2); margin-right: calc(calc(max(0, var(--1iw7n25)) * 1px) / 2); } }\",\".framer-C4Po6.framer-v-15o9r8h .framer-1bii5k5, .framer-C4Po6.framer-v-zqvqsl .framer-1bii5k5, .framer-C4Po6.framer-v-ctm82e .framer-1bii5k5, .framer-C4Po6.framer-v-oq3yes .framer-1bii5k5, .framer-C4Po6.framer-v-r7vmrg .framer-1bii5k5, .framer-C4Po6.framer-v-1i4bsvc .framer-1bii5k5, .framer-C4Po6.framer-v-1i4bsvc .framer-1mur77o, .framer-C4Po6.framer-v-1jlmcx2 .framer-1bii5k5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: center; padding: 0px; width: min-content; }\",\".framer-C4Po6.framer-v-15o9r8h .framer-gj7fwb, .framer-C4Po6.framer-v-1jlmcx2 .framer-gj7fwb { bottom: unset; cursor: pointer; height: 10px; left: unset; position: relative; right: unset; top: unset; width: 10px; }\",\".framer-C4Po6.framer-v-15o9r8h .framer-46rhdu, .framer-C4Po6.framer-v-zqvqsl .framer-cwmg8i, .framer-C4Po6.framer-v-zqvqsl .framer-1k1wbcs, .framer-C4Po6.framer-v-ctm82e .framer-1k1wbcs, .framer-C4Po6.framer-v-ctm82e .framer-oq8v0z, .framer-C4Po6.framer-v-r7vmrg .framer-1mur77o, .framer-C4Po6.framer-v-1i4bsvc .framer-o6eymu, .framer-C4Po6.framer-v-1jlmcx2 .framer-46rhdu, .framer-C4Po6.framer-v-1jlmcx2 .framer-cwmg8i { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; justify-content: center; padding: 0px; width: min-content; }\",\".framer-C4Po6.framer-v-15o9r8h .framer-1z0lx9f, .framer-C4Po6.framer-v-zqvqsl .framer-17ircm8, .framer-C4Po6.framer-v-ctm82e .framer-19iqbpc, .framer-C4Po6.framer-v-r7vmrg .framer-kyvvpe, .framer-C4Po6.framer-v-1i4bsvc .framer-13grt6j, .framer-C4Po6.framer-v-1jlmcx2 .framer-aptn3p { bottom: unset; height: 10px; left: unset; position: relative; right: unset; top: unset; width: 36px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-C4Po6.framer-v-15o9r8h .framer-1bii5k5, .framer-C4Po6.framer-v-15o9r8h .framer-46rhdu { gap: 0px; } .framer-C4Po6.framer-v-15o9r8h .framer-1bii5k5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-C4Po6.framer-v-15o9r8h .framer-1bii5k5 > :first-child { margin-left: 0px; } .framer-C4Po6.framer-v-15o9r8h .framer-1bii5k5 > :last-child { margin-right: 0px; } .framer-C4Po6.framer-v-15o9r8h .framer-46rhdu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-C4Po6.framer-v-15o9r8h .framer-46rhdu > :first-child { margin-top: 0px; } .framer-C4Po6.framer-v-15o9r8h .framer-46rhdu > :last-child { margin-bottom: 0px; } }\",\".framer-C4Po6.framer-v-zqvqsl .framer-gj7fwb, .framer-C4Po6.framer-v-zqvqsl .framer-aptn3p, .framer-C4Po6.framer-v-ctm82e .framer-gj7fwb, .framer-C4Po6.framer-v-ctm82e .framer-17ircm8, .framer-C4Po6.framer-v-oq3yes .framer-gj7fwb, .framer-C4Po6.framer-v-r7vmrg .framer-gj7fwb, .framer-C4Po6.framer-v-1i4bsvc .framer-gj7fwb, .framer-C4Po6.framer-v-1i4bsvc .framer-kyvvpe, .framer-C4Po6.framer-v-1jlmcx2 .framer-1z0lx9f { bottom: unset; height: 10px; left: unset; position: relative; right: unset; top: unset; width: 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-C4Po6.framer-v-zqvqsl .framer-1bii5k5, .framer-C4Po6.framer-v-zqvqsl .framer-cwmg8i, .framer-C4Po6.framer-v-zqvqsl .framer-1k1wbcs { gap: 0px; } .framer-C4Po6.framer-v-zqvqsl .framer-1bii5k5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-C4Po6.framer-v-zqvqsl .framer-1bii5k5 > :first-child { margin-left: 0px; } .framer-C4Po6.framer-v-zqvqsl .framer-1bii5k5 > :last-child { margin-right: 0px; } .framer-C4Po6.framer-v-zqvqsl .framer-cwmg8i > *, .framer-C4Po6.framer-v-zqvqsl .framer-1k1wbcs > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-C4Po6.framer-v-zqvqsl .framer-cwmg8i > :first-child, .framer-C4Po6.framer-v-zqvqsl .framer-1k1wbcs > :first-child { margin-top: 0px; } .framer-C4Po6.framer-v-zqvqsl .framer-cwmg8i > :last-child, .framer-C4Po6.framer-v-zqvqsl .framer-1k1wbcs > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-C4Po6.framer-v-ctm82e .framer-1bii5k5, .framer-C4Po6.framer-v-ctm82e .framer-1k1wbcs, .framer-C4Po6.framer-v-ctm82e .framer-oq8v0z { gap: 0px; } .framer-C4Po6.framer-v-ctm82e .framer-1bii5k5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-C4Po6.framer-v-ctm82e .framer-1bii5k5 > :first-child { margin-left: 0px; } .framer-C4Po6.framer-v-ctm82e .framer-1bii5k5 > :last-child { margin-right: 0px; } .framer-C4Po6.framer-v-ctm82e .framer-1k1wbcs > *, .framer-C4Po6.framer-v-ctm82e .framer-oq8v0z > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-C4Po6.framer-v-ctm82e .framer-1k1wbcs > :first-child, .framer-C4Po6.framer-v-ctm82e .framer-oq8v0z > :first-child { margin-top: 0px; } .framer-C4Po6.framer-v-ctm82e .framer-1k1wbcs > :last-child, .framer-C4Po6.framer-v-ctm82e .framer-oq8v0z > :last-child { margin-bottom: 0px; } }\",\".framer-C4Po6.framer-v-oq3yes .framer-1sffsmz-container { bottom: 0px; left: calc(50.00000000000002% - 1800px / 2); right: unset; top: unset; width: 1800px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-C4Po6.framer-v-oq3yes .framer-1bii5k5 { gap: 0px; } .framer-C4Po6.framer-v-oq3yes .framer-1bii5k5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-C4Po6.framer-v-oq3yes .framer-1bii5k5 > :first-child { margin-left: 0px; } .framer-C4Po6.framer-v-oq3yes .framer-1bii5k5 > :last-child { margin-right: 0px; } }\",\".framer-C4Po6.framer-v-r7vmrg.framer-1gz3z6m { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-C4Po6.framer-v-r7vmrg .framer-1bii5k5, .framer-C4Po6.framer-v-r7vmrg .framer-1mur77o { gap: 0px; } .framer-C4Po6.framer-v-r7vmrg .framer-1bii5k5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-C4Po6.framer-v-r7vmrg .framer-1bii5k5 > :first-child { margin-left: 0px; } .framer-C4Po6.framer-v-r7vmrg .framer-1bii5k5 > :last-child { margin-right: 0px; } .framer-C4Po6.framer-v-r7vmrg .framer-1mur77o > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-C4Po6.framer-v-r7vmrg .framer-1mur77o > :first-child { margin-top: 0px; } .framer-C4Po6.framer-v-r7vmrg .framer-1mur77o > :last-child { margin-bottom: 0px; } }\",\".framer-C4Po6.framer-v-1i4bsvc .framer-1yqd9om-container { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-C4Po6.framer-v-1i4bsvc .framer-1bii5k5, .framer-C4Po6.framer-v-1i4bsvc .framer-1mur77o, .framer-C4Po6.framer-v-1i4bsvc .framer-o6eymu { gap: 0px; } .framer-C4Po6.framer-v-1i4bsvc .framer-1bii5k5 > *, .framer-C4Po6.framer-v-1i4bsvc .framer-1mur77o > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-C4Po6.framer-v-1i4bsvc .framer-1bii5k5 > :first-child, .framer-C4Po6.framer-v-1i4bsvc .framer-1mur77o > :first-child { margin-left: 0px; } .framer-C4Po6.framer-v-1i4bsvc .framer-1bii5k5 > :last-child, .framer-C4Po6.framer-v-1i4bsvc .framer-1mur77o > :last-child { margin-right: 0px; } .framer-C4Po6.framer-v-1i4bsvc .framer-o6eymu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-C4Po6.framer-v-1i4bsvc .framer-o6eymu > :first-child { margin-top: 0px; } .framer-C4Po6.framer-v-1i4bsvc .framer-o6eymu > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-C4Po6.framer-v-1jlmcx2 .framer-1bii5k5, .framer-C4Po6.framer-v-1jlmcx2 .framer-46rhdu, .framer-C4Po6.framer-v-1jlmcx2 .framer-cwmg8i { gap: 0px; } .framer-C4Po6.framer-v-1jlmcx2 .framer-1bii5k5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-C4Po6.framer-v-1jlmcx2 .framer-1bii5k5 > :first-child { margin-left: 0px; } .framer-C4Po6.framer-v-1jlmcx2 .framer-1bii5k5 > :last-child { margin-right: 0px; } .framer-C4Po6.framer-v-1jlmcx2 .framer-46rhdu > *, .framer-C4Po6.framer-v-1jlmcx2 .framer-cwmg8i > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-C4Po6.framer-v-1jlmcx2 .framer-46rhdu > :first-child, .framer-C4Po6.framer-v-1jlmcx2 .framer-cwmg8i > :first-child { margin-top: 0px; } .framer-C4Po6.framer-v-1jlmcx2 .framer-46rhdu > :last-child, .framer-C4Po6.framer-v-1jlmcx2 .framer-cwmg8i > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 781\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 {\"ROodcMdUx\":\"click2\",\"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\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEW5SaNYw3=withCSS(Component,css,\"framer-C4Po6\");export default FramerEW5SaNYw3;FramerEW5SaNYw3.displayName=\"Carousel-without-play\";FramerEW5SaNYw3.defaultProps={height:781,width:1800};addPropertyControls(FramerEW5SaNYw3,{variant:{options:[\"wkkIvGpsr\",\"KuUw_EOaX\",\"fYhrII78I\",\"pcvg0I3Of\",\"mfpK2jfFu\",\"CLvjWQnDa\",\"BUbQJNFZ8\",\"vhJTdo3ig\"],optionTitles:[\"Variant 1\",\"Slide 2\",\"Slide 4\",\"Slide 5\",\"Slide 6\",\"Variant 7\",\"Slide 8\",\"Slide 3\"],title:\"Variant\",type:ControlType.Enum},ROodcMdUx:{title:\"Click 2\",type:ControlType.EventHandler},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}});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\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEW5SaNYw3\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1800\",\"framerImmutableVariables\":\"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\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"ROodcMdUx\\\":\\\"click2\\\",\\\"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\\\"}\",\"framerIntrinsicHeight\":\"781\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EW5SaNYw3.map", "// Generated by Framer (47ebf4a)\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 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 breakpoints={AApFdBRJV:\"(max-width: 375px)\",b7c3HkCGg:\"(min-width: 1920px)\",dk7yrNgzF:\"(min-width: 376px) and (max-width: 875px)\",godMSCkw3:\"(min-width: 876px) and (max-width: 1199px)\",W8ktdlF9E:\"(min-width: 1200px) and (max-width: 1919px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-8BVLa\";const variantClassNames={AApFdBRJV:\"framer-v-6gol95\",b7c3HkCGg:\"framer-v-1ewxzap\",dk7yrNgzF:\"framer-v-1iufs90\",godMSCkw3:\"framer-v-1myt77q\",W8ktdlF9E:\"framer-v-51oh6e\"};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.5,duration:1,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\":\"W8ktdlF9E\",\"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,ezfMDrFUq,...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(baseVariant===\"AApFdBRJV\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"AApFdBRJV\")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)+16+0},dk7yrNgzF:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+20+0},godMSCkw3:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+20+0},W8ktdlF9E:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`}},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:\"DPfW3b3bL\"}},children:/*#__PURE__*/_jsx(Navigation,{Fhx7v7poj:\"space-between\",height:\"100%\",id:\"YDTw6hyJJ\",kumHXihTr:140,layoutId:\"YDTw6hyJJ\",style:{width:\"100%\"},variant:\"YQIGVyM86\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AApFdBRJV:{height:781,width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+16+80},dk7yrNgzF:{height:781,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+20+80},godMSCkw3:{height:781,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+20+84},W8ktdlF9E:{height:720,width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:732,width:`calc(${componentViewport?.width||\"100vw\"} - 160px)`,y:(componentViewport?.y||0)+0+64,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1d69oi0-container\",\"data-framer-appear-id\":\"1d69oi0\",initial:animation3,nodeId:\"dc1b0V1Wb\",optimized:true,rendersWithMotion:true,scopeId:\"IUpReIVnf\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AApFdBRJV:{bLiO5Ic_E:\"8px 12px 8px 12px\",BrLp64pWG:24,GSifYP8Kv:14,IEVIt8tSy:\"16px\",izgFTu4eD:\"12px\",kbq2JJwTV:\"column\",Mg4_VA4MX:16,NswFkmqQa:\"16px\",OJnJihp0F:20,P7WQ4HLs4:\"TN5D5n4Rt\",wCtHL4B0_:24},dk7yrNgzF:{bLiO5Ic_E:\"8px 12px 8px 12px\",BrLp64pWG:24,GSifYP8Kv:14,IEVIt8tSy:\"16px\",izgFTu4eD:\"12px\",kbq2JJwTV:\"column\",Mg4_VA4MX:16,NswFkmqQa:\"16px\",OJnJihp0F:20,P7WQ4HLs4:\"TN5D5n4Rt\",style:{width:\"100%\"},wCtHL4B0_:24},godMSCkw3:{bLiO5Ic_E:\"12px\",GSifYP8Kv:14,IEVIt8tSy:\"20px 40px 20px 40px\",style:{width:\"100%\"},wCtHL4B0_:40},W8ktdlF9E:{bLiO5Ic_E:\"16px 16px 16px 16px\",GSifYP8Kv:16,IEVIt8tSy:\"20px 60px 20px 60px\",ON_KuALDf:20,wCtHL4B0_:64}},children:/*#__PURE__*/_jsx(CarouselWithoutPlay,{bLiO5Ic_E:\"24px 24px 24px 24px\",BrLp64pWG:20,GSifYP8Kv:20,height:\"100%\",id:\"dc1b0V1Wb\",IEVIt8tSy:\"20px 80px 20px 80px\",izgFTu4eD:\"16px\",kbq2JJwTV:\"row\",layoutId:\"dc1b0V1Wb\",Mg4_VA4MX:24,NswFkmqQa:\"24px\",OJnJihp0F:36,ON_KuALDf:10,P7WQ4HLs4:\"QM9KNRaS5\",style:{height:\"100%\",width:\"100%\"},tr1aB9NU3:14,variant:\"wkkIvGpsr\",wCtHL4B0_:72,width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1esa5sz hidden-6gol95\",\"data-framer-appear-id\":\"1esa5sz\",initial:animation5,optimized:true,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,positionX:\"center\",positionY:\"center\",sizes:\"1868px\",src:\"https://framerusercontent.com/images/Qx8vsM0Tq9Ug9LTN0A3YRIIrRfI.svg\",srcSet:\"https://framerusercontent.com/images/Qx8vsM0Tq9Ug9LTN0A3YRIIrRfI.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Qx8vsM0Tq9Ug9LTN0A3YRIIrRfI.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qx8vsM0Tq9Ug9LTN0A3YRIIrRfI.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Qx8vsM0Tq9Ug9LTN0A3YRIIrRfI.svg 2503w\"},className:\"framer-1mush30\",\"data-framer-name\":\"STRIP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:78,intrinsicWidth:2503,positionX:\"center\",positionY:\"center\",sizes:\"1868px\",src:\"https://framerusercontent.com/images/Qx8vsM0Tq9Ug9LTN0A3YRIIrRfI.svg\",srcSet:\"https://framerusercontent.com/images/Qx8vsM0Tq9Ug9LTN0A3YRIIrRfI.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Qx8vsM0Tq9Ug9LTN0A3YRIIrRfI.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qx8vsM0Tq9Ug9LTN0A3YRIIrRfI.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Qx8vsM0Tq9Ug9LTN0A3YRIIrRfI.svg 2503w\"},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)+16+970.5+0+0},dk7yrNgzF:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+20+970.5+0+0},godMSCkw3:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+20+945+0+0},W8ktdlF9E:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+832+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:`calc(${componentViewport?.width||\"100vw\"} - 160px)`,y:(componentViewport?.y||0)+0+850+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%\"})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-14iqxl1 hidden-1ewxzap hidden-1myt77q hidden-51oh6e hidden-1iufs90\",\"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,positionX:\"center\",positionY:\"center\",sizes:\"1868px\",src:\"https://framerusercontent.com/images/Qx8vsM0Tq9Ug9LTN0A3YRIIrRfI.svg\",srcSet:\"https://framerusercontent.com/images/Qx8vsM0Tq9Ug9LTN0A3YRIIrRfI.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Qx8vsM0Tq9Ug9LTN0A3YRIIrRfI.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qx8vsM0Tq9Ug9LTN0A3YRIIrRfI.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Qx8vsM0Tq9Ug9LTN0A3YRIIrRfI.svg 2503w\"},className:\"framer-1mush30\",\"data-framer-name\":\"STRIP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:78,intrinsicWidth:2503,positionX:\"center\",positionY:\"center\",sizes:\"1868px\",src:\"https://framerusercontent.com/images/Qx8vsM0Tq9Ug9LTN0A3YRIIrRfI.svg\",srcSet:\"https://framerusercontent.com/images/Qx8vsM0Tq9Ug9LTN0A3YRIIrRfI.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Qx8vsM0Tq9Ug9LTN0A3YRIIrRfI.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qx8vsM0Tq9Ug9LTN0A3YRIIrRfI.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Qx8vsM0Tq9Ug9LTN0A3YRIIrRfI.svg 2503w\"},className:\"framer-1mush30\",\"data-framer-name\":\"STRIP\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8BVLa.framer-b5zwhh, .framer-8BVLa .framer-b5zwhh { display: block; }\",\".framer-8BVLa.framer-1ewxzap { align-content: center; align-items: center; background-color: #f8fafc; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-evenly; overflow: hidden; padding: 0px 80px 0px 80px; position: relative; width: 1920px; }\",\".framer-8BVLa .framer-1osec8j-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-8BVLa .framer-1d69oi0-container { flex: none; height: 732px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8BVLa .framer-1esa5sz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1760px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8BVLa .framer-13ozemv, .framer-8BVLa .framer-j6umqk { --framer-paragraph-spacing: 4px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8BVLa .framer-1y85xdh-container { flex: 1 0 0px; height: 54px; position: relative; width: 1px; }\",\".framer-8BVLa .framer-1mush30 { height: 60px; position: relative; width: 1868px; }\",\".framer-8BVLa .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-8BVLa .framer-142ynr6-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-8BVLa .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-8BVLa .framer-1hcy4p3-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8BVLa .framer-1esa5sz, .framer-8BVLa .framer-18wqdf, .framer-8BVLa .framer-14iqxl1 { gap: 0px; } .framer-8BVLa .framer-1esa5sz > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-8BVLa .framer-1esa5sz > :first-child { margin-left: 0px; } .framer-8BVLa .framer-1esa5sz > :last-child { margin-right: 0px; } .framer-8BVLa .framer-18wqdf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-8BVLa .framer-18wqdf > :first-child, .framer-8BVLa .framer-14iqxl1 > :first-child { margin-top: 0px; } .framer-8BVLa .framer-18wqdf > :last-child, .framer-8BVLa .framer-14iqxl1 > :last-child { margin-bottom: 0px; } .framer-8BVLa .framer-14iqxl1 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\"@media (min-width: 876px) and (max-width: 1199px) { .framer-8BVLa.framer-1ewxzap { gap: 20px; justify-content: center; padding: 20px 20px 0px 20px; width: 876px; } .framer-8BVLa .framer-1d69oi0-container { height: auto; } .framer-8BVLa .framer-1esa5sz { gap: 16px; width: 770px; } .framer-8BVLa .framer-1y85xdh-container { height: 40px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8BVLa.framer-1ewxzap, .framer-8BVLa .framer-1esa5sz { gap: 0px; } .framer-8BVLa.framer-1ewxzap > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-8BVLa.framer-1ewxzap > :first-child { margin-top: 0px; } .framer-8BVLa.framer-1ewxzap > :last-child { margin-bottom: 0px; } .framer-8BVLa .framer-1esa5sz > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-8BVLa .framer-1esa5sz > :first-child { margin-left: 0px; } .framer-8BVLa .framer-1esa5sz > :last-child { margin-right: 0px; } }}\",\"@media (min-width: 1200px) and (max-width: 1919px) { .framer-8BVLa.framer-1ewxzap { flex-wrap: wrap; padding: 0px 40px 0px 40px; width: 1200px; } .framer-8BVLa .framer-1d69oi0-container { height: 720px; } .framer-8BVLa .framer-1esa5sz { gap: 16px; width: 100%; } .framer-8BVLa .framer-1y85xdh-container { height: 48px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8BVLa .framer-1esa5sz { gap: 0px; } .framer-8BVLa .framer-1esa5sz > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-8BVLa .framer-1esa5sz > :first-child { margin-left: 0px; } .framer-8BVLa .framer-1esa5sz > :last-child { margin-right: 0px; } }}\",\"@media (min-width: 376px) and (max-width: 875px) { .framer-8BVLa.framer-1ewxzap { gap: 16px; justify-content: center; padding: 20px 20px 0px 20px; width: 376px; } .framer-8BVLa .framer-1d69oi0-container { height: auto; } .framer-8BVLa .framer-1esa5sz { flex-direction: column; gap: 12px; height: 78px; width: 100%; } .framer-8BVLa .framer-1y85xdh-container { height: 1px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8BVLa.framer-1ewxzap, .framer-8BVLa .framer-1esa5sz { gap: 0px; } .framer-8BVLa.framer-1ewxzap > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-8BVLa.framer-1ewxzap > :first-child, .framer-8BVLa .framer-1esa5sz > :first-child { margin-top: 0px; } .framer-8BVLa.framer-1ewxzap > :last-child, .framer-8BVLa .framer-1esa5sz > :last-child { margin-bottom: 0px; } .framer-8BVLa .framer-1esa5sz > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }}\",\"@media (max-width: 375px) { .framer-8BVLa.framer-1ewxzap { gap: 16px; justify-content: center; padding: 16px 16px 0px 16px; width: 375px; } .framer-8BVLa .framer-1osec8j-container { order: 0; } .framer-8BVLa .framer-1d69oi0-container { height: 781px; order: 1; } .framer-8BVLa .framer-18wqdf { order: 4; } .framer-8BVLa .framer-14iqxl1 { order: 3; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8BVLa.framer-1ewxzap { gap: 0px; } .framer-8BVLa.framer-1ewxzap > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-8BVLa.framer-1ewxzap > :first-child { margin-top: 0px; } .framer-8BVLa.framer-1ewxzap > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 894\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"godMSCkw3\":{\"layout\":[\"fixed\",\"auto\"]},\"W8ktdlF9E\":{\"layout\":[\"fixed\",\"auto\"]},\"dk7yrNgzF\":{\"layout\":[\"fixed\",\"auto\"]},\"AApFdBRJV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerIUpReIVnf=withCSS(Component,css,\"framer-8BVLa\");export default FramerIUpReIVnf;FramerIUpReIVnf.displayName=\"Page\";FramerIUpReIVnf.defaultProps={height:894,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\"}]},...NavigationFonts,...CarouselWithoutPlayFonts,...TickerFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIUpReIVnf\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1920\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"godMSCkw3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"W8ktdlF9E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dk7yrNgzF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AApFdBRJV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"894\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerImmutableVariables\":\"true\"}},\"__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", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "useOnEnter", "onEnter", "enabled", "useOnSpecificTargetChange", "useOnExit", "onExit", "goal", "callback", "isInTarget", "useIsInCurrentNavigationTarget", "ue", "isBrowserSafari", "navigator", "userAgent", "useIsBrowserSafari", "se", "useRenderTarget", "se", "RenderTarget", "useIsOnCanvas", "se", "RenderTarget", "useRadius", "props", "borderRadius", "isMixedBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "se", "borderRadiusControl", "ControlType", "paddingControl", "ControlType", "ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "VideoFonts", "getFonts", "Video", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "ButtonDefaultFonts", "QbJpAlr3_default", "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", "transition7", "animation7", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "humanReadableEnumMap", "humanReadableEnumMap1", "humanReadableVariantMap", "getProps", "buttonDirection", "buttonGaps", "buttonPadding", "buttonVariant", "carouselGap", "carouselPadding", "click2", "gap", "height", "id", "radius", "subtitle", "textContainerGap", "textContainerPadding", "textGap", "title", "video", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ROodcMdUx", "wCtHL4B0_", "GSifYP8Kv", "NswFkmqQa", "ON_KuALDf", "IEVIt8tSy", "izgFTu4eD", "BrLp64pWG", "bLiO5Ic_E", "OJnJihp0F", "P7WQ4HLs4", "kbq2JJwTV", "Mg4_VA4MX", "rsy1z1GD8", "tr1aB9NU3", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppeare9l7o9", "args", "onAppear1kkwoqb", "onAppeardps1o3", "onAppear1kclv99", "onTap160819i", "onAppear2tg8st", "onAppearwl6d62", "onAppear1xhzg7v", "onPause15h22x4", "onTapdujtp6", "onTapi8pb7g", "onTap1u4zdpm", "onTap1ycl1kw", "onTap3ub12x", "onTap17n7cr4", "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", "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", "ezfMDrFUq", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "RichText2", "Image2", "css", "FramerIUpReIVnf", "withCSS", "IUpReIVnf_default", "addFonts", "__FramerMetadata__"]
}
