{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/VAayEDDq8226SeXyHkzU/N1yZ5RswMNT5MGog7h0D/Counter1.js", "ssg:https://framer.com/m/framer/empty.js@0.1.0", "ssg:https://ga.jspm.io/npm:typewriter-effect@2.19.0/dist/react.js", "ssg:https://framerusercontent.com/modules/vgSbxmWWvbgW6ShllXld/9oZlwlOxsp6zJVFpVkIp/Typewriter.js", "ssg:https://framerusercontent.com/modules/vgSbxmWWvbgW6ShllXld/IkcZ6LdJBUqPPlbnntkz/Typewriter.js", "ssg:https://framerusercontent.com/modules/Kj7xNhfzixFL5WvUyIFb/uNobRpw14gOPT0a6L71g/MyFTGmd0R.js", "ssg:https://framerusercontent.com/modules/TWb3cVhvYX3B9Vt4Tq6M/2zMEWyl9kgUdk44Bzaix/Ad5x5Zm52.js", "ssg:https://framerusercontent.com/modules/THtYU53hcealE4hsr1mA/E9MTxj7t8TLuxQgIg3FV/r7BDCCFR1.js", "ssg:https://framerusercontent.com/modules/9gnLXkFTdwbAioys5wjv/I9YP3kFTrhNyMsJa91qf/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";const CounterStyles={container:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\"}};export function Counter(props){const{start,end,speed,gapSize,prefixText,suffixText,prefixFont,suffixFont,prefixColor,suffixColor,loop,decimalSeparatorType,textSize,selectedFont,textColor,startOnViewport,restartOnViewport,incrementType}=props;const[count,setCount]=useState(start);const[isVisible,setIsVisible]=useState(false);const containerRef=useRef(null);useEffect(()=>{const observer=new IntersectionObserver(entries=>{const entry=entries[0];setIsVisible(entry.isIntersecting);});if(containerRef.current){observer.observe(containerRef.current);}return()=>{if(containerRef.current){observer.unobserve(containerRef.current);}};},[]);useEffect(()=>{const updateCount=()=>{const increment=incrementType===\"integer\"?1:.1;if(count<end){setCount(prevCount=>parseFloat((prevCount+increment).toFixed(1)));}else if(loop){setCount(start);}};if(isVisible||!startOnViewport&&start!==end){const intervalId=setInterval(updateCount,speed);return()=>{clearInterval(intervalId);};}else if(startOnViewport&&isVisible){setCount(start);}},[count,start,end,loop,isVisible,speed,startOnViewport,incrementType]);useEffect(()=>{if(restartOnViewport&&isVisible){setCount(start)// Restart the animation when re-entering the viewport\n;}},[isVisible,restartOnViewport,start]);const formatNumber=number=>{if(decimalSeparatorType===\"comma\"){return number.toLocaleString(\"en-US\");}else if(decimalSeparatorType===\"period\"){return number.toLocaleString(\"en-US\").replace(/,/g,\".\");}else{return number.toFixed(incrementType===\"integer\"?0:1);}};return /*#__PURE__*/_jsxs(motion.div,{ref:containerRef,style:{...CounterStyles.container,gap:`${gapSize}px`,flexDirection:\"row\",alignItems:\"center\",fontSize:`${textSize}px`,fontFamily:selectedFont.fontFamily,fontWeight:selectedFont.fontWeight,color:textColor},children:[/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:prefixFont.fontFamily,fontWeight:prefixFont.fontWeight,color:prefixColor},children:prefixText}),/*#__PURE__*/_jsx(\"span\",{children:formatNumber(count)}),/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:suffixFont.fontFamily,fontWeight:suffixFont.fontWeight,color:suffixColor},children:suffixText})]});}Counter.defaultProps={start:0,end:100,speed:100,prefixText:\"\",suffixText:\"\",loop:false,decimalSeparatorType:\"comma\",textSize:36,selectedFont:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},textColor:\"#D3D3D3\",startOnViewport:false,incrementType:\"integer\"};addPropertyControls(Counter,{startOnViewport:{type:ControlType.Boolean,title:\"Viewport\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},restartOnViewport:{type:ControlType.Boolean,title:\"Replay\",defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\"},selectedFont:{title:\"Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},textSize:{title:\"Font Size\",type:ControlType.Number,min:8,max:240,step:1},textColor:{type:ControlType.Color,title:\"Font Color\"},start:{type:ControlType.Number,title:\"Start Number\",defaultValue:0,displayStepper:true},end:{type:ControlType.Number,title:\"End Number\",defaultValue:10,displayStepper:true},decimalSeparatorType:{type:ControlType.Enum,title:\"Separator\",defaultValue:\"comma\",options:[\"comma\",\"period\",\"none\"],optionTitles:[\"Comma (1,000)\",\"Decimal (1.000)\",\"None\"]},incrementType:{type:ControlType.Enum,title:\"Increment Type\",defaultValue:\"integer\",options:[\"integer\",\"decimal\"],optionTitles:[\"Integer\",\"Decimal\"]},prefixText:{type:ControlType.String,title:\"Prefix\",defaultValue:\"\"},prefixFont:{title:\"Prefix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},prefixColor:{type:ControlType.Color,title:\"Prefix Color\"},suffixText:{type:ControlType.String,title:\"Suffix\",defaultValue:\"\"},suffixFont:{title:\"Suffix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},suffixColor:{type:ControlType.Color,title:\"Suffix Color\"},gapSize:{type:ControlType.Number,title:\"Gap Size\",defaultValue:4,min:0,max:100,step:4},speed:{type:ControlType.Number,title:\"Speed (ms)\",defaultValue:100,min:0,max:2e3,step:10},loop:{type:ControlType.Boolean,title:\"Loop Animation\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\",description:\"[Built by Design Freaks](https://designfreaks.co)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"Counter\":{\"type\":\"reactComponent\",\"name\":\"Counter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter1.map", "export default{};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Empty.map", "import*as t from\"react\";import r from\"process\";var o=\"default\"in t?t.default:t;var h=\"undefined\"!==typeof globalThis?globalThis:\"undefined\"!==typeof self?self:global;var b={};var _=r;!function(t,r){b=r(o)}(\"undefined\"!=typeof self&&self,(t=>(()=>{var r={7403:(t,r,o)=>{o.d(r,{default:()=>F});var b=o(4087),_=o.n(b);const a=function(t){return new RegExp(/<[a-z][\\s\\S]*>/i).test(t)},i=function(t){var r=document.createElement(\"div\");return r.innerHTML=t,r.childNodes},s=function(t,r){return Math.floor(Math.random()*(r-t+1))+t};var m=\"TYPE_CHARACTER\",T=\"REMOVE_CHARACTER\",A=\"REMOVE_ALL\",S=\"REMOVE_LAST_VISIBLE_NODE\",N=\"PAUSE_FOR\",C=\"CALL_FUNCTION\",P=\"ADD_HTML_TAG_ELEMENT\",L=\"CHANGE_DELETE_SPEED\",k=\"CHANGE_DELAY\",D=\"CHANGE_CURSOR\",M=\"PASTE_STRING\",R=\"HTML_TAG\";function g(t,r){var o=Object.keys(t);if(Object.getOwnPropertySymbols){var h=Object.getOwnPropertySymbols(t);r&&(h=h.filter((function(r){return Object.getOwnPropertyDescriptor(t,r).enumerable}))),o.push.apply(o,h)}return o}function w(t){for(var r=1;r<arguments.length;r++){var o=null!=arguments[r]?arguments[r]:{};r%2?g(Object(o),!0).forEach((function(r){O(t,r,o[r])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):g(Object(o)).forEach((function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(o,r))}))}return t}function x(t){return function(t){if(Array.isArray(t))return j(t)}(t)||function(t){if(\"undefined\"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t[\"@@iterator\"])return Array.from(t)}(t)||function(t,r){if(t){if(\"string\"==typeof t)return j(t,r);var o=Object.prototype.toString.call(t).slice(8,-1);return\"Object\"===o&&t.constructor&&(o=t.constructor.name),\"Map\"===o||\"Set\"===o?Array.from(t):\"Arguments\"===o||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(o)?j(t,r):void 0}}(t)||function(){throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}()}function j(t,r){(null==r||r>t.length)&&(r=t.length);for(var o=0,h=new Array(r);o<r;o++)h[o]=t[o];return h}function E(t,r){for(var o=0;o<r.length;o++){var h=r[o];h.enumerable=h.enumerable||!1,h.configurable=!0,\"value\"in h&&(h.writable=!0),Object.defineProperty(t,h.key,h)}}function O(t,r,o){return r in t?Object.defineProperty(t,r,{value:o,enumerable:!0,configurable:!0,writable:!0}):t[r]=o,t}const F=function(){function e(t,r){var o=this||h;if(function(t,r){if(!(t instanceof r))throw new TypeError(\"Cannot call a class as a function\")}(this||h,e),O(this||h,\"state\",{cursorAnimation:null,lastFrameTime:null,pauseUntil:null,eventQueue:[],eventLoop:null,eventLoopPaused:!1,reverseCalledEvents:[],calledEvents:[],visibleNodes:[],initialOptions:null,elements:{container:null,wrapper:document.createElement(\"span\"),cursor:document.createElement(\"span\")}}),O(this||h,\"options\",{strings:null,cursor:\"|\",delay:\"natural\",pauseFor:1500,deleteSpeed:\"natural\",loop:!1,autoStart:!1,devMode:!1,skipAddStyles:!1,wrapperClassName:\"Typewriter__wrapper\",cursorClassName:\"Typewriter__cursor\",stringSplitter:null,onCreateTextNode:null,onRemoveNode:null}),O(this||h,\"setupWrapperElement\",(function(){o.state.elements.container&&(o.state.elements.wrapper.className=o.options.wrapperClassName,o.state.elements.cursor.className=o.options.cursorClassName,o.state.elements.cursor.innerHTML=o.options.cursor,o.state.elements.container.innerHTML=\"\",o.state.elements.container.appendChild(o.state.elements.wrapper),o.state.elements.container.appendChild(o.state.elements.cursor))})),O(this||h,\"start\",(function(){return o.state.eventLoopPaused=!1,o.runEventLoop(),o})),O(this||h,\"pause\",(function(){return o.state.eventLoopPaused=!0,o})),O(this||h,\"stop\",(function(){return o.state.eventLoop&&((0,b.cancel)(o.state.eventLoop),o.state.eventLoop=null),o})),O(this||h,\"pauseFor\",(function(t){return o.addEventToQueue(N,{ms:t}),o})),O(this||h,\"typeOutAllStrings\",(function(){return\"string\"==typeof o.options.strings?(o.typeString(o.options.strings).pauseFor(o.options.pauseFor),o):(o.options.strings.forEach((function(t){o.typeString(t).pauseFor(o.options.pauseFor).deleteAll(o.options.deleteSpeed)})),o)})),O(this||h,\"typeString\",(function(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(a(t))return o.typeOutHTMLString(t,r);if(t){var h=o.options||{},b=h.stringSplitter,_=\"function\"==typeof b?b(t):t.split(\"\");o.typeCharacters(_,r)}return o})),O(this||h,\"pasteString\",(function(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return a(t)?o.typeOutHTMLString(t,r,!0):(t&&o.addEventToQueue(M,{character:t,node:r}),o)})),O(this||h,\"typeOutHTMLString\",(function(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,h=arguments.length>2?arguments[2]:void 0,b=i(t);if(b.length>0)for(var _=0;_<b.length;_++){var m=b[_],T=m.innerHTML;m&&3!==m.nodeType?(m.innerHTML=\"\",o.addEventToQueue(P,{node:m,parentNode:r}),h?o.pasteString(T,m):o.typeString(T,m)):m.textContent&&(h?o.pasteString(m.textContent,r):o.typeString(m.textContent,r))}return o})),O(this||h,\"deleteAll\",(function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"natural\";return o.addEventToQueue(A,{speed:t}),o})),O(this||h,\"changeDeleteSpeed\",(function(t){if(!t)throw new Error(\"Must provide new delete speed\");return o.addEventToQueue(L,{speed:t}),o})),O(this||h,\"changeDelay\",(function(t){if(!t)throw new Error(\"Must provide new delay\");return o.addEventToQueue(k,{delay:t}),o})),O(this||h,\"changeCursor\",(function(t){if(!t)throw new Error(\"Must provide new cursor\");return o.addEventToQueue(D,{cursor:t}),o})),O(this||h,\"deleteChars\",(function(t){if(!t)throw new Error(\"Must provide amount of characters to delete\");for(var r=0;r<t;r++)o.addEventToQueue(T);return o})),O(this||h,\"callFunction\",(function(t,r){if(!t||\"function\"!=typeof t)throw new Error(\"Callbak must be a function\");return o.addEventToQueue(C,{cb:t,thisArg:r}),o})),O(this||h,\"typeCharacters\",(function(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(!t||!Array.isArray(t))throw new Error(\"Characters must be an array\");return t.forEach((function(t){o.addEventToQueue(m,{character:t,node:r})})),o})),O(this||h,\"removeCharacters\",(function(t){if(!t||!Array.isArray(t))throw new Error(\"Characters must be an array\");return t.forEach((function(){o.addEventToQueue(T)})),o})),O(this||h,\"addEventToQueue\",(function(t,r){var h=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return o.addEventToStateProperty(t,r,h,\"eventQueue\")})),O(this||h,\"addReverseCalledEvent\",(function(t,r){var h=arguments.length>2&&void 0!==arguments[2]&&arguments[2],b=o.options.loop;return b?o.addEventToStateProperty(t,r,h,\"reverseCalledEvents\"):o})),O(this||h,\"addEventToStateProperty\",(function(t,r){var h=arguments.length>2&&void 0!==arguments[2]&&arguments[2],b=arguments.length>3?arguments[3]:void 0,_={eventName:t,eventArgs:r||{}};return o.state[b]=h?[_].concat(x(o.state[b])):[].concat(x(o.state[b]),[_]),o})),O(this||h,\"runEventLoop\",(function(){o.state.lastFrameTime||(o.state.lastFrameTime=Date.now());var t=Date.now(),r=t-o.state.lastFrameTime;if(!o.state.eventQueue.length){if(!o.options.loop)return;o.state.eventQueue=x(o.state.calledEvents),o.state.calledEvents=[],o.options=w({},o.state.initialOptions)}if(o.state.eventLoop=_()(o.runEventLoop),!o.state.eventLoopPaused){if(o.state.pauseUntil){if(t<o.state.pauseUntil)return;o.state.pauseUntil=null}var h,b=x(o.state.eventQueue),F=b.shift();if(!(r<=(h=F.eventName===S||F.eventName===T?\"natural\"===o.options.deleteSpeed?s(40,80):o.options.deleteSpeed:\"natural\"===o.options.delay?s(120,160):o.options.delay))){var z=F.eventName,Q=F.eventArgs;switch(o.logInDevMode({currentEvent:F,state:o.state,delay:h}),z){case M:case m:var I=Q.character,U=Q.node,H=document.createTextNode(I),B=H;o.options.onCreateTextNode&&\"function\"==typeof o.options.onCreateTextNode&&(B=o.options.onCreateTextNode(I,H)),B&&(U?U.appendChild(B):o.state.elements.wrapper.appendChild(B)),o.state.visibleNodes=[].concat(x(o.state.visibleNodes),[{type:\"TEXT_NODE\",character:I,node:B}]);break;case T:b.unshift({eventName:S,eventArgs:{removingCharacterNode:!0}});break;case N:var q=F.eventArgs.ms;o.state.pauseUntil=Date.now()+parseInt(q);break;case C:var V=F.eventArgs,W=V.cb,$=V.thisArg;W.call($,{elements:o.state.elements});break;case P:var G=F.eventArgs,Y=G.node,J=G.parentNode;J?J.appendChild(Y):o.state.elements.wrapper.appendChild(Y),o.state.visibleNodes=[].concat(x(o.state.visibleNodes),[{type:R,node:Y,parentNode:J||o.state.elements.wrapper}]);break;case A:var X=o.state.visibleNodes,K=Q.speed,Z=[];K&&Z.push({eventName:L,eventArgs:{speed:K,temp:!0}});for(var ee=0,te=X.length;ee<te;ee++)Z.push({eventName:S,eventArgs:{removingCharacterNode:!1}});K&&Z.push({eventName:L,eventArgs:{speed:o.options.deleteSpeed,temp:!0}}),b.unshift.apply(b,Z);break;case S:var re=F.eventArgs.removingCharacterNode;if(o.state.visibleNodes.length){var ne=o.state.visibleNodes.pop(),oe=ne.type,ae=ne.node,ie=ne.character;o.options.onRemoveNode&&\"function\"==typeof o.options.onRemoveNode&&o.options.onRemoveNode({node:ae,character:ie}),ae&&ae.parentNode.removeChild(ae),oe===R&&re&&b.unshift({eventName:S,eventArgs:{}})}break;case L:o.options.deleteSpeed=F.eventArgs.speed;break;case k:o.options.delay=F.eventArgs.delay;break;case D:o.options.cursor=F.eventArgs.cursor,o.state.elements.cursor.innerHTML=F.eventArgs.cursor}o.options.loop&&(F.eventName===S||F.eventArgs&&F.eventArgs.temp||(o.state.calledEvents=[].concat(x(o.state.calledEvents),[F]))),o.state.eventQueue=b,o.state.lastFrameTime=t}}})),t)if(\"string\"==typeof t){var F=document.querySelector(t);if(!F)throw new Error(\"Could not find container element\");(this||h).state.elements.container=F}else(this||h).state.elements.container=t;r&&((this||h).options=w(w({},(this||h).options),r)),(this||h).state.initialOptions=w({},(this||h).options),this.init()}var t,r;return t=e,(r=[{key:\"init\",value:function(){var t,r;this.setupWrapperElement(),this.addEventToQueue(D,{cursor:(this||h).options.cursor},!0),this.addEventToQueue(A,null,!0),!window||window.___TYPEWRITER_JS_STYLES_ADDED___||(this||h).options.skipAddStyles||(t=\".Typewriter__cursor{-webkit-animation:Typewriter-cursor 1s infinite;animation:Typewriter-cursor 1s infinite;margin-left:1px}@-webkit-keyframes Typewriter-cursor{0%{opacity:0}50%{opacity:1}100%{opacity:0}}@keyframes Typewriter-cursor{0%{opacity:0}50%{opacity:1}100%{opacity:0}}\",(r=document.createElement(\"style\")).appendChild(document.createTextNode(t)),document.head.appendChild(r),window.___TYPEWRITER_JS_STYLES_ADDED___=!0),!0===(this||h).options.autoStart&&(this||h).options.strings&&this.typeOutAllStrings().start()}},{key:\"logInDevMode\",value:function(t){(this||h).options.devMode&&console.log(t)}}])&&E(t.prototype,r),Object.defineProperty(t,\"prototype\",{writable:!1}),e}()},8552:(t,r,o)=>{var h=o(852)(o(5639),\"DataView\");t.exports=h},1989:(t,r,o)=>{var h=o(1789),b=o(401),_=o(7667),m=o(1327),T=o(1866);function u(t){var r=-1,o=null==t?0:t.length;for(this.clear();++r<o;){var h=t[r];this.set(h[0],h[1])}}u.prototype.clear=h,u.prototype.delete=b,u.prototype.get=_,u.prototype.has=m,u.prototype.set=T,t.exports=u},8407:(t,r,o)=>{var h=o(7040),b=o(4125),_=o(2117),m=o(7518),T=o(4705);function u(t){var r=-1,o=null==t?0:t.length;for(this.clear();++r<o;){var h=t[r];this.set(h[0],h[1])}}u.prototype.clear=h,u.prototype.delete=b,u.prototype.get=_,u.prototype.has=m,u.prototype.set=T,t.exports=u},7071:(t,r,o)=>{var h=o(852)(o(5639),\"Map\");t.exports=h},3369:(t,r,o)=>{var h=o(4785),b=o(1285),_=o(6e3),m=o(9916),T=o(5265);function u(t){var r=-1,o=null==t?0:t.length;for(this.clear();++r<o;){var h=t[r];this.set(h[0],h[1])}}u.prototype.clear=h,u.prototype.delete=b,u.prototype.get=_,u.prototype.has=m,u.prototype.set=T,t.exports=u},3818:(t,r,o)=>{var h=o(852)(o(5639),\"Promise\");t.exports=h},8525:(t,r,o)=>{var h=o(852)(o(5639),\"Set\");t.exports=h},8668:(t,r,o)=>{var b=o(3369),_=o(619),m=o(2385);function i(t){var r=-1,o=null==t?0:t.length;for((this||h).__data__=new b;++r<o;)this.add(t[r])}i.prototype.add=i.prototype.push=_,i.prototype.has=m,t.exports=i},6384:(t,r,o)=>{var b=o(8407),_=o(7465),m=o(3779),T=o(7599),A=o(4758),S=o(4309);function c(t){var r=(this||h).__data__=new b(t);(this||h).size=r.size}c.prototype.clear=_,c.prototype.delete=m,c.prototype.get=T,c.prototype.has=A,c.prototype.set=S,t.exports=c},2705:(t,r,o)=>{var h=o(5639).Symbol;t.exports=h},1149:(t,r,o)=>{var h=o(5639).Uint8Array;t.exports=h},577:(t,r,o)=>{var h=o(852)(o(5639),\"WeakMap\");t.exports=h},4963:t=>{t.exports=function(t,r){for(var o=-1,h=null==t?0:t.length,b=0,_=[];++o<h;){var m=t[o];r(m,o,t)&&(_[b++]=m)}return _}},4636:(t,r,o)=>{var h=o(2545),b=o(5694),_=o(1469),m=o(4144),T=o(5776),A=o(6719),S=Object.prototype.hasOwnProperty;t.exports=function(t,r){var o=_(t),N=!o&&b(t),C=!o&&!N&&m(t),P=!o&&!N&&!C&&A(t),L=o||N||C||P,k=L?h(t.length,String):[],D=k.length;for(var M in t)!r&&!S.call(t,M)||L&&(\"length\"==M||C&&(\"offset\"==M||\"parent\"==M)||P&&(\"buffer\"==M||\"byteLength\"==M||\"byteOffset\"==M)||T(M,D))||k.push(M);return k}},2488:t=>{t.exports=function(t,r){for(var o=-1,h=r.length,b=t.length;++o<h;)t[b+o]=r[o];return t}},2908:t=>{t.exports=function(t,r){for(var o=-1,h=null==t?0:t.length;++o<h;)if(r(t[o],o,t))return!0;return!1}},8470:(t,r,o)=>{var h=o(7813);t.exports=function(t,r){for(var o=t.length;o--;)if(h(t[o][0],r))return o;return-1}},8866:(t,r,o)=>{var h=o(2488),b=o(1469);t.exports=function(t,r,o){var _=r(t);return b(t)?_:h(_,o(t))}},4239:(t,r,o)=>{var h=o(2705),b=o(9607),_=o(2333),m=h?h.toStringTag:void 0;t.exports=function(t){return null==t?void 0===t?\"[object Undefined]\":\"[object Null]\":m&&m in Object(t)?b(t):_(t)}},9454:(t,r,o)=>{var h=o(4239),b=o(7005);t.exports=function(t){return b(t)&&\"[object Arguments]\"==h(t)}},939:(t,r,o)=>{var h=o(2492),b=o(7005);t.exports=function e(t,r,o,_,m){return t===r||(null==t||null==r||!b(t)&&!b(r)?t!=t&&r!=r:h(t,r,o,_,e,m))}},2492:(t,r,o)=>{var h=o(6384),b=o(7114),_=o(8351),m=o(6096),T=o(4160),A=o(1469),S=o(4144),N=o(6719),C=\"[object Arguments]\",P=\"[object Array]\",L=\"[object Object]\",k=Object.prototype.hasOwnProperty;t.exports=function(t,r,o,D,M,R){var F=A(t),z=A(r),Q=F?P:T(t),I=z?P:T(r),U=(Q=Q==C?L:Q)==L,H=(I=I==C?L:I)==L,B=Q==I;if(B&&S(t)){if(!S(r))return!1;F=!0,U=!1}if(B&&!U)return R||(R=new h),F||N(t)?b(t,r,o,D,M,R):_(t,r,Q,o,D,M,R);if(!(1&o)){var q=U&&k.call(t,\"__wrapped__\"),V=H&&k.call(r,\"__wrapped__\");if(q||V){var W=q?t.value():t,$=V?r.value():r;return R||(R=new h),M(W,$,o,D,R)}}return!!B&&(R||(R=new h),m(t,r,o,D,M,R))}},8458:(t,r,o)=>{var h=o(3560),b=o(5346),_=o(3218),m=o(346),T=/^\\[object .+?Constructor\\]$/,A=Function.prototype,S=Object.prototype,N=A.toString,C=S.hasOwnProperty,P=RegExp(\"^\"+N.call(C).replace(/[\\\\^$.*+?()[\\]{}|]/g,\"\\\\$&\").replace(/hasOwnProperty|(function).*?(?=\\\\\\()| for .+?(?=\\\\\\])/g,\"$1.*?\")+\"$\");t.exports=function(t){return!(!_(t)||b(t))&&(h(t)?P:T).test(m(t))}},8749:(t,r,o)=>{var h=o(4239),b=o(1780),_=o(7005),m={};m[\"[object Float32Array]\"]=m[\"[object Float64Array]\"]=m[\"[object Int8Array]\"]=m[\"[object Int16Array]\"]=m[\"[object Int32Array]\"]=m[\"[object Uint8Array]\"]=m[\"[object Uint8ClampedArray]\"]=m[\"[object Uint16Array]\"]=m[\"[object Uint32Array]\"]=!0,m[\"[object Arguments]\"]=m[\"[object Array]\"]=m[\"[object ArrayBuffer]\"]=m[\"[object Boolean]\"]=m[\"[object DataView]\"]=m[\"[object Date]\"]=m[\"[object Error]\"]=m[\"[object Function]\"]=m[\"[object Map]\"]=m[\"[object Number]\"]=m[\"[object Object]\"]=m[\"[object RegExp]\"]=m[\"[object Set]\"]=m[\"[object String]\"]=m[\"[object WeakMap]\"]=!1,t.exports=function(t){return _(t)&&b(t.length)&&!!m[h(t)]}},280:(t,r,o)=>{var h=o(5726),b=o(6916),_=Object.prototype.hasOwnProperty;t.exports=function(t){if(!h(t))return b(t);var r=[];for(var o in Object(t))_.call(t,o)&&\"constructor\"!=o&&r.push(o);return r}},2545:t=>{t.exports=function(t,r){for(var o=-1,h=Array(t);++o<t;)h[o]=r(o);return h}},1717:t=>{t.exports=function(t){return function(r){return t(r)}}},4757:t=>{t.exports=function(t,r){return t.has(r)}},4429:(t,r,o)=>{var h=o(5639)[\"__core-js_shared__\"];t.exports=h},7114:(t,r,o)=>{var h=o(8668),b=o(2908),_=o(4757);t.exports=function(t,r,o,m,T,A){var S=1&o,N=t.length,C=r.length;if(N!=C&&!(S&&C>N))return!1;var P=A.get(t),L=A.get(r);if(P&&L)return P==r&&L==t;var k=-1,D=!0,M=2&o?new h:void 0;for(A.set(t,r),A.set(r,t);++k<N;){var R=t[k],F=r[k];if(m)var z=S?m(F,R,k,r,t,A):m(R,F,k,t,r,A);if(void 0!==z){if(z)continue;D=!1;break}if(M){if(!b(r,(function(t,r){if(!_(M,r)&&(R===t||T(R,t,o,m,A)))return M.push(r)}))){D=!1;break}}else if(R!==F&&!T(R,F,o,m,A)){D=!1;break}}return A.delete(t),A.delete(r),D}},8351:(t,r,o)=>{var h=o(2705),b=o(1149),_=o(7813),m=o(7114),T=o(8776),A=o(1814),S=h?h.prototype:void 0,N=S?S.valueOf:void 0;t.exports=function(t,r,o,h,S,C,P){switch(o){case\"[object DataView]\":if(t.byteLength!=r.byteLength||t.byteOffset!=r.byteOffset)return!1;t=t.buffer,r=r.buffer;case\"[object ArrayBuffer]\":return!(t.byteLength!=r.byteLength||!C(new b(t),new b(r)));case\"[object Boolean]\":case\"[object Date]\":case\"[object Number]\":return _(+t,+r);case\"[object Error]\":return t.name==r.name&&t.message==r.message;case\"[object RegExp]\":case\"[object String]\":return t==r+\"\";case\"[object Map]\":var L=T;case\"[object Set]\":var k=1&h;if(L||(L=A),t.size!=r.size&&!k)return!1;var D=P.get(t);if(D)return D==r;h|=2,P.set(t,r);var M=m(L(t),L(r),h,S,C,P);return P.delete(t),M;case\"[object Symbol]\":if(N)return N.call(t)==N.call(r)}return!1}},6096:(t,r,o)=>{var h=o(8234),b=Object.prototype.hasOwnProperty;t.exports=function(t,r,o,_,m,T){var A=1&o,S=h(t),N=S.length;if(N!=h(r).length&&!A)return!1;for(var C=N;C--;){var P=S[C];if(!(A?P in r:b.call(r,P)))return!1}var L=T.get(t),k=T.get(r);if(L&&k)return L==r&&k==t;var D=!0;T.set(t,r),T.set(r,t);for(var M=A;++C<N;){var R=t[P=S[C]],F=r[P];if(_)var z=A?_(F,R,P,r,t,T):_(R,F,P,t,r,T);if(!(void 0===z?R===F||m(R,F,o,_,T):z)){D=!1;break}M||(M=\"constructor\"==P)}if(D&&!M){var Q=t.constructor,I=r.constructor;Q==I||!(\"constructor\"in t)||!(\"constructor\"in r)||\"function\"==typeof Q&&Q instanceof Q&&\"function\"==typeof I&&I instanceof I||(D=!1)}return T.delete(t),T.delete(r),D}},1957:(t,r,o)=>{var h=\"object\"==typeof o.g&&o.g&&o.g.Object===Object&&o.g;t.exports=h},8234:(t,r,o)=>{var h=o(8866),b=o(9551),_=o(3674);t.exports=function(t){return h(t,_,b)}},5050:(t,r,o)=>{var h=o(7019);t.exports=function(t,r){var o=t.__data__;return h(r)?o[\"string\"==typeof r?\"string\":\"hash\"]:o.map}},852:(t,r,o)=>{var h=o(8458),b=o(7801);t.exports=function(t,r){var o=b(t,r);return h(o)?o:void 0}},9607:(t,r,o)=>{var h=o(2705),b=Object.prototype,_=b.hasOwnProperty,m=b.toString,T=h?h.toStringTag:void 0;t.exports=function(t){var r=_.call(t,T),o=t[T];try{t[T]=void 0;var h=!0}catch(t){}var b=m.call(t);return h&&(r?t[T]=o:delete t[T]),b}},9551:(t,r,o)=>{var h=o(4963),b=o(479),_=Object.prototype.propertyIsEnumerable,m=Object.getOwnPropertySymbols,T=m?function(t){return null==t?[]:(t=Object(t),h(m(t),(function(r){return _.call(t,r)})))}:b;t.exports=T},4160:(t,r,o)=>{var h=o(8552),b=o(7071),_=o(3818),m=o(8525),T=o(577),A=o(4239),S=o(346),N=\"[object Map]\",C=\"[object Promise]\",P=\"[object Set]\",L=\"[object WeakMap]\",k=\"[object DataView]\",D=S(h),M=S(b),R=S(_),F=S(m),z=S(T),Q=A;(h&&Q(new h(new ArrayBuffer(1)))!=k||b&&Q(new b)!=N||_&&Q(_.resolve())!=C||m&&Q(new m)!=P||T&&Q(new T)!=L)&&(Q=function(t){var r=A(t),o=\"[object Object]\"==r?t.constructor:void 0,h=o?S(o):\"\";if(h)switch(h){case D:return k;case M:return N;case R:return C;case F:return P;case z:return L}return r}),t.exports=Q},7801:t=>{t.exports=function(t,r){return null==t?void 0:t[r]}},1789:(t,r,o)=>{var b=o(4536);t.exports=function(){(this||h).__data__=b?b(null):{},(this||h).size=0}},401:t=>{t.exports=function(t){var r=this.has(t)&&delete(this||h).__data__[t];return(this||h).size-=r?1:0,r}},7667:(t,r,o)=>{var b=o(4536),_=Object.prototype.hasOwnProperty;t.exports=function(t){var r=(this||h).__data__;if(b){var o=r[t];return\"__lodash_hash_undefined__\"===o?void 0:o}return _.call(r,t)?r[t]:void 0}},1327:(t,r,o)=>{var b=o(4536),_=Object.prototype.hasOwnProperty;t.exports=function(t){var r=(this||h).__data__;return b?void 0!==r[t]:_.call(r,t)}},1866:(t,r,o)=>{var b=o(4536);t.exports=function(t,r){var o=(this||h).__data__;return(this||h).size+=this.has(t)?0:1,o[t]=b&&void 0===r?\"__lodash_hash_undefined__\":r,this||h}},5776:t=>{var r=/^(?:0|[1-9]\\d*)$/;t.exports=function(t,o){var h=typeof t;return!!(o=null==o?9007199254740991:o)&&(\"number\"==h||\"symbol\"!=h&&r.test(t))&&t>-1&&t%1==0&&t<o}},7019:t=>{t.exports=function(t){var r=typeof t;return\"string\"==r||\"number\"==r||\"symbol\"==r||\"boolean\"==r?\"__proto__\"!==t:null===t}},5346:(t,r,o)=>{var h,b=o(4429),_=(h=/[^.]+$/.exec(b&&b.keys&&b.keys.IE_PROTO||\"\"))?\"Symbol(src)_1.\"+h:\"\";t.exports=function(t){return!!_&&_ in t}},5726:t=>{var r=Object.prototype;t.exports=function(t){var o=t&&t.constructor;return t===(\"function\"==typeof o&&o.prototype||r)}},7040:t=>{t.exports=function(){(this||h).__data__=[],(this||h).size=0}},4125:(t,r,o)=>{var b=o(8470),_=Array.prototype.splice;t.exports=function(t){var r=(this||h).__data__,o=b(r,t);return!(o<0||(o==r.length-1?r.pop():_.call(r,o,1),--(this||h).size,0))}},2117:(t,r,o)=>{var b=o(8470);t.exports=function(t){var r=(this||h).__data__,o=b(r,t);return o<0?void 0:r[o][1]}},7518:(t,r,o)=>{var b=o(8470);t.exports=function(t){return b((this||h).__data__,t)>-1}},4705:(t,r,o)=>{var b=o(8470);t.exports=function(t,r){var o=(this||h).__data__,_=b(o,t);return _<0?(++(this||h).size,o.push([t,r])):o[_][1]=r,this||h}},4785:(t,r,o)=>{var b=o(1989),_=o(8407),m=o(7071);t.exports=function(){(this||h).size=0,(this||h).__data__={hash:new b,map:new(m||_),string:new b}}},1285:(t,r,o)=>{var b=o(5050);t.exports=function(t){var r=b(this||h,t).delete(t);return(this||h).size-=r?1:0,r}},6e3:(t,r,o)=>{var b=o(5050);t.exports=function(t){return b(this||h,t).get(t)}},9916:(t,r,o)=>{var b=o(5050);t.exports=function(t){return b(this||h,t).has(t)}},5265:(t,r,o)=>{var b=o(5050);t.exports=function(t,r){var o=b(this||h,t),_=o.size;return o.set(t,r),(this||h).size+=o.size==_?0:1,this||h}},8776:t=>{t.exports=function(t){var r=-1,o=Array(t.size);return t.forEach((function(t,h){o[++r]=[h,t]})),o}},4536:(t,r,o)=>{var h=o(852)(Object,\"create\");t.exports=h},6916:(t,r,o)=>{var h=o(5569)(Object.keys,Object);t.exports=h},1167:(t,r,o)=>{t=o.nmd(t);var h=o(1957),b=r&&!r.nodeType&&r,_=b&&t&&!t.nodeType&&t,m=_&&_.exports===b&&h.process,T=function(){try{return _&&_.require&&_.require(\"util\").types||m&&m.binding&&m.binding(\"util\")}catch(t){}}();t.exports=T},2333:t=>{var r=Object.prototype.toString;t.exports=function(t){return r.call(t)}},5569:t=>{t.exports=function(t,r){return function(o){return t(r(o))}}},5639:(t,r,o)=>{var h=o(1957),b=\"object\"==typeof self&&self&&self.Object===Object&&self,_=h||b||Function(\"return this\")();t.exports=_},619:t=>{t.exports=function(t){return(this||h).__data__.set(t,\"__lodash_hash_undefined__\"),this||h}},2385:t=>{t.exports=function(t){return(this||h).__data__.has(t)}},1814:t=>{t.exports=function(t){var r=-1,o=Array(t.size);return t.forEach((function(t){o[++r]=t})),o}},7465:(t,r,o)=>{var b=o(8407);t.exports=function(){(this||h).__data__=new b,(this||h).size=0}},3779:t=>{t.exports=function(t){var r=(this||h).__data__,o=r.delete(t);return(this||h).size=r.size,o}},7599:t=>{t.exports=function(t){return(this||h).__data__.get(t)}},4758:t=>{t.exports=function(t){return(this||h).__data__.has(t)}},4309:(t,r,o)=>{var b=o(8407),_=o(7071),m=o(3369);t.exports=function(t,r){var o=(this||h).__data__;if(o instanceof b){var T=o.__data__;if(!_||T.length<199)return T.push([t,r]),(this||h).size=++o.size,this||h;o=(this||h).__data__=new m(T)}return o.set(t,r),(this||h).size=o.size,this||h}},346:t=>{var r=Function.prototype.toString;t.exports=function(t){if(null!=t){try{return r.call(t)}catch(t){}try{return t+\"\"}catch(t){}}return\"\"}},7813:t=>{t.exports=function(t,r){return t===r||t!=t&&r!=r}},5694:(t,r,o)=>{var h=o(9454),b=o(7005),_=Object.prototype,m=_.hasOwnProperty,T=_.propertyIsEnumerable,A=h(function(){return arguments}())?h:function(t){return b(t)&&m.call(t,\"callee\")&&!T.call(t,\"callee\")};t.exports=A},1469:t=>{var r=Array.isArray;t.exports=r},8612:(t,r,o)=>{var h=o(3560),b=o(1780);t.exports=function(t){return null!=t&&b(t.length)&&!h(t)}},4144:(t,r,o)=>{t=o.nmd(t);var h=o(5639),b=o(5062),_=r&&!r.nodeType&&r,m=_&&t&&!t.nodeType&&t,T=m&&m.exports===_?h.Buffer:void 0,A=(T?T.isBuffer:void 0)||b;t.exports=A},8446:(t,r,o)=>{var h=o(939);t.exports=function(t,r){return h(t,r)}},3560:(t,r,o)=>{var h=o(4239),b=o(3218);t.exports=function(t){if(!b(t))return!1;var r=h(t);return\"[object Function]\"==r||\"[object GeneratorFunction]\"==r||\"[object AsyncFunction]\"==r||\"[object Proxy]\"==r}},1780:t=>{t.exports=function(t){return\"number\"==typeof t&&t>-1&&t%1==0&&t<=9007199254740991}},3218:t=>{t.exports=function(t){var r=typeof t;return null!=t&&(\"object\"==r||\"function\"==r)}},7005:t=>{t.exports=function(t){return null!=t&&\"object\"==typeof t}},6719:(t,r,o)=>{var h=o(8749),b=o(1717),_=o(1167),m=_&&_.isTypedArray,T=m?b(m):h;t.exports=T},3674:(t,r,o)=>{var h=o(4636),b=o(280),_=o(8612);t.exports=function(t){return _(t)?h(t):b(t)}},479:t=>{t.exports=function(){return[]}},5062:t=>{t.exports=function(){return!1}},75:function(t){(function(){var r,o,h,b,m,T;\"undefined\"!=typeof performance&&null!==performance&&performance.now?t.exports=function(){return performance.now()}:\"undefined\"!=typeof _&&null!==_&&_.hrtime?(t.exports=function(){return(r()-m)/1e6},o=_.hrtime,b=(r=function(){var t;return 1e9*(t=o())[0]+t[1]})(),T=1e9*_.uptime(),m=b-T):Date.now?(t.exports=function(){return Date.now()-h},h=Date.now()):(t.exports=function(){return(new Date).getTime()-h},h=(new Date).getTime())}).call(this||h)},4087:(t,r,o)=>{for(var h=o(75),b=\"undefined\"==typeof window?o.g:window,_=[\"moz\",\"webkit\"],m=\"AnimationFrame\",T=b[\"request\"+m],A=b[\"cancel\"+m]||b[\"cancelRequest\"+m],S=0;!T&&S<_.length;S++)T=b[_[S]+\"Request\"+m],A=b[_[S]+\"Cancel\"+m]||b[_[S]+\"CancelRequest\"+m];if(!T||!A){var N=0,C=0,P=[];T=function(t){if(0===P.length){var r=h(),o=Math.max(0,16.666666666666668-(r-N));N=o+r,setTimeout((function(){var t=P.slice(0);P.length=0;for(var r=0;r<t.length;r++)if(!t[r].cancelled)try{t[r].callback(N)}catch(t){setTimeout((function(){throw t}),0)}}),Math.round(o))}return P.push({handle:++C,callback:t,cancelled:!1}),C},A=function(t){for(var r=0;r<P.length;r++)P[r].handle===t&&(P[r].cancelled=!0)}}t.exports=function(t){return T.call(b,t)},t.exports.cancel=function(){A.apply(b,arguments)},t.exports.polyfill=function(t){t||(t=b),t.requestAnimationFrame=T,t.cancelAnimationFrame=A}},8156:r=>{r.exports=t}},o={};function n(t){var h=o[t];if(void 0!==h)return h.exports;var b=o[t]={id:t,loaded:!1,exports:{}};return r[t].call(b.exports,b,b.exports,n),b.loaded=!0,b.exports}n.n=t=>{var r=t&&t.__esModule?()=>t.default:()=>t;return n.d(r,{a:r}),r},n.d=(t,r)=>{for(var o in r)n.o(r,o)&&!n.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:r[o]})},n.g=function(){if(\"object\"==typeof globalThis)return globalThis;try{return this||h||new Function(\"return this\")()}catch(t){if(\"object\"==typeof window)return window}}(),n.o=(t,r)=>Object.prototype.hasOwnProperty.call(t,r),n.nmd=t=>(t.paths=[],t.children||(t.children=[]),t);var b={};return(()=>{n.d(b,{default:()=>A});var t=n(8156),r=n.n(t),o=n(7403),_=n(8446),m=n.n(_);function s(t){return s=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&\"function\"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?\"symbol\":typeof t},s(t)}function u(t,r){if(!(t instanceof r))throw new TypeError(\"Cannot call a class as a function\")}function c(t,r){for(var o=0;o<r.length;o++){var h=r[o];h.enumerable=h.enumerable||!1,h.configurable=!0,\"value\"in h&&(h.writable=!0),Object.defineProperty(t,h.key,h)}}function p(t,r){return p=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,r){return t.__proto__=r,t},p(t,r)}function l(t,r){if(r&&(\"object\"===s(r)||\"function\"==typeof r))return r;if(void 0!==r)throw new TypeError(\"Derived constructors may only return object or undefined\");return f(t)}function f(t){if(void 0===t)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return t}function v(t){return v=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},v(t)}function d(t,r,o){return r in t?Object.defineProperty(t,r,{value:o,enumerable:!0,configurable:!0,writable:!0}):t[r]=o,t}var T=function(t){!function(t,r){if(\"function\"!=typeof r&&null!==r)throw new TypeError(\"Super expression must either be null or a function\");t.prototype=Object.create(r&&r.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,\"prototype\",{writable:!1}),r&&p(t,r)}(y,t);var b,_,T,A,S=(T=y,A=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,r=v(T);if(A){var o=v(this||h).constructor;t=Reflect.construct(r,arguments,o)}else t=r.apply(this||h,arguments);return l(this||h,t)});function y(){var t;u(this||h,y);for(var r=arguments.length,o=new Array(r),b=0;b<r;b++)o[b]=arguments[b];return d(f(t=S.call.apply(S,[this||h].concat(o))),\"state\",{instance:null}),t}return b=y,(_=[{key:\"componentDidMount\",value:function(){var t=this||h,r=new o.default((this||h).typewriter,(this||h).props.options);this.setState({instance:r},(function(){var o=t.props.onInit;o&&o(r)}))}},{key:\"componentDidUpdate\",value:function(t){m()((this||h).props.options,t.options)||this.setState({instance:new o.default((this||h).typewriter,(this||h).props.options)})}},{key:\"componentWillUnmount\",value:function(){(this||h).state.instance&&(this||h).state.instance.stop()}},{key:\"render\",value:function(){var t=this||h,o=(this||h).props.component;return r().createElement(o,{ref:function(r){return t.typewriter=r},className:\"Typewriter\",\"data-testid\":\"typewriter-wrapper\"})}}])&&c(b.prototype,_),Object.defineProperty(b,\"prototype\",{writable:!1}),y}(t.Component);T.defaultProps={component:\"div\"};const A=T})(),b.default})()));var m=b;const T=b.Typewriter;export{T as Typewriter,m as default};\n\n//# sourceMappingURL=react.js.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import Typewriter from\"typewriter-effect\";const headingStyles=props=>{return{width:\"100%\",height:\"100%\",// display: \"flex\",\n// placeContent: \"center\",\n// placeItems: \"center\",\nposition:\"relative\",overflow:\"visible\",fontSize:props.font.fontSize,fontFamily:props.font.fontFamily||\"Inter\",fontWeight:props.font.fontWeight,letterSpacing:props.font.letterSpacing,lineHeight:props.font.lineHeightType?props.font.lineHeight:`${props.font.lineHeightPixels}px`,textAlign:props.font.textAlign,whiteSpace:props.font.whiteSpace,color:props.color,left:`${props.font.offset}%`,margin:0,padding:0};};/**\n * Typewriter\n * By Benjamin den Boer\n * @benjaminnathan\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function TypeWriter(props){const isCanvas=RenderTarget.current()===RenderTarget.canvas;const strings=props.text.split(\" \");const content=props.split?strings:props.text;const canvasContent=props.split?strings[0]:props.text;/* Semantics */ const tagMap={paragraph:\"p\",heading1:\"h1\",heading2:\"h2\",heading3:\"h3\"};const Tag=tagMap[props.tag];const cursorStyles=`.${props.id} .Typewriter__cursor { color: ${props.cursorColor}; }`;const TypeWriterPure=()=>/*#__PURE__*/ _jsx(Typewriter,{options:{strings:content,autoStart:props.autoStart,loop:props.loop,cursor:props.cursor,pauseFor:props.pauseFor*1e3,delay:props.delayType?\"natural\":props.delayNumber*1e3},onInit:typewriter=>{typewriter.callFunction(state=>{if(props.loop)return;// Remove caret on end\n    if(!props.caretVisibility){state.elements.cursor.style.display=\"none\";}});}});const TypeWriterWithCSS=withCSS(()=>/*#__PURE__*/ _jsx(\"span\",{style:{display:\"contents\"},className:`${props.id}`,children:/*#__PURE__*/ _jsx(TypeWriterPure,{})}),cursorStyles);return /*#__PURE__*/ _jsx(Tag,{style:headingStyles(props),children:isCanvas?canvasContent:/*#__PURE__*/ _jsx(TypeWriterWithCSS,{})});};TypeWriter.displayName=\"Typewriter\";TypeWriter.defaultProps={text:\"Hello World\",font:{fontFamily:\"Inter\",fontSize:32,fontWeight:600,textAlign:\"center\",lineHeight:1.2,lineHeightType:true,lineHeightPixels:100,letterSpacing:0,offset:0,whiteSpace:\"nowrap\"},cursor:\"|\",delayType:true,delayNumber:.2,pauseFor:1,loop:true,caretVisibility:true,split:false,autoStart:true,tag:\"heading1\",color:\"#888\",cursorColor:\"rgba(136, 136, 136, 0.5)\"};/* Property Controls */ addPropertyControls(TypeWriter,{tag:{title:\"Tag\",type:ControlType.Enum,options:[\"heading1\",\"heading2\",\"heading3\",\"paragraph\"],optionTitles:[\"H1\",\"H2\",\"H3\",\"P\"],defaultValue:TypeWriter.defaultProps.tag,displaySegmentedControl:true},text:{type:ControlType.String,title:\"Text\",defaultValue:TypeWriter.defaultProps.text},autoStart:{title:\"Autoplay\",type:ControlType.Boolean,defaultValue:TypeWriter.defaultProps.autoStart},split:{title:\"Per Word\",type:ControlType.Boolean,defaultValue:TypeWriter.defaultProps.split},loop:{title:\"Loop\",type:ControlType.Boolean,defaultValue:TypeWriter.defaultProps.loop},caretVisibility:{title:\"Caret\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:TypeWriter.defaultProps.caretVisibility,hidden:props=>props.loop},delayType:{title:\"Delay\",type:ControlType.Boolean,enabledTitle:\"Natural\",disabledTitle:\"Number\",defaultValue:TypeWriter.defaultProps.delayType},delayNumber:{title:\"Delay\",type:ControlType.Number,step:.1,min:0,defaultValue:TypeWriter.defaultProps.delayNumber,displayStepper:true,hidden:props=>props.delayType},pauseFor:{title:\"Pause\",type:ControlType.Number,min:0,defaultValue:TypeWriter.defaultProps.pauseFor,displayStepper:true},color:{type:ControlType.Color,defaultValue:TypeWriter.defaultProps.color},font:{type:ControlType.Object,controls:{fontFamily:{title:\"Font\",type:ControlType.String,placeholder:\"Inter\",defaultValue:TypeWriter.defaultProps.font.fontFamily},fontSize:{title:\"Size\",type:ControlType.Number,min:0,max:500,step:.5,defaultValue:TypeWriter.defaultProps.font.fontSize},fontWeight:{type:ControlType.Enum,options:[100,200,300,400,500,600,700,800,900],defaultValue:TypeWriter.defaultProps.font.fontWeight,title:\"Weight\"},textAlign:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Align\",options:[\"left\",\"center\",\"right\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:TypeWriter.defaultProps.font.textAlign},letterSpacing:{title:\"Letter\",type:ControlType.Number,defaultValue:TypeWriter.defaultProps.font.letterSpacing,step:.1,displayStepper:true},offset:{type:ControlType.Number,title:\"Offset\",min:-100,max:100,displayStepper:true,step:.25,defaultValue:TypeWriter.defaultProps.font.offset,unit:\"%\"},whiteSpace:{type:ControlType.Enum,title:\"Space\",options:[\"normal\",\"nowrap\",\"pre\",\"pre-wrap\",\"preline\",\"break-spaces\",],optionTitles:[\"Normal\",\"No Wrap\",\"Pre\",\"Pre Wrap\",\"Preline\",\"Break Spaces\",],defaultValue:TypeWriter.defaultProps.font.whiteSpace},lineHeight:{type:ControlType.Number,title:\"Line\",min:-500,max:500,displayStepper:true,step:.1,defaultValue:TypeWriter.defaultProps.font.lineHeight,hidden:props=>!props.lineHeightType},lineHeightPixels:{type:ControlType.Number,title:\"Line\",min:-500,max:500,displayStepper:true,step:.1,defaultValue:TypeWriter.defaultProps.font.lineHeightPixels,hidden:props=>props.lineHeightType},lineHeightType:{type:ControlType.Boolean,title:\" \",enabledTitle:\"em\",disabledTitle:\"px\",defaultValue:TypeWriter.defaultProps.font.lineHeightType}}},cursor:{title:\"Cursor\",type:ControlType.String,defaultValue:TypeWriter.defaultProps.cursor,placeholder:\"Character\"},cursorColor:{type:ControlType.Color,title:\" \",defaultValue:TypeWriter.defaultProps.cursorColor}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TypeWriter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Typewriter.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import Typewriter from\"typewriter-effect\";const headingStyles=props=>{return{width:\"100%\",height:\"100%\",position:\"relative\",overflow:\"visible\",fontSize:props.font.fontSize,fontFamily:props.font.fontFamily||\"Inter\",fontWeight:props.font.fontWeight,letterSpacing:props.font.letterSpacing,lineHeight:props.font.lineHeightType?props.font.lineHeight:`${props.font.lineHeightPixels}px`,textAlign:props.font.textAlign,whiteSpace:props.font.whiteSpace,color:props.color,left:`${props.font.offset}%`,margin:0,padding:0};};/**\n * Typewriter\n * By Benjamin den Boer\n * @benjaminnathan\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function TypeWriter(props){const isCanvas=RenderTarget.current()===RenderTarget.canvas;const isPreview=RenderTarget.current()===RenderTarget.preview;const strings=props.text.split(\" \");const content=props.split?strings:props.text;const canvasContent=props.split?strings[0]:props.text;/* Semantics */const tagMap={paragraph:\"p\",heading1:\"h1\",heading2:\"h2\",heading3:\"h3\"};const Tag=tagMap[props.tag];const cursorStyles=`.${props.id} .Typewriter { font-size: ${props.font.fontSize}px; font-weight: ${props.font.fontWeight}; margin: 0; padding: 0; } .${props.id} .Typewriter__cursor { color: ${props.cursorColor} !important; }`;const TypeWriterPure=()=>/*#__PURE__*/_jsx(\"span\",{style:headingStyles(props),children:/*#__PURE__*/_jsx(Typewriter,{options:{strings:content,autoStart:props.autoStart,loop:props.loop,cursor:props.cursor,pauseFor:props.pauseFor*1e3,delay:props.delayType?\"natural\":props.delayNumber*1e3},component:isPreview?\"span\":Tag,onInit:typewriter=>{typewriter.callFunction(state=>{if(props.loop)return;// Remove caret on end\n    if(!props.caretVisibility){state.elements.cursor.style.display=\"none\";}});}})});const TypeWriterWithCSS=withCSS(()=>/*#__PURE__*/_jsx(\"span\",{style:{display:\"contents\"},className:`${props.id}`,children:/*#__PURE__*/_jsx(TypeWriterPure,{})}),cursorStyles);return isCanvas?/*#__PURE__*/_jsx(\"div\",{style:headingStyles(props),children:canvasContent}):/*#__PURE__*/_jsx(TypeWriterWithCSS,{});}TypeWriter.displayName=\"Typewriter\";TypeWriter.defaultProps={text:\"Hello World\",font:{fontFamily:\"Inter\",fontSize:32,fontWeight:600,textAlign:\"center\",lineHeight:1.2,lineHeightType:true,lineHeightPixels:100,letterSpacing:0,offset:0,whiteSpace:\"nowrap\"},cursor:\"|\",delayType:true,delayNumber:.2,pauseFor:1,loop:true,caretVisibility:true,split:false,autoStart:true,tag:\"heading1\",color:\"#888\",cursorColor:\"rgba(136, 136, 136, 0.5)\"};/* Property Controls */addPropertyControls(TypeWriter,{tag:{title:\"Tag\",type:ControlType.Enum,options:[\"heading1\",\"heading2\",\"heading3\",\"paragraph\"],optionTitles:[\"H1\",\"H2\",\"H3\",\"P\"],defaultValue:TypeWriter.defaultProps.tag,displaySegmentedControl:true},text:{type:ControlType.String,title:\"Text\",defaultValue:TypeWriter.defaultProps.text},autoStart:{title:\"Autoplay\",type:ControlType.Boolean,defaultValue:TypeWriter.defaultProps.autoStart},split:{title:\"Per Word\",type:ControlType.Boolean,defaultValue:TypeWriter.defaultProps.split},loop:{title:\"Loop\",type:ControlType.Boolean,defaultValue:TypeWriter.defaultProps.loop},caretVisibility:{title:\"Caret\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:TypeWriter.defaultProps.caretVisibility,hidden:props=>props.loop},delayType:{title:\"Delay\",type:ControlType.Boolean,enabledTitle:\"Natural\",disabledTitle:\"Number\",defaultValue:TypeWriter.defaultProps.delayType},delayNumber:{title:\"Delay\",type:ControlType.Number,step:.1,min:0,defaultValue:TypeWriter.defaultProps.delayNumber,displayStepper:true,hidden:props=>props.delayType},pauseFor:{title:\"Pause\",type:ControlType.Number,min:0,defaultValue:TypeWriter.defaultProps.pauseFor,displayStepper:true},color:{type:ControlType.Color,defaultValue:TypeWriter.defaultProps.color},font:{type:ControlType.Object,controls:{fontFamily:{title:\"Font\",type:ControlType.String,placeholder:\"Inter\",defaultValue:TypeWriter.defaultProps.font.fontFamily},fontSize:{title:\"Size\",type:ControlType.Number,min:0,max:500,step:.5,defaultValue:TypeWriter.defaultProps.font.fontSize},fontWeight:{type:ControlType.Enum,options:[100,200,300,400,500,600,700,800,900],defaultValue:TypeWriter.defaultProps.font.fontWeight,title:\"Weight\"},textAlign:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Align\",options:[\"left\",\"center\",\"right\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:TypeWriter.defaultProps.font.textAlign},letterSpacing:{title:\"Letter\",type:ControlType.Number,defaultValue:TypeWriter.defaultProps.font.letterSpacing,step:.1,displayStepper:true},offset:{type:ControlType.Number,title:\"Offset\",min:-100,max:100,displayStepper:true,step:.25,defaultValue:TypeWriter.defaultProps.font.offset,unit:\"%\"},whiteSpace:{type:ControlType.Enum,title:\"Space\",options:[\"normal\",\"nowrap\",\"pre\",\"pre-wrap\",\"preline\",\"break-spaces\"],optionTitles:[\"Normal\",\"No Wrap\",\"Pre\",\"Pre Wrap\",\"Preline\",\"Break Spaces\"],defaultValue:TypeWriter.defaultProps.font.whiteSpace},lineHeight:{type:ControlType.Number,title:\"Line\",min:-500,max:500,displayStepper:true,step:.1,defaultValue:TypeWriter.defaultProps.font.lineHeight,hidden:props=>!props.lineHeightType},lineHeightPixels:{type:ControlType.Number,title:\"Line\",min:-500,max:500,displayStepper:true,step:.1,defaultValue:TypeWriter.defaultProps.font.lineHeightPixels,hidden:props=>props.lineHeightType},lineHeightType:{type:ControlType.Boolean,title:\" \",enabledTitle:\"em\",disabledTitle:\"px\",defaultValue:TypeWriter.defaultProps.font.lineHeightType}}},cursor:{title:\"Cursor\",type:ControlType.String,defaultValue:TypeWriter.defaultProps.cursor,placeholder:\"Character\"},cursorColor:{type:ControlType.Color,title:\" \",defaultValue:TypeWriter.defaultProps.cursorColor}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TypeWriter\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Typewriter.map", "// Generated by Framer (e4277c8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/lydC4Ma2xiIs04LEAjzs/YqzBlX2QUogDf0Uz1hJG/BKpJLHEiw.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ODAF0xl2HScM9WETdHWI/h9YtCfEDgUyjHGdcaYqY/jLBrV9fdT.js\";import ButtonUnderlineButton from\"https://framerusercontent.com/modules/xI5RFLDSwX1UzXpL7W0e/xzjNGg9QlB2ca5aEoAB8/kvdO6qC5Y.js\";const MotionDivWithFX=withFX(motion.div);const ButtonUnderlineButtonFonts=getFonts(ButtonUnderlineButton);const cycleOrder=[\"MiWijn5tz\",\"HVbxm3ux9\"];const serializationHash=\"framer-wJpnK\";const variantClassNames={HVbxm3ux9:\"framer-v-1kiqwy6\",MiWijn5tz:\"framer-v-1uqr26v\"};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={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:2,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:2.5,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -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 humanReadableVariantMap={Hover:\"HVbxm3ux9\",Normal:\"MiWijn5tz\"};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:\"MiWijn5tz\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MiWijn5tz\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterymd81u=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"HVbxm3ux9\");});const onMouseLeaveb9bbqq=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"MiWijn5tz\");});const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1uqr26v\",className,classNames),\"data-framer-name\":\"Normal\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"MiWijn5tz\",onMouseEnter:onMouseEnterymd81u,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-a816bb28-2bc6-44b7-98d1-2f1db83a7e38, rgb(245, 245, 245))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},variants:{HVbxm3ux9:{backgroundColor:\"var(--token-95eba534-ae8b-416e-835c-041db7b94df1, rgb(235, 235, 235))\"}},...addPropertyOverrides({HVbxm3ux9:{\"data-framer-name\":\"Hover\",onMouseLeave:onMouseLeaveb9bbqq}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1svv60z\",\"data-framer-name\":\"Tag\",layoutDependency:layoutDependency,layoutId:\"ylrOgQqKg\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l4yyxv\",\"data-framer-name\":\"Pulse Circle\",layoutDependency:layoutDependency,layoutId:\"jW0fVAsB7\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-b7haqm\",\"data-framer-name\":\"Small\",layoutDependency:layoutDependency,layoutId:\"rkRs5elgp\",style:{backgroundColor:\"var(--token-018638ab-6906-4f93-a993-1c197b597327, rgb(29, 61, 243))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14niext\",layoutDependency:layoutDependency,layoutId:\"yA6HPBUck\",style:{backgroundColor:\"var(--token-a816bb28-2bc6-44b7-98d1-2f1db83a7e38, rgb(245, 245, 245))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.4,className:\"framer-hjrsv5\",\"data-framer-name\":\"Big\",layoutDependency:layoutDependency,layoutId:\"V0mkYzl7W\",style:{backgroundColor:\"var(--token-018638ab-6906-4f93-a993-1c197b597327, rgb(29, 61, 243))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,opacity:.4},transformTemplate:transformTemplate1})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1q5w7az\",\"data-styles-preset\":\"BKpJLHEiw\",children:\"About\"})}),className:\"framer-1jpz5vw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dOYAW4_Jr\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2tok6z\",\"data-styles-preset\":\"jLBrV9fdT\",style:{\"--framer-text-alignment\":\"center\"},children:\"We bring brands to life with bold design and innovative storytelling. From striking visuals to immersive experiences, we turn ideas into realities.\"})}),className:\"framer-dwxue1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YlOV3P1Bq\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"s3Svf7xP1\"},implicitPathVariables:undefined},{href:{webPageId:\"s3Svf7xP1\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||360)-64-140)/2+107.99999999999999+12),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tv12tj-container\",layoutDependency:layoutDependency,layoutId:\"zezrlqbe7-container\",children:/*#__PURE__*/_jsx(ButtonUnderlineButton,{avLngb90O:\"var(--token-fae62122-2d2a-447d-8987-ebd85c26354f, rgb(0, 0, 0))\",gHlc7DLpd:false,height:\"100%\",id:\"zezrlqbe7\",layoutId:\"zezrlqbe7\",LC1fyfAwJ:resolvedLinks[0],variant:\"GkZO4jjFb\",width:\"100%\",xHCm_1PJi:\"Read more\",...addPropertyOverrides({HVbxm3ux9:{LC1fyfAwJ:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wJpnK.framer-1h4vaox, .framer-wJpnK .framer-1h4vaox { display: block; }\",\".framer-wJpnK.framer-1uqr26v { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 360px; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 379px; will-change: var(--framer-will-change-override, transform); }\",\".framer-wJpnK .framer-1svv60z { 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: 16px; overflow: visible; padding: 0px; position: absolute; right: 16px; top: 16px; z-index: 1; }\",\".framer-wJpnK .framer-1l4yyxv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-wJpnK .framer-b7haqm { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 14px); overflow: hidden; position: relative; width: 14px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-wJpnK .framer-14niext { flex: none; height: 4px; left: calc(50.00000000000002% - 4px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 4px / 2); width: 4px; will-change: var(--framer-will-change-override, transform); }\",\".framer-wJpnK .framer-hjrsv5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 14px); left: 50%; overflow: hidden; position: absolute; top: 50%; width: 14px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-wJpnK .framer-1jpz5vw { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-wJpnK .framer-dwxue1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-wJpnK .framer-tv12tj-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wJpnK.framer-1uqr26v, .framer-wJpnK .framer-1svv60z, .framer-wJpnK .framer-1l4yyxv { gap: 0px; } .framer-wJpnK.framer-1uqr26v > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-wJpnK.framer-1uqr26v > :first-child { margin-top: 0px; } .framer-wJpnK.framer-1uqr26v > :last-child { margin-bottom: 0px; } .framer-wJpnK .framer-1svv60z > *, .framer-wJpnK .framer-1l4yyxv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wJpnK .framer-1svv60z > :first-child, .framer-wJpnK .framer-1l4yyxv > :first-child { margin-left: 0px; } .framer-wJpnK .framer-1svv60z > :last-child, .framer-wJpnK .framer-1l4yyxv > :last-child { margin-right: 0px; } }\",\".framer-wJpnK.framer-v-1kiqwy6.framer-1uqr26v { width: 379px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 360\n * @framerIntrinsicWidth 379\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"HVbxm3ux9\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMyFTGmd0R=withCSS(Component,css,\"framer-wJpnK\");export default FramerMyFTGmd0R;FramerMyFTGmd0R.displayName=\"Card/About\";FramerMyFTGmd0R.defaultProps={height:360,width:379};addPropertyControls(FramerMyFTGmd0R,{variant:{options:[\"MiWijn5tz\",\"HVbxm3ux9\"],optionTitles:[\"Normal\",\"Hover\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerMyFTGmd0R,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ButtonUnderlineButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMyFTGmd0R\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"360\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"379\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HVbxm3ux9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MyFTGmd0R.map", "// Generated by Framer (0b8b5e5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-5LC6L\";const variantClassNames={tIumotjZT:\"framer-v-1cuuo2p\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,name1,position,testimonial,width,...props})=>{var _ref,_ref1,_ref2;return{...props,c8B0Tzied:(_ref=name1!==null&&name1!==void 0?name1:props.c8B0Tzied)!==null&&_ref!==void 0?_ref:\"Sarah Martinez\",YQrXBSDaJ:(_ref1=position!==null&&position!==void 0?position:props.YQrXBSDaJ)!==null&&_ref1!==void 0?_ref1:\"Marketing Manager\",z9tyCPGsX:(_ref2=testimonial!==null&&testimonial!==void 0?testimonial:props.z9tyCPGsX)!==null&&_ref2!==void 0?_ref2:\"\u201CVeru Studio transformed our brand with their fresh and innovative design approach. Their team was professional, attentive, and delivered beyond our expectations. Highly recommend!\u201D\"};};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,z9tyCPGsX,c8B0Tzied,YQrXBSDaJ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"tIumotjZT\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1cuuo2p\",className,classNames),\"data-framer-name\":\"Normal\",layoutDependency:layoutDependency,layoutId:\"tIumotjZT\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255)))\"},children:\"\u201CVeru Studio transformed our brand with their fresh and innovative design approach. Their team was professional, attentive, and delivered beyond our expectations. Highly recommend!\u201D\"})}),className:\"framer-1gea00k\",fonts:[\"FR;InterDisplay\"],layoutDependency:layoutDependency,layoutId:\"gt_7ECk1z\",style:{\"--extracted-r6o4lv\":\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:z9tyCPGsX,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11t4wq8\",\"data-framer-name\":\"Name + Title\",layoutDependency:layoutDependency,layoutId:\"IGIvsLtxg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"13px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255)))\"},children:\"Sarah Martinez\"})}),className:\"framer-4tpikg\",fonts:[\"FR;InterDisplay\"],layoutDependency:layoutDependency,layoutId:\"i3QW_ulyt\",style:{\"--extracted-r6o4lv\":\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:c8B0Tzied,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"13px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a816bb28-2bc6-44b7-98d1-2f1db83a7e38, rgb(245, 245, 245)))\"},children:\"Marketing Manager\"})}),className:\"framer-9aei73\",fonts:[\"FR;InterDisplay\"],layoutDependency:layoutDependency,layoutId:\"v_AMrxXg_\",style:{\"--extracted-r6o4lv\":\"var(--token-a816bb28-2bc6-44b7-98d1-2f1db83a7e38, rgb(245, 245, 245))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:YQrXBSDaJ,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5LC6L.framer-vumjw1, .framer-5LC6L .framer-vumjw1 { display: block; }\",\".framer-5LC6L.framer-1cuuo2p { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: 379px; justify-content: center; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 379px; }\",\".framer-5LC6L .framer-1gea00k, .framer-5LC6L .framer-4tpikg, .framer-5LC6L .framer-9aei73 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5LC6L .framer-11t4wq8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5LC6L.framer-1cuuo2p, .framer-5LC6L .framer-11t4wq8 { gap: 0px; } .framer-5LC6L.framer-1cuuo2p > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-5LC6L.framer-1cuuo2p > :first-child, .framer-5LC6L .framer-11t4wq8 > :first-child { margin-top: 0px; } .framer-5LC6L.framer-1cuuo2p > :last-child, .framer-5LC6L .framer-11t4wq8 > :last-child { margin-bottom: 0px; } .framer-5LC6L .framer-11t4wq8 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 379\n * @framerIntrinsicWidth 379\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"z9tyCPGsX\":\"testimonial\",\"c8B0Tzied\":\"name1\",\"YQrXBSDaJ\":\"position\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAd5x5Zm52=withCSS(Component,css,\"framer-5LC6L\");export default FramerAd5x5Zm52;FramerAd5x5Zm52.displayName=\"Card/Testimonial - single\";FramerAd5x5Zm52.defaultProps={height:379,width:379};addPropertyControls(FramerAd5x5Zm52,{z9tyCPGsX:{defaultValue:\"\u201CVeru Studio transformed our brand with their fresh and innovative design approach. Their team was professional, attentive, and delivered beyond our expectations. Highly recommend!\u201D\",displayTextArea:false,title:\"Testimonial\",type:ControlType.String},c8B0Tzied:{defaultValue:\"Sarah Martinez\",displayTextArea:false,title:\"Name\",type:ControlType.String},YQrXBSDaJ:{defaultValue:\"Marketing Manager\",displayTextArea:false,title:\"Position\",type:ControlType.String}});addFonts(FramerAd5x5Zm52,[{explicitInter:true,fonts:[{family:\"Inter Display\",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/2uIBiALfCHVpWbHqRMZutfT7giU.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Zwfz6xbVe5pmcWRJRgBDHnMkOkI.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/U9LaDDmbRhzX3sB8g8glTy5feTE.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tVew2LzXJ1t7QfxP1gdTIdj2o0g.woff2\",weight:\"400\"},{family:\"Inter Display\",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/DF7bjCRmStYPqSb945lAlMfCCVQ.woff2\",weight:\"400\"},{family:\"Inter Display\",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/nCpxWS6DaPlPe0lHzStXAPCo3lw.woff2\",weight:\"400\"},{family:\"Inter Display\",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/vebZUMjGyKkYsfcY73iwWTzLNag.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAd5x5Zm52\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"z9tyCPGsX\\\":\\\"testimonial\\\",\\\"c8B0Tzied\\\":\\\"name1\\\",\\\"YQrXBSDaJ\\\":\\\"position\\\"}\",\"framerIntrinsicHeight\":\"379\",\"framerIntrinsicWidth\":\"379\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ad5x5Zm52.map", "// Generated by Framer (295c121)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/lydC4Ma2xiIs04LEAjzs/YqzBlX2QUogDf0Uz1hJG/BKpJLHEiw.js\";import CardTestimonialSingle from\"https://framerusercontent.com/modules/TWb3cVhvYX3B9Vt4Tq6M/2zMEWyl9kgUdk44Bzaix/Ad5x5Zm52.js\";const CardTestimonialSingleFonts=getFonts(CardTestimonialSingle);const SlideshowFonts=getFonts(Slideshow);const MotionDivWithFX=withFX(motion.div);const serializationHash=\"framer-dl8Pl\";const variantClassNames={TcqHlJMSH:\"framer-v-1gezi1f\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:0,duration:2,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:2.5,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"TcqHlJMSH\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1gezi1f\",className,classNames),\"data-framer-name\":\"Normal\",layoutDependency:layoutDependency,layoutId:\"TcqHlJMSH\",ref:ref??ref1,style:{backgroundColor:\"var(--token-018638ab-6906-4f93-a993-1c197b597327, rgb(29, 61, 243))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4ap4r-container\",layoutDependency:layoutDependency,layoutId:\"tjY2kRpeQ-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"tjY2kRpeQ\",intervalControl:5,itemAmount:1,layoutId:\"tjY2kRpeQ\",padding:0,paddingBottom:32,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.1)\",dotsBlur:0,dotsFill:\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255))\",dotsGap:6,dotsInset:16,dotSize:6,dotsOpacity:.4,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:379,width:\"379px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d1ftx7-container\",\"data-framer-name\":\"Testimonial 1\",layoutDependency:layoutDependency,layoutId:\"Rkd2T2VRO-container\",name:\"Testimonial 1\",children:/*#__PURE__*/_jsx(CardTestimonialSingle,{c8B0Tzied:\"Sarah Martinez\",height:\"100%\",id:\"Rkd2T2VRO\",layoutId:\"Rkd2T2VRO\",name:\"Testimonial 1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YQrXBSDaJ:\"Marketing Manager\",z9tyCPGsX:\"\u201CVeru Studio transformed our brand with their fresh and innovative design approach. Their team was professional, attentive, and delivered beyond our expectations. Highly recommend!\u201D\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:379,width:\"379px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-u2otsd-container\",\"data-framer-name\":\"Testimonial 2\",layoutDependency:layoutDependency,layoutId:\"iYLEMrtrv-container\",name:\"Testimonial 2\",children:/*#__PURE__*/_jsx(CardTestimonialSingle,{c8B0Tzied:\"Jason Lee\",height:\"100%\",id:\"iYLEMrtrv\",layoutId:\"iYLEMrtrv\",name:\"Testimonial 2\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YQrXBSDaJ:\"Creative Director\",z9tyCPGsX:\"\u201CWorking with Veru Studio was a game-changer for our project. Their creativity and attention to detail brought our vision to life. I couldn\u2019t be happier with the results.\u201D\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:379,width:\"379px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wmf2s9-container\",\"data-framer-name\":\"Testimonial 3\",layoutDependency:layoutDependency,layoutId:\"KlMXWfjhG-container\",name:\"Testimonial 3\",children:/*#__PURE__*/_jsx(CardTestimonialSingle,{c8B0Tzied:\"Emily Johnson\",height:\"100%\",id:\"KlMXWfjhG\",layoutId:\"KlMXWfjhG\",name:\"Testimonial 3\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YQrXBSDaJ:\"CEO\",z9tyCPGsX:\"\u201CVeru Studio\u2019s team is nothing short of amazing. They understood our brand\u2019s needs and created stunning visuals that resonate perfectly with our audience.\u201D\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:379,width:\"379px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10ci2h8-container\",\"data-framer-name\":\"Testimonial 4\",layoutDependency:layoutDependency,layoutId:\"YL1cbdlsQ-container\",name:\"Testimonial 4\",children:/*#__PURE__*/_jsx(CardTestimonialSingle,{c8B0Tzied:\"Michael Thompson\",height:\"100%\",id:\"YL1cbdlsQ\",layoutId:\"YL1cbdlsQ\",name:\"Testimonial 4\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YQrXBSDaJ:\"Product Manager\",z9tyCPGsX:\"\u201CFrom concept to execution, Veru Studio exceeded our expectations. Their expertise in design and branding helped us stand out in a crowded market. A pleasure to work with!\u201D\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:379,width:\"379px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rwn501-container\",\"data-framer-name\":\"Testimonial 5\",layoutDependency:layoutDependency,layoutId:\"EM3oaXKmP-container\",name:\"Testimonial 5\",children:/*#__PURE__*/_jsx(CardTestimonialSingle,{c8B0Tzied:\"Lisa Collins\",height:\"100%\",id:\"EM3oaXKmP\",layoutId:\"EM3oaXKmP\",name:\"Testimonial 5\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YQrXBSDaJ:\"Head of Communications\",z9tyCPGsX:\"\u201CVeru Studio delivered exceptional work on time and within budget. Their creative solutions truly captured the essence of our brand. We couldn\u2019t ask for a better partner!\u201D\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kycfo4\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"FUXD8vJFj\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c3yami\",\"data-framer-name\":\"Pulse Circle\",layoutDependency:layoutDependency,layoutId:\"ZHGYlI3uR\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-184o2ib\",\"data-framer-name\":\"Small\",layoutDependency:layoutDependency,layoutId:\"XAN3PxYRS\",style:{backgroundColor:\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fetu0j\",layoutDependency:layoutDependency,layoutId:\"PlEXtv8bv\",style:{backgroundColor:\"var(--token-018638ab-6906-4f93-a993-1c197b597327, rgb(29, 61, 243))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.4,className:\"framer-2f469j\",\"data-framer-name\":\"Big\",layoutDependency:layoutDependency,layoutId:\"htZbE22rc\",style:{backgroundColor:\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,opacity:.4},transformTemplate:transformTemplate1})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1q5w7az\",\"data-styles-preset\":\"BKpJLHEiw\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255)))\"},children:\"Testimonials\"})}),className:\"framer-1nd4y3p\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"r81SibFhD\",style:{\"--extracted-r6o4lv\":\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dl8Pl.framer-ys8wta, .framer-dl8Pl .framer-ys8wta { display: block; }\",\".framer-dl8Pl.framer-1gezi1f { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 379px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 379px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dl8Pl .framer-4ap4r-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-dl8Pl .framer-1d1ftx7-container, .framer-dl8Pl .framer-u2otsd-container, .framer-dl8Pl .framer-1wmf2s9-container, .framer-dl8Pl .framer-10ci2h8-container, .framer-dl8Pl .framer-1rwn501-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 379px); position: relative; width: 379px; }\",\".framer-dl8Pl .framer-1kycfo4 { 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: 16px; overflow: visible; padding: 0px; position: absolute; right: 16px; top: 16px; z-index: 1; }\",\".framer-dl8Pl .framer-c3yami { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-dl8Pl .framer-184o2ib { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 14px); overflow: hidden; position: relative; width: 14px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-dl8Pl .framer-fetu0j { flex: none; height: 4px; left: calc(50.00000000000002% - 4px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 4px / 2); width: 4px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dl8Pl .framer-2f469j { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 14px); left: 50%; overflow: hidden; position: absolute; top: 50%; width: 14px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-dl8Pl .framer-1nd4y3p { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dl8Pl.framer-1gezi1f, .framer-dl8Pl .framer-1kycfo4, .framer-dl8Pl .framer-c3yami { gap: 0px; } .framer-dl8Pl.framer-1gezi1f > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-dl8Pl.framer-1gezi1f > :first-child { margin-top: 0px; } .framer-dl8Pl.framer-1gezi1f > :last-child { margin-bottom: 0px; } .framer-dl8Pl .framer-1kycfo4 > *, .framer-dl8Pl .framer-c3yami > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-dl8Pl .framer-1kycfo4 > :first-child, .framer-dl8Pl .framer-c3yami > :first-child { margin-left: 0px; } .framer-dl8Pl .framer-1kycfo4 > :last-child, .framer-dl8Pl .framer-c3yami > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 379\n * @framerIntrinsicWidth 379\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerr7BDCCFR1=withCSS(Component,css,\"framer-dl8Pl\");export default Framerr7BDCCFR1;Framerr7BDCCFR1.displayName=\"Card/Testimonials\";Framerr7BDCCFR1.defaultProps={height:379,width:379};addFonts(Framerr7BDCCFR1,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...CardTestimonialSingleFonts,...SlideshowFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerr7BDCCFR1\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"379\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"379\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./r7BDCCFR1.map", "// Generated by Framer (8ea6382)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import{Counter}from\"https://framerusercontent.com/modules/VAayEDDq8226SeXyHkzU/N1yZ5RswMNT5MGog7h0D/Counter1.js\";import Typewriter from\"https://framerusercontent.com/modules/vgSbxmWWvbgW6ShllXld/9oZlwlOxsp6zJVFpVkIp/Typewriter.js\";import Typewriter1 from\"https://framerusercontent.com/modules/vgSbxmWWvbgW6ShllXld/IkcZ6LdJBUqPPlbnntkz/Typewriter.js\";import BuyButton2 from\"#framer/local/canvasComponent/Ccg9Gw60Y/Ccg9Gw60Y.js\";import NavigationItem from\"#framer/local/canvasComponent/IDfgu6I7c/IDfgu6I7c.js\";import ButtonBuyTemplate from\"#framer/local/canvasComponent/j7dQ6HCiz/j7dQ6HCiz.js\";import NavigationMobile from\"#framer/local/canvasComponent/Jg2dk8JPt/Jg2dk8JPt.js\";import NavigationDesktopTablet from\"#framer/local/canvasComponent/jSG8gZSUf/jSG8gZSUf.js\";import Contact from\"#framer/local/canvasComponent/KyxhGMvzS/KyxhGMvzS.js\";import CardImageBackground from\"#framer/local/canvasComponent/m5pvhA6zN/m5pvhA6zN.js\";import CardAbout from\"#framer/local/canvasComponent/MyFTGmd0R/MyFTGmd0R.js\";import CardTestimonials from\"#framer/local/canvasComponent/r7BDCCFR1/r7BDCCFR1.js\";import CardLogos from\"#framer/local/canvasComponent/tF9lNQdHg/tF9lNQdHg.js\";import Footer from\"#framer/local/canvasComponent/VmfIUpPuw/VmfIUpPuw.js\";import Blog from\"#framer/local/collection/uVM3A9zW6/uVM3A9zW6.js\";import*as sharedStyle2 from\"#framer/local/css/BKpJLHEiw/BKpJLHEiw.js\";import*as sharedStyle from\"#framer/local/css/BzcfTIoJI/BzcfTIoJI.js\";import*as sharedStyle3 from\"#framer/local/css/GrCHw5esF/GrCHw5esF.js\";import*as sharedStyle1 from\"#framer/local/css/jLBrV9fdT/jLBrV9fdT.js\";import*as sharedStyle4 from\"#framer/local/css/MlzdDkLoh/MlzdDkLoh.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationDesktopTabletFonts=getFonts(NavigationDesktopTablet);const NavigationItemFonts=getFonts(NavigationItem);const ContactFonts=getFonts(Contact);const MotionDivWithFX=withFX(motion.div);const TypewriterFonts=getFonts(Typewriter);const MaterialFonts=getFonts(Material);const YouTubeFonts=getFonts(YouTube);const CounterFonts=getFonts(Counter);const CardImageBackgroundFonts=getFonts(CardImageBackground);const CardAboutFonts=getFonts(CardAbout);const CardTestimonialsFonts=getFonts(CardTestimonials);const Typewriter1Fonts=getFonts(Typewriter1);const CardLogosFonts=getFonts(CardLogos);const FooterFonts=getFonts(Footer);const ButtonBuyTemplateFonts=getFonts(ButtonBuyTemplate);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const NavigationMobileFonts=getFonts(NavigationMobile);const BuyButton2Fonts=getFonts(BuyButton2);const breakpoints={kC3am_PFy:\"(min-width: 810px) and (max-width: 1199px)\",w9b_aIZ1J:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-3tRzl\";const variantClassNames={kC3am_PFy:\"framer-v-1gaw7i5\",w9b_aIZ1J:\"framer-v-bzn9vq\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-100};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:150};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition3={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,y:-10};const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition4={delay:0,duration:2,ease:[0,0,1,1],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:2.5,skewX:0,skewY:0,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition5={delay:2,duration:.9,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition6={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"w9b_aIZ1J\",Tablet:\"kC3am_PFy\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,tz9eHBCBG,EwkaGyYLzfvoShRPbE,obJRmkT7BfvoShRPbE,gKxhWCCi6fvoShRPbE,Q1O4v8_hBfvoShRPbE,idfvoShRPbE,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"w9b_aIZ1J\")return false;return true;};const router=useRouter();const activeLocaleCode=useLocaleCode();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"w9b_aIZ1J\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2dfx3j hidden-bzn9vq\",\"data-framer-name\":\"Navigation Desktop/Tablet\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kC3am_PFy:{y:12}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:16,children:/*#__PURE__*/_jsx(Container,{className:\"framer-v2wgo3-container\",nodeId:\"sahYCCKeP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NavigationDesktopTablet,{height:\"100%\",id:\"sahYCCKeP\",layoutId:\"sahYCCKeP\",variant:\"geehZ5IjA\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1etim3u\",\"data-framer-name\":\"Contact Button\",id:\"1etim3u\",onTap:onTap3bnx0g({overlay}),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kC3am_PFy:{y:16}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,y:20,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jocc9h-container\",nodeId:\"tvw2OaL6CQQiM2OCVj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NavigationItem,{dn8SGiJ1f:false,dVsT3GVy_:\"Contact\",height:\"100%\",IComWkH8o:false,id:\"tvw2OaL6CQQiM2OCVj\",layoutId:\"tvw2OaL6CQQiM2OCVj\",variant:\"X3vDtCrC0\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1},className:cx(scopingClassNames,\"framer-8kc28z\"),\"data-framer-portal-id\":\"1etim3u\",exit:{opacity:0},initial:{opacity:0},onTap:()=>overlay.hide(),transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},\"DLkCqBu6m\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{animate:animation2,className:cx(scopingClassNames,\"framer-dt1xlr-container\"),\"data-framer-portal-id\":\"1etim3u\",exit:animation1,initial:animation3,nodeId:\"UTDqr_CG1\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(Contact,{height:\"100%\",id:\"UTDqr_CG1\",layoutId:\"UTDqr_CG1\",width:\"100%\"})})})]}),getContainer())})})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-106z5n3\",\"data-framer-name\":\"Hero \",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ifnqgi\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-19nv0tn\",\"data-styles-preset\":\"BzcfTIoJI\",children:\"Creative partner\"})}),className:\"framer-11d7mtj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c0uj49\",\"data-framer-name\":\"Heading + Typewriter\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-19nv0tn\",\"data-styles-preset\":\"BzcfTIoJI\",children:\"for\"})}),className:\"framer-1hwdyj3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-32fi80-container\",isModuleExternal:true,nodeId:\"Cm4jsKoey\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kC3am_PFy:{font:{fontFamily:\"inter display\",fontSize:54,fontWeight:400,letterSpacing:-.2,lineHeight:1.2,lineHeightPixels:100,lineHeightType:true,offset:0,textAlign:\"left\",whiteSpace:\"normal\"}},w9b_aIZ1J:{font:{fontFamily:\"inter display\",fontSize:34,fontWeight:400,letterSpacing:-.2,lineHeight:1.2,lineHeightPixels:100,lineHeightType:true,offset:0,textAlign:\"left\",whiteSpace:\"normal\"}}},children:/*#__PURE__*/_jsx(Typewriter,{autoStart:true,caretVisibility:true,color:\"var(--token-789a8c66-75e5-445d-b4e9-5fde1a14a145, rgb(135, 135, 135))\",cursor:\"|\",cursorColor:\"var(--token-789a8c66-75e5-445d-b4e9-5fde1a14a145, rgb(135, 135, 135))\",delayNumber:.1,delayType:true,font:{fontFamily:\"inter display\",fontSize:64,fontWeight:400,letterSpacing:-.2,lineHeight:1.2,lineHeightPixels:100,lineHeightType:true,offset:0,textAlign:\"left\",whiteSpace:\"normal\"},height:\"100%\",id:\"Cm4jsKoey\",layoutId:\"Cm4jsKoey\",loop:true,pauseFor:1,split:true,tag:\"heading1\",text:\"freelancers. solopreneurs. agencies. \",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kC3am_PFy:{background:{alt:\"hair blowing in the wind of a young girl\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+12+0+220+300.8),pixelHeight:3846,pixelWidth:3075,positionX:\"50%\",positionY:\"36.8%\",sizes:`min(${componentViewport?.width||\"100vw\"} - 24px, 1560px)`,src:\"https://framerusercontent.com/images/KpXsS4UIUJllqnV11jRg48bnDeI.jpg\",srcSet:\"https://framerusercontent.com/images/KpXsS4UIUJllqnV11jRg48bnDeI.jpg?scale-down-to=1024 818w,https://framerusercontent.com/images/KpXsS4UIUJllqnV11jRg48bnDeI.jpg?scale-down-to=2048 1637w,https://framerusercontent.com/images/KpXsS4UIUJllqnV11jRg48bnDeI.jpg 3075w\"}},w9b_aIZ1J:{background:{alt:\"hair blowing in the wind of a young girl\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+8+0+160+300.8),pixelHeight:3846,pixelWidth:3075,positionX:\"50%\",positionY:\"36.8%\",sizes:`min(${componentViewport?.width||\"100vw\"} - 16px, 1560px)`,src:\"https://framerusercontent.com/images/KpXsS4UIUJllqnV11jRg48bnDeI.jpg\",srcSet:\"https://framerusercontent.com/images/KpXsS4UIUJllqnV11jRg48bnDeI.jpg?scale-down-to=1024 818w,https://framerusercontent.com/images/KpXsS4UIUJllqnV11jRg48bnDeI.jpg?scale-down-to=2048 1637w,https://framerusercontent.com/images/KpXsS4UIUJllqnV11jRg48bnDeI.jpg 3075w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"hair blowing in the wind of a young girl\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+16+0+220+300.8),pixelHeight:3846,pixelWidth:3075,positionX:\"50%\",positionY:\"36.8%\",sizes:`min(${componentViewport?.width||\"100vw\"} - 32px, 1560px)`,src:\"https://framerusercontent.com/images/KpXsS4UIUJllqnV11jRg48bnDeI.jpg\",srcSet:\"https://framerusercontent.com/images/KpXsS4UIUJllqnV11jRg48bnDeI.jpg?scale-down-to=1024 818w,https://framerusercontent.com/images/KpXsS4UIUJllqnV11jRg48bnDeI.jpg?scale-down-to=2048 1637w,https://framerusercontent.com/images/KpXsS4UIUJllqnV11jRg48bnDeI.jpg 3075w\"},className:\"framer-tby25g\",\"data-framer-name\":\"Hero image\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15yod2q\",\"data-framer-name\":\"Video\",id:\"15yod2q\",onTap:onTap3bnx0g({overlay:overlay1}),whileHover:animation4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kC3am_PFy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+12+0+220+300.8+-18+8),pixelHeight:3130,pixelWidth:2075,sizes:\"64px\",src:\"https://framerusercontent.com/images/lzKjajArcbK0eWfXxxsWbV3sEL4.jpg\",srcSet:\"https://framerusercontent.com/images/lzKjajArcbK0eWfXxxsWbV3sEL4.jpg?scale-down-to=1024 678w,https://framerusercontent.com/images/lzKjajArcbK0eWfXxxsWbV3sEL4.jpg?scale-down-to=2048 1357w,https://framerusercontent.com/images/lzKjajArcbK0eWfXxxsWbV3sEL4.jpg 2075w\"}},w9b_aIZ1J:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+8+0+160+300.8+-18+8),pixelHeight:3130,pixelWidth:2075,sizes:\"64px\",src:\"https://framerusercontent.com/images/lzKjajArcbK0eWfXxxsWbV3sEL4.jpg\",srcSet:\"https://framerusercontent.com/images/lzKjajArcbK0eWfXxxsWbV3sEL4.jpg?scale-down-to=1024 678w,https://framerusercontent.com/images/lzKjajArcbK0eWfXxxsWbV3sEL4.jpg?scale-down-to=2048 1357w,https://framerusercontent.com/images/lzKjajArcbK0eWfXxxsWbV3sEL4.jpg 2075w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+16+0+220+300.8+-18+8),pixelHeight:3130,pixelWidth:2075,sizes:\"64px\",src:\"https://framerusercontent.com/images/lzKjajArcbK0eWfXxxsWbV3sEL4.jpg\",srcSet:\"https://framerusercontent.com/images/lzKjajArcbK0eWfXxxsWbV3sEL4.jpg?scale-down-to=1024 678w,https://framerusercontent.com/images/lzKjajArcbK0eWfXxxsWbV3sEL4.jpg?scale-down-to=2048 1357w,https://framerusercontent.com/images/lzKjajArcbK0eWfXxxsWbV3sEL4.jpg 2075w\"},className:\"framer-axhzoi\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1txst0k-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"moINAQw9s\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"PlayArrow\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"moINAQw9s\",layoutId:\"moINAQw9s\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18qtn6i\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2tok6z\",\"data-styles-preset\":\"jLBrV9fdT\",style:{\"--framer-text-color\":\"var(--token-a816bb28-2bc6-44b7-98d1-2f1db83a7e38, rgb(245, 245, 245))\"},children:\"Watch showreel\"})}),className:\"framer-p57b89\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1q5w7az\",\"data-styles-preset\":\"BKpJLHEiw\",style:{\"--framer-text-color\":\"var(--token-95eba534-ae8b-416e-835c-041db7b94df1, rgb(235, 235, 235))\"},children:\"2019-24\"})}),className:\"framer-h0u6pt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__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},className:cx(scopingClassNames,\"framer-1ogigk0\"),\"data-framer-portal-id\":\"15yod2q\",exit:{opacity:0},initial:{opacity:0},onTap:()=>overlay1.hide(),transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},\"lskVMW8Ld\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w9b_aIZ1J:{transformTemplate:transformTemplate3}},children:/*#__PURE__*/_jsx(motion.div,{animate:animation2,className:cx(scopingClassNames,\"framer-1pujbc2\"),\"data-framer-name\":\"YouTube\",\"data-framer-portal-id\":\"15yod2q\",exit:animation1,initial:animation3,transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hwqsm2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"sa0zkwhDE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"sa0zkwhDE\",isMixedBorderRadius:false,isRed:true,layoutId:\"sa0zkwhDE\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/smPos0mJvh8\",width:\"100%\"})})})})})]}),getContainer())})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1me35nf\",\"data-framer-name\":\"Tag\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-r1eaqq\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sp73xc-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gQisxBFCE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"List\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"gQisxBFCE\",layoutId:\"gQisxBFCE\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15k8n1q\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10rp4u\",\"data-framer-name\":\"Tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1q5w7az\",\"data-styles-preset\":\"BKpJLHEiw\",style:{\"--framer-text-color\":\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255))\"},children:\"News\"})}),className:\"framer-vfwgtt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-llm5on\",\"data-framer-name\":\"Number + Text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yeufd2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"slJ5CI6uh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:200,gapSize:0,height:\"100%\",id:\"slJ5CI6uh\",incrementType:\"integer\",layoutId:\"slJ5CI6uh\",loop:false,prefixColor:\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255))\",prefixFont:{fontFamily:'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:600},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},speed:30,start:150,startOnViewport:true,suffixColor:\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255))\",suffixFont:{fontFamily:'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:600},suffixText:\"\",textColor:\"var(--token-b88f797e-83f0-4cb1-8700-a0b0cc1e56a5, rgb(255, 255, 255))\",textSize:46,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1q5w7az\",\"data-styles-preset\":\"BKpJLHEiw\",style:{\"--framer-text-color\":\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255))\"},children:\"Completed projects!\"})}),className:\"framer-gx8dqy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-zuhbr5\",\"data-framer-name\":\"Case studies\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{AkvM0Hh9G:\"faded\"},unresolvedPathSlugs:{AkvM0Hh9G:{collectionId:\"ITocPiSeD\",collectionItemId:\"LheK3_xxl\"}},webPageId:\"i6C29T1BY\"},implicitPathVariables:undefined},{href:{pathVariables:{AkvM0Hh9G:\"faded\"},unresolvedPathSlugs:{AkvM0Hh9G:{collectionId:\"ITocPiSeD\",collectionItemId:\"LheK3_xxl\"}},webPageId:\"i6C29T1BY\"},implicitPathVariables:undefined},{href:{pathVariables:{AkvM0Hh9G:\"faded\"},unresolvedPathSlugs:{AkvM0Hh9G:{collectionId:\"ITocPiSeD\",collectionItemId:\"LheK3_xxl\"}},webPageId:\"i6C29T1BY\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kC3am_PFy:{height:480,width:`max((min(${componentViewport?.width||\"100vw\"} - 24px, 1560px) - 12px) / 1.5, 1px)`,y:(componentViewport?.y||0)+12+1012.8+0},w9b_aIZ1J:{height:195,width:`min(${componentViewport?.width||\"100vw\"} - 16px, 1560px)`,y:(componentViewport?.y||0)+8+1088.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:620,width:`max((min(${componentViewport?.width||\"100vw\"} - 32px, 1560px) - 16px) / 1.5, 1px)`,y:(componentViewport?.y||0)+16+1156.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1csxibp-container\",nodeId:\"yGh3PGTiP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kC3am_PFy:{t_UguAtDf:resolvedLinks[1]},w9b_aIZ1J:{t_UguAtDf:resolvedLinks[2],variant:\"goCdMVMKv\"}},children:/*#__PURE__*/_jsx(CardImageBackground,{aE9nuSBcy:\"(Webdesign)\",AtyP_ig65:\"Faded\",geh0ECUHT:\"Work\",height:\"100%\",id:\"yGh3PGTiP\",layoutId:\"yGh3PGTiP\",style:{height:\"100%\",width:\"100%\"},t_UguAtDf:resolvedLinks[0],variant:\"UVsWxBbAy\",width:\"100%\",x5ElgtTfC:addImageAlt({src:\"https://framerusercontent.com/images/K5RhZ7zAmPBl14rLteNP0yalcTc.jpg\",srcSet:\"https://framerusercontent.com/images/K5RhZ7zAmPBl14rLteNP0yalcTc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/K5RhZ7zAmPBl14rLteNP0yalcTc.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/K5RhZ7zAmPBl14rLteNP0yalcTc.jpg?scale-down-to=4096 3276w,https://framerusercontent.com/images/K5RhZ7zAmPBl14rLteNP0yalcTc.jpg 5007w\"},\"Victoria photoshoot\")})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{AkvM0Hh9G:\"botanical\"},unresolvedPathSlugs:{AkvM0Hh9G:{collectionId:\"ITocPiSeD\",collectionItemId:\"g58s1p_wm\"}},webPageId:\"i6C29T1BY\"},implicitPathVariables:undefined},{href:{pathVariables:{AkvM0Hh9G:\"botanical\"},unresolvedPathSlugs:{AkvM0Hh9G:{collectionId:\"ITocPiSeD\",collectionItemId:\"g58s1p_wm\"}},webPageId:\"i6C29T1BY\"},implicitPathVariables:undefined},{href:{pathVariables:{AkvM0Hh9G:\"botanical\"},unresolvedPathSlugs:{AkvM0Hh9G:{collectionId:\"ITocPiSeD\",collectionItemId:\"g58s1p_wm\"}},webPageId:\"i6C29T1BY\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kC3am_PFy:{height:480,width:`max((min(${componentViewport?.width||\"100vw\"} - 24px, 1560px) - 12px) / 3, 1px)`,y:(componentViewport?.y||0)+12+1012.8+0},w9b_aIZ1J:{height:195,width:`min(${componentViewport?.width||\"100vw\"} - 16px, 1560px)`,y:(componentViewport?.y||0)+8+1088.8+0+203}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:620,width:`max((min(${componentViewport?.width||\"100vw\"} - 32px, 1560px) - 16px) / 3, 1px)`,y:(componentViewport?.y||0)+16+1156.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pwm0pl-container\",nodeId:\"o0VhqYOY4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kC3am_PFy:{t_UguAtDf:resolvedLinks1[1]},w9b_aIZ1J:{t_UguAtDf:resolvedLinks1[2],variant:\"goCdMVMKv\"}},children:/*#__PURE__*/_jsx(CardImageBackground,{aE9nuSBcy:\"(Strategy)\",AtyP_ig65:\"Botanical\",geh0ECUHT:\"Work\",height:\"100%\",id:\"o0VhqYOY4\",layoutId:\"o0VhqYOY4\",style:{height:\"100%\",width:\"100%\"},t_UguAtDf:resolvedLinks1[0],variant:\"FwRHrZ6cr\",width:\"100%\",x5ElgtTfC:addImageAlt({src:\"https://framerusercontent.com/images/ILYRVQJ5QrALoh0Q6kN0NAe1M.jpg\",srcSet:\"https://framerusercontent.com/images/ILYRVQJ5QrALoh0Q6kN0NAe1M.jpg?scale-down-to=1024 732w,https://framerusercontent.com/images/ILYRVQJ5QrALoh0Q6kN0NAe1M.jpg?scale-down-to=2048 1465w,https://framerusercontent.com/images/ILYRVQJ5QrALoh0Q6kN0NAe1M.jpg 2054w\"},\"running track\")})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7mhrq3\",\"data-framer-name\":\"Single banner\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-167mey2\",\"data-styles-preset\":\"GrCHw5esF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fae62122-2d2a-447d-8987-ebd85c26354f, rgb(0, 0, 0))\"},children:'\"If you can think it, we can create it.\"'})}),className:\"framer-y7vro0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cqin0f\",\"data-framer-name\":\"Tag\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nnlj9l\",\"data-framer-name\":\"Pulse + Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g9ou82\",\"data-framer-name\":\"Pulse Circle\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1odwn37\",\"data-framer-name\":\"Small\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c4ltml\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation5,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:.4,className:\"framer-18njhft\",\"data-framer-name\":\"Big\",transformTemplate:transformTemplate2})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1q5w7az\",\"data-styles-preset\":\"BKpJLHEiw\",children:\"Services\"})}),className:\"framer-3bpkyx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RnJhZ21lbnQgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Fragment Mono\", monospace',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"10px\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.3)\",\"--framer-text-transform\":\"uppercase\"},children:\"(3)\"})}),className:\"framer-6me9uq\",fonts:[\"GF;Fragment Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aatyki\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qxska1\",\"data-framer-name\":\"Column 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kC3am_PFy:{height:381,width:`max((min(${componentViewport?.width||\"100vw\"} - 24px, 1560px) - 12px) / 2, 1px)`,y:(componentViewport?.y||0)+12+1716.8+0+0+3},w9b_aIZ1J:{height:240,width:`min(${componentViewport?.width||\"100vw\"} - 16px, 1560px)`,y:(componentViewport?.y||0)+8+1685.8+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:`max((min(${componentViewport?.width||\"100vw\"} - 32px, 1560px) - 32px) / 3, 1px)`,y:(componentViewport?.y||0)+16+2038.8+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-h5f69l-container\",nodeId:\"rX1u2Hypv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardAbout,{height:\"100%\",id:\"rX1u2Hypv\",layoutId:\"rX1u2Hypv\",style:{height:\"100%\",width:\"100%\"},variant:\"MiWijn5tz\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kC3am_PFy:{height:387,width:`max((min(${componentViewport?.width||\"100vw\"} - 24px, 1560px) - 12px) / 2, 1px)`,y:(componentViewport?.y||0)+12+1716.8+0+0+0},w9b_aIZ1J:{height:374,width:`min(${componentViewport?.width||\"100vw\"} - 16px, 1560px)`,y:(componentViewport?.y||0)+8+1685.8+0+0+0+248}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:370,width:`max((min(${componentViewport?.width||\"100vw\"} - 32px, 1560px) - 32px) / 3, 1px)`,y:(componentViewport?.y||0)+16+2038.8+0+0+496,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sj2api-container\",nodeId:\"b7_Yp61WH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardTestimonials,{height:\"100%\",id:\"b7_Yp61WH\",layoutId:\"b7_Yp61WH\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-um42t0\",\"data-framer-name\":\"Column 2\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"s3Svf7xP1\"},implicitPathVariables:undefined},{href:{webPageId:\"s3Svf7xP1\"},implicitPathVariables:undefined},{href:{webPageId:\"s3Svf7xP1\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kC3am_PFy:{height:381,width:`max((min(${componentViewport?.width||\"100vw\"} - 24px, 1560px) - 12px) / 2, 1px)`,y:(componentViewport?.y||0)+12+1716.8+0+399+0},w9b_aIZ1J:{height:240,width:`min(${componentViewport?.width||\"100vw\"} - 16px, 1560px)`,y:(componentViewport?.y||0)+8+1685.8+0+630+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:620,width:`max((min(${componentViewport?.width||\"100vw\"} - 32px, 1560px) - 32px) / 3, 1px)`,y:(componentViewport?.y||0)+16+2038.8+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b6hpx6-container\",nodeId:\"FITei7MG3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kC3am_PFy:{t_UguAtDf:resolvedLinks2[1]},w9b_aIZ1J:{t_UguAtDf:resolvedLinks2[2],variant:\"goCdMVMKv\"}},children:/*#__PURE__*/_jsx(CardImageBackground,{aE9nuSBcy:\"(Team)\",AtyP_ig65:\"Who we are?\",geh0ECUHT:\"About\",height:\"100%\",id:\"FITei7MG3\",layoutId:\"FITei7MG3\",style:{height:\"100%\",width:\"100%\"},t_UguAtDf:resolvedLinks2[0],variant:\"FwRHrZ6cr\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-my9lig\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qd78ub-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CKx0aNVWp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Typewriter1,{autoStart:true,caretVisibility:true,color:\"var(--token-fae62122-2d2a-447d-8987-ebd85c26354f, rgb(0, 0, 0))\",cursor:\"|\",cursorColor:\"var(--token-789a8c66-75e5-445d-b4e9-5fde1a14a145, rgb(153, 153, 153))\",delayNumber:.1,delayType:true,font:{fontFamily:\"inter display\",fontSize:32,fontWeight:400,letterSpacing:-.2,lineHeight:1.2,lineHeightPixels:100,lineHeightType:true,offset:0,textAlign:\"left\",whiteSpace:\"normal\"},height:\"100%\",id:\"CKx0aNVWp\",layoutId:\"CKx0aNVWp\",loop:true,pauseFor:1,split:true,tag:\"paragraph\",text:\"Webdesign. Branding. Strategy. Production.\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6hywbh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10seshh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c5xu9v\",\"data-framer-name\":\"Pulse Circle\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-x3hsgg\",\"data-framer-name\":\"Small\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-jpff9g\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation5,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:.4,className:\"framer-18be74x\",\"data-framer-name\":\"Big\",transformTemplate:transformTemplate2})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1q5w7az\",\"data-styles-preset\":\"BKpJLHEiw\",children:\"Services\"})}),className:\"framer-j5ghob\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12dkro9\",\"data-styles-preset\":\"MlzdDkLoh\",children:\"(3)\"})}),className:\"framer-hdvmyx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-awli0n\",\"data-framer-name\":\"Column 3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kC3am_PFy:{height:200,width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1560px)`,y:(componentViewport?.y||0)+12+1716.8+0+792+0+0},w9b_aIZ1J:{height:183,width:`min(${componentViewport?.width||\"100vw\"} - 16px, 1560px)`,y:(componentViewport?.y||0)+8+1685.8+0+1116+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:230,width:`max((min(${componentViewport?.width||\"100vw\"} - 32px, 1560px) - 32px) / 3, 1px)`,y:(componentViewport?.y||0)+16+2038.8+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qgi47n-container\",nodeId:\"GI95doGUa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardLogos,{height:\"100%\",id:\"GI95doGUa\",layoutId:\"GI95doGUa\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{AkvM0Hh9G:\"design-freaks\"},unresolvedPathSlugs:{AkvM0Hh9G:{collectionId:\"ITocPiSeD\",collectionItemId:\"XnFcJl8oi\"}},webPageId:\"i6C29T1BY\"},implicitPathVariables:undefined},{href:{pathVariables:{AkvM0Hh9G:\"design-freaks\"},unresolvedPathSlugs:{AkvM0Hh9G:{collectionId:\"ITocPiSeD\",collectionItemId:\"XnFcJl8oi\"}},webPageId:\"i6C29T1BY\"},implicitPathVariables:undefined},{href:{pathVariables:{AkvM0Hh9G:\"design-freaks\"},unresolvedPathSlugs:{AkvM0Hh9G:{collectionId:\"ITocPiSeD\",collectionItemId:\"XnFcJl8oi\"}},webPageId:\"i6C29T1BY\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kC3am_PFy:{height:480,width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1560px)`,y:(componentViewport?.y||0)+12+1716.8+0+792+0+212},w9b_aIZ1J:{height:300,width:`min(${componentViewport?.width||\"100vw\"} - 16px, 1560px)`,y:(componentViewport?.y||0)+8+1685.8+0+1116+0+191}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:620,width:`max((min(${componentViewport?.width||\"100vw\"} - 32px, 1560px) - 32px) / 3, 1px)`,y:(componentViewport?.y||0)+16+2038.8+0+0+246,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ij4p5q-container\",nodeId:\"T3TpGOxfB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kC3am_PFy:{t_UguAtDf:resolvedLinks3[1],variant:\"UVsWxBbAy\"},w9b_aIZ1J:{t_UguAtDf:resolvedLinks3[2],variant:\"goCdMVMKv\"}},children:/*#__PURE__*/_jsx(CardImageBackground,{aE9nuSBcy:\"(Branding)\",AtyP_ig65:\"Design Freaks\",geh0ECUHT:\"Work\",height:\"100%\",id:\"T3TpGOxfB\",layoutId:\"T3TpGOxfB\",style:{height:\"100%\",width:\"100%\"},t_UguAtDf:resolvedLinks3[0],variant:\"FwRHrZ6cr\",width:\"100%\",x5ElgtTfC:addImageAlt({src:\"https://framerusercontent.com/images/TRRkZ59QIQkwMstpMclqTInKN8.jpg\",srcSet:\"https://framerusercontent.com/images/TRRkZ59QIQkwMstpMclqTInKN8.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/TRRkZ59QIQkwMstpMclqTInKN8.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/TRRkZ59QIQkwMstpMclqTInKN8.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/TRRkZ59QIQkwMstpMclqTInKN8.jpg 3323w\"},\"Girl dancing in the streets\")})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-1wgccrk\",\"data-framer-name\":\"Blog\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a2w9og\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kC3am_PFy:{query:{from:{alias:\"fvoShRPbE\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"fvoShRPbE\",name:\"EwkaGyYLz\",type:\"Identifier\"},{collection:\"fvoShRPbE\",name:\"obJRmkT7B\",type:\"Identifier\"},{collection:\"fvoShRPbE\",name:\"gKxhWCCi6\",type:\"Identifier\"},{collection:\"fvoShRPbE\",name:\"Q1O4v8_hB\",type:\"Identifier\"},{collection:\"fvoShRPbE\",name:\"id\",type:\"Identifier\"}]}},w9b_aIZ1J:{query:{from:{alias:\"fvoShRPbE\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"fvoShRPbE\",name:\"EwkaGyYLz\",type:\"Identifier\"},{collection:\"fvoShRPbE\",name:\"obJRmkT7B\",type:\"Identifier\"},{collection:\"fvoShRPbE\",name:\"gKxhWCCi6\",type:\"Identifier\"},{collection:\"fvoShRPbE\",name:\"Q1O4v8_hB\",type:\"Identifier\"},{collection:\"fvoShRPbE\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"fvoShRPbE\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"fvoShRPbE\",name:\"EwkaGyYLz\",type:\"Identifier\"},{collection:\"fvoShRPbE\",name:\"obJRmkT7B\",type:\"Identifier\"},{collection:\"fvoShRPbE\",name:\"gKxhWCCi6\",type:\"Identifier\"},{collection:\"fvoShRPbE\",name:\"Q1O4v8_hB\",type:\"Identifier\"},{collection:\"fvoShRPbE\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({EwkaGyYLz:EwkaGyYLzfvoShRPbE,gKxhWCCi6:gKxhWCCi6fvoShRPbE,id:idfvoShRPbE,obJRmkT7B:obJRmkT7BfvoShRPbE,Q1O4v8_hB:Q1O4v8_hBfvoShRPbE},index)=>{EwkaGyYLzfvoShRPbE??=\"\";Q1O4v8_hBfvoShRPbE??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`fvoShRPbE-${idfvoShRPbE}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Q1O4v8_hB:Q1O4v8_hBfvoShRPbE},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Q1O4v8_hB:Q1O4v8_hBfvoShRPbE},webPageId:\"IEUuDckqv\"},implicitPathVariables:undefined},{href:{pathVariables:{Q1O4v8_hB:Q1O4v8_hBfvoShRPbE},webPageId:\"IEUuDckqv\"},implicitPathVariables:undefined},{href:{pathVariables:{Q1O4v8_hB:Q1O4v8_hBfvoShRPbE},webPageId:\"IEUuDckqv\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kC3am_PFy:{width:`max(min(${componentViewport?.width||\"100vw\"} - 24px, 1560px), 1px)`,y:(componentViewport?.y||0)+12+3212.8+0+0},w9b_aIZ1J:{width:`max(min(${componentViewport?.width||\"100vw\"} - 16px, 1560px), 1px)`,y:(componentViewport?.y||0)+8+3300.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:576,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 32px, 1560px), 1px) - 32px) / 3, 50px)`,y:(componentViewport?.y||0)+16+2920.8+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ta7tn2-container\",nodeId:\"B3hmco3V_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kC3am_PFy:{t_UguAtDf:resolvedLinks4[1]},w9b_aIZ1J:{t_UguAtDf:resolvedLinks4[2],variant:\"fLj2tZMSy\"}},children:/*#__PURE__*/_jsx(CardImageBackground,{aE9nuSBcy:toDateString(gKxhWCCi6fvoShRPbE,{dateStyle:\"short\",locale:\"\"},activeLocaleCode),AtyP_ig65:EwkaGyYLzfvoShRPbE,geh0ECUHT:\"Blog\",height:\"100%\",id:\"B3hmco3V_\",layoutId:\"B3hmco3V_\",style:{height:\"100%\",width:\"100%\"},t_UguAtDf:resolvedLinks4[0],variant:\"C0f0YYuBj\",width:\"100%\",x5ElgtTfC:toResponsiveImage(obJRmkT7BfvoShRPbE)})})})})})})})},idfvoShRPbE);})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-94pq4q\",\"data-framer-name\":\"CTA\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255))\"},children:\"Get in touch\"})}),className:\"framer-1yslmxc\",fonts:[\"FR;InterDisplay\"],id:\"1yslmxc\",onTap:onTap3bnx0g({overlay:overlay2}),verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1},className:cx(scopingClassNames,\"framer-1jxconi\"),\"data-framer-portal-id\":\"1yslmxc\",exit:{opacity:0},initial:{opacity:0},onTap:()=>overlay2.hide(),transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},\"KSOeaAz_E\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w9b_aIZ1J:{width:\"calc(100vw - 32px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w9b_aIZ1J:{transformTemplate:transformTemplate3}},children:/*#__PURE__*/_jsx(Container,{animate:animation2,className:cx(scopingClassNames,\"framer-5rqerg-container\"),\"data-framer-portal-id\":\"1yslmxc\",exit:animation1,initial:animation3,nodeId:\"cdN8JuhOY\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w9b_aIZ1J:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Contact,{height:\"100%\",id:\"cdN8JuhOY\",layoutId:\"cdN8JuhOY\",width:\"100%\"})})})})})})]}),getContainer())})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n32g2y\",\"data-framer-name\":\"Tag\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2p0snt\",\"data-framer-name\":\"Pulse Circle\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p8mgvl\",\"data-framer-name\":\"Small\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wryz\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation5,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:.4,className:\"framer-czg3ge\",\"data-framer-name\":\"Big\",transformTemplate:transformTemplate2})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1q5w7az\",\"data-styles-preset\":\"BKpJLHEiw\",style:{\"--framer-text-color\":\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255))\"},children:\"Contact\"})}),className:\"framer-5aagsj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nb3msf\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kC3am_PFy:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1560px)`,y:(componentViewport?.y||0)+12+4012.8+0+0},w9b_aIZ1J:{width:`min(${componentViewport?.width||\"100vw\"} - 16px, 1560px)`,y:(componentViewport?.y||0)+8+4122.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:347,width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1560px)`,y:(componentViewport?.y||0)+16+4350.8+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18cciht-container\",nodeId:\"L3jDqEOo8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kC3am_PFy:{variant:\"pmVK4Ud9a\"},w9b_aIZ1J:{variant:\"E0UNXqq21\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"L3jDqEOo8\",layoutId:\"L3jDqEOo8\",style:{width:\"100%\"},variant:\"Qg2L6dH9R\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"142px\",y:898,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w9b_aIZ1J:{animate:animation8,initial:animation9,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation6,className:\"framer-18wu2gm-container\",\"data-framer-appear-id\":\"18wu2gm\",\"data-framer-name\":\"Get Button\",initial:animation7,layoutScroll:true,name:\"Get Button\",nodeId:\"bdOjs9EWL\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ButtonBuyTemplate,{height:\"100%\",id:\"bdOjs9EWL\",layoutId:\"bdOjs9EWL\",name:\"Get Button\",style:{width:\"100%\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w9b_aIZ1J:{height:326,y:8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gpvpwe-container hidden-72rtr7 hidden-1gaw7i5\",layoutScroll:true,nodeId:\"xXyBMBANS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NavigationMobile,{height:\"100%\",id:\"xXyBMBANS\",layoutId:\"xXyBMBANS\",variant:\"KNAWAzhFY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:94,y:796,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation6,className:\"framer-1682qc1-container\",\"data-framer-appear-id\":\"1682qc1\",\"data-framer-name\":\"Get Button\",initial:animation7,layoutScroll:true,name:\"Get Button\",nodeId:\"TVS1b6MYW\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(BuyButton2,{height:\"100%\",id:\"TVS1b6MYW\",layoutId:\"TVS1b6MYW\",name:\"Get Button\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3tRzl.framer-lux5qc, .framer-3tRzl .framer-lux5qc { display: block; }\",\".framer-3tRzl.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; width: 1200px; }\",\".framer-3tRzl .framer-2dfx3j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: fixed; top: 16px; transform: translateX(-50%); width: min-content; z-index: 10; }\",\".framer-3tRzl .framer-v2wgo3-container, .framer-3tRzl .framer-jocc9h-container, .framer-3tRzl .framer-32fi80-container, .framer-3tRzl .framer-yeufd2-container, .framer-3tRzl .framer-1qd78ub-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-3tRzl .framer-1etim3u { -webkit-backdrop-filter: blur(10px); align-content: center; align-items: center; backdrop-filter: blur(10px); background-color: rgba(235, 235, 235, 0.7); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 4px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-3tRzl.framer-8kc28z, .framer-3tRzl.framer-1ogigk0, .framer-3tRzl.framer-1jxconi { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-3tRzl.framer-dt1xlr-container, .framer-3tRzl.framer-5rqerg-container { flex: none; height: auto; left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: auto; z-index: 10; }\",\".framer-3tRzl .framer-106z5n3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1560px; overflow: hidden; padding: 220px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-3tRzl .framer-ifnqgi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3tRzl .framer-11d7mtj, .framer-3tRzl .framer-gx8dqy, .framer-3tRzl .framer-y7vro0 { --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-3tRzl .framer-c0uj49 { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3tRzl .framer-1hwdyj3, .framer-3tRzl .framer-p57b89, .framer-3tRzl .framer-h0u6pt, .framer-3tRzl .framer-vfwgtt, .framer-3tRzl .framer-3bpkyx, .framer-3tRzl .framer-6me9uq, .framer-3tRzl .framer-j5ghob, .framer-3tRzl .framer-hdvmyx, .framer-3tRzl .framer-5aagsj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-3tRzl .framer-tby25g { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 620px; justify-content: flex-end; overflow: visible; padding: 0px 48px 0px 48px; position: relative; width: 100%; }\",\".framer-3tRzl .framer-15yod2q { -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: rgba(235, 235, 235, 0.4); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 18px 8px 8px; position: absolute; right: 36px; top: -18px; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-3tRzl .framer-axhzoi { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 64px; overflow: hidden; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3tRzl .framer-1txst0k-container { flex: none; height: 32px; left: calc(50.00000000000002% - 32px / 2); position: absolute; top: calc(50.00000000000002% - 32px / 2); width: 32px; }\",\".framer-3tRzl .framer-18qtn6i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-3tRzl.framer-1pujbc2 { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: fixed; top: 50%; transform: translate(-50%, -50%); width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 10; }\",\".framer-3tRzl .framer-1hwqsm2-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 304px); position: relative; width: 540px; }\",\".framer-3tRzl .framer-1me35nf { -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: rgba(235, 235, 235, 0.4); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 36px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: 192px; justify-content: center; overflow: hidden; padding: 54px 72px 18px 18px; position: absolute; right: 36px; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-3tRzl .framer-r1eaqq { aspect-ratio: 1 / 1; background-color: rgba(255, 255, 255, 0.2); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 66px); overflow: hidden; position: absolute; right: 16px; top: 16px; width: 66px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-3tRzl .framer-sp73xc-container { flex: none; height: 30px; left: calc(50.00000000000002% - 30px / 2); position: absolute; top: calc(50.00000000000002% - 30px / 2); width: 30px; }\",\".framer-3tRzl .framer-15k8n1q { align-content: flex-start; align-items: flex-start; 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: 100px; }\",\".framer-3tRzl .framer-10rp4u { align-content: center; align-items: center; background-color: var(--token-018638ab-6906-4f93-a993-1c197b597327, #1d3df3); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 3px 6px 3px 6px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-3tRzl .framer-llm5on { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 89px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3tRzl .framer-zuhbr5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1560px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3tRzl .framer-1csxibp-container { flex: 2 0 0px; height: 620px; position: relative; width: 1px; }\",\".framer-3tRzl .framer-1pwm0pl-container { flex: 1 0 0px; height: 620px; position: relative; width: 1px; }\",\".framer-3tRzl .framer-7mhrq3 { align-content: center; align-items: center; background-color: var(--token-a816bb28-2bc6-44b7-98d1-2f1db83a7e38, #f5f5f5); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: 230px; justify-content: center; max-width: 1560px; overflow: hidden; padding: 110px 32px 110px 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-3tRzl .framer-cqin0f, .framer-3tRzl .framer-6hywbh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 16px; overflow: visible; padding: 0px; position: absolute; right: 16px; top: 16px; z-index: 1; }\",\".framer-3tRzl .framer-nnlj9l, .framer-3tRzl .framer-g9ou82, .framer-3tRzl .framer-10seshh, .framer-3tRzl .framer-c5xu9v, .framer-3tRzl .framer-2p0snt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3tRzl .framer-1odwn37, .framer-3tRzl .framer-x3hsgg { aspect-ratio: 1 / 1; background-color: var(--token-018638ab-6906-4f93-a993-1c197b597327, #1d3df3); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 14px); overflow: hidden; position: relative; width: 14px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-3tRzl .framer-1c4ltml, .framer-3tRzl .framer-jpff9g { background-color: var(--token-a816bb28-2bc6-44b7-98d1-2f1db83a7e38, #f5f5f5); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 4px; left: calc(50.00000000000002% - 4px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 4px / 2); width: 4px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3tRzl .framer-18njhft, .framer-3tRzl .framer-18be74x { aspect-ratio: 1 / 1; background-color: var(--token-018638ab-6906-4f93-a993-1c197b597327, #1d3df3); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 14px); left: 50%; opacity: 0.4; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 14px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-3tRzl .framer-aatyki { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1560px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3tRzl .framer-1qxska1, .framer-3tRzl .framer-awli0n { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-3tRzl .framer-h5f69l-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-3tRzl .framer-1sj2api-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 379px); position: relative; width: 100%; }\",\".framer-3tRzl .framer-um42t0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-3tRzl .framer-b6hpx6-container, .framer-3tRzl .framer-ij4p5q-container { flex: none; height: 620px; position: relative; width: 100%; }\",\".framer-3tRzl .framer-my9lig { align-content: center; align-items: center; background-color: var(--token-a816bb28-2bc6-44b7-98d1-2f1db83a7e38, #f5f5f5); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 230px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-3tRzl .framer-1qgi47n-container { flex: none; height: 230px; position: relative; width: 100%; }\",\".framer-3tRzl .framer-1wgccrk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-end; max-width: 1560px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3tRzl .framer-1a2w9og { display: grid; flex: 1 0 0px; gap: 16px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-3tRzl .framer-1ta7tn2-container { align-self: start; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 379px); justify-self: start; position: relative; width: 100%; }\",\".framer-3tRzl .framer-94pq4q { align-content: center; align-items: center; background-color: var(--token-018638ab-6906-4f93-a993-1c197b597327, #1d3df3); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 230px; justify-content: center; max-width: 1560px; overflow: hidden; padding: 110px 0px 110px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-3tRzl .framer-1yslmxc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-3tRzl .framer-1n32g2y { 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: 16px; overflow: visible; padding: 0px; position: absolute; right: 16px; top: 16px; z-index: 1; }\",\".framer-3tRzl .framer-1p8mgvl { aspect-ratio: 1 / 1; background-color: var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, #ffffff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 14px); overflow: hidden; position: relative; width: 14px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-3tRzl .framer-1wryz { background-color: var(--token-018638ab-6906-4f93-a993-1c197b597327, #1d3df3); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 4px; left: calc(50.00000000000002% - 4px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 4px / 2); width: 4px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3tRzl .framer-czg3ge { aspect-ratio: 1 / 1; background-color: var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, #ffffff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 14px); left: 50%; opacity: 0.4; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 14px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-3tRzl .framer-nb3msf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1560px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3tRzl .framer-18cciht-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-3tRzl .framer-18wu2gm-container { bottom: 64px; flex: none; height: auto; position: fixed; right: 20px; width: 142px; z-index: 3; }\",\".framer-3tRzl .framer-gpvpwe-container { flex: none; height: auto; position: fixed; right: 8px; top: 8px; width: auto; z-index: 10; }\",\".framer-3tRzl .framer-1682qc1-container { bottom: 110px; flex: none; height: auto; position: fixed; right: 20px; width: auto; z-index: 7; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3tRzl.framer-72rtr7, .framer-3tRzl .framer-2dfx3j, .framer-3tRzl .framer-1etim3u, .framer-3tRzl .framer-106z5n3, .framer-3tRzl .framer-ifnqgi, .framer-3tRzl .framer-c0uj49, .framer-3tRzl .framer-tby25g, .framer-3tRzl .framer-15yod2q, .framer-3tRzl .framer-18qtn6i, .framer-3tRzl.framer-1pujbc2, .framer-3tRzl .framer-1me35nf, .framer-3tRzl .framer-15k8n1q, .framer-3tRzl .framer-10rp4u, .framer-3tRzl .framer-llm5on, .framer-3tRzl .framer-zuhbr5, .framer-3tRzl .framer-7mhrq3, .framer-3tRzl .framer-nnlj9l, .framer-3tRzl .framer-g9ou82, .framer-3tRzl .framer-aatyki, .framer-3tRzl .framer-1qxska1, .framer-3tRzl .framer-um42t0, .framer-3tRzl .framer-my9lig, .framer-3tRzl .framer-10seshh, .framer-3tRzl .framer-c5xu9v, .framer-3tRzl .framer-awli0n, .framer-3tRzl .framer-1wgccrk, .framer-3tRzl .framer-94pq4q, .framer-3tRzl .framer-1n32g2y, .framer-3tRzl .framer-2p0snt, .framer-3tRzl .framer-nb3msf { gap: 0px; } .framer-3tRzl.framer-72rtr7 > *, .framer-3tRzl .framer-1qxska1 > *, .framer-3tRzl .framer-um42t0 > *, .framer-3tRzl .framer-awli0n > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-3tRzl.framer-72rtr7 > :first-child, .framer-3tRzl .framer-106z5n3 > :first-child, .framer-3tRzl .framer-ifnqgi > :first-child, .framer-3tRzl .framer-tby25g > :first-child, .framer-3tRzl .framer-18qtn6i > :first-child, .framer-3tRzl.framer-1pujbc2 > :first-child, .framer-3tRzl .framer-15k8n1q > :first-child, .framer-3tRzl .framer-llm5on > :first-child, .framer-3tRzl .framer-7mhrq3 > :first-child, .framer-3tRzl .framer-1qxska1 > :first-child, .framer-3tRzl .framer-um42t0 > :first-child, .framer-3tRzl .framer-my9lig > :first-child, .framer-3tRzl .framer-awli0n > :first-child, .framer-3tRzl .framer-94pq4q > :first-child, .framer-3tRzl .framer-nb3msf > :first-child { margin-top: 0px; } .framer-3tRzl.framer-72rtr7 > :last-child, .framer-3tRzl .framer-106z5n3 > :last-child, .framer-3tRzl .framer-ifnqgi > :last-child, .framer-3tRzl .framer-tby25g > :last-child, .framer-3tRzl .framer-18qtn6i > :last-child, .framer-3tRzl.framer-1pujbc2 > :last-child, .framer-3tRzl .framer-15k8n1q > :last-child, .framer-3tRzl .framer-llm5on > :last-child, .framer-3tRzl .framer-7mhrq3 > :last-child, .framer-3tRzl .framer-1qxska1 > :last-child, .framer-3tRzl .framer-um42t0 > :last-child, .framer-3tRzl .framer-my9lig > :last-child, .framer-3tRzl .framer-awli0n > :last-child, .framer-3tRzl .framer-94pq4q > :last-child, .framer-3tRzl .framer-nb3msf > :last-child { margin-bottom: 0px; } .framer-3tRzl .framer-2dfx3j > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-3tRzl .framer-2dfx3j > :first-child, .framer-3tRzl .framer-1etim3u > :first-child, .framer-3tRzl .framer-c0uj49 > :first-child, .framer-3tRzl .framer-15yod2q > :first-child, .framer-3tRzl .framer-1me35nf > :first-child, .framer-3tRzl .framer-10rp4u > :first-child, .framer-3tRzl .framer-zuhbr5 > :first-child, .framer-3tRzl .framer-nnlj9l > :first-child, .framer-3tRzl .framer-g9ou82 > :first-child, .framer-3tRzl .framer-aatyki > :first-child, .framer-3tRzl .framer-10seshh > :first-child, .framer-3tRzl .framer-c5xu9v > :first-child, .framer-3tRzl .framer-1wgccrk > :first-child, .framer-3tRzl .framer-1n32g2y > :first-child, .framer-3tRzl .framer-2p0snt > :first-child { margin-left: 0px; } .framer-3tRzl .framer-2dfx3j > :last-child, .framer-3tRzl .framer-1etim3u > :last-child, .framer-3tRzl .framer-c0uj49 > :last-child, .framer-3tRzl .framer-15yod2q > :last-child, .framer-3tRzl .framer-1me35nf > :last-child, .framer-3tRzl .framer-10rp4u > :last-child, .framer-3tRzl .framer-zuhbr5 > :last-child, .framer-3tRzl .framer-nnlj9l > :last-child, .framer-3tRzl .framer-g9ou82 > :last-child, .framer-3tRzl .framer-aatyki > :last-child, .framer-3tRzl .framer-10seshh > :last-child, .framer-3tRzl .framer-c5xu9v > :last-child, .framer-3tRzl .framer-1wgccrk > :last-child, .framer-3tRzl .framer-1n32g2y > :last-child, .framer-3tRzl .framer-2p0snt > :last-child { margin-right: 0px; } .framer-3tRzl .framer-1etim3u > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-3tRzl .framer-106z5n3 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-3tRzl .framer-ifnqgi > *, .framer-3tRzl .framer-18qtn6i > *, .framer-3tRzl .framer-llm5on > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-3tRzl .framer-c0uj49 > *, .framer-3tRzl .framer-10rp4u > *, .framer-3tRzl .framer-nnlj9l > *, .framer-3tRzl .framer-g9ou82 > *, .framer-3tRzl .framer-10seshh > *, .framer-3tRzl .framer-c5xu9v > *, .framer-3tRzl .framer-1n32g2y > *, .framer-3tRzl .framer-2p0snt > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-3tRzl .framer-tby25g > *, .framer-3tRzl.framer-1pujbc2 > *, .framer-3tRzl .framer-my9lig > *, .framer-3tRzl .framer-nb3msf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-3tRzl .framer-15yod2q > *, .framer-3tRzl .framer-1me35nf > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-3tRzl .framer-15k8n1q > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-3tRzl .framer-zuhbr5 > *, .framer-3tRzl .framer-aatyki > *, .framer-3tRzl .framer-1wgccrk > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-3tRzl .framer-7mhrq3 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-3tRzl .framer-94pq4q > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-3tRzl.framer-72rtr7 { gap: 12px; padding: 12px; width: 810px; } .framer-3tRzl .framer-2dfx3j { top: 12px; } .framer-3tRzl .framer-tby25g, .framer-3tRzl .framer-1csxibp-container, .framer-3tRzl .framer-1pwm0pl-container, .framer-3tRzl .framer-ij4p5q-container { height: 480px; } .framer-3tRzl .framer-15yod2q { right: 24px; width: 233px; } .framer-3tRzl.framer-1pujbc2 { width: 540px; } .framer-3tRzl .framer-1me35nf { bottom: 24px; right: 24px; width: 190px; } .framer-3tRzl .framer-zuhbr5 { gap: 12px; } .framer-3tRzl .framer-7mhrq3, .framer-3tRzl .framer-1qgi47n-container, .framer-3tRzl .framer-94pq4q { height: 200px; } .framer-3tRzl .framer-aatyki { flex-direction: column; gap: 12px; } .framer-3tRzl .framer-1qxska1 { align-self: unset; flex: none; flex-direction: row; gap: 12px; height: min-content; width: 100%; } .framer-3tRzl .framer-h5f69l-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 387px); width: 1px; } .framer-3tRzl .framer-1sj2api-container { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 387px); width: 1px; } .framer-3tRzl .framer-um42t0 { flex: none; flex-direction: row; gap: 12px; width: 100%; } .framer-3tRzl .framer-b6hpx6-container, .framer-3tRzl .framer-my9lig { aspect-ratio: 1 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 387px); width: 1px; } .framer-3tRzl .framer-awli0n { align-self: unset; flex: none; gap: 12px; height: min-content; width: 100%; } .framer-3tRzl .framer-1a2w9og { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; justify-content: flex-start; } .framer-3tRzl .framer-1ta7tn2-container { align-self: unset; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 387px); width: 1px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3tRzl.framer-72rtr7, .framer-3tRzl .framer-zuhbr5, .framer-3tRzl .framer-aatyki, .framer-3tRzl .framer-1qxska1, .framer-3tRzl .framer-um42t0, .framer-3tRzl .framer-awli0n, .framer-3tRzl .framer-1a2w9og { gap: 0px; } .framer-3tRzl.framer-72rtr7 > *, .framer-3tRzl .framer-aatyki > *, .framer-3tRzl .framer-awli0n > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-3tRzl.framer-72rtr7 > :first-child, .framer-3tRzl .framer-aatyki > :first-child, .framer-3tRzl .framer-awli0n > :first-child { margin-top: 0px; } .framer-3tRzl.framer-72rtr7 > :last-child, .framer-3tRzl .framer-aatyki > :last-child, .framer-3tRzl .framer-awli0n > :last-child { margin-bottom: 0px; } .framer-3tRzl .framer-zuhbr5 > *, .framer-3tRzl .framer-1qxska1 > *, .framer-3tRzl .framer-um42t0 > *, .framer-3tRzl .framer-1a2w9og > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-3tRzl .framer-zuhbr5 > :first-child, .framer-3tRzl .framer-1qxska1 > :first-child, .framer-3tRzl .framer-um42t0 > :first-child, .framer-3tRzl .framer-1a2w9og > :first-child { margin-left: 0px; } .framer-3tRzl .framer-zuhbr5 > :last-child, .framer-3tRzl .framer-1qxska1 > :last-child, .framer-3tRzl .framer-um42t0 > :last-child, .framer-3tRzl .framer-1a2w9og > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-3tRzl.framer-72rtr7 { gap: 8px; padding: 8px; width: 390px; } .framer-3tRzl .framer-106z5n3 { padding: 160px 0px 0px 0px; } .framer-3tRzl .framer-15yod2q { right: 18px; width: 233px; } .framer-3tRzl.framer-1pujbc2 { left: 16px; right: 16px; transform: translateY(-50%); width: unset; } .framer-3tRzl .framer-1hwqsm2-container { height: var(--framer-aspect-ratio-supported, 113px); width: 100%; } .framer-3tRzl .framer-1me35nf { bottom: 18px; flex-direction: column; right: 18px; width: 190px; } .framer-3tRzl .framer-llm5on { height: 87px; } .framer-3tRzl .framer-zuhbr5, .framer-3tRzl .framer-aatyki { flex-direction: column; gap: 8px; } .framer-3tRzl .framer-1csxibp-container, .framer-3tRzl .framer-1pwm0pl-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); width: 100%; } .framer-3tRzl .framer-7mhrq3 { height: 183px; padding: 0px 32px 0px 32px; } .framer-3tRzl .framer-1qxska1, .framer-3tRzl .framer-awli0n { align-self: unset; flex: none; gap: 8px; height: min-content; width: 100%; } .framer-3tRzl .framer-h5f69l-container { aspect-ratio: 1.5583333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 128px); } .framer-3tRzl .framer-1sj2api-container { height: var(--framer-aspect-ratio-supported, 200px); } .framer-3tRzl .framer-um42t0 { flex: none; gap: 8px; width: 100%; } .framer-3tRzl .framer-b6hpx6-container, .framer-3tRzl .framer-ij4p5q-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 200px); } .framer-3tRzl .framer-1qgi47n-container { height: 183px; } .framer-3tRzl .framer-1wgccrk { gap: 8px; } .framer-3tRzl .framer-1a2w9og { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; justify-content: flex-start; } .framer-3tRzl .framer-1ta7tn2-container { align-self: unset; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 200px); width: 1px; } .framer-3tRzl.framer-5rqerg-container { left: 16px; right: 16px; top: 50%; transform: translateY(-50%); width: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3tRzl.framer-72rtr7, .framer-3tRzl .framer-1me35nf, .framer-3tRzl .framer-zuhbr5, .framer-3tRzl .framer-aatyki, .framer-3tRzl .framer-1qxska1, .framer-3tRzl .framer-um42t0, .framer-3tRzl .framer-awli0n, .framer-3tRzl .framer-1wgccrk, .framer-3tRzl .framer-1a2w9og { gap: 0px; } .framer-3tRzl.framer-72rtr7 > *, .framer-3tRzl .framer-zuhbr5 > *, .framer-3tRzl .framer-aatyki > *, .framer-3tRzl .framer-1qxska1 > *, .framer-3tRzl .framer-um42t0 > *, .framer-3tRzl .framer-awli0n > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-3tRzl.framer-72rtr7 > :first-child, .framer-3tRzl .framer-1me35nf > :first-child, .framer-3tRzl .framer-zuhbr5 > :first-child, .framer-3tRzl .framer-aatyki > :first-child, .framer-3tRzl .framer-1qxska1 > :first-child, .framer-3tRzl .framer-um42t0 > :first-child, .framer-3tRzl .framer-awli0n > :first-child { margin-top: 0px; } .framer-3tRzl.framer-72rtr7 > :last-child, .framer-3tRzl .framer-1me35nf > :last-child, .framer-3tRzl .framer-zuhbr5 > :last-child, .framer-3tRzl .framer-aatyki > :last-child, .framer-3tRzl .framer-1qxska1 > :last-child, .framer-3tRzl .framer-um42t0 > :last-child, .framer-3tRzl .framer-awli0n > :last-child { margin-bottom: 0px; } .framer-3tRzl .framer-1me35nf > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-3tRzl .framer-1wgccrk > *, .framer-3tRzl .framer-1a2w9og > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-3tRzl .framer-1wgccrk > :first-child, .framer-3tRzl .framer-1a2w9og > :first-child { margin-left: 0px; } .framer-3tRzl .framer-1wgccrk > :last-child, .framer-3tRzl .framer-1a2w9og > :last-child { margin-right: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3817.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kC3am_PFy\":{\"layout\":[\"fixed\",\"auto\"]},\"w9b_aIZ1J\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-3tRzl\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:3817.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter Display\",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/ePuN3mCjzajIHnyCdvKBFiZkyY0.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/V3j1L0o5vPFKe26Sw4HcpXCfHo.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/F3kdpd2N0cToWV5huaZjjgM.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/0iDmxkizU9goZoclqIqsV5rvETU.woff2\",weight:\"500\"},{family:\"Inter Display\",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/r0mv3NegmA0akcQsNFotG32Las.woff2\",weight:\"500\"},{family:\"Inter Display\",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/8yoV9pUxquX7VD7ZXlNYKQmkmk.woff2\",weight:\"500\"},{family:\"Inter Display\",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/Ii21jnSJkulBKsHHXKlapi7fv9w.woff2\",weight:\"500\"},{family:\"Inter Display\",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/gazZKZuUEtvr9ULhdA4SprP0AZ0.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/pe8RoujoPxuTZhqoNzYqHX2MXA.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/teGhWnhH3bCqefKGsIsqFy3hK8.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/qQHxgTnEk6Czu1yW4xS82HQWFOk.woff2\",weight:\"600\"},{family:\"Inter Display\",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/MJ3N6lfN4iP5Um8rJGqLYl03tE.woff2\",weight:\"600\"},{family:\"Inter Display\",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/dHHUz45rhM2KCQpj9zttNVlibk.woff2\",weight:\"600\"},{family:\"Inter Display\",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/0SEEmmWc3vovhaai4RlRQSWRrz0.woff2\",weight:\"600\"},{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"},{family:\"Inter Display\",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/2uIBiALfCHVpWbHqRMZutfT7giU.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Zwfz6xbVe5pmcWRJRgBDHnMkOkI.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/U9LaDDmbRhzX3sB8g8glTy5feTE.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tVew2LzXJ1t7QfxP1gdTIdj2o0g.woff2\",weight:\"400\"},{family:\"Inter Display\",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/DF7bjCRmStYPqSb945lAlMfCCVQ.woff2\",weight:\"400\"},{family:\"Inter Display\",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/nCpxWS6DaPlPe0lHzStXAPCo3lw.woff2\",weight:\"400\"},{family:\"Inter Display\",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/vebZUMjGyKkYsfcY73iwWTzLNag.woff2\",weight:\"400\"}]},...NavigationDesktopTabletFonts,...NavigationItemFonts,...ContactFonts,...TypewriterFonts,...MaterialFonts,...YouTubeFonts,...CounterFonts,...CardImageBackgroundFonts,...CardAboutFonts,...CardTestimonialsFonts,...Typewriter1Fonts,...CardLogosFonts,...FooterFonts,...ButtonBuyTemplateFonts,...NavigationMobileFonts,...BuyButton2Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kC3am_PFy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w9b_aIZ1J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"3817.5\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "CounterStyles", "Counter", "props", "start", "end", "speed", "gapSize", "prefixText", "suffixText", "prefixFont", "suffixFont", "prefixColor", "suffixColor", "loop", "decimalSeparatorType", "textSize", "selectedFont", "textColor", "startOnViewport", "restartOnViewport", "incrementType", "count", "setCount", "ye", "isVisible", "setIsVisible", "containerRef", "pe", "ue", "observer", "entries", "entry", "updateCount", "increment", "prevCount", "intervalId", "formatNumber", "number", "u", "motion", "p", "addPropertyControls", "ControlType", "empty_js_0_1_default", "o", "npm_react_18_2_exports", "e", "h", "global", "b", "_", "empty_js_0_1_default", "t", "r", "F", "a", "i", "s", "T", "A", "S", "N", "C", "P", "L", "k", "D", "M", "R", "g", "w", "O", "x", "j", "E", "m", "z", "Q", "I", "U", "H", "B", "q", "V", "W", "$", "G", "Y", "J", "X", "K", "Z", "ee", "te", "re", "ne", "oe", "ae", "ie", "window", "u", "c", "n", "p", "l", "f", "v", "d", "y", "headingStyles", "props", "TypeWriter", "isCanvas", "RenderTarget", "strings", "content", "canvasContent", "Tag", "cursorStyles", "TypeWriterPure", "p", "m", "typewriter", "state", "TypeWriterWithCSS", "withCSS", "addPropertyControls", "ControlType", "headingStyles", "props", "TypeWriter", "isCanvas", "RenderTarget", "isPreview", "strings", "content", "canvasContent", "Tag", "cursorStyles", "TypeWriterPure", "p", "m", "typewriter", "state", "TypeWriterWithCSS", "withCSS", "addPropertyControls", "ControlType", "MotionDivWithFX", "withFX", "motion", "ButtonUnderlineButtonFonts", "getFonts", "kvdO6qC5Y_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterymd81u", "args", "onMouseLeaveb9bbqq", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "css", "FramerMyFTGmd0R", "withCSS", "MyFTGmd0R_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "name1", "position", "testimonial", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "z9tyCPGsX", "c8B0Tzied", "YQrXBSDaJ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "RichText2", "css", "FramerAd5x5Zm52", "withCSS", "Ad5x5Zm52_default", "addPropertyControls", "ControlType", "addFonts", "CardTestimonialSingleFonts", "getFonts", "Ad5x5Zm52_default", "SlideshowFonts", "Slideshow", "MotionDivWithFX", "withFX", "motion", "serializationHash", "variantClassNames", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "Slideshow", "Ad5x5Zm52_default", "MotionDivWithFX", "RichText2", "css", "Framerr7BDCCFR1", "withCSS", "r7BDCCFR1_default", "addFonts", "CardTestimonialSingleFonts", "SlideshowFonts", "getFontsFromSharedStyle", "fonts", "NavigationDesktopTabletFonts", "getFonts", "jSG8gZSUf_default", "NavigationItemFonts", "IDfgu6I7c_default", "ContactFonts", "KyxhGMvzS_default", "MotionDivWithFX", "withFX", "motion", "TypewriterFonts", "TypeWriter", "MaterialFonts", "Icon", "YouTubeFonts", "Youtube", "CounterFonts", "Counter", "CardImageBackgroundFonts", "m5pvhA6zN_default", "CardAboutFonts", "MyFTGmd0R_default", "CardTestimonialsFonts", "r7BDCCFR1_default", "Typewriter1Fonts", "CardLogosFonts", "tF9lNQdHg_default", "FooterFonts", "VmfIUpPuw_default", "ButtonBuyTemplateFonts", "j7dQ6HCiz_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "NavigationMobileFonts", "Jg2dk8JPt_default", "BuyButton2Fonts", "Ccg9Gw60Y_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transformTemplate1", "_", "t", "transition2", "animation1", "transformTemplate2", "animation2", "animation3", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition3", "animation4", "transformTemplate3", "addImageAlt", "image", "alt", "transition4", "animation5", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "QueryData", "query", "pageSize", "data", "useQueryData", "transition5", "animation6", "animation7", "transition6", "animation8", "animation9", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "tz9eHBCBG", "EwkaGyYLzfvoShRPbE", "obJRmkT7BfvoShRPbE", "gKxhWCCi6fvoShRPbE", "Q1O4v8_hBfvoShRPbE", "idfvoShRPbE", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "l", "AnimatePresence", "Ga", "x", "RichText2", "getLoadingLazyAtYPosition", "Image2", "overlay1", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "ChildrenCanSuspend", "uVM3A9zW6_default", "collection", "paginationInfo", "index", "PathVariablesContext", "resolvedLinks4", "overlay2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
