{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js", "ssg:https://framerusercontent.com/modules/YVtVORNBer2Kg38Uq4OI/Qo6Y28jsovvNuqkJNHqB/bqMoBVYKW.js", "ssg:https://framerusercontent.com/modules/LDqBc5BYN1gyIVlZicUF/DmALf24WmlTAYlqINLhN/LaunchStoriesParagraph.js", "ssg:https://ga.jspm.io/npm:classnames@2.3.2/index.js", "ssg:https://framerusercontent.com/modules/YqfiTLLgytAkAKq1jGoI/PNNvyx2Gd0IUuHdo5Brb/WebSDK.js", "ssg:https://framerusercontent.com/modules/1g9mrfefcZVgbDvYhKPA/LINhmW7X7r1HmEus5PC7/cyl2nMjjq.js", "ssg:https://framerusercontent.com/modules/LZD4TIwq1P5cx6pZz68A/zDXnszUi48dXTGJCx3CS/QZLRliqQ5.js"],
  "sourcesContent": ["import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.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://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.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(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.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,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:hasBorderRadius&&showVideo?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},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}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,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}):/*#__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===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,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 embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High: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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"315\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicWidth\":\"560\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (461de17)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/m5lS6uSY8hzvk940RKoy/rttGdnTRnmi2BILgvjMR/AAUFPu2f4.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/FrSWCytQ9PJ7v3nDp7RA/Mdc2mA4L6nCG4LfFAMyz/EvEqk1LO5.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/7kdm5ueyqPMjIYNrIBNL/E8gEhUjlZJhRa5Lcuubm/iNe1udAYA.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/QGnXQ5vCFBTiCfuGrqTl/93ORrDKBc3LfZOQx46ZG/ljtIxbyo0.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/k9Op8Q5VNgvrSZ9HyoSh/9kiM2bvrFdy18Q8dCl3R/ro7OPezbn.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/T4l9qW5B5JY0Qx10PZt0/GoJIopy2gd0MP5IR77xm/u4o_X1cc4.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/XqgFj6UiHmqurcKGOuGz/4ZvqYJPV1PHYSoWO5pqe/VsfIP5r7T.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/d1fDaNjkzbfOFHflYo2j/4HVCSDtgmOy1f4mS8ViT/xAvjX88Q4.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/nfuX9Y9BqVk2Q28KwDnA/56Bcg8fN2FWLuxOZgdAL/xZndidUCt.js\";import Button from\"https://framerusercontent.com/modules/x1WN3IgJ2A0FeGr9u6B2/07yb9FwpmZTTsbOyfPau/W_IYU09WW.js\";const ButtonFonts=getFonts(Button);const cycleOrder=[\"b9GMj5OAX\",\"t22Ufa1_l\",\"gjlzoj0fQ\"];const serializationHash=\"framer-rsJVT\";const variantClassNames={b9GMj5OAX:\"framer-v-1542y8o\",gjlzoj0fQ:\"framer-v-10u6skx\",t22Ufa1_l:\"framer-v-14xuw1g\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{return value!==undefined&&value!==null&&value!==\"\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"b9GMj5OAX\",Phone:\"t22Ufa1_l\",Reverted:\"gjlzoj0fQ\"};const getProps=({background,buttonText,color,description,height,id,image,link,tagTitle,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4,_ref5,_ref6,_ref7;return{...props,oIBqRjgfR:(_ref=description!==null&&description!==void 0?description:props.oIBqRjgfR)!==null&&_ref!==void 0?_ref:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"text\"})}),SNKZrA_E5:(_ref1=color!==null&&color!==void 0?color:props.SNKZrA_E5)!==null&&_ref1!==void 0?_ref1:\"rgb(89, 154, 139)\",t5or1RZPQ:(_ref2=tagTitle!==null&&tagTitle!==void 0?tagTitle:props.t5or1RZPQ)!==null&&_ref2!==void 0?_ref2:\"Content\",tDxRTpkU3:(_ref3=background!==null&&background!==void 0?background:props.tDxRTpkU3)!==null&&_ref3!==void 0?_ref3:\"var(--token-60fdcfa4-20a8-45ce-a50c-5cfb7755a7fe, rgb(89, 154, 139))\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"b9GMj5OAX\",vbxbZV_py:(_ref5=image!==null&&image!==void 0?image:props.vbxbZV_py)!==null&&_ref5!==void 0?_ref5:{src:\"https://framerusercontent.com/images/vfdK7xnPbeb90ImwIlPPtR4HlQ.webp\",srcSet:\"https://framerusercontent.com/images/vfdK7xnPbeb90ImwIlPPtR4HlQ.webp?scale-down-to=1024 887w,https://framerusercontent.com/images/vfdK7xnPbeb90ImwIlPPtR4HlQ.webp 1028w\"},WHtYUW88e:link!==null&&link!==void 0?link:props.WHtYUW88e,xu8EHSmDn:(_ref6=title!==null&&title!==void 0?title:props.xu8EHSmDn)!==null&&_ref6!==void 0?_ref6:\"Title\",xvEbyQ7py:(_ref7=buttonText!==null&&buttonText!==void 0?buttonText:props.xvEbyQ7py)!==null&&_ref7!==void 0?_ref7:\"Try Stories Today\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,vbxbZV_py,t5or1RZPQ,xu8EHSmDn,xvEbyQ7py,oIBqRjgfR,WHtYUW88e,tDxRTpkU3,SNKZrA_E5,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"b9GMj5OAX\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const visible=isSet(WHtYUW88e);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1542y8o\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"b9GMj5OAX\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({gjlzoj0fQ:{\"data-framer-name\":\"Reverted\"},t22Ufa1_l:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tue0fp\",layoutDependency:layoutDependency,layoutId:\"Q4jA26YJ1\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1146,intrinsicWidth:1240,pixelHeight:1146,pixelWidth:1240,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px) / 2, 1px)`,...toResponsiveImage(vbxbZV_py),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-ldw5t9\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"nWdUPWqp8\",...addPropertyOverrides({t22Ufa1_l:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1146,intrinsicWidth:1240,pixelHeight:1146,pixelWidth:1240,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,...toResponsiveImage(vbxbZV_py),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4iolca\",layoutDependency:layoutDependency,layoutId:\"tKLh_Vu9h\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uiw6bu\",layoutDependency:layoutDependency,layoutId:\"KhR36JxYS\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g0kgnu\",layoutDependency:layoutDependency,layoutId:\"e0rzR_ylD\",style:{backgroundColor:tDxRTpkU3,borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZC1NZWRpdW0gwrY=\",\"--framer-font-family\":'\"Euclid-Medium \\xb6\", serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.6px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-SNKZrA_E5-bqMoBVYKW))\",\"--framer-text-transform\":\"uppercase\"},children:\"Content\"})}),className:\"framer-th4hvv\",fonts:[\"CUSTOM;Euclid-Medium \\xb6\"],layoutDependency:layoutDependency,layoutId:\"PQ6n5NDgX\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-SNKZrA_E5-bqMoBVYKW)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-SNKZrA_E5-bqMoBVYKW\":SNKZrA_E5},text:t5or1RZPQ,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-11ol8s1\",\"data-styles-preset\":\"u4o_X1cc4\",children:\"iOS, Android, React Native & Web\"})}),className:\"framer-1hc2umo\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"r7oh_Osfd\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:xu8EHSmDn,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:oIBqRjgfR,className:\"framer-12hip75\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZphOfzbTT\",stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",code:\"framer-styles-preset-tbon3z\",h1:\"framer-styles-preset-1tzs9kt\",h2:\"framer-styles-preset-11ol8s1\",h3:\"framer-styles-preset-11sghhh\",h5:\"framer-styles-preset-1d9caoq\",h6:\"framer-styles-preset-1jh7yw5\",img:\"framer-styles-preset-cqmvqo\",p:\"framer-styles-preset-21ogod\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible&&/*#__PURE__*/_jsx(Link,{href:WHtYUW88e,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-q5ny2q framer-2q3vc8\",layoutDependency:layoutDependency,layoutId:\"TSSqK0kOE\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ln5gie-container\",layoutDependency:layoutDependency,layoutId:\"t0AziMPOG-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"t0AziMPOG\",L6MRlKLOs:false,layoutId:\"t0AziMPOG\",v3G01k7RB:xvEbyQ7py,variant:\"r9fxlVjBf\",width:\"100%\"})})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rsJVT.framer-2q3vc8, .framer-rsJVT .framer-2q3vc8 { display: block; }\",\".framer-rsJVT.framer-1542y8o { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1320px; overflow: hidden; padding: 0px; position: relative; width: 1160px; }\",\".framer-rsJVT .framer-1tue0fp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-rsJVT .framer-ldw5t9 { flex: 1 0 0px; height: 600px; position: relative; width: 1px; }\",\".framer-rsJVT .framer-4iolca { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-rsJVT .framer-uiw6bu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rsJVT .framer-1g0kgnu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 7px 12px 7px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-rsJVT .framer-th4hvv { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-rsJVT .framer-1hc2umo, .framer-rsJVT .framer-12hip75 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rsJVT .framer-q5ny2q { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-rsJVT .framer-1ln5gie-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rsJVT.framer-1542y8o, .framer-rsJVT .framer-1tue0fp, .framer-rsJVT .framer-4iolca, .framer-rsJVT .framer-uiw6bu, .framer-rsJVT .framer-1g0kgnu, .framer-rsJVT .framer-q5ny2q { gap: 0px; } .framer-rsJVT.framer-1542y8o > *, .framer-rsJVT .framer-q5ny2q > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rsJVT.framer-1542y8o > :first-child, .framer-rsJVT .framer-1tue0fp > :first-child, .framer-rsJVT .framer-q5ny2q > :first-child { margin-left: 0px; } .framer-rsJVT.framer-1542y8o > :last-child, .framer-rsJVT .framer-1tue0fp > :last-child, .framer-rsJVT .framer-q5ny2q > :last-child { margin-right: 0px; } .framer-rsJVT .framer-1tue0fp > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-rsJVT .framer-4iolca > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-rsJVT .framer-4iolca > :first-child, .framer-rsJVT .framer-uiw6bu > :first-child, .framer-rsJVT .framer-1g0kgnu > :first-child { margin-top: 0px; } .framer-rsJVT .framer-4iolca > :last-child, .framer-rsJVT .framer-uiw6bu > :last-child, .framer-rsJVT .framer-1g0kgnu > :last-child { margin-bottom: 0px; } .framer-rsJVT .framer-uiw6bu > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-rsJVT .framer-1g0kgnu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-rsJVT.framer-v-14xuw1g.framer-1542y8o { flex-direction: column; }\",\".framer-rsJVT.framer-v-14xuw1g .framer-1tue0fp, .framer-rsJVT.framer-v-14xuw1g .framer-4iolca { flex: none; width: 100%; }\",\".framer-rsJVT.framer-v-14xuw1g .framer-ldw5t9 { height: 400px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rsJVT.framer-v-14xuw1g.framer-1542y8o { gap: 0px; } .framer-rsJVT.framer-v-14xuw1g.framer-1542y8o > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-rsJVT.framer-v-14xuw1g.framer-1542y8o > :first-child { margin-top: 0px; } .framer-rsJVT.framer-v-14xuw1g.framer-1542y8o > :last-child { margin-bottom: 0px; } }\",\".framer-rsJVT.framer-v-10u6skx .framer-1tue0fp { order: 1; }\",\".framer-rsJVT.framer-v-10u6skx .framer-4iolca { order: 0; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 1160\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1320px\",null,null]},\"t22Ufa1_l\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1320px\",null,null]},\"gjlzoj0fQ\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1320px\",null,null]}}}\n * @framerVariables {\"vbxbZV_py\":\"image\",\"t5or1RZPQ\":\"tagTitle\",\"xu8EHSmDn\":\"title\",\"xvEbyQ7py\":\"buttonText\",\"oIBqRjgfR\":\"description\",\"WHtYUW88e\":\"link\",\"tDxRTpkU3\":\"background\",\"SNKZrA_E5\":\"color\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbqMoBVYKW=withCSS(Component,css,\"framer-rsJVT\");export default FramerbqMoBVYKW;FramerbqMoBVYKW.displayName=\"Feature Section\";FramerbqMoBVYKW.defaultProps={height:600,width:1160};addPropertyControls(FramerbqMoBVYKW,{variant:{options:[\"b9GMj5OAX\",\"t22Ufa1_l\",\"gjlzoj0fQ\"],optionTitles:[\"Desktop\",\"Phone\",\"Reverted\"],title:\"Variant\",type:ControlType.Enum},vbxbZV_py:{__defaultAssetReference:\"data:framer/asset-reference,vfdK7xnPbeb90ImwIlPPtR4HlQ.webp?originalFilename=core-experience-1.webp&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},t5or1RZPQ:{defaultValue:\"Content\",displayTextArea:false,title:\"Tag Title\",type:ControlType.String},xu8EHSmDn:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},xvEbyQ7py:{defaultValue:\"Try Stories Today\",displayTextArea:false,title:\"Button Text\",type:ControlType.String},oIBqRjgfR:{defaultValue:\"<p>text</p>\",title:\"Description\",type:ControlType.RichText},WHtYUW88e:{title:\"Link\",type:ControlType.Link},tDxRTpkU3:{defaultValue:'var(--token-60fdcfa4-20a8-45ce-a50c-5cfb7755a7fe, rgb(89, 154, 139)) /* {\"name\":\"Soft Green\"} */',title:\"Background\",type:ControlType.Color},SNKZrA_E5:{defaultValue:\"rgb(89, 154, 139)\",title:\"Color\",type:ControlType.Color}});addFonts(FramerbqMoBVYKW,[{explicitInter:true,fonts:[{family:\"Euclid-Medium \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/WzfRCwhzZwAK7gJhbWSZPNMwwU8.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...ButtonFonts,...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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbqMoBVYKW\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"vbxbZV_py\\\":\\\"image\\\",\\\"t5or1RZPQ\\\":\\\"tagTitle\\\",\\\"xu8EHSmDn\\\":\\\"title\\\",\\\"xvEbyQ7py\\\":\\\"buttonText\\\",\\\"oIBqRjgfR\\\":\\\"description\\\",\\\"WHtYUW88e\\\":\\\"link\\\",\\\"tDxRTpkU3\\\":\\\"background\\\",\\\"SNKZrA_E5\\\":\\\"color\\\"}\",\"framerIntrinsicWidth\":\"1160\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1320px\\\",null,null]},\\\"t22Ufa1_l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1320px\\\",null,null]},\\\"gjlzoj0fQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1320px\\\",null,null]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"600\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bqMoBVYKW.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{font,breakpoint}from\"https://framerusercontent.com/modules/i4J1EGOrf4GiQfRahlRz/y6ouqX0rU49T8JfBwDzO/_styles.js\";export function LaunchStoriesParagraph(){const styles=`\n       .launch-stories-h1 {\n            color: #000000;\n            font-size: 30px;\n            line-height: 1.2em;\n            font-family: ${font.euclidBold};\n            font-weight: 700;\n            text-align: center;\n       }\n    \n        @media (min-width: ${breakpoint.md}) {\n            .launch-stories-h1 {\n                font-size: 36px;\n            }\n         }\n    `;return /*#__PURE__*/ _jsxs(_Fragment,{children:[/*#__PURE__*/ _jsxs(\"h1\",{className:\"launch-stories-h1\",children:[\"Launch Stories\",\" \",/*#__PURE__*/ _jsx(\"span\",{style:{textDecoration:\"line-through\",color:\"#1C62EB\"},children:\"Next Year\"}),\" \",\"Next Week\"]}),/*#__PURE__*/ _jsx(\"style\",{dangerouslySetInnerHTML:{__html:styles}})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"LaunchStoriesParagraph\":{\"type\":\"reactComponent\",\"name\":\"LaunchStoriesParagraph\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "var s={};(function(){var a={}.hasOwnProperty;function classNames(){var s=[];for(var e=0;e<arguments.length;e++){var r=arguments[e];if(r){var t=typeof r;if(\"string\"===t||\"number\"===t)s.push(r);else if(Array.isArray(r)){if(r.length){var n=classNames.apply(null,r);n&&s.push(n)}}else if(\"object\"===t){if(r.toString!==Object.prototype.toString&&!r.toString.toString().includes(\"[native code]\")){s.push(r.toString());continue}for(var i in r)a.call(r,i)&&r[i]&&s.push(i)}}}return s.join(\" \")}if(s){classNames.default=classNames;s=classNames}else window.classNames=classNames})();var a=s;export{a as default};\n\n//# sourceMappingURL=index.js.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";/**\n * These annotations control how your component sizes\n * Learn more: https://www.framer.com/docs/guides/auto-sizing\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */import{useEffect,useRef,useState}from\"react\";import{useWindowDimensions}from\"https://framerusercontent.com/modules/eSlbzLBXJ10sKJ49G3B9/ikylEbBVmlAiX2rGrRhS/_utils.js\";import classNames from\"classnames\";const apiKey=\"d88b57d2-843a-4692-b975-27088c9a1915\";const externalId=\"\";export default function WebSDK(props){const storyRow=useRef();// Boolean variable that lets us know if screen sizes are mobile or tablet-sized (<768px from Bootstrap)\nconst[isMobile,setIsMobile]=useState(false);const{width}=useWindowDimensions();const storyRowClass=classNames(\"storyteller-framer-container\",{storyteller:!isMobile,[\"storyteller-mobile\"]:isMobile});useEffect(()=>{width<768?setIsMobile(true):setIsMobile(false);},[width]);const initializeWebSdk=()=>{if(!Storyteller||!Storyteller.sharedInstance){console.error(\"Storyteller SDK is not available.\");return;}Storyteller.sharedInstance.initialize(apiKey,{externalId}).then(()=>{Storyteller.sharedInstance.theme=new Storyteller.UiTheme({light:{font:\"Euclid-Regular \\xb6\",storyTiles:{rectangularTile:{unreadIndicator:{backgroundColor:\"#D24747\",textColor:\"white\"},chip:{alignment:\"end\"}},title:{alignment:\"start\",textSize:isMobile?10:12,lineHeight:14}},lists:{row:{scrollIndicatorFade:!isMobile,tileSpacing:8,endInset:isMobile?12:2,startInset:0}},player:{showStoryTitle:false}}});storyRow.current=new Storyteller.RowView(\"storyteller-row\");storyRow.current.uiStyle=\"light\";}).catch(e=>{console.log(e);// handle error\n});};const styles=`\n    @media screen and (min-width: 1024px) {\n        .storyteller-framer-container {\n            height: 225px !important;\n        }\n\n        .storytellerContainer-29GKcz,\n        div[class*=\"storytellerContainer\"] {\n            justify-content: center !important;\n        }\n    }\n    `;useEffect(()=>{// Add the library script and set up the load handler\nconst script=document.createElement(\"script\");script.src=\"https://content.usestoryteller.com/javascript-sdk/7.9.1/dist/storyteller.min.js\";// Add load event listener\nscript.addEventListener(\"load\",()=>{console.log(\"Storyteller SDK script loaded successfully.\");initializeWebSdk();});// Add error event listener\nscript.addEventListener(\"error\",()=>{console.error(\"Error loading Storyteller SDK script.\");});document.head.appendChild(script);},[]);return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{className:storyRowClass,style:{height:\"200px\"},id:\"storyteller-row\",\"data-cell-type\":\"square\",ref:storyRow}),/*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:styles}})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"WebSDK\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"CUSTOM;Euclid-Regular \\xb6\"]);export const fonts=[{family:\"Euclid-Regular \\xb6\",moduleAsset:{localModuleIdentifier:\"local-module:css/cyl2nMjjq:default\",url:\"assets/RbplzWyhnFVNOkChrGXv8QfeQkw.woff2\"},url:new URL(\"assets/RbplzWyhnFVNOkChrGXv8QfeQkw.woff2\",\"https://framerusercontent.com/modules/1g9mrfefcZVgbDvYhKPA/LINhmW7X7r1HmEus5PC7/cyl2nMjjq.js\").href}];export const css=['.framer-JfydN .framer-styles-preset-1tapmg:not(.rich-text-wrapper), .framer-JfydN .framer-styles-preset-1tapmg.rich-text-wrapper p, .framer-JfydN .framer-styles-preset-1tapmg.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Euclid-Regular \\xb6\", serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-acdc6890-0b9c-4e95-b90e-c4a97cd05ec0, #1f2125); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-JfydN .framer-styles-preset-1tapmg:not(.rich-text-wrapper), .framer-JfydN .framer-styles-preset-1tapmg.rich-text-wrapper p, .framer-JfydN .framer-styles-preset-1tapmg.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Euclid-Regular \\xb6\", serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-acdc6890-0b9c-4e95-b90e-c4a97cd05ec0, #1f2125); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-JfydN .framer-styles-preset-1tapmg:not(.rich-text-wrapper), .framer-JfydN .framer-styles-preset-1tapmg.rich-text-wrapper p, .framer-JfydN .framer-styles-preset-1tapmg.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Euclid-Regular \\xb6\", serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-acdc6890-0b9c-4e95-b90e-c4a97cd05ec0, #1f2125); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-JfydN\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (575e68f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js\";import HubSpotForm from\"https://framerusercontent.com/modules/uGQZtcsxBzvxqsgxQ0Tz/cGBHXozmXUtcAABEfMAq/Hubspot.js\";import FeatureSection from\"#framer/local/canvasComponent/bqMoBVYKW/bqMoBVYKW.js\";import Footer from\"#framer/local/canvasComponent/JuytdRo0y/JuytdRo0y.js\";import CodeSection from\"#framer/local/canvasComponent/kIPIj4ot_/kIPIj4ot_.js\";import NavbarPadding from\"#framer/local/canvasComponent/lMhg6FSHS/lMhg6FSHS.js\";import Navbar from\"#framer/local/canvasComponent/MsBdjArod/MsBdjArod.js\";import Button from\"#framer/local/canvasComponent/W_IYU09WW/W_IYU09WW.js\";import{withSkewedBackground}from\"#framer/local/codeFile/RFHFwfS/_styles_overrides.js\";import{LaunchStoriesParagraph}from\"#framer/local/codeFile/ULZh_Sf/LaunchStoriesParagraph.js\";import WebSDK from\"#framer/local/codeFile/M9bfzbA/WebSDK.js\";import*as sharedStyle5 from\"#framer/local/css/BGCwUyIaS/BGCwUyIaS.js\";import*as sharedStyle1 from\"#framer/local/css/cyl2nMjjq/cyl2nMjjq.js\";import*as sharedStyle from\"#framer/local/css/eoiwYysNX/eoiwYysNX.js\";import*as sharedStyle6 from\"#framer/local/css/WXwk9GfYS/WXwk9GfYS.js\";import*as sharedStyle3 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle4 from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import*as sharedStyle2 from\"#framer/local/css/YckFIlg3V/YckFIlg3V.js\";import metadataProvider from\"#framer/local/webPageMetadata/QZLRliqQ5/QZLRliqQ5.js\";const NavbarFonts=getFonts(Navbar);const NavbarWithVariantAppearEffect=withVariantAppearEffect(Navbar);const NavbarPaddingFonts=getFonts(NavbarPadding);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonFonts=getFonts(Button);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const MotionDivWithSkewedBackground=withSkewedBackground(motion.div);const MotionDivWithFX=withFX(motion.div);const WebSDKFonts=getFonts(WebSDK);const YouTubeFonts=getFonts(YouTube);const ContainerWithFX=withFX(Container);const LaunchStoriesParagraphFonts=getFonts(LaunchStoriesParagraph);const CodeSectionFonts=getFonts(CodeSection);const FeatureSectionFonts=getFonts(FeatureSection);const HubSpotFormFonts=getFonts(HubSpotForm);const FooterFonts=getFonts(Footer);const cycleOrder=[\"HoFK7n2Fa\",\"VA5V3aLwT\",\"wakQqSaHe\"];const breakpoints={HoFK7n2Fa:\"(min-width: 1200px)\",VA5V3aLwT:\"(min-width: 810px) and (max-width: 1199px)\",wakQqSaHe:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Oyk9y\";const variantClassNames={HoFK7n2Fa:\"framer-v-uhi8xx\",VA5V3aLwT:\"framer-v-1sfefcw\",wakQqSaHe:\"framer-v-1r8pjgc\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={delay:.1,duration:.5,ease:[.44,0,.56,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:20};const transition2={delay:.2,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={delay:.3,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={delay:.4,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={delay:.6,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition6={delay:.5,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const transition7={delay:.3,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition8={delay:.45,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const animation11={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:25};const transition9={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:25};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:60};const transition10={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:60};const transition11={delay:.15,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition11,x:0,y:25};const transition12={delay:.3,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition12,x:0,y:25};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:50,y:0};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:50,y:0};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-50,y:0};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:-50,y:0};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:-150,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation24={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:150,y:0};const animation25={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:150,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"HoFK7n2Fa\",Phone:\"wakQqSaHe\",Tablet:\"VA5V3aLwT\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"HoFK7n2Fa\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-Oyk9y`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-Oyk9y`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const ref2=React.useRef(null);const id=useRouteElementId(\"Fx7i4Sh6V\");const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"wakQqSaHe\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"wakQqSaHe\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"HoFK7n2Fa\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-uhi8xx\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wakQqSaHe:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-15399wc-container\",layoutScroll:true,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VA5V3aLwT:{__framer__targets:[{offset:20,ref:ref2,target:\"ZvU1aTMgd\"}],variant:\"LVajOUKwe\"},wakQqSaHe:{__framer__targets:[{offset:20,ref:ref2,target:\"SNB_hSIv4\"}],variant:\"f7nWXOPCl\"}},children:/*#__PURE__*/_jsx(NavbarWithVariantAppearEffect,{__framer__animateOnce:true,__framer__targets:[{offset:20,ref:ref2,target:\"G2CQR3JZU\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"d5oykKY4e\",layoutId:\"d5oykKY4e\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"vykztrhz5\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x0doo6-container\",children:/*#__PURE__*/_jsx(NavbarPadding,{background:\"var(--token-1ffb1808-3fad-49d0-95c3-c6ed873d8267, rgb(23, 26, 37))\",height:\"100%\",id:\"bkOo5tYUA\",layoutId:\"bkOo5tYUA\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b4itsk\",id:id,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10yefm2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cov1mm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-leeq7m\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wakQqSaHe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1kgbb6h\",\"data-styles-preset\":\"eoiwYysNX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We built Stories, so you don\u2019t have\\xa0to.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1kgbb6h\",\"data-styles-preset\":\"eoiwYysNX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We built Stories, so you don\u2019t have\\xa0to.\"})}),className:\"framer-woolr8\",\"data-framer-appear-id\":\"woolr8\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wakQqSaHe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tapmg\",\"data-styles-preset\":\"cyl2nMjjq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-573d272f-14cd-487c-9c21-8825887d26ea, rgb(209, 209, 211))\"},children:\"Boost user engagement, retention, and revenue by adding a best-in-class Stories & TikTok-style Vertical Video feeds to your platforms.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tapmg\",\"data-styles-preset\":\"cyl2nMjjq\",style:{\"--framer-text-color\":\"var(--token-573d272f-14cd-487c-9c21-8825887d26ea, rgb(209, 209, 211))\"},children:\"Boost user engagement, retention, and revenue by adding a best-in-class Stories & TikTok-style Vertical Video feeds to your platforms.\"})}),className:\"framer-1a8xc7a\",\"data-framer-appear-id\":\"1a8xc7a\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"h4XaTNVZC\"},children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1ioabqz framer-1ux1e95\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{animate:animation3,className:\"framer-1jb3x8k-container\",\"data-framer-appear-id\":\"1jb3x8k\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"ZMUk7qLnO\",L6MRlKLOs:true,layoutId:\"ZMUk7qLnO\",v3G01k7RB:\"Get Stories\",variant:\"r9fxlVjBf\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-kk0pnm hidden-1r8pjgc\",\"data-framer-appear-id\":\"kk0pnm\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-biemu1\",\"data-framer-name\":\"download_1\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:201,name:\"download_1\",svg:'<svg width=\"201\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g opacity=\".8\" fill=\"#fff\"><path d=\"M17.125 12.707c0-1.984.927-3.432 2.726-4.558-1.036-1.447-2.563-2.198-4.58-2.359-1.964-.16-4.091 1.073-4.855 1.073-.818 0-2.672-1.019-4.144-1.019C3.218 5.898 0 8.203 0 12.974c0 1.395.218 2.842.764 4.343.708 1.984 3.217 6.81 5.835 6.702 1.363 0 2.345-.965 4.145-.965 1.745 0 2.617.965 4.145.965 2.672 0 4.962-4.396 5.617-6.38-3.545-1.662-3.381-4.825-3.381-4.932ZM14.07 3.914C15.543 2.198 15.38.59 15.38 0c-1.31.107-2.837.911-3.71 1.877-.98 1.072-1.526 2.412-1.417 3.86 1.418.107 2.727-.59 3.817-1.823Zm55.92 11.77c.614 0 1.133-.456 1.133-1.095 0-.593-.52-1.095-1.133-1.095s-1.133.502-1.133 1.095c0 .639.52 1.095 1.133 1.095Zm-12.508 0c.613 0 1.133-.456 1.133-1.095 0-.593-.52-1.095-1.133-1.095-.614 0-1.133.502-1.133 1.095 0 .639.52 1.095 1.133 1.095Zm12.933-6.57c3.87 2.052 6.514 5.84 6.939 10.312H50.166c.377-4.472 3.02-8.26 6.891-10.313l-2.266-3.787c-.047-.046-.047-.183-.047-.274 0-.228.189-.456.472-.456.142 0 .33.137.425.273l2.266 3.833c1.557-.684 4.153-1.186 5.853-1.186 1.652 0 4.248.502 5.805 1.186l2.266-3.833c.094-.136.283-.273.425-.273.283 0 .472.228.472.456 0 .091 0 .228-.047.274l-2.266 3.787Zm58.795-1.292c-.318-.106-.584-.213-.849-.266 0-.213.053-.426.106-.64.637-3.144.212-5.702-1.222-6.555-1.38-.799-3.664.054-6 2.079a6.37 6.37 0 0 0-.637.586c-.16-.16-.319-.266-.425-.426-2.443-2.132-4.885-3.038-6.319-2.185-1.381.8-1.806 3.197-1.222 6.235.054.266.107.586.213.853-.372.106-.69.213-1.009.32-2.814 1.012-4.832 2.557-4.832 4.156 0 1.652 2.124 3.357 5.097 4.37.213.053.478.16.691.213-.053.32-.106.64-.213.96-.531 2.93-.106 5.275 1.275 6.075 1.434.852 3.876 0 6.213-2.079.159-.16.371-.32.531-.48.265.214.478.427.743.64 2.284 1.972 4.514 2.771 5.894 1.972 1.434-.853 1.912-3.357 1.328-6.448-.053-.213-.106-.48-.159-.693l.478-.16c3.08-1.013 5.31-2.665 5.31-4.37 0-1.599-2.124-3.197-4.992-4.157Zm-7.222-4.53c2.018-1.758 3.824-2.398 4.673-1.918.903.48 1.275 2.611.691 5.33-.053.212-.053.372-.107.532a28.093 28.093 0 0 0-3.61-.533 29.673 29.673 0 0 0-2.231-2.878c.213-.16.372-.373.584-.532Zm-6.106 11.458c.265.48.531.906.849 1.386-.849-.107-1.699-.213-2.495-.426.265-.747.531-1.546.849-2.345.266.48.531.906.797 1.385Zm-1.646-6.395c.796-.213 1.593-.32 2.442-.426-.265.426-.531.906-.796 1.332-.266.48-.531.906-.797 1.386-.318-.8-.584-1.546-.849-2.292Zm1.486 3.677c.319-.746.744-1.492 1.116-2.185.424-.692.849-1.385 1.327-2.078.797-.053 1.593-.107 2.443-.107.796 0 1.646.054 2.389.107.478.693.903 1.386 1.328 2.078.372.693.796 1.386 1.115 2.132-.319.746-.69 1.492-1.115 2.185l-1.275 2.079a37.41 37.41 0 0 1-2.442.106c-.85 0-1.646-.053-2.443-.107a44.538 44.538 0 0 1-1.327-2.078c-.372-.693-.744-1.439-1.116-2.132Zm9.559 2.718c.318-.48.531-.959.796-1.439.319.8.637 1.546.903 2.345-.85.213-1.646.373-2.496.427.266-.427.531-.906.797-1.333Zm.796-4.103c-.265-.48-.531-.906-.796-1.386-.266-.426-.531-.906-.797-1.332.85.107 1.699.266 2.443.426-.266.8-.531 1.546-.85 2.292Zm-5.469-5.969a18.686 18.686 0 0 1 1.54 1.919 30.708 30.708 0 0 0-3.133 0 30.435 30.435 0 0 1 1.593-1.919Zm-6.16-3.304c.903-.48 2.867.266 4.938 2.078.16.16.266.267.425.373a23.608 23.608 0 0 0-2.283 2.878 26.14 26.14 0 0 0-3.558.533c-.106-.266-.159-.533-.212-.853-.478-2.558-.16-4.476.69-5.009Zm-1.328 14.07a3.082 3.082 0 0 1-.637-.214c-1.115-.373-2.443-.906-3.345-1.652a2.47 2.47 0 0 1-1.009-1.599c0-.96 1.699-2.238 4.089-3.09.318-.107.637-.16.955-.267.319 1.172.797 2.291 1.275 3.41-.531 1.066-.956 2.239-1.328 3.411Zm6.213 5.222c-.902.8-1.911 1.439-3.027 1.865-.584.32-1.221.32-1.858.107-.85-.533-1.168-2.399-.69-4.903.053-.32.106-.64.159-.906 1.221.266 2.389.426 3.611.533.69.959 1.487 1.918 2.283 2.824l-.478.48Zm1.275-1.28a21.305 21.305 0 0 1-1.593-1.971c.531.053 1.062.053 1.593.053.531 0 1.062 0 1.593-.053a18.493 18.493 0 0 1-1.593 1.972Zm6.956 1.6a2.509 2.509 0 0 1-.85 1.651c-.849.48-2.655-.16-4.619-1.811-.213-.214-.425-.427-.691-.64a23.11 23.11 0 0 0 2.284-2.824c1.221-.107 2.389-.32 3.611-.587l.159.64c.212 1.172.265 2.398.106 3.57Zm.956-5.756c-.159.053-.266.106-.425.16-.372-1.173-.85-2.292-1.381-3.41.531-1.067.956-2.186 1.328-3.358.266.106.531.16.797.266 2.442.853 4.195 2.132 4.195 3.091 0 1.013-1.859 2.398-4.514 3.25Zm-7.912-.8c1.327 0 2.389-1.065 2.389-2.45a2.384 2.384 0 0 0-2.389-2.399c-1.381 0-2.443 1.066-2.443 2.398 0 1.386 1.062 2.452 2.443 2.452Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M166.333 5.456a2.472 2.472 0 0 0-2.472 2.472v8.165a2.472 2.472 0 0 0 2.472 2.472h31.761a2.471 2.471 0 0 0 2.471-2.472V7.928a2.471 2.471 0 0 0-2.471-2.472h-31.761Zm3.224 2.622h-1.763v7.865h1.763V12.83h3.173v3.113h1.763V8.078h-1.763v3.08h-3.173v-3.08Zm6.011 1.684h2.008v6.181h1.775V9.762h2.03V8.078h-5.813v1.684Zm8.501-1.684 2.451 3.39 2.474-3.39h1.608v7.865h-1.775v-4.84l-2.296 3.167-2.307-3.179v4.852h-1.763V8.078h1.608Zm9.958 0h-1.763v7.865h5.024V14.26h-3.261V8.078Z\"/></g></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZC1SZWd1bGFyIMK2\",\"--framer-font-family\":'\"Euclid-Regular \\xb6\", serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:\"BUILT FOR IOS, ANDROID, REACT\\xa0NATIVE\\xa0&\\xa0WEB\"})}),className:\"framer-fvfe3x\",fonts:[\"CUSTOM;Euclid-Regular \\xb6\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iv9doy\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-113ik0\",\"data-framer-appear-id\":\"113ik0\",\"data-framer-name\":\"Ornament Top\",initial:animation6,name:\"Ornament Top\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7r98bs\",\"data-framer-name\":\"ornament_1\",fill:\"black\",intrinsicHeight:278,intrinsicWidth:278,name:\"ornament_1\",svg:'<svg width=\"278\" height=\"278\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M130.112 128.862a43.47 43.47 0 0 1 18.545 18.543l62.513 120.4c5.416 10.433 19.409 12.594 27.721 4.283l33.198-33.2a17.375 17.375 0 0 0 4.826-15.317l-31.376-177.5a17.383 17.383 0 0 0-14.093-14.091L53.947.603A17.385 17.385 0 0 0 38.63 5.429L5.43 38.628c-8.31 8.311-6.15 22.303 4.282 27.72l120.4 62.514Z\" fill=\"#F3C3AF\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-e8dpro\",\"data-framer-appear-id\":\"e8dpro\",\"data-framer-name\":\"Ornament Bottom\",initial:animation6,name:\"Ornament Bottom\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15d4hek\",\"data-framer-name\":\"ornament_2\",fill:\"black\",intrinsicHeight:241,intrinsicWidth:317,name:\"ornament_2\",svg:'<svg width=\"317\" height=\"241\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M169.445 119.846a43.845 43.845 0 0 1-22.913-13.219L54.168 5.7c-8.003-8.744-22.204-7.198-28.133 3.063L2.35 49.753a17.51 17.51 0 0 0-.704 16.174l76.93 164.65a17.54 17.54 0 0 0 17.413 10.045l181.176-15.758a17.541 17.541 0 0 0 13.668-8.697l23.685-40.989c5.93-10.261.17-23.322-11.411-25.874l-133.662-29.458Z\" fill=\"#1C62EB\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VA5V3aLwT:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:503.5,intrinsicWidth:251.5,pixelHeight:1007,pixelWidth:503,positionX:\"center\",positionY:\"center\",sizes:\"171.833px\",src:\"https://framerusercontent.com/images/5q2rtBm8iiSN8ZN6Nv2zUkoJRc.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5q2rtBm8iiSN8ZN6Nv2zUkoJRc.webp 503w\"}},wakQqSaHe:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:503.5,intrinsicWidth:251.5,pixelHeight:1007,pixelWidth:503,positionX:\"center\",positionY:\"center\",sizes:\"180px\",src:\"https://framerusercontent.com/images/5q2rtBm8iiSN8ZN6Nv2zUkoJRc.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5q2rtBm8iiSN8ZN6Nv2zUkoJRc.webp 503w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation8,background:{alt:\"\",fit:\"fit\",intrinsicHeight:503.5,intrinsicWidth:251.5,pixelHeight:1007,pixelWidth:503,positionX:\"center\",positionY:\"center\",sizes:\"254.7468px\",src:\"https://framerusercontent.com/images/5q2rtBm8iiSN8ZN6Nv2zUkoJRc.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5q2rtBm8iiSN8ZN6Nv2zUkoJRc.webp 503w\"},className:\"framer-1gdtjel\",\"data-framer-appear-id\":\"1gdtjel\",\"data-framer-name\":\"hero_story_row_2\",initial:animation9,name:\"hero_story_row_2\",optimized:true,style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VA5V3aLwT:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:504,intrinsicWidth:252,pixelHeight:1008,pixelWidth:504,positionX:\"center\",positionY:\"center\",sizes:\"172px\",src:\"https://framerusercontent.com/images/SgxGJN9fEXdiZAwMN261FA8MFg.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SgxGJN9fEXdiZAwMN261FA8MFg.webp 504w\"}},wakQqSaHe:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:504,intrinsicWidth:252,pixelHeight:1008,pixelWidth:504,positionX:\"center\",positionY:\"center\",sizes:\"168px\",src:\"https://framerusercontent.com/images/SgxGJN9fEXdiZAwMN261FA8MFg.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SgxGJN9fEXdiZAwMN261FA8MFg.webp 504w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation10,background:{alt:\"\",fit:\"fit\",intrinsicHeight:504,intrinsicWidth:252,pixelHeight:1008,pixelWidth:504,positionX:\"center\",positionY:\"center\",sizes:\"255px\",src:\"https://framerusercontent.com/images/SgxGJN9fEXdiZAwMN261FA8MFg.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SgxGJN9fEXdiZAwMN261FA8MFg.webp 504w\"},className:\"framer-1npt74m\",\"data-framer-appear-id\":\"1npt74m\",\"data-framer-name\":\"clay_dark\",initial:animation11,name:\"clay_dark\",optimized:true,style:{transformPerspective:1200}})})]})]})}),/*#__PURE__*/_jsx(MotionDivWithSkewedBackground,{className:\"framer-1hwvs09\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-idnzbp\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fj53vz\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ulh461\",\"data-framer-name\":\"our_websdk_e7aba8e27e494634359239b6b24be2f4\",fill:\"black\",intrinsicHeight:71,intrinsicWidth:161,name:\"our_websdk_e7aba8e27e494634359239b6b24be2f4\",svg:'<svg width=\"161\" height=\"71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13.98 15.684c.027.072.048.163.062.275.03.24-.058.43-.267.57l-.638.306a2.93 2.93 0 0 1-.76.237 1.09 1.09 0 0 1-.397-.007 1.676 1.676 0 0 0-.712-.277c-.268-.041-.814-.038-1.636.01a4.285 4.285 0 0 1-.631.135 2.854 2.854 0 0 0-.441.084 8.22 8.22 0 0 1-.384 1.431c-.03.362-.092.69-.187.983-.083.387-.111.607-.086.66-.046.081-.162.576-.349 1.484-.189.89-.361 1.758-.518 2.605a48.246 48.246 0 0 1-.259 1.303c-.07.197-.152.508-.249.934l-.173.869-.452 2.004c-.113.297-.242.765-.388 1.404a25.212 25.212 0 0 0-.296 1.674c-.113.748-.233 1.29-.36 1.626-.108.333-.213.544-.315.632-.102.088-.255.145-.458.17-.297.038-.575-.077-.834-.346-.26-.268-.406-.532-.439-.79-.051-.408.001-1.111.158-2.11.175-1 .355-1.803.542-2.41.032-.343.063-.62.093-.83.048-.213.076-.367.083-.462.046-.081.105-.286.176-.615.088-.35.151-.668.19-.955.014-.34.353-2.274 1.018-5.801l.121-.608c.132-.3.245-.67.34-1.115.136-.112.185-.316.148-.612a.479.479 0 0 1 .055-.233c.062-.101.091-.171.087-.208.016-.02.042-.034.08-.038.018-.003.038.004.059.02.037-.004.087-.048.152-.132l-.028.004-1.343.31-.604.133c-1.081.23-1.694.374-1.837.43l-.386.076c-.574.073-.995.013-1.264-.179-.253-.213-.36-.472-.324-.778a.947.947 0 0 1 .343-.636c.222-.178.595-.357 1.118-.536.162-.058.48-.154.951-.289l.733-.233.93-.23a32.14 32.14 0 0 1 3.375-.765 70.08 70.08 0 0 0 1.243-.213c.347-.082.575-.139.684-.171.262-.015.684-.02 1.268-.02.602 0 1.038.03 1.31.09.418.04.773.165 1.062.373.29.209.501.464.633.767Zm.691 15.209c-.34-.013-.669-.16-.986-.44a1.602 1.602 0 0 1-.554-1.03c-.056-.445.078-1.62.403-3.523.031-.493.157-1.139.376-1.938.071-.329.113-.522.124-.58.193-1.153.475-2.572.846-4.256l.166-.698c.427-1.84.68-2.964.76-3.37l.29-1.278c-.018-.148.066-.3.254-.455.203-.176.38-.274.527-.292.297-.038.608.12.935.474.327.354.526.743.599 1.167a1.36 1.36 0 0 1-.062.628c-.31.98-.656 2.482-1.04 4.506-.175.85-.355 1.663-.54 2.439-.186.757-.343 1.303-.47 1.64l-.228.65-.203 1.52a.313.313 0 0 1-.01.143.215.215 0 0 0-.018.087c.007.055.02.082.038.08l.413-.532c.47-.605 1.04-1.232 1.71-1.881.557-.503.842-.784.854-.841.011-.058.075-.151.19-.279l.25-.257c.539-.5 1.15-.794 1.836-.88.204-.026.457.045.761.214.303.168.571.426.803.773.248.327.398.693.45 1.1l.027.223.025.194c.058.463.043 1.086-.046 1.869-.074.762-.113 1.2-.117 1.313.093-.012.229-.048.41-.108.277-.035.475-.032.594.01.136.039.257.099.36.18a.588.588 0 0 0 .272.135c.042.032.067.085.076.16.054.425-.13.825-.554 1.198-.423.374-.845.606-1.267.696-.518.066-.96-.076-1.323-.425-.364-.35-.581-.802-.651-1.357a8.051 8.051 0 0 1-.057-.67 21.91 21.91 0 0 1-.018-.591c.01-.378 0-.677-.029-.9-.03-.24-.078-.394-.142-.461-.05-.088-.13-.125-.24-.111-.37.047-.976.471-1.815 1.273-.823.781-1.64 1.768-2.449 2.962-.482.945-.992 1.452-1.53 1.52Zm13.827-12.468a1.458 1.458 0 0 1-.508-.444 1.561 1.561 0 0 1-.268-.56c-.042-.182-.037-.296.014-.34.095-.143.183-.333.267-.57.083-.236.146-.404.19-.503.106-.352.196-.608.27-.768.097-.276.2-.43.309-.462a.872.872 0 0 1 .347-.157c.24-.03.51.02.81.152.317.13.563.296.74.5.166.28.264.53.292.752.056.445-.095.963-.453 1.553a1.931 1.931 0 0 1-.597.64 1.74 1.74 0 0 1-.753.293c-.26.032-.48.004-.66-.086Zm-1.595 11.518c-.292-.227-.48-.673-.564-1.34-.044-.352-.032-.626.037-.823a1.254 1.254 0 0 1 .014-.34c.02-.135.028-.22.024-.258-.033-.108.003-.423.106-.944.16-.529.34-1.332.543-2.411.22-1.082.368-1.853.442-2.314a.266.266 0 0 1 .083-.236.56.56 0 0 1 .316-.181c.194-.1.465-.04.813.18.345.2.64.446.883.735a.603.603 0 0 1 .222.423c.035.278-.036.682-.214 1.213a6.661 6.661 0 0 0-.183.785 25.65 25.65 0 0 0-.09.858 12.537 12.537 0 0 0-.352 1.455 7.256 7.256 0 0 0-.04.57c-.044.701-.108 1.161-.194 1.379-.052.477-.165.849-.339 1.115-.175.248-.393.388-.652.421-.315.04-.6-.056-.855-.287Zm8.062-.368a3.477 3.477 0 0 1-1.66-.186c-.533-.196-.973-.47-1.318-.821-.348-.37-.546-.75-.595-1.139-.04-.315.07-.488.33-.521.17.016.378.093.621.232.299.131.547.232.744.301.215.067.425.088.628.062.315-.04.578-.12.788-.24.227-.142.346-.317.358-.525-.01-.075-.067-.227-.171-.459a3.424 3.424 0 0 0-.365-.66c-.485-.559-.838-1.116-1.058-1.672a12.585 12.585 0 0 1-.51-2.024c-.053-.426.188-.974.724-1.644a11.344 11.344 0 0 1 1.968-1.856c.774-.568 1.418-.913 1.93-1.034 1.018-.129 1.64-.122 1.864.019.285.17.568.474.849.909.28.435.44.81.48 1.124.017.13-.027.305-.131.525-.088.2-.147.329-.177.389l-.2.42-.143.442a6.197 6.197 0 0 1-.142.441c-.05.194-.11.315-.18.361-.05.044-.142.065-.274.063-.315.04-.62-.063-.914-.308-.294-.245-.462-.534-.504-.867a1.27 1.27 0 0 1 .159-.754c.136-.262.202-.412.197-.449-.01-.074-.097-.1-.264-.08-.24.031-.596.198-1.066.502a4.61 4.61 0 0 0-1.21 1.14c-.34.439-.48.898-.42 1.38.034.26.119.559.256.9.153.319.308.581.466.787.167.13.436.547.807 1.253.387.685.608 1.24.662 1.666.081.648-.107 1.17-.565 1.567-.44.394-1.094.646-1.965.756Zm16.877-14.039c-.048.063-.1.097-.156.104-.074.01-.201-.03-.382-.12-.188.004-.457-.122-.81-.378-.333-.26-.506-.435-.518-.528-.046-.22-.067-.537-.063-.951.002-.433.056-.826.162-1.178.124-.354.315-.557.572-.608.132.002.314.026.545.072.23.028.49.08.782.155.44.66.693 1.24.756 1.74.093.74-.203 1.305-.888 1.692Zm-1.1 11.851c-.445.056-.863-.126-1.255-.547-.374-.424-.64-.973-.801-1.65-.012-.694-.02-1.2-.023-1.52.09-.933.205-2.03.348-3.29.158-1.28.256-1.989.296-2.125a.475.475 0 0 1 .413-.306c.203-.026.436.03.698.165.278.116.518.302.72.559.173.185.277.407.31.666.048.39-.034 1.228-.248 2.515-.142.959-.226 1.637-.251 2.036-.025.398 0 .818.074 1.26.031.843.03 1.426-.005 1.75-.034.325-.126.487-.277.487ZM57 26.823c-.982.124-1.744-.1-2.286-.671a1.853 1.853 0 0 1-.3-.809 1.247 1.247 0 0 1 .041-.57c.056-.157.148-.244.278-.26.092-.012.19.023.295.104.26.117.611.148 1.056.092.185-.023.59-.093 1.215-.21.276-.053.48-.145.615-.275.15-.15.216-.3.197-.448a.377.377 0 0 0-.209-.312l.028-.004a6.708 6.708 0 0 1-2.286-.67c-.725-.38-1.15-.768-1.276-1.166a3.485 3.485 0 0 1-.174-.712 3.98 3.98 0 0 1 .116-1.539c.16-.528.39-1.018.69-1.47.085-.067.271-.231.558-.493.303-.283.526-.453.67-.508l.003.028a4.517 4.517 0 0 1 1.003-1.002c.396-.294.913-.595 1.551-.901l.438-.112.576-.129c.021.016.07.038.15.066l.284.02a.747.747 0 0 0 .344.042c.399.025.794.248 1.185.669.408.4.618.797.63 1.19 0 .452-.112.899-.339 1.341-.207.44-.447.706-.717.796.034-.023-.027-.062-.185-.118a6.93 6.93 0 0 0-.267-.107l-.104.07a.214.214 0 0 0-.039-.08.45.45 0 0 0-.08-.188c-.16-.224-.254-.523-.282-.895l.02-.285c-.007-.056-.048-.088-.125-.097a.459.459 0 0 0-.257-.024.981.981 0 0 0-.281.007 2.62 2.62 0 0 0-.84.275 3.14 3.14 0 0 0-.75.546c-.49.439-.808.752-.954.94-.13.166-.253.454-.37.864-.15.302-.216.526-.198.674.024.186.186.353.487.503.32.148.84.318 1.56.51.41.117.715.295.914.533.197.22.357.444.48.673.12.21.206.36.254.448.051.106.107.25.167.43.06.18.083.282.067.302l.07.105-.004-.028a.74.74 0 0 1 .125.323c.047.37-.146.78-.578 1.23-.433.45-.974.781-1.624.995l.027-.004a10.88 10.88 0 0 1-1.57.311Zm16.419-2.015a1.29 1.29 0 0 1-.563.015c-.134-.02-.341-.098-.621-.232a4.198 4.198 0 0 1-1.175-1.037c-.318-.43-.488-.804-.509-1.121a.85.85 0 0 0-.004-.254.85.85 0 0 0-.059-.246.859.859 0 0 1-.045-.136 1.706 1.706 0 0 1-.153-.094.249.249 0 0 1 .014-.114.438.438 0 0 0 .069-.122c.072-.028.104-.07.097-.125a.45.45 0 0 0-.08-.187c-.074-.142-.089-.478-.043-1.01a8.98 8.98 0 0 1 .31-1.564c.105-.37.279-.854.524-1.449.263-.598.515-1.062.755-1.394.395-.595.725-1.041.988-1.338a3.79 3.79 0 0 1 .979-.744c.298-.17.614-.275.948-.317a1.86 1.86 0 0 1 1.216.242c1.093.163 1.804.656 2.134 1.48.16.375.27.803.331 1.285.13 1.037-.05 2.217-.541 3.54-.263.747-.542 1.375-.835 1.883a7.94 7.94 0 0 1-1.061 1.432c-.298.32-.71.635-1.235.946-.51.29-.99.51-1.441.661Zm1.888-4.5c.196-.382.349-.74.457-1.073.108-.334.184-.776.228-1.327.032-.343.027-.68-.016-1.014-.074-.593-.198-.906-.372-.94a.988.988 0 0 0-.4-.035c-.388.049-.764.35-1.127.904-.368.517-.625 1.01-.773 1.48-.148.47-.29 1.213-.425 2.227-.036.306-.036.607.001.903.038.296.114.531.23.705.114.155.263.22.449.197.518-.065 1.1-.74 1.748-2.026Zm11.972 2.442a2.027 2.027 0 0 1-.498-.587c-.127-.266-.3-.668-.518-1.205a1.575 1.575 0 0 1-.115-.465l-.06-.472a7.828 7.828 0 0 1-.208.59c-.087.2-.182.343-.284.431-.372.48-.758.849-1.159 1.106-.546.445-1.032.695-1.457.749-.52.065-.994-.12-1.425-.554-.654-.407-1.022-.944-1.106-1.61a4.586 4.586 0 0 1-.011-.535c-.05-.69-.04-1.36.029-2.008.087-.65.29-1.495.612-2.532l.623-1.772.335-.918c.088-.048.234-.085.438-.111a2.11 2.11 0 0 1 .854.061c.274.079.431.21.473.392.065.067.11.203.136.406.075.593-.076 1.412-.452 2.456l-.156.556c-.233.839-.395 1.49-.487 1.952-.092.464-.12.843-.082 1.14.037.296.173.477.407.541.1.044.214.058.343.041.37-.046.78-.39 1.225-1.029.465-.642.89-1.674 1.275-3.096.18-.662.255-1.33.227-2.004-.063-.2-.035-.428.082-.688a1.77 1.77 0 0 1 .51-.657.685.685 0 0 1 .274-.288c.12-.09.204-.101.25-.032l.441-.084c.053-.025.147.048.282.219.153.169.26.268.32.298.203.125.333.41.39.854.077.611-.04 1.482-.348 2.612-.259.785-.427 1.39-.505 1.813a5.1 5.1 0 0 0-.051 1.164c.049.389.115.691.199.906.1.195.293.386.58.576.323.166.504.633.544 1.4-.02.133-.11.248-.267.343a1.514 1.514 0 0 1-.597.188c-.408.052-.762.002-1.063-.148Zm4.166-1.232a3.771 3.771 0 0 1-.685-.506c-.172-.167-.25-.42-.237-.76-.024-.637.023-1.386.14-2.248l.069-.573c-.008-.507.155-1.525.49-3.053.35-1.55.668-2.605.954-3.168.162-.209.465-.341.91-.397.37-.047.639-.006.806.124.162.092.26.268.292.527.054.426-.12 1.21-.522 2.352l-.204.618c-.1.258-.182.494-.25.71-.048.212-.027.304.064.274.159-.378.589-.921 1.29-1.63.719-.712 1.217-1.161 1.495-1.347.12-.09.278-.185.472-.285.194-.1.326-.173.396-.22a2.541 2.541 0 0 1 1.107-.393 1.83 1.83 0 0 1 .768.045c.231.046.395.147.49.305a.526.526 0 0 0 .177.288c.102.062.173.1.212.114.056-.007.096.016.122.07a.216.216 0 0 1 .038.08c.019.147-.086.358-.315.632-.231.255-.485.409-.76.462a2.859 2.859 0 0 0-.622.22 5.122 5.122 0 0 0-.631.362l-.67.508c-.59.394-1.087.776-1.492 1.147-.389.35-.775.794-1.159 1.332-.08.104-.203.251-.367.441-.146.188-.27.401-.371.64-.113.146-.21.506-.287 1.08-.062.554-.085.895-.069 1.025l-.069.347a1.304 1.304 0 0 1-.194.476c-.14.225-.26.39-.36.497a.557.557 0 0 1-.344.185c-.185.023-.413-.07-.684-.28ZM42.312 57.45a1.067 1.067 0 0 1-.688-.082.91.91 0 0 1-.445-.396c-.104-.08-.26-.268-.466-.562-.188-.296-.313-.543-.376-.742-.186-.88-.305-1.524-.356-1.931a36.065 36.065 0 0 1-.183-2.122c-.043-.935-.015-1.757.084-2.466.117-.71.266-1.473.445-2.285a4.85 4.85 0 0 0 .114-.438c.023-.116.016-.172-.02-.167-.128.035-.31.453-.548 1.254l-.166.473c-.05.195-.127.411-.229.65-.373 1.213-1.108 3.075-2.202 5.583-.141.225-.332.578-.572 1.06-.464.943-.86 1.604-1.189 1.985-.455.565-.97.884-1.544.956-.241.03-.518 0-.83-.092-.301 0-.614-.168-.939-.503-.324-.335-.47-.674-.438-1.017-.114-.456-.187-1.406-.219-2.851-.016-1.466 0-2.69.044-3.674.018-.906.12-2.405.308-4.498l.233-3.078c.076-.291.181-.87.317-1.733l.134-.948c-.018-.299.047-.524.198-.674a1.04 1.04 0 0 1 .638-.307 1.54 1.54 0 0 1 .657.059c.213.048.374.131.483.25.442.376.695.814.758 1.314.038.297.013.62-.075.97-.576 2.142-.904 4.911-.984 8.308a213.42 213.42 0 0 0-.09 3.313c0 1.035.037 1.557.113 1.567.287.039.588-.413.902-1.356.967-2.173 2.044-4.896 3.23-8.169.03-.06.342-.87.936-2.432l.509-1.334.342-.862c.372-.93.669-1.636.89-2.116.222-.48.394-.755.517-.827.463-.058.83.018 1.101.228.288.19.55.486.79.888.055.144.096.317.122.521.023.185.018.365-.017.538l-.173.869c-.073.46-.128.92-.165 1.375a16.4 16.4 0 0 0-.438 2.793c-.03.361-.06.713-.092 1.056-.032.343-.057.666-.075.97a82.306 82.306 0 0 0-.285 3.563c-.031.944-.01 1.779.062 2.504.042.483.083.807.123.972.058.162.136.33.233.507.03.09.083.13.157.121.11-.014.26-.174.447-.48.215-.384.375-.753.481-1.105l.25-.709a13.26 13.26 0 0 1 .512-1.532 92.013 92.013 0 0 0 1.55-4.485 114.603 114.603 0 0 0 1.406-4.523c.343-1.605.622-2.75.836-3.436.23-.707.475-1.16.731-1.362.102-.088.273-.148.514-.178.352-.044.62-.003.806.124.04.014.173.1.4.26.227.16.346.36.358.604-.094.595-.396 1.856-.905 3.783-.51 1.927-.912 3.36-1.208 4.301-.057.139-.174.408-.35.806-.03.06-.095.21-.197.448-.085.218-.121.383-.107.494.023.185-.345 1.219-1.104 3.102-.744 1.863-1.31 3.12-1.698 3.77a7.782 7.782 0 0 1-1.241 1.568c-.468.473-.9.847-1.298 1.123s-.67.424-.82.442Zm12.269-3.297c-1.055.133-1.945-.056-2.667-.567-.723-.51-1.154-1.313-1.292-2.405a13.468 13.468 0 0 1-.095-1.427c-.02-.45.08-1.083.297-1.9.235-.82.583-1.636 1.046-2.447.48-.813 1.078-1.443 1.793-1.891.33-.211.613-.36.847-.445.231-.105.504-.177.82-.217.759-.096 1.387-.034 1.885.186.517.217.89.49 1.12.818.248.326.388.619.42.878l.018.139.01.083c.029.223-.05.646-.234 1.272-.184.625-.531 1.233-1.04 1.824-.49.589-1.176.967-2.058 1.135a7.669 7.669 0 0 1-1.32.053c-.419-.04-.684-.054-.795-.04-.278.035-.44.159-.49.372-.048.213-.041.56.02 1.042.12.511.305.855.553 1.03.266.174.622.233 1.066.176.222-.028.473-.125.753-.292.278-.186.6-.462.968-.828.2-.213.359-.365.48-.455a.945.945 0 0 1 .457-.171c.167-.021.376.066.626.26s.397.392.442.593c-.01.227-.171.586-.486 1.077-.314.492-.745.95-1.293 1.377a3.72 3.72 0 0 1-1.85.77Zm.128-6.818c.352-.044.588-.112.708-.202.174-.116.422-.383.746-.8.34-.438.51-.732.51-.883a.515.515 0 0 0-.306-.413c-.165-.11-.388-.167-.67-.169l-.306.039c-.241.03-.567.278-.979.744a6.43 6.43 0 0 0-.995 1.508c.03.09.18.157.448.198.267.023.548.016.844-.022Zm9.296 5.459c-.694.013-1.186-.226-1.473-.717-.167-.13-.275-.238-.324-.326a.706.706 0 0 1-.035-.278c.223-.028.348-.081.375-.16-.007-.055.016-.096.07-.122a.455.455 0 0 1 .222-.028c.486-.023 1.12-.367 1.902-1.03.8-.665 1.642-1.524 2.525-2.576a28.54 28.54 0 0 0 .877-1.55c.148-.32.21-.572.187-.757-.012-.093-.076-.226-.192-.4-.11-.136-.268-.191-.472-.166-.334.042-.764.285-1.291.728-.734.6-1.314 1.144-1.742 1.63a8.41 8.41 0 0 0-1.151 1.613 19.67 19.67 0 0 1-.586.95c-.173.266-.291.45-.353.552.009.074-.09.18-.299.32-.19.136-.358.214-.507.233a1.296 1.296 0 0 1-.361-.18.657.657 0 0 1-.244-.365 1.396 1.396 0 0 0-.27-.135.967.967 0 0 1-.29-.274.868.868 0 0 1-.132-.378c-.035-.278-.002-.762.1-1.452.07-.78.161-1.554.271-2.32.127-.788.222-1.223.287-1.307a3.42 3.42 0 0 0 .073-.32 1.28 1.28 0 0 0 .044-.541 4.45 4.45 0 0 1 .097-.577c.064-.234.094-.369.09-.406.083-.086.287-.855.612-2.307-.01-.074.132-.59.425-1.55.417-1.463.676-2.399.775-2.806.074-.16.197-.449.37-.866.03-.06.09-.19.177-.389.104-.22.19-.353.26-.4.125-.053.414.005.868.173.473.166.787.343.942.53.024.035.048.08.073.132a.19.19 0 0 1 .073.132c.012.093-.022.267-.103.521a8.59 8.59 0 0 1-.239.792c-.08.255-.14.451-.18.588l-.595 1.768a56.228 56.228 0 0 0-1.373 5.225c-.101.54-.197.975-.287 1.306l-.062.629.621-.897a9.64 9.64 0 0 1 1.12-1.185 6.55 6.55 0 0 1 .91-.623c.402-.24.685-.388.847-.446.574-.223 1.074-.36 1.5-.415.685-.086 1.376.325 2.074 1.234.204.276.336.645.394 1.108.042.333.038.672-.013 1.017a3.91 3.91 0 0 1-.249.935c-.083.086-.163.2-.239.34-.079.123-.113.222-.104.296-.004.113-.13.383-.377.81-.248.426-.523.856-.826 1.289-.418.56-.994 1.141-1.727 1.742-.715.598-1.32 1.022-1.815 1.273a90.43 90.43 0 0 0-.625.192c-.292.074-.5.138-.625.191Zm18.123-.084a3.532 3.532 0 0 1-1.633-.19 3.244 3.244 0 0 1-1.41-.894c-.393-.421-.627-.937-.704-1.548a2.31 2.31 0 0 1 .297-1.449c.26-.465.623-.727 1.086-.786.315-.04.625.034.931.221a6.136 6.136 0 0 1-.117.636c-.053.326-.066.6-.038.823.038.296.208.529.512.698.32.147.775.184 1.368.11 1.945-.246 3.311-.748 4.1-1.506.807-.76 1.154-1.594 1.04-2.502-.069-.386-.142-.669-.22-.847-.082-.196-.262-.503-.54-.92l-.657-.96c-.015-.112-.222-.34-.623-.684-.403-.363-.669-.602-.796-.718a15.26 15.26 0 0 0-.758-1.09 1.731 1.731 0 0 0-.637-.569c-.065-.067-.158-.215-.281-.444-.123-.229-.205-.35-.244-.364l-.066-.077-.174-.26a2.77 2.77 0 0 1-.394-1.107 4.365 4.365 0 0 1 .113-1.567c.152-.583.391-1.15.717-1.699l.094-.153c.11-.315.414-.814.911-1.498.516-.686.83-1.035.94-1.05.093-.011.294-.13.604-.358.345-.25.65-.449.913-.595.28-.167.568-.27.864-.306.267-.128.49-.222.67-.283.178-.079.36-.13.545-.153l.615-.05.632.09c.813.18 1.405.472 1.776.877.37.405.604.987.7 1.746.037.296-.066.592-.312.886a3.166 3.166 0 0 1-.864.758c-.351.195-.657.309-.916.342a1.112 1.112 0 0 1-.514-.049c-.317.022-.534.02-.65-.002-.118-.042-.179-.081-.184-.118-.037.005-.059-.02-.066-.076-.014-.112.044-.175.174-.192.102-.088.245-.294.43-.618.203-.327.292-.592.266-.796-.037-.296-.315-.412-.834-.346-.944.119-1.73.453-2.357 1.002-.61.53-1.053 1.121-1.328 1.777-.256.653-.357 1.193-.304 1.619.03.09.072.273.126.548.054.276.16.526.32.75.851.927 1.526 1.651 2.024 2.172.11.118.239.252.39.402.15.15.219.245.205.285l.014.11c.037-.004.216.227.539.695.322.467.49.747.501.84-.007-.056.087.092.282.444.21.33.412.729.602 1.194.19.465.318.957.384 1.475.012.394-.06.873-.214 1.438-.136.563-.335 1.002-.596 1.317l-.27.317c-.384.387-.887.798-1.51 1.234-.62.455-1.162.777-1.627.968l-.563.24c-.412.165-.928.324-1.548.478-.62.153-1.2.264-1.736.331Z\" fill=\"#1C62EB\"/><path d=\"M93.516 50.116a6.21 6.21 0 0 0-.518-.302 1.486 1.486 0 0 1-.434-.312.796.796 0 0 1-.168-.43 2.393 2.393 0 0 1 .014-.567c.013-.49.088-1.309.226-2.455.135-1.165.263-2.018.383-2.56 0-.15.02-.36.061-.629.058-.29.13-.534.218-.733l.187-.983c.027-.23.116-.645.266-1.247.168-.605.276-1.013.325-1.226.04-.137.387-1.253 1.045-3.35.614-1.996.963-3.103 1.048-3.32.003-.133-.017-.215-.059-.247-.023-.035-.12-.051-.288-.049a4.773 4.773 0 0 0-.705.005c-.331.06-.903.302-1.715.724-.48.23-.765.35-.858.362a.482.482 0 0 1-.41-.117.634.634 0 0 1-.19-.4c-.048-.37.06-.779.324-1.226a1.96 1.96 0 0 1 1.128-.904c.359-.14.94-.307 1.743-.502.821-.198 1.408-.32 1.76-.364 1.329-.205 2.528-.243 3.598-.115 1.067.11 2.161.424 3.28.941.4.194.858.54 1.373 1.04.533.498.933.908 1.199 1.232l.278.416c.181.241.347.512.498.813.385.666.652 1.592.802 2.777.128 1.019.129 1.922.003 2.709-.262 1.35-.823 2.794-1.683 4.333-.862 1.52-1.76 2.602-2.695 3.246a8.594 8.594 0 0 1-.572.383 4.603 4.603 0 0 1-.767.407c-.093.163-1.068.784-2.926 1.865l-1.288.755-.083.01c-.315.04-.545.154-.69.342a6.128 6.128 0 0 1-1.865.433l-1.188.206-.657-.961Zm2.62-2.052c.261-.014.723-.233 1.385-.655l.551-.323c.16-.077.296-.122.407-.136.127-.035.21-.055.246-.06.13-.016.919-.473 2.367-1.37l.705-.457.509-.657c.421-.542.686-.904.794-1.087.174-.116.346-.317.517-.602.187-.306.308-.471.361-.497.074-.01.195-.24.364-.695.265-.579.42-.918.464-1.018.277-.637.462-1.112.554-1.424.092-.313.13-.61.114-.89.002-.282-.038-.748-.12-1.396-.103-.815-.237-1.428-.402-1.84-.146-.414-.398-.843-.755-1.288-.714-.737-1.417-1.241-2.109-1.511a3.463 3.463 0 0 1-.775-.1c-.255-.081-.393-.13-.413-.146-.133-.152-.474-.25-1.025-.294-.533-.045-.966-.047-1.3-.005a.63.63 0 0 0-.082.236c-.01.076-.01.218-.003.424s-.085.67-.277 1.39c-.19.72-.387 1.177-.588 1.372-.023.116-.218.808-.585 2.077a52.266 52.266 0 0 0-.985 4.273 2.786 2.786 0 0 1-.288.63c-.108.182-.188.296-.239.34a3.224 3.224 0 0 0-.01.368.933.933 0 0 1-.086.434l-.3 2.55a71.326 71.326 0 0 0-.15 1.486l-.215.987 1.369-.116Zm27.78-19.366c.06.18.035.353-.076.518-.095.143-.332.352-.711.626-.782.512-1.216.878-1.301 1.095-.084.086-.277.27-.58.553-.284.28-.645.627-1.082 1.04a28.467 28.467 0 0 0-1.717 1.6c-.465.49-.767.858-.906 1.101a.477.477 0 0 0-.211.112c-.067.064-.13.091-.188.08a2.84 2.84 0 0 0-.229.198c-.118.109-.2.204-.246.285a1.479 1.479 0 0 1-.222.48.457.457 0 0 1-.395.219c-.26.183-.698.586-1.315 1.21.33 1.275.825 2.37 1.486 3.284.687 1.117 1.343 1.919 1.969 2.404a7.39 7.39 0 0 0 1.209.864c.383.196.666.282.852.259.173.035.421.135.743.301.322.167.501.313.535.44.024.036.047.145.07.33.031.241.015.488-.047.74a.99.99 0 0 1-.344.636.694.694 0 0 1-.472.286c-.185.023-.502-.031-.951-.162-.294.055-.839-.158-1.633-.641-.795-.483-1.417-.94-1.867-1.373a51.15 51.15 0 0 1-1.554-1.808 7.6 7.6 0 0 1-1.051-1.843c-.149-.433-.36-.914-.634-1.444a9.326 9.326 0 0 1-.279-.642l-.055.233c-.011.058-.093.378-.245.962-.134.581-.307 1.6-.518 3.057a116.518 116.518 0 0 1-.535 2.918c-.163.792-.312 1.328-.446 1.608-.113.297-.244.454-.392.473-.148.019-.344-.041-.587-.18-.635-.259-.978-.592-1.029-.999a1.506 1.506 0 0 1 .013-.34 2.19 2.19 0 0 1-.032-.702c.028-.23.039-.362.034-.4.13-.016.176-.172.139-.468-.019-.148.024-.483.127-1.004l.142-.893.231-.848c.139-.544.205-.834.201-.871-.031-.241.051-.562.245-.963.046-.231.081-.48.104-.747.022-.266.023-.482.002-.649.026-.097.101-.323.225-.678.125-.354.203-.703.235-1.045.007-.095.022-.2.045-.316.042-.118.08-.264.114-.438l.601-2.616.298-.997c.025-.097.11-.4.253-.907.161-.51.279-.769.353-.778l-.039-.306c-.009-.074.062-.327.215-.76l.249-.71c.118-.259.2-.504.246-.736.062-.252.098-.417.107-.493.014-.04.043-.109.086-.209.044-.1.099-.19.163-.274a1.97 1.97 0 0 1 .521-.348c.229-.123.436-.196.621-.22.315-.04.543.054.685.281.278.417.436.773.473 1.07a.986.986 0 0 1-.096.576 113.59 113.59 0 0 0-1.014 3.148c-.39 1.234-.671 2.21-.844 2.928l.177-.163c.42-.543 1.108-1.278 2.064-2.208l3.066-3.209c.486-.325 1.046-.81 1.679-1.454.171-.134.307-.255.406-.361.1-.107.184-.183.253-.23.1-.106.302-.292.608-.556.303-.283.502-.42.596-.414.123-.072.299-.019.529.16.229.177.427.406.594.686.186.278.279.492.279.642Zm33.042 21.581c.369 2.18 2.317 6.29-1.171 6.606-3.901.354-7.18-1.368-10.601-1.663-.597-.858-.524-2.036.287-2.365.436-.32.682.198 1.018.316 2.689.46 5.253 1.47 8.077 1.338-2.32-5.373-6.655-10.9-11.685-12.722-2.519-.913-6.352-1.41-8.772-.49-1.14.431-1.549 1.536-2.863 1.526-.696-.012-.635-1.381-.557-1.97 2.69-2.056 5.717-2.463 8.362-2.118 6.386.837 11.952 5.313 15.861 12.417.097-2.325-.729-4.86-1.183-7.31.34-.51.221-1.124.939-1.547 1.913 2.102 1.794 5.061 2.288 7.982Zm-45.461 6.944c.4.14.67-.184.73.118-3.541.077-10.185-.47-12.745.265-.617-.072-.693-.423-1.152-.572-.716.242-.14.636-.636.866-1.769-.944-2.57.573-2.704-.239-.507.294-.472.074-.37.721-.562-.344-1.103.387-1.214-.196.41.076.646-.036.791-.258-2.318-.092-5.497 1.258-6.927 1.206-.011-.002.045-.502-.186-.416-.271.106-.094 1.104-.605.674-.417-.783-3.049 1.22-3.76.164-.274 1.094-1.83-.042-2.64.928.01-.215.4-.236.06-.376-2.053.892-6.59 1.674-9.01 1.838-1.089.078-1.961.84-2.64.929-.841.118-1.106-.264-1.089.153-.095-.156-.356-.038-.68-.053-.83-.021-4.928 1.105-7.892 1.05-.64.15.344.638-.369.711-.4-.14-.659.186-.73-.118-.005-.198 1.11-.215.339-.528-3.38 1.176-8.814 1.07-11.138 2.66.052-.245.36-.204.34-.528-1.38.163-2.683.517-3.618.77-3.121.842-7.553.521-8.324 2.148.486.135.388.59.874.724 1.173-.751 4.349-.21 5.592-.649.846-.296-.662-.465.34-.529.33-.022 1.731 1.024 1.974.122 7.863.33 13.7-2.36 20.37-2.723.56-.248.306-.552.604-.674.27.646 1.138-.39 1.46.236.053-.255-.038-.439-.155-.608.35.15.566.383.905.532 7.311-1.642 16.233-3.156 24.561-3.984.587-.79 3.791-.347 3.793-.357-.356.705-1.917-.554-2.58.553-3.6.369-9.238 1.227-13.299 2.124-10.435 1.306-17.732 4.805-28.753 5.245-.18.441.38.485.094.985 7.246.408 15.05-2.265 21.592-4.078 0 .226.356.264.699.31 2.764-1.473 6.999-1.353 10.111-2.44 1.426.004 3.504-.065 3.824-.55 7.183-.778 9.411-1.848 16.844-2.52.071-.215.05-.538.339-.529 2.591.268 5.405-1.14 8.623-.931-.134-.746 1.256-.22.635-.867.462.508.85-.023 1.696.274.31-.797-.506.069-.422-.454.587-.338.679.364 1.429.429 3.281-1.155 6.68.025 10.175-1.264.664.606 3.073.807 3.31-.435-6.968-1.757-12.69-.225-18.466.14Zm-62.874 9.82c-.02-.474 1.09.28.822-.45-.073-.596-.548.1-.966-.156.328-1.133 1.478.653 1.46.236.58.376-1.08.85-1.316.37Zm1.803-.612a1.01 1.01 0 0 1-.172-.282c.175.038.181.152.172.282Zm.125.124c-.037.003-.063.018-.11.01a.433.433 0 0 1-.005-.123.4.4 0 0 0 .115.113c.77-.13-.207-.74.928-.208.632.055-.278-.374.121-.752.812-.236 1.737-.35 2.797-.33-.503.72-2.447-.112-2.64.93.83.247.945-.76 1.522-.14-.547.391-2.007 1.125-2.728.5Zm5.018-.912c-.451.398-1.087.597-2.065.439.928-.51 1.383-.182 2.343-.591.015.36-.299.356-.278.152Zm3.4-.994c.512-.481 1.355-.609 2.343-.59-.513.481-1.675.266-2.343.59Zm8.437-1.356c-.019-.107-.017-.191-.02-.248.028.051.04.129.02.248Zm23.896-2.934c-.217.671-2.35 1.004-3.309.435.042-.182.318-.1.514-.115-.235-.64-1.23.065-1.43-.428-.505.737 1.35.18.845.908-.79.032-.892-.314-1.152-.572-.3.13-.045.425-.605.674-.86.011-.99-.377-1.4-.612-.744.491-2.135.276-2.622 1.044.92-.162 1.803-.386 2.562-.668.34.215.255.662.33 1.023-.97-.129.13-.28-.391-.647-.514-.036-.192.816-.636.866-.743-.186-1.237.252-1.696-.274.165.404-.912.408-1.848.671-.643-.584-1.803-.14-2.252.022-1.887.683-7.298.139-8.015 1.81-.555-.155-.935-.122-1.245-.003-.57-.28.828-.261 1.058-.412-.885-.284-2.732.302-3.823.549 1.19-1.012 3.815-1.172 6.463-1.478.287.018.256-.316.34-.529.907.89 1.31-.635 1.974.122.604-.524 2.576-.911 3.617-.771.558-.013-.247-.341.34-.529 3.423-.547 6.443-1.434 9.988-1.68-.043-.411.258-.476.369-.712.338.224-.117.273.125.792 3.277-1.428 9.957-1.035 12.23-1.713.266-.446.762.67 1.213.196.512.422-1.456.038-1.366.749-.351-.142.146-.23.092-.569-1.078.466-2.95.079-3.648.964-.248-1.01-1.099.368-1.665-.467-1.584.6-4.326.666-6.65 1.062-.02.354.806.252.905.532.071-.29.403-.471 1.088-.596.945.21-.376.607.638.687-.485.759-.41-.151-.938-.33Zm12.775-.448c-.634-.188-.709-.849-.997.036-3.071-.816-5.314.873-8.222.027.108.751.955.295 1.664.466-.03.485-1.643.224-1.943-.314-.535.394-1.304.514-2.3.4 1.235-1.588 5.78-.1 7.471-1.512 4.217.606 5.423-.874 9.528-.4-1.438.747-4.153.12-5.201 1.297Zm13.998-1.814c-1.888-.653-2.612.312-4.974-.032 1.023-.493 3.548-.866 4.306-.47 1.441-.54 3.472-.54 5.037-.354-1.088.822-3.475-.486-4.369.856Z\" fill=\"#1C62EB\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qz6521\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-91ogpf-container\",children:/*#__PURE__*/_jsx(WebSDK,{height:\"100%\",id:\"WgjlGwljM\",layoutId:\"WgjlGwljM\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qau7j1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kvtb7\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-96x804\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VA5V3aLwT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZC1Cb2xkIMK2\",\"--framer-font-family\":'\"Euclid-Bold \\xb6\", serif',\"--framer-font-size\":\"40px\",\"--framer-text-color\":\"var(--token-f1a4c624-0410-4342-8cd1-45a9c08ab691, rgb(28, 98, 235))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"What is\\xa0\"}),\"Storyteller\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"?\"})]})})},wakQqSaHe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZC1Cb2xkIMK2\",\"--framer-font-family\":'\"Euclid-Bold \\xb6\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f1a4c624-0410-4342-8cd1-45a9c08ab691, rgb(28, 98, 235))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"What is\\xa0\"}),\"Storyteller\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"?\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZC1Cb2xkIMK2\",\"--framer-font-family\":'\"Euclid-Bold \\xb6\", serif',\"--framer-font-size\":\"44px\",\"--framer-text-color\":\"var(--token-f1a4c624-0410-4342-8cd1-45a9c08ab691, rgb(28, 98, 235))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"What is\\xa0\"}),\"Storyteller\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"?\"})]})}),className:\"framer-1jayxfm\",fonts:[\"CUSTOM;Euclid-Bold \\xb6\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-71f62v-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,height:\"100%\",id:\"qOHd_Efqz\",isMixedBorderRadius:false,isRed:true,layoutId:\"qOHd_Efqz\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:20,topRightRadius:20,url:\"https://www.youtube.com/embed/kwOgsZQQ4yw\",width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-b4pavo hidden-1r8pjgc\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7rr8hl\",\"data-framer-name\":\"bg_element\",layout:\"position\",name:\"bg_element\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 628 628\"><path d=\"M 336.452 294.387 C 327.096 312.406 312.406 327.096 294.387 336.452 L 21.267 478.26 C -2.395 490.546 -7.298 522.287 11.555 541.14 L 86.865 616.45 C 95.967 625.551 108.938 629.638 121.613 627.397 L 524.254 556.221 C 540.566 553.337 553.337 540.566 556.221 524.254 L 627.397 121.613 C 629.638 108.938 625.551 95.967 616.45 86.865 L 541.14 11.555 C 522.287 -7.298 490.546 -2.395 478.26 21.268 Z\" fill=\"rgb(254,248,246)\"></path></svg>',svgContentId:11277186824,withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xb5hdv\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rudz8a\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h138x9-container\",children:/*#__PURE__*/_jsx(LaunchStoriesParagraph,{height:\"100%\",id:\"EoP7c0f1g\",layoutId:\"EoP7c0f1g\",style:{maxWidth:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6otkem\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1d7z251\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-16azcs9\",\"data-framer-name\":\"download_1\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,name:\"download_1\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 50a50 50 0 1 0 100 0A50 50 0 0 0 0 50Z\" fill=\"#F3F6FC\"/><path d=\"M62.252 32.25h3.5a3.5 3.5 0 0 1 3.5 3.5v17.5a3.5 3.5 0 0 1-3.5 3.5h-5.25m-21 0h-5.25a3.5 3.5 0 0 1-3.5-3.5v-17.5a3.5 3.5 0 0 1 3.5-3.5h3.5m27.582 24.5a7 7 0 0 1 6.26 3.869l4.284 8.565a3.5 3.5 0 0 1-3.131 5.066H27.256a3.5 3.5 0 0 1-3.131-5.066l4.284-8.565a7 7 0 0 1 6.26-3.869\" stroke=\"#0C2D6D\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M55.252 29.23c0-4.132-5.25-7.48-5.25-7.48s-5.25 3.348-5.25 7.48v17.456h10.5V29.231Zm-10.5 17.456h-6.39a1.4 1.4 0 0 1-1.038-.434 1.007 1.007 0 0 1-.233-.97 11.942 11.942 0 0 1 7.66-7.346m10.501 8.75h6.389a1.4 1.4 0 0 0 1.036-.434 1.004 1.004 0 0 0 .233-.97 11.97 11.97 0 0 0-7.658-7.346m-8.75 15.314v5.25m7-5.25v10.5\" stroke=\"#1C62EB\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wakQqSaHe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\"},children:\"Accelerate Development\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Accelerate Development\"})}),className:\"framer-14z4xyp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"Start publishing Stories and Vertical Video to your apps and websites in days with an industry-leading UX and eliminate years of in-house\\xa0development.\"})}),className:\"framer-hjz9qc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tav0wr\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-tq2rwf\",\"data-framer-name\":\"download_2\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,name:\"download_2\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 50a50 50 0 1 0 100 0A50 50 0 0 0 0 50Z\" fill=\"#F3F6FC\"/><path d=\"M69.25 76.25a4.513 4.513 0 0 0-1.75-3.668 26.224 26.224 0 0 0-17.5-5.5 26.224 26.224 0 0 0-17.5 5.5 4.514 4.514 0 0 0-1.75 3.668\" stroke=\"#0C2D6D\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m46.5 75.832 3.5-8.75 3.5 8.75\" stroke=\"#0C2D6D\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M64 37.75a14 14 0 0 0-28 0 13.642 13.642 0 0 0 8 12.817V57h12v-6.433a13.64 13.64 0 0 0 8-12.817v0ZM50 57v3.5M50 50v-7\" stroke=\"#1C62EB\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M55.25 37.75 50 43l-5.25-5.25M42.855 50h14.29M72.75 37.75h3.5m-4.226 8.024L74.5 48.25m-2.476-18.527L74.5 27.25m-47.25 10.5h-3.5m4.226 8.024L25.5 48.25m2.476-18.527L25.5 27.25\" stroke=\"#1C62EB\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Focus on Your Value\"})}),className:\"framer-1misdje\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"We\u2019re obsessed with Stories and Vertical Video and have solved the problem for you - allowing you to focus on your unique\\xa0value.\"})}),className:\"framer-1nh5v1h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-j22vwf\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1u9al3m\",\"data-framer-name\":\"download_3\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,name:\"download_3\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 50a50 50 0 1 0 100 0A50 50 0 0 0 0 50Z\" fill=\"#F3F6FC\"/><path d=\"M52.5 42.623V22.701m0 0h8.75v3.5h10.5l-3.5 5.25 3.5 5.25h-10.5v-1.75H52.5\" stroke=\"#1C62EB\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M30.917 75.201H22.75l8.75-15.75 5.075 6.767\" stroke=\"#0C2D6D\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m30.916 75.201 19.834-31.5a2.943 2.943 0 0 1 4.666 0l19.834 31.5H30.916Z\" stroke=\"#0C2D6D\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m41.326 58.67 5.453 4.645a2.333 2.333 0 0 0 3.157-.13l1.498-1.499a2.333 2.333 0 0 1 3.299 0l1.498 1.498a2.333 2.333 0 0 0 3.157.131l5.49-4.587\" stroke=\"#0C2D6D\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Accelerate Development\"})}),className:\"framer-1vwu35p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"Storyteller serves millions of users monthly, so it\u2019s ready to scale with you regardless of\\xa0demand.\"})}),className:\"framer-816cz5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1au8e1v\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i8s5j9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s0nk8j\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VA5V3aLwT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\"},children:\"We've done all the hard\\xa0work\"})})},wakQqSaHe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\"},children:\"We've done all the hard\\xa0work\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",children:\"We've done all the hard\\xa0work\"})}),className:\"framer-10a1x9h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1d8p5za\",\"data-framer-name\":\"image_1_\",fill:\"black\",intrinsicHeight:28,intrinsicWidth:227,name:\"image_1_\",svg:'<svg width=\"227\" height=\"28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M18.854 14.302c0-2.184 1.02-3.778 3.002-5.018-1.14-1.594-2.822-2.42-5.044-2.597-2.161-.177-4.503 1.18-5.344 1.18-.9 0-2.942-1.121-4.563-1.121C3.543 6.805 0 9.343 0 14.596c0 1.535.24 3.13.84 4.782.781 2.184 3.543 7.497 6.425 7.379 1.501 0 2.582-1.063 4.564-1.063 1.921 0 2.882 1.063 4.563 1.063 2.942 0 5.464-4.84 6.185-7.025-3.903-1.83-3.723-5.312-3.723-5.43ZM15.49 4.62C17.113 2.73 16.933.96 16.933.31 15.49.43 13.81 1.316 12.85 2.379c-1.081 1.18-1.682 2.656-1.562 4.25 1.562.118 3.002-.65 4.203-2.007Zm63.153 13.077c.695 0 1.283-.517 1.283-1.24 0-.673-.588-1.242-1.283-1.242-.696 0-1.284.57-1.284 1.241 0 .724.588 1.241 1.284 1.241Zm-14.172 0c.695 0 1.283-.517 1.283-1.24 0-.673-.588-1.242-1.284-1.242-.695 0-1.283.57-1.283 1.241 0 .724.588 1.241 1.284 1.241Zm14.653-7.445c4.385 2.327 7.38 6.618 7.862 11.684H56.18c.428-5.066 3.423-9.357 7.808-11.684l-2.567-4.29c-.053-.052-.053-.208-.053-.311 0-.258.214-.517.535-.517.16 0 .374.155.48.31l2.568 4.343c1.765-.776 4.706-1.344 6.631-1.344 1.872 0 4.814.569 6.578 1.344l2.567-4.343c.107-.155.321-.31.482-.31.32 0 .535.259.535.517 0 .103 0 .259-.054.31l-2.567 4.291Zm66.615-1.462c-.361-.12-.662-.242-.962-.302 0-.241.06-.483.12-.724.722-3.563.241-6.461-1.384-7.427-1.564-.906-4.151.06-6.799 2.355-.24.18-.481.422-.722.664-.18-.181-.36-.302-.481-.483-2.767-2.415-5.535-3.442-7.159-2.476-1.565.906-2.046 3.623-1.384 7.065.06.302.12.664.24.966a25.1 25.1 0 0 0-1.143.362c-3.188 1.147-5.475 2.898-5.475 4.71 0 1.871 2.407 3.804 5.776 4.95.241.061.542.182.782.242-.06.363-.12.725-.24 1.087-.602 3.321-.121 5.978 1.444 6.884 1.624.966 4.392 0 7.039-2.355.18-.181.421-.363.601-.544.301.242.542.483.843.725 2.587 2.234 5.114 3.14 6.678 2.234 1.625-.966 2.166-3.804 1.504-7.306-.06-.242-.12-.544-.18-.785l.541-.181c3.49-1.147 6.017-3.02 6.017-4.951 0-1.812-2.407-3.623-5.656-4.71Zm-8.182-5.132c2.286-1.993 4.332-2.717 5.294-2.174 1.023.543 1.444 2.959.782 6.038-.06.242-.06.423-.12.604a31.843 31.843 0 0 0-4.091-.604 33.63 33.63 0 0 0-2.527-3.26c.241-.182.421-.423.662-.604Zm-6.919 12.981c.301.544.601 1.027.962 1.57-.962-.12-1.925-.241-2.827-.483.301-.845.601-1.75.962-2.656.301.543.602 1.026.903 1.57Zm-1.865-7.245c.902-.242 1.805-.362 2.767-.483-.301.483-.601 1.026-.902 1.51-.301.543-.602 1.026-.903 1.57-.361-.906-.661-1.752-.962-2.597Zm1.684 4.166c.361-.845.843-1.69 1.264-2.476.481-.784.962-1.57 1.504-2.354.902-.06 1.805-.121 2.767-.121.903 0 1.866.06 2.708.12a51.5 51.5 0 0 1 1.504 2.356c.421.784.902 1.57 1.263 2.415-.361.845-.782 1.69-1.263 2.475l-1.444 2.355c-.902.06-1.865.12-2.768.12-.962 0-1.865-.06-2.767-.12a50.574 50.574 0 0 1-1.504-2.355c-.421-.785-.843-1.63-1.264-2.415Zm10.83 3.08c.361-.544.602-1.087.902-1.63.361.905.722 1.75 1.023 2.656-.962.241-1.865.422-2.827.483.3-.483.601-1.027.902-1.51Zm.902-4.65c-.3-.543-.601-1.026-.902-1.57-.301-.483-.602-1.026-.902-1.51.962.122 1.925.303 2.767.484a33.114 33.114 0 0 1-.963 2.596Zm-6.197-6.762a21.047 21.047 0 0 1 1.745 2.173 34.784 34.784 0 0 0-3.549 0 34.481 34.481 0 0 1 1.804-2.173Zm-6.979-3.744c1.023-.543 3.249.302 5.596 2.355.18.181.301.302.481.423a26.67 26.67 0 0 0-2.587 3.26c-1.384.12-2.707.302-4.031.604-.12-.302-.181-.604-.241-.966-.541-2.898-.18-5.072.782-5.676Zm-1.504 15.94c-.24-.06-.481-.12-.722-.241-1.263-.423-2.767-1.027-3.79-1.872a2.796 2.796 0 0 1-1.143-1.811c0-1.087 1.925-2.536 4.632-3.502.361-.121.722-.182 1.083-.302.361 1.328.903 2.596 1.444 3.864-.601 1.208-1.083 2.536-1.504 3.864Zm7.04 5.918c-1.023.905-2.166 1.63-3.43 2.113-.662.362-1.384.362-2.106.12-.962-.603-1.323-2.716-.782-5.554.06-.363.121-.725.181-1.027 1.384.302 2.707.483 4.091.604.782 1.087 1.685 2.174 2.587 3.2l-.541.544Zm1.443-1.45a24.147 24.147 0 0 1-1.804-2.234c.601.06 1.203.06 1.804.06.602 0 1.204 0 1.805-.06a20.853 20.853 0 0 1-1.805 2.234Zm7.882 1.812c-.06.724-.421 1.389-.963 1.872-.962.543-3.008-.181-5.234-2.053-.241-.242-.481-.483-.782-.725a26.096 26.096 0 0 0 2.587-3.2c1.384-.12 2.707-.362 4.091-.664l.181.724c.24 1.329.301 2.717.12 4.046Zm1.083-6.521c-.18.06-.301.12-.481.181-.421-1.328-.963-2.596-1.565-3.864.602-1.208 1.083-2.476 1.505-3.804.3.12.601.18.902.302 2.768.966 4.753 2.415 4.753 3.502 0 1.147-2.106 2.717-5.114 3.683Zm-8.965-.906c1.505 0 2.708-1.208 2.708-2.777a2.7 2.7 0 0 0-2.708-2.717c-1.564 0-2.767 1.207-2.767 2.717 0 1.57 1.203 2.777 2.767 2.777Z\" fill=\"#171A25\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M187.8 6.11a2.8 2.8 0 0 0-2.8 2.8v9.25a2.8 2.8 0 0 0 2.8 2.801h35.985a2.8 2.8 0 0 0 2.801-2.8V8.91a2.8 2.8 0 0 0-2.801-2.8H187.8Zm3.653 2.97h-1.998v8.91h1.998v-3.526h3.595v3.527h1.998V9.08h-1.998v3.489h-3.595v-3.49Zm6.811 1.907h2.274v7.004h2.011v-7.004h2.3V9.08h-6.585v1.907Zm9.631-1.907 2.777 3.84 2.803-3.84h1.822v8.91h-2.011v-5.484l-2.601 3.59-2.614-3.603v5.498h-1.998V9.08h1.822Zm11.283 0h-1.999v8.91h5.693v-1.907h-3.694V9.08Z\" fill=\"#171A25\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VA5V3aLwT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZC1NZWRpdW0gwrY=\",\"--framer-font-family\":'\"Euclid-Medium \\xb6\", serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1ffb1808-3fad-49d0-95c3-c6ed873d8267, rgb(23, 26, 37))\",\"--framer-text-transform\":\"uppercase\"},children:\"Built for iOS, Android, React\\xa0Native\\xa0&\\xa0Web\"})})},wakQqSaHe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZC1NZWRpdW0gwrY=\",\"--framer-font-family\":'\"Euclid-Medium \\xb6\", serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1ffb1808-3fad-49d0-95c3-c6ed873d8267, rgb(23, 26, 37))\",\"--framer-text-transform\":\"uppercase\"},children:\"Built for iOS, Android, React\\xa0Native\\xa0&\\xa0Web\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZC1NZWRpdW0gwrY=\",\"--framer-font-family\":'\"Euclid-Medium \\xb6\", serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"var(--token-1ffb1808-3fad-49d0-95c3-c6ed873d8267, rgb(23, 26, 37))\",\"--framer-text-transform\":\"uppercase\"},children:\"Built for iOS, Android, React\\xa0Native\\xa0&\\xa0Web\"})}),className:\"framer-h0nn8m\",fonts:[\"CUSTOM;Euclid-Medium \\xb6\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11qni0t\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VA5V3aLwT:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"We built an intuitive and powerful experience from the ground up, so you don\u2019t have\\xa0to.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"Storyteller\u2019s SDKs ensure a best-in-class experience for your end users from day\\xa0one.\"})]})},wakQqSaHe:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"We built an intuitive and powerful experience from the ground up, so you don\u2019t have\\xa0to.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"Storyteller\u2019s SDKs ensure a best-in-class experience for your end users from day\\xa0one.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"We built an intuitive and powerful experience from the ground up, so you don\u2019t have\\xa0to.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Storyteller\u2019s SDKs ensure a best-in-class experience for your end users from day\\xa0one.\"})]}),className:\"framer-1jil1ad\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"IJy9Jo7vH\"},children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-5yi1ox framer-1ux1e95\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p034ut-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"rIfZ0GPwT\",L6MRlKLOs:false,layoutId:\"rIfZ0GPwT\",v3G01k7RB:\"View Our Documentation\",variant:\"r9fxlVjBf\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-173h0h0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VA5V3aLwT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:846,intrinsicWidth:1334,loading:\"lazy\",pixelHeight:846,pixelWidth:1334,sizes:\"min(max(100vw - 80px, 1px), 1200px)\",src:\"https://framerusercontent.com/images/yCFJ8FZ7VUXhEISMOCtBxSXkVE.webp\",srcSet:\"https://framerusercontent.com/images/yCFJ8FZ7VUXhEISMOCtBxSXkVE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/yCFJ8FZ7VUXhEISMOCtBxSXkVE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/yCFJ8FZ7VUXhEISMOCtBxSXkVE.webp 1334w\"}},wakQqSaHe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:846,intrinsicWidth:1334,loading:\"lazy\",pixelHeight:846,pixelWidth:1334,sizes:\"min((100vw - 40px) * 2.18, 1200px)\",src:\"https://framerusercontent.com/images/yCFJ8FZ7VUXhEISMOCtBxSXkVE.webp\",srcSet:\"https://framerusercontent.com/images/yCFJ8FZ7VUXhEISMOCtBxSXkVE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/yCFJ8FZ7VUXhEISMOCtBxSXkVE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/yCFJ8FZ7VUXhEISMOCtBxSXkVE.webp 1334w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:846,intrinsicWidth:1334,loading:\"lazy\",pixelHeight:846,pixelWidth:1334,sizes:\"min(max(min(100vw - 40px, (100vw - 40px) * 0.9), 1px), 1200px)\",src:\"https://framerusercontent.com/images/yCFJ8FZ7VUXhEISMOCtBxSXkVE.webp\",srcSet:\"https://framerusercontent.com/images/yCFJ8FZ7VUXhEISMOCtBxSXkVE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/yCFJ8FZ7VUXhEISMOCtBxSXkVE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/yCFJ8FZ7VUXhEISMOCtBxSXkVE.webp 1334w\"},className:\"framer-1g9ka1x\",\"data-framer-name\":\"grouped\",name:\"grouped\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mw1yq-container hidden-1r8pjgc\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CodeSection,{height:\"100%\",id:\"X_YPZulNR\",layoutId:\"X_YPZulNR\",variant:\"MAITOV_M7\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-axet32 hidden-uhi8xx hidden-1sfefcw\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-117i6kw\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q8wfuu\"})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1svk98v hidden-uhi8xx hidden-1sfefcw\",children:isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zxc67f-container hidden-uhi8xx\",children:/*#__PURE__*/_jsx(CodeSection,{height:\"100%\",id:\"rcohufOOi\",layoutId:\"rcohufOOi\",variant:\"BjpCVB_jM\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wdd5ty\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1kgbb6h\",\"data-styles-preset\":\"eoiwYysNX\",children:\"An all\u2011in\u2011one\\xa0Platform\"})}),className:\"framer-1gsumf3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(100vw - 40px, 1320px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-r7z494-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wakQqSaHe:{variant:\"t22Ufa1_l\"}},children:/*#__PURE__*/_jsx(FeatureSection,{height:\"100%\",id:\"gjouapx7v\",layoutId:\"gjouapx7v\",oIBqRjgfR:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.getstoryteller.com/features/web-stories\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"Stories\"})}),\" are short format, full-screen, 9:16, vertical images, and videos. They are perfect for delivering distraction-free content to users.\"]}),/*#__PURE__*/_jsx(\"p\",{children:\"Each Story page is an excellent opportunity to show your users engaging content that will make their in-app or web experience more enjoyable and\\xa0memorable.\"})]}),SNKZrA_E5:\"rgb(89, 154, 139)\",style:{maxWidth:\"100%\",width:\"100%\"},t5or1RZPQ:\"Content\",tDxRTpkU3:\"var(--token-60fdcfa4-20a8-45ce-a50c-5cfb7755a7fe, rgb(89, 154, 139))\",variant:\"b9GMj5OAX\",vbxbZV_py:addImageAlt({src:\"https://framerusercontent.com/images/UZ73wj3PmHVvxt6KOqhoaDXuaM.webp\",srcSet:\"https://framerusercontent.com/images/UZ73wj3PmHVvxt6KOqhoaDXuaM.webp?scale-down-to=1024 793w,https://framerusercontent.com/images/UZ73wj3PmHVvxt6KOqhoaDXuaM.webp 825w\"},\"\"),WHtYUW88e:\"/get-started\",width:\"100%\",xu8EHSmDn:\"Stories\",xvEbyQ7py:\"Try Stories Today\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(100vw - 40px, 1320px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cj5z9s-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wakQqSaHe:{variant:\"t22Ufa1_l\"}},children:/*#__PURE__*/_jsx(FeatureSection,{height:\"100%\",id:\"BTmSX8cdG\",layoutId:\"BTmSX8cdG\",oIBqRjgfR:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{children:[\"Our version of the popular vertically swiping video feed format found on TikTok and Instagram Reels - we call them\\xa0\",/*#__PURE__*/_jsx(Link,{href:\"https://www.getstoryteller.com/features/clips\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"Clips.\"})})]}),/*#__PURE__*/_jsx(\"p\",{children:\"Clips are high-quality video content that deserve the full-screen treatment. Users can intuitively swipe up and down the video feed to enter a world of content\\xa0discovery.\"})]}),SNKZrA_E5:\"rgb(89, 154, 139)\",style:{maxWidth:\"100%\",width:\"100%\"},t5or1RZPQ:\"Content\",tDxRTpkU3:\"var(--token-60fdcfa4-20a8-45ce-a50c-5cfb7755a7fe, rgb(89, 154, 139))\",variant:\"gjlzoj0fQ\",vbxbZV_py:addImageAlt({src:\"https://framerusercontent.com/images/UZ73wj3PmHVvxt6KOqhoaDXuaM.webp\",srcSet:\"https://framerusercontent.com/images/UZ73wj3PmHVvxt6KOqhoaDXuaM.webp?scale-down-to=1024 793w,https://framerusercontent.com/images/UZ73wj3PmHVvxt6KOqhoaDXuaM.webp 825w\"},\"\"),width:\"100%\",xu8EHSmDn:\"Clips\",xvEbyQ7py:\"Try Stories Today\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(100vw - 40px, 1320px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1j4rxe2-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wakQqSaHe:{variant:\"t22Ufa1_l\"}},children:/*#__PURE__*/_jsx(FeatureSection,{height:\"100%\",id:\"g2Oq7FawT\",layoutId:\"g2Oq7FawT\",oIBqRjgfR:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{children:[\"Launch faster with our simple to integrate, lightweight \",/*#__PURE__*/_jsx(Link,{href:\"https://www.getstoryteller.com/features/core-experience\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"SDKs\"})}),\" that provide all the building blocks you need to create immersive, full-screen content experiences.\u200B\"]}),/*#__PURE__*/_jsx(\"p\",{children:\"We provide the Stories & Clips experience your users expect with powerful interactions, gesture navigation, and intuitive sharing.\"})]}),SNKZrA_E5:\"var(--token-1fd0a868-eaed-43e4-a05a-ea552e9092c2, rgb(106, 144, 198))\",style:{maxWidth:\"100%\",width:\"100%\"},t5or1RZPQ:\"Native\",tDxRTpkU3:\"var(--token-ea69aabc-61c2-4f6c-a7f5-df18e850ecc6, rgb(106, 144, 198))\",variant:\"b9GMj5OAX\",vbxbZV_py:addImageAlt({src:\"https://framerusercontent.com/images/4m9Ko8YEfZYZlyRfYTMThvp03zQ.webp\",srcSet:\"https://framerusercontent.com/images/4m9Ko8YEfZYZlyRfYTMThvp03zQ.webp 766w\"},\"\"),WHtYUW88e:\"/get-started\",width:\"100%\",xu8EHSmDn:\"Purpose-built SDKs\",xvEbyQ7py:\"Book A Call Today\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(100vw - 40px, 1320px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-if60al-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wakQqSaHe:{variant:\"t22Ufa1_l\"}},children:/*#__PURE__*/_jsx(FeatureSection,{height:\"100%\",id:\"eaErLbFMl\",layoutId:\"eaErLbFMl\",oIBqRjgfR:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{children:[\"Storyteller has an extensive \",/*#__PURE__*/_jsx(Link,{href:\"https://www.getstoryteller.com/features/storyteller-cms\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"content management system\"})}),\" with powerful publishing tools so you can \",/*#__PURE__*/_jsx(Link,{href:\"https://www.getstoryteller.com/features/categorization\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"categorize\"})}),\", edit, schedule and preview your Stories & Clips, all in one place.\"]}),/*#__PURE__*/_jsxs(\"p\",{children:[\"You can also build Stories in \",/*#__PURE__*/_jsx(Link,{href:\"https://www.getstoryteller.com/features/studio\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"Studio\"})}),\" from scratch with your own templates, fonts, and media library integrations.\"]})]}),SNKZrA_E5:\"var(--token-6cad6b84-f104-4213-8117-3b716d672715, rgb(172, 134, 95))\",style:{maxWidth:\"100%\",width:\"100%\"},t5or1RZPQ:\"END-TO-END\",tDxRTpkU3:\"var(--token-dd73cb78-71e9-4f48-90c1-010602504bdd, rgb(255, 240, 226))\",variant:\"gjlzoj0fQ\",vbxbZV_py:addImageAlt({src:\"https://framerusercontent.com/images/e6hVzGUJ4e7AkAYZidVncqI.webp\",srcSet:\"https://framerusercontent.com/images/e6hVzGUJ4e7AkAYZidVncqI.webp?scale-down-to=512 512w,https://framerusercontent.com/images/e6hVzGUJ4e7AkAYZidVncqI.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/e6hVzGUJ4e7AkAYZidVncqI.webp 1390w\"},\"\"),width:\"100%\",xu8EHSmDn:\"A Powerful CMS\",xvEbyQ7py:\"Try Stories Today\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(100vw - 40px, 1320px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nczumf-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wakQqSaHe:{variant:\"t22Ufa1_l\"}},children:/*#__PURE__*/_jsx(FeatureSection,{height:\"100%\",id:\"kc9MjBKrr\",layoutId:\"kc9MjBKrr\",oIBqRjgfR:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{children:[\"Harness the power of immersive, full-screen \",/*#__PURE__*/_jsx(Link,{href:\"https://www.getstoryteller.com/features/clips\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"Story & Clips Ads\"})}),\" with Storyteller\u2019s native ad support.\"]}),/*#__PURE__*/_jsx(\"p\",{children:\"Create a better experience for your users without disrupting the user experience and increasing your revenue.\"})]}),SNKZrA_E5:\"rgb(89, 154, 139)\",style:{maxWidth:\"100%\",width:\"100%\"},t5or1RZPQ:\"INCREASE REVENUE\",tDxRTpkU3:\"var(--token-60fdcfa4-20a8-45ce-a50c-5cfb7755a7fe, rgb(89, 154, 139))\",variant:\"b9GMj5OAX\",vbxbZV_py:addImageAlt({src:\"https://framerusercontent.com/images/A6A8tC92FalGYn9QcqkJbQuDhuQ.webp\",srcSet:\"https://framerusercontent.com/images/A6A8tC92FalGYn9QcqkJbQuDhuQ.webp?scale-down-to=1024 793w,https://framerusercontent.com/images/A6A8tC92FalGYn9QcqkJbQuDhuQ.webp 842w\"},\"\"),WHtYUW88e:\"/get-started\",width:\"100%\",xu8EHSmDn:\"Native Ads\",xvEbyQ7py:\"Book A Call Today\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(100vw - 40px, 1320px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11jmt0b-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wakQqSaHe:{variant:\"t22Ufa1_l\"}},children:/*#__PURE__*/_jsx(FeatureSection,{height:\"100%\",id:\"pH42DhcaS\",layoutId:\"pH42DhcaS\",oIBqRjgfR:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Our out-of-the-box \",/*#__PURE__*/_jsx(Link,{href:\"https://www.getstoryteller.com/features/analytics\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"analytics\"})}),\" gives you the data and insights needed to boost user engagement, conversions, and brand loyalty.\"]})}),SNKZrA_E5:\"var(--token-a492f00b-ebac-429e-b5ac-ca9a9f60bc94, rgb(219, 132, 161))\",style:{maxWidth:\"100%\",width:\"100%\"},t5or1RZPQ:\"MEASURE PERFORMANCE\",tDxRTpkU3:\"var(--token-e1316bbb-f0cd-4158-a2e5-e50b90f84765, rgb(255, 240, 245))\",variant:\"gjlzoj0fQ\",vbxbZV_py:addImageAlt({src:\"https://framerusercontent.com/images/YdifodccIGxmnUMnOzkR6gwk0Hs.webp\",srcSet:\"https://framerusercontent.com/images/YdifodccIGxmnUMnOzkR6gwk0Hs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/YdifodccIGxmnUMnOzkR6gwk0Hs.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/YdifodccIGxmnUMnOzkR6gwk0Hs.webp 1063w\"},\"\"),width:\"100%\",xu8EHSmDn:\"Built-in Analytics\",xvEbyQ7py:\"Try Stories Today\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(100vw - 40px, 1320px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xy5b6o-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wakQqSaHe:{variant:\"t22Ufa1_l\"}},children:/*#__PURE__*/_jsx(FeatureSection,{height:\"100%\",id:\"bsyGs6EWG\",layoutId:\"bsyGs6EWG\",oIBqRjgfR:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{children:[\"Go beyond static images and videos with \",/*#__PURE__*/_jsx(Link,{href:\"https://www.getstoryteller.com/features/engagement-units\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"polls, quizzes, and more\"})}),\".\"]}),/*#__PURE__*/_jsx(\"p\",{children:\"Interactive content deepens user engagement, increases app usage, and makes content inherently shareable, driving traffic to your app.\"})]}),SNKZrA_E5:\"var(--token-6cad6b84-f104-4213-8117-3b716d672715, rgb(172, 134, 95))\",style:{maxWidth:\"100%\",width:\"100%\"},t5or1RZPQ:\"GO FURTHER\",tDxRTpkU3:\"var(--token-dd73cb78-71e9-4f48-90c1-010602504bdd, rgb(255, 240, 226))\",variant:\"b9GMj5OAX\",vbxbZV_py:addImageAlt({src:\"https://framerusercontent.com/images/cF4rz2Bk52BIVGVToAv5llNP5kA.webp\",srcSet:\"https://framerusercontent.com/images/cF4rz2Bk52BIVGVToAv5llNP5kA.webp?scale-down-to=1024 767w,https://framerusercontent.com/images/cF4rz2Bk52BIVGVToAv5llNP5kA.webp 902w\"},\"\"),WHtYUW88e:\"/get-started\",width:\"100%\",xu8EHSmDn:\"Boost User Engagement\",xvEbyQ7py:\"Book A Call Today\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lohovk\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pwr9wg\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nawfa2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jiy6v6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15ouyqf\",\"data-styles-preset\":\"BGCwUyIaS\",children:\"Enterprise Ready\"})}),className:\"framer-1jpo92k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Storyteller\u2019s powerful APIs and SDKs can scale with your business, providing a seamless stories experience for your app, no matter the\\xa0size.\"})}),className:\"framer-1iyst00\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xdjeab-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"JNBZcdE_k\",L6MRlKLOs:false,layoutId:\"JNBZcdE_k\",v3G01k7RB:\"Contact Sales Today\",variant:\"r9fxlVjBf\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kdidjc\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3v6eut\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1unk7eq\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-jy5lqp\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:26,intrinsicWidth:25,name:\"Icon\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"25\" height=\"26\" fill=\"none\"><path fill=\"#1DB56C\" d=\"M0 12.753C0 5.897 5.608.32 12.5.32S25 5.897 25 12.753s-5.608 12.434-12.5 12.434S0 19.609 0 12.753Z\"/><path fill=\"#fff\" d=\"m11.783 17.343 6.558-6.523a1.065 1.065 0 0 0-.758-1.821c-.287 0-.556.111-.758.313l-5.786 5.755-2.55-2.63a1.067 1.067 0 0 0-.773-.326c-.279 0-.543.106-.744.3a1.064 1.064 0 0 0-.027 1.508l3.308 3.41c.199.205.476.324.762.326l.01.442v-.442c.282 0 .559-.114.758-.312Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"99.9% uptime SLA\"})}),className:\"framer-gijiv0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gpfxg9\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1lqmfk8\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:26,intrinsicWidth:25,name:\"Icon\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"25\" height=\"26\" fill=\"none\"><path fill=\"#1DB56C\" d=\"M0 12.753C0 5.897 5.608.32 12.5.32S25 5.897 25 12.753s-5.608 12.434-12.5 12.434S0 19.609 0 12.753Z\"/><path fill=\"#fff\" d=\"m11.783 17.343 6.558-6.523a1.065 1.065 0 0 0-.758-1.821c-.287 0-.556.111-.758.313l-5.786 5.755-2.55-2.63a1.067 1.067 0 0 0-.773-.326c-.279 0-.543.106-.744.3a1.064 1.064 0 0 0-.027 1.508l3.308 3.41c.199.205.476.324.762.326l.01.442v-.442c.282 0 .559-.114.758-.312Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"SSO\"})}),className:\"framer-gexxa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6dbqie\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ajymfg\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:26,intrinsicWidth:25,name:\"Icon\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"25\" height=\"26\" fill=\"none\"><path fill=\"#1DB56C\" d=\"M0 12.753C0 5.897 5.608.32 12.5.32S25 5.897 25 12.753s-5.608 12.434-12.5 12.434S0 19.609 0 12.753Z\"/><path fill=\"#fff\" d=\"m11.783 17.343 6.558-6.523a1.065 1.065 0 0 0-.758-1.821c-.287 0-.556.111-.758.313l-5.786 5.755-2.55-2.63a1.067 1.067 0 0 0-.773-.326c-.279 0-.543.106-.744.3a1.064 1.064 0 0 0-.027 1.508l3.308 3.41c.199.205.476.324.762.326l.01.442v-.442c.282 0 .559-.114.758-.312Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Proven Scalability\"})}),className:\"framer-4spjdq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dvplxe\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ntalv8\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:26,intrinsicWidth:25,name:\"Icon\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"25\" height=\"26\" fill=\"none\"><path fill=\"#1DB56C\" d=\"M0 12.753C0 5.897 5.608.32 12.5.32S25 5.897 25 12.753s-5.608 12.434-12.5 12.434S0 19.609 0 12.753Z\"/><path fill=\"#fff\" d=\"m11.783 17.343 6.558-6.523a1.065 1.065 0 0 0-.758-1.821c-.287 0-.556.111-.758.313l-5.786 5.755-2.55-2.63a1.067 1.067 0 0 0-.773-.326c-.279 0-.543.106-.744.3a1.064 1.064 0 0 0-.027 1.508l3.308 3.41c.199.205.476.324.762.326l.01.442v-.442c.282 0 .559-.114.758-.312Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"UI/UX Customization\"})}),className:\"framer-pigskw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q9d5gz\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-116s0si\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:26,intrinsicWidth:25,name:\"Icon\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"25\" height=\"26\" fill=\"none\"><path fill=\"#1DB56C\" d=\"M0 12.753C0 5.897 5.608.32 12.5.32S25 5.897 25 12.753s-5.608 12.434-12.5 12.434S0 19.609 0 12.753Z\"/><path fill=\"#fff\" d=\"m11.783 17.343 6.558-6.523a1.065 1.065 0 0 0-.758-1.821c-.287 0-.556.111-.758.313l-5.786 5.755-2.55-2.63a1.067 1.067 0 0 0-.773-.326c-.279 0-.543.106-.744.3a1.064 1.064 0 0 0-.027 1.508l3.308 3.41c.199.205.476.324.762.326l.01.442v-.442c.282 0 .559-.114.758-.312Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"24/7/365 Support\"})}),className:\"framer-1qgnn5i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hw81s0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12rk568\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ctdkjl\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:26,intrinsicWidth:25,name:\"Icon\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"25\" height=\"26\" fill=\"none\"><path fill=\"#1DB56C\" d=\"M0 12.753C0 5.897 5.608.32 12.5.32S25 5.897 25 12.753s-5.608 12.434-12.5 12.434S0 19.609 0 12.753Z\"/><path fill=\"#fff\" d=\"m11.783 17.343 6.558-6.523a1.065 1.065 0 0 0-.758-1.821c-.287 0-.556.111-.758.313l-5.786 5.755-2.55-2.63a1.067 1.067 0 0 0-.773-.326c-.279 0-.543.106-.744.3a1.064 1.064 0 0 0-.027 1.508l3.308 3.41c.199.205.476.324.762.326l.01.442v-.442c.282 0 .559-.114.758-.312Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Back-end Integrations\"})}),className:\"framer-hcqzt4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g8k50u\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-k530eh\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:26,intrinsicWidth:25,name:\"Icon\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"25\" height=\"26\" fill=\"none\"><path fill=\"#1DB56C\" d=\"M0 12.753C0 5.897 5.608.32 12.5.32S25 5.897 25 12.753s-5.608 12.434-12.5 12.434S0 19.609 0 12.753Z\"/><path fill=\"#fff\" d=\"m11.783 17.343 6.558-6.523a1.065 1.065 0 0 0-.758-1.821c-.287 0-.556.111-.758.313l-5.786 5.755-2.55-2.63a1.067 1.067 0 0 0-.773-.326c-.279 0-.543.106-.744.3a1.064 1.064 0 0 0-.027 1.508l3.308 3.41c.199.205.476.324.762.326l.01.442v-.442c.282 0 .559-.114.758-.312Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Enterprise Grade\\xa0Security\"})}),className:\"framer-14ib8j5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qi8uu0\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1mlivyf\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:26,intrinsicWidth:25,name:\"Icon\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"25\" height=\"26\" fill=\"none\"><path fill=\"#1DB56C\" d=\"M0 12.753C0 5.897 5.608.32 12.5.32S25 5.897 25 12.753s-5.608 12.434-12.5 12.434S0 19.609 0 12.753Z\"/><path fill=\"#fff\" d=\"m11.783 17.343 6.558-6.523a1.065 1.065 0 0 0-.758-1.821c-.287 0-.556.111-.758.313l-5.786 5.755-2.55-2.63a1.067 1.067 0 0 0-.773-.326c-.279 0-.543.106-.744.3a1.064 1.064 0 0 0-.027 1.508l3.308 3.41c.199.205.476.324.762.326l.01.442v-.442c.282 0 .559-.114.758-.312Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Custom APIs\"})}),className:\"framer-1pp29lj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-30n23u\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ha5gox\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:26,intrinsicWidth:25,name:\"Icon\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"25\" height=\"26\" fill=\"none\"><path fill=\"#1DB56C\" d=\"M0 12.753C0 5.897 5.608.32 12.5.32S25 5.897 25 12.753s-5.608 12.434-12.5 12.434S0 19.609 0 12.753Z\"/><path fill=\"#fff\" d=\"m11.783 17.343 6.558-6.523a1.065 1.065 0 0 0-.758-1.821c-.287 0-.556.111-.758.313l-5.786 5.755-2.55-2.63a1.067 1.067 0 0 0-.773-.326c-.279 0-.543.106-.744.3a1.064 1.064 0 0 0-.027 1.508l3.308 3.41c.199.205.476.324.762.326l.01.442v-.442c.282 0 .559-.114.758-.312Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Analytics Integration\"})}),className:\"framer-1q28hds\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ssu72z\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-46pqyp\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:26,intrinsicWidth:25,name:\"Icon\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"25\" height=\"26\" fill=\"none\"><path fill=\"#1DB56C\" d=\"M0 12.753C0 5.897 5.608.32 12.5.32S25 5.897 25 12.753s-5.608 12.434-12.5 12.434S0 19.609 0 12.753Z\"/><path fill=\"#fff\" d=\"m11.783 17.343 6.558-6.523a1.065 1.065 0 0 0-.758-1.821c-.287 0-.556.111-.758.313l-5.786 5.755-2.55-2.63a1.067 1.067 0 0 0-.773-.326c-.279 0-.543.106-.744.3a1.064 1.064 0 0 0-.027 1.508l3.308 3.41c.199.205.476.324.762.326l.01.442v-.442c.282 0 .559-.114.758-.312Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Dedicated Integration\\xa0Team\"})}),className:\"framer-1hsq1fb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1srdbc9\",\"data-framer-name\":\"SignUpSection\",name:\"SignUpSection\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17c6hzs\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-epoc7j\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16vt5u2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1enzs9n\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1xuw3b5\",\"data-framer-name\":\"download_1\",fill:\"black\",intrinsicHeight:55,intrinsicWidth:60,name:\"download_1\",svg:'<svg width=\"60\" height=\"55\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m11.1 17.032 17.093 5.397a6 6 0 0 0 3.614 0l17.092-5.397C47.914 7.463 39.83 0 30 0c-9.828 0-17.914 7.463-18.898 17.032Z\" fill=\"#F3C3AF\"/><path d=\"M33.019 28.044a10 10 0 0 1-6.038 0L5.208 21.149C2.628 20.332 0 22.257 0 24.962v6.955a4 4 0 0 0 1.706 3.277l26 18.2a4 4 0 0 0 4.588 0l26-18.2A4 4 0 0 0 60 31.917v-6.955c0-2.704-2.629-4.63-5.208-3.813L33.02 28.044Z\" fill=\"#09204D\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wakQqSaHe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-z7dv5t\",\"data-styles-preset\":\"WXwk9GfYS\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Start telling your story \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-cf6d48b4-fdba-4ed3-bfff-12797d52597c, rgb(243, 195, 175))\"},children:\"today!\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-z7dv5t\",\"data-styles-preset\":\"WXwk9GfYS\",children:[\"Start telling your story \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-cf6d48b4-fdba-4ed3-bfff-12797d52597c, rgb(243, 195, 175))\"},children:\"today!\"})]})}),className:\"framer-15j20la\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mbs66w\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-151pb2v\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-qstla1\",\"data-framer-name\":\"download_2\",layout:\"position\",name:\"download_2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 15\"><path d=\"M 12.332 7.829 L 12.332 13.837 L 5.666 13.837 C 4.93 13.837 4.333 13.24 4.333 12.504 L 4.333 1.172\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(243,195,175)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 19.664 5.838 L 19.664 12.504 C 19.664 13.24 19.067 13.837 18.331 13.837 L 12.331 13.837 M 3.666 1.172 L 1.07 5.118 C 0.979 5.264 0.977 5.449 1.064 5.597 C 1.154 5.747 1.316 5.838 1.49 5.837 L 4.333 5.837 M 12.493 1.171 L 14.198 5.427 C 14.302 5.675 14.545 5.837 14.814 5.837 L 20.509 5.837 C 20.672 5.837 20.824 5.757 20.916 5.622 C 21.007 5.487 21.025 5.316 20.965 5.165 L 19.305 1.165 M 3.666 1.171 L 19.303 1.163\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(243,195,175)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9289200380,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZC1NZWRpdW0gwrY=\",\"--framer-font-family\":'\"Euclid-Medium \\xb6\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Out-of-the-box\"})}),className:\"framer-18dp088\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;Euclid-Medium \\xb6\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kavdoe\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-r9dd1o\",\"data-framer-name\":\"download_3\",fill:\"black\",intrinsicHeight:15,intrinsicWidth:22,name:\"download_3\",svg:'<svg viewBox=\"0 0 22 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m15 13.5 6-6-6-6m-8 0-6 6 6 6\" stroke=\"#F3C3AF\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZC1NZWRpdW0gwrY=\",\"--framer-font-family\":'\"Euclid-Medium \\xb6\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Minimal coding\"})}),className:\"framer-1xjmyf6\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;Euclid-Medium \\xb6\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kjptgf\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-x59zrn\",\"data-framer-name\":\"download_4\",fill:\"black\",intrinsicHeight:23,intrinsicWidth:22,name:\"download_4\",svg:'<svg viewBox=\"0 0 22 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2.636 4.773a10.716 10.716 0 0 1 16.733.065m-16.94 13.09a10.69 10.69 0 0 0 17.103.022M1 15.071V9.357a1.429 1.429 0 0 1 1.429-1.429h1.428M1 12.214h2.143m3.571 2.857V7.928m0 0h1.072a1.786 1.786 0 0 1 0 3.572H6.714m2.858 3.571L7.429 11.5m7.857 3.571h-1.429a1.429 1.429 0 0 1-1.428-1.428V9.357a1.429 1.429 0 0 1 1.428-1.429h1.429m-2.857 4.286h2.857M21 15.071h-1.428a1.429 1.429 0 0 1-1.429-1.428V9.357a1.429 1.429 0 0 1 1.429-1.429H21m-2.857 4.286H21\" stroke=\"#F3C3AF\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZC1NZWRpdW0gwrY=\",\"--framer-font-family\":'\"Euclid-Medium \\xb6\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Try for free\"})}),className:\"framer-ktswbc\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;Euclid-Medium \\xb6\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wlzt4k\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cafa5h-container\",children:/*#__PURE__*/_jsx(HubSpotForm,{advanced:true,formId:\"b7c42436-26e6-4d84-bc3b-ecf4d6dcf9ee\",height:\"100%\",id:\"sS7twybNI\",layoutId:\"sS7twybNI\",portalId:\"139646632\",region:\"eu1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VA5V3aLwT:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:900,intrinsicWidth:900,loading:\"lazy\",pixelHeight:900,pixelWidth:900,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/I7iZbdXRAQHsen3BdeTsNCZnj3Y.svg\",srcSet:\"https://framerusercontent.com/images/I7iZbdXRAQHsen3BdeTsNCZnj3Y.svg?scale-down-to=512 512w,https://framerusercontent.com/images/I7iZbdXRAQHsen3BdeTsNCZnj3Y.svg 900w\"}},wakQqSaHe:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:900,intrinsicWidth:900,loading:\"lazy\",pixelHeight:900,pixelWidth:900,positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/I7iZbdXRAQHsen3BdeTsNCZnj3Y.svg\",srcSet:\"https://framerusercontent.com/images/I7iZbdXRAQHsen3BdeTsNCZnj3Y.svg?scale-down-to=512 512w,https://framerusercontent.com/images/I7iZbdXRAQHsen3BdeTsNCZnj3Y.svg 900w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:900,intrinsicWidth:900,loading:\"lazy\",pixelHeight:900,pixelWidth:900,positionX:\"center\",positionY:\"center\",sizes:\"50vw\",src:\"https://framerusercontent.com/images/I7iZbdXRAQHsen3BdeTsNCZnj3Y.svg\",srcSet:\"https://framerusercontent.com/images/I7iZbdXRAQHsen3BdeTsNCZnj3Y.svg?scale-down-to=512 512w,https://framerusercontent.com/images/I7iZbdXRAQHsen3BdeTsNCZnj3Y.svg 900w\"},className:\"framer-1fjk8t6\"})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a0v8v0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VA5V3aLwT:{variant:\"PMwNaaY0S\"},wakQqSaHe:{variant:\"MkhDN1ZjB\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"xzDyfs7iW\",layoutId:\"xzDyfs7iW\",style:{width:\"100%\"},variant:\"O0_RwvFqA\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-Oyk9y { background: white; }`,\".framer-Oyk9y.framer-1ux1e95, .framer-Oyk9y .framer-1ux1e95 { display: block; }\",\".framer-Oyk9y.framer-uhi8xx { 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: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-Oyk9y .framer-15399wc-container { flex: none; height: auto; left: 50%; max-width: 100%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-Oyk9y .framer-1x0doo6-container { flex: none; height: 80px; position: relative; width: 100%; }\",\".framer-Oyk9y .framer-b4itsk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 40px 0px 0px 0px; position: relative; scroll-margin-top: 20px; width: 100%; }\",\".framer-Oyk9y .framer-10yefm2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-Oyk9y .framer-cov1mm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-Oyk9y .framer-leeq7m { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 30px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-Oyk9y .framer-woolr8, .framer-Oyk9y .framer-fvfe3x, .framer-Oyk9y .framer-hjz9qc, .framer-Oyk9y .framer-1nh5v1h, .framer-Oyk9y .framer-816cz5, .framer-Oyk9y .framer-10a1x9h, .framer-Oyk9y .framer-h0nn8m, .framer-Oyk9y .framer-1iyst00 { --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-Oyk9y .framer-1a8xc7a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 370px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Oyk9y .framer-1ioabqz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Oyk9y .framer-1jb3x8k-container, .framer-Oyk9y .framer-1p034ut-container, .framer-Oyk9y .framer-xdjeab-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Oyk9y .framer-kk0pnm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Oyk9y .framer-biemu1 { aspect-ratio: 8.04 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 201px; }\",\".framer-Oyk9y .framer-1iv9doy { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; min-height: 600px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Oyk9y .framer-113ik0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 278px; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 100px; top: 0px; width: 278px; z-index: 1; }\",\".framer-Oyk9y .framer-7r98bs { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 278px); position: relative; width: 278px; }\",\".framer-Oyk9y .framer-e8dpro { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 242px; justify-content: center; left: 20px; overflow: visible; padding: 0px; position: absolute; width: 317px; z-index: 1; }\",\".framer-Oyk9y .framer-15d4hek { aspect-ratio: 1.3153526970954357 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 241px); position: relative; width: 100%; }\",\".framer-Oyk9y .framer-1gdtjel { aspect-ratio: 0.49950347567030784 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 510px); left: 81px; overflow: visible; position: absolute; top: 9px; width: 255px; z-index: 1; }\",\".framer-Oyk9y .framer-1npt74m { aspect-ratio: 0.5 / 1; bottom: 9px; flex: none; height: var(--framer-aspect-ratio-supported, 510px); left: 241px; overflow: visible; position: absolute; width: 255px; z-index: 1; }\",\".framer-Oyk9y .framer-1hwvs09 { align-content: center; align-items: center; background-color: var(--token-1ffb1808-3fad-49d0-95c3-c6ed873d8267, #171a25); bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: flex-start; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-Oyk9y .framer-idnzbp { 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; max-width: 1200px; overflow: hidden; padding: 40px 20px 40px 20px; position: relative; width: 100%; }\",\".framer-Oyk9y .framer-1fj53vz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: min-content; }\",\".framer-Oyk9y .framer-1ulh461 { aspect-ratio: 2.267605633802817 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 71px); position: relative; width: 161px; }\",\".framer-Oyk9y .framer-1qz6521, .framer-Oyk9y .framer-1unk7eq, .framer-Oyk9y .framer-gpfxg9, .framer-Oyk9y .framer-6dbqie, .framer-Oyk9y .framer-dvplxe, .framer-Oyk9y .framer-q9d5gz, .framer-Oyk9y .framer-12rk568, .framer-Oyk9y .framer-g8k50u, .framer-Oyk9y .framer-1qi8uu0, .framer-Oyk9y .framer-30n23u, .framer-Oyk9y .framer-1ssu72z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Oyk9y .framer-91ogpf-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-Oyk9y .framer-1qau7j1 { 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: visible; padding: 60px 20px 50px 20px; position: relative; width: 100%; }\",\".framer-Oyk9y .framer-kvtb7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Oyk9y .framer-96x804 { 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: hidden; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-Oyk9y .framer-1jayxfm, .framer-Oyk9y .framer-14z4xyp, .framer-Oyk9y .framer-1misdje, .framer-Oyk9y .framer-1vwu35p, .framer-Oyk9y .framer-1gsumf3, .framer-Oyk9y .framer-1jpo92k, .framer-Oyk9y .framer-18dp088, .framer-Oyk9y .framer-1xjmyf6, .framer-Oyk9y .framer-ktswbc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Oyk9y .framer-71f62v-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 450px); position: relative; width: 800px; }\",\".framer-Oyk9y .framer-b4pavo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 20px; transform: translateX(-50%); width: min-content; z-index: 0; }\",\".framer-Oyk9y .framer-7rr8hl { flex: none; height: 628px; position: relative; width: 628px; }\",\".framer-Oyk9y .framer-xb5hdv { 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: 100%; overflow: hidden; padding: 70px 20px 87px 20px; position: relative; width: 100%; }\",\".framer-Oyk9y .framer-rudz8a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-Oyk9y .framer-1h138x9-container { flex: none; height: auto; max-width: 100%; position: relative; width: auto; }\",\".framer-Oyk9y .framer-6otkem { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1200px; }\",\".framer-Oyk9y .framer-1d7z251, .framer-Oyk9y .framer-tav0wr, .framer-Oyk9y .framer-j22vwf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Oyk9y .framer-16azcs9, .framer-Oyk9y .framer-tq2rwf, .framer-Oyk9y .framer-1u9al3m { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 100px); position: relative; width: 100px; }\",\".framer-Oyk9y .framer-1au8e1v { align-content: center; align-items: center; background-color: var(--token-8d055961-3923-497a-badf-274f048d7502, #f9e4dc); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-Oyk9y .framer-i8s5j9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 60%; }\",\".framer-Oyk9y .framer-1s0nk8j { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Oyk9y .framer-1d8p5za { aspect-ratio: 8.107142857142858 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); max-width: 100%; position: relative; width: 227px; }\",\".framer-Oyk9y .framer-11qni0t { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Oyk9y .framer-1jil1ad { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Oyk9y .framer-5yi1ox { 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: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Oyk9y .framer-173h0h0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 90%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Oyk9y .framer-1g9ka1x { aspect-ratio: 1.5768321513002364 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 662px); max-width: 1200px; overflow: visible; position: relative; width: 1px; }\",\".framer-Oyk9y .framer-1mw1yq-container { bottom: 164px; flex: none; height: auto; position: absolute; right: 0px; width: auto; }\",\".framer-Oyk9y .framer-axet32 { align-content: center; align-items: center; bottom: 127px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 83px; justify-content: flex-start; left: 268px; overflow: hidden; padding: 0px; position: absolute; right: 381px; }\",\".framer-Oyk9y .framer-117i6kw { background-color: #bbddff; flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-Oyk9y .framer-1q8wfuu { background-color: #cceeff; flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-Oyk9y .framer-1svk98v { align-content: center; align-items: center; bottom: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; max-width: 100%; min-height: 252px; min-width: 345px; overflow: visible; padding: 0px; position: absolute; transform: translateX(-50%); width: min-content; z-index: 1; }\",\".framer-Oyk9y .framer-zxc67f-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-Oyk9y .framer-1wdd5ty { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 90px 20px 60px 20px; position: relative; width: 100%; }\",\".framer-Oyk9y .framer-r7z494-container, .framer-Oyk9y .framer-cj5z9s-container, .framer-Oyk9y .framer-1j4rxe2-container, .framer-Oyk9y .framer-if60al-container, .framer-Oyk9y .framer-1nczumf-container, .framer-Oyk9y .framer-11jmt0b-container, .framer-Oyk9y .framer-xy5b6o-container { flex: none; height: auto; max-width: 1320px; position: relative; width: 100%; }\",\".framer-Oyk9y .framer-1lohovk { align-content: center; align-items: center; background-color: var(--token-60fdcfa4-20a8-45ce-a50c-5cfb7755a7fe, #e5f8f3); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 60px 20px 60px 20px; position: relative; width: 100%; }\",\".framer-Oyk9y .framer-1pwr9wg { 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: 20px; position: relative; width: 1200px; }\",\".framer-Oyk9y .framer-nawfa2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 20px 20px 20px 0px; position: relative; width: 1px; }\",\".framer-Oyk9y .framer-1jiy6v6 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Oyk9y .framer-kdidjc { align-content: center; align-items: center; 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-Oyk9y .framer-3v6eut, .framer-Oyk9y .framer-hw81s0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 20px; position: relative; width: 1px; }\",\".framer-Oyk9y .framer-jy5lqp, .framer-Oyk9y .framer-1lqmfk8, .framer-Oyk9y .framer-ajymfg, .framer-Oyk9y .framer-ntalv8, .framer-Oyk9y .framer-116s0si, .framer-Oyk9y .framer-1ctdkjl, .framer-Oyk9y .framer-k530eh, .framer-Oyk9y .framer-1mlivyf, .framer-Oyk9y .framer-1ha5gox, .framer-Oyk9y .framer-46pqyp { aspect-ratio: 0.9615384615384616 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; width: 25px; }\",\".framer-Oyk9y .framer-gijiv0, .framer-Oyk9y .framer-gexxa, .framer-Oyk9y .framer-4spjdq, .framer-Oyk9y .framer-pigskw, .framer-Oyk9y .framer-1qgnn5i, .framer-Oyk9y .framer-hcqzt4, .framer-Oyk9y .framer-14ib8j5, .framer-Oyk9y .framer-1pp29lj, .framer-Oyk9y .framer-1q28hds, .framer-Oyk9y .framer-1hsq1fb { --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-Oyk9y .framer-1srdbc9 { align-content: center; align-items: center; background-color: var(--token-f1a4c624-0410-4342-8cd1-45a9c08ab691, #1c62eb); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 16px; position: relative; width: 100%; }\",\".framer-Oyk9y .framer-17c6hzs { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1320px; overflow: visible; padding: 70px 20px 70px 20px; position: relative; width: 1px; z-index: 1; }\",\".framer-Oyk9y .framer-epoc7j { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 600px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Oyk9y .framer-16vt5u2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Oyk9y .framer-1enzs9n { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Oyk9y .framer-1xuw3b5 { aspect-ratio: 1.0909090909090908 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 55px); position: relative; width: 60px; }\",\".framer-Oyk9y .framer-15j20la { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Oyk9y .framer-mbs66w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Oyk9y .framer-151pb2v, .framer-Oyk9y .framer-1kavdoe, .framer-Oyk9y .framer-1kjptgf { align-content: center; align-items: center; background-color: var(--token-e823f8e5-0cb1-4de3-8915-3308993beefb, #0c2d6d); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Oyk9y .framer-qstla1 { flex: none; height: 15px; position: relative; width: 22px; }\",\".framer-Oyk9y .framer-r9dd1o { aspect-ratio: 1.4666666666666666 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); position: relative; width: 22px; }\",\".framer-Oyk9y .framer-x59zrn { aspect-ratio: 0.9565217391304348 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 22px; }\",\".framer-Oyk9y .framer-wlzt4k { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1320px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Oyk9y .framer-1cafa5h-container { flex: 1 0 0px; height: 560px; position: relative; width: 1px; }\",\".framer-Oyk9y .framer-1fjk8t6 { flex: none; height: 100%; left: -52px; overflow: visible; position: absolute; top: -100px; width: 50%; z-index: 0; }\",\".framer-Oyk9y .framer-1a0v8v0-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Oyk9y.framer-uhi8xx, .framer-Oyk9y .framer-b4itsk, .framer-Oyk9y .framer-10yefm2, .framer-Oyk9y .framer-cov1mm, .framer-Oyk9y .framer-leeq7m, .framer-Oyk9y .framer-1ioabqz, .framer-Oyk9y .framer-kk0pnm, .framer-Oyk9y .framer-1iv9doy, .framer-Oyk9y .framer-113ik0, .framer-Oyk9y .framer-e8dpro, .framer-Oyk9y .framer-1hwvs09, .framer-Oyk9y .framer-idnzbp, .framer-Oyk9y .framer-1fj53vz, .framer-Oyk9y .framer-1qz6521, .framer-Oyk9y .framer-1qau7j1, .framer-Oyk9y .framer-kvtb7, .framer-Oyk9y .framer-96x804, .framer-Oyk9y .framer-b4pavo, .framer-Oyk9y .framer-xb5hdv, .framer-Oyk9y .framer-rudz8a, .framer-Oyk9y .framer-6otkem, .framer-Oyk9y .framer-1d7z251, .framer-Oyk9y .framer-tav0wr, .framer-Oyk9y .framer-j22vwf, .framer-Oyk9y .framer-1au8e1v, .framer-Oyk9y .framer-i8s5j9, .framer-Oyk9y .framer-1s0nk8j, .framer-Oyk9y .framer-11qni0t, .framer-Oyk9y .framer-5yi1ox, .framer-Oyk9y .framer-173h0h0, .framer-Oyk9y .framer-axet32, .framer-Oyk9y .framer-1svk98v, .framer-Oyk9y .framer-1wdd5ty, .framer-Oyk9y .framer-1lohovk, .framer-Oyk9y .framer-1pwr9wg, .framer-Oyk9y .framer-nawfa2, .framer-Oyk9y .framer-1jiy6v6, .framer-Oyk9y .framer-kdidjc, .framer-Oyk9y .framer-3v6eut, .framer-Oyk9y .framer-1unk7eq, .framer-Oyk9y .framer-gpfxg9, .framer-Oyk9y .framer-6dbqie, .framer-Oyk9y .framer-dvplxe, .framer-Oyk9y .framer-q9d5gz, .framer-Oyk9y .framer-hw81s0, .framer-Oyk9y .framer-12rk568, .framer-Oyk9y .framer-g8k50u, .framer-Oyk9y .framer-1qi8uu0, .framer-Oyk9y .framer-30n23u, .framer-Oyk9y .framer-1ssu72z, .framer-Oyk9y .framer-1srdbc9, .framer-Oyk9y .framer-17c6hzs, .framer-Oyk9y .framer-epoc7j, .framer-Oyk9y .framer-16vt5u2, .framer-Oyk9y .framer-1enzs9n, .framer-Oyk9y .framer-mbs66w, .framer-Oyk9y .framer-151pb2v, .framer-Oyk9y .framer-1kavdoe, .framer-Oyk9y .framer-1kjptgf, .framer-Oyk9y .framer-wlzt4k { gap: 0px; } .framer-Oyk9y.framer-uhi8xx > *, .framer-Oyk9y .framer-idnzbp > *, .framer-Oyk9y .framer-1qau7j1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Oyk9y.framer-uhi8xx > :first-child, .framer-Oyk9y .framer-10yefm2 > :first-child, .framer-Oyk9y .framer-leeq7m > :first-child, .framer-Oyk9y .framer-kk0pnm > :first-child, .framer-Oyk9y .framer-e8dpro > :first-child, .framer-Oyk9y .framer-idnzbp > :first-child, .framer-Oyk9y .framer-1qau7j1 > :first-child, .framer-Oyk9y .framer-kvtb7 > :first-child, .framer-Oyk9y .framer-b4pavo > :first-child, .framer-Oyk9y .framer-xb5hdv > :first-child, .framer-Oyk9y .framer-1d7z251 > :first-child, .framer-Oyk9y .framer-tav0wr > :first-child, .framer-Oyk9y .framer-j22vwf > :first-child, .framer-Oyk9y .framer-1au8e1v > :first-child, .framer-Oyk9y .framer-1s0nk8j > :first-child, .framer-Oyk9y .framer-11qni0t > :first-child, .framer-Oyk9y .framer-1wdd5ty > :first-child, .framer-Oyk9y .framer-nawfa2 > :first-child, .framer-Oyk9y .framer-1jiy6v6 > :first-child, .framer-Oyk9y .framer-3v6eut > :first-child, .framer-Oyk9y .framer-hw81s0 > :first-child, .framer-Oyk9y .framer-epoc7j > :first-child, .framer-Oyk9y .framer-1enzs9n > :first-child { margin-top: 0px; } .framer-Oyk9y.framer-uhi8xx > :last-child, .framer-Oyk9y .framer-10yefm2 > :last-child, .framer-Oyk9y .framer-leeq7m > :last-child, .framer-Oyk9y .framer-kk0pnm > :last-child, .framer-Oyk9y .framer-e8dpro > :last-child, .framer-Oyk9y .framer-idnzbp > :last-child, .framer-Oyk9y .framer-1qau7j1 > :last-child, .framer-Oyk9y .framer-kvtb7 > :last-child, .framer-Oyk9y .framer-b4pavo > :last-child, .framer-Oyk9y .framer-xb5hdv > :last-child, .framer-Oyk9y .framer-1d7z251 > :last-child, .framer-Oyk9y .framer-tav0wr > :last-child, .framer-Oyk9y .framer-j22vwf > :last-child, .framer-Oyk9y .framer-1au8e1v > :last-child, .framer-Oyk9y .framer-1s0nk8j > :last-child, .framer-Oyk9y .framer-11qni0t > :last-child, .framer-Oyk9y .framer-1wdd5ty > :last-child, .framer-Oyk9y .framer-nawfa2 > :last-child, .framer-Oyk9y .framer-1jiy6v6 > :last-child, .framer-Oyk9y .framer-3v6eut > :last-child, .framer-Oyk9y .framer-hw81s0 > :last-child, .framer-Oyk9y .framer-epoc7j > :last-child, .framer-Oyk9y .framer-1enzs9n > :last-child { margin-bottom: 0px; } .framer-Oyk9y .framer-b4itsk > *, .framer-Oyk9y .framer-cov1mm > *, .framer-Oyk9y .framer-1iv9doy > *, .framer-Oyk9y .framer-113ik0 > *, .framer-Oyk9y .framer-1hwvs09 > *, .framer-Oyk9y .framer-1fj53vz > *, .framer-Oyk9y .framer-1qz6521 > *, .framer-Oyk9y .framer-rudz8a > *, .framer-Oyk9y .framer-6otkem > *, .framer-Oyk9y .framer-5yi1ox > *, .framer-Oyk9y .framer-173h0h0 > *, .framer-Oyk9y .framer-axet32 > *, .framer-Oyk9y .framer-1lohovk > *, .framer-Oyk9y .framer-kdidjc > *, .framer-Oyk9y .framer-1unk7eq > *, .framer-Oyk9y .framer-gpfxg9 > *, .framer-Oyk9y .framer-6dbqie > *, .framer-Oyk9y .framer-dvplxe > *, .framer-Oyk9y .framer-q9d5gz > *, .framer-Oyk9y .framer-12rk568 > *, .framer-Oyk9y .framer-g8k50u > *, .framer-Oyk9y .framer-1qi8uu0 > *, .framer-Oyk9y .framer-30n23u > *, .framer-Oyk9y .framer-1ssu72z > *, .framer-Oyk9y .framer-17c6hzs > *, .framer-Oyk9y .framer-16vt5u2 > *, .framer-Oyk9y .framer-mbs66w > *, .framer-Oyk9y .framer-151pb2v > *, .framer-Oyk9y .framer-1kavdoe > *, .framer-Oyk9y .framer-1kjptgf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Oyk9y .framer-b4itsk > :first-child, .framer-Oyk9y .framer-cov1mm > :first-child, .framer-Oyk9y .framer-1ioabqz > :first-child, .framer-Oyk9y .framer-1iv9doy > :first-child, .framer-Oyk9y .framer-113ik0 > :first-child, .framer-Oyk9y .framer-1hwvs09 > :first-child, .framer-Oyk9y .framer-1fj53vz > :first-child, .framer-Oyk9y .framer-1qz6521 > :first-child, .framer-Oyk9y .framer-96x804 > :first-child, .framer-Oyk9y .framer-rudz8a > :first-child, .framer-Oyk9y .framer-6otkem > :first-child, .framer-Oyk9y .framer-i8s5j9 > :first-child, .framer-Oyk9y .framer-5yi1ox > :first-child, .framer-Oyk9y .framer-173h0h0 > :first-child, .framer-Oyk9y .framer-axet32 > :first-child, .framer-Oyk9y .framer-1svk98v > :first-child, .framer-Oyk9y .framer-1lohovk > :first-child, .framer-Oyk9y .framer-1pwr9wg > :first-child, .framer-Oyk9y .framer-kdidjc > :first-child, .framer-Oyk9y .framer-1unk7eq > :first-child, .framer-Oyk9y .framer-gpfxg9 > :first-child, .framer-Oyk9y .framer-6dbqie > :first-child, .framer-Oyk9y .framer-dvplxe > :first-child, .framer-Oyk9y .framer-q9d5gz > :first-child, .framer-Oyk9y .framer-12rk568 > :first-child, .framer-Oyk9y .framer-g8k50u > :first-child, .framer-Oyk9y .framer-1qi8uu0 > :first-child, .framer-Oyk9y .framer-30n23u > :first-child, .framer-Oyk9y .framer-1ssu72z > :first-child, .framer-Oyk9y .framer-1srdbc9 > :first-child, .framer-Oyk9y .framer-17c6hzs > :first-child, .framer-Oyk9y .framer-16vt5u2 > :first-child, .framer-Oyk9y .framer-mbs66w > :first-child, .framer-Oyk9y .framer-151pb2v > :first-child, .framer-Oyk9y .framer-1kavdoe > :first-child, .framer-Oyk9y .framer-1kjptgf > :first-child, .framer-Oyk9y .framer-wlzt4k > :first-child { margin-left: 0px; } .framer-Oyk9y .framer-b4itsk > :last-child, .framer-Oyk9y .framer-cov1mm > :last-child, .framer-Oyk9y .framer-1ioabqz > :last-child, .framer-Oyk9y .framer-1iv9doy > :last-child, .framer-Oyk9y .framer-113ik0 > :last-child, .framer-Oyk9y .framer-1hwvs09 > :last-child, .framer-Oyk9y .framer-1fj53vz > :last-child, .framer-Oyk9y .framer-1qz6521 > :last-child, .framer-Oyk9y .framer-96x804 > :last-child, .framer-Oyk9y .framer-rudz8a > :last-child, .framer-Oyk9y .framer-6otkem > :last-child, .framer-Oyk9y .framer-i8s5j9 > :last-child, .framer-Oyk9y .framer-5yi1ox > :last-child, .framer-Oyk9y .framer-173h0h0 > :last-child, .framer-Oyk9y .framer-axet32 > :last-child, .framer-Oyk9y .framer-1svk98v > :last-child, .framer-Oyk9y .framer-1lohovk > :last-child, .framer-Oyk9y .framer-1pwr9wg > :last-child, .framer-Oyk9y .framer-kdidjc > :last-child, .framer-Oyk9y .framer-1unk7eq > :last-child, .framer-Oyk9y .framer-gpfxg9 > :last-child, .framer-Oyk9y .framer-6dbqie > :last-child, .framer-Oyk9y .framer-dvplxe > :last-child, .framer-Oyk9y .framer-q9d5gz > :last-child, .framer-Oyk9y .framer-12rk568 > :last-child, .framer-Oyk9y .framer-g8k50u > :last-child, .framer-Oyk9y .framer-1qi8uu0 > :last-child, .framer-Oyk9y .framer-30n23u > :last-child, .framer-Oyk9y .framer-1ssu72z > :last-child, .framer-Oyk9y .framer-1srdbc9 > :last-child, .framer-Oyk9y .framer-17c6hzs > :last-child, .framer-Oyk9y .framer-16vt5u2 > :last-child, .framer-Oyk9y .framer-mbs66w > :last-child, .framer-Oyk9y .framer-151pb2v > :last-child, .framer-Oyk9y .framer-1kavdoe > :last-child, .framer-Oyk9y .framer-1kjptgf > :last-child, .framer-Oyk9y .framer-wlzt4k > :last-child { margin-right: 0px; } .framer-Oyk9y .framer-10yefm2 > *, .framer-Oyk9y .framer-e8dpro > *, .framer-Oyk9y .framer-kvtb7 > *, .framer-Oyk9y .framer-b4pavo > *, .framer-Oyk9y .framer-xb5hdv > *, .framer-Oyk9y .framer-1d7z251 > *, .framer-Oyk9y .framer-tav0wr > *, .framer-Oyk9y .framer-j22vwf > *, .framer-Oyk9y .framer-1au8e1v > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Oyk9y .framer-leeq7m > *, .framer-Oyk9y .framer-1jiy6v6 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Oyk9y .framer-1ioabqz > *, .framer-Oyk9y .framer-96x804 > *, .framer-Oyk9y .framer-1svk98v > *, .framer-Oyk9y .framer-1pwr9wg > *, .framer-Oyk9y .framer-1srdbc9 > *, .framer-Oyk9y .framer-wlzt4k > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Oyk9y .framer-kk0pnm > *, .framer-Oyk9y .framer-11qni0t > *, .framer-Oyk9y .framer-3v6eut > *, .framer-Oyk9y .framer-hw81s0 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Oyk9y .framer-i8s5j9 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Oyk9y .framer-1s0nk8j > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Oyk9y .framer-1wdd5ty > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-Oyk9y .framer-nawfa2 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Oyk9y .framer-epoc7j > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Oyk9y .framer-1enzs9n > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } }\",\"@media (min-width: 1200px) { .framer-Oyk9y .hidden-uhi8xx { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-Oyk9y .hidden-1sfefcw { display: none !important; } .${metadata.bodyClassName}-framer-Oyk9y { background: white; } .framer-Oyk9y.framer-uhi8xx { width: 810px; } .framer-Oyk9y .framer-15399wc-container { order: 0; top: 0px; } .framer-Oyk9y .framer-1x0doo6-container { order: 1; } .framer-Oyk9y .framer-b4itsk { order: 2; padding: 40px 0px 60px 0px; } .framer-Oyk9y .framer-10yefm2 { max-width: 768px; } .framer-Oyk9y .framer-1iv9doy { max-width: 380px; min-height: 400px; } .framer-Oyk9y .framer-113ik0 { height: 200px; right: 20px; top: 5px; width: 200px; } .framer-Oyk9y .framer-7r98bs { height: var(--framer-aspect-ratio-supported, 200px); width: 200px; } .framer-Oyk9y .framer-e8dpro { bottom: 0px; height: 150px; width: 200px; } .framer-Oyk9y .framer-15d4hek { height: var(--framer-aspect-ratio-supported, 152px); width: 200px; } .framer-Oyk9y .framer-1gdtjel { height: var(--framer-aspect-ratio-supported, 344px); left: 50px; width: 172px; } .framer-Oyk9y .framer-1npt74m { height: var(--framer-aspect-ratio-supported, 344px); left: 165px; width: 172px; } .framer-Oyk9y .framer-1hwvs09 { bottom: 4px; } .framer-Oyk9y .framer-idnzbp { order: 3; } .framer-Oyk9y .framer-1qau7j1 { order: 4; } .framer-Oyk9y .framer-71f62v-container { height: var(--framer-aspect-ratio-supported, 434px); width: 100%; } .framer-Oyk9y .framer-xb5hdv { gap: 30px; order: 5; padding: 54px 20px 54px 20px; } .framer-Oyk9y .framer-6otkem { align-content: center; align-items: center; flex-direction: column; gap: 30px; width: 810px; } .framer-Oyk9y .framer-1d7z251, .framer-Oyk9y .framer-tav0wr, .framer-Oyk9y .framer-j22vwf { flex: none; max-width: 500px; width: 100%; } .framer-Oyk9y .framer-1au8e1v { order: 6; } .framer-Oyk9y .framer-i8s5j9 { flex-direction: column; gap: 20px; } .framer-Oyk9y .framer-1s0nk8j { align-content: center; align-items: center; flex: none; width: 100%; } .framer-Oyk9y .framer-11qni0t { align-content: center; align-items: center; flex: none; padding: 0px 0px 20px 0px; width: 100%; } .framer-Oyk9y .framer-173h0h0 { max-width: 100%; padding: 0px 40px 0px 0px; } .framer-Oyk9y .framer-1g9ka1x { height: var(--framer-aspect-ratio-supported, 463px); } .framer-Oyk9y .framer-1mw1yq-container { bottom: 20px; } .framer-Oyk9y .framer-1wdd5ty { gap: 0px; order: 7; padding: 60px 20px 60px 20px; } .framer-Oyk9y .framer-1lohovk { order: 8; } .framer-Oyk9y .framer-1pwr9wg { flex-direction: column; width: 810px; } .framer-Oyk9y .framer-nawfa2 { flex: none; width: 100%; } .framer-Oyk9y .framer-kdidjc { flex: none; gap: 0px; width: 100%; } .framer-Oyk9y .framer-3v6eut, .framer-Oyk9y .framer-hw81s0 { padding: 0px; } .framer-Oyk9y .framer-1srdbc9 { order: 9; padding: 0px 0px 50px 16px; } .framer-Oyk9y .framer-mbs66w { flex-wrap: wrap; } .framer-Oyk9y .framer-1fjk8t6 { height: 70%; left: -150px; top: -56px; width: 70%; } .framer-Oyk9y .framer-1a0v8v0-container { order: 10; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Oyk9y .framer-xb5hdv, .framer-Oyk9y .framer-6otkem, .framer-Oyk9y .framer-i8s5j9, .framer-Oyk9y .framer-1wdd5ty, .framer-Oyk9y .framer-1pwr9wg, .framer-Oyk9y .framer-kdidjc { gap: 0px; } .framer-Oyk9y .framer-xb5hdv > *, .framer-Oyk9y .framer-6otkem > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Oyk9y .framer-xb5hdv > :first-child, .framer-Oyk9y .framer-6otkem > :first-child, .framer-Oyk9y .framer-i8s5j9 > :first-child, .framer-Oyk9y .framer-1wdd5ty > :first-child, .framer-Oyk9y .framer-1pwr9wg > :first-child { margin-top: 0px; } .framer-Oyk9y .framer-xb5hdv > :last-child, .framer-Oyk9y .framer-6otkem > :last-child, .framer-Oyk9y .framer-i8s5j9 > :last-child, .framer-Oyk9y .framer-1wdd5ty > :last-child, .framer-Oyk9y .framer-1pwr9wg > :last-child { margin-bottom: 0px; } .framer-Oyk9y .framer-i8s5j9 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Oyk9y .framer-1wdd5ty > *, .framer-Oyk9y .framer-1pwr9wg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Oyk9y .framer-kdidjc > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Oyk9y .framer-kdidjc > :first-child { margin-left: 0px; } .framer-Oyk9y .framer-kdidjc > :last-child { margin-right: 0px; } }}`,`@media (max-width: 809px) { .framer-Oyk9y .hidden-1r8pjgc { display: none !important; } .${metadata.bodyClassName}-framer-Oyk9y { background: white; } .framer-Oyk9y.framer-uhi8xx { overflow: hidden; width: 390px; } .framer-Oyk9y .framer-15399wc-container { left: -1px; order: 0; top: 0px; transform: unset; } .framer-Oyk9y .framer-1x0doo6-container { height: 68px; order: 1; } .framer-Oyk9y .framer-b4itsk { order: 2; padding: 0px; scroll-margin-top: 50px; } .framer-Oyk9y .framer-cov1mm { align-content: center; align-items: center; flex-direction: column; gap: 50px; } .framer-Oyk9y .framer-leeq7m { align-content: center; align-items: center; flex: none; gap: 10px; padding: 5px 0px 0px 0px; width: 100%; } .framer-Oyk9y .framer-woolr8, .framer-Oyk9y .framer-1a8xc7a { max-width: 536px; } .framer-Oyk9y .framer-1ioabqz, .framer-Oyk9y .framer-5yi1ox { flex-direction: column; } .framer-Oyk9y .framer-1iv9doy { align-self: unset; flex: none; gap: 0px; height: min-content; max-width: 360px; min-height: 400px; width: 100%; } .framer-Oyk9y .framer-113ik0 { height: 200px; right: 0px; width: 200px; } .framer-Oyk9y .framer-7r98bs { height: var(--framer-aspect-ratio-supported, 200px); width: 200px; } .framer-Oyk9y .framer-e8dpro { bottom: 0px; height: 152px; left: 0px; width: 200px; } .framer-Oyk9y .framer-15d4hek { height: var(--framer-aspect-ratio-supported, 152px); width: 200px; } .framer-Oyk9y .framer-1gdtjel { height: var(--framer-aspect-ratio-supported, 361px); left: 40px; top: 9px; width: 180px; } .framer-Oyk9y .framer-1npt74m { bottom: 9px; height: unset; left: 165px; top: 55px; width: var(--framer-aspect-ratio-supported, 168px); } .framer-Oyk9y .framer-1hwvs09 { flex-direction: column; left: 0px; right: 0px; width: unset; } .framer-Oyk9y .framer-idnzbp { order: 3; } .framer-Oyk9y .framer-1qau7j1 { order: 4; padding: 30px 20px 20px 20px; } .framer-Oyk9y .framer-1jayxfm, .framer-Oyk9y .framer-14z4xyp { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-Oyk9y .framer-71f62v-container { height: var(--framer-aspect-ratio-supported, 197px); width: 100%; } .framer-Oyk9y .framer-xb5hdv { order: 5; padding: 50px 20px 50px 20px; } .framer-Oyk9y .framer-rudz8a { padding: 0px 0px 20px 0px; } .framer-Oyk9y .framer-6otkem { flex-direction: column; gap: 32px; max-width: 100%; width: 390px; } .framer-Oyk9y .framer-1d7z251 { flex: none; max-width: 100%; width: 100%; } .framer-Oyk9y .framer-tav0wr, .framer-Oyk9y .framer-j22vwf { flex: none; width: 100%; } .framer-Oyk9y .framer-1au8e1v { order: 6; padding: 60px 20px 0px 20px; } .framer-Oyk9y .framer-i8s5j9 { flex-direction: column; gap: 20px; width: 100%; } .framer-Oyk9y .framer-1s0nk8j, .framer-Oyk9y .framer-epoc7j { align-content: center; align-items: center; flex: none; width: 100%; } .framer-Oyk9y .framer-11qni0t { align-content: center; align-items: center; flex: none; padding: 0px 0px 20px 0px; width: 100%; } .framer-Oyk9y .framer-173h0h0 { flex-direction: column; gap: 0px; max-width: 100%; overflow: visible; } .framer-Oyk9y .framer-1g9ka1x { flex: none; height: var(--framer-aspect-ratio-supported, 484px); width: 218%; } .framer-Oyk9y .framer-1svk98v { min-height: unset; min-width: unset; } .framer-Oyk9y .framer-1wdd5ty { gap: 30px; order: 7; padding: 70px 20px 60px 20px; } .framer-Oyk9y .framer-1lohovk { order: 8; padding: 30px 20px 40px 20px; } .framer-Oyk9y .framer-1pwr9wg { flex-direction: column; max-width: 100%; padding: 0px; } .framer-Oyk9y .framer-nawfa2 { flex: none; padding: 20px 20px 30px 0px; width: 100%; } .framer-Oyk9y .framer-kdidjc { flex: none; flex-direction: column; gap: 0px; width: 100%; } .framer-Oyk9y .framer-3v6eut { flex: none; padding: 0px; width: 100%; } .framer-Oyk9y .framer-hw81s0 { flex: none; padding: 20px 0px 0px 0px; width: 100%; } .framer-Oyk9y .framer-1srdbc9 { order: 9; padding: 0px 0px 80px 0px; } .framer-Oyk9y .framer-17c6hzs { align-content: center; align-items: center; flex-direction: column; gap: 36px; padding: 50px 20px 50px 20px; } .framer-Oyk9y .framer-16vt5u2, .framer-Oyk9y .framer-1enzs9n { align-content: center; align-items: center; } .framer-Oyk9y .framer-mbs66w { flex-wrap: wrap; justify-content: center; } .framer-Oyk9y .framer-wlzt4k { flex: none; justify-content: center; width: 100%; } .framer-Oyk9y .framer-1fjk8t6 { height: 50%; top: -180px; width: 100%; } .framer-Oyk9y .framer-1a0v8v0-container { order: 10; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Oyk9y .framer-cov1mm, .framer-Oyk9y .framer-leeq7m, .framer-Oyk9y .framer-1ioabqz, .framer-Oyk9y .framer-1iv9doy, .framer-Oyk9y .framer-1hwvs09, .framer-Oyk9y .framer-6otkem, .framer-Oyk9y .framer-i8s5j9, .framer-Oyk9y .framer-5yi1ox, .framer-Oyk9y .framer-173h0h0, .framer-Oyk9y .framer-1wdd5ty, .framer-Oyk9y .framer-1pwr9wg, .framer-Oyk9y .framer-kdidjc, .framer-Oyk9y .framer-17c6hzs { gap: 0px; } .framer-Oyk9y .framer-cov1mm > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-Oyk9y .framer-cov1mm > :first-child, .framer-Oyk9y .framer-leeq7m > :first-child, .framer-Oyk9y .framer-1ioabqz > :first-child, .framer-Oyk9y .framer-1hwvs09 > :first-child, .framer-Oyk9y .framer-6otkem > :first-child, .framer-Oyk9y .framer-i8s5j9 > :first-child, .framer-Oyk9y .framer-5yi1ox > :first-child, .framer-Oyk9y .framer-173h0h0 > :first-child, .framer-Oyk9y .framer-1wdd5ty > :first-child, .framer-Oyk9y .framer-1pwr9wg > :first-child, .framer-Oyk9y .framer-kdidjc > :first-child, .framer-Oyk9y .framer-17c6hzs > :first-child { margin-top: 0px; } .framer-Oyk9y .framer-cov1mm > :last-child, .framer-Oyk9y .framer-leeq7m > :last-child, .framer-Oyk9y .framer-1ioabqz > :last-child, .framer-Oyk9y .framer-1hwvs09 > :last-child, .framer-Oyk9y .framer-6otkem > :last-child, .framer-Oyk9y .framer-i8s5j9 > :last-child, .framer-Oyk9y .framer-5yi1ox > :last-child, .framer-Oyk9y .framer-173h0h0 > :last-child, .framer-Oyk9y .framer-1wdd5ty > :last-child, .framer-Oyk9y .framer-1pwr9wg > :last-child, .framer-Oyk9y .framer-kdidjc > :last-child, .framer-Oyk9y .framer-17c6hzs > :last-child { margin-bottom: 0px; } .framer-Oyk9y .framer-leeq7m > *, .framer-Oyk9y .framer-1hwvs09 > *, .framer-Oyk9y .framer-5yi1ox > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Oyk9y .framer-1ioabqz > *, .framer-Oyk9y .framer-173h0h0 > *, .framer-Oyk9y .framer-1pwr9wg > *, .framer-Oyk9y .framer-kdidjc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Oyk9y .framer-1iv9doy > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Oyk9y .framer-1iv9doy > :first-child { margin-left: 0px; } .framer-Oyk9y .framer-1iv9doy > :last-child { margin-right: 0px; } .framer-Oyk9y .framer-6otkem > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Oyk9y .framer-i8s5j9 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Oyk9y .framer-1wdd5ty > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Oyk9y .framer-17c6hzs > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9816.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"VA5V3aLwT\":{\"layout\":[\"fixed\",\"auto\"]},\"wakQqSaHe\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerQZLRliqQ5=withCSS(Component,css,\"framer-Oyk9y\");export default FramerQZLRliqQ5;FramerQZLRliqQ5.displayName=\"Home\";FramerQZLRliqQ5.defaultProps={height:9816.5,width:1200};addFonts(FramerQZLRliqQ5,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Euclid-Regular \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/RbplzWyhnFVNOkChrGXv8QfeQkw.woff2\"},{family:\"Euclid-Bold \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/rOhdKAfEkV8TzFbyCdacp3KE.woff2\"},{family:\"Euclid-Medium \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/WzfRCwhzZwAK7gJhbWSZPNMwwU8.woff2\"}]},...NavbarFonts,...NavbarPaddingFonts,...ButtonFonts,...WebSDKFonts,...YouTubeFonts,...LaunchStoriesParagraphFonts,...CodeSectionFonts,...FeatureSectionFonts,...HubSpotFormFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQZLRliqQ5\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VA5V3aLwT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wakQqSaHe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"9816.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["useIsOnCanvas", "se", "RenderTarget", "PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "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", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "ButtonFonts", "getFonts", "W_IYU09WW_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "isSet", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "buttonText", "color", "description", "height", "id", "image", "link", "tagTitle", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "_ref5", "_ref6", "_ref7", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vbxbZV_py", "t5or1RZPQ", "xu8EHSmDn", "xvEbyQ7py", "oIBqRjgfR", "WHtYUW88e", "tDxRTpkU3", "SNKZrA_E5", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "visible", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "RichText2", "ComponentPresetsProvider", "Link", "ComponentViewportProvider", "css", "FramerbqMoBVYKW", "withCSS", "bqMoBVYKW_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "LaunchStoriesParagraph", "styles", "font", "breakpoint", "u", "l", "p", "s", "a", "classNames", "e", "r", "t", "n", "i", "window", "apiKey", "externalId", "WebSDK", "props", "storyRow", "pe", "isMobile", "setIsMobile", "ye", "width", "useWindowDimensions", "storyRowClass", "a", "ue", "initializeWebSdk", "e", "styles", "script", "u", "l", "p", "fontStore", "fonts", "css", "className", "NavbarFonts", "getFonts", "MsBdjArod_default", "NavbarWithVariantAppearEffect", "withVariantAppearEffect", "NavbarPaddingFonts", "lMhg6FSHS_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "ButtonFonts", "W_IYU09WW_default", "MotionDivWithOptimizedAppearEffect", "motion", "ImageWithOptimizedAppearEffect", "Image2", "MotionDivWithSkewedBackground", "withSkewedBackground", "MotionDivWithFX", "withFX", "WebSDKFonts", "WebSDK", "YouTubeFonts", "Youtube", "ContainerWithFX", "Container", "LaunchStoriesParagraphFonts", "LaunchStoriesParagraph", "CodeSectionFonts", "kIPIj4ot_default", "FeatureSectionFonts", "bqMoBVYKW_default", "HubSpotFormFonts", "HubSpotForm", "FooterFonts", "JuytdRo0y_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "animation6", "transition6", "animation7", "transition7", "animation8", "animation9", "transition8", "animation10", "animation11", "animation12", "transition9", "animation13", "animation14", "transition10", "animation15", "transition11", "animation16", "transition12", "animation17", "animation18", "animation19", "animation20", "animation21", "animation22", "animation23", "addImageAlt", "image", "alt", "animation24", "animation25", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "ref2", "useRouteElementId", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "PropertyOverrides2", "Container", "NavbarWithVariantAppearEffect", "lMhg6FSHS_default", "x", "RichTextWithOptimizedAppearEffect", "Link", "W_IYU09WW_default", "MotionDivWithOptimizedAppearEffect", "SVG", "RichText2", "ImageWithOptimizedAppearEffect", "MotionDivWithSkewedBackground", "MotionDivWithFX", "WebSDK", "ContainerWithFX", "Youtube", "LaunchStoriesParagraph", "Image2", "kIPIj4ot_default", "bqMoBVYKW_default", "HubSpotForm", "JuytdRo0y_default", "css", "FramerQZLRliqQ5", "withCSS", "QZLRliqQ5_default", "addFonts", "NavbarFonts", "NavbarPaddingFonts", "ButtonFonts", "WebSDKFonts", "YouTubeFonts", "LaunchStoriesParagraphFonts", "CodeSectionFonts", "FeatureSectionFonts", "HubSpotFormFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
