{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://ga.jspm.io/npm:style-value-types@5.0.0/dist/es/index.mjs", "ssg:https://ga.jspm.io/npm:framesync@6.0.1/dist/es/index.mjs", "ssg:https://ga.jspm.io/npm:popmotion@11.0.3/dist/es/index.mjs", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/tMgLW02JctHcv25gtiqf/SlideShow.js", "ssg:https://framerusercontent.com/modules/XTGg2tpXjgvGymnorcWK/WBJmiGExIJXBiTxlDaEn/NDdL7vqzo.js", "ssg:https://framerusercontent.com/modules/vr6RBKN8mdULugjP5fl9/y4WgDSwGMo1zaNG3qUex/BrevoButton.js", "ssg:https://framerusercontent.com/modules/9d84if02b1mI4DYzVJxR/SN6VOF5OjnqNooJopUNg/Text_Opacity_Letters.js", "ssg:https://framerusercontent.com/modules/6oe6aj8cSwIWYRvUdSMi/EiVOx9EbasqzNcJFTWe5/yhQ3Da7Ze.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "const clamp=(t,s)=>e=>Math.max(Math.min(e,s),t);const sanitize=t=>t%1?Number(t.toFixed(5)):t;const t=/(-)?([\\d]*\\.?[\\d])+/g;const s=/(#[0-9a-f]{6}|#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\\((-?[\\d\\.]+%?[,\\s]+){2,3}\\s*\\/*\\s*[\\d\\.]+%?\\))/gi;const e=/^(#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\\((-?[\\d\\.]+%?[,\\s]+){2,3}\\s*\\/*\\s*[\\d\\.]+%?\\))$/i;function isString(t){return\"string\"===typeof t}const r={test:t=>\"number\"===typeof t,parse:parseFloat,transform:t=>t};const n=Object.assign(Object.assign({},r),{transform:clamp(0,1)});const a=Object.assign(Object.assign({},r),{default:1});const createUnitType=t=>({test:s=>isString(s)&&s.endsWith(t)&&1===s.split(\" \").length,parse:parseFloat,transform:s=>`${s}${t}`});const o=createUnitType(\"deg\");const c=createUnitType(\"%\");const l=createUnitType(\"px\");const i=createUnitType(\"vh\");const p=createUnitType(\"vw\");const u=Object.assign(Object.assign({},c),{parse:t=>c.parse(t)/100,transform:t=>c.transform(100*t)});const isColorString=(t,s)=>r=>Boolean(isString(r)&&e.test(r)&&r.startsWith(t)||s&&Object.prototype.hasOwnProperty.call(r,s));const splitColor=(s,e,r)=>n=>{if(!isString(n))return n;const[a,o,c,l]=n.match(t);return{[s]:parseFloat(a),[e]:parseFloat(o),[r]:parseFloat(c),alpha:void 0!==l?parseFloat(l):1}};const f={test:isColorString(\"hsl\",\"hue\"),parse:splitColor(\"hue\",\"saturation\",\"lightness\"),transform:({hue:t,saturation:s,lightness:e,alpha:r=1})=>\"hsla(\"+Math.round(t)+\", \"+c.transform(sanitize(s))+\", \"+c.transform(sanitize(e))+\", \"+sanitize(n.transform(r))+\")\"};const m=clamp(0,255);const g=Object.assign(Object.assign({},r),{transform:t=>Math.round(m(t))});const h={test:isColorString(\"rgb\",\"red\"),parse:splitColor(\"red\",\"green\",\"blue\"),transform:({red:t,green:s,blue:e,alpha:r=1})=>\"rgba(\"+g.transform(t)+\", \"+g.transform(s)+\", \"+g.transform(e)+\", \"+sanitize(n.transform(r))+\")\"};function parseHex(t){let s=\"\";let e=\"\";let r=\"\";let n=\"\";if(t.length>5){s=t.substr(1,2);e=t.substr(3,2);r=t.substr(5,2);n=t.substr(7,2)}else{s=t.substr(1,1);e=t.substr(2,1);r=t.substr(3,1);n=t.substr(4,1);s+=s;e+=e;r+=r;n+=n}return{red:parseInt(s,16),green:parseInt(e,16),blue:parseInt(r,16),alpha:n?parseInt(n,16)/255:1}}const b={test:isColorString(\"#\"),parse:parseHex,transform:h.transform};const d={test:t=>h.test(t)||b.test(t)||f.test(t),parse:t=>h.test(t)?h.parse(t):f.test(t)?f.parse(t):b.parse(t),transform:t=>isString(t)?t:t.hasOwnProperty(\"red\")?h.transform(t):f.transform(t)};const v=\"${c}\";const y=\"${n}\";function test(e){var r,n,a,o;return isNaN(e)&&isString(e)&&(null!==(n=null===(r=e.match(t))||void 0===r?void 0:r.length)&&void 0!==n?n:0)+(null!==(o=null===(a=e.match(s))||void 0===a?void 0:a.length)&&void 0!==o?o:0)>0}function analyse(e){\"number\"===typeof e&&(e=`${e}`);const n=[];let a=0;const o=e.match(s);if(o){a=o.length;e=e.replace(s,v);n.push(...o.map(d.parse))}const c=e.match(t);if(c){e=e.replace(t,y);n.push(...c.map(r.parse))}return{values:n,numColors:a,tokenised:e}}function parse(t){return analyse(t).values}function createTransformer(t){const{values:s,numColors:e,tokenised:r}=analyse(t);const n=s.length;return t=>{let s=r;for(let r=0;r<n;r++)s=s.replace(r<e?v:y,r<e?d.transform(t[r]):sanitize(t[r]));return s}}const convertNumbersToZero=t=>\"number\"===typeof t?0:t;function getAnimatableNone(t){const s=parse(t);const e=createTransformer(t);return e(s.map(convertNumbersToZero))}const O={test:test,parse:parse,createTransformer:createTransformer,getAnimatableNone:getAnimatableNone};const j=new Set([\"brightness\",\"contrast\",\"saturate\",\"opacity\"]);function applyDefaultFilter(s){let[e,r]=s.slice(0,-1).split(\"(\");if(\"drop-shadow\"===e)return s;const[n]=r.match(t)||[];if(!n)return s;const a=r.replace(n,\"\");let o=j.has(e)?1:0;n!==r&&(o*=100);return e+\"(\"+o+a+\")\"}const F=/([a-z-]*)\\(.*?\\)/g;const N=Object.assign(Object.assign({},O),{getAnimatableNone:t=>{const s=t.match(F);return s?s.map(applyDefaultFilter).join(\" \"):t}});export{n as alpha,d as color,O as complex,o as degrees,N as filter,b as hex,f as hsla,r as number,c as percent,u as progressPercentage,l as px,g as rgbUnit,h as rgba,a as scale,i as vh,p as vw};\n\n//# sourceMappingURL=index.mjs.map", "const e=1/60*1e3;const t=\"undefined\"!==typeof performance?()=>performance.now():()=>Date.now();const n=\"undefined\"!==typeof window?e=>window.requestAnimationFrame(e):n=>setTimeout((()=>n(t())),e);function createRenderStep(e){let t=[];let n=[];let s=0;let r=false;let c=false;const o=new WeakSet;const a={schedule:(e,c=false,a=false)=>{const l=a&&r;const f=l?t:n;c&&o.add(e);if(-1===f.indexOf(e)){f.push(e);l&&r&&(s=t.length)}return e},cancel:e=>{const t=n.indexOf(e);-1!==t&&n.splice(t,1);o.delete(e)},process:l=>{if(r)c=true;else{r=true;[t,n]=[n,t];n.length=0;s=t.length;if(s)for(let n=0;n<s;n++){const s=t[n];s(l);if(o.has(s)){a.schedule(s);e()}}r=false;if(c){c=false;a.process(l)}}}};return a}const s=40;let r=true;let c=false;let o=false;const a={delta:0,timestamp:0};const l=[\"read\",\"update\",\"preRender\",\"render\",\"postRender\"];const f=l.reduce(((e,t)=>{e[t]=createRenderStep((()=>c=true));return e}),{});const u=l.reduce(((e,t)=>{const n=f[t];e[t]=(e,t=false,s=false)=>{c||startLoop();return n.schedule(e,t,s)};return e}),{});const d=l.reduce(((e,t)=>{e[t]=f[t].cancel;return e}),{});const i=l.reduce(((e,t)=>{e[t]=()=>f[t].process(a);return e}),{});const processStep=e=>f[e].process(a);const processFrame=t=>{c=false;a.delta=r?e:Math.max(Math.min(t-a.timestamp,s),1);a.timestamp=t;o=true;l.forEach(processStep);o=false;if(c){r=false;n(processFrame)}};const startLoop=()=>{c=true;r=true;o||n(processFrame)};const getFrameData=()=>a;export{d as cancelSync,u as default,i as flushSync,getFrameData};\n\n//# sourceMappingURL=index.mjs.map", "import{__rest as t}from\"tslib\";import{warning as e,invariant as n}from\"hey-listen\";import{hex as o,rgba as s,hsla as r,color as i,complex as u}from\"style-value-types\";import l,{cancelSync as p,getFrameData as f}from\"framesync\";const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const d=.001;const h=.01;const m=10;const y=.05;const g=1;function findSpring({duration:t=800,bounce:n=.25,velocity:o=0,mass:s=1}){let r;let i;e(t<=1e3*m,\"Spring duration must be 10 seconds or less\");let u=1-n;u=clamp(y,g,u);t=clamp(h,m,t/1e3);if(u<1){r=e=>{const n=e*u;const s=n*t;const r=n-o;const i=calcAngularFreq(e,u);const l=Math.exp(-s);return d-r/i*l};i=e=>{const n=e*u;const s=n*t;const i=s*o+o;const l=Math.pow(u,2)*Math.pow(e,2)*t;const p=Math.exp(-s);const f=calcAngularFreq(Math.pow(e,2),u);const h=-r(e)+d>0?-1:1;return h*((i-l)*p)/f}}else{r=e=>{const n=Math.exp(-e*t);const s=(e-o)*t+1;return n*s-d};i=e=>{const n=Math.exp(-e*t);const s=t*t*(o-e);return n*s}}const l=5/t;const p=approximateRoot(r,i,l);t*=1e3;if(isNaN(p))return{stiffness:100,damping:10,duration:t};{const e=Math.pow(p,2)*s;return{stiffness:e,damping:2*u*Math.sqrt(s*e),duration:t}}}const v=12;function approximateRoot(t,e,n){let o=n;for(let n=1;n<v;n++)o-=t(o)/e(o);return o}function calcAngularFreq(t,e){return t*Math.sqrt(1-e*e)}const M=[\"duration\",\"bounce\"];const x=[\"stiffness\",\"damping\",\"mass\"];function isSpringType(t,e){return e.some((e=>void 0!==t[e]))}function getSpringOptions(t){let e=Object.assign({velocity:0,stiffness:100,damping:10,mass:1,isResolvedFromDuration:false},t);if(!isSpringType(t,x)&&isSpringType(t,M)){const n=findSpring(t);e=Object.assign(Object.assign(Object.assign({},e),n),{velocity:0,mass:1});e.isResolvedFromDuration=true}return e}function spring(e){var{from:n=0,to:o=1,restSpeed:s=2,restDelta:r}=e,i=t(e,[\"from\",\"to\",\"restSpeed\",\"restDelta\"]);const u={done:false,value:n};let{stiffness:l,damping:p,mass:f,velocity:d,duration:h,isResolvedFromDuration:m}=getSpringOptions(i);let y=zero;let g=zero;function createSpring(){const t=d?-d/1e3:0;const e=o-n;const s=p/(2*Math.sqrt(l*f));const i=Math.sqrt(l/f)/1e3;void 0===r&&(r=Math.min(Math.abs(o-n)/100,.4));if(s<1){const n=calcAngularFreq(i,s);y=r=>{const u=Math.exp(-s*i*r);return o-u*((t+s*i*e)/n*Math.sin(n*r)+e*Math.cos(n*r))};g=o=>{const r=Math.exp(-s*i*o);return s*i*r*(Math.sin(n*o)*(t+s*i*e)/n+e*Math.cos(n*o))-r*(Math.cos(n*o)*(t+s*i*e)-n*e*Math.sin(n*o))}}else if(1===s)y=n=>o-Math.exp(-i*n)*(e+(t+i*e)*n);else{const n=i*Math.sqrt(s*s-1);y=r=>{const u=Math.exp(-s*i*r);const l=Math.min(n*r,300);return o-u*((t+s*i*e)*Math.sinh(l)+n*e*Math.cosh(l))/n}}}createSpring();return{next:t=>{const e=y(t);if(m)u.done=t>=h;else{const n=1e3*g(t);const i=Math.abs(n)<=s;const l=Math.abs(o-e)<=r;u.done=i&&l}u.value=u.done?o:e;return u},flipTarget:()=>{d=-d;[n,o]=[o,n];createSpring()}}}spring.needsInterpolation=(t,e)=>\"string\"===typeof t||\"string\"===typeof e;const zero=t=>0;const progress=(t,e,n)=>{const o=e-t;return 0===o?1:(n-t)/o};const mix=(t,e,n)=>-n*t+n*e+t;function hueToRgb(t,e,n){n<0&&(n+=1);n>1&&(n-=1);return n<1/6?t+6*(e-t)*n:n<.5?e:n<2/3?t+(e-t)*(2/3-n)*6:t}function hslaToRgba({hue:t,saturation:e,lightness:n,alpha:o}){t/=360;e/=100;n/=100;let s=0;let r=0;let i=0;if(e){const o=n<.5?n*(1+e):n+e-n*e;const u=2*n-o;s=hueToRgb(u,o,t+1/3);r=hueToRgb(u,o,t);i=hueToRgb(u,o,t-1/3)}else s=r=i=n;return{red:Math.round(255*s),green:Math.round(255*r),blue:Math.round(255*i),alpha:o}}const mixLinearColor=(t,e,n)=>{const o=t*t;const s=e*e;return Math.sqrt(Math.max(0,n*(s-o)+o))};const S=[o,s,r];const getColorType=t=>S.find((e=>e.test(t)));const notAnimatable=t=>`'${t}' is not an animatable color. Use the equivalent color code instead.`;const mixColor=(t,e)=>{let o=getColorType(t);let i=getColorType(e);n(!!o,notAnimatable(t));n(!!i,notAnimatable(e));let u=o.parse(t);let l=i.parse(e);if(o===r){u=hslaToRgba(u);o=s}if(i===r){l=hslaToRgba(l);i=s}const p=Object.assign({},u);return t=>{for(const e in p)\"alpha\"!==e&&(p[e]=mixLinearColor(u[e],l[e],t));p.alpha=mix(u.alpha,l.alpha,t);return o.transform(p)}};const O={x:0,y:0,z:0};const isNum=t=>\"number\"===typeof t;const combineFunctions=(t,e)=>n=>e(t(n));const pipe=(...t)=>t.reduce(combineFunctions);function getMixer(t,e){return isNum(t)?n=>mix(t,e,n):i.test(t)?mixColor(t,e):mixComplex(t,e)}const mixArray=(t,e)=>{const n=[...t];const o=n.length;const s=t.map(((t,n)=>getMixer(t,e[n])));return t=>{for(let e=0;e<o;e++)n[e]=s[e](t);return n}};const mixObject=(t,e)=>{const n=Object.assign(Object.assign({},t),e);const o={};for(const s in n)void 0!==t[s]&&void 0!==e[s]&&(o[s]=getMixer(t[s],e[s]));return t=>{for(const e in o)n[e]=o[e](t);return n}};function analyse(t){const e=u.parse(t);const n=e.length;let o=0;let s=0;let r=0;for(let t=0;t<n;t++)o||\"number\"===typeof e[t]?o++:void 0!==e[t].hue?r++:s++;return{parsed:e,numNumbers:o,numRGB:s,numHSL:r}}const mixComplex=(t,n)=>{const o=u.createTransformer(n);const s=analyse(t);const r=analyse(n);const i=s.numHSL===r.numHSL&&s.numRGB===r.numRGB&&s.numNumbers>=r.numNumbers;if(i)return pipe(mixArray(s.parsed,r.parsed),o);e(true,`Complex values '${t}' and '${n}' too different to mix. Ensure all colors are of the same type, and that each contains the same quantity of number and color values. Falling back to instant transition.`);return e=>`${e>0?n:t}`};const mixNumber=(t,e)=>n=>mix(t,e,n);function detectMixerFactory(t){return\"number\"===typeof t?mixNumber:\"string\"===typeof t?i.test(t)?mixColor:mixComplex:Array.isArray(t)?mixArray:\"object\"===typeof t?mixObject:void 0}function createMixers(t,e,n){const o=[];const s=n||detectMixerFactory(t[0]);const r=t.length-1;for(let n=0;n<r;n++){let r=s(t[n],t[n+1]);if(e){const t=Array.isArray(e)?e[n]:e;r=pipe(t,r)}o.push(r)}return o}function fastInterpolate([t,e],[n]){return o=>n(progress(t,e,o))}function slowInterpolate(t,e){const n=t.length;const o=n-1;return s=>{let r=0;let i=false;if(s<=t[0])i=true;else if(s>=t[o]){r=o-1;i=true}if(!i){let e=1;for(;e<n;e++)if(t[e]>s||e===o)break;r=e-1}const u=progress(t[r],t[r+1],s);return e[r](u)}}function interpolate(t,e,{clamp:o=true,ease:s,mixer:r}={}){const i=t.length;n(i===e.length,\"Both input and output ranges must be the same length\");n(!s||!Array.isArray(s)||s.length===i-1,\"Array of easing functions must be of length `input.length - 1`, as it applies to the transitions **between** the defined values.\");if(t[0]>t[i-1]){t=[].concat(t);e=[].concat(e);t.reverse();e.reverse()}const u=createMixers(e,s,r);const l=2===i?fastInterpolate(t,u):slowInterpolate(t,u);return o?e=>l(clamp(t[0],t[i-1],e)):l}const reverseEasing=t=>e=>1-t(1-e);const mirrorEasing=t=>e=>e<=.5?t(2*e)/2:(2-t(2*(1-e)))/2;const createExpoIn=t=>e=>Math.pow(e,t);const createBackIn=t=>e=>e*e*((t+1)*e-t);const createAnticipate=t=>{const e=createBackIn(t);return t=>(t*=2)<1?.5*e(t):.5*(2-Math.pow(2,-10*(t-1)))};const T=1.525;const w=4/11;const A=8/11;const R=.9;const linear=t=>t;const F=createExpoIn(2);const D=reverseEasing(F);const j=mirrorEasing(F);const circIn=t=>1-Math.sin(Math.acos(t));const q=reverseEasing(circIn);const I=mirrorEasing(q);const P=createBackIn(T);const k=reverseEasing(P);const E=mirrorEasing(P);const B=createAnticipate(T);const C=4356/361;const N=35442/1805;const U=16061/1805;const bounceOut=t=>{if(1===t||0===t)return t;const e=t*t;return t<w?7.5625*e:t<A?9.075*e-9.9*t+3.4:t<R?C*e-N*t+U:10.8*t*t-20.52*t+10.72};const z=reverseEasing(bounceOut);const bounceInOut=t=>t<.5?.5*(1-bounceOut(1-2*t)):.5*bounceOut(2*t-1)+.5;function defaultEasing(t,e){return t.map((()=>e||j)).splice(0,t.length-1)}function defaultOffset(t){const e=t.length;return t.map(((t,n)=>0!==n?n/(e-1):0))}function convertOffsetToTimes(t,e){return t.map((t=>t*e))}function keyframes({from:t=0,to:e=1,ease:n,offset:o,duration:s=300}){const r={done:false,value:t};const i=Array.isArray(e)?e:[t,e];const u=convertOffsetToTimes(o&&o.length===i.length?o:defaultOffset(i),s);function createInterpolator(){return interpolate(u,i,{ease:Array.isArray(n)?n:defaultEasing(i,n)})}let l=createInterpolator();return{next:t=>{r.value=l(t);r.done=t>=s;return r},flipTarget:()=>{i.reverse();l=createInterpolator()}}}function decay({velocity:t=0,from:e=0,power:n=.8,timeConstant:o=350,restDelta:s=.5,modifyTarget:r}){const i={done:false,value:e};let u=n*t;const l=e+u;const p=void 0===r?l:r(l);p!==l&&(u=p-e);return{next:t=>{const e=-u*Math.exp(-t/o);i.done=!(e>s||e<-s);i.value=i.done?p:p+e;return i},flipTarget:()=>{}}}const $={keyframes:keyframes,spring:spring,decay:decay};function detectAnimationFromOptions(t){if(Array.isArray(t.to))return keyframes;if($[t.type])return $[t.type];const e=new Set(Object.keys(t));return e.has(\"ease\")||e.has(\"duration\")&&!e.has(\"dampingRatio\")?keyframes:e.has(\"dampingRatio\")||e.has(\"stiffness\")||e.has(\"mass\")||e.has(\"damping\")||e.has(\"restSpeed\")||e.has(\"restDelta\")?spring:keyframes}function loopElapsed(t,e,n=0){return t-e-n}function reverseElapsed(t,e,n=0,o=true){return o?loopElapsed(e+-t,e,n):e-(t-e)+n}function hasRepeatDelayElapsed(t,e,n,o){return o?t>=e+n:t<=-n}const framesync=t=>{const passTimestamp=({delta:e})=>t(e);return{start:()=>l.update(passTimestamp,true),stop:()=>p.update(passTimestamp)}};function animate(e){var n,o;var{from:s,autoplay:r=true,driver:i=framesync,elapsed:u=0,repeat:l=0,repeatType:p=\"loop\",repeatDelay:f=0,onPlay:d,onStop:h,onComplete:m,onRepeat:y,onUpdate:g}=e,v=t(e,[\"from\",\"autoplay\",\"driver\",\"elapsed\",\"repeat\",\"repeatType\",\"repeatDelay\",\"onPlay\",\"onStop\",\"onComplete\",\"onRepeat\",\"onUpdate\"]);let{to:M}=v;let x;let S=0;let O=v.duration;let T;let w=false;let A=true;let R;const F=detectAnimationFromOptions(v);if(null===(o=(n=F).needsInterpolation)||void 0===o?void 0:o.call(n,s,M)){R=interpolate([0,100],[s,M],{clamp:false});s=0;M=100}const D=F(Object.assign(Object.assign({},v),{from:s,to:M}));function repeat(){S++;if(\"reverse\"===p){A=S%2===0;u=reverseElapsed(u,O,f,A)}else{u=loopElapsed(u,O,f);\"mirror\"===p&&D.flipTarget()}w=false;y&&y()}function complete(){x.stop();m&&m()}function update(t){A||(t=-t);u+=t;if(!w){const t=D.next(Math.max(0,u));T=t.value;R&&(T=R(T));w=A?t.done:u<=0}null===g||void 0===g?void 0:g(T);if(w){0===S&&(null!==O&&void 0!==O?O:O=u);S<l?hasRepeatDelayElapsed(u,O,f,A)&&repeat():complete()}}function play(){null===d||void 0===d?void 0:d();x=i(update);x.start()}r&&play();return{stop:()=>{null===h||void 0===h?void 0:h();x.stop()}}}function velocityPerSecond(t,e){return e?t*(1e3/e):0}function inertia({from:t=0,velocity:e=0,min:n,max:o,power:s=.8,timeConstant:r=750,bounceStiffness:i=500,bounceDamping:u=10,restDelta:l=1,modifyTarget:p,driver:d,onUpdate:h,onComplete:m,onStop:y}){let g;function isOutOfBounds(t){return void 0!==n&&t<n||void 0!==o&&t>o}function boundaryNearest(t){return void 0===n?o:void 0===o||Math.abs(n-t)<Math.abs(o-t)?n:o}function startAnimation(t){null===g||void 0===g?void 0:g.stop();g=animate(Object.assign(Object.assign({},t),{driver:d,onUpdate:e=>{var n;null===h||void 0===h?void 0:h(e);null===(n=t.onUpdate)||void 0===n?void 0:n.call(t,e)},onComplete:m,onStop:y}))}function startSpring(t){startAnimation(Object.assign({type:\"spring\",stiffness:i,damping:u,restDelta:l},t))}if(isOutOfBounds(t))startSpring({from:t,velocity:e,to:boundaryNearest(t)});else{let o=s*e+t;\"undefined\"!==typeof p&&(o=p(o));const i=boundaryNearest(o);const u=i===n?-1:1;let d;let h;const checkBoundary=t=>{d=h;h=t;e=velocityPerSecond(t-d,f().delta);(1===u&&t>i||-1===u&&t<i)&&startSpring({from:t,to:i,velocity:e})};startAnimation({type:\"decay\",from:t,velocity:e,timeConstant:r,power:s,restDelta:l,modifyTarget:p,onUpdate:isOutOfBounds(o)?checkBoundary:void 0})}return{stop:()=>null===g||void 0===g?void 0:g.stop()}}const radiansToDegrees=t=>180*t/Math.PI;const angle=(t,e=O)=>radiansToDegrees(Math.atan2(e.y-t.y,e.x-t.x));const applyOffset=(t,e)=>{let n=true;if(void 0===e){e=t;n=false}return o=>{if(n)return o-t+e;t=o;n=true;return e}};const identity=t=>t;const createAttractor=(t=identity)=>(e,n,o)=>{const s=n-o;const r=-(0-e+1)*(0-t(Math.abs(s)));return s<=0?n+r:n-r};const G=createAttractor();const H=createAttractor(Math.sqrt);const degreesToRadians=t=>t*Math.PI/180;const isPoint=t=>t.hasOwnProperty(\"x\")&&t.hasOwnProperty(\"y\");const isPoint3D=t=>isPoint(t)&&t.hasOwnProperty(\"z\");const distance1D=(t,e)=>Math.abs(t-e);function distance(t,e){if(isNum(t)&&isNum(e))return distance1D(t,e);if(isPoint(t)&&isPoint(e)){const n=distance1D(t.x,e.x);const o=distance1D(t.y,e.y);const s=isPoint3D(t)&&isPoint3D(e)?distance1D(t.z,e.z):0;return Math.sqrt(Math.pow(n,2)+Math.pow(o,2)+Math.pow(s,2))}}const pointFromVector=(t,e,n)=>{e=degreesToRadians(e);return{x:n*Math.cos(e)+t.x,y:n*Math.sin(e)+t.y}};const toDecimal=(t,e=2)=>{e=Math.pow(10,e);return Math.round(t*e)/e};const smoothFrame=(t,e,n,o=0)=>toDecimal(t+n*(e-t)/Math.max(o,n));const smooth=(t=50)=>{let e=0;let n=0;return o=>{const s=f().timestamp;const r=s!==n?s-n:0;const i=r?smoothFrame(e,o,r,t):e;n=s;e=i;return i}};const snap=t=>{if(\"number\"===typeof t)return e=>Math.round(e/t)*t;{let e=0;const n=t.length;return o=>{let s=Math.abs(t[0]-o);for(e=1;e<n;e++){const r=t[e];const i=Math.abs(r-o);if(0===i)return r;if(i>s)return t[e-1];if(e===n-1)return r;s=i}}}};function velocityPerFrame(t,e){return t/(1e3/e)}const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};const a=(t,e)=>1-3*e+3*t;const b=(t,e)=>3*e-6*t;const c=t=>3*t;const calcBezier=(t,e,n)=>((a(e,n)*t+b(e,n))*t+c(e))*t;const getSlope=(t,e,n)=>3*a(e,n)*t*t+2*b(e,n)*t+c(e);const L=1e-7;const X=10;function binarySubdivide(t,e,n,o,s){let r;let i;let u=0;do{i=e+(n-e)/2;r=calcBezier(i,o,s)-t;r>0?n=i:e=i}while(Math.abs(r)>L&&++u<X);return i}const J=8;const K=.001;function newtonRaphsonIterate(t,e,n,o){for(let s=0;s<J;++s){const s=getSlope(e,n,o);if(0===s)return e;const r=calcBezier(e,n,o)-t;e-=r/s}return e}const Q=11;const V=1/(Q-1);function cubicBezier(t,e,n,o){if(t===e&&n===o)return linear;const s=new Float32Array(Q);for(let e=0;e<Q;++e)s[e]=calcBezier(e*V,t,n);function getTForX(e){let o=0;let r=1;const i=Q-1;for(;r!==i&&s[r]<=e;++r)o+=V;--r;const u=(e-s[r])/(s[r+1]-s[r]);const l=o+u*V;const p=getSlope(l,t,n);return p>=K?newtonRaphsonIterate(e,l,t,n):0===p?l:binarySubdivide(e,o,o+V,t,n)}return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>n=>{n=\"end\"===e?Math.min(n,.999):Math.max(n,.001);const o=n*t;const s=\"end\"===e?Math.floor(o):Math.ceil(o);return clamp(0,1,s/t)};export{angle,animate,B as anticipate,applyOffset,G as attract,H as attractExpo,P as backIn,E as backInOut,k as backOut,z as bounceIn,bounceInOut,bounceOut,circIn,I as circInOut,q as circOut,clamp,createAnticipate,createAttractor,createBackIn,createExpoIn,cubicBezier,decay,degreesToRadians,distance,F as easeIn,j as easeInOut,D as easeOut,inertia,interpolate,isPoint,isPoint3D,keyframes,linear,mirrorEasing,mix,mixColor,mixComplex,pipe,pointFromVector,progress,radiansToDegrees,reverseEasing,smooth,smoothFrame,snap,spring,steps,toDecimal,velocityPerFrame,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.mjs.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{wrap}from\"popmotion\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Slideshow(props){/**\n     * Properties\n     */ const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=Children.count(slots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return slots.map(index=>/*#__PURE__*/ createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */ const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */ const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */ const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */ const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const total=slots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */ useLayoutEffect(()=>{if(!hasChildren)return;measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */ let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */ const totalItems=slots===null||slots===void 0?void 0:slots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility */ /* Otherwise, it will re-play all the item increments */ const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */ const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */ const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */ const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping */ /* Instead of 0 to a negative full duplicated row, we start with an offset */ const wrappedValue=!isCanvas?useTransform(xOrY,value=>wrap(-childrenSize,-childrenSize*2,value)):0;/* Convert the current item to a wrapping index for dots */ const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point */ /* The subtraction of a full row of children is for overflow */ useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */ // if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */ if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing,]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     */ /* Next and previous function, animates the X */ const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */ const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */ const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200 // Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */ const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch */ /* For velocity use only */ const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */ if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */ if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */ useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */ let childCounter=0;/**\n     * Sizing\n     * */ let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */ for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.length-1){ref=childrenRef[1];}return /*#__PURE__*/ _jsx(Slide,{ref:childrenRef[childIndex],index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:slots===null||slots===void 0?void 0:slots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */ const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(slots===null||slots===void 0?void 0:slots.length);i++){dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted}));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/ _jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/ _jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:effectsPerspective},children:/*#__PURE__*/ _jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&\"preserve-3d\",cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/ _jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:0},transition:transitionControl,children:[/*#__PURE__*/ _jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/ _jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/ _jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/ _jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});};/* Default Properties */ Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */ addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\",],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\",],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */ const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */ const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */ const Slide=/*#__PURE__*/ forwardRef(function Component(props,ref){var ref1,ref2;const{key,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */ const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent,].map(val=>val-childOffset);/**\n     * Effects\n     */ const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate,]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate,]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity,]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale,]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{ref.current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/ cloneElement(child,{ref:ref,key:key+\"child\",style:{...(ref1=child.props)===null||ref1===void 0?void 0:ref1.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0}},(ref2=child.props)===null||ref2===void 0?void 0:ref2.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item */ /* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */ let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */ if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/ _jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/ _jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */ const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (3fa6aa4)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"OQCoTlOKa\"];const serializationHash=\"framer-KYZ42\";const variantClassNames={OQCoTlOKa:\"framer-v-1ccg96g\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({click,height,id,width,...props})=>{return{...props,nV54Vr4aT:click!==null&&click!==void 0?click:props.nV54Vr4aT};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,nV54Vr4aT,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OQCoTlOKa\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap15s7yi3=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(nV54Vr4aT){const res=await nV54Vr4aT(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ccg96g\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"OQCoTlOKa\",onTap:onTap15s7yi3,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-nsl2m6\",\"data-framer-name\":\"close_button\",fill:\"black\",intrinsicHeight:87,intrinsicWidth:87,layoutDependency:layoutDependency,layoutId:\"Q8dk6n03e\",svg:'<svg width=\"87\" height=\"87\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"43.5\" cy=\"43.5\" r=\"42.5\" stroke=\"#fff\" stroke-width=\"2\"/><path d=\"M57.561 56.439a1.502 1.502 0 0 1-2.122 2.122L43 46.121 30.561 58.56a1.5 1.5 0 1 1-2.122-2.122L40.879 44 28.44 31.561a1.501 1.501 0 0 1 2.122-2.122L43 41.879l12.439-12.44a1.501 1.501 0 0 1 2.122 2.122L45.121 44l12.44 12.439Z\" fill=\"#fff\"/></svg>',transformTemplate:transformTemplate1,withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KYZ42.framer-1dspx87, .framer-KYZ42 .framer-1dspx87 { display: block; }\",\".framer-KYZ42.framer-1ccg96g { cursor: pointer; height: 64px; position: relative; width: 57px; }\",\".framer-KYZ42 .framer-nsl2m6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 57px); left: 0px; position: absolute; right: 0px; top: 50%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 57\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"nV54Vr4aT\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNDdL7vqzo=withCSS(Component,css,\"framer-KYZ42\");export default FramerNDdL7vqzo;FramerNDdL7vqzo.displayName=\"close-button\";FramerNDdL7vqzo.defaultProps={height:64,width:57};addPropertyControls(FramerNDdL7vqzo,{nV54Vr4aT:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerNDdL7vqzo,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNDdL7vqzo\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"64\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"57\",\"framerVariables\":\"{\\\"nV54Vr4aT\\\":\\\"click\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NDdL7vqzo.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useCallback,useState}from\"react\";import{motion}from\"framer-motion\";export default function BrevoButton(props){const[isLoading,setIsLoading]=useState(false);const[isSigned,setIsSigned]=useState(false);const[isValid,setIsValid]=useState(true);const checkValidity=event=>{event.target.setCustomValidity(isValidEmail(event.target.value)?\"\":\"Please enter a valid email address\");};const isValidEmail=email=>{return/^[^\\s@]+@[^\\s@]+\\.[^\\s@]+$/.test(email);};const handleSubmit=useCallback(event=>{event.preventDefault();const formData=new FormData(event.target);const email=formData.get(\"EMAIL\");// Validate email using regex\nif(!isValidEmail(email)){// alert(\"Please enter a valid email address\")\nsetIsValid(false);return;}if(isLoading)return;setIsLoading(true);const headers=new Headers;headers.append(\"Content-Type\",\"application/x-www-form-urlencoded\");let requestOptions={method:\"post\",headers:headers,body:new URLSearchParams(formData).toString()};fetch(props.url+\"?isAjax=1\",requestOptions).then(response=>{setIsLoading(false);setIsSigned(true);}).catch(error=>{setIsLoading(false);setIsSigned(true);});},[isLoading,props.url]);const Spinner=()=>{return /*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",borderRadius:\"0px 2px 2px 2px\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",inset:0,zIndex:2,color:\"black\",background:\"rgba(0, 0, 0, 0.8)\"},children:/*#__PURE__*/_jsx(motion.div,{style:{height:16,width:16},initial:{rotate:0},animate:{rotate:360},transition:{duration:1,repeat:Infinity},children:/*#__PURE__*/_jsx(motion.div,{children:/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",style:{fill:\"#000000\"}})})})});};return /*#__PURE__*/_jsxs(\"div\",{style:{justifyContent:\"center\",alignItems:\"center\",height:\"100%\"},children:[!isSigned&&/*#__PURE__*/_jsx(\"div\",{style:{borderRadius:\"2px\",background:\"ghostWhite\",width:\"100%\",padding:\"1px\",justifyContent:\"center\",alignItems:\"center\"},children:/*#__PURE__*/_jsx(\"form\",{method:\"POST\",onSubmit:handleSubmit,children:/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",gap:\"px\",width:\"100%\"},children:[/*#__PURE__*/_jsx(\"input\",{name:\"EMAIL\",required:true,placeholder:props.input.placeholder,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",onChange:checkValidity,spellCheck:false,style:{width:\"100%\",outline:\"none\",border:\"none\",padding:\"16px 24px\",borderRadius:\"1px 0px 0px 1px\",...props.font,background:\"white\",color:\"rgb(0, 0, 0)\"}}),/*#__PURE__*/_jsxs(motion.div,{whileHover:{opacity:.5},style:{height:\"100%\",width:\"auto\",display:\"flex\",position:\"relative\"},children:[/*#__PURE__*/_jsx(\"input\",{type:\"submit\",value:props.button.label,style:{appearance:\"none\",width:\"100%\",minWidth:\"120px\",outline:\"black\",border:\"medium\",cursor:\"pointer\",borderRadius:\"0px 2px 2px 0px\",padding:\"20px 20px\",...props.font,background:\"black\",color:\"white\",zIndex:1,opacity:1}}),isLoading&&/*#__PURE__*/_jsx(Spinner,{})]})]})})}),isSigned&&/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\",height:\"100%\",width:\"100%\"},children:[/*#__PURE__*/_jsx(motion.div,{initial:{scale:0},animate:{scale:1},transition:{duration:.5},style:{height:\"45px\",width:\"45px\",background:\"black\",color:\"white\",borderRadius:\"50%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",transform:\"none\",padding:\"10px\"},children:/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:28,height:28,children:/*#__PURE__*/_jsx(\"path\",{d:\"M 2 14 L 10 22 L 26 6\",fill:\"transparent\",strokeWidth:4,stroke:\"currentColor\",strokeLinecap:\"round\"})})}),/*#__PURE__*/_jsx(\"h2\",{style:{paddingLeft:\"10px\",fontSize:\"15px\"},children:\"You\u2019re officially on the list! Stay tuned\u2014you\u2019ll be the first to know when we go live! \uD83C\uDF88\"})]})]});}addPropertyControls(BrevoButton,{url:{title:\"Url\",type:ControlType.String},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Enter your email\"}}},button:{title:\"Button\",type:ControlType.Object,controls:{label:{title:\"Label\",type:ControlType.String,defaultValue:\"SIGN UP\"}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"BrevoButton\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BrevoButton.map", "// Welcome to Code in Framer\n// Get Started: https://www.framer.com/developers\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion,useScroll,easeIn,useTransform}from\"framer-motion\";import{useRef}from\"react\";const EachCharacter=({char,start,end,progress})=>{const opacityProgress=useTransform(progress,[start,end],[.05,1],{ease:easeIn})//you can change the start opacity (0.1) to change the benhind text\n;return /*#__PURE__*/_jsx(motion.span,{style:{opacity:opacityProgress},children:char});};const EachWord=({word,progress,starting,ending})=>{const characters=word.split(\"\");const wordLength=word.length;const amount=ending-starting;const step=amount/wordLength;return /*#__PURE__*/_jsxs(motion.span,{children:[characters.map((char,idx)=>{const charStart=starting+step*idx;const charEnd=starting+step*(idx+1);return /*#__PURE__*/_jsx(EachCharacter,{char:char,start:charStart,end:charEnd,progress:progress});}),\"\\xa0\"]});};/**\n * These annotations control how your component sizes\n * Learn more: https://www.framer.com/developers/#code-components-auto-sizing\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function Text_Opacity_Letters(props){const text=props.text;const words=text.split(\" \");const totalWords=words.length;const ref=useRef(null);const{scrollYProgress}=useScroll({target:ref,offset:[\"start 0.75\",\"start 0.30\"]});return /*#__PURE__*/_jsx(\"p\",{ref:ref,style:{...props.font,display:\"flex\",flexWrap:\"wrap\",color:props.textColor},children:words.map((word,idx)=>{const starting=idx/totalWords;const ending=(idx+1)/totalWords;return /*#__PURE__*/_jsx(EachWord,{word:word,progress:scrollYProgress,starting:starting,ending:ending});})});}addPropertyControls(Text_Opacity_Letters,{text:{title:\"Text\",type:ControlType.String,defaultValue:\"Hello Text\"},font:{type:\"font\",controls:\"extended\"},textColor:{type:ControlType.Color}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Text_Opacity_Letters\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Text_Opacity_Letters.map", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/tMgLW02JctHcv25gtiqf/SlideShow.js\";import ButtonBouncyButton from\"#framer/local/canvasComponent/A6Rmp8oPM/A6Rmp8oPM.js\";import FooterCopy from\"#framer/local/canvasComponent/Al1sbBz16/Al1sbBz16.js\";import CloseButton from\"#framer/local/canvasComponent/NDdL7vqzo/NDdL7vqzo.js\";import NavBar from\"#framer/local/canvasComponent/shhoD7Lh2/shhoD7Lh2.js\";import BrevoButton from\"#framer/local/codeFile/i1Borj2/BrevoButton.js\";import Text_Opacity_Letters from\"#framer/local/codeFile/qdnOpLT/Text_Opacity_Letters.js\";import*as sharedStyle1 from\"#framer/local/css/Keo1xwDz7/Keo1xwDz7.js\";import*as sharedStyle from\"#framer/local/css/T6IoSAbHF/T6IoSAbHF.js\";import metadataProvider from\"#framer/local/webPageMetadata/yhQ3Da7Ze/yhQ3Da7Ze.js\";const NavBarFonts=getFonts(NavBar);const VideoFonts=getFonts(Video);const BrevoButtonFonts=getFonts(BrevoButton);const Text_Opacity_LettersFonts=getFonts(Text_Opacity_Letters);const ButtonBouncyButtonFonts=getFonts(ButtonBouncyButton);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const YouTubeFonts=getFonts(YouTube);const SlideshowFonts=getFonts(Slideshow);const FooterCopyFonts=getFonts(FooterCopy);const CloseButtonFonts=getFonts(CloseButton);const breakpoints={eJjRyKToC:\"(min-width: 1536px)\",FXFmRUoEu:\"(min-width: 1024px) and (max-width: 1279px)\",inHW2t6nB:\"(min-width: 1280px) and (max-width: 1535px)\",vzeotzgRi:\"(min-width: 810px) and (max-width: 1023px)\",YpJNps5Q6:\"(min-width: 390px) and (max-width: 809px)\",Yu1Cwh3WC:\"(max-width: 389px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ZwvOc\";const variantClassNames={eJjRyKToC:\"framer-v-ob0cr5\",FXFmRUoEu:\"framer-v-1we90f9\",inHW2t6nB:\"framer-v-fo22g1\",vzeotzgRi:\"framer-v-jiajns\",YpJNps5Q6:\"framer-v-1bj7jem\",Yu1Cwh3WC:\"framer-v-1o0dku5\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transition1={delay:0,duration:3.5,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:0};const getContainer=()=>{var _document_querySelector,_ref;return(_ref=(_document_querySelector=document.querySelector(\"#template-overlay\"))!==null&&_document_querySelector!==void 0?_document_querySelector:document.querySelector(\"#overlay\"))!==null&&_ref!==void 0?_ref:document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const metadata=metadataProvider();const humanReadableVariantMap={\"2XL\":\"eJjRyKToC\",L:\"FXFmRUoEu\",M_SM:\"YpJNps5Q6\",M_XSM:\"Yu1Cwh3WC\",Tablet:\"vzeotzgRi\",XL:\"inHW2t6nB\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"eJjRyKToC\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-ZwvOc`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-ZwvOc`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const nV54Vr4aT1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"YpJNps5Q6\",\"Yu1Cwh3WC\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"YpJNps5Q6\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"YpJNps5Q6\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"Yu1Cwh3WC\")return true;return false;};const defaultLayoutId=React.useId();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"eJjRyKToC\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-ob0cr5\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-szoi5f-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vzeotzgRi:{variant:\"huqFZ6dPo\"},YpJNps5Q6:{variant:\"VYkLugw7C\"},Yu1Cwh3WC:{variant:\"VYkLugw7C\"}},children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"VHD4R0x2L\",jQcddTFoz:true,layoutId:\"VHD4R0x2L\",style:{width:\"100%\"},variant:\"KyCNxnxnm\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"header\",{\"aria-label\":\"videoplayer\",className:\"framer-vhrz7 hidden-1bj7jem hidden-1o0dku5\",\"data-framer-name\":\"VIDEO VISION\",name:\"VIDEO VISION\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-77dfv9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXFmRUoEu:{poster:\"https://framerusercontent.com/images/eNh16UmiQqL2qNeM0YKJmjc4CVg.png\"},vzeotzgRi:{poster:\"https://framerusercontent.com/images/eNh16UmiQqL2qNeM0YKJmjc4CVg.png\"}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"y53b5KHvf\",isMixedBorderRadius:false,layoutId:\"y53b5KHvf\",loop:false,muted:false,objectFit:\"cover\",playing:false,poster:\"https://framerusercontent.com/images/0P0nMMv4zfJg0xw1bo602oXuObI.png\",posterEnabled:true,srcType:\"URL\",srcUrl:\"https://daisys-public.s3.eu-central-1.amazonaws.com/site/720_We-are-DAISYS.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:40,width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hy13de\",\"data-framer-name\":\"WAITLIST MAIL\",name:\"WAITLIST MAIL\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YpJNps5Q6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBSZWd1bGFy\",\"--framer-font-family\":'\"Proxima Nova Regular\", \"Proxima Nova Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.45em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:[\"Get early access to our revolutionary\",/*#__PURE__*/_jsx(\"br\",{}),\"voice AI technology.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Sign up now!\"})]})})},Yu1Cwh3WC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBSZWd1bGFy\",\"--framer-font-family\":'\"Proxima Nova Regular\", \"Proxima Nova Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.45em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:[\"Get early access to our\",/*#__PURE__*/_jsx(\"br\",{}),\"revolutionary voice AI technology.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Sign up now!\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBSZWd1bGFy\",\"--framer-font-family\":'\"Proxima Nova Regular\", \"Proxima Nova Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.45em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:[\"Get early access to our revolutionary voice AI technology.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Sign up now!\"})]})}),className:\"framer-1x3rc79\",\"data-framer-name\":\"Things that matter for us\",fonts:[\"CUSTOM;Proxima Nova Regular\",\"CUSTOM;Proxima Nova Bold\"],name:\"Things that matter for us\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tvo76g-container\",children:/*#__PURE__*/_jsx(BrevoButton,{button:{label:\"SIGN UP\"},font:{fontFamily:'\"Proxima Nova Regular\", \"Proxima Nova Regular Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"l2get5kf6\",input:{placeholder:\"Enter your email\"},layoutId:\"l2get5kf6\",style:{width:\"100%\"},url:\"https://de341541.sibforms.com/serve/MUIFAN1HAjR3z1Navnwof5jWAUIAb5s12mJ5Zgw3SclHNd8cPu-9C1XJ2giSqhBbqUeCJz0EgYJTV1vtk62CAX2TvNOd0Z6bO60-7lUFj9ywOdLfSKwDi7Boja2zOYchOYuopOjZdOagQpEsbRoADq_JQNXspVIjN9om3hwBmfCrqNAj2BzlNJ3Dr-6l1WmvCNBPbPNV7N-KZnGF\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gb6yqo\",\"data-framer-name\":\"About\",name:\"About\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14c6ve-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXFmRUoEu:{font:{fontFamily:'\"Proxima Nova Regular\", \"Proxima Nova Regular Placeholder\", sans-serif',fontSize:\"30px\",letterSpacing:\"0em\",lineHeight:\"1.4em\"}},vzeotzgRi:{font:{fontFamily:'\"Proxima Nova Regular\", \"Proxima Nova Regular Placeholder\", sans-serif',fontSize:\"28px\",letterSpacing:\"0em\",lineHeight:\"1.4em\"}},YpJNps5Q6:{font:{fontFamily:'\"Proxima Nova Regular\", \"Proxima Nova Regular Placeholder\", sans-serif',fontSize:\"22px\",letterSpacing:\"0em\",lineHeight:\"1.4em\"}},Yu1Cwh3WC:{font:{fontFamily:'\"Proxima Nova Regular\", \"Proxima Nova Regular Placeholder\", sans-serif',fontSize:\"20px\",letterSpacing:\"0em\",lineHeight:\"1.4em\"}}},children:/*#__PURE__*/_jsx(Text_Opacity_Letters,{font:{fontFamily:'\"Proxima Nova Regular\", \"Proxima Nova Regular Placeholder\", sans-serif',fontSize:\"32px\",letterSpacing:\"0em\",lineHeight:\"1.4em\"},height:\"100%\",id:\"pvhtXTXaq\",layoutId:\"pvhtXTXaq\",style:{width:\"100%\"},text:\"We are a speech technology company building machine learning technology unlocking the true potential of voice AI. We do this by making voices and speech fully customizable and emotionally expressive, resonating with your unique audience. We aim to revolutionize the way businesses, brands and individuals interact with technology.\",textColor:\"rgb(61, 61, 61)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-st046w\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1g1x21p\",\"data-framer-appear-id\":\"1g1x21p\",initial:animation1,optimized:true,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"xHJJUv8bN\"},implicitPathVariables:undefined},{href:{webPageId:\"xHJJUv8bN\"},implicitPathVariables:undefined},{href:{webPageId:\"xHJJUv8bN\"},implicitPathVariables:undefined},{href:{webPageId:\"xHJJUv8bN\"},implicitPathVariables:undefined},{href:{webPageId:\"xHJJUv8bN\"},implicitPathVariables:undefined},{href:{webPageId:\"xHJJUv8bN\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXFmRUoEu:{y:1515.9},inHW2t6nB:{y:1675.9},vzeotzgRi:{y:1370.9},YpJNps5Q6:{y:1564.1},Yu1Cwh3WC:{y:1514.1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:1745.9,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kyyy0j-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXFmRUoEu:{uzYUogkDq:resolvedLinks[4]},inHW2t6nB:{uzYUogkDq:resolvedLinks[3]},vzeotzgRi:{uzYUogkDq:resolvedLinks[1]},YpJNps5Q6:{uzYUogkDq:resolvedLinks[2]},Yu1Cwh3WC:{uzYUogkDq:resolvedLinks[5]}},children:/*#__PURE__*/_jsx(ButtonBouncyButton,{AAql3Z1IA:false,G12sDdivV:\"rgb(245, 245, 245)\",gnaXB_FDf:\"More about us\",height:\"100%\",id:\"DdM9_ZVQq\",layoutId:\"DdM9_ZVQq\",lflvlvWlr:false,uzYUogkDq:resolvedLinks[0],V4GP67J_M:\"rgb(90, 156, 254)\",width:\"100%\"})})})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1skn56l\",\"data-framer-name\":\"spacer\",name:\"spacer\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15aldf6\",\"data-framer-name\":\"About Section 2\",name:\"About Section 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g3kak\",\"data-framer-name\":\"Heading Wrapper\",name:\"Heading Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YpJNps5Q6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.25em\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"Our first principles\"})}),fonts:[\"CUSTOM;Proxima Nova Bold\"]},Yu1Cwh3WC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.25em\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"Our first principles\"})}),fonts:[\"CUSTOM;Proxima Nova Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1onschy\",\"data-styles-preset\":\"T6IoSAbHF\",style:{\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"Our first principles\"})}),className:\"framer-giwk3n\",\"data-framer-name\":\"Things that matter for us\",fonts:[\"Inter\"],name:\"Things that matter for us\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ogn3sh\",\"data-framer-name\":\"Grid\",name:\"Grid\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vq6gyb\",\"data-framer-name\":\"No_limits\",name:\"No_limits\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13bsmjy\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11apyrt\",\"data-framer-name\":\"No limits\",fill:\"black\",intrinsicHeight:51,intrinsicWidth:51,name:\"No limits\",svg:'<svg width=\"51\" height=\"51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><mask id=\"b\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"51\" height=\"51\"><path d=\"M51 0H0v51h51V0Z\" fill=\"#fff\"/></mask><g mask=\"url(#b)\"><path d=\"M38.559 30.468c.007.375.02.752.02 1.127v16.54c.16-.122.244-.203.341-.26.377-.214.74-.169 1.023.151.297.337.319.734.015 1.07-.389.43-.823.819-1.237 1.225-.158.068-.264-.034-.359-.128-.547-.535-1.114-1.055-1.61-1.639-.122-.144-.454-.321-.142-.602.066.075.128.187.233.162.128-.028.088-.162.09-.255.01-.588.015-1.178.022-1.766.249-.141.376.067.522.191.268.228.487.513.87.801.008-.846.008-1.588-.004-2.33a41.868 41.868 0 0 1-.007-1.855c-.004-.579-.02-1.159.003-1.737a33.01 33.01 0 0 1-.004-1.653c-.006-.719-.022-1.439.004-2.158a66.196 66.196 0 0 1 0-2.863 59.657 59.657 0 0 1 0-2.531c.025-.468-.07-.94.07-1.402a.14.14 0 0 1 .15-.087ZM.746 40.97c.332-.342.655-.694.997-1.026.408-.397.834-.45 1.188-.173.376.295.405.718.088 1.224-.025.04-.035.09-.073.197h6.732c-.093.252-.324.21-.515.218-.44.02-.88.007-1.32.003-.65.007-1.3.014-1.949-.007-.693-.003-1.385-.026-2.146.01.284.332.568.577.814.854.127.143.332.275.191.522H2.845l.263.42c-.25.15-.426-.022-.58-.165A40.707 40.707 0 0 1 .873 41.4c-.109-.113-.27-.236-.125-.433l-.002.002ZM18.431 9.806c-.89.007-1.78.027-2.67.013-.5-.008-.822-.346-.828-.797-.005-.442.316-.777.811-.828.17-.018.343-.008.514-.008 10.4-.003 20.799-.003 31.198-.011.205 0 .447.11.62-.112.08.235.072.268-.166.318-.315.066-.636.027-.957.035-.253.007-.504-.012-.756-.005-.817.014-1.637.01-2.455 0-.687.018-1.373.008-2.06 0-.687.014-1.375.014-2.062-.004-.886.026-1.774.01-2.66.004-.655.015-1.31.007-1.964 0-.687.016-1.373.007-2.06 0a77.2 77.2 0 0 1-2.46 0 38.81 38.81 0 0 1-1.96-.004 41.01 41.01 0 0 1-2.162 0c-.82.022-1.64.02-2.461 0-.784.02-1.566.02-2.348 0a38.77 38.77 0 0 1-1.959-.002c-.675-.01-1.35-.023-2.09.006.199.376.51.567.725.835.13.16.364.29.213.56h-.003Z\" fill=\"#5A9CFE\"/><path d=\"M46.208 8.274c.538-.005 1.077-.003 1.614-.02.105-.002.341.1.253-.19-.114-.078-.212-.17-.224-.32.228-.141.401.006.542.14.684.655 1.377 1.303 2.002 2.02-.328.457-.761.815-1.156 1.211-.396.399-.82.429-1.183.128-.363-.302-.39-.716-.078-1.183.035-.054.072-.106.137-.2l-.68-.053c-.336-.31-.655-.638-.97-.967-.148-.154-.336-.303-.257-.565v-.001ZM12.469 3.838c-.013-.287-.027-.576-.04-.897-.08.035-.142.055-.194.088-.477.296-.896.258-1.185-.112-.264-.338-.217-.787.143-1.153.31-.316.64-.617.96-.923.683.436 1.151 1.103 1.75 1.631.105.094.278.16.226.36l.007-.012c-.176.7-.028 1.41-.076 2.114-.101.384-.317.167-.442.051-.399-.365-.81-.72-1.148-1.147h-.001Zm11.619 38.956h-3.291a9.035 9.035 0 0 1-1.087-1.088c-.11-.13-.374-.33-.004-.497.806-.01 1.613.025 2.42-.019 1.61-.007 3.218-.019 4.828-.022 2.654-.004 5.308-.002 7.961 0 .2 0 .414-.056.595.086-.173.18-.402.164-.621.164-.782.003-1.564.02-2.347-.01-.657.023-1.312.017-1.97 0-.75.024-1.5.014-2.25.003-.823.011-1.643.018-2.464-.005a95.522 95.522 0 0 0-2.67-.003c.101.348.38.48.55.694.163.209.43.363.35.694v.003Z\" fill=\"#5A9CFE\"/><path d=\"M14.128 2.83c-.689-.634-1.375-1.27-1.977-1.99.15-.163.292-.332.45-.485.485-.47.896-.474 1.374-.007.428.417.847.842 1.269 1.267.528.529.602.988.225 1.371-.363.368-.804.317-1.341-.155Zm-.059 16.537c.008.188.024.375.024.563v19.207c0 .17.009.345-.02.513-.079.467-.409.732-.857.713-.438-.02-.752-.326-.76-.802-.012-.701.008-1.403.014-2.104.27-.136.41.08.566.221.288.26.543.555.843.77-.023-.837-.004-1.675-.015-2.514-.018-.66-.02-1.32-.007-1.98-.007-.683-.022-1.366.003-2.049-.02-.82-.018-1.642-.006-2.462-.004-.855-.022-1.71.006-2.564-.014-.72-.024-1.44 0-2.159a43.824 43.824 0 0 1-.006-1.852c0-.737-.019-1.473.006-2.21.023-.397-.057-.8.067-1.191a.161.161 0 0 1 .143-.099l-.001-.001ZM.746 40.97c.292.598.851.957 1.293 1.42.309.324.56.749 1.069.824.247.429.147.799-.234 1.07-.378.269-.748.177-1.065-.138-.45-.447-.896-.896-1.343-1.345-.623-.628-.621-.977.01-1.598.083-.083.181-.154.272-.231l-.002-.002Zm35.862 6.98c-.142.234.09.366.186.47.614.66 1.222 1.33 1.926 1.901-.752.88-1.092.898-1.896.094-.422-.422-.855-.832-1.258-1.27-.328-.357-.335-.796-.023-1.104.316-.313.678-.454 1.065-.089v-.001ZM50.395 9.902c-.694-.399-1.131-1.076-1.718-1.59-.254-.223-.447-.529-.826-.569-.228-.405-.078-.735.247-.98.343-.255.72-.226 1.03.068a38.75 38.75 0 0 1 1.633 1.625c.367.392.3.815-.125 1.185-.09.077-.161.174-.242.262l.001-.001ZM24.088 42.794c-.197-.458-.619-.72-.93-1.079-.096-.111-.298-.195-.243-.357.062-.18.27-.093.411-.093.803-.007 1.606 0 2.408 0 .381.33.726.697 1.075 1.06.118.123.303.248.16.469h-2.881Zm14.395-8.319v2.879c-.221.144-.347-.037-.47-.157-.361-.35-.732-.692-1.06-1.077v-2.88c.222-.143.347.041.47.16.36.348.729.693 1.06 1.074Zm-1.53-21.488c-.006-.496-.015-.992-.017-1.489-.003-.46.233-.762.675-.836.435-.073.765.11.89.569.085.938.015 1.88.039 2.82-.095.416-.32.197-.466.067-.396-.354-.78-.722-1.12-1.131Zm-4.43 28.277 2.987-.008c.468.132.608.473.532.906-.074.427-.368.644-.798.648-.497.005-.991-.01-1.488-.016-.426-.333-.763-.755-1.143-1.134-.102-.101-.217-.23-.09-.395ZM12.47 11.754V8.978c.063-.031.136-.046.192-.008.55.375 1.05.804 1.398 1.385v2.476c-.133.4-.351.128-.477.027a9.172 9.172 0 0 1-1.113-1.104Z\" fill=\"#5A9CFE\"/><path d=\"M14.001 36.014v2.604c-.686-.204-.908-.946-1.532-1.161v-2.673c.187-.137.33.002.453.098.417.321.82.66 1.078 1.133l.001-.001Zm22.952-14.288v-2.671c.065-.03.14-.044.197-.004.546.375 1.04.806 1.388 1.38v2.374c-.134.397-.352.126-.477.024a8.663 8.663 0 0 1-1.108-1.103Zm-.001-13.452h2.67c.393.32.73.698 1.083 1.059.12.124.297.254.15.473a28.39 28.39 0 0 1-2.674 0c-.348-.34-.717-.66-1.009-1.052-.104-.14-.272-.263-.22-.48ZM14 10.211c-.338-.058-.476-.367-.703-.562-.269-.23-.475-.54-.827-.67V6.305c.133-.052.228.025.315.102.398.357.743.773 1.198 1.069.073.046.08.142.077.229-.035.835.073 1.672-.06 2.504v.001Zm12.969 32.583c-.128-.43-.543-.617-.796-.941-.15-.193-.414-.301-.439-.589h2.573c.42.34.763.755 1.141 1.136.102.101.219.226.093.394h-2.572ZM14.001 26.867v2.568c-.262.084-.413-.106-.566-.253-.33-.317-.664-.632-.966-.978v-2.571c.221-.145.347.035.471.155.362.35.733.692 1.061 1.077v.002Zm24.482 7.608c-.38-.078-.527-.443-.801-.651-.248-.189-.38-.52-.729-.583v-2.568c.24-.08.387.082.53.22.342.328.688.654 1 1.012v2.57Z\" fill=\"#5A9CFE\"/><path d=\"M14 7.538c-.487-.078-.705-.508-1.037-.79-.167-.143-.328-.294-.493-.442V3.838c.432.172.675.565 1.008.853.163.142.269.364.523.38a10.5 10.5 0 0 1 0 2.467H14Zm5.563 33.726c.174.43.565.675.855 1.006.141.162.364.268.38.524h-2.471c-.463-.341-.812-.794-1.199-1.21-.094-.104-.182-.266.03-.373.087-.003.172-.002.26-.002.714.033 1.431-.068 2.145.054v.001Zm-7.093-13.06c.34.052.478.364.705.559.271.23.474.541.826.672v2.469c-.167.128-.292.01-.396-.09-.38-.378-.795-.723-1.136-1.142v-2.468h.001ZM23.884 8.272h2.469c.392.322.73.698 1.083 1.06.121.123.297.254.15.472-.822.043-1.645.042-2.467 0-.409-.35-.765-.755-1.14-1.139-.099-.101-.224-.225-.095-.394v.001Zm13.069 13.454c.339.056.476.367.703.562.27.232.475.539.826.672.122.763.023 1.53.056 2.293-.108.428-.342.151-.467.05a8.515 8.515 0 0 1-1.118-1.11v-2.467Zm9.255-13.452c.187.442.594.695.895 1.04.132.15.333.254.334.492a23.48 23.48 0 0 1-2.468 0 21.52 21.52 0 0 1-.972-.968c-.147-.154-.336-.302-.256-.564h2.469-.002Zm-15.735 0h2.468c.429.33.764.755 1.145 1.135.103.103.212.233.083.398a24.25 24.25 0 0 1-2.47 0 22.35 22.35 0 0 1-.972-.967c-.147-.154-.336-.303-.256-.565l.002-.001Zm8.01 36.586c.002.683.007 1.37.002 2.053 0 .127.068.306-.1.36-.124.042-.197-.11-.288-.182-.394-.318-.64-.806-1.144-.998v-2.466c.24-.08.387.082.53.22.342.328.687.654 1 1.012Zm-24.885-2.066h-2.366c-.443-.301-.762-.73-1.136-1.102-.096-.096-.183-.22-.128-.367.066-.175.231-.111.358-.113.649-.005 1.299-.003 1.947-.003.545.355.931.869 1.348 1.351.056.066.045.16-.021.232l-.002.002Zm24.885-10.89c-.34-.054-.477-.364-.703-.56-.27-.23-.476-.54-.827-.672v-2.367c.073-.066.168-.077.234-.02.483.419 1.004.8 1.351 1.353-.02.275.048.555-.044.827l-.01 1.439Z\" fill=\"#5A9CFE\"/><path d=\"M13.599 42.794c-.058-.338-.367-.476-.563-.704-.232-.269-.54-.475-.672-.827.076-.07.17-.05.259-.053h1.961c.608.353 1.046.873 1.428 1.448.025.038-.015.096-.048.136H13.6ZM23.884 8.272c.062.337.371.474.567.702.232.27.543.476.668.832-.79.042-1.578.04-2.367 0-.36-.329-.699-.68-1.037-1.03-.128-.133-.334-.258-.196-.504h2.365Z\" fill=\"#5A9CFE\"/><path d=\"M15.964 42.794c-.058-.338-.367-.476-.562-.702-.232-.27-.54-.476-.672-.826.789-.09 1.576-.09 2.365 0 .035.308.304.44.488.63.274.28.543.56.745.9h-2.364v-.002Zm-3.395-1.538-.206.008c-.633 0-1.263-.008-1.896 0-.141.002-.349-.085-.41.095-.054.161.146.246.242.358.311.358.733.62.93 1.077H9.07c-.363-.31-.688-.657-1.016-1-.136-.142-.301-.29-.217-.53.611-.05 1.23.083 1.837-.072h2.891v.064h.003Zm25.914-20.969c-.34-.053-.477-.364-.703-.559-.27-.23-.476-.54-.827-.672v-2.262c.047-.019.103-.044.146-.019.588.359 1.094.803 1.44 1.411-.035.701.07 1.405-.056 2.101ZM4.752 42.794c-.14-.45-.573-.651-.845-.988-.116-.143-.351-.267-.296-.445.067-.219.323-.09.49-.094.56-.016 1.121-.004 1.68-.003.42.34.763.755 1.141 1.136.102.101.219.226.092.394H4.752ZM18.431 9.806c-.17-.514-.67-.744-.978-1.14-.079-.1-.259-.168-.193-.322s.242-.081.369-.083c.611-.003 1.222.006 1.833.011.369.305.692.658 1.022 1.002.136.141.302.291.213.532H18.43ZM29.54 42.794c-.057-.338-.366-.476-.562-.702-.23-.27-.541-.474-.67-.828h2.26c.381.332.725.698 1.076 1.061.118.123.302.248.16.469H29.54ZM14.003 20.595v2.26c-.263.083-.414-.105-.567-.254-.33-.317-.664-.632-.966-.978v-2.262c.24-.085.388.081.53.217.344.329.692.656 1.004 1.016l-.001.001Z\" fill=\"#5A9CFE\"/><path d=\"M14.003 20.595c-.34-.055-.477-.367-.705-.562-.271-.232-.476-.541-.83-.67v-2.16c.074-.065.168-.08.234-.024.487.416 1.004.803 1.356 1.355-.021.276.045.556-.039.829l-.018 1.23.002.002Zm-.002 6.272c-.431-.127-.618-.543-.943-.796-.194-.15-.3-.414-.59-.437v-2.159c.222-.144.348.036.472.155.362.35.733.693 1.061 1.078v2.159ZM27.586 9.806c-.069-.386-.437-.53-.646-.806-.188-.248-.52-.382-.587-.728h2.16c.37.304.69.657 1.02 1 .137.142.303.29.214.532-.72.043-1.44.043-2.161 0v.002Zm9.367 26.314c.43.128.618.543.942.795.192.15.301.414.588.439v2.157c-.24.084-.387-.081-.529-.217-.343-.328-.691-.653-1-1.015v-2.16ZM20.695 9.806c-.166-.436-.562-.678-.85-1.012-.142-.163-.366-.268-.384-.522h2.056c.154.455.594.664.872 1.013.132.166.356.266.36.52-.686.043-1.37.042-2.056 0h.002Zm20.159 0c-.068-.386-.437-.53-.644-.806-.188-.248-.518-.382-.587-.726h2.062c.43.33.764.755 1.145 1.135.103.103.211.233.082.398-.686.043-1.372.041-2.058 0v-.001Zm-3.901 14.388c.339.056.476.367.703.562.27.232.475.539.826.672.128.628.02 1.263.056 1.892-.122.412-.347.137-.473.036a8.538 8.538 0 0 1-1.112-1.106v-2.056ZM34.169 9.806c-.026-.312-.308-.435-.48-.637-.253-.295-.6-.513-.748-.897H35c.429.33.764.756 1.145 1.135.103.103.212.234.082.399-.685.042-1.371.04-2.057 0Z\" fill=\"#5A9CFE\"/><path d=\"M42.91 9.806c-.025-.312-.307-.435-.479-.637-.253-.295-.6-.513-.748-.897h2.057c.187.443.593.695.895 1.04.13.15.332.255.334.492-.686.044-1.372.043-2.058 0v.002ZM7.016 42.794c-.057-.338-.367-.476-.563-.704-.23-.269-.541-.474-.67-.827h2.056c.172.43.565.675.854 1.006.141.163.364.268.379.523H7.014l.002.002Zm5.454-31.04c.34.052.478.364.705.56.27.232.477.538.825.674.137.628.02 1.263.06 1.894-.123.41-.347.136-.474.034a9.214 9.214 0 0 1-1.116-1.105v-2.056ZM36.953 26.25c.339.056.476.366.703.562.27.232.475.538.826.671a7.85 7.85 0 0 1 0 2.056c-.429-.174-.674-.565-1.006-.855-.162-.141-.268-.364-.524-.379V26.25h.001ZM12.47 30.671c.432.172.675.565 1.008.854.163.141.268.364.523.379v2.054c-.264.084-.413-.105-.566-.252-.33-.318-.664-.633-.966-.979v-2.056h.001Z\" fill=\"#5A9CFE\"/><path d=\"M12.47 32.727c.34.052.478.364.705.56.271.23.474.54.828.671v2.057c-.545-.368-.857-1.026-1.533-1.23v-2.058ZM36.226 9.806c-.026-.312-.308-.435-.48-.637-.252-.295-.599-.513-.747-.897h1.953c.318.586.951.917 1.228 1.532a14.66 14.66 0 0 1-1.955 0l.001.002Zm-6.479 0c-.167-.436-.563-.678-.85-1.01-.141-.164-.365-.268-.383-.522h1.959c.185.443.593.695.894 1.04.13.15.333.254.334.492a15.52 15.52 0 0 1-1.953 0h-.001Zm8.736 35.054c-.34-.053-.477-.365-.703-.56-.27-.231-.476-.54-.827-.672v-1.956c.168-.127.293-.01.395.093.38.377.796.721 1.135 1.14v1.956-.002Zm-1.53-31.873c.43.127.618.543.943.795.193.15.301.414.589.437.118.6.023 1.204.055 1.804-.125.392-.336.165-.476.039-.39-.353-.772-.716-1.11-1.121v-1.954Zm-5.15 29.807c-.128-.43-.543-.617-.796-.941-.15-.193-.414-.301-.437-.589h1.953c.054.34.365.477.56.704.23.27.54.475.673.824h-1.953v.002ZM14.001 24.708c-.431-.127-.618-.543-.943-.796-.194-.15-.3-.413-.59-.437v-1.85c.342.052.48.363.706.559.27.23.475.541.827.673v1.852-.001Z\" fill=\"#5A9CFE\"/><path d=\"M36.953 14.94c.43.129.618.543.943.796.193.15.303.414.589.439a6.512 6.512 0 0 1 0 1.85c-.34-.054-.477-.365-.704-.56-.27-.23-.476-.54-.826-.672v-1.852h-.002Zm1.53 27.964c-.431-.172-.673-.565-1.006-.852-.163-.142-.268-.364-.524-.38v-1.746c.24-.08.387.082.53.22.342.328.687.654 1 1.013v1.746-.001ZM14 18.436c-.441-.188-.697-.592-1.04-.893-.15-.132-.254-.334-.49-.34V15.56c.109-.093.235-.074.329-.004.482.36.958.73 1.261 1.27-.034.537.07 1.08-.059 1.613L14 18.436Z\" fill=\"#5A9CFE\"/><path d=\"M14 16.689c-.397-.1-.57-.47-.848-.71-.208-.18-.386-.391-.682-.421V13.81c.34.052.478.364.705.559.27.232.477.539.825.675a4.723 4.723 0 0 1 0 1.645Zm24.483 24.468c-.34-.053-.477-.364-.703-.559-.27-.23-.476-.54-.825-.672V38.28c.338.056.475.367.702.562.27.23.475.541.828.67v1.647l-.002-.002Zm0-23.131v-3.804l.017-2.99c.114.132.08.291.08.442 0 6.198 0 12.395-.003 18.592 0 .067-.012.136-.02.204a.67.67 0 0 0-.064-.003l-.01-.928V18.026Z\" fill=\"#5A9CFE\"/><path d=\"M14 16.689V5.072c.003-.596.001-1.194.012-1.79.003-.16-.071-.35.122-.462-.013.221-.038.441-.038.662-.003 5.091-.003 10.183-.004 15.274 0 .204-.015.408-.024.612l-.049-.004c-.007-.309-.012-.618-.02-.927v-1.75Zm5.563 24.575c-.755-.002-1.508-.006-2.263-.01v-.064h4.825c-.85.158-1.709.022-2.563.074Z\" fill=\"#5A9CFE\"/><path d=\"M17.3 41.192v.064l-.206.01h-2.366l-2.16-.008v-.065h4.733l-.001-.001Z\" fill=\"#5A9CFE\"/><path d=\"M25.5 24.8a4.3 4.3 0 1 0 0-8.6 4.3 4.3 0 0 0 0 8.6Zm0 1.25c-2.552 0-4.67.28-6.158 1.374-1.564 1.149-2.209 3.007-2.284 5.547A1.44 1.44 0 0 0 18.5 34.45h14a1.44 1.44 0 0 0 1.443-1.479c-.076-2.54-.72-4.398-2.284-5.547-1.49-1.093-3.607-1.374-6.159-1.374Z\" fill=\"#171717\"/></g></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h51v51H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-106gu3x\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YpJNps5Q6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"rgb(59, 59, 59)\"},children:\"No Limits\"})})},Yu1Cwh3WC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"rgb(59, 59, 59)\"},children:\"No Limits\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(59, 59, 59)\"},children:\"No Limits\"})}),className:\"framer-6t9hif\",\"data-framer-name\":\"Text <p>\",fonts:[\"CUSTOM;Proxima Nova Bold\"],name:\"Text <p>\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YpJNps5Q6:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBSZWd1bGFy\",\"--framer-font-family\":'\"Proxima Nova Regular\", \"Proxima Nova Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.45em\",\"--framer-text-color\":\"var(--token-563eba1a-c7b7-4641-9e2a-b421fa37e0b2, rgb(97, 97, 97))\"},children:\"We believe in endless possibilities. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBSZWd1bGFy\",\"--framer-font-family\":'\"Proxima Nova Regular\", \"Proxima Nova Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.45em\",\"--framer-text-color\":\"var(--token-563eba1a-c7b7-4641-9e2a-b421fa37e0b2, rgb(97, 97, 97))\"},children:\"Our voice AI technology allows users to fully customize and control every aspect of voice and speech output.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBSZWd1bGFy\",\"--framer-font-family\":'\"Proxima Nova Regular\", \"Proxima Nova Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.45em\",\"--framer-text-color\":\"var(--token-563eba1a-c7b7-4641-9e2a-b421fa37e0b2, rgb(97, 97, 97))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBSZWd1bGFy\",\"--framer-font-family\":'\"Proxima Nova Regular\", \"Proxima Nova Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.45em\",\"--framer-text-color\":\"var(--token-563eba1a-c7b7-4641-9e2a-b421fa37e0b2, rgb(97, 97, 97))\"},children:\"Like a box of diverse LEGO bricks, our platform enables the creation of unique, personalized voices that meet specific needs and preferences, ensuring that your imagination is the only limit.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBSZWd1bGFy\",\"--framer-font-family\":'\"Proxima Nova Regular\", \"Proxima Nova Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.45em\",\"--framer-text-color\":\"var(--token-563eba1a-c7b7-4641-9e2a-b421fa37e0b2, rgb(97, 97, 97))\"},children:\"We believe in endless possibilities. Our voice AI technology allows users to fully customize and control every aspect of voice and speech output.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBSZWd1bGFy\",\"--framer-font-family\":'\"Proxima Nova Regular\", \"Proxima Nova Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.45em\",\"--framer-text-color\":\"var(--token-563eba1a-c7b7-4641-9e2a-b421fa37e0b2, rgb(97, 97, 97))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBSZWd1bGFy\",\"--framer-font-family\":'\"Proxima Nova Regular\", \"Proxima Nova Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.45em\",\"--framer-text-color\":\"var(--token-563eba1a-c7b7-4641-9e2a-b421fa37e0b2, rgb(97, 97, 97))\"},children:\"Like a box of diverse LEGO bricks, our platform enables the creation of unique, personalized voices that meet specific needs and preferences, ensuring that your imagination is the only limit.\"})]}),className:\"framer-1n0r8hh\",\"data-framer-name\":\"Text <p>\",fonts:[\"CUSTOM;Proxima Nova Regular\"],name:\"Text <p>\",verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3fuhdq\",\"data-framer-name\":\"No_clones\",name:\"No_clones\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10fbnqc\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ufqi5c\",\"data-framer-name\":\"No clones\",fill:\"black\",intrinsicHeight:41,intrinsicWidth:41,name:\"No clones\",svg:'<svg width=\"41\" height=\"41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M20.5 37.583c9.435 0 17.083-7.648 17.083-17.083 0-9.435-7.648-17.083-17.083-17.083-9.435 0-17.084 7.648-17.084 17.083 0 9.435 7.649 17.083 17.084 17.083Z\" stroke=\"#171717\" stroke-width=\"3.417\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m8.37 8.37 24.26 24.26\" stroke=\"#5A9CFE\" stroke-width=\"3.417\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ktzfsx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YpJNps5Q6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"rgb(59, 59, 59)\"},children:\"No Clones\"})})},Yu1Cwh3WC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"rgb(59, 59, 59)\"},children:\"No Clones\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(59, 59, 59)\"},children:\"No Clones\"})}),className:\"framer-19ahs6w\",\"data-framer-name\":\"Text <p>\",fonts:[\"CUSTOM;Proxima Nova Bold\"],name:\"Text <p>\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBSZWd1bGFy\",\"--framer-font-family\":'\"Proxima Nova Regular\", \"Proxima Nova Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.45em\",\"--framer-text-color\":\"var(--token-563eba1a-c7b7-4641-9e2a-b421fa37e0b2, rgb(97, 97, 97))\"},children:\"Ethical considerations are at the core of our innovation. We avoid voice cloning and deepfakes, focusing instead on generating original novel voices.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBSZWd1bGFy\",\"--framer-font-family\":'\"Proxima Nova Regular\", \"Proxima Nova Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.45em\",\"--framer-text-color\":\"var(--token-563eba1a-c7b7-4641-9e2a-b421fa37e0b2, rgb(97, 97, 97))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBSZWd1bGFy\",\"--framer-font-family\":'\"Proxima Nova Regular\", \"Proxima Nova Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.45em\",\"--framer-text-color\":\"var(--token-563eba1a-c7b7-4641-9e2a-b421fa37e0b2, rgb(97, 97, 97))\"},children:\"Our commitment to ethical AI ensures that our technology is not only advanced but also responsible.\"})]}),className:\"framer-9abjzz\",\"data-framer-name\":\"Text <p>\",fonts:[\"CUSTOM;Proxima Nova Regular\"],name:\"Text <p>\",verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d5blq5\",\"data-framer-name\":\"Human-centric\",name:\"Human-centric\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pn2ciy\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-v5ak67\",\"data-framer-name\":\"Human centric\",fill:\"black\",intrinsicHeight:52,intrinsicWidth:52,name:\"Human centric\",svg:'<svg width=\"52\" height=\"52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M26.767 32.263c.03-2.278.059-4.556.03-6.835 0-.263-.059-.496-.117-.73-.03-.146-.146-.292-.293-.321-.175-.03-.262.117-.35.233-.146.234-.175.497-.175.76a41.389 41.389 0 0 0-.117 1.898l-.088 4.878c0 .701 0 1.402-.058 2.103-.059.585-.205 1.169-.76 1.549-.438.262-.934.175-1.285-.176-.35-.38-.467-.847-.555-1.314-.117-.701-.146-1.431-.175-2.162-.117-2.395-.146-4.79-.205-7.185-.029-1.723 0-3.418-.058-5.141 0-.876 0-1.723-.146-2.6v-.087c-.058-.176-.117-.38-.321-.41-.205 0-.263.205-.293.38-.175.672-.233 1.373-.262 2.074v2.746c0 .584.116 1.14.116 1.723 0 .234-.029.468-.146.701-.175.293-.38.497-.759.497-.38 0-.613-.234-.789-.526-.263-.438-.35-.934-.409-1.46-.087-.906-.204-1.84-.175-2.775 0-1.169.117-2.308.292-3.447.088-.613.205-1.197.41-1.782.32-.876.934-1.519 1.723-1.986.817-.526 1.723-.847 2.658-1.022 1.197-.234 2.395-.234 3.592-.059.906.117 1.811.322 2.659.73 1.285.614 2.073 1.607 2.365 3.01.263 1.255.468 2.511.555 3.796.088 1.315.088 2.63.059 3.944 0 .292-.059.555-.175.817-.205.41-.497.702-.993.702-.497 0-.818-.293-1.052-.73a1.57 1.57 0 0 1-.146-.614c0-1.052.087-2.103 0-3.155-.088-1.022-.117-2.044-.35-3.037a2.883 2.883 0 0 0-.147-.468c-.058-.146-.146-.175-.233 0-.146.234-.176.526-.176.789-.087 1.285-.146 2.57-.204 3.885l-.175 4.82c-.059 1.635-.146 3.27-.234 4.907-.058 1.051-.117 2.103-.292 3.154-.088.526-.263 1.022-.701 1.373-.468.38-1.14.234-1.548-.234-.41-.467-.438-1.051-.468-1.636v-1.577h-.029Z\" fill=\"#171717\"/><path d=\"M26.65 48.708a64.86 64.86 0 0 1-6.309-.321 39.888 39.888 0 0 1-5.871-1.052c-1.753-.467-3.505-1.051-5.112-1.898-1.606-.818-3.125-1.811-4.352-3.126-.935-.993-1.665-2.132-2.074-3.446-.35-1.169-.467-2.396-.117-3.593.41-1.431 1.286-2.57 2.366-3.564.994-.905 2.103-1.635 3.301-2.249a24.528 24.528 0 0 1 4.44-1.84c1.694-.526 3.447-.993 5.2-1.256.905-.146 1.81-.263 2.716-.438.263-.059.525-.088.788.087.35.234.497.526.38.935-.058.35-.321.555-.7.614-1.228.204-2.454.35-3.652.584a38.24 38.24 0 0 0-4.002 1.022 27.557 27.557 0 0 0-3.972 1.606c-1.11.555-2.191 1.198-3.126 2.016-.788.701-1.519 1.49-1.928 2.483-.409.993-.38 1.986-.087 3.008.321 1.081.905 1.987 1.636 2.804.788.877 1.723 1.578 2.745 2.191 1.957 1.169 4.06 1.928 6.251 2.483.993.263 1.957.438 2.95.613 2.162.351 4.353.526 6.543.585 1.694.058 3.388.058 5.083-.059 1.84-.117 3.68-.263 5.491-.613 1.373-.263 2.775-.555 4.09-.993 1.694-.555 3.33-1.256 4.848-2.25 1.169-.759 2.19-1.664 2.98-2.804.788-1.11 1.226-2.395 1.11-3.797-.059-.876-.468-1.665-.994-2.366-.613-.818-1.402-1.46-2.22-2.044a16.44 16.44 0 0 0-3.359-1.87 32.071 32.071 0 0 0-3.972-1.402 69.298 69.298 0 0 0-4.119-.905 47.84 47.84 0 0 0-2.015-.293c-.497-.087-.701-.409-.672-.963 0-.38.38-.702.818-.702.555 0 1.11.117 1.665.205.73.117 1.431.234 2.161.38a51.26 51.26 0 0 1 3.652.905c1.927.584 3.797 1.344 5.55 2.337 1.43.818 2.716 1.782 3.767 3.038 1.081 1.314 1.636 2.833 1.46 4.556a7.752 7.752 0 0 1-1.635 4.09c-1.168 1.548-2.658 2.745-4.352 3.651-.613.321-1.227.643-1.87.905-1.197.497-2.424.935-3.68 1.256a37.099 37.099 0 0 1-4.002.818c-1.168.176-2.336.322-3.505.38-1.431.088-2.862.175-4.323.175l.03.117Z\" fill=\"#5A9CFE\"/><path d=\"M26.242 44.882c-1.636 0-3.389-.146-5.141-.38a35.244 35.244 0 0 1-4.645-.906c-1.606-.438-3.154-1.022-4.585-1.869-1.052-.613-1.987-1.373-2.688-2.395-.76-1.08-1.08-2.278-.905-3.564.087-.613.321-1.197.671-1.752.935-1.431 2.279-2.308 3.74-3.038.817-.409 1.664-.76 2.54-1.052 1.52-.467 3.038-.847 4.616-1.08.35-.059.672-.117 1.022-.117.438 0 .847.292.876.672.059.525-.233.934-.73.993-.555.087-1.14.146-1.694.263-1.782.321-3.534.76-5.2 1.49-1.022.467-2.015 1.022-2.862 1.781-.526.468-.993 1.023-1.197 1.724-.293.934-.03 1.81.496 2.6.876 1.284 2.132 2.044 3.476 2.686 1.344.643 2.746 1.052 4.206 1.373 1.87.438 3.797.614 5.725.73a41.03 41.03 0 0 0 5.988-.058 36.91 36.91 0 0 0 6.426-1.08c1.578-.41 3.096-.994 4.499-1.812.964-.555 1.81-1.256 2.366-2.22.584-1.022.555-2.073-.059-3.067-.467-.759-1.168-1.314-1.87-1.84-.788-.584-1.693-.993-2.599-1.373a24.781 24.781 0 0 0-3.797-1.168c-1.023-.204-2.045-.38-3.067-.555-.555-.088-.847-.467-.76-.935.088-.555.526-.818 1.081-.73.964.175 1.957.292 2.921.497 1.227.262 2.395.613 3.564 1.051 1.022.38 1.986.818 2.92 1.344 1.344.818 2.6 1.782 3.301 3.242.701 1.46.614 2.921-.175 4.323-.672 1.227-1.723 2.074-2.892 2.804-1.197.76-2.512 1.256-3.855 1.694a27.53 27.53 0 0 1-4.586 1.081 37.98 37.98 0 0 1-5.462.497c-.497 0-1.023 0-1.636.029l-.03.117Z\" fill=\"#5A9CFE\"/><path d=\"M26.417 39.536c1.519.03 3.037-.116 4.556-.32 1.665-.205 3.301-.614 4.85-1.315a5.583 5.583 0 0 0 1.489-.935c.584-.526.584-1.256.03-1.87-.556-.613-1.286-.934-2.045-1.255-1.227-.497-2.483-.672-3.769-.877-.555-.087-.905-.467-.847-.964.059-.496.497-.788 1.052-.73.643.088 1.285.205 1.928.321.7.146 1.373.322 2.044.585 1.256.496 2.512 1.08 3.272 2.278.555.876.672 1.81.204 2.746-.438.876-1.197 1.43-2.015 1.898-1.022.584-2.132.935-3.242 1.256-1.548.438-3.155.643-4.732.76a34.273 34.273 0 0 1-4.586.029c-1.753-.088-3.505-.263-5.229-.672-1.256-.292-2.483-.7-3.622-1.343-.818-.468-1.548-.994-2.044-1.812-.555-.905-.497-1.84-.03-2.745.468-.993 1.315-1.607 2.279-2.074 1.256-.613 2.6-.935 3.972-1.14.263-.029.497-.087.76-.116.584-.058.993.321.964.876 0 .38-.35.76-.76.789a21.67 21.67 0 0 0-2.746.526c-.876.262-1.723.555-2.424 1.168-.38.35-.643.73-.701 1.285-.03.672.409 1.023.876 1.344 1.023.672 2.162 1.051 3.33 1.373 2.337.642 4.732.818 7.156.847l.03.087Z\" fill=\"#5A9CFE\"/><path d=\"M26.446 36.674a24.13 24.13 0 0 0 3.564-.263c.905-.146 1.81-.234 2.628-.672.059-.029.147 0 .147-.117 0-.087-.088-.117-.146-.146a4.75 4.75 0 0 0-1.081-.38 1.765 1.765 0 0 1-.555-.175c-.38-.204-.555-.7-.41-1.11.147-.38.614-.555 1.023-.438.701.175 1.373.35 2.016.701.438.263.876.526 1.022 1.052.204.7 0 1.227-.672 1.752-.584.438-1.256.672-1.928.847-1.402.35-2.833.497-4.294.614-1.285.087-2.57 0-3.855-.059-1.14-.058-2.308-.204-3.418-.555-.76-.233-1.548-.467-2.132-1.051-.73-.73-.643-1.636.175-2.25.672-.525 1.46-.759 2.279-.963.38-.088.847.233.963.672.088.32-.145.817-.496.934-.321.117-.643.205-.964.322-.117.029-.204.087-.321.146-.059 0-.146 0-.146.117 0 .087.087.116.146.146a5.984 5.984 0 0 0 1.548.496 22.03 22.03 0 0 0 2.424.322c.818.058 1.636.087 2.454.116l.03-.058Z\" fill=\"#6BADFF\"/><path d=\"M29.163 6.88c0 1.256-.38 2.308-1.344 3.067-1.168.906-2.717.73-3.651-.438-1.023-1.256-1.198-3.155-.35-4.528.554-.934 1.372-1.518 2.511-1.46.614 0 1.14.263 1.607.672.847.76 1.168 1.723 1.227 2.716V6.88Z\" fill=\"#171717\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15fmpxl\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YpJNps5Q6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"rgb(59, 59, 59)\"},children:\"Human-Centric\"})})},Yu1Cwh3WC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"rgb(59, 59, 59)\"},children:\"Human-Centric\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(59, 59, 59)\"},children:\"Human-Centric\"})}),className:\"framer-11l1ffv\",\"data-framer-name\":\"Text <p>\",fonts:[\"CUSTOM;Proxima Nova Bold\"],name:\"Text <p>\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBSZWd1bGFy\",\"--framer-font-family\":'\"Proxima Nova Regular\", \"Proxima Nova Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.45em\",\"--framer-text-color\":\"var(--token-563eba1a-c7b7-4641-9e2a-b421fa37e0b2, rgb(97, 97, 97))\"},children:\"Our technology prioritizes human connection and emotional resonance. By making voice AI emotionally expressive and context-aware, we ensure that interactions are natural and engaging.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBSZWd1bGFy\",\"--framer-font-family\":'\"Proxima Nova Regular\", \"Proxima Nova Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.45em\",\"--framer-text-color\":\"var(--token-563eba1a-c7b7-4641-9e2a-b421fa37e0b2, rgb(97, 97, 97))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBSZWd1bGFy\",\"--framer-font-family\":'\"Proxima Nova Regular\", \"Proxima Nova Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.45em\",\"--framer-text-color\":\"var(--token-563eba1a-c7b7-4641-9e2a-b421fa37e0b2, rgb(97, 97, 97))\"},children:\"Our solutions are designed to enhance user experience, making technology feel more human and relatable.\"})]}),className:\"framer-1nz8znr\",\"data-framer-name\":\"Text <p>\",fonts:[\"CUSTOM;Proxima Nova Regular\"],name:\"Text <p>\",verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-164mnth\",\"data-framer-name\":\"spacer\",name:\"spacer\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k9yb7b\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YpJNps5Q6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"Listen to our models\"})}),fonts:[\"CUSTOM;Proxima Nova Bold\"]},Yu1Cwh3WC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"Listen to our models\"})}),fonts:[\"CUSTOM;Proxima Nova Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-17n1tlc\",\"data-styles-preset\":\"Keo1xwDz7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"Listen to our models\"})}),className:\"framer-9qz7kl\",\"data-framer-name\":\"Things that matter for us\",fonts:[\"Inter\"],name:\"Things that matter for us\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14rs5au\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-mxf74i\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1avndqa-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YpJNps5Q6:{itemAmount:2},Yu1Cwh3WC:{gap:0,itemAmount:1}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.8)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:21,arrowPaddingLeft:0,arrowPaddingRight:20,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:0,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:30,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:true},gap:20,height:\"100%\",id:\"vxdoHvwaY\",intervalControl:2,itemAmount:3,layoutId:\"vxdoHvwaY\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h9yvgg-container\",\"data-framer-name\":\"1\",name:\"1\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"Mk8rJ9KY5\",isMixedBorderRadius:false,isRed:false,layoutId:\"Mk8rJ9KY5\",name:\"1\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/0iRo_sS2pIk?si=z9tyVcQv8wB62SKZ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-teje8o-container\",\"data-framer-name\":\"7\",name:\"7\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"HJqSSK2dg\",isMixedBorderRadius:false,isRed:false,layoutId:\"HJqSSK2dg\",name:\"7\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=Lx_AHEVY1J4\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-97i8ro-container\",\"data-framer-name\":\"5\",name:\"5\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"tBQm2SjAA\",isMixedBorderRadius:false,isRed:false,layoutId:\"tBQm2SjAA\",name:\"5\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=25IJTLfz-e8&ab_channel=DAISYS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dt1hju-container\",\"data-framer-name\":\"6\",name:\"6\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"jQqtwEwKE\",isMixedBorderRadius:false,isRed:false,layoutId:\"jQqtwEwKE\",name:\"6\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/2RLr2Lp2bRc\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dh7dea-container\",\"data-framer-name\":\"3\",name:\"3\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"P2OrZPJjb\",isMixedBorderRadius:false,isRed:false,layoutId:\"P2OrZPJjb\",name:\"3\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=2HGItVZvqsw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b02xwg-container\",\"data-framer-name\":\"4\",name:\"4\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"BixTa3qJw\",isMixedBorderRadius:false,isRed:false,layoutId:\"BixTa3qJw\",name:\"4\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=2fS-uwIqxWI\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-g6xy63-container\",\"data-framer-name\":\"2\",name:\"2\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"SfCwnnZW7\",isMixedBorderRadius:false,isRed:false,layoutId:\"SfCwnnZW7\",name:\"2\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=bcA_2JdS52Y\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ri2h8e-container\",\"data-framer-name\":\"8\",name:\"8\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"MBmlQ6gnd\",isMixedBorderRadius:false,isRed:false,layoutId:\"MBmlQ6gnd\",name:\"8\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/9Fv6nGBoPvo?si=fzp2hSRfH1DJXojV\",width:\"100%\"})})})],startFrom:1,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXFmRUoEu:{y:3453},inHW2t6nB:{y:3612.59217877095},vzeotzgRi:{y:4568},YpJNps5Q6:{y:4713.700000000001},Yu1Cwh3WC:{y:4480.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:397,width:\"100vw\",y:3381.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mtuwec-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXFmRUoEu:{variant:\"z5vmZdKXM\"},vzeotzgRi:{variant:\"x4PfX_tVz\"},YpJNps5Q6:{variant:\"jE66ZGHTE\"},Yu1Cwh3WC:{variant:\"jE66ZGHTE\"}},children:/*#__PURE__*/_jsx(FooterCopy,{height:\"100%\",id:\"lGLUxQksa\",layoutId:\"lGLUxQksa\",style:{width:\"100%\"},variant:\"yjB5PLR8B\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YpJNps5Q6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(75),pixelHeight:1233,pixelWidth:1170,sizes:\"100vw\",src:\"https://framerusercontent.com/images/BGwaq65QwTYQlJxIK3WEigSlcVQ.png\",srcSet:\"https://framerusercontent.com/images/BGwaq65QwTYQlJxIK3WEigSlcVQ.png?scale-down-to=1024 971w,https://framerusercontent.com/images/BGwaq65QwTYQlJxIK3WEigSlcVQ.png 1170w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1233,pixelWidth:1170,src:\"https://framerusercontent.com/images/BGwaq65QwTYQlJxIK3WEigSlcVQ.png\",srcSet:\"https://framerusercontent.com/images/BGwaq65QwTYQlJxIK3WEigSlcVQ.png?scale-down-to=1024 971w,https://framerusercontent.com/images/BGwaq65QwTYQlJxIK3WEigSlcVQ.png 1170w\"},className:\"framer-mv7816 hidden-ob0cr5 hidden-jiajns hidden-fo22g1 hidden-1we90f9 hidden-1o0dku5\",id:\"mv7816\",onTap:onTap3bnx0g({overlay}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YpJNps5Q6:{animate:{opacity:1,transition:{delay:0,duration:.15,ease:[.5,0,.88,.77],type:\"tween\"}},exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},onTap:undefined}},children:/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-ue2357\"),\"data-framer-portal-id\":\"mv7816\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"SktNptnNE\")}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-il3glj-container\"),\"data-framer-portal-id\":\"mv7816\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YpJNps5Q6:{playing:true,poster:undefined,posterEnabled:false}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"jok3YwQca\",isMixedBorderRadius:false,layoutId:\"jok3YwQca\",loop:false,muted:false,objectFit:\"cover\",playing:false,poster:\"https://framerusercontent.com/images/F8EJF8NDKiKPzqZn1oN8ojMbfw.png\",posterEnabled:true,srcType:\"URL\",srcUrl:\"https://daisys-public.s3.eu-central-1.amazonaws.com/site/720_We-are-DAISYS.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:40,width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:`${cx(scopingClassNames,\"framer-1xfdutd\")} hidden-1bj7jem`,\"data-framer-name\":\"close_button\",\"data-framer-portal-id\":\"mv7816\",fill:\"black\",intrinsicHeight:87,intrinsicWidth:87,name:\"close_button\",svg:'<svg width=\"87\" height=\"87\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"43.5\" cy=\"43.5\" r=\"42.5\" stroke=\"#fff\" stroke-width=\"2\"/><path d=\"M57.561 56.439a1.502 1.502 0 0 1-2.122 2.122L43 46.121 30.561 58.56a1.5 1.5 0 1 1-2.122-2.122L40.879 44 28.44 31.561a1.501 1.501 0 0 1 2.122-2.122L43 41.879l12.439-12.44a1.501 1.501 0 0 1 2.122 2.122L45.121 44l12.44 12.439Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YpJNps5Q6:{width:\"57px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:`${cx(scopingClassNames,\"framer-gtmd42-container\")} hidden-ob0cr5`,\"data-framer-portal-id\":\"mv7816\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YpJNps5Q6:{nV54Vr4aT:nV54Vr4aT1wnntms({overlay})}},children:/*#__PURE__*/_jsx(CloseButton,{height:\"100%\",id:\"WhadAHRDB\",layoutId:\"WhadAHRDB\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]}),getContainer())})})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Yu1Cwh3WC:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(75),pixelHeight:1233,pixelWidth:1170,sizes:\"100vw\",src:\"https://framerusercontent.com/images/iBGXQMCy0oVm1qvDd0gIjL8TeQY.png\",srcSet:\"https://framerusercontent.com/images/iBGXQMCy0oVm1qvDd0gIjL8TeQY.png?scale-down-to=1024 971w,https://framerusercontent.com/images/iBGXQMCy0oVm1qvDd0gIjL8TeQY.png 1170w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1233,pixelWidth:1170,src:\"https://framerusercontent.com/images/iBGXQMCy0oVm1qvDd0gIjL8TeQY.png\",srcSet:\"https://framerusercontent.com/images/iBGXQMCy0oVm1qvDd0gIjL8TeQY.png?scale-down-to=1024 971w,https://framerusercontent.com/images/iBGXQMCy0oVm1qvDd0gIjL8TeQY.png 1170w\"},className:\"framer-1p88ipc hidden-ob0cr5 hidden-jiajns hidden-1bj7jem hidden-fo22g1 hidden-1we90f9\",id:\"1p88ipc\",onTap:onTap3bnx0g({overlay:overlay1}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1d9pelr\"),\"data-framer-portal-id\":\"1p88ipc\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0}},\"Tx6hWTr0F\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-rlpbl7-container\"),\"data-framer-portal-id\":\"1p88ipc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"Twy0gl91c\",isMixedBorderRadius:false,layoutId:\"Twy0gl91c\",loop:false,muted:false,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://daisys-public.s3.eu-central-1.amazonaws.com/site/720_We-are-DAISYS.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:40,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"57px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-13r300x-container\"),\"data-framer-portal-id\":\"1p88ipc\",children:/*#__PURE__*/_jsx(CloseButton,{height:\"100%\",id:\"S7nk3Ku1k\",layoutId:\"S7nk3Ku1k\",nV54Vr4aT:nV54Vr4aT1wnntms({overlay:overlay1}),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-ZwvOc { background: rgb(21, 21, 21); }`,\".framer-ZwvOc.framer-1yn68fm, .framer-ZwvOc .framer-1yn68fm { display: block; }\",\".framer-ZwvOc.framer-ob0cr5 { align-content: center; align-items: center; background-color: #151515; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1536px; }\",\".framer-ZwvOc .framer-szoi5f-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 4; }\",\".framer-ZwvOc .framer-vhrz7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZwvOc .framer-77dfv9-container { flex: 1 0 0px; height: 825px; position: relative; width: 1px; }\",\".framer-ZwvOc .framer-1hy13de { align-content: center; align-items: center; background-color: #f2f2f2; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-ZwvOc .framer-1x3rc79 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZwvOc .framer-tvo76g-container { flex: none; height: auto; position: relative; width: 557px; }\",\".framer-ZwvOc .framer-1gb6yqo { align-content: center; align-items: center; background-color: var(--token-de1a3a5a-1b37-4a90-b65a-50b0604a7d8a, #fafafa); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 75vh; justify-content: center; overflow: visible; padding: 0px 300px 0px 300px; position: relative; width: 100%; }\",\".framer-ZwvOc .framer-14c6ve-container, .framer-ZwvOc .framer-1mtuwec-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-ZwvOc .framer-st046w { flex: none; height: 58px; overflow: hidden; position: relative; width: 100%; }\",\".framer-ZwvOc .framer-1g1x21p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); }\",\".framer-ZwvOc .framer-1kyyy0j-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ZwvOc .framer-1skn56l { background-color: #ffffff; flex: none; height: 15vh; overflow: hidden; position: relative; width: 100%; }\",\".framer-ZwvOc .framer-15aldf6 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-ZwvOc .framer-1g3kak { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZwvOc .framer-giwk3n { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZwvOc .framer-1ogn3sh { display: grid; flex: none; gap: 16px; grid-auto-rows: min-content; grid-template-columns: repeat(6, minmax(8px, 1fr)); grid-template-rows: repeat(1, min-content); height: 477px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZwvOc .framer-1vq6gyb { align-content: flex-start; align-items: flex-start; align-self: start; background-color: #fafafa; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; grid-column: auto / span 2; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 27px 48px 75px 48px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZwvOc .framer-13bsmjy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZwvOc .framer-11apyrt { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 60px; }\",\".framer-ZwvOc .framer-106gu3x, .framer-ZwvOc .framer-ktzfsx, .framer-ZwvOc .framer-15fmpxl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZwvOc .framer-6t9hif, .framer-ZwvOc .framer-1n0r8hh, .framer-ZwvOc .framer-19ahs6w, .framer-ZwvOc .framer-9abjzz, .framer-ZwvOc .framer-11l1ffv, .framer-ZwvOc .framer-1nz8znr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZwvOc .framer-3fuhdq { align-content: flex-start; align-items: flex-start; align-self: start; background-color: #fafafa; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; grid-column: auto / span 2; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 36px 32px 127px 42px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZwvOc .framer-10fbnqc, .framer-ZwvOc .framer-pn2ciy { 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-ZwvOc .framer-1ufqi5c { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); position: relative; width: 42px; }\",\".framer-ZwvOc .framer-d5blq5 { align-content: flex-start; align-items: flex-start; align-self: start; background-color: #fafafa; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; grid-column: auto / span 2; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 28px 48px 102px 48px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZwvOc .framer-v5ak67 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); position: relative; width: 52px; }\",\".framer-ZwvOc .framer-164mnth { background-color: #ffffff; flex: none; height: 13vh; overflow: hidden; position: relative; width: 100%; }\",\".framer-ZwvOc .framer-1k9yb7b { align-content: center; align-items: center; background-color: #fafafa; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-ZwvOc .framer-9qz7kl { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 584px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZwvOc .framer-14rs5au { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: 265px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1472px; }\",\".framer-ZwvOc .framer-mxf74i { flex: 1 0 0px; height: 1px; max-height: 500px; overflow: visible; position: relative; width: 518px; }\",\".framer-ZwvOc .framer-1avndqa-container { flex: none; height: 100%; left: calc(50.00000000000002% - 283.55555555555554% / 2); position: absolute; top: calc(49.811320754717% - 100% / 2); width: 284%; }\",\".framer-ZwvOc .framer-1h9yvgg-container, .framer-ZwvOc .framer-teje8o-container, .framer-ZwvOc .framer-97i8ro-container, .framer-ZwvOc .framer-1dt1hju-container, .framer-ZwvOc .framer-1dh7dea-container, .framer-ZwvOc .framer-b02xwg-container, .framer-ZwvOc .framer-ri2h8e-container { height: 270px; position: relative; width: 445px; }\",\".framer-ZwvOc .framer-g6xy63-container { height: 270px; position: relative; width: 446px; }\",\".framer-ZwvOc .framer-mv7816 { cursor: pointer; flex: none; height: 520px; position: relative; width: 100%; }\",\".framer-ZwvOc.framer-ue2357 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-ZwvOc.framer-il3glj-container { flex: none; height: 450px; position: fixed; right: -420px; top: 76px; width: 100px; }\",\".framer-ZwvOc.framer-1xfdutd { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 87px); left: 0px; position: fixed; top: 0px; width: 87px; }\",\".framer-ZwvOc.framer-gtmd42-container { flex: none; height: 64px; left: 163px; position: fixed; top: 395px; width: 57px; }\",\".framer-ZwvOc .framer-1p88ipc { cursor: pointer; flex: none; height: 490px; position: relative; width: 100%; }\",\".framer-ZwvOc.framer-1d9pelr { background-color: rgba(0, 0, 0, 0.95); inset: 0px; position: fixed; user-select: none; z-index: 0; }\",\".framer-ZwvOc.framer-rlpbl7-container { flex: none; height: 283px; left: calc(50.00000000000002% - 368px / 2); position: fixed; top: 76px; width: 368px; z-index: 0; }\",\".framer-ZwvOc.framer-13r300x-container { bottom: 210px; flex: none; height: 75px; left: calc(49.743589743589766% - 57px / 2); position: fixed; width: 57px; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZwvOc.framer-ob0cr5, .framer-ZwvOc .framer-vhrz7, .framer-ZwvOc .framer-1hy13de, .framer-ZwvOc .framer-1gb6yqo, .framer-ZwvOc .framer-1g1x21p, .framer-ZwvOc .framer-15aldf6, .framer-ZwvOc .framer-1g3kak, .framer-ZwvOc .framer-1vq6gyb, .framer-ZwvOc .framer-13bsmjy, .framer-ZwvOc .framer-106gu3x, .framer-ZwvOc .framer-3fuhdq, .framer-ZwvOc .framer-10fbnqc, .framer-ZwvOc .framer-ktzfsx, .framer-ZwvOc .framer-d5blq5, .framer-ZwvOc .framer-pn2ciy, .framer-ZwvOc .framer-15fmpxl, .framer-ZwvOc .framer-1k9yb7b, .framer-ZwvOc .framer-14rs5au { gap: 0px; } .framer-ZwvOc.framer-ob0cr5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ZwvOc.framer-ob0cr5 > :first-child, .framer-ZwvOc .framer-1hy13de > :first-child, .framer-ZwvOc .framer-1gb6yqo > :first-child, .framer-ZwvOc .framer-15aldf6 > :first-child, .framer-ZwvOc .framer-1vq6gyb > :first-child, .framer-ZwvOc .framer-13bsmjy > :first-child, .framer-ZwvOc .framer-106gu3x > :first-child, .framer-ZwvOc .framer-3fuhdq > :first-child, .framer-ZwvOc .framer-10fbnqc > :first-child, .framer-ZwvOc .framer-ktzfsx > :first-child, .framer-ZwvOc .framer-d5blq5 > :first-child, .framer-ZwvOc .framer-pn2ciy > :first-child, .framer-ZwvOc .framer-15fmpxl > :first-child, .framer-ZwvOc .framer-1k9yb7b > :first-child, .framer-ZwvOc .framer-14rs5au > :first-child { margin-top: 0px; } .framer-ZwvOc.framer-ob0cr5 > :last-child, .framer-ZwvOc .framer-1hy13de > :last-child, .framer-ZwvOc .framer-1gb6yqo > :last-child, .framer-ZwvOc .framer-15aldf6 > :last-child, .framer-ZwvOc .framer-1vq6gyb > :last-child, .framer-ZwvOc .framer-13bsmjy > :last-child, .framer-ZwvOc .framer-106gu3x > :last-child, .framer-ZwvOc .framer-3fuhdq > :last-child, .framer-ZwvOc .framer-10fbnqc > :last-child, .framer-ZwvOc .framer-ktzfsx > :last-child, .framer-ZwvOc .framer-d5blq5 > :last-child, .framer-ZwvOc .framer-pn2ciy > :last-child, .framer-ZwvOc .framer-15fmpxl > :last-child, .framer-ZwvOc .framer-1k9yb7b > :last-child, .framer-ZwvOc .framer-14rs5au > :last-child { margin-bottom: 0px; } .framer-ZwvOc .framer-vhrz7 > *, .framer-ZwvOc .framer-1g1x21p > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ZwvOc .framer-vhrz7 > :first-child, .framer-ZwvOc .framer-1g1x21p > :first-child, .framer-ZwvOc .framer-1g3kak > :first-child { margin-left: 0px; } .framer-ZwvOc .framer-vhrz7 > :last-child, .framer-ZwvOc .framer-1g1x21p > :last-child, .framer-ZwvOc .framer-1g3kak > :last-child { margin-right: 0px; } .framer-ZwvOc .framer-1hy13de > *, .framer-ZwvOc .framer-1gb6yqo > *, .framer-ZwvOc .framer-1k9yb7b > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-ZwvOc .framer-15aldf6 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-ZwvOc .framer-1g3kak > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-ZwvOc .framer-1vq6gyb > *, .framer-ZwvOc .framer-3fuhdq > *, .framer-ZwvOc .framer-d5blq5 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ZwvOc .framer-13bsmjy > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-ZwvOc .framer-106gu3x > *, .framer-ZwvOc .framer-ktzfsx > *, .framer-ZwvOc .framer-15fmpxl > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-ZwvOc .framer-10fbnqc > *, .framer-ZwvOc .framer-pn2ciy > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ZwvOc .framer-14rs5au > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,`@media (min-width: 810px) and (max-width: 1023px) { .${metadata.bodyClassName}-framer-ZwvOc { background: rgb(21, 21, 21); } .framer-ZwvOc.framer-ob0cr5 { height: 2999px; width: 810px; } .framer-ZwvOc .framer-77dfv9-container { height: 450px; } .framer-ZwvOc .framer-1gb6yqo { padding: 0px 32px 0px 32px; } .framer-ZwvOc .framer-15aldf6 { gap: 28px; padding: 0px 32px 0px 32px; } .framer-ZwvOc .framer-1ogn3sh { grid-template-columns: repeat(1, minmax(8px, 1fr)); height: min-content; } .framer-ZwvOc .framer-1vq6gyb { grid-column: auto / span 1; order: 0; padding: 58px; } .framer-ZwvOc .framer-3fuhdq { grid-column: auto / span 1; height: min-content; order: 1; padding: 58px; } .framer-ZwvOc .framer-d5blq5 { grid-column: auto / span 1; order: 2; padding: 58px; } .framer-ZwvOc .framer-164mnth { height: 8vh; } .framer-ZwvOc .framer-1k9yb7b { gap: 0px; padding: 80px 80px 0px 80px; } .framer-ZwvOc .framer-14rs5au { width: 808px; } .framer-ZwvOc .framer-mxf74i { flex: none; height: 183px; max-height: unset; } .framer-ZwvOc .framer-1avndqa-container { height: 99%; left: calc(50.00000000000002% - 148.06949806949808% / 2); top: calc(49.72677595628417% - 98.91891891891892% / 2); width: 148%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZwvOc .framer-15aldf6, .framer-ZwvOc .framer-1k9yb7b { gap: 0px; } .framer-ZwvOc .framer-15aldf6 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-ZwvOc .framer-15aldf6 > :first-child, .framer-ZwvOc .framer-1k9yb7b > :first-child { margin-top: 0px; } .framer-ZwvOc .framer-15aldf6 > :last-child, .framer-ZwvOc .framer-1k9yb7b > :last-child { margin-bottom: 0px; } .framer-ZwvOc .framer-1k9yb7b > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}`,`@media (min-width: 390px) and (max-width: 809px) { .${metadata.bodyClassName}-framer-ZwvOc { background: rgb(21, 21, 21); } .framer-ZwvOc.framer-ob0cr5 { width: 390px; } .framer-ZwvOc .framer-szoi5f-container { order: 0; } .framer-ZwvOc .framer-1hy13de { order: 2; padding: 90px 0px 60px 0px; } .framer-ZwvOc .framer-tvo76g-container { width: 345px; } .framer-ZwvOc .framer-1gb6yqo { align-content: flex-start; align-items: flex-start; gap: 28px; height: 95vh; order: 3; padding: 0px 24px 0px 24px; } .framer-ZwvOc .framer-1skn56l { order: 4; } .framer-ZwvOc .framer-15aldf6 { gap: 20px; order: 5; padding: 0px 16px 0px 16px; } .framer-ZwvOc .framer-1g3kak { flex-direction: column; gap: 32px; } .framer-ZwvOc .framer-giwk3n { flex: none; width: 100%; } .framer-ZwvOc .framer-1ogn3sh { height: min-content; } .framer-ZwvOc .framer-1vq6gyb { gap: 12px; grid-column: 1 / -1; padding: 34px 34px 45px 34px; } .framer-ZwvOc .framer-13bsmjy, .framer-ZwvOc .framer-10fbnqc, .framer-ZwvOc .framer-pn2ciy { gap: 20px; } .framer-ZwvOc .framer-106gu3x, .framer-ZwvOc .framer-ktzfsx, .framer-ZwvOc .framer-15fmpxl { gap: 12px; } .framer-ZwvOc .framer-3fuhdq { gap: 12px; grid-column: 1 / -1; height: min-content; padding: 24px 24px 45px 24px; } .framer-ZwvOc .framer-d5blq5 { gap: 12px; grid-column: 1 / -1; padding: 24px 24px 45px 24px; } .framer-ZwvOc .framer-164mnth { height: 9vh; order: 6; } .framer-ZwvOc .framer-1k9yb7b { gap: 21px; order: 7; padding: 80px 80px 9px 80px; } .framer-ZwvOc .framer-9qz7kl { width: 348px; } .framer-ZwvOc .framer-14rs5au { height: 146px; padding: 5px 30px 70px 0px; } .framer-ZwvOc .framer-mxf74i { width: 100%; } .framer-ZwvOc .framer-1avndqa-container { height: 188%; left: calc(51.17891816920945% - 24.549237170596395% / 2); top: calc(92.00000000000003% - 188% / 2); width: 25%; } .framer-ZwvOc .framer-1mtuwec-container { order: 8; } .framer-ZwvOc .framer-mv7816 { order: 1; } .framer-ZwvOc.framer-ue2357 { background-color: rgba(0, 0, 0, 0.95); z-index: 0; } .framer-ZwvOc.framer-il3glj-container { height: 283px; left: calc(50.00000000000002% - 368px / 2); right: unset; width: 368px; z-index: 0; } .framer-ZwvOc.framer-gtmd42-container { bottom: 210px; height: 75px; left: calc(49.743589743589766% - 57px / 2); top: unset; z-index: 0; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZwvOc .framer-1gb6yqo, .framer-ZwvOc .framer-15aldf6, .framer-ZwvOc .framer-1g3kak, .framer-ZwvOc .framer-1vq6gyb, .framer-ZwvOc .framer-13bsmjy, .framer-ZwvOc .framer-106gu3x, .framer-ZwvOc .framer-3fuhdq, .framer-ZwvOc .framer-10fbnqc, .framer-ZwvOc .framer-ktzfsx, .framer-ZwvOc .framer-d5blq5, .framer-ZwvOc .framer-pn2ciy, .framer-ZwvOc .framer-15fmpxl, .framer-ZwvOc .framer-1k9yb7b { gap: 0px; } .framer-ZwvOc .framer-1gb6yqo > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-ZwvOc .framer-1gb6yqo > :first-child, .framer-ZwvOc .framer-15aldf6 > :first-child, .framer-ZwvOc .framer-1g3kak > :first-child, .framer-ZwvOc .framer-1vq6gyb > :first-child, .framer-ZwvOc .framer-13bsmjy > :first-child, .framer-ZwvOc .framer-106gu3x > :first-child, .framer-ZwvOc .framer-3fuhdq > :first-child, .framer-ZwvOc .framer-10fbnqc > :first-child, .framer-ZwvOc .framer-ktzfsx > :first-child, .framer-ZwvOc .framer-d5blq5 > :first-child, .framer-ZwvOc .framer-pn2ciy > :first-child, .framer-ZwvOc .framer-15fmpxl > :first-child, .framer-ZwvOc .framer-1k9yb7b > :first-child { margin-top: 0px; } .framer-ZwvOc .framer-1gb6yqo > :last-child, .framer-ZwvOc .framer-15aldf6 > :last-child, .framer-ZwvOc .framer-1g3kak > :last-child, .framer-ZwvOc .framer-1vq6gyb > :last-child, .framer-ZwvOc .framer-13bsmjy > :last-child, .framer-ZwvOc .framer-106gu3x > :last-child, .framer-ZwvOc .framer-3fuhdq > :last-child, .framer-ZwvOc .framer-10fbnqc > :last-child, .framer-ZwvOc .framer-ktzfsx > :last-child, .framer-ZwvOc .framer-d5blq5 > :last-child, .framer-ZwvOc .framer-pn2ciy > :last-child, .framer-ZwvOc .framer-15fmpxl > :last-child, .framer-ZwvOc .framer-1k9yb7b > :last-child { margin-bottom: 0px; } .framer-ZwvOc .framer-15aldf6 > *, .framer-ZwvOc .framer-13bsmjy > *, .framer-ZwvOc .framer-10fbnqc > *, .framer-ZwvOc .framer-pn2ciy > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-ZwvOc .framer-1g3kak > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-ZwvOc .framer-1vq6gyb > *, .framer-ZwvOc .framer-106gu3x > *, .framer-ZwvOc .framer-3fuhdq > *, .framer-ZwvOc .framer-ktzfsx > *, .framer-ZwvOc .framer-d5blq5 > *, .framer-ZwvOc .framer-15fmpxl > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-ZwvOc .framer-1k9yb7b > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } }}`,`@media (min-width: 1280px) and (max-width: 1535px) { .${metadata.bodyClassName}-framer-ZwvOc { background: rgb(21, 21, 21); } .framer-ZwvOc.framer-ob0cr5 { width: 1280px; } .framer-ZwvOc .framer-77dfv9-container { height: 755px; } .framer-ZwvOc .framer-1gb6yqo { padding: 0px 125px 0px 125px; } .framer-ZwvOc .framer-1ogn3sh { height: min-content; } .framer-ZwvOc .framer-3fuhdq { height: min-content; padding: 36px 32px 180px 42px; } .framer-ZwvOc .framer-d5blq5 { padding: 28px 48px 100px 48px; } .framer-ZwvOc .framer-164mnth { height: 8.659217877094973vh; } .framer-ZwvOc .framer-1avndqa-container { left: calc(50.00000000000002% - 216.023166023166% / 2); width: 216%; }}`,`@media (min-width: 1024px) and (max-width: 1279px) { .${metadata.bodyClassName}-framer-ZwvOc { background: rgb(21, 21, 21); } .framer-ZwvOc.framer-ob0cr5 { width: 1024px; } .framer-ZwvOc .framer-szoi5f-container { order: 0; } .framer-ZwvOc .framer-vhrz7 { order: 1; } .framer-ZwvOc .framer-77dfv9-container { height: 595px; } .framer-ZwvOc .framer-1hy13de { order: 2; } .framer-ZwvOc .framer-1gb6yqo { order: 3; } .framer-ZwvOc .framer-14c6ve-container { width: 800px; } .framer-ZwvOc .framer-st046w { width: 804px; } .framer-ZwvOc .framer-1skn56l { order: 4; } .framer-ZwvOc .framer-15aldf6 { order: 5; padding: 0px 32px 0px 32px; } .framer-ZwvOc .framer-1ogn3sh { height: min-content; } .framer-ZwvOc .framer-3fuhdq { height: min-content; padding: 36px 32px 205px 42px; } .framer-ZwvOc .framer-d5blq5 { padding: 28px 48px 126px 48px; } .framer-ZwvOc .framer-164mnth { order: 6; } .framer-ZwvOc .framer-1k9yb7b { order: 7; } .framer-ZwvOc .framer-14rs5au { height: 197px; width: 864px; } .framer-ZwvOc .framer-1avndqa-container { left: calc(50.00000000000002% - 185.13513513513513% / 2); top: calc(49.74619289340104% - 100% / 2); width: 185%; } .framer-ZwvOc .framer-1mtuwec-container { order: 8; }}`,`@media (max-width: 389px) { .${metadata.bodyClassName}-framer-ZwvOc { background: rgb(21, 21, 21); } .framer-ZwvOc.framer-ob0cr5 { width: 320px; } .framer-ZwvOc .framer-szoi5f-container { order: 0; } .framer-ZwvOc .framer-1hy13de { order: 2; padding: 90px 0px 40px 0px; } .framer-ZwvOc .framer-tvo76g-container { width: 293px; } .framer-ZwvOc .framer-1gb6yqo { align-content: flex-start; align-items: flex-start; gap: 28px; height: 95vh; order: 3; padding: 0px 24px 0px 24px; } .framer-ZwvOc .framer-1skn56l { order: 4; } .framer-ZwvOc .framer-15aldf6 { gap: 20px; order: 5; padding: 0px 16px 0px 16px; } .framer-ZwvOc .framer-1g3kak { flex-direction: column; gap: 32px; } .framer-ZwvOc .framer-giwk3n { flex: none; width: 100%; } .framer-ZwvOc .framer-1ogn3sh { height: min-content; } .framer-ZwvOc .framer-1vq6gyb, .framer-ZwvOc .framer-3fuhdq, .framer-ZwvOc .framer-d5blq5 { gap: 12px; grid-column: 1 / -1; padding: 24px; } .framer-ZwvOc .framer-13bsmjy, .framer-ZwvOc .framer-10fbnqc, .framer-ZwvOc .framer-pn2ciy { gap: 20px; } .framer-ZwvOc .framer-164mnth { height: 9vh; order: 6; } .framer-ZwvOc .framer-1k9yb7b { gap: 16px; order: 7; padding: 80px 80px 71px 80px; } .framer-ZwvOc .framer-9qz7kl { width: 298px; } .framer-ZwvOc .framer-14rs5au { height: 125px; padding: 5px 30px 70px 0px; } .framer-ZwvOc .framer-mxf74i { width: 100%; } .framer-ZwvOc .framer-1avndqa-container { height: 306%; left: calc(51.17891816920945% - 20.388349514563107% / 2); top: calc(150.00000000000003% - 306% / 2); width: 20%; } .framer-ZwvOc .framer-1mtuwec-container { order: 8; } .framer-ZwvOc .framer-1p88ipc { order: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZwvOc .framer-1gb6yqo, .framer-ZwvOc .framer-15aldf6, .framer-ZwvOc .framer-1g3kak, .framer-ZwvOc .framer-1vq6gyb, .framer-ZwvOc .framer-13bsmjy, .framer-ZwvOc .framer-3fuhdq, .framer-ZwvOc .framer-10fbnqc, .framer-ZwvOc .framer-d5blq5, .framer-ZwvOc .framer-pn2ciy, .framer-ZwvOc .framer-1k9yb7b { gap: 0px; } .framer-ZwvOc .framer-1gb6yqo > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-ZwvOc .framer-1gb6yqo > :first-child, .framer-ZwvOc .framer-15aldf6 > :first-child, .framer-ZwvOc .framer-1g3kak > :first-child, .framer-ZwvOc .framer-1vq6gyb > :first-child, .framer-ZwvOc .framer-13bsmjy > :first-child, .framer-ZwvOc .framer-3fuhdq > :first-child, .framer-ZwvOc .framer-10fbnqc > :first-child, .framer-ZwvOc .framer-d5blq5 > :first-child, .framer-ZwvOc .framer-pn2ciy > :first-child, .framer-ZwvOc .framer-1k9yb7b > :first-child { margin-top: 0px; } .framer-ZwvOc .framer-1gb6yqo > :last-child, .framer-ZwvOc .framer-15aldf6 > :last-child, .framer-ZwvOc .framer-1g3kak > :last-child, .framer-ZwvOc .framer-1vq6gyb > :last-child, .framer-ZwvOc .framer-13bsmjy > :last-child, .framer-ZwvOc .framer-3fuhdq > :last-child, .framer-ZwvOc .framer-10fbnqc > :last-child, .framer-ZwvOc .framer-d5blq5 > :last-child, .framer-ZwvOc .framer-pn2ciy > :last-child, .framer-ZwvOc .framer-1k9yb7b > :last-child { margin-bottom: 0px; } .framer-ZwvOc .framer-15aldf6 > *, .framer-ZwvOc .framer-13bsmjy > *, .framer-ZwvOc .framer-10fbnqc > *, .framer-ZwvOc .framer-pn2ciy > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-ZwvOc .framer-1g3kak > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-ZwvOc .framer-1vq6gyb > *, .framer-ZwvOc .framer-3fuhdq > *, .framer-ZwvOc .framer-d5blq5 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-ZwvOc .framer-1k9yb7b > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3376\n * @framerIntrinsicWidth 1536\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vzeotzgRi\":{\"layout\":[\"fixed\",\"fixed\"]},\"YpJNps5Q6\":{\"layout\":[\"fixed\",\"auto\"]},\"inHW2t6nB\":{\"layout\":[\"fixed\",\"auto\"]},\"FXFmRUoEu\":{\"layout\":[\"fixed\",\"auto\"]},\"Yu1Cwh3WC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameryhQ3Da7Ze=withCSS(Component,css,\"framer-ZwvOc\");export default FrameryhQ3Da7Ze;FrameryhQ3Da7Ze.displayName=\"Home\";FrameryhQ3Da7Ze.defaultProps={height:3376,width:1536};addFonts(FrameryhQ3Da7Ze,[{explicitInter:true,fonts:[{family:\"Proxima Nova Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/3oqp1Y7dsogsZFBU15B3rOZuc.woff2\"},{family:\"Proxima Nova Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/Ks1NqktMLpAgtXYP9S1oLkSCJQ.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NavBarFonts,...VideoFonts,...BrevoButtonFonts,...Text_Opacity_LettersFonts,...ButtonBouncyButtonFonts,...YouTubeFonts,...SlideshowFonts,...FooterCopyFonts,...CloseButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryhQ3Da7Ze\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"3376\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vzeotzgRi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YpJNps5Q6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"inHW2t6nB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FXFmRUoEu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Yu1Cwh3WC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1536\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "clamp", "t", "s", "e", "sanitize", "isString", "r", "n", "a", "createUnitType", "o", "c", "l", "i", "p", "u", "isColorString", "splitColor", "f", "m", "g", "h", "parseHex", "b", "d", "v", "y", "test", "analyse", "parse", "createTransformer", "convertNumbersToZero", "getAnimatableNone", "O", "j", "applyDefaultFilter", "F", "N", "e", "t", "n", "window", "createRenderStep", "s", "r", "o", "a", "c", "l", "f", "u", "startLoop", "d", "i", "processStep", "processFrame", "clamp", "t", "e", "n", "d", "h", "m", "y", "g", "findSpring", "o", "s", "r", "i", "u", "calcAngularFreq", "l", "p", "f", "approximateRoot", "v", "M", "x", "isSpringType", "getSpringOptions", "spring", "__rest", "zero", "createSpring", "reverseEasing", "t", "e", "mirrorEasing", "createExpoIn", "createBackIn", "createAnticipate", "T", "w", "A", "R", "F", "createExpoIn", "D", "reverseEasing", "j", "mirrorEasing", "circIn", "t", "q", "I", "P", "createBackIn", "T", "k", "E", "B", "createAnticipate", "C", "N", "U", "bounceOut", "e", "w", "A", "R", "z", "identity", "t", "createAttractor", "e", "n", "o", "s", "r", "G", "H", "wrap", "t", "e", "n", "o", "Q", "V", "isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "ref1", "ref2", "key", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "nV54Vr4aT", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap15s7yi3", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "SVG", "css", "FramerNDdL7vqzo", "withCSS", "NDdL7vqzo_default", "addPropertyControls", "ControlType", "addFonts", "BrevoButton", "props", "isLoading", "setIsLoading", "ye", "isSigned", "setIsSigned", "isValid", "setIsValid", "checkValidity", "event", "isValidEmail", "email", "handleSubmit", "te", "formData", "headers", "requestOptions", "response", "error", "Spinner", "p", "motion", "u", "addPropertyControls", "ControlType", "EachCharacter", "char", "start", "end", "progress", "opacityProgress", "useTransform", "easeIn", "p", "motion", "EachWord", "word", "starting", "ending", "characters", "wordLength", "step", "u", "idx", "charStart", "charEnd", "Text_Opacity_Letters", "props", "words", "totalWords", "ref", "pe", "scrollYProgress", "useScroll", "addPropertyControls", "ControlType", "NavBarFonts", "getFonts", "shhoD7Lh2_default", "VideoFonts", "Video", "BrevoButtonFonts", "BrevoButton", "Text_Opacity_LettersFonts", "Text_Opacity_Letters", "ButtonBouncyButtonFonts", "A6Rmp8oPM_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "YouTubeFonts", "Youtube", "SlideshowFonts", "Slideshow", "FooterCopyFonts", "Al1sbBz16_default", "CloseButtonFonts", "NDdL7vqzo_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "transition1", "animation", "animation1", "getContainer", "_document_querySelector", "_ref", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "nV54Vr4aT1wnntms", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "RichText2", "ResolveLinks", "resolvedLinks", "SVG", "l", "getLoadingLazyAtYPosition", "Image2", "AnimatePresence", "Ga", "overlay1", "css", "FrameryhQ3Da7Ze", "withCSS", "yhQ3Da7Ze_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
