{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js", "ssg:https://framerusercontent.com/modules/3jvovJYlqNCH69T8XNSY/NCKqe2DVXNynNOiNtWj3/D8D9DAEGL.js", "ssg:https://framerusercontent.com/modules/OK6Jwo2dfcXRAEAhsChb/zWJiBrj2GndbPFcWvwtO/Moneywonz.js", "ssg:https://framerusercontent.com/modules/8xyadfM0zr9v0gWTk8Cq/CbhlOG1fEY4mUn6Waeq4/AygPt60n6.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={}));/**\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)}) 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://www.youtube.com/shorts/zwMEhBq4kYM\nif(pathSegments[0]===\"shorts\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}// 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){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";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}`;}}// 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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[];export const css=['.framer-mJ4Ro .framer-styles-preset-n7w2n:not(.rich-text-wrapper), .framer-mJ4Ro .framer-styles-preset-n7w2n.rich-text-wrapper h1 { --framer-font-family: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-mJ4Ro\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c105afa)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-DG6vh .framer-styles-preset-qi15hr:not(.rich-text-wrapper), .framer-DG6vh .framer-styles-preset-qi15hr.rich-text-wrapper a { --framer-link-current-text-color: #ffffff; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #ffffff; --framer-link-hover-text-decoration: underline; --framer-link-text-color: rgba(255, 255, 255, 0.9); --framer-link-text-decoration: none; }\"];export const className=\"framer-DG6vh\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Link,NotFoundError,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Logo from\"https://framerusercontent.com/modules/IQXqjAGXltPKLdfjcdtf/AdYVRfUvx2HLE5qL3Xfw/Logo.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import FooterSection from\"#framer/local/canvasComponent/EMFImvNqq/EMFImvNqq.js\";import Topbar from\"#framer/local/canvasComponent/jkqwVx08O/jkqwVx08O.js\";import Button from\"#framer/local/canvasComponent/syT4rrETn/syT4rrETn.js\";import CTA from\"#framer/local/canvasComponent/vVUPHW32c/vVUPHW32c.js\";import Integrations from\"#framer/local/collection/CJx6IaPw7/CJx6IaPw7.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle9 from\"#framer/local/css/AS4PcgcTr/AS4PcgcTr.js\";import*as sharedStyle7 from\"#framer/local/css/BTAYseOlj/BTAYseOlj.js\";import*as sharedStyle12 from\"#framer/local/css/CMGQTlim6/CMGQTlim6.js\";import*as sharedStyle1 from\"#framer/local/css/D8D9DAEGL/D8D9DAEGL.js\";import*as sharedStyle10 from\"#framer/local/css/EjC9d_Yj1/EjC9d_Yj1.js\";import*as sharedStyle3 from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle13 from\"#framer/local/css/k32DmqACN/k32DmqACN.js\";import*as sharedStyle14 from\"#framer/local/css/Moneywonz/Moneywonz.js\";import*as sharedStyle6 from\"#framer/local/css/nVrBiSF4P/nVrBiSF4P.js\";import*as sharedStyle5 from\"#framer/local/css/TMeZR6gRy/TMeZR6gRy.js\";import*as sharedStyle11 from\"#framer/local/css/X9UCAPkO5/X9UCAPkO5.js\";import*as sharedStyle from\"#framer/local/css/xxrpaKQuu/xxrpaKQuu.js\";import*as sharedStyle8 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle2 from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import*as sharedStyle4 from\"#framer/local/css/YckFIlg3V/YckFIlg3V.js\";import metadataProvider from\"#framer/local/webPageMetadata/AygPt60n6/AygPt60n6.js\";const TopbarFonts=getFonts(Topbar);const PhosphorFonts=getFonts(Phosphor);const LogoFonts=getFonts(Logo);const YouTubeFonts=getFonts(YouTube);const ButtonFonts=getFonts(Button);const CTAFonts=getFonts(CTA);const FooterSectionFonts=getFonts(FooterSection);const breakpoints={K2FwteT2P:\"(min-width: 1200px)\",YeuTUTLiM:\"(max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-gSZXH\";const variantClassNames={K2FwteT2P:\"framer-v-1sodo1g\",YeuTUTLiM:\"framer-v-1rahosa\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"K2FwteT2P\",Phone:\"YeuTUTLiM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"K2FwteT2P\"};};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:\"AygPt60n6\",data:Integrations,type:\"Collection\"},select:[{collection:\"AygPt60n6\",name:\"jRJrbBBZ6\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"B27vsuhd5\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"cwJ9L0_Ks\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"BXHUVVhIS\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"fFlzek2I4\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"aTpPAgGTF\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"crShAs7uy\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"BXytUuP3p\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"mfBCy1Q9L\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"g_YLbEJRM\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"SgydAKhde\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"F9KxyOWE3\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"p4S_QaTuY\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"q1OjE2ERN\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"su1sf8Pri\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"se_Qyuwrg\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"kAyv7qq0T\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"W24XrpLUL\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"S7aVLJCg2\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"MIa1jtwzV\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"AygPt60n6\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,BXHUVVhIS=getFromCurrentRouteData(\"BXHUVVhIS\")??\"\",jRJrbBBZ6=getFromCurrentRouteData(\"jRJrbBBZ6\")??\"\",B27vsuhd5=getFromCurrentRouteData(\"B27vsuhd5\")??\"\",W24XrpLUL=getFromCurrentRouteData(\"W24XrpLUL\")??\"\",cwJ9L0_Ks=getFromCurrentRouteData(\"cwJ9L0_Ks\")??\"\",MIa1jtwzV=getFromCurrentRouteData(\"MIa1jtwzV\")??\"\",crShAs7uy=getFromCurrentRouteData(\"crShAs7uy\")??\"\",BXytUuP3p=getFromCurrentRouteData(\"BXytUuP3p\")??\"\",mfBCy1Q9L=getFromCurrentRouteData(\"mfBCy1Q9L\")??\"\",g_YLbEJRM=getFromCurrentRouteData(\"g_YLbEJRM\")??\"\",SgydAKhde=getFromCurrentRouteData(\"SgydAKhde\")??\"\",F9KxyOWE3=getFromCurrentRouteData(\"F9KxyOWE3\")??\"\",p4S_QaTuY=getFromCurrentRouteData(\"p4S_QaTuY\")??\"\",q1OjE2ERN=getFromCurrentRouteData(\"q1OjE2ERN\")??\"\",su1sf8Pri=getFromCurrentRouteData(\"su1sf8Pri\")??\"\",se_Qyuwrg=getFromCurrentRouteData(\"se_Qyuwrg\")??\"\",aTpPAgGTF=getFromCurrentRouteData(\"aTpPAgGTF\")??\"\",fFlzek2I4=getFromCurrentRouteData(\"fFlzek2I4\")??\"\",S7aVLJCg2=getFromCurrentRouteData(\"S7aVLJCg2\")??\"\",kAyv7qq0T=getFromCurrentRouteData(\"kAyv7qq0T\")??\"\",...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,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const visible=isSet(crShAs7uy);const visible1=isSet(BXytUuP3p);const visible2=isSet(mfBCy1Q9L);const visible3=isSet(g_YLbEJRM);const visible4=isSet(SgydAKhde);const visible5=isSet(F9KxyOWE3);const visible6=isSet(p4S_QaTuY);const visible7=isSet(q1OjE2ERN);const visible8=isSet(su1sf8Pri);const visible9=isSet(se_Qyuwrg);const visible10=isSet(kAyv7qq0T);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"K2FwteT2P\",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-1sodo1g\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dfvy8c-container\",nodeId:\"RBsJakpkZ\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{variant:\"rXck_MiQh\"}},children:/*#__PURE__*/_jsx(Topbar,{height:\"100%\",id:\"RBsJakpkZ\",layoutId:\"RBsJakpkZ\",style:{width:\"100%\"},variant:\"BpXi6rsw4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2v2ehg\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gq4qab\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e1nwdj\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s9czea-container\",isModuleExternal:true,nodeId:\"Gb0b4ZKyW\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(34, 125, 231)\",height:\"100%\",iconSearch:\"CaretLeft\",iconSelection:\"House\",id:\"Gb0b4ZKyW\",layoutId:\"Gb0b4ZKyW\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(113, 113, 122, 0.7)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"K8z9YqGw6\"},motionChild:true,nodeId:\"nQ7Jw5GcZ\",openInNewTab:false,scopeId:\"AygPt60n6\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bwzom3\",\"data-styles-preset\":\"xxrpaKQuu\",children:\"Go back to the integrations\"})})})}),className:\"framer-1lovf71\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yflu8w\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16gd3x5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rh40zz\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-117lkxe\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nvgl7u-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cNF03_bvk\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Logo,{company:\"Framer\",height:\"100%\",id:\"cNF03_bvk\",isSearch:false,layoutId:\"cNF03_bvk\",radius:10,srcType:\"URL\",srcUrl:BXHUVVhIS,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g22d1w\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-n7w2n\",\"data-styles-preset\":\"D8D9DAEGL\",style:{\"--framer-text-alignment\":\"left\"},children:\"Zapier\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-n7w2n\",\"data-styles-preset\":\"D8D9DAEGL\",style:{\"--framer-text-alignment\":\"center\"},children:\"Zapier\"})}),className:\"framer-11x3gqv\",\"data-framer-name\":\"name\",fonts:[\"Inter\"],text:jRJrbBBZ6,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-srd1c1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Automate Breakcold with 6000+ applications\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Create and update leads from 7+ platforms.\"})}),className:\"framer-6twkz1\",\"data-framer-name\":\"provider_name\",fonts:[\"GF;Manrope-500\"],text:B27vsuhd5,verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12ttf9r\",\"data-border\":true,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gu54g4\",\"data-framer-name\":\"Video 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-af0es5-container\",isModuleExternal:true,nodeId:\"n_xLT9gPv\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"n_xLT9gPv\",isMixedBorderRadius:false,isRed:false,layoutId:\"n_xLT9gPv\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:W24XrpLUL,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l9zqg1\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"k72YiG4ti\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"PtnY28bje\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"PGk5KK79k\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:cwJ9L0_Ks,className:\"framer-jpol45\",\"data-framer-name\":\"description_html\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-fsrzda\",blockquote:\"framer-styles-preset-80bz11\",code:\"framer-styles-preset-spqoy6\",h1:\"framer-styles-preset-3nqyhf\",h2:\"framer-styles-preset-1wml6uu\",h3:\"framer-styles-preset-12lj5ox\",h4:\"framer-styles-preset-aqgkdx\",h5:\"framer-styles-preset-bd65jw\",h6:\"framer-styles-preset-1vwxz9c\",img:\"framer-styles-preset-18x7l37\",p:\"framer-styles-preset-21ogod\",table:\"framer-styles-preset-yfwvhb\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u8crhm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kkroc9\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s8bhcs\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Install Integration\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Install Integration\"})}),className:\"framer-11zddg3\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Add this integration to Breakcold to enhance your capabilities.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Add this integration to Breakcold to enhance your capabilities.\"})}),className:\"framer-1304lb\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dorecj\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:MIa1jtwzV,implicitPathVariables:undefined},{href:MIa1jtwzV,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{y:(componentViewport?.y||0)+0+80+30+0+0+65.6+0+830.4+0+0+30+161+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`calc(min(400px, min(${componentViewport?.width||\"100vw\"}, 1400px)) - 60px)`,y:(componentViewport?.y||0)+0+80+30+0+0+65.6+0+0+0+30+180.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g0dt6x-container\",nodeId:\"tpr5xeJ_r\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{EU6ywjAOx:resolvedLinks[1],variant:\"nE1_HygmY\"}},children:/*#__PURE__*/_jsx(Button,{a3QCF6cRp:100,al8OwCgnb:true,D0bDI5SL6:\"House\",EU6ywjAOx:resolvedLinks[0],F3JhtinxZ:\"Install now\",gPzRw1RMG:false,height:\"100%\",id:\"tpr5xeJ_r\",l41SWI7xB:\"Download\",layoutId:\"tpr5xeJ_r\",py5Uxrklc:true,style:{width:\"100%\"},variant:\"ovBW_tmX5\",VEnw4OvGX:\"fill\",width:\"100%\",zyLfdIqW_:\"duotone\"})})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"div\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:[\"By installing, you agree to the \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ARl9x1WaS\"},motionChild:true,nodeId:\"g48671pId\",openInNewTab:true,scopeId:\"AygPt60n6\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qi15hr\",\"data-styles-preset\":\"Moneywonz\",children:\"terms and conditions.\"})})]})}),className:\"framer-2v0xk6\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mwgbih\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\"},children:\"Key Features\"})}),className:\"framer-udmi01\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p7qycz\",children:[visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1de06hi\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tufsx8-container\",isModuleExternal:true,nodeId:\"MdElARr_g\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 89, 247)\",height:\"100%\",iconSearch:\"checkCircle\",iconSelection:\"House\",id:\"MdElARr_g\",layoutId:\"MdElARr_g\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:\"Popular Trigger: new leads\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Add and manage leads from LinkedIn\"})}),className:\"framer-vbr7cb\",fonts:[\"Inter\"],text:crShAs7uy,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iqnmy7\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jaikuf-container\",isModuleExternal:true,nodeId:\"OR298VH6P\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 89, 247)\",height:\"100%\",iconSearch:\"checkCircle\",iconSelection:\"House\",id:\"OR298VH6P\",layoutId:\"OR298VH6P\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:\"Popular Action: create or update leads\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Add and manage leads from LinkedIn Sales Navigator\"})}),className:\"framer-1wvhkdv\",fonts:[\"Inter\"],text:BXytUuP3p,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible2&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-813btf\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gyfz3c-container\",isModuleExternal:true,nodeId:\"l0lEM6e36\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 89, 247)\",height:\"100%\",iconSearch:\"checkCircle\",iconSelection:\"House\",id:\"l0lEM6e36\",layoutId:\"l0lEM6e36\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:\"Popular Action: create task\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Add and manage leads from WhatsApp\"})}),className:\"framer-dy7tsv\",fonts:[\"Inter\"],text:mfBCy1Q9L,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible3&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tijyof\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x9sv0j-container\",isModuleExternal:true,nodeId:\"SBY75xCvo\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 89, 247)\",height:\"100%\",iconSearch:\"checkCircle\",iconSelection:\"House\",id:\"SBY75xCvo\",layoutId:\"SBY75xCvo\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:\"Content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Add and manage leads from \uD835\uDD4F (Twitter)\"})}),className:\"framer-o4cqut\",fonts:[\"Inter\"],text:g_YLbEJRM,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u92soz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jn043l-container\",isModuleExternal:true,nodeId:\"C4Hvi5io0\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 89, 247)\",height:\"100%\",iconSearch:\"checkCircle\",iconSelection:\"House\",id:\"C4Hvi5io0\",layoutId:\"C4Hvi5io0\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:\"Content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Add and manage leads from Gmail\"})}),className:\"framer-10od3hx\",fonts:[\"Inter\"],text:SgydAKhde,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible5&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v2v1la\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8veqor-container\",isModuleExternal:true,nodeId:\"woznCsecy\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 89, 247)\",height:\"100%\",iconSearch:\"checkCircle\",iconSelection:\"House\",id:\"woznCsecy\",layoutId:\"woznCsecy\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:\"Content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Add and manage leads from Instagram\"})}),className:\"framer-1ycystj\",fonts:[\"Inter\"],text:F9KxyOWE3,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible6&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ct3k24\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2jdjqk-container\",isModuleExternal:true,nodeId:\"KfSJOm3zZ\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 89, 247)\",height:\"100%\",iconSearch:\"checkCircle\",iconSelection:\"House\",id:\"KfSJOm3zZ\",layoutId:\"KfSJOm3zZ\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:\"Content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Add and manage leads from Youtube\"})}),className:\"framer-12q2ctr\",fonts:[\"Inter\"],text:p4S_QaTuY,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mgne9n\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-193aws9-container\",isModuleExternal:true,nodeId:\"LaiCxo_v_\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 89, 247)\",height:\"100%\",iconSearch:\"checkCircle\",iconSelection:\"House\",id:\"LaiCxo_v_\",layoutId:\"LaiCxo_v_\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:\"Content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Add and manage leads from Facebook\"})}),className:\"framer-ue10wf\",fonts:[\"Inter\"],text:q1OjE2ERN,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible8&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kz52me\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12k1525-container\",isModuleExternal:true,nodeId:\"iFMCVg1cU\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 89, 247)\",height:\"100%\",iconSearch:\"checkCircle\",iconSelection:\"House\",id:\"iFMCVg1cU\",layoutId:\"iFMCVg1cU\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:\"Content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Content\"})}),className:\"framer-65vfiv\",fonts:[\"Inter\"],text:su1sf8Pri,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible9&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a58s3e\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p31lce-container\",isModuleExternal:true,nodeId:\"Tbz46VEn2\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 89, 247)\",height:\"100%\",iconSearch:\"checkCircle\",iconSelection:\"House\",id:\"Tbz46VEn2\",layoutId:\"Tbz46VEn2\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:\"Content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Content\"})}),className:\"framer-hhqfm6\",fonts:[\"Inter\"],text:se_Qyuwrg,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2bmmc5\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"2em\"},children:\"Developer Information\"})}),className:\"framer-17ylnpf\",\"data-framer-name\":\"provider_icon_url\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h35mop\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"rgba(113, 113, 122, 0.7)\"},children:\"Ressources\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"rgba(113, 113, 122, 0.7)\"},children:\"Ressources\"})}),className:\"framer-18mg8xj\",\"data-framer-name\":\"provider_icon_url\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"2em\"},children:/*#__PURE__*/_jsx(Link,{href:aTpPAgGTF,motionChild:true,nodeId:\"Qd2diXkkE\",openInNewTab:false,scopeId:\"AygPt60n6\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bwzom3\",\"data-styles-preset\":\"xxrpaKQuu\",children:\"Website\"})})})}),className:\"framer-19821u4\",\"data-framer-name\":\"provider_icon_url\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-62qg0w\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"rgba(113, 113, 122, 0.7)\"},children:\"Build by\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"rgba(113, 113, 122, 0.7)\"},children:\"Build by\"})}),className:\"framer-vptpp7\",\"data-framer-name\":\"provider_icon_url\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gweuyj\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13rmy9e-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"sHZqR2Gxz\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Logo,{company:\"Framer\",height:\"100%\",id:\"sHZqR2Gxz\",isSearch:false,layoutId:\"sHZqR2Gxz\",radius:6,srcType:\"URL\",srcUrl:fFlzek2I4,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"2em\"},children:\"Breakcold\"})}),className:\"framer-1t4gk97\",\"data-framer-name\":\"provider_icon_url\",fonts:[\"FS;Manrope-bold\"],text:S7aVLJCg2,verticalAlignment:\"top\",withExternalLayout:true})]})]}),visible10&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m6lzgp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"rgba(113, 113, 122, 0.7)\"},children:\"First Released\"})}),className:\"framer-ie0gis\",\"data-framer-name\":\"provider_icon_url\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"2em\"},children:\"Content\"})}),className:\"framer-4qhwlx\",\"data-framer-name\":\"provider_icon_url\",fonts:[\"FS;Manrope-bold\"],text:kAyv7qq0T,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tllvhx\",\"data-framer-name\":\"Footer CTA Section\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 48px)`,y:(componentViewport?.y||0)+0+2789.6+24+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:431,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 88px)`,y:(componentViewport?.y||0)+0+1962.8+44+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s397am-container\",nodeId:\"K6LHpJXRU\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{variant:\"cnBrC6eGh\"}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"K6LHpJXRU\",layoutId:\"K6LHpJXRU\",style:{height:\"100%\",width:\"100%\"},variant:\"s8DqUgniW\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{y:(componentViewport?.y||0)+0+3268.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:640,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2481.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-158yelc-container\",nodeId:\"J3pssHAL_\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{variant:\"cOxLhcnIT\"}},children:/*#__PURE__*/_jsx(FooterSection,{height:\"100%\",id:\"J3pssHAL_\",layoutId:\"J3pssHAL_\",style:{width:\"100%\"},variant:\"BYwwEe6EK\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gSZXH.framer-hten0v, .framer-gSZXH .framer-hten0v { display: block; }\",\".framer-gSZXH.framer-1sodo1g { 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-gSZXH .framer-dfvy8c-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 8; }\",\".framer-gSZXH .framer-2v2ehg { --border-bottom-width: 1px; --border-color: var(--token-f65dbc61-dc39-4ef8-884a-5dfcc2881a7e, #e5e7eb); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #fafafa; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-gSZXH .framer-gq4qab { 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: 1400px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gSZXH .framer-1e1nwdj { 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: 24px 24px 10px 24px; position: relative; width: 100%; }\",\".framer-gSZXH .framer-1s9czea-container { flex: none; height: 21px; position: relative; width: 21px; }\",\".framer-gSZXH .framer-1lovf71, .framer-gSZXH .framer-2v0xk6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-gSZXH .framer-1yflu8w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 24px 64px 24px; position: relative; width: 100%; }\",\".framer-gSZXH .framer-16gd3x5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 100%; padding: 0px; position: relative; width: 1px; }\",\".framer-gSZXH .framer-1rh40zz { --border-bottom-width: 1px; --border-color: var(--token-f65dbc61-dc39-4ef8-884a-5dfcc2881a7e, #e5e7eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0px 0px 1px #f2f5fc; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-gSZXH .framer-117lkxe { --border-bottom-width: 1px; --border-color: var(--token-f65dbc61-dc39-4ef8-884a-5dfcc2881a7e, #e5e7eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 90px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 90px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gSZXH .framer-1nvgl7u-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); position: relative; width: 70px; }\",\".framer-gSZXH .framer-1g22d1w { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-gSZXH .framer-11x3gqv { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-gSZXH .framer-srd1c1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gSZXH .framer-6twkz1, .framer-gSZXH .framer-1t4gk97 { flex: 1 0 0px; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-gSZXH .framer-12ttf9r { --border-bottom-width: 1px; --border-color: var(--token-f65dbc61-dc39-4ef8-884a-5dfcc2881a7e, #e5e7eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0px 0px 1px var(--token-eedd5ba1-aa65-498e-9c39-9ad611ed7eb6, #f7f7f7); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-gSZXH .framer-1gu54g4 { align-content: center; align-items: center; background-color: #c7c7c7; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-gSZXH .framer-af0es5-container { aspect-ratio: 1.7857142857142858 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 405px); position: relative; width: 723px; }\",\".framer-gSZXH .framer-l9zqg1 { --border-bottom-width: 1px; --border-color: var(--token-f65dbc61-dc39-4ef8-884a-5dfcc2881a7e, #e5e7eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0px 0px 1px #f2f5fc; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-gSZXH .framer-jpol45 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 601px; word-break: break-word; word-wrap: break-word; }\",\".framer-gSZXH .framer-u8crhm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 100%; padding: 0px; position: relative; width: 400px; }\",\".framer-gSZXH .framer-kkroc9 { --border-bottom-width: 1px; --border-color: var(--token-f65dbc61-dc39-4ef8-884a-5dfcc2881a7e, #e5e7eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background: linear-gradient(180deg, #2563eb 0%, rgb(29, 78, 216) 100%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-gSZXH .framer-s8bhcs, .framer-gSZXH .framer-dorecj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gSZXH .framer-11zddg3, .framer-gSZXH .framer-udmi01 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-gSZXH .framer-1304lb { --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-gSZXH .framer-g0dt6x-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-gSZXH .framer-mwgbih { --border-bottom-width: 1px; --border-color: var(--token-f65dbc61-dc39-4ef8-884a-5dfcc2881a7e, #e5e7eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0px 0px 1px #f2f5fc; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-gSZXH .framer-1p7qycz { display: grid; flex: none; gap: 15px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(171px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gSZXH .framer-1de06hi, .framer-gSZXH .framer-iqnmy7, .framer-gSZXH .framer-813btf, .framer-gSZXH .framer-1tijyof, .framer-gSZXH .framer-u92soz, .framer-gSZXH .framer-v2v1la, .framer-gSZXH .framer-1ct3k24, .framer-gSZXH .framer-1mgne9n, .framer-gSZXH .framer-1kz52me, .framer-gSZXH .framer-1a58s3e { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gSZXH .framer-tufsx8-container, .framer-gSZXH .framer-1jaikuf-container, .framer-gSZXH .framer-gyfz3c-container, .framer-gSZXH .framer-1x9sv0j-container, .framer-gSZXH .framer-1jn043l-container, .framer-gSZXH .framer-8veqor-container, .framer-gSZXH .framer-2jdjqk-container, .framer-gSZXH .framer-193aws9-container, .framer-gSZXH .framer-12k1525-container, .framer-gSZXH .framer-1p31lce-container { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-gSZXH .framer-vbr7cb, .framer-gSZXH .framer-1wvhkdv, .framer-gSZXH .framer-dy7tsv, .framer-gSZXH .framer-o4cqut, .framer-gSZXH .framer-10od3hx, .framer-gSZXH .framer-1ycystj, .framer-gSZXH .framer-12q2ctr, .framer-gSZXH .framer-ue10wf, .framer-gSZXH .framer-65vfiv, .framer-gSZXH .framer-hhqfm6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-gSZXH .framer-2bmmc5 { --border-bottom-width: 1px; --border-color: var(--token-f65dbc61-dc39-4ef8-884a-5dfcc2881a7e, #e5e7eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0px 0px 1px #f2f5fc; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-gSZXH .framer-17ylnpf, .framer-gSZXH .framer-18mg8xj, .framer-gSZXH .framer-19821u4, .framer-gSZXH .framer-vptpp7, .framer-gSZXH .framer-ie0gis, .framer-gSZXH .framer-4qhwlx { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gSZXH .framer-1h35mop, .framer-gSZXH .framer-62qg0w, .framer-gSZXH .framer-1m6lzgp { 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-gSZXH .framer-gweuyj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gSZXH .framer-13rmy9e-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-gSZXH .framer-tllvhx { 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: 1400px; overflow: visible; padding: 44px; position: relative; width: 100%; z-index: 2; }\",\".framer-gSZXH .framer-s397am-container { flex: none; height: 431px; position: relative; width: 100%; }\",\".framer-gSZXH .framer-158yelc-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-gSZXH.framer-1sodo1g, .framer-gSZXH .framer-2v2ehg, .framer-gSZXH .framer-gq4qab, .framer-gSZXH .framer-1e1nwdj, .framer-gSZXH .framer-1yflu8w, .framer-gSZXH .framer-16gd3x5, .framer-gSZXH .framer-1rh40zz, .framer-gSZXH .framer-117lkxe, .framer-gSZXH .framer-1g22d1w, .framer-gSZXH .framer-srd1c1, .framer-gSZXH .framer-12ttf9r, .framer-gSZXH .framer-1gu54g4, .framer-gSZXH .framer-l9zqg1, .framer-gSZXH .framer-u8crhm, .framer-gSZXH .framer-kkroc9, .framer-gSZXH .framer-s8bhcs, .framer-gSZXH .framer-dorecj, .framer-gSZXH .framer-mwgbih, .framer-gSZXH .framer-1de06hi, .framer-gSZXH .framer-iqnmy7, .framer-gSZXH .framer-813btf, .framer-gSZXH .framer-1tijyof, .framer-gSZXH .framer-u92soz, .framer-gSZXH .framer-v2v1la, .framer-gSZXH .framer-1ct3k24, .framer-gSZXH .framer-1mgne9n, .framer-gSZXH .framer-1kz52me, .framer-gSZXH .framer-1a58s3e, .framer-gSZXH .framer-2bmmc5, .framer-gSZXH .framer-1h35mop, .framer-gSZXH .framer-62qg0w, .framer-gSZXH .framer-gweuyj, .framer-gSZXH .framer-1m6lzgp, .framer-gSZXH .framer-tllvhx { gap: 0px; } .framer-gSZXH.framer-1sodo1g > *, .framer-gSZXH .framer-1g22d1w > *, .framer-gSZXH .framer-1h35mop > *, .framer-gSZXH .framer-62qg0w > *, .framer-gSZXH .framer-1m6lzgp > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gSZXH.framer-1sodo1g > :first-child, .framer-gSZXH .framer-2v2ehg > :first-child, .framer-gSZXH .framer-gq4qab > :first-child, .framer-gSZXH .framer-16gd3x5 > :first-child, .framer-gSZXH .framer-1g22d1w > :first-child, .framer-gSZXH .framer-l9zqg1 > :first-child, .framer-gSZXH .framer-u8crhm > :first-child, .framer-gSZXH .framer-kkroc9 > :first-child, .framer-gSZXH .framer-s8bhcs > :first-child, .framer-gSZXH .framer-dorecj > :first-child, .framer-gSZXH .framer-mwgbih > :first-child, .framer-gSZXH .framer-2bmmc5 > :first-child, .framer-gSZXH .framer-1h35mop > :first-child, .framer-gSZXH .framer-62qg0w > :first-child, .framer-gSZXH .framer-1m6lzgp > :first-child, .framer-gSZXH .framer-tllvhx > :first-child { margin-top: 0px; } .framer-gSZXH.framer-1sodo1g > :last-child, .framer-gSZXH .framer-2v2ehg > :last-child, .framer-gSZXH .framer-gq4qab > :last-child, .framer-gSZXH .framer-16gd3x5 > :last-child, .framer-gSZXH .framer-1g22d1w > :last-child, .framer-gSZXH .framer-l9zqg1 > :last-child, .framer-gSZXH .framer-u8crhm > :last-child, .framer-gSZXH .framer-kkroc9 > :last-child, .framer-gSZXH .framer-s8bhcs > :last-child, .framer-gSZXH .framer-dorecj > :last-child, .framer-gSZXH .framer-mwgbih > :last-child, .framer-gSZXH .framer-2bmmc5 > :last-child, .framer-gSZXH .framer-1h35mop > :last-child, .framer-gSZXH .framer-62qg0w > :last-child, .framer-gSZXH .framer-1m6lzgp > :last-child, .framer-gSZXH .framer-tllvhx > :last-child { margin-bottom: 0px; } .framer-gSZXH .framer-2v2ehg > *, .framer-gSZXH .framer-gq4qab > *, .framer-gSZXH .framer-l9zqg1 > *, .framer-gSZXH .framer-2bmmc5 > *, .framer-gSZXH .framer-tllvhx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-gSZXH .framer-1e1nwdj > *, .framer-gSZXH .framer-117lkxe > *, .framer-gSZXH .framer-12ttf9r > *, .framer-gSZXH .framer-1gu54g4 > *, .framer-gSZXH .framer-1de06hi > *, .framer-gSZXH .framer-iqnmy7 > *, .framer-gSZXH .framer-813btf > *, .framer-gSZXH .framer-1tijyof > *, .framer-gSZXH .framer-u92soz > *, .framer-gSZXH .framer-v2v1la > *, .framer-gSZXH .framer-1ct3k24 > *, .framer-gSZXH .framer-1mgne9n > *, .framer-gSZXH .framer-1kz52me > *, .framer-gSZXH .framer-1a58s3e > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-gSZXH .framer-1e1nwdj > :first-child, .framer-gSZXH .framer-1yflu8w > :first-child, .framer-gSZXH .framer-1rh40zz > :first-child, .framer-gSZXH .framer-117lkxe > :first-child, .framer-gSZXH .framer-srd1c1 > :first-child, .framer-gSZXH .framer-12ttf9r > :first-child, .framer-gSZXH .framer-1gu54g4 > :first-child, .framer-gSZXH .framer-1de06hi > :first-child, .framer-gSZXH .framer-iqnmy7 > :first-child, .framer-gSZXH .framer-813btf > :first-child, .framer-gSZXH .framer-1tijyof > :first-child, .framer-gSZXH .framer-u92soz > :first-child, .framer-gSZXH .framer-v2v1la > :first-child, .framer-gSZXH .framer-1ct3k24 > :first-child, .framer-gSZXH .framer-1mgne9n > :first-child, .framer-gSZXH .framer-1kz52me > :first-child, .framer-gSZXH .framer-1a58s3e > :first-child, .framer-gSZXH .framer-gweuyj > :first-child { margin-left: 0px; } .framer-gSZXH .framer-1e1nwdj > :last-child, .framer-gSZXH .framer-1yflu8w > :last-child, .framer-gSZXH .framer-1rh40zz > :last-child, .framer-gSZXH .framer-117lkxe > :last-child, .framer-gSZXH .framer-srd1c1 > :last-child, .framer-gSZXH .framer-12ttf9r > :last-child, .framer-gSZXH .framer-1gu54g4 > :last-child, .framer-gSZXH .framer-1de06hi > :last-child, .framer-gSZXH .framer-iqnmy7 > :last-child, .framer-gSZXH .framer-813btf > :last-child, .framer-gSZXH .framer-1tijyof > :last-child, .framer-gSZXH .framer-u92soz > :last-child, .framer-gSZXH .framer-v2v1la > :last-child, .framer-gSZXH .framer-1ct3k24 > :last-child, .framer-gSZXH .framer-1mgne9n > :last-child, .framer-gSZXH .framer-1kz52me > :last-child, .framer-gSZXH .framer-1a58s3e > :last-child, .framer-gSZXH .framer-gweuyj > :last-child { margin-right: 0px; } .framer-gSZXH .framer-1yflu8w > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-gSZXH .framer-16gd3x5 > *, .framer-gSZXH .framer-u8crhm > *, .framer-gSZXH .framer-kkroc9 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-gSZXH .framer-1rh40zz > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-gSZXH .framer-srd1c1 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-gSZXH .framer-s8bhcs > *, .framer-gSZXH .framer-dorecj > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-gSZXH .framer-mwgbih > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-gSZXH .framer-gweuyj > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,'.framer-gSZXH[data-border=\"true\"]::after, .framer-gSZXH [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (max-width: 1199px) { .framer-gSZXH.framer-1sodo1g { width: 390px; } .framer-gSZXH .framer-1yflu8w { flex-direction: column; gap: 20px; } .framer-gSZXH .framer-16gd3x5 { flex: none; gap: 20px; width: 100%; } .framer-gSZXH .framer-1rh40zz { flex-direction: column; } .framer-gSZXH .framer-117lkxe { height: var(--framer-aspect-ratio-supported, 80px); width: 80px; } .framer-gSZXH .framer-1nvgl7u-container { height: var(--framer-aspect-ratio-supported, 60px); width: 60px; } .framer-gSZXH .framer-1g22d1w { flex: none; width: 100%; } .framer-gSZXH .framer-11x3gqv, .framer-gSZXH .framer-jpol45 { width: 100%; } .framer-gSZXH .framer-af0es5-container { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 192px); width: 1px; } .framer-gSZXH .framer-u8crhm { gap: 20px; } .framer-gSZXH .framer-2v0xk6 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-gSZXH .framer-tufsx8-container, .framer-gSZXH .framer-1jaikuf-container, .framer-gSZXH .framer-gyfz3c-container, .framer-gSZXH .framer-1x9sv0j-container, .framer-gSZXH .framer-1jn043l-container, .framer-gSZXH .framer-8veqor-container, .framer-gSZXH .framer-2jdjqk-container, .framer-gSZXH .framer-193aws9-container, .framer-gSZXH .framer-12k1525-container, .framer-gSZXH .framer-1p31lce-container { height: 18px; width: 18px; } .framer-gSZXH .framer-tllvhx { padding: 24px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-gSZXH .framer-1yflu8w, .framer-gSZXH .framer-16gd3x5, .framer-gSZXH .framer-1rh40zz, .framer-gSZXH .framer-u8crhm { gap: 0px; } .framer-gSZXH .framer-1yflu8w > *, .framer-gSZXH .framer-16gd3x5 > *, .framer-gSZXH .framer-u8crhm > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-gSZXH .framer-1yflu8w > :first-child, .framer-gSZXH .framer-16gd3x5 > :first-child, .framer-gSZXH .framer-1rh40zz > :first-child, .framer-gSZXH .framer-u8crhm > :first-child { margin-top: 0px; } .framer-gSZXH .framer-1yflu8w > :last-child, .framer-gSZXH .framer-16gd3x5 > :last-child, .framer-gSZXH .framer-1rh40zz > :last-child, .framer-gSZXH .framer-u8crhm > :last-child { margin-bottom: 0px; } .framer-gSZXH .framer-1rh40zz > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2185.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"YeuTUTLiM\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerAygPt60n6=withCSS(Component,css,\"framer-gSZXH\");export default FramerAygPt60n6;FramerAygPt60n6.displayName=\"Application\";FramerAygPt60n6.defaultProps={height:2185.5,width:1200};addFonts(FramerAygPt60n6,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NGBUP45ES3F7RD5XGKPEDJ6QEPO4TMOK/EXDVWJ2EDDVVV65UENMX33EDDYBX6OF7/6P4FPMFQH7CCC7RZ4UU4NKSGJ2RLF7V5.woff2\",weight:\"700\"},{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:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_A87jxeN7B.woff2\",weight:\"500\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_A87jxeN7B.woff2\",weight:\"700\"}]},...TopbarFonts,...PhosphorFonts,...LogoFonts,...YouTubeFonts,...ButtonFonts,...CTAFonts,...FooterSectionFonts,...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),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...componentPresets.fonts?.[\"PGk5KK79k\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"PGk5KK79k\"]):[],...componentPresets.fonts?.[\"k72YiG4ti\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"k72YiG4ti\"]):[],...componentPresets.fonts?.[\"PtnY28bje\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"PtnY28bje\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAygPt60n6\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YeuTUTLiM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"2185.5\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "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", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "TopbarFonts", "getFonts", "jkqwVx08O_default", "PhosphorFonts", "Icon", "LogoFonts", "Logo", "YouTubeFonts", "Youtube", "ButtonFonts", "syT4rrETn_default", "CTAFonts", "vVUPHW32c_default", "FooterSectionFonts", "EMFImvNqq_default", "breakpoints", "serializationHash", "variantClassNames", "isSet", "value", "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", "CJx6IaPw7_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "BXHUVVhIS", "jRJrbBBZ6", "B27vsuhd5", "W24XrpLUL", "cwJ9L0_Ks", "MIa1jtwzV", "crShAs7uy", "BXytUuP3p", "mfBCy1Q9L", "g_YLbEJRM", "SgydAKhde", "F9KxyOWE3", "p4S_QaTuY", "q1OjE2ERN", "su1sf8Pri", "se_Qyuwrg", "aTpPAgGTF", "fFlzek2I4", "S7aVLJCg2", "kAyv7qq0T", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "visible", "visible1", "visible2", "visible3", "visible4", "visible5", "visible6", "visible7", "visible8", "visible9", "visible10", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "jkqwVx08O_default", "Icon", "RichText", "x", "Link", "Logo", "Youtube", "ComponentPresetsProvider", "ResolveLinks", "resolvedLinks", "syT4rrETn_default", "vVUPHW32c_default", "EMFImvNqq_default", "css", "FramerAygPt60n6", "withCSS", "AygPt60n6_default", "addFonts", "TopbarFonts", "PhosphorFonts", "LogoFonts", "YouTubeFonts", "ButtonFonts", "CTAFonts", "FooterSectionFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
