{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js", "ssg:https://framerusercontent.com/modules/0hvGMEsWVyJ9uglz9dCO/jOSEKzLQA3FKLNYNPd4o/DafdPwBX7.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState,useSyncExternalStore}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={}));let _isBot=null;function isBot(){if(_isBot===null)_isBot=/bot|-Google|Google-|yandex|ia_archiver/iu.test(navigator.userAgent);return _isBot;}const emptySubscribe=()=>()=>{};/**\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);// https://tkdodo.eu/blog/avoiding-hydration-mismatches-with-use-sync-external-store#usesyncexternalstore\nconst iframeIsDefaultVisible=useSyncExternalStore(emptySubscribe,// bots should not have display:none on the iframe\n()=>isBot(),()=>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://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\");// 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(// bots shouldn't autoplay the video but see the iframe in the DOM\n!iframeIsDefaultVisible&&(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\");}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(${thumbnailURL}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{title:title||\"Youtube Video\",style:{...videoStyle,display:showVideo||iframeIsDefaultVisible?undefined:\"none\"},src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp,loading:\"lazy\"}):null,showVideo||iframeIsDefaultVisible?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 element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn 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\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicWidth\":\"560\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (ae50a0d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,NotFoundError,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js\";import FooterNew from\"#framer/local/canvasComponent/n5CfX5z5S/n5CfX5z5S.js\";import ButtonCopy from\"#framer/local/canvasComponent/PvU4IC6xg/PvU4IC6xg.js\";import NavigationBar from\"#framer/local/canvasComponent/qxYWctY_B/qxYWctY_B.js\";import Blog from\"#framer/local/collection/FG8en89sc/FG8en89sc.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle8 from\"#framer/local/css/aAdohScXF/aAdohScXF.js\";import*as sharedStyle2 from\"#framer/local/css/Cb_iZ2Svu/Cb_iZ2Svu.js\";import*as sharedStyle5 from\"#framer/local/css/d8qIFjoFA/d8qIFjoFA.js\";import*as sharedStyle from\"#framer/local/css/GgkxcHS5W/GgkxcHS5W.js\";import*as sharedStyle4 from\"#framer/local/css/nBG1vxcyR/nBG1vxcyR.js\";import*as sharedStyle7 from\"#framer/local/css/pw7gvJxh9/pw7gvJxh9.js\";import*as sharedStyle3 from\"#framer/local/css/xhxxMJ8Wq/xhxxMJ8Wq.js\";import*as sharedStyle1 from\"#framer/local/css/xtc8PJ63m/xtc8PJ63m.js\";import*as sharedStyle9 from\"#framer/local/css/zDETR43S6/zDETR43S6.js\";import*as sharedStyle10 from\"#framer/local/css/zLSXtncfE/zLSXtncfE.js\";import*as sharedStyle6 from\"#framer/local/css/ZZtdQh5ZZ/ZZtdQh5ZZ.js\";import metadataProvider from\"#framer/local/webPageMetadata/DafdPwBX7/DafdPwBX7.js\";const NavigationBarFonts=getFonts(NavigationBar);const NavigationBarWithVariantAppearEffect=withVariantAppearEffect(NavigationBar);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const YouTubeFonts=getFonts(YouTube);const RichTextWithFX=withFX(RichText);const ButtonCopyFonts=getFonts(ButtonCopy);const FooterNewFonts=getFonts(FooterNew);const breakpoints={AXWFocRmr:\"(min-width: 1200px)\",vad4QnUT8:\"(max-width: 809px)\",ZvhAGgwqb:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-sW1fK\";const variantClassNames={AXWFocRmr:\"framer-v-13n2dxp\",vad4QnUT8:\"framer-v-191m7mc\",ZvhAGgwqb:\"framer-v-92o0kr\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={delay:0,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:50};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition2={delay:.3,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"AXWFocRmr\",Phone:\"vad4QnUT8\",Tablet:\"ZvhAGgwqb\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"AXWFocRmr\"};};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"DafdPwBX7\",data:Blog,type:\"Collection\"},select:[{collection:\"DafdPwBX7\",name:\"kXDCJgSXn\",type:\"Identifier\"},{collection:\"DafdPwBX7\",name:\"Db0fytyFo\",type:\"Identifier\"},{collection:\"DafdPwBX7\",name:\"qmqxAAGwA\",type:\"Identifier\"},{collection:\"DafdPwBX7\",name:\"wo7QV29v3\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"DafdPwBX7\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,kXDCJgSXn=getFromCurrentRouteData(\"kXDCJgSXn\")??\"\",wo7QV29v3=getFromCurrentRouteData(\"wo7QV29v3\")??\"\",qmqxAAGwA=getFromCurrentRouteData(\"qmqxAAGwA\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,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);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const elementId=useRouteElementId(\"GRIhlkdxs\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"gVBBxPDzN\");const ref2=React.useRef(null);const visible=isSet(wo7QV29v3);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"vad4QnUT8\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"AXWFocRmr\",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-13n2dxp\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"f1RXHFDuQ\"},implicitPathVariables:undefined},{href:{webPageId:\"f1RXHFDuQ\"},implicitPathVariables:undefined},{href:{webPageId:\"f1RXHFDuQ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gvr2xd-container\",layoutScroll:true,nodeId:\"juAtpOLAS\",rendersWithMotion:true,scopeId:\"DafdPwBX7\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vad4QnUT8:{__framer__variantAppearEffectEnabled:undefined,POogJv5k3:resolvedLinks[2],variant:\"vaBAD4jZF\"},ZvhAGgwqb:{__framer__variantAppearEffectEnabled:undefined,POogJv5k3:resolvedLinks[1],variant:\"vaBAD4jZF\"}},children:/*#__PURE__*/_jsx(NavigationBarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:0,__framer__variantAppearEffectEnabled:true,DVIPsZmwv:\"Sign up\",F05SxJaXC:\"JvYBFGYwe\",hCejJBcPa:true,height:\"100%\",id:\"juAtpOLAS\",K0nIovQsj:true,L4MHUhgHx:\"https://my.augie.studio/register\",layoutId:\"juAtpOLAS\",POogJv5k3:resolvedLinks[0],style:{width:\"100%\"},variant:\"IllE58PWI\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t5js7o\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kov9z4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jru29e\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1783qh1\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ri80pw\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-3anbt3\",\"data-framer-name\":\"Left\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7yteqs\",\"data-framer-name\":\"Heading and supporting text\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-79t8mp\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16lvb8p\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kuk65u\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-tvzft9\",\"data-styles-preset\":\"GgkxcHS5W\",style:{\"--framer-text-color\":\"var(--token-4d6f5adf-af36-4f4b-bb04-78d6707d64bc, rgb(255, 255, 255))\"},children:\"State of Marketing: The Rise of AI Video Production for Advertising and Social Media\"})}),className:\"framer-1d0yjr1\",\"data-framer-appear-id\":\"1d0yjr1\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},text:kXDCJgSXn,verticalAlignment:\"top\",withExternalLayout:true})})})})})})})})}),visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-qkwb5o\",children:visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qm3c6g-container\",isModuleExternal:true,nodeId:\"PbPtNATMp\",scopeId:\"DafdPwBX7\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,height:\"100%\",id:\"PbPtNATMp\",isMixedBorderRadius:false,isRed:true,layoutId:\"PbPtNATMp\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:16,topRightRadius:16,url:wo7QV29v3,width:\"100%\"})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-biagbs hidden-13n2dxp hidden-92o0kr\",\"data-framer-name\":\"Gradient\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-molkj1\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hr8hqb\",\"data-framer-name\":\"Gradient\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-avgem0\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jnco11\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-fv6h6a\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a2697\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10wgwbj\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-8sk5lc\",\"data-framer-name\":\"Heading and supporting text\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1np3s3p\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/LPTFCIP00KeG4YaFsoNu/YouTube.js:Youtube\":componentPresets.props[\"AhJ_OnzIR\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"HGOJAPC8g\"]},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:qmqxAAGwA,className:\"framer-nx0uch\",\"data-framer-name\":\"Meta Description\",fonts:[\"Inter\"],style:{transformPerspective:1200},stylesPresetsClassNames:{a:\"framer-styles-preset-1pmp3vy\",code:\"framer-styles-preset-19f031t\",h1:\"framer-styles-preset-1qvktvw\",h2:\"framer-styles-preset-q01kck\",h3:\"framer-styles-preset-1tg20n9\",h4:\"framer-styles-preset-jxuwpi\",h5:\"framer-styles-preset-o0e4zx\",h6:\"framer-styles-preset-4xzxtz\",img:\"framer-styles-preset-1t5dec3\",p:\"framer-styles-preset-1ykb308\"},verticalAlignment:\"top\",withExternalLayout:true})})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13d4rkv\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16bg845\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p49p2y\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-csys4q\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12zv85m\",\"data-framer-name\":\"Heading and supporting text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2tdd7c\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-tvzft9\",\"data-styles-preset\":\"GgkxcHS5W\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4d6f5adf-af36-4f4b-bb04-78d6707d64bc, rgb(255, 255, 255))\"},children:\"Video is hard. \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4d6f5adf-af36-4f4b-bb04-78d6707d64bc, rgb(255, 255, 255))\"},children:\"Augie is easy.\"})]})}),className:\"framer-1uei5a0\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vad4QnUT8:{y:(componentViewport?.y||0)+0+368+50+0+24+0+0+0+0+0+0+122},ZvhAGgwqb:{y:(componentViewport?.y||0)+0+468+50+0+0+0+0+0+0+0+32+122}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:(componentViewport?.y||0)+0+542+64+0+48+0+0+0+0+0+32+122,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ovdxby-container\",nodeId:\"Yx3Q1fMQE\",scopeId:\"DafdPwBX7\",children:/*#__PURE__*/_jsx(ButtonCopy,{dMSsnwHK8:\"Try Augie Now\",height:\"100%\",id:\"Yx3Q1fMQE\",layoutId:\"Yx3Q1fMQE\",uNPFZriKH:\"meetaugie.com\",variant:\"oAhXFarkp\",width:\"100%\",XHegEYbzM:false})})})})]})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vad4QnUT8:{y:(componentViewport?.y||0)+0+694},ZvhAGgwqb:{y:(componentViewport?.y||0)+0+810}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:432,width:`calc(${componentViewport?.width||\"100vw\"} * 1.0042)`,y:(componentViewport?.y||0)+0+1008,children:/*#__PURE__*/_jsx(Container,{className:\"framer-e1wx7w-container\",nodeId:\"F0OTve2Px\",scopeId:\"DafdPwBX7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vad4QnUT8:{SegditTAT:resolvedLinks1[2],variant:\"JaxQQVc_L\"},ZvhAGgwqb:{SegditTAT:resolvedLinks1[1],variant:\"Zazspej7I\"}},children:/*#__PURE__*/_jsx(FooterNew,{height:\"100%\",id:\"F0OTve2Px\",layoutId:\"F0OTve2Px\",SegditTAT:resolvedLinks1[0],style:{width:\"100%\"},variant:\"tjXhVDJWi\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sW1fK.framer-xhjjbb, .framer-sW1fK .framer-xhjjbb { display: block; }\",\".framer-sW1fK.framer-13n2dxp { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-sW1fK .framer-gvr2xd-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-sW1fK .framer-1t5js7o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 150px 64px 80px 64px; position: relative; width: 100%; }\",\".framer-sW1fK .framer-kov9z4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-sW1fK .framer-1jru29e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-sW1fK .framer-1783qh1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sW1fK .framer-1ri80pw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1300px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-sW1fK .framer-3anbt3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sW1fK .framer-7yteqs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 50px; width: 100%; z-index: 2; }\",\".framer-sW1fK .framer-79t8mp { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sW1fK .framer-16lvb8p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sW1fK .framer-1kuk65u { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1300px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-sW1fK .framer-1d0yjr1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-sW1fK .framer-qkwb5o { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 1px 32px 0px rgba(185, 156, 250, 0.3); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 604px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sW1fK .framer-1qm3c6g-container { aspect-ratio: 1.7759197324414715 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); position: relative; width: 100%; z-index: 1; }\",\".framer-sW1fK .framer-biagbs { -webkit-backdrop-filter: blur(0px); -webkit-filter: blur(0px); align-content: center; align-items: center; backdrop-filter: blur(0px); display: flex; filter: blur(0px); flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 413px; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 100%; }\",'.framer-sW1fK .framer-molkj1 { background: conic-gradient(from 208deg at 48.8% 57.3%, var(--token-4bd306b1-f87f-46b5-9154-295ddf3c4b44, #b99cfa) /* {\"name\":\"Purple 1\"} */ 0deg, var(--token-cc706fa8-f72e-4df3-a12b-c117cbfbb9aa, rgb(141, 96, 245)) /* {\"name\":\"Purple 2\"} */ 116.75675675675676deg, var(--token-7bb6c2de-4b7c-41ab-bba7-d4c8e708856a, rgb(94, 63, 167)) /* {\"name\":\"Purple 3\"} */ 248.1081081081081deg, var(--token-5d8d91d3-14af-4b7b-94f6-fc96ccaa6931, rgb(53, 31, 108)) /* {\"name\":\"Purple 4\"} */ 360deg); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }',\".framer-sW1fK .framer-1hr8hqb { -webkit-backdrop-filter: blur(0px); -webkit-filter: blur(0px); align-content: center; align-items: center; backdrop-filter: blur(0px); display: flex; filter: blur(0px); flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 711px; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 100%; }\",'.framer-sW1fK .framer-avgem0 { background: linear-gradient(180deg, var(--token-4bd306b1-f87f-46b5-9154-295ddf3c4b44, #b99cfa) /* {\"name\":\"Purple 1\"} */ 0%, var(--token-cc706fa8-f72e-4df3-a12b-c117cbfbb9aa, rgb(141, 96, 245)) /* {\"name\":\"Purple 2\"} */ 0%, var(--token-7bb6c2de-4b7c-41ab-bba7-d4c8e708856a, rgb(94, 63, 167)) /* {\"name\":\"Purple 3\"} */ 121.4534776600645%, var(--token-5d8d91d3-14af-4b7b-94f6-fc96ccaa6931, rgb(53, 31, 108)) /* {\"name\":\"Purple 4\"} */ 385%); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }',\".framer-sW1fK .framer-1jnco11 { align-content: center; align-items: center; background-color: var(--token-4d6f5adf-af36-4f4b-bb04-78d6707d64bc, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 64px 80px 64px; position: relative; width: 100%; }\",\".framer-sW1fK .framer-fv6h6a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sW1fK .framer-1a2697 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-sW1fK .framer-10wgwbj, .framer-sW1fK .framer-csys4q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sW1fK .framer-8sk5lc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1300px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-sW1fK .framer-1np3s3p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sW1fK .framer-nx0uch { flex: none; height: auto; max-width: 1280px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-sW1fK .framer-13d4rkv { align-content: center; align-items: center; background-color: var(--token-cc706fa8-f72e-4df3-a12b-c117cbfbb9aa, #8d60f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 64px; position: relative; width: 100%; }\",\".framer-sW1fK .framer-16bg845 { align-content: center; align-items: center; border-bottom-left-radius: 56px; border-bottom-right-radius: 56px; border-top-left-radius: 56px; border-top-right-radius: 56px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1300px; overflow: hidden; padding: 48px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-sW1fK .framer-1p49p2y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-sW1fK .framer-12zv85m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1300px; overflow: visible; padding: 32px; position: relative; width: 100%; z-index: 1; }\",\".framer-sW1fK .framer-2tdd7c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sW1fK .framer-1uei5a0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 6; }\",\".framer-sW1fK .framer-ovdxby-container { flex: none; height: auto; position: relative; width: auto; z-index: 2; }\",\".framer-sW1fK .framer-e1wx7w-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sW1fK.framer-13n2dxp, .framer-sW1fK .framer-1t5js7o, .framer-sW1fK .framer-kov9z4, .framer-sW1fK .framer-1jru29e, .framer-sW1fK .framer-1783qh1, .framer-sW1fK .framer-1ri80pw, .framer-sW1fK .framer-3anbt3, .framer-sW1fK .framer-7yteqs, .framer-sW1fK .framer-79t8mp, .framer-sW1fK .framer-16lvb8p, .framer-sW1fK .framer-1kuk65u, .framer-sW1fK .framer-qkwb5o, .framer-sW1fK .framer-biagbs, .framer-sW1fK .framer-1hr8hqb, .framer-sW1fK .framer-1jnco11, .framer-sW1fK .framer-fv6h6a, .framer-sW1fK .framer-1a2697, .framer-sW1fK .framer-10wgwbj, .framer-sW1fK .framer-8sk5lc, .framer-sW1fK .framer-1np3s3p, .framer-sW1fK .framer-13d4rkv, .framer-sW1fK .framer-16bg845, .framer-sW1fK .framer-1p49p2y, .framer-sW1fK .framer-csys4q, .framer-sW1fK .framer-12zv85m, .framer-sW1fK .framer-2tdd7c { gap: 0px; } .framer-sW1fK.framer-13n2dxp > *, .framer-sW1fK .framer-79t8mp > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sW1fK.framer-13n2dxp > :first-child, .framer-sW1fK .framer-kov9z4 > :first-child, .framer-sW1fK .framer-1jru29e > :first-child, .framer-sW1fK .framer-1ri80pw > :first-child, .framer-sW1fK .framer-3anbt3 > :first-child, .framer-sW1fK .framer-7yteqs > :first-child, .framer-sW1fK .framer-79t8mp > :first-child, .framer-sW1fK .framer-1kuk65u > :first-child, .framer-sW1fK .framer-qkwb5o > :first-child, .framer-sW1fK .framer-biagbs > :first-child, .framer-sW1fK .framer-1hr8hqb > :first-child, .framer-sW1fK .framer-1jnco11 > :first-child, .framer-sW1fK .framer-fv6h6a > :first-child, .framer-sW1fK .framer-1a2697 > :first-child, .framer-sW1fK .framer-10wgwbj > :first-child, .framer-sW1fK .framer-8sk5lc > :first-child, .framer-sW1fK .framer-1np3s3p > :first-child, .framer-sW1fK .framer-13d4rkv > :first-child, .framer-sW1fK .framer-16bg845 > :first-child, .framer-sW1fK .framer-1p49p2y > :first-child, .framer-sW1fK .framer-csys4q > :first-child, .framer-sW1fK .framer-12zv85m > :first-child, .framer-sW1fK .framer-2tdd7c > :first-child { margin-top: 0px; } .framer-sW1fK.framer-13n2dxp > :last-child, .framer-sW1fK .framer-kov9z4 > :last-child, .framer-sW1fK .framer-1jru29e > :last-child, .framer-sW1fK .framer-1ri80pw > :last-child, .framer-sW1fK .framer-3anbt3 > :last-child, .framer-sW1fK .framer-7yteqs > :last-child, .framer-sW1fK .framer-79t8mp > :last-child, .framer-sW1fK .framer-1kuk65u > :last-child, .framer-sW1fK .framer-qkwb5o > :last-child, .framer-sW1fK .framer-biagbs > :last-child, .framer-sW1fK .framer-1hr8hqb > :last-child, .framer-sW1fK .framer-1jnco11 > :last-child, .framer-sW1fK .framer-fv6h6a > :last-child, .framer-sW1fK .framer-1a2697 > :last-child, .framer-sW1fK .framer-10wgwbj > :last-child, .framer-sW1fK .framer-8sk5lc > :last-child, .framer-sW1fK .framer-1np3s3p > :last-child, .framer-sW1fK .framer-13d4rkv > :last-child, .framer-sW1fK .framer-16bg845 > :last-child, .framer-sW1fK .framer-1p49p2y > :last-child, .framer-sW1fK .framer-csys4q > :last-child, .framer-sW1fK .framer-12zv85m > :last-child, .framer-sW1fK .framer-2tdd7c > :last-child { margin-bottom: 0px; } .framer-sW1fK .framer-1t5js7o > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-sW1fK .framer-1t5js7o > :first-child, .framer-sW1fK .framer-1783qh1 > :first-child, .framer-sW1fK .framer-16lvb8p > :first-child { margin-left: 0px; } .framer-sW1fK .framer-1t5js7o > :last-child, .framer-sW1fK .framer-1783qh1 > :last-child, .framer-sW1fK .framer-16lvb8p > :last-child { margin-right: 0px; } .framer-sW1fK .framer-kov9z4 > *, .framer-sW1fK .framer-8sk5lc > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-sW1fK .framer-1jru29e > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-sW1fK .framer-1783qh1 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-sW1fK .framer-1ri80pw > *, .framer-sW1fK .framer-3anbt3 > *, .framer-sW1fK .framer-7yteqs > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-sW1fK .framer-16lvb8p > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-sW1fK .framer-1kuk65u > *, .framer-sW1fK .framer-10wgwbj > *, .framer-sW1fK .framer-16bg845 > *, .framer-sW1fK .framer-csys4q > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-sW1fK .framer-qkwb5o > *, .framer-sW1fK .framer-biagbs > *, .framer-sW1fK .framer-1hr8hqb > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-sW1fK .framer-1jnco11 > *, .framer-sW1fK .framer-13d4rkv > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-sW1fK .framer-fv6h6a > *, .framer-sW1fK .framer-12zv85m > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-sW1fK .framer-1a2697 > *, .framer-sW1fK .framer-1p49p2y > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-sW1fK .framer-1np3s3p > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } .framer-sW1fK .framer-2tdd7c > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-sW1fK.framer-13n2dxp { width: 810px; } .framer-sW1fK .framer-gvr2xd-container { order: 3; } .framer-sW1fK .framer-1t5js7o { gap: 80px; order: 0; padding: 150px 64px 50px 64px; } .framer-sW1fK .framer-kov9z4 { order: 2; } .framer-sW1fK .framer-1783qh1 { gap: 80px; padding: 0px 40px 0px 40px; z-index: 3; } .framer-sW1fK .framer-1ri80pw { gap: 61px; } .framer-sW1fK .framer-7yteqs { gap: 32px; padding: 0px 4px 0px 0px; } .framer-sW1fK .framer-1hr8hqb { order: 1; } .framer-sW1fK .framer-1jnco11 { align-content: flex-start; align-items: flex-start; order: 1; padding: 50px 40px 50px 40px; } .framer-sW1fK .framer-1a2697, .framer-sW1fK .framer-1p49p2y { gap: 50px; } .framer-sW1fK .framer-10wgwbj, .framer-sW1fK .framer-csys4q { order: 0; } .framer-sW1fK .framer-13d4rkv { align-content: flex-start; align-items: flex-start; order: 2; padding: 50px 40px 50px 40px; } .framer-sW1fK .framer-16bg845 { max-width: unset; padding: 0px; } .framer-sW1fK .framer-e1wx7w-container { order: 4; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sW1fK .framer-1t5js7o, .framer-sW1fK .framer-1783qh1, .framer-sW1fK .framer-1ri80pw, .framer-sW1fK .framer-7yteqs, .framer-sW1fK .framer-1a2697, .framer-sW1fK .framer-1p49p2y { gap: 0px; } .framer-sW1fK .framer-1t5js7o > *, .framer-sW1fK .framer-1783qh1 > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-sW1fK .framer-1t5js7o > :first-child, .framer-sW1fK .framer-1783qh1 > :first-child { margin-left: 0px; } .framer-sW1fK .framer-1t5js7o > :last-child, .framer-sW1fK .framer-1783qh1 > :last-child { margin-right: 0px; } .framer-sW1fK .framer-1ri80pw > * { margin: 0px; margin-bottom: calc(61px / 2); margin-top: calc(61px / 2); } .framer-sW1fK .framer-1ri80pw > :first-child, .framer-sW1fK .framer-7yteqs > :first-child, .framer-sW1fK .framer-1a2697 > :first-child, .framer-sW1fK .framer-1p49p2y > :first-child { margin-top: 0px; } .framer-sW1fK .framer-1ri80pw > :last-child, .framer-sW1fK .framer-7yteqs > :last-child, .framer-sW1fK .framer-1a2697 > :last-child, .framer-sW1fK .framer-1p49p2y > :last-child { margin-bottom: 0px; } .framer-sW1fK .framer-7yteqs > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-sW1fK .framer-1a2697 > *, .framer-sW1fK .framer-1p49p2y > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }}\",\"@media (max-width: 809px) { .framer-sW1fK.framer-13n2dxp { width: 390px; } .framer-sW1fK .framer-1t5js7o { gap: 100px; padding: 110px 16px 0px 16px; } .framer-sW1fK .framer-kov9z4 { gap: 16px; } .framer-sW1fK .framer-1jru29e { justify-content: center; } .framer-sW1fK .framer-1783qh1 { flex-direction: column; order: 0; } .framer-sW1fK .framer-1ri80pw { flex: none; gap: 50px; width: 100%; } .framer-sW1fK .framer-3anbt3, .framer-sW1fK .framer-79t8mp { align-content: center; align-items: center; } .framer-sW1fK .framer-7yteqs { gap: 32px; max-width: 400px; } .framer-sW1fK .framer-1hr8hqb { height: 413px; } .framer-sW1fK .framer-1jnco11 { padding: 40px 20px 50px 20px; } .framer-sW1fK .framer-fv6h6a { gap: 64px; order: 0; } .framer-sW1fK .framer-1a2697, .framer-sW1fK .framer-1p49p2y { gap: 50px; order: 0; } .framer-sW1fK .framer-10wgwbj, .framer-sW1fK .framer-csys4q { order: 0; } .framer-sW1fK .framer-13d4rkv { padding: 50px 20px 50px 20px; } .framer-sW1fK .framer-16bg845 { gap: 64px; max-width: unset; padding: 24px; } .framer-sW1fK .framer-12zv85m { padding: 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sW1fK .framer-1t5js7o, .framer-sW1fK .framer-kov9z4, .framer-sW1fK .framer-1783qh1, .framer-sW1fK .framer-1ri80pw, .framer-sW1fK .framer-7yteqs, .framer-sW1fK .framer-fv6h6a, .framer-sW1fK .framer-1a2697, .framer-sW1fK .framer-16bg845, .framer-sW1fK .framer-1p49p2y { gap: 0px; } .framer-sW1fK .framer-1t5js7o > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-sW1fK .framer-1t5js7o > :first-child { margin-left: 0px; } .framer-sW1fK .framer-1t5js7o > :last-child { margin-right: 0px; } .framer-sW1fK .framer-kov9z4 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-sW1fK .framer-kov9z4 > :first-child, .framer-sW1fK .framer-1783qh1 > :first-child, .framer-sW1fK .framer-1ri80pw > :first-child, .framer-sW1fK .framer-7yteqs > :first-child, .framer-sW1fK .framer-fv6h6a > :first-child, .framer-sW1fK .framer-1a2697 > :first-child, .framer-sW1fK .framer-16bg845 > :first-child, .framer-sW1fK .framer-1p49p2y > :first-child { margin-top: 0px; } .framer-sW1fK .framer-kov9z4 > :last-child, .framer-sW1fK .framer-1783qh1 > :last-child, .framer-sW1fK .framer-1ri80pw > :last-child, .framer-sW1fK .framer-7yteqs > :last-child, .framer-sW1fK .framer-fv6h6a > :last-child, .framer-sW1fK .framer-1a2697 > :last-child, .framer-sW1fK .framer-16bg845 > :last-child, .framer-sW1fK .framer-1p49p2y > :last-child { margin-bottom: 0px; } .framer-sW1fK .framer-1783qh1 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-sW1fK .framer-1ri80pw > *, .framer-sW1fK .framer-1a2697 > *, .framer-sW1fK .framer-1p49p2y > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-sW1fK .framer-7yteqs > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-sW1fK .framer-fv6h6a > *, .framer-sW1fK .framer-16bg845 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4693\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZvhAGgwqb\":{\"layout\":[\"fixed\",\"auto\"]},\"vad4QnUT8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"GRIhlkdxs\":{\"pattern\":\":GRIhlkdxs\",\"name\":\"hero\"},\"gVBBxPDzN\":{\"pattern\":\":gVBBxPDzN\",\"name\":\"hero-content\"}}\n * @framerResponsiveScreen\n */const FramerDafdPwBX7=withCSS(Component,css,\"framer-sW1fK\");export default FramerDafdPwBX7;FramerDafdPwBX7.displayName=\"Terms Of Service\";FramerDafdPwBX7.defaultProps={height:4693,width:1200};addFonts(FramerDafdPwBX7,[{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\"}]},...NavigationBarFonts,...YouTubeFonts,...ButtonCopyFonts,...FooterNewFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...componentPresets.fonts?.[\"HGOJAPC8g\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"HGOJAPC8g\"]):[],...componentPresets.fonts?.[\"AhJ_OnzIR\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"AhJ_OnzIR\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDafdPwBX7\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"GRIhlkdxs\\\":{\\\"pattern\\\":\\\":GRIhlkdxs\\\",\\\"name\\\":\\\"hero\\\"},\\\"gVBBxPDzN\\\":{\\\"pattern\\\":\\\":gVBBxPDzN\\\",\\\"name\\\":\\\"hero-content\\\"}}\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZvhAGgwqb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vad4QnUT8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"4693\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "_isBot", "isBot", "navigator", "emptySubscribe", "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", "iframeIsDefaultVisible", "de", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "NavigationBarFonts", "getFonts", "qxYWctY_B_default", "NavigationBarWithVariantAppearEffect", "withVariantAppearEffect", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "YouTubeFonts", "Youtube", "RichTextWithFX", "withFX", "ButtonCopyFonts", "PvU4IC6xg_default", "FooterNewFonts", "n5CfX5z5S_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "isSet", "value", "animation2", "animation3", "animation4", "transition2", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "FG8en89sc_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "kXDCJgSXn", "wo7QV29v3", "qmqxAAGwA", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "visible", "isDisplayed", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "ComponentPresetsProvider", "resolvedLinks1", "css", "FramerDafdPwBX7", "withCSS", "DafdPwBX7_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
