{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js", "ssg:https://framerusercontent.com/modules/mU9a2MTAMdhH5jsXQNps/hKVYvSorbmq1hQhkbaUs/Ki3owS2mP.js"],
  "sourcesContent": ["import{jsx as _jsx}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 any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedURL,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHTML,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}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\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url,style}){const hasAutoHeight=!style.height;// 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(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},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,style}){const ref=useRef();const onCanvas=useIsOnCanvas();const[iframeHeight,setIframeHeight]=useState(0);const hasAutoHeight=!style.height;const hasScript=html.includes(\"</script>\");useEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);if(hasScript){const srcDoc=`<html>\n    <head>\n        <style>body { margin: 0; }</style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>`;const currentStyle={...iframeStyle,...style};if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// 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,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (e4277c8)\nvar _componentPresets_fonts,_componentPresets_fonts1,_componentPresets_fonts2,_componentPresets_fonts3;import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import BackForwardButton from\"#framer/local/canvasComponent/an3L57yh9/an3L57yh9.js\";import Button from\"#framer/local/canvasComponent/Bja_OBDRD/Bja_OBDRD.js\";import NavigationNewWhite from\"#framer/local/canvasComponent/j_GBRiSCG/j_GBRiSCG.js\";import Footer from\"#framer/local/canvasComponent/rsCAVGq3F/rsCAVGq3F.js\";import BackForwardButtonWITHOUTLINK from\"#framer/local/canvasComponent/VK1DBowjw/VK1DBowjw.js\";import Videos from\"#framer/local/collection/XOg6nucHl/XOg6nucHl.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle8 from\"#framer/local/css/CRGKHZzJ0/CRGKHZzJ0.js\";import*as sharedStyle7 from\"#framer/local/css/Fp9zk3ufL/Fp9zk3ufL.js\";import*as sharedStyle10 from\"#framer/local/css/FTZrDTehh/FTZrDTehh.js\";import*as sharedStyle3 from\"#framer/local/css/HfNaq4qf7/HfNaq4qf7.js\";import*as sharedStyle1 from\"#framer/local/css/JxycVDCxp/JxycVDCxp.js\";import*as sharedStyle4 from\"#framer/local/css/m3Fx_k7E0/m3Fx_k7E0.js\";import*as sharedStyle2 from\"#framer/local/css/Mrc4jU9C4/Mrc4jU9C4.js\";import*as sharedStyle5 from\"#framer/local/css/NUTgo4cN_/NUTgo4cN_.js\";import*as sharedStyle from\"#framer/local/css/uc0aKKpYI/uc0aKKpYI.js\";import*as sharedStyle6 from\"#framer/local/css/vvOJKsCTA/vvOJKsCTA.js\";import*as sharedStyle9 from\"#framer/local/css/WgtnCDaSs/WgtnCDaSs.js\";import metadataProvider from\"#framer/local/webPageMetadata/Ki3owS2mP/Ki3owS2mP.js\";const NavigationNewWhiteFonts=getFonts(NavigationNewWhite);const MotionDivWithFX=withFX(motion.div);const EmbedFonts=getFonts(Embed);const YouTubeFonts=getFonts(YouTube);const BackForwardButtonFonts=getFonts(BackForwardButton);const BackForwardButtonWITHOUTLINKFonts=getFonts(BackForwardButtonWITHOUTLINK);const RichTextWithFX=withFX(RichText);const ButtonFonts=getFonts(Button);const FooterFonts=getFonts(Footer);const breakpoints={rGxnTlowJ:\"(min-width: 1440px)\",UoOMFdn6L:\"(min-width: 810px) and (max-width: 1199px)\",XVFCCBCJx:\"(min-width: 1200px) and (max-width: 1439px)\",XvWrYEW6R:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-TNpkt\";const variantClassNames={rGxnTlowJ:\"framer-v-1klucw8\",UoOMFdn6L:\"framer-v-ad904b\",XVFCCBCJx:\"framer-v-1fgvb9j\",XvWrYEW6R:\"framer-v-cba127\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition1={damping:60,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:30};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const isSet=value=>{if(Array.isArray(value)){return value.length>0;}return value!==undefined&&value!==null&&value!==\"\";};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={\"Large Display\":\"rGxnTlowJ\",Desktop:\"XVFCCBCJx\",Phone:\"XvWrYEW6R\",Tablet:\"UoOMFdn6L\"};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:\"XVFCCBCJx\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"Ki3owS2mP\",data:Videos,type:\"Collection\"},select:[{collection:\"Ki3owS2mP\",name:\"Tksk7gAXD\",type:\"Identifier\"},{collection:\"Ki3owS2mP\",name:\"z73Iw8W3B\",type:\"Identifier\"},{collection:\"Ki3owS2mP\",name:\"aRsDZYt0I\",type:\"Identifier\"},{collection:\"Ki3owS2mP\",name:\"x83IRcZmx\",type:\"Identifier\"},{collection:\"Ki3owS2mP\",name:\"OVXCZZclC\",type:\"Identifier\"},{collection:\"Ki3owS2mP\",name:\"CECyOqY8J\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"Ki3owS2mP\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1,_getFromCurrentRouteData2,_getFromCurrentRouteData3;const{style,className,layoutId,variant,z73Iw8W3B=(_getFromCurrentRouteData=getFromCurrentRouteData(\"z73Iw8W3B\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",x83IRcZmx=getFromCurrentRouteData(\"x83IRcZmx\"),OVXCZZclC=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"OVXCZZclC\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",CECyOqY8J=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"CECyOqY8J\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:\"\",LXPPb0mj_V8JvwFqLF,idV8JvwFqLF,Tksk7gAXD=(_getFromCurrentRouteData3=getFromCurrentRouteData(\"Tksk7gAXD\"))!==null&&_getFromCurrentRouteData3!==void 0?_getFromCurrentRouteData3:0,LXPPb0mj_VTWU32JA7,idVTWU32JA7,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,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);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,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-TNpkt`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-TNpkt`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"rGxnTlowJ\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"rGxnTlowJ\")return true;return false;};const visible=equals(x83IRcZmx,\"WYYbF16RJ\");const visible1=equals(x83IRcZmx,\"O5Kea1hta\");const visible2=isSet(CECyOqY8J);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"XVFCCBCJx\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1fgvb9j\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:91,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12bjoy2-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UoOMFdn6L:{variant:\"CHh17xWs8\"},XvWrYEW6R:{variant:\"CHh17xWs8\"}},children:/*#__PURE__*/_jsx(NavigationNewWhite,{height:\"100%\",id:\"M72EoNcrn\",layoutId:\"M72EoNcrn\",style:{width:\"100%\"},variant:\"veVZGw7Gj\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15kcsaf\",\"data-framer-name\":\"Section Container\",name:\"Section Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19z3lgb\",\"data-framer-name\":\"Wonder demo container\",name:\"Wonder demo container\",style:{transformPerspective:1200},children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-orqdza\",\"data-styles-preset\":\"uc0aKKpYI\",style:{\"--framer-text-color\":\"var(--token-bc567dab-a014-498f-95c5-57b3fd26b32c, rgb(1, 31, 64))\"},children:\"What is lowercase r research? with Victoria Sakal\"})}),className:\"framer-yz3pb7 hidden-1klucw8\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:z73Iw8W3B,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-orqdza\",\"data-styles-preset\":\"uc0aKKpYI\",style:{\"--framer-text-color\":\"var(--token-bc567dab-a014-498f-95c5-57b3fd26b32c, rgb(1, 31, 64))\"},children:\"What is lowercase r research? with Victoria Sakal\"})}),className:\"framer-1tlp1fe hidden-1fgvb9j hidden-ad904b hidden-cba127\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:z73Iw8W3B,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Bac\"})}),className:\"framer-bziqyu hidden-1fgvb9j hidden-ad904b hidden-cba127\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-14jj4zz\",\"data-framer-name\":\"Spotify Stack\",name:\"Spotify Stack\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4baggh-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:OVXCZZclC,id:\"sk0cbSUUX\",layoutId:\"sk0cbSUUX\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bely23-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:6,bottomLeftRadius:6,bottomRightRadius:6,height:\"100%\",id:\"LkXiegf2c\",isMixedBorderRadius:false,isRed:false,layoutId:\"LkXiegf2c\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:6,topRightRadius:6,url:OVXCZZclC,width:\"100%\"})})}),visible2&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"OjY9wnYQL\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"fhq7l0x9N\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:CECyOqY8J,className:\"framer-1m4x4pc\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-qhfcng\",blockquote:\"framer-styles-preset-1vni6vo\",h1:\"framer-styles-preset-19jr6uh\",h2:\"framer-styles-preset-139hbez\",h3:\"framer-styles-preset-2zxxyu\",h4:\"framer-styles-preset-t7zi9i\",h5:\"framer-styles-preset-10f86z0\",h6:\"framer-styles-preset-1wnrt6a\",img:\"framer-styles-preset-m0gvw6\",p:\"framer-styles-preset-159yewx\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hngqqw\",\"data-framer-name\":\"Button container\",name:\"Button container\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sl5rscRdA\"},implicitPathVariables:undefined},{href:{webPageId:\"sl5rscRdA\"},implicitPathVariables:undefined},{href:{webPageId:\"sl5rscRdA\"},implicitPathVariables:undefined},{href:{webPageId:\"sl5rscRdA\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(Container,{className:\"framer-psti7p-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rGxnTlowJ:{aHrGC1UAu:resolvedLinks[1]},UoOMFdn6L:{aHrGC1UAu:resolvedLinks[2]},XvWrYEW6R:{aHrGC1UAu:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(BackForwardButton,{aHrGC1UAu:resolvedLinks[0],height:\"100%\",HGucwQL7l:\"var(--token-bc567dab-a014-498f-95c5-57b3fd26b32c, rgb(1, 31, 64))\",id:\"fdEGbWhc_\",layoutId:\"fdEGbWhc_\",OfhFpn3EX:\"Back to Podcast & Video Library\",variant:\"VxFkxhddl\",width:\"100%\",X6c4lTlN0:\"var(--token-bc567dab-a014-498f-95c5-57b3fd26b32c, rgb(1, 31, 64))\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-knxurf\",\"data-framer-name\":\"back and forward \",name:\"back and forward \",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lb1jps\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"V8JvwFqLF\",data:Videos,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"V8JvwFqLF\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"V8JvwFqLF\",name:\"LXPPb0mj_\",type:\"Identifier\"},{collection:\"V8JvwFqLF\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"V8JvwFqLF\",name:\"Tksk7gAXD\",type:\"Identifier\"},operator:\">\",right:{type:\"LiteralValue\",value:Tksk7gAXD},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"LXPPb0mj_\":LXPPb0mj_V8JvwFqLF,\"id\":idV8JvwFqLF},i)=>{LXPPb0mj_V8JvwFqLF!==null&&LXPPb0mj_V8JvwFqLF!==void 0?LXPPb0mj_V8JvwFqLF:LXPPb0mj_V8JvwFqLF=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`V8JvwFqLF-${idV8JvwFqLF}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{LXPPb0mj_:LXPPb0mj_V8JvwFqLF},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{LXPPb0mj_:LXPPb0mj_V8JvwFqLF},webPageId:\"Ki3owS2mP\"},openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-183t9ok framer-lb07ha\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pw4ex1-container\",children:/*#__PURE__*/_jsx(BackForwardButtonWITHOUTLINK,{fLPF0mg86:\"var(--token-bc567dab-a014-498f-95c5-57b3fd26b32c, rgb(1, 31, 64))\",height:\"100%\",id:\"vKcbhxB8Y\",layoutId:\"vKcbhxB8Y\",PV3PT8y2d:\"var(--token-bc567dab-a014-498f-95c5-57b3fd26b32c, rgb(1, 31, 64))\",uKR4mxqaK:\"Previous\",variant:\"binMYsMzP\",width:\"100%\",Z93jDTdV6:\"var(--token-bc567dab-a014-498f-95c5-57b3fd26b32c, rgb(1, 31, 64))\"})})})})})})},idV8JvwFqLF);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kcn9yz\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"VTWU32JA7\",data:Videos,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"VTWU32JA7\",name:\"LXPPb0mj_\",type:\"Identifier\"},{collection:\"VTWU32JA7\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"VTWU32JA7\",name:\"Tksk7gAXD\",type:\"Identifier\"},operator:\"<\",right:{type:\"LiteralValue\",value:Tksk7gAXD},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"LXPPb0mj_\":LXPPb0mj_VTWU32JA7,\"id\":idVTWU32JA7},i)=>{LXPPb0mj_VTWU32JA7!==null&&LXPPb0mj_VTWU32JA7!==void 0?LXPPb0mj_VTWU32JA7:LXPPb0mj_VTWU32JA7=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`VTWU32JA7-${idVTWU32JA7}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{LXPPb0mj_:LXPPb0mj_VTWU32JA7},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{LXPPb0mj_:LXPPb0mj_VTWU32JA7},webPageId:\"Ki3owS2mP\"},openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-96y8eq framer-lb07ha\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(Container,{className:\"framer-88xwd3-container\",children:/*#__PURE__*/_jsx(BackForwardButtonWITHOUTLINK,{fLPF0mg86:\"var(--token-bc567dab-a014-498f-95c5-57b3fd26b32c, rgb(1, 31, 64))\",height:\"100%\",id:\"FnGzCPvAb\",layoutId:\"FnGzCPvAb\",PV3PT8y2d:\"var(--token-bc567dab-a014-498f-95c5-57b3fd26b32c, rgb(1, 31, 64))\",uKR4mxqaK:\"Next\",variant:\"XwKPUcWlG\",width:\"100%\",Z93jDTdV6:\"var(--token-bc567dab-a014-498f-95c5-57b3fd26b32c, rgb(1, 31, 64))\"})})})})})})},idVTWU32JA7);})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XvWrYEW6R:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:439,intrinsicWidth:1441,pixelHeight:439,pixelWidth:1441,positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/5TxSdKUhXcG95WK3C61KV2cK0.png\",srcSet:\"https://framerusercontent.com/images/5TxSdKUhXcG95WK3C61KV2cK0.png?scale-down-to=512 512w,https://framerusercontent.com/images/5TxSdKUhXcG95WK3C61KV2cK0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5TxSdKUhXcG95WK3C61KV2cK0.png 1441w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:439,intrinsicWidth:1441,pixelHeight:439,pixelWidth:1441,sizes:\"100vw\",src:\"https://framerusercontent.com/images/5TxSdKUhXcG95WK3C61KV2cK0.png\",srcSet:\"https://framerusercontent.com/images/5TxSdKUhXcG95WK3C61KV2cK0.png?scale-down-to=512 512w,https://framerusercontent.com/images/5TxSdKUhXcG95WK3C61KV2cK0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5TxSdKUhXcG95WK3C61KV2cK0.png 1441w\"},className:\"framer-r0nww4\",\"data-framer-name\":\"CTA Section\",name:\"CTA Section\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-orqdza\",\"data-styles-preset\":\"uc0aKKpYI\",children:[\"Better answers to better questions power\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3f16b744-2280-44d2-b9d1-7bb10e3a66bc, rgb(47, 131, 222))\"},children:\"better decisions, stronger strategies, and smarter bets.\"})]})}),className:\"framer-fj60la\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-2zxxyu\",\"data-styles-preset\":\"HfNaq4qf7\",children:\"Join hundreds of other companies who are going further, faster by making Wonder their competitive advantage.\"})}),className:\"framer-1hix6ru\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b7p5nj\",\"data-framer-name\":\"Button wrap\",name:\"Button wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-upu56l\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,width:\"240px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-85j7y7-container\",\"data-framer-name\":\"Primary-button\",name:\"Primary-button\",children:/*#__PURE__*/_jsx(Button,{GOvBLr491:\"https://calendly.com/d/4rf-frk-4wm\",height:\"100%\",id:\"pWC9p_uXs\",layoutId:\"pWC9p_uXs\",name:\"Primary-button\",style:{width:\"100%\"},variant:\"KLhrGzggm\",width:\"100%\",zNs7Ydai9:\"Discuss A Pilot\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cx888e\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,width:\"240px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2jrku3-container\",\"data-framer-name\":\"Primary-button\",name:\"Primary-button\",children:/*#__PURE__*/_jsx(Button,{GOvBLr491:\"https://start.askwonder.com/app/wonderpad/\",height:\"100%\",id:\"BUpDtnyY1\",layoutId:\"BUpDtnyY1\",name:\"Primary-button\",style:{width:\"100%\"},variant:\"FB18EADdg\",width:\"100%\",zNs7Ydai9:\"Start Free Trial\"})})})})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:436,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dqm4km-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UoOMFdn6L:{variant:\"Bz40kasxE\"},XvWrYEW6R:{variant:\"AvLgISy9N\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"tOhZ9wDnp\",layoutId:\"tOhZ9wDnp\",style:{width:\"100%\"},variant:\"g7G5_vT4k\",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-TNpkt { background: var(--token-d5952ce1-93a0-4567-b4ae-b1ce052cbb65, rgb(255, 255, 255)); }`,\".framer-TNpkt.framer-lb07ha, .framer-TNpkt .framer-lb07ha { display: block; }\",\".framer-TNpkt.framer-1fgvb9j { align-content: center; align-items: center; background-color: var(--token-d5952ce1-93a0-4567-b4ae-b1ce052cbb65, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-TNpkt .framer-12bjoy2-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 3; }\",\".framer-TNpkt .framer-15kcsaf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 160px 224px 160px 224px; position: relative; width: 100%; }\",\".framer-TNpkt .framer-19z3lgb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-TNpkt .framer-yz3pb7, .framer-TNpkt .framer-1tlp1fe, .framer-TNpkt .framer-fj60la, .framer-TNpkt .framer-1hix6ru { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TNpkt .framer-bziqyu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TNpkt .framer-14jj4zz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TNpkt .framer-4baggh-container, .framer-TNpkt .framer-1dqm4km-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-TNpkt .framer-bely23-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); position: relative; width: 100%; }\",\".framer-TNpkt .framer-1m4x4pc { --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-TNpkt .framer-1hngqqw { 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-TNpkt .framer-psti7p-container, .framer-TNpkt .framer-1pw4ex1-container, .framer-TNpkt .framer-88xwd3-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-TNpkt .framer-knxurf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TNpkt .framer-1lb1jps { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-TNpkt .framer-183t9ok { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-TNpkt .framer-kcn9yz { 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; padding: 0px; position: relative; width: 1px; }\",\".framer-TNpkt .framer-96y8eq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-end; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-TNpkt .framer-r0nww4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 64px; position: relative; width: 100%; }\",\".framer-TNpkt .framer-1b7p5nj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 96px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TNpkt .framer-upu56l, .framer-TNpkt .framer-1cx888e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-TNpkt .framer-85j7y7-container, .framer-TNpkt .framer-2jrku3-container { flex: none; height: auto; position: relative; width: 240px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-TNpkt.framer-1fgvb9j, .framer-TNpkt .framer-15kcsaf, .framer-TNpkt .framer-19z3lgb, .framer-TNpkt .framer-14jj4zz, .framer-TNpkt .framer-1hngqqw, .framer-TNpkt .framer-knxurf, .framer-TNpkt .framer-1lb1jps, .framer-TNpkt .framer-183t9ok, .framer-TNpkt .framer-kcn9yz, .framer-TNpkt .framer-96y8eq, .framer-TNpkt .framer-r0nww4, .framer-TNpkt .framer-1b7p5nj, .framer-TNpkt .framer-upu56l, .framer-TNpkt .framer-1cx888e { gap: 0px; } .framer-TNpkt.framer-1fgvb9j > *, .framer-TNpkt .framer-14jj4zz > *, .framer-TNpkt .framer-1lb1jps > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-TNpkt.framer-1fgvb9j > :first-child, .framer-TNpkt .framer-15kcsaf > :first-child, .framer-TNpkt .framer-19z3lgb > :first-child, .framer-TNpkt .framer-14jj4zz > :first-child, .framer-TNpkt .framer-1lb1jps > :first-child, .framer-TNpkt .framer-kcn9yz > :first-child, .framer-TNpkt .framer-r0nww4 > :first-child, .framer-TNpkt .framer-upu56l > :first-child, .framer-TNpkt .framer-1cx888e > :first-child { margin-top: 0px; } .framer-TNpkt.framer-1fgvb9j > :last-child, .framer-TNpkt .framer-15kcsaf > :last-child, .framer-TNpkt .framer-19z3lgb > :last-child, .framer-TNpkt .framer-14jj4zz > :last-child, .framer-TNpkt .framer-1lb1jps > :last-child, .framer-TNpkt .framer-kcn9yz > :last-child, .framer-TNpkt .framer-r0nww4 > :last-child, .framer-TNpkt .framer-upu56l > :last-child, .framer-TNpkt .framer-1cx888e > :last-child { margin-bottom: 0px; } .framer-TNpkt .framer-15kcsaf > *, .framer-TNpkt .framer-19z3lgb > *, .framer-TNpkt .framer-r0nww4 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-TNpkt .framer-1hngqqw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-TNpkt .framer-1hngqqw > :first-child, .framer-TNpkt .framer-knxurf > :first-child, .framer-TNpkt .framer-183t9ok > :first-child, .framer-TNpkt .framer-96y8eq > :first-child, .framer-TNpkt .framer-1b7p5nj > :first-child { margin-left: 0px; } .framer-TNpkt .framer-1hngqqw > :last-child, .framer-TNpkt .framer-knxurf > :last-child, .framer-TNpkt .framer-183t9ok > :last-child, .framer-TNpkt .framer-96y8eq > :last-child, .framer-TNpkt .framer-1b7p5nj > :last-child { margin-right: 0px; } .framer-TNpkt .framer-knxurf > *, .framer-TNpkt .framer-96y8eq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-TNpkt .framer-183t9ok > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-TNpkt .framer-kcn9yz > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-TNpkt .framer-1b7p5nj > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-TNpkt .framer-upu56l > *, .framer-TNpkt .framer-1cx888e > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",`@media (min-width: 1440px) { .${metadata.bodyClassName}-framer-TNpkt { background: var(--token-d5952ce1-93a0-4567-b4ae-b1ce052cbb65, rgb(255, 255, 255)); } .framer-TNpkt.framer-1fgvb9j { width: 1440px; } .framer-TNpkt .framer-12bjoy2-container { order: 0; } .framer-TNpkt .framer-15kcsaf, .framer-TNpkt .framer-1tlp1fe, .framer-TNpkt .framer-14jj4zz { order: 1; } .framer-TNpkt .framer-19z3lgb { gap: 0px; order: 0; } .framer-TNpkt .framer-bziqyu, .framer-TNpkt .framer-bely23-container, .framer-TNpkt .framer-r0nww4 { order: 2; } .framer-TNpkt .framer-1m4x4pc, .framer-TNpkt .framer-1dqm4km-container { order: 3; } .framer-TNpkt .framer-1hngqqw { order: 4; } .framer-TNpkt .framer-knxurf { order: 5; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-TNpkt .framer-19z3lgb { gap: 0px; } .framer-TNpkt .framer-19z3lgb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-TNpkt .framer-19z3lgb > :first-child { margin-top: 0px; } .framer-TNpkt .framer-19z3lgb > :last-child { margin-bottom: 0px; } }}`,`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-TNpkt { background: var(--token-d5952ce1-93a0-4567-b4ae-b1ce052cbb65, rgb(255, 255, 255)); } .framer-TNpkt.framer-1fgvb9j { width: 810px; } .framer-TNpkt .framer-15kcsaf { padding: 160px 64px 160px 64px; } .framer-TNpkt .framer-19z3lgb { padding: 0px 32px 0px 32px; }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-TNpkt { background: var(--token-d5952ce1-93a0-4567-b4ae-b1ce052cbb65, rgb(255, 255, 255)); } .framer-TNpkt.framer-1fgvb9j { width: 390px; } .framer-TNpkt .framer-15kcsaf { padding: 160px 16px 160px 16px; } .framer-TNpkt .framer-19z3lgb { gap: 48px; } .framer-TNpkt .framer-yz3pb7 { order: 0; } .framer-TNpkt .framer-r0nww4 { padding: 64px 16px 64px 16px; } .framer-TNpkt .framer-1b7p5nj { flex-direction: column; height: min-content; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-TNpkt .framer-19z3lgb, .framer-TNpkt .framer-1b7p5nj { gap: 0px; } .framer-TNpkt .framer-19z3lgb > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-TNpkt .framer-19z3lgb > :first-child, .framer-TNpkt .framer-1b7p5nj > :first-child { margin-top: 0px; } .framer-TNpkt .framer-19z3lgb > :last-child, .framer-TNpkt .framer-1b7p5nj > :last-child { margin-bottom: 0px; } .framer-TNpkt .framer-1b7p5nj > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2886\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rGxnTlowJ\":{\"layout\":[\"fixed\",\"auto\"]},\"UoOMFdn6L\":{\"layout\":[\"fixed\",\"auto\"]},\"XvWrYEW6R\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerKi3owS2mP=withCSS(Component,css,\"framer-TNpkt\");export default FramerKi3owS2mP;FramerKi3owS2mP.displayName=\"Page\";FramerKi3owS2mP.defaultProps={height:2886,width:1200};addFonts(FramerKi3owS2mP,[{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\"}]},...NavigationNewWhiteFonts,...EmbedFonts,...YouTubeFonts,...BackForwardButtonFonts,...BackForwardButtonWITHOUTLINKFonts,...ButtonFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"fhq7l0x9N\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"fhq7l0x9N\"]):[],...((_componentPresets_fonts2=componentPresets.fonts)===null||_componentPresets_fonts2===void 0?void 0:_componentPresets_fonts2[\"OjY9wnYQL\"])?getFontsFromComponentPreset((_componentPresets_fonts3=componentPresets.fonts)===null||_componentPresets_fonts3===void 0?void 0:_componentPresets_fonts3[\"OjY9wnYQL\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKi3owS2mP\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"2886\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rGxnTlowJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UoOMFdn6L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XvWrYEW6R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "iframeHeight", "setIframeHeight", "hasScript", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "htmlStyle", "containerStyles", "_componentPresets_fonts", "_componentPresets_fonts1", "_componentPresets_fonts2", "_componentPresets_fonts3", "NavigationNewWhiteFonts", "getFonts", "j_GBRiSCG_default", "MotionDivWithFX", "withFX", "motion", "EmbedFonts", "Embed", "YouTubeFonts", "Youtube", "BackForwardButtonFonts", "an3L57yh9_default", "BackForwardButtonWITHOUTLINKFonts", "VK1DBowjw_default", "RichTextWithFX", "RichText2", "ButtonFonts", "Bja_OBDRD_default", "FooterFonts", "rsCAVGq3F_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "equals", "a", "b", "isSet", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "XOg6nucHl_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "_getFromCurrentRouteData3", "style", "className", "layoutId", "variant", "z73Iw8W3B", "x83IRcZmx", "OVXCZZclC", "CECyOqY8J", "LXPPb0mj_V8JvwFqLF", "idV8JvwFqLF", "Tksk7gAXD", "LXPPb0mj_VTWU32JA7", "idVTWU32JA7", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "visible", "visible1", "visible2", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "ComponentPresetsProvider", "ResolveLinks", "resolvedLinks", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "Link", "collection1", "paginationInfo1", "loadMore1", "Image2", "css", "FramerKi3owS2mP", "withCSS", "Ki3owS2mP_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
