{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framerusercontent.com/modules/BZKfTleJUidTr6MfnMJp/7RVSRuT4DAK45lqgnGAW/B6iON4n1S.js", "ssg:https://framerusercontent.com/modules/skU7EeFEszOFikUhmWJV/CrKeiyxfawhjCWdCyYSq/Dnlqu4TKT.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerDisableUnlink\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=['.framer-p8Za4 .framer-styles-preset-1mjnhos:not(.rich-text-wrapper), .framer-p8Za4 .framer-styles-preset-1mjnhos.rich-text-wrapper a { --framer-link-current-text-color: var(--token-32e985d3-0523-4a29-9204-c483252120e9, #ffffff) /* {\"name\":\"white\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-b6c21fbc-4ab3-48ec-a2a1-433b5cedb4b0, #5ff6ff) /* {\"name\":\"Blue_4\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-32e985d3-0523-4a29-9204-c483252120e9, #ffffff); --framer-link-text-decoration: none; }'];export const className=\"framer-p8Za4\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3104885)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/BZKfTleJUidTr6MfnMJp/7RVSRuT4DAK45lqgnGAW/B6iON4n1S.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/1gedSemaWmHYBGny4jc5/JxdpGTaJRsGesCPDbSVE/YF7sc9rzx.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/c4xIjczQKnUdyd0Ayicz/zMnSVZiQ3RFZ9AJeRPis/Z9xpKnyrt.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ehG8UUj8qMLuneumJUhf/whyQ9O5toZU7WbO1593T/ZooDPwpKY.js\";const EmbedFonts=getFonts(Embed);const MaterialFonts=getFonts(Material);const cycleOrder=[\"c9rlJbxh6\",\"E_OJoUi5y\",\"clAcKp8b4\"];const serializationHash=\"framer-3QZ2f\";const variantClassNames={c9rlJbxh6:\"framer-v-17c31x0\",clAcKp8b4:\"framer-v-1bv1tx9\",E_OJoUi5y:\"framer-v-ld5qzx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"c9rlJbxh6\",Phone:\"clAcKp8b4\",Tablet:\"E_OJoUi5y\"};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:\"c9rlJbxh6\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"c9rlJbxh6\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.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.footer,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-17c31x0\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"c9rlJbxh6\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0.05)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(17, 17, 17)\",...style},...addPropertyOverrides({clAcKp8b4:{\"data-framer-name\":\"Phone\"},E_OJoUi5y:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rxs02m\",\"data-framer-name\":\"Horizontal\",layoutDependency:layoutDependency,layoutId:\"XAjC3VLBz\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pca382\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"Rc7hPn0Zn\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1yucoip\",\"data-framer-name\":\"sw_logo_vert_white\",fill:\"black\",intrinsicHeight:88,intrinsicWidth:142,layoutDependency:layoutDependency,layoutId:\"MCvajx6Fu\",svg:'<svg width=\"142\" height=\"88\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M5.1 75.2v-.4c0-1.4.5-2.6 1.4-3.4 1-.9 2.2-1.3 3.8-1.3 1.6 0 2.9.5 3.9 1.5s1.5 2.4 1.5 4.1h2.4v2.9h-2.4v4.7c0 .4.1.7.4.9.3.3.6.4 1 .4.2 0 .4 0 .6-.1.2 0 .3-.1.4-.1h.1v2.8c-.6.2-1.4.4-2.2.4-2.5 0-3.7-1.4-3.7-4.1v-4.8h-2v-2.9h2c0-.9-.2-1.6-.6-2-.4-.5-1-.7-1.6-.7-.7 0-1.2.2-1.6.6-.4.4-.6.9-.6 1.6 0 .3.1.6.2 1 .2.3.3.6.5.7h.5l-1.7 1.9c0-.1-.1-.1-.2-.3-.1-.1-.3-.3-.7-.4-.3-.2-.7-.3-1-.3-.4 0-.8.1-1.1.3-.3.2-.4.4-.4.7 0 .3.2.6.6.8.4.2.8.4 1.4.5.5.2 1.1.4 1.6.6.5.2 1 .6 1.4 1.1.4.5.5 1.1.5 1.8 0 1.1-.4 1.9-1.2 2.6-.8.7-2 1.1-3.4 1.1-.6 0-1.2-.1-1.8-.2-.6-.1-1-.3-1.4-.5-.4-.2-.7-.5-1-.7-.3-.2-.5-.4-.6-.5l-.1-.2 1.8-1.8c.1.1.2.2.3.4.1.1.4.3.9.5.4.2.9.4 1.4.4.5 0 .9-.1 1.2-.3.3-.2.4-.5.4-.8 0-.3-.2-.6-.5-.8L4 82.3c-.5-.2-1.1-.4-1.6-.6-.5-.2-1-.6-1.3-1.1-.4-.5-.5-1.1-.5-1.8 0-.9.4-1.8 1.3-2.6s2-1.1 3.2-1.1v.1Zm23.2 3.4c-.2-.1-.6-.1-1.1-.1-.9 0-1.5.3-2 .8s-.7 1.3-.7 2.3v5.6h-3.2V75.4h3.2v1.4c.1-.1.2-.3.4-.4.2-.2.5-.4 1.1-.7.6-.3 1.2-.4 1.8-.4h.5v3.3Zm4.4 3.8c.1.6.5 1.2 1 1.6.6.4 1.3.7 2.1.7.6 0 1.2-.1 1.7-.4.5-.2.9-.5 1.1-.7l.3-.4 1.7 2.2-.2.2c-.1.1-.3.3-.6.5s-.7.4-1 .6c-.4.2-.8.3-1.4.5-.6.1-1.2.2-1.8.2-1.7 0-3.2-.6-4.4-1.8-1.2-1.2-1.8-2.6-1.8-4.3 0-1.7.6-3.1 1.8-4.3 1.2-1.2 2.6-1.8 4.3-1.8 1.7 0 3.1.6 4.2 1.7s1.7 2.5 1.7 4.2l-.1 1.3h-8.6Zm1-3.8c-.5.4-.8.9-1 1.6h5.4c-.1-.6-.4-1.1-.9-1.5-.5-.4-1.1-.6-1.7-.6-.7-.1-1.3.1-1.8.5ZM50.2 86l-.4.4c-.2.2-.5.4-1.1.6-.6.3-1.1.4-1.8.4-1.2 0-2.1-.3-2.9-1-.6-.6-1-1.4-1-2.3 0-1 .3-1.8.9-2.4.6-.6 1.5-1.1 2.6-1.3l3.7-.7c0-.5-.2-.9-.5-1.2-.3-.3-.9-.5-1.5-.5-.5 0-1 .1-1.5.3-.4.2-.7.4-.9.6l-.3.3-1.8-1.8c0-.1.1-.1.2-.3l.5-.5c.3-.3.6-.5.9-.7.3-.2.8-.4 1.3-.5.5-.2 1.1-.3 1.7-.3 1.5 0 2.7.4 3.6 1.3.9.9 1.4 2 1.4 3.3V87h-3.2v-1h.1Zm-.7-1.9c.4-.5.6-1.1.6-1.9v-.4l-2.6.5c-.9.1-1.3.6-1.3 1.3 0 .8.5 1.2 1.6 1.2.7 0 1.3-.2 1.7-.7Zm21.6-3.4c0-.7-.2-1.3-.5-1.8-.4-.4-.8-.6-1.4-.6-.6 0-1.1.2-1.5.7-.4.5-.6 1.2-.6 2v6.1h-3.2v-6.5c0-.7-.2-1.3-.5-1.8-.4-.4-.8-.6-1.4-.6-.6 0-1.1.2-1.6.7-.4.5-.6 1.2-.6 2V87h-3.2V75.4h3.2v1.4c.1-.1.2-.3.4-.5s.5-.4 1-.7c.5-.3 1.1-.5 1.7-.5.5 0 .9.1 1.3.2s.7.3 1 .5c.2.2.5.4.6.6.2.2.3.4.4.5l.1.2.2-.2c.1-.1.2-.3.5-.5.2-.2.5-.4.8-.6.3-.2.6-.3 1.1-.5.5-.2.9-.2 1.4-.2 1.3 0 2.3.4 3.1 1.3.8.9 1.1 2.2 1.1 3.8V87h-3.2v-6.3h-.2Z\" fill=\"#E8E5E5\"/><path d=\"m87.9 75.8 2.3 7.1 2.3-7.1h3.3l-4 11.7H89l-2.3-6.7-2.3 6.7h-2.8l-4-11.7H81l2.3 7.1 2.3-7.1h2.3ZM107.3 86c-1.2 1.2-2.7 1.8-4.4 1.8-1.7 0-3.1-.6-4.4-1.8-1.2-1.2-1.9-2.6-1.9-4.3 0-1.6.6-3.1 1.9-4.3 1.2-1.2 2.7-1.8 4.4-1.8 1.7 0 3.1.6 4.4 1.8 1.2 1.2 1.9 2.6 1.9 4.3 0 1.6-.6 3-1.9 4.3Zm-6.4-2.1c.6.6 1.2.9 2 .9s1.5-.3 2-.9c.6-.6.9-1.3.9-2.2 0-.9-.3-1.6-.9-2.2-.6-.6-1.2-.9-2-.9s-1.5.3-2 .9c-.6.6-.9 1.3-.9 2.2.1.9.4 1.6.9 2.2Zm17.7-5c-.2-.1-.6-.1-1.1-.1-.9 0-1.5.3-2 .8s-.7 1.3-.7 2.3v5.6h-3.2V75.8h3.2v1.4c.1-.1.2-.3.4-.4.2-.2.5-.4 1.1-.7.6-.3 1.2-.4 1.8-.4h.5v3.2Zm5.2 5.8v2.9h-3.2V70.8h3.2v9.8l4.2-4.8h3.7l-4.4 5 4.7 6.7h-3.6l-3.1-4.6-1.5 1.8Zm16.2-5.4c0-.1-.1-.1-.2-.3-.1-.1-.3-.3-.7-.4-.3-.2-.7-.3-1-.3-.4 0-.8.1-1.1.3-.3.2-.4.4-.4.7 0 .3.2.6.6.8.4.2.8.4 1.3.5.5.2 1.1.4 1.6.6.5.2 1 .6 1.4 1.1.4.5.5 1.1.5 1.8 0 1.1-.4 1.9-1.2 2.6-.8.7-2 1.1-3.4 1.1-.6 0-1.2-.1-1.8-.2-.6-.1-1-.3-1.4-.5-.4-.2-.7-.4-.9-.6-.3-.2-.5-.4-.6-.5l-.2-.2 1.8-1.8c.1.1.2.2.3.4.1.1.4.3.9.6.4.2.9.4 1.4.4.5 0 .9-.1 1.2-.3.3-.2.4-.5.4-.8 0-.3-.2-.6-.5-.8-.4-.2-.8-.4-1.4-.6-.5-.2-1.1-.4-1.6-.6-.5-.2-1-.6-1.3-1.1-.4-.5-.5-1.1-.5-1.8 0-.9.4-1.8 1.3-2.6s2-1.1 3.2-1.1c.8 0 1.6.2 2.2.5.7.3 1.2.6 1.4.9l.4.5-1.7 1.7Z\" fill=\"#fff\"/><path d=\"M69.3 22.1c2.8-2.5 6.2-4.3 10-5C77.3 7.5 68.8.2 58.6.2 47 .2 37.5 9.7 37.5 21.3c0 5.7 2.2 10.8 5.8 14.6 2.5-8.6 10.3-14.8 19.7-14.8 2.2 0 4.3.3 6.3 1Z\" fill=\"#E8E5E5\"/><path d=\"M83.4 16.7c-5.4 0-10.3 2-14.1 5.4 8.3 2.6 14.2 10.4 14.2 19.5H62.6c1.8 9.9 10.4 17.3 20.8 17.3 11.7 0 21.1-9.5 21.1-21.1 0-11.7-9.5-21.1-21.1-21.1Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h142v88H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19golw5\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"AqB2QcXBo\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xmv38i\",layoutDependency:layoutDependency,layoutId:\"BTC77JrwG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-16zr118\",\"data-styles-preset\":\"Z9xpKnyrt\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, rgb(255, 255, 255))\"},children:\"Stream Works\"})}),className:\"framer-tx1h57\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YaCCIyMKn\",style:{\"--extracted-1lwpl3i\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xjzwlp\",\"data-styles-preset\":\"ZooDPwpKY\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mjnhos\",\"data-styles-preset\":\"B6iON4n1S\",children:\"Home\"})})})}),className:\"framer-exqxw3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qcIqjIO5g\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xjzwlp\",\"data-styles-preset\":\"ZooDPwpKY\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dvdL6Sc2t\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mjnhos\",\"data-styles-preset\":\"B6iON4n1S\",children:\"Reel\"})})})}),className:\"framer-1ezjwb6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oL5dziLxf\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xjzwlp\",\"data-styles-preset\":\"ZooDPwpKY\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uvCFrFeKq\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mjnhos\",\"data-styles-preset\":\"B6iON4n1S\",children:\"Pricing\"})})})}),className:\"framer-1qo58e\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tztms5tRK\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xjzwlp\",\"data-styles-preset\":\"ZooDPwpKY\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Eh7iIKu_8\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mjnhos\",\"data-styles-preset\":\"B6iON4n1S\",children:\"Contact\"})})})}),className:\"framer-1sx3c9l\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CfxZl4vC9\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1acgw40\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"vkFuHoGN6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-16zr118\",\"data-styles-preset\":\"Z9xpKnyrt\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, rgb(255, 255, 255))\"},children:\"Services\"})}),className:\"framer-153m6tt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MSipyt3uv\",style:{\"--extracted-1lwpl3i\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xjzwlp\",\"data-styles-preset\":\"ZooDPwpKY\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{IsHipItfJ:\"event-streaming\"},unresolvedPathSlugs:{IsHipItfJ:{collectionId:\"e117wZ0Rm\",collectionItemId:\"N1vu4jb36\"}},webPageId:\"akg8mM45i\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mjnhos\",\"data-styles-preset\":\"B6iON4n1S\",children:\"Event Streaming\"})})})}),className:\"framer-2oaip9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UatHWAZxy\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xjzwlp\",\"data-styles-preset\":\"ZooDPwpKY\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{IsHipItfJ:\"webcasts-webinars\"},unresolvedPathSlugs:{IsHipItfJ:{collectionId:\"e117wZ0Rm\",collectionItemId:\"xWlc1dikf\"}},webPageId:\"akg8mM45i\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mjnhos\",\"data-styles-preset\":\"B6iON4n1S\",children:\"Webcasts & Webinars\"})})})}),className:\"framer-ze6g4z\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gJlF673YB\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xjzwlp\",\"data-styles-preset\":\"ZooDPwpKY\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{IsHipItfJ:\"virtual-meetings-events\"},unresolvedPathSlugs:{IsHipItfJ:{collectionId:\"e117wZ0Rm\",collectionItemId:\"s2jDFYbJ_\"}},webPageId:\"akg8mM45i\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mjnhos\",\"data-styles-preset\":\"B6iON4n1S\",children:\"Virtual Meetings & Events\"})})})}),className:\"framer-1740p25\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EJobFI2bu\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xjzwlp\",\"data-styles-preset\":\"ZooDPwpKY\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-32e985d3-0523-4a29-9204-c483252120e9, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{IsHipItfJ:\"video-production-editing\"},unresolvedPathSlugs:{IsHipItfJ:{collectionId:\"e117wZ0Rm\",collectionItemId:\"SdkjeCnN8\"}},webPageId:\"akg8mM45i\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mjnhos\",\"data-styles-preset\":\"B6iON4n1S\",children:\"Video Production & Editing\"})})})}),className:\"framer-1t31p6i\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cypt8ZlpA\",style:{\"--extracted-r6o4lv\":\"var(--token-32e985d3-0523-4a29-9204-c483252120e9, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xjzwlp\",\"data-styles-preset\":\"ZooDPwpKY\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{IsHipItfJ:\"consulting\"},unresolvedPathSlugs:{IsHipItfJ:{collectionId:\"e117wZ0Rm\",collectionItemId:\"tjK4WriUs\"}},webPageId:\"akg8mM45i\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mjnhos\",\"data-styles-preset\":\"B6iON4n1S\",children:\"Consulting\"})})})}),className:\"framer-1onvzf8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kddPCLEYC\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xjzwlp\",\"data-styles-preset\":\"ZooDPwpKY\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-32e985d3-0523-4a29-9204-c483252120e9, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{IsHipItfJ:\"esports\"},unresolvedPathSlugs:{IsHipItfJ:{collectionId:\"e117wZ0Rm\",collectionItemId:\"MgMR1ZNHT\"}},webPageId:\"akg8mM45i\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mjnhos\",\"data-styles-preset\":\"B6iON4n1S\",children:\"eSports\"})})})}),className:\"framer-3mt2mj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"N5MXmuIHF\",style:{\"--extracted-r6o4lv\":\"var(--token-32e985d3-0523-4a29-9204-c483252120e9, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1es5hbh\",layoutDependency:layoutDependency,layoutId:\"m48KsgwRe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b2k4il\",\"data-styles-preset\":\"rRmIGrbPS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-76ca6d82-6222-4b3c-b054-c4cd04f549cf, rgb(255, 255, 255)))\"},children:\"Get Free Insights to Your Inbox\"})}),className:\"framer-9att59\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eRF1ZUjNT\",style:{\"--extracted-r6o4lv\":\"var(--token-76ca6d82-6222-4b3c-b054-c4cd04f549cf, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xb89wf-container\",layoutDependency:layoutDependency,layoutId:\"snqYlcXth-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe frameborder=\"0\" style=\"height:500px;width:99%;border:none;\" src=\\'https://forms.zohopublic.com/eventagrate/form/SubscribeStreamWorksFinal/formperma/SHk0jGgaN8LPmvQIbmuV30gCVoncmXOpbo80ClByVmk\\'></iframe>',id:\"snqYlcXth\",layoutId:\"snqYlcXth\",style:{height:\"100%\",maxHeight:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rznkjr\",\"data-border\":true,\"data-framer-name\":\"Social\",layoutDependency:layoutDependency,layoutId:\"YgVJ61QIW\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(255, 255, 255, 0.2)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7yiim9\",layoutDependency:layoutDependency,layoutId:\"EeHib8HQE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-n4qj7u\",\"data-styles-preset\":\"YF7sc9rzx\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-32e985d3-0523-4a29-9204-c483252120e9, rgb(255, 255, 255)))\"},children:\"2024. All rights reserved.\"})}),className:\"framer-s09crp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"frqvmiKbD\",style:{\"--extracted-r6o4lv\":\"var(--token-32e985d3-0523-4a29-9204-c483252120e9, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6voo4d\",\"data-framer-name\":\"Icons\",layoutDependency:layoutDependency,layoutId:\"rOfed8zst\",children:[/*#__PURE__*/_jsx(Link,{href:\"mailto:info@stream.works\",openInNewTab:true,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-nzn179 framer-8rfdex\",\"data-framer-name\":\"Mail\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"RvibGoZcx\",svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4 20c-.55 0-1.021-.196-1.413-.588A1.922 1.922 0 0 1 2 18V6c0-.55.196-1.021.588-1.413A1.922 1.922 0 0 1 4 4h16c.55 0 1.021.196 1.413.588.392.392.588.863.587 1.412v12c0 .55-.196 1.021-.588 1.413A1.922 1.922 0 0 1 20 20H4Zm8-7 8-5V6l-8 5-8-5v2l8 5Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/gostreamworks\",openInNewTab:true,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1xlszlc framer-8rfdex\",\"data-framer-name\":\"FaceBook\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"fEpM9he_9\",svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12 2.04c-5.5 0-10 4.49-10 10.02 0 5 3.66 9.15 8.44 9.9v-7H7.9v-2.9h2.54V9.85c0-2.51 1.49-3.89 3.78-3.89 1.09 0 2.23.19 2.23.19v2.47h-1.26c-1.24 0-1.63.77-1.63 1.56v1.88h2.78l-.45 2.9h-2.33v7a10 10 0 0 0 8.44-9.9c0-5.53-4.5-10.02-10-10.02Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/gostreamworks/\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-tqqq98 framer-8rfdex\",\"data-framer-name\":\"Instagram\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"XKZS8vrBA\",svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12 8.75a3.25 3.25 0 1 0 0 6.5 3.25 3.25 0 0 0 0-6.5Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.77 3.082a47.472 47.472 0 0 1 10.46 0c1.9.212 3.43 1.707 3.653 3.613a45.671 45.671 0 0 1 0 10.61c-.223 1.906-1.754 3.4-3.652 3.614a47.469 47.469 0 0 1-10.46 0c-1.9-.213-3.43-1.708-3.654-3.613a45.67 45.67 0 0 1 0-10.611C3.34 4.789 4.871 3.294 6.77 3.082ZM17 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-9.75 6a4.75 4.75 0 1 1 9.5 0 4.75 4.75 0 0 1-9.5 0Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/gostreamworks\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-41it5l framer-8rfdex\",\"data-framer-name\":\"Twitter\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"r8yqdzSvb\",svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M22.46 6c-.77.35-1.6.58-2.46.69.88-.53 1.56-1.37 1.88-2.38-.83.5-1.75.85-2.72 1.05C18.37 4.5 17.26 4 16 4c-2.35 0-4.27 1.92-4.27 4.29 0 .34.04.67.11.98C8.28 9.09 5.11 7.38 3 4.79c-.37.63-.58 1.37-.58 2.15 0 1.49.75 2.81 1.91 3.56-.71 0-1.37-.2-1.95-.5v.03c0 2.08 1.48 3.82 3.44 4.21a4.22 4.22 0 0 1-1.93.07 4.28 4.28 0 0 0 4 2.98 8.521 8.521 0 0 1-5.33 1.84c-.34 0-.68-.02-1.02-.06C3.44 20.29 5.7 21 8.12 21 16 21 20.33 14.46 20.33 8.79c0-.19 0-.37-.01-.56.84-.6 1.56-1.36 2.14-2.23Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/33240689\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-b1xa9a framer-8rfdex\",layoutDependency:layoutDependency,layoutId:\"dhX98Xpmv\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6nbdzq-container\",layoutDependency:layoutDependency,layoutId:\"dXkfbmxs7-container\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"linkedin\",iconSelection:\"Home\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"dXkfbmxs7\",layoutId:\"dXkfbmxs7\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-u8hw6c\",layoutDependency:layoutDependency,layoutId:\"qaDPPdKCk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-n4qj7u\",\"data-styles-preset\":\"YF7sc9rzx\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-32e985d3-0523-4a29-9204-c483252120e9, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GaC14qW7W\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mjnhos\",\"data-styles-preset\":\"B6iON4n1S\",children:\"Privacy Policy\"})})})}),className:\"framer-1hkv2qe\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VAmvLi1BS\",style:{\"--extracted-r6o4lv\":\"var(--token-32e985d3-0523-4a29-9204-c483252120e9, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3QZ2f.framer-8rfdex, .framer-3QZ2f .framer-8rfdex { display: block; }\",\".framer-3QZ2f.framer-17c31x0 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 60px 40px 30px 60px; position: relative; width: 1200px; }\",\".framer-3QZ2f .framer-rxs02m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 120px; height: min-content; justify-content: flex-start; max-width: 1542px; overflow: visible; padding: 0px 24px 0px 0px; position: relative; width: 100%; }\",\".framer-3QZ2f .framer-1pca382 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-3QZ2f .framer-1yucoip { aspect-ratio: 1.6136363636363635 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 88px); position: relative; width: 142px; }\",\".framer-3QZ2f .framer-19golw5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3QZ2f .framer-xmv38i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3QZ2f .framer-tx1h57, .framer-3QZ2f .framer-exqxw3, .framer-3QZ2f .framer-1ezjwb6, .framer-3QZ2f .framer-1qo58e, .framer-3QZ2f .framer-1sx3c9l { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-3QZ2f .framer-1acgw40 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 280px; }\",\".framer-3QZ2f .framer-153m6tt, .framer-3QZ2f .framer-2oaip9, .framer-3QZ2f .framer-ze6g4z, .framer-3QZ2f .framer-1740p25, .framer-3QZ2f .framer-1t31p6i, .framer-3QZ2f .framer-1onvzf8, .framer-3QZ2f .framer-3mt2mj, .framer-3QZ2f .framer-s09crp, .framer-3QZ2f .framer-1hkv2qe { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-3QZ2f .framer-1es5hbh { 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: 48px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-3QZ2f .framer-9att59 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3QZ2f .framer-xb89wf-container { flex: none; height: 230px; max-height: 100%; position: relative; width: 280px; }\",\".framer-3QZ2f .framer-1rznkjr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1542px; overflow: visible; padding: 12px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-3QZ2f .framer-7yiim9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 12px 0px; position: relative; width: min-content; }\",\".framer-3QZ2f .framer-6voo4d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3QZ2f .framer-nzn179, .framer-3QZ2f .framer-1xlszlc, .framer-3QZ2f .framer-tqqq98, .framer-3QZ2f .framer-41it5l { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; text-decoration: none; width: 24px; }\",\".framer-3QZ2f .framer-b1xa9a { flex: none; height: 25px; overflow: visible; position: relative; text-decoration: none; width: 25px; }\",\".framer-3QZ2f .framer-6nbdzq-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-3QZ2f .framer-u8hw6c { 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: 0px 0px 12px 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3QZ2f.framer-17c31x0, .framer-3QZ2f .framer-rxs02m, .framer-3QZ2f .framer-1pca382, .framer-3QZ2f .framer-19golw5, .framer-3QZ2f .framer-xmv38i, .framer-3QZ2f .framer-1acgw40, .framer-3QZ2f .framer-1es5hbh, .framer-3QZ2f .framer-7yiim9, .framer-3QZ2f .framer-6voo4d, .framer-3QZ2f .framer-u8hw6c { gap: 0px; } .framer-3QZ2f.framer-17c31x0 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-3QZ2f.framer-17c31x0 > :first-child, .framer-3QZ2f .framer-1pca382 > :first-child, .framer-3QZ2f .framer-19golw5 > :first-child, .framer-3QZ2f .framer-xmv38i > :first-child, .framer-3QZ2f .framer-1acgw40 > :first-child, .framer-3QZ2f .framer-1es5hbh > :first-child, .framer-3QZ2f .framer-7yiim9 > :first-child, .framer-3QZ2f .framer-u8hw6c > :first-child { margin-top: 0px; } .framer-3QZ2f.framer-17c31x0 > :last-child, .framer-3QZ2f .framer-1pca382 > :last-child, .framer-3QZ2f .framer-19golw5 > :last-child, .framer-3QZ2f .framer-xmv38i > :last-child, .framer-3QZ2f .framer-1acgw40 > :last-child, .framer-3QZ2f .framer-1es5hbh > :last-child, .framer-3QZ2f .framer-7yiim9 > :last-child, .framer-3QZ2f .framer-u8hw6c > :last-child { margin-bottom: 0px; } .framer-3QZ2f .framer-rxs02m > * { margin: 0px; margin-left: calc(120px / 2); margin-right: calc(120px / 2); } .framer-3QZ2f .framer-rxs02m > :first-child, .framer-3QZ2f .framer-6voo4d > :first-child { margin-left: 0px; } .framer-3QZ2f .framer-rxs02m > :last-child, .framer-3QZ2f .framer-6voo4d > :last-child { margin-right: 0px; } .framer-3QZ2f .framer-1pca382 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-3QZ2f .framer-19golw5 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-3QZ2f .framer-xmv38i > *, .framer-3QZ2f .framer-1acgw40 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-3QZ2f .framer-1es5hbh > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-3QZ2f .framer-7yiim9 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-3QZ2f .framer-6voo4d > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-3QZ2f .framer-u8hw6c > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-3QZ2f.framer-v-ld5qzx.framer-17c31x0 { width: 810px; }\",\".framer-3QZ2f.framer-v-ld5qzx .framer-rxs02m { gap: 60px; padding: 0px; }\",\".framer-3QZ2f.framer-v-ld5qzx .framer-19golw5 { gap: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3QZ2f.framer-v-ld5qzx .framer-rxs02m, .framer-3QZ2f.framer-v-ld5qzx .framer-19golw5 { gap: 0px; } .framer-3QZ2f.framer-v-ld5qzx .framer-rxs02m > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-3QZ2f.framer-v-ld5qzx .framer-rxs02m > :first-child { margin-left: 0px; } .framer-3QZ2f.framer-v-ld5qzx .framer-rxs02m > :last-child { margin-right: 0px; } .framer-3QZ2f.framer-v-ld5qzx .framer-19golw5 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-3QZ2f.framer-v-ld5qzx .framer-19golw5 > :first-child { margin-top: 0px; } .framer-3QZ2f.framer-v-ld5qzx .framer-19golw5 > :last-child { margin-bottom: 0px; } }\",\".framer-3QZ2f.framer-v-1bv1tx9.framer-17c31x0 { padding: 60px 40px 30px 40px; width: 390px; }\",\".framer-3QZ2f.framer-v-1bv1tx9 .framer-rxs02m { flex-direction: column; gap: 24px; padding: 0px; }\",\".framer-3QZ2f.framer-v-1bv1tx9 .framer-1pca382 { flex: none; padding: 0px 0px 40px 0px; width: 100%; }\",\".framer-3QZ2f.framer-v-1bv1tx9 .framer-19golw5 { width: 100%; }\",\".framer-3QZ2f.framer-v-1bv1tx9 .framer-xmv38i { padding: 0px 0px 24px 0px; }\",\".framer-3QZ2f.framer-v-1bv1tx9 .framer-1rznkjr { flex-direction: column; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3QZ2f.framer-v-1bv1tx9 .framer-rxs02m, .framer-3QZ2f.framer-v-1bv1tx9 .framer-1rznkjr { gap: 0px; } .framer-3QZ2f.framer-v-1bv1tx9 .framer-rxs02m > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-3QZ2f.framer-v-1bv1tx9 .framer-rxs02m > :first-child { margin-top: 0px; } .framer-3QZ2f.framer-v-1bv1tx9 .framer-rxs02m > :last-child { margin-bottom: 0px; } .framer-3QZ2f.framer-v-1bv1tx9 .framer-1rznkjr > *, .framer-3QZ2f.framer-v-1bv1tx9 .framer-1rznkjr > :first-child, .framer-3QZ2f.framer-v-1bv1tx9 .framer-1rznkjr > :last-child { margin: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-3QZ2f[data-border=\"true\"]::after, .framer-3QZ2f [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 927\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"E_OJoUi5y\":{\"layout\":[\"fixed\",\"auto\"]},\"clAcKp8b4\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDnlqu4TKT=withCSS(Component,css,\"framer-3QZ2f\");export default FramerDnlqu4TKT;FramerDnlqu4TKT.displayName=\"Footer Dark\";FramerDnlqu4TKT.defaultProps={height:927,width:1200};addPropertyControls(FramerDnlqu4TKT,{variant:{options:[\"c9rlJbxh6\",\"E_OJoUi5y\",\"clAcKp8b4\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerDnlqu4TKT,[{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://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\"}]},...EmbedFonts,...MaterialFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDnlqu4TKT\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"927\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"E_OJoUi5y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"clAcKp8b4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Dnlqu4TKT.map"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "fontStore", "fonts", "css", "className", "EmbedFonts", "getFonts", "Embed", "MaterialFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "RichText2", "Link", "ComponentViewportProvider", "css", "FramerDnlqu4TKT", "withCSS", "Dnlqu4TKT_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
