{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/bWARdTxBg8TX2LImzFU2/XOQtbHPjVODPn0kbeqQN/bkHrKTyRl.js", "ssg:https://framerusercontent.com/modules/9DAD97OK4OYWs0pLCVva/YY0n6XMauK2jDgIl7esF/CnwjP9y6P.js", "ssg:https://framerusercontent.com/modules/hNWS4k0duxUmkfVCxZfu/XeW33q48QO8SQXL3RrHK/Ad_5uH6Kz.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/kl2xgSRt1WWElXySYjOo/OpMiIDJ3UisHgGwsV69y/ZyMHDP5df.js", "ssg:https://framerusercontent.com/modules/jXFJKTLmoN1Jprh48t7B/2cNVMW845tRESWXPPW9W/J72jSqUn5.js", "ssg:https://framerusercontent.com/modules/7bB1xJQfvhH91rjQkSeo/3sE8rXlLH0lAm4F2Mwu1/FFSG2ggTa.js", "ssg:https://framerusercontent.com/modules/C7eEQbDdET1VOtPwsrV7/1ZFmibTZ1NnhmTAMfJtD/n9FZRhtfl.js", "ssg:https://framerusercontent.com/modules/6txFri7ggP6VaVt6Kxj2/4ryev1UE95EE6BZ7QFYc/rFFL0k1B1.js", "ssg:https://framerusercontent.com/modules/nrobjMZIix4R0guZWBPc/KTEd3eKEUKWIxh3WXxEH/DqZStQ3sd.js", "ssg:https://framerusercontent.com/modules/OaXrcdaNmAPaI2SoOngN/e1qB6dUi6s10PudQZFBE/K55tR_WNf.js", "ssg:https://framerusercontent.com/modules/KdQ3vQX2rl5u9I1S49BN/077QYQbGuxndaKaH7Be6/NFvCjc1oJ.js", "ssg:https://framerusercontent.com/modules/MAKNuUWaxeI9ndRnOVOx/fY3QgwNVrdqAHHTJTysW/Y0r5wfAkg.js", "ssg:https://framerusercontent.com/modules/cbGx04jPJm4J6SsATHo4/QbGOj5uZ4ahQ1ln1zn21/SB1di5zUx.js", "ssg:https://framerusercontent.com/modules/4c3HDV2JQHQEfOf34oiY/sQhU2vtY4lGXXayudTdo/yezzG8cuz.js", "ssg:https://framerusercontent.com/modules/juL8uzccM590OlYnyuE7/1LaZmZfcHgQonPdHtaF9/x1_MUB9Lf.js", "ssg:https://framerusercontent.com/modules/eICUC6SEpgkpSglVejSK/TLMeV3xVREmOXaTrmL3o/augiA20Il.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,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{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);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </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>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}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,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\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;SuisseIntl-Medium-WebS \\xb6\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"SuisseIntl-Medium-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/fe6VVDD19GsVueyGyyL6zjNey8.woff\"}]}];export const css=['.framer-1XVit .framer-styles-preset-11pxi0k:not(.rich-text-wrapper), .framer-1XVit .framer-styles-preset-11pxi0k.rich-text-wrapper p { --framer-font-family: \"SuisseIntl-Medium-WebS \\xb6\", \"SuisseIntl-Medium-WebS \\xb6 Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 142%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1999px) and (min-width: 1200px) { .framer-1XVit .framer-styles-preset-11pxi0k:not(.rich-text-wrapper), .framer-1XVit .framer-styles-preset-11pxi0k.rich-text-wrapper p { --framer-font-family: \"SuisseIntl-Medium-WebS \\xb6\", \"SuisseIntl-Medium-WebS \\xb6 Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 142%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-1XVit .framer-styles-preset-11pxi0k:not(.rich-text-wrapper), .framer-1XVit .framer-styles-preset-11pxi0k.rich-text-wrapper p { --framer-font-family: \"SuisseIntl-Medium-WebS \\xb6\", \"SuisseIntl-Medium-WebS \\xb6 Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 142%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-1XVit .framer-styles-preset-11pxi0k:not(.rich-text-wrapper), .framer-1XVit .framer-styles-preset-11pxi0k.rich-text-wrapper p { --framer-font-family: \"SuisseIntl-Medium-WebS \\xb6\", \"SuisseIntl-Medium-WebS \\xb6 Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 142%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-1XVit\";\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\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Suisse Intl Black\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Suisse Intl Black\",source:\"custom\",url:\"https://framerusercontent.com/assets/SmuNlbcU08k2Vpxke0FO1dR4PEY.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Black.cyrillic-ext-TU4ITVTR.woff2\",weight:\"900\"},{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-Black.cyrillic-JX7CGTYD.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Black.greek-ext-LS3GCBFI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Black.greek-ZWCJHBP5.woff2\",weight:\"900\"},{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-Black.latin-ext-BZLEUMX6.woff2\",weight:\"900\"},{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-Black.latin-TETRYDF7.woff2\",weight:\"900\"},{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-Black.vietnamese-RXQCC3EJ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BlackItalic.cyrillic-ext-TRM4ITYR.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BlackItalic.cyrillic-FPHIQVZS.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BlackItalic.greek-ext-JTGUUSP5.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BlackItalic.greek-LUNA3RFO.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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-BlackItalic.latin-ext-KU7ICFYH.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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-BlackItalic.latin-FRVXWQSB.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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-BlackItalic.vietnamese-2Q7MQKJX.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-ext-PEYDHC3S.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-7EIL6JWG.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-ext-3DJOYQMH.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-TJBTLTT7.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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-BoldItalic.latin-ext-FVPCPRBJ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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-BoldItalic.latin-5ZFQS4XK.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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-BoldItalic.vietnamese-W2625PGF.woff2\",weight:\"700\"}]}];export const css=['.framer-fxZSs .framer-styles-preset-ixg2j2:not(.rich-text-wrapper), .framer-fxZSs .framer-styles-preset-ixg2j2.rich-text-wrapper h5 { --framer-font-family: \"Suisse Intl Black\", \"Suisse Intl Black Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 128%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: uppercase; }','@media (max-width: 1999px) and (min-width: 1200px) { .framer-fxZSs .framer-styles-preset-ixg2j2:not(.rich-text-wrapper), .framer-fxZSs .framer-styles-preset-ixg2j2.rich-text-wrapper h5 { --framer-font-family: \"Suisse Intl Black\", \"Suisse Intl Black Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 128%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: uppercase; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-fxZSs .framer-styles-preset-ixg2j2:not(.rich-text-wrapper), .framer-fxZSs .framer-styles-preset-ixg2j2.rich-text-wrapper h5 { --framer-font-family: \"Suisse Intl Black\", \"Suisse Intl Black Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 128%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: uppercase; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-fxZSs .framer-styles-preset-ixg2j2:not(.rich-text-wrapper), .framer-fxZSs .framer-styles-preset-ixg2j2.rich-text-wrapper h5 { --framer-font-family: \"Suisse Intl Black\", \"Suisse Intl Black Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 128%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: uppercase; } }'];export const className=\"framer-fxZSs\";\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 (2fef4c5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/bWARdTxBg8TX2LImzFU2/XOQtbHPjVODPn0kbeqQN/bkHrKTyRl.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/9DAD97OK4OYWs0pLCVva/YY0n6XMauK2jDgIl7esF/CnwjP9y6P.js\";const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const RichTextWithFX=withFX(RichText);const VideoControls=getPropertyControls(Video);const enabledGestures={MQIW0LIvb:{hover:true}};const cycleOrder=[\"MQIW0LIvb\",\"ipq8iSI3x\",\"lbpFEThlt\",\"io5WV7Y33\"];const serializationHash=\"framer-xaOf5\";const variantClassNames={io5WV7Y33:\"framer-v-1faov7\",ipq8iSI3x:\"framer-v-l44lj1\",lbpFEThlt:\"framer-v-1omjjje\",MQIW0LIvb:\"framer-v-osafur\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const transition2={duration:0,type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:36};const transition3={delay:0,duration:2,ease:[.12,.23,.5,1],type:\"tween\"};const transition4={delay:0,duration:1.2,ease:[.12,.23,.5,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:18};const transition5={delay:.1,duration:2,ease:[.12,.23,.5,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={DesktopAndUp:\"MQIW0LIvb\",MobileAndTablet:\"ipq8iSI3x\",MobileAndTabletHover:\"lbpFEThlt\",Preview:\"io5WV7Y33\"};const getProps=({caption,file,gap,height,id,image,number,scrollSection,title,video,width,...props})=>{return{...props,bJWjNu8Qt:file??props.bJWjNu8Qt,pQpbijn0v:video??props.pQpbijn0v??true,ua8YzA3KS:gap??props.ua8YzA3KS,UazOgZka0:number??props.UazOgZka0??\"0\",variant:humanReadableVariantMap[props.variant]??props.variant??\"MQIW0LIvb\",VcgeyAA7s:image??props.VcgeyAA7s,vYdXm5VMy:title??props.vYdXm5VMy??\"Heading 4\",yEogJwGkQ:caption??props.yEogJwGkQ??\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.\",z3yDgCezg:scrollSection??props.z3yDgCezg};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,vYdXm5VMy,UazOgZka0,z3yDgCezg,pQpbijn0v,bJWjNu8Qt,VcgeyAA7s,yEogJwGkQ,ua8YzA3KS,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MQIW0LIvb\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap15201g9=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"lbpFEThlt\");});const onTaptlcaiw=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"ipq8iSI3x\");});const onTap10or46e=activeVariantCallback(async(...args)=>{setVariant(\"lbpFEThlt\");});const onTapwg6hg3=activeVariantCallback(async(...args)=>{setVariant(\"ipq8iSI3x\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({ipq8iSI3x:{value:transition2},lbpFEThlt:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-osafur\",className,classNames),\"data-framer-name\":\"DesktopAndUp\",layoutDependency:layoutDependency,layoutId:\"MQIW0LIvb\",ref:refBinding,style:{...style},...addPropertyOverrides({\"MQIW0LIvb-hover\":{\"data-framer-name\":undefined},io5WV7Y33:{\"data-framer-name\":\"Preview\"},ipq8iSI3x:{\"data-framer-name\":\"MobileAndTablet\",\"data-highlight\":true,onTap:onTap15201g9},lbpFEThlt:{\"data-framer-name\":\"MobileAndTabletHover\",\"data-highlight\":true,onTap:onTaptlcaiw}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:z3yDgCezg,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-9upyu6\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"B11WXu5cA\",...addPropertyOverrides({ipq8iSI3x:{__framer__animate:{transition:transition4},__framer__targets:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-ixg2j2\",\"data-styles-preset\":\"CnwjP9y6P\",children:\"Heading 4\"})}),className:\"framer-12eyd0g\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gZ7aqKozu\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:vYdXm5VMy,variants:{\"MQIW0LIvb-hover\":{\"--extracted-1lwpl3i\":\"var(--token-ce496639-0b3e-4c1c-ac97-857bb63eb46e, rgb(118, 168, 173))\"},lbpFEThlt:{\"--extracted-1lwpl3i\":\"var(--token-ce496639-0b3e-4c1c-ac97-857bb63eb46e, rgb(118, 168, 173))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"MQIW0LIvb-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-ixg2j2\",\"data-styles-preset\":\"CnwjP9y6P\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-ce496639-0b3e-4c1c-ac97-857bb63eb46e, rgb(118, 168, 173)))\"},children:\"Heading 4\"})})},lbpFEThlt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-ixg2j2\",\"data-styles-preset\":\"CnwjP9y6P\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-ce496639-0b3e-4c1c-ac97-857bb63eb46e, rgb(118, 168, 173)))\"},children:\"Heading 4\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18ghsqo\",\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"CsLH8Qesl\",children:[/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+63.2+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(VcgeyAA7s)},className:\"framer-1m4vx87\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"r93fRrhky\",style:{borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3,boxShadow:\"-0.39809593676181976px 0.39809593676181976px 0.5629926728941875px -0.9375px rgba(0, 0, 0, 0.18252), -1.207253071552259px 1.207253071552259px 1.7073136670057811px -1.875px rgba(0, 0, 0, 0.17241), -3.1913267607422307px 3.1913267607422307px 4.51321758700586px -2.8125px rgba(0, 0, 0, 0.14761), -10px 10px 14.142135623730951px -3.75px rgba(0, 0, 0, 0.0625)\",filter:\"brightness(1)\",WebkitFilter:\"brightness(1)\"},transformTemplate:transformTemplate1,...addPropertyOverrides({ipq8iSI3x:{\"data-highlight\":true,onTap:onTap10or46e},lbpFEThlt:{\"data-highlight\":true,onTap:onTapwg6hg3}},baseVariant,gestureVariant),children:[pQpbijn0v&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yynvy6-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"L0pnGF0Mx-container\",nodeId:\"L0pnGF0Mx\",rendersWithMotion:true,scopeId:\"Ad_5uH6Kz\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:1e3,bottomLeftRadius:1e3,bottomRightRadius:1e3,controls:false,height:\"100%\",id:\"L0pnGF0Mx\",isMixedBorderRadius:false,layoutId:\"L0pnGF0Mx\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:toImageSrc(VcgeyAA7s),posterEnabled:true,srcFile:bJWjNu8Qt,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:1e3,topRightRadius:1e3,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k7k5jb\",\"data-framer-name\":\"wrapText\",layoutDependency:layoutDependency,layoutId:\"KWMKtsC24\",style:{\"--1r9fksr\":ua8YzA3KS,backgroundColor:\"rgba(0, 0, 0, 0.75)\",opacity:0},variants:{\"MQIW0LIvb-hover\":{opacity:1},io5WV7Y33:{opacity:1},lbpFEThlt:{opacity:1}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ps7nay\",\"data-framer-name\":\"Spacer\",layoutDependency:layoutDependency,layoutId:\"SqEKLtAon\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11pxi0k\",\"data-styles-preset\":\"bkHrKTyRl\",style:{\"--framer-text-alignment\":\"center\"},children:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.\"})}),className:\"framer-pxe215\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xYussWAva\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:yEogJwGkQ,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-20f48d\",\"data-framer-name\":\"Spacer\",layoutDependency:layoutDependency,layoutId:\"JFWjD7SUX\"})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1krgza6\",\"data-framer-name\":\"circleNumber\",layoutDependency:layoutDependency,layoutId:\"UptvqrB33\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"inset -0.39809593676181976px 0.39809593676181976px 0.5629926728941875px -0.9375px rgba(0, 0, 0, 0.18252), inset -1.207253071552259px 1.207253071552259px 1.7073136670057811px -1.875px rgba(0, 0, 0, 0.17241), inset -3.1913267607422307px 3.1913267607422307px 4.51321758700586px -2.8125px rgba(0, 0, 0, 0.14761), inset -10px 10px 14.142135623730951px -3.75px rgba(0, 0, 0, 0.0625)\"},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:z3yDgCezg,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-ixg2j2\",\"data-styles-preset\":\"CnwjP9y6P\",children:\"0\"})}),className:\"framer-x3tu0v\",\"data-framer-name\":\"6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pn2U8ApbD\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:UazOgZka0,transformTemplate:transformTemplate2,variants:{\"MQIW0LIvb-hover\":{\"--extracted-1lwpl3i\":\"var(--token-ce496639-0b3e-4c1c-ac97-857bb63eb46e, rgb(118, 168, 173))\"},lbpFEThlt:{\"--extracted-1lwpl3i\":\"var(--token-ce496639-0b3e-4c1c-ac97-857bb63eb46e, rgb(118, 168, 173))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"MQIW0LIvb-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-ixg2j2\",\"data-styles-preset\":\"CnwjP9y6P\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-ce496639-0b3e-4c1c-ac97-857bb63eb46e, rgb(118, 168, 173)))\"},children:\"0\"})})},ipq8iSI3x:{__framer__animate:{transition:transition4},__framer__targets:undefined},lbpFEThlt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-ixg2j2\",\"data-styles-preset\":\"CnwjP9y6P\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-ce496639-0b3e-4c1c-ac97-857bb63eb46e, rgb(118, 168, 173)))\"},children:\"0\"})})}},baseVariant,gestureVariant)})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xaOf5.framer-11ep6pz, .framer-xaOf5 .framer-11ep6pz { display: block; }\",\".framer-xaOf5.framer-osafur { align-content: flex-end; align-items: flex-end; cursor: default; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 260px; }\",\".framer-xaOf5 .framer-9upyu6 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-xaOf5 .framer-12eyd0g { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-xaOf5 .framer-18ghsqo { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); overflow: visible; pointer-events: none; position: relative; width: 100%; }\",\".framer-xaOf5 .framer-1m4vx87 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); left: 50%; overflow: hidden; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-xaOf5 .framer-yynvy6-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-xaOf5 .framer-k7k5jb { align-content: flex-end; align-items: flex-end; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: calc(max(0, var(--1r9fksr)) * 1px); justify-content: center; left: 0px; overflow: visible; padding: 24px 0px 36px 0px; pointer-events: none; position: absolute; right: 0px; top: 0px; }\",\".framer-xaOf5 .framer-1ps7nay, .framer-xaOf5 .framer-20f48d { flex: none; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-xaOf5 .framer-pxe215 { flex: 1 0 0px; height: 68%; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-xaOf5 .framer-1krgza6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); left: 50%; overflow: hidden; position: absolute; top: 23%; width: 22%; will-change: var(--framer-will-change-override, transform); }\",\".framer-xaOf5 .framer-x3tu0v { flex: none; height: auto; left: 49%; position: absolute; top: 49%; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xaOf5.framer-osafur, .framer-xaOf5 .framer-9upyu6, .framer-xaOf5 .framer-k7k5jb { gap: 0px; } .framer-xaOf5.framer-osafur > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-xaOf5.framer-osafur > :first-child, .framer-xaOf5 .framer-9upyu6 > :first-child { margin-top: 0px; } .framer-xaOf5.framer-osafur > :last-child, .framer-xaOf5 .framer-9upyu6 > :last-child { margin-bottom: 0px; } .framer-xaOf5 .framer-9upyu6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-xaOf5 .framer-k7k5jb > * { margin: 0px; margin-left: calc(calc(max(0, var(--1r9fksr)) * 1px) / 2); margin-right: calc(calc(max(0, var(--1r9fksr)) * 1px) / 2); } .framer-xaOf5 .framer-k7k5jb > :first-child { margin-left: 0px; } .framer-xaOf5 .framer-k7k5jb > :last-child { margin-right: 0px; } }\",\".framer-xaOf5.framer-v-l44lj1 .framer-1m4vx87, .framer-xaOf5.framer-v-1omjjje .framer-1m4vx87 { cursor: pointer; pointer-events: auto; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 323\n * @framerIntrinsicWidth 260\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ipq8iSI3x\":{\"layout\":[\"fixed\",\"auto\"]},\"lbpFEThlt\":{\"layout\":[\"fixed\",\"auto\"]},\"io5WV7Y33\":{\"layout\":[\"fixed\",\"auto\"]},\"G9XR2PvnO\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"vYdXm5VMy\":\"title\",\"UazOgZka0\":\"number\",\"z3yDgCezg\":\"scrollSection\",\"pQpbijn0v\":\"video\",\"bJWjNu8Qt\":\"file\",\"VcgeyAA7s\":\"image\",\"yEogJwGkQ\":\"caption\",\"ua8YzA3KS\":\"gap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAd_5uH6Kz=withCSS(Component,css,\"framer-xaOf5\");export default FramerAd_5uH6Kz;FramerAd_5uH6Kz.displayName=\"How It Works / CardHIW\";FramerAd_5uH6Kz.defaultProps={height:323,width:260};addPropertyControls(FramerAd_5uH6Kz,{variant:{options:[\"MQIW0LIvb\",\"ipq8iSI3x\",\"lbpFEThlt\",\"io5WV7Y33\"],optionTitles:[\"DesktopAndUp\",\"MobileAndTablet\",\"MobileAndTabletHover\",\"Preview\"],title:\"Variant\",type:ControlType.Enum},vYdXm5VMy:{defaultValue:\"Heading 4\",displayTextArea:false,title:\"Title\",type:ControlType.String},UazOgZka0:{defaultValue:\"0\",displayTextArea:false,title:\"Number\",type:ControlType.String},z3yDgCezg:{title:\"Scroll Section\",type:ControlType.ScrollSectionRef},pQpbijn0v:{defaultValue:true,title:\"Video\",type:ControlType.Boolean},bJWjNu8Qt:VideoControls?.[\"srcFile\"]&&{...VideoControls[\"srcFile\"],__defaultAssetReference:\"\",description:undefined,hidden:undefined,title:\"File\"},VcgeyAA7s:{title:\"Image\",type:ControlType.ResponsiveImage},yEogJwGkQ:{defaultValue:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.\",displayTextArea:true,title:\"Caption\",type:ControlType.String},ua8YzA3KS:{defaultValue:0,min:0,title:\"Gap\",type:ControlType.Number}});addFonts(FramerAd_5uH6Kz,[{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\"}]},...VideoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAd_5uH6Kz\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"vYdXm5VMy\\\":\\\"title\\\",\\\"UazOgZka0\\\":\\\"number\\\",\\\"z3yDgCezg\\\":\\\"scrollSection\\\",\\\"pQpbijn0v\\\":\\\"video\\\",\\\"bJWjNu8Qt\\\":\\\"file\\\",\\\"VcgeyAA7s\\\":\\\"image\\\",\\\"yEogJwGkQ\\\":\\\"caption\\\",\\\"ua8YzA3KS\\\":\\\"gap\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"260\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ipq8iSI3x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lbpFEThlt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"io5WV7Y33\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"G9XR2PvnO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"323\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ad_5uH6Kz.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;startTransition(()=>setSize({parent:parentLength,children:childrenLength}));}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (f73129a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={ADYPAtfRX:{hover:true},AHQdtZ1qE:{hover:true},b81pcRKfl:{hover:true},BSKyCugOP:{hover:true},c2y5vG7nA:{hover:true},dntEVVRLK:{hover:true},EjRepF6MQ:{hover:true},f61i7F4IS:{hover:true},HK_HKxaIB:{hover:true},hWFY55TDX:{hover:true},JEhLFNqCZ:{hover:true},jejz1zfo7:{hover:true},JGzwqgwmo:{hover:true},kaPBi6FFk:{hover:true},km9VwZC0F:{hover:true},kpkFaVJB7:{hover:true},lBI_pSfQ1:{hover:true},lQLnACsCl:{hover:true},NarBelqbh:{hover:true},nk1KJK9hd:{hover:true},nqqFAMag1:{hover:true},oFLNKtufC:{hover:true},oMrHcjteW:{hover:true},oxwnoDuIg:{hover:true},p9f2KaRlJ:{hover:true},PeVhcG8vA:{hover:true},pjnzn9lgP:{hover:true},Pwc0GbQnE:{hover:true},PZfNz_Wy9:{hover:true},q3fu3ehFw:{hover:true},qBU_SoTeN:{hover:true},t_wGn4F4c:{hover:true},tT3LW9R9C:{hover:true},viJ9p9vtE:{hover:true},WgdiwHJSb:{hover:true},WssrJe2fU:{hover:true},Y8DfaaLOW:{hover:true},znaXvoNVz:{hover:true}};const cycleOrder=[\"dntEVVRLK\",\"nqqFAMag1\",\"viJ9p9vtE\",\"PZfNz_Wy9\",\"JGzwqgwmo\",\"kpkFaVJB7\",\"ADYPAtfRX\",\"PeVhcG8vA\",\"nk1KJK9hd\",\"pjnzn9lgP\",\"oxwnoDuIg\",\"WssrJe2fU\",\"b81pcRKfl\",\"oMrHcjteW\",\"c2y5vG7nA\",\"BSKyCugOP\",\"p9f2KaRlJ\",\"EjRepF6MQ\",\"HK_HKxaIB\",\"jejz1zfo7\",\"hWFY55TDX\",\"km9VwZC0F\",\"f61i7F4IS\",\"WgdiwHJSb\",\"kaPBi6FFk\",\"NarBelqbh\",\"qBU_SoTeN\",\"lQLnACsCl\",\"AHQdtZ1qE\",\"Y8DfaaLOW\",\"JEhLFNqCZ\",\"Pwc0GbQnE\",\"q3fu3ehFw\",\"t_wGn4F4c\",\"znaXvoNVz\",\"tT3LW9R9C\",\"lBI_pSfQ1\",\"oFLNKtufC\"];const serializationHash=\"framer-4JI0w\";const variantClassNames={ADYPAtfRX:\"framer-v-1hk1brp\",AHQdtZ1qE:\"framer-v-132q6dh\",b81pcRKfl:\"framer-v-71br60\",BSKyCugOP:\"framer-v-17voqu5\",c2y5vG7nA:\"framer-v-8gypkq\",dntEVVRLK:\"framer-v-1d2qx6f\",EjRepF6MQ:\"framer-v-1d9wwdi\",f61i7F4IS:\"framer-v-1s7w9ti\",HK_HKxaIB:\"framer-v-3uk9wx\",hWFY55TDX:\"framer-v-1ere0ou\",JEhLFNqCZ:\"framer-v-p8jzs7\",jejz1zfo7:\"framer-v-1y4mb00\",JGzwqgwmo:\"framer-v-opa32l\",kaPBi6FFk:\"framer-v-1qnihg4\",km9VwZC0F:\"framer-v-1fu74x0\",kpkFaVJB7:\"framer-v-3ty2v2\",lBI_pSfQ1:\"framer-v-12w2h66\",lQLnACsCl:\"framer-v-13u88fq\",NarBelqbh:\"framer-v-jme9vb\",nk1KJK9hd:\"framer-v-hfck4k\",nqqFAMag1:\"framer-v-fu0sgf\",oFLNKtufC:\"framer-v-1eu3soq\",oMrHcjteW:\"framer-v-u0k00k\",oxwnoDuIg:\"framer-v-11wnw9\",p9f2KaRlJ:\"framer-v-z547s0\",PeVhcG8vA:\"framer-v-x4ocq1\",pjnzn9lgP:\"framer-v-v57ibo\",Pwc0GbQnE:\"framer-v-1mwyxf9\",PZfNz_Wy9:\"framer-v-b4yf7i\",q3fu3ehFw:\"framer-v-ttg9dy\",qBU_SoTeN:\"framer-v-toc1d5\",t_wGn4F4c:\"framer-v-162oop4\",tT3LW9R9C:\"framer-v-1wh75ki\",viJ9p9vtE:\"framer-v-3jf63u\",WgdiwHJSb:\"framer-v-1wk00iq\",WssrJe2fU:\"framer-v-mv87of\",Y8DfaaLOW:\"framer-v-e1fxet\",znaXvoNVz:\"framer-v-mo5dkq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Big Agnes\":\"JGzwqgwmo\",\"Default-primary\":\"dntEVVRLK\",\"Ron Herman\":\"JEhLFNqCZ\",\"Stone Island\":\"t_wGn4F4c\",Albion:\"nqqFAMag1\",Allbirds:\"viJ9p9vtE\",BassProShops:\"PZfNz_Wy9\",Brixton:\"ADYPAtfRX\",Burton:\"kpkFaVJB7\",Carver:\"PeVhcG8vA\",Costa:\"nk1KJK9hd\",Dakine:\"pjnzn9lgP\",EddieBauer:\"oxwnoDuIg\",FCE:\"WssrJe2fU\",Finisterre:\"b81pcRKfl\",Futures:\"oMrHcjteW\",Jenga:\"c2y5vG7nA\",Jottnar:\"BSKyCugOP\",LLBean:\"p9f2KaRlJ\",Macpac:\"EjRepF6MQ\",Montane:\"HK_HKxaIB\",MountainHardwear:\"jejz1zfo7\",Nike:\"hWFY55TDX\",Norrona:\"km9VwZC0F\",Orvis:\"f61i7F4IS\",Outerknown:\"WgdiwHJSb\",Passenger:\"oFLNKtufC\",Patagonia:\"kaPBi6FFk\",Pertex:\"NarBelqbh\",Prana:\"qBU_SoTeN\",Quiksilver:\"lQLnACsCl\",Rei:\"AHQdtZ1qE\",Rivian:\"Y8DfaaLOW\",Silvini:\"Pwc0GbQnE\",Smartwool:\"q3fu3ehFw\",Treck:\"znaXvoNVz\",Vaude:\"tT3LW9R9C\",Yeti:\"lBI_pSfQ1\"};const getProps=({cursor,height,id,invert,link,newTab,width,...props})=>{return{...props,awHrxY1kW:link??props.awHrxY1kW,DoAgzoqNm:cursor??props.DoAgzoqNm??\"default\",HRrsMeC2A:newTab??props.HRrsMeC2A,variant:humanReadableVariantMap[props.variant]??props.variant??\"dntEVVRLK\",ZXtiDeupJ:invert??props.ZXtiDeupJ??100};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,awHrxY1kW,DoAgzoqNm,ZXtiDeupJ,HRrsMeC2A,awHrxY1kWyJ5F9iX7E,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dntEVVRLK\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:awHrxY1kW,motionChild:true,nodeId:\"dntEVVRLK\",openInNewTab:HRrsMeC2A,scopeId:\"ZyMHDP5df\",smoothScroll:true,...addPropertyOverrides({\"kaPBi6FFk-hover\":{href:awHrxY1kWyJ5F9iX7E}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1d2qx6f\",className,classNames)} framer-16m55k8`,\"data-framer-name\":\"Default-primary\",layoutDependency:layoutDependency,layoutId:\"dntEVVRLK\",ref:refBinding,style:{\"--10euira\":DoAgzoqNm,filter:`invert(${parseFloat(ZXtiDeupJ)/100})`,opacity:1,WebkitFilter:`invert(${parseFloat(ZXtiDeupJ)/100})`,...style},variants:{\"ADYPAtfRX-hover\":{opacity:.6},\"AHQdtZ1qE-hover\":{opacity:.6},\"b81pcRKfl-hover\":{opacity:.6},\"BSKyCugOP-hover\":{opacity:.6},\"c2y5vG7nA-hover\":{opacity:.6},\"dntEVVRLK-hover\":{opacity:.6},\"EjRepF6MQ-hover\":{opacity:.6},\"f61i7F4IS-hover\":{opacity:.6},\"HK_HKxaIB-hover\":{opacity:.6},\"hWFY55TDX-hover\":{opacity:.6},\"JEhLFNqCZ-hover\":{opacity:.6},\"jejz1zfo7-hover\":{opacity:.6},\"JGzwqgwmo-hover\":{opacity:.6},\"kaPBi6FFk-hover\":{opacity:.6},\"km9VwZC0F-hover\":{opacity:.6},\"kpkFaVJB7-hover\":{opacity:.6},\"lBI_pSfQ1-hover\":{opacity:.6},\"lQLnACsCl-hover\":{opacity:.6},\"NarBelqbh-hover\":{opacity:.6},\"nk1KJK9hd-hover\":{opacity:.6},\"nqqFAMag1-hover\":{opacity:.6},\"oFLNKtufC-hover\":{opacity:.6},\"oMrHcjteW-hover\":{opacity:.6},\"oxwnoDuIg-hover\":{opacity:.6},\"p9f2KaRlJ-hover\":{opacity:.6},\"PeVhcG8vA-hover\":{opacity:.6},\"pjnzn9lgP-hover\":{opacity:.6},\"Pwc0GbQnE-hover\":{opacity:.6},\"PZfNz_Wy9-hover\":{opacity:.6},\"q3fu3ehFw-hover\":{opacity:.6},\"qBU_SoTeN-hover\":{opacity:.6},\"t_wGn4F4c-hover\":{opacity:.6},\"tT3LW9R9C-hover\":{opacity:.6},\"viJ9p9vtE-hover\":{opacity:.6},\"WgdiwHJSb-hover\":{opacity:.6},\"WssrJe2fU-hover\":{opacity:.6},\"Y8DfaaLOW-hover\":{opacity:.6},\"znaXvoNVz-hover\":{opacity:.6}},...addPropertyOverrides({\"ADYPAtfRX-hover\":{\"data-framer-name\":undefined},\"AHQdtZ1qE-hover\":{\"data-framer-name\":undefined},\"b81pcRKfl-hover\":{\"data-framer-name\":undefined},\"BSKyCugOP-hover\":{\"data-framer-name\":undefined},\"c2y5vG7nA-hover\":{\"data-framer-name\":undefined},\"dntEVVRLK-hover\":{\"data-framer-name\":undefined},\"EjRepF6MQ-hover\":{\"data-framer-name\":undefined},\"f61i7F4IS-hover\":{\"data-framer-name\":undefined},\"HK_HKxaIB-hover\":{\"data-framer-name\":undefined},\"hWFY55TDX-hover\":{\"data-framer-name\":undefined},\"JEhLFNqCZ-hover\":{\"data-framer-name\":undefined},\"jejz1zfo7-hover\":{\"data-framer-name\":undefined},\"JGzwqgwmo-hover\":{\"data-framer-name\":undefined},\"kaPBi6FFk-hover\":{\"data-framer-name\":undefined},\"km9VwZC0F-hover\":{\"data-framer-name\":undefined},\"kpkFaVJB7-hover\":{\"data-framer-name\":undefined},\"lBI_pSfQ1-hover\":{\"data-framer-name\":undefined},\"lQLnACsCl-hover\":{\"data-framer-name\":undefined},\"NarBelqbh-hover\":{\"data-framer-name\":undefined},\"nk1KJK9hd-hover\":{\"data-framer-name\":undefined},\"nqqFAMag1-hover\":{\"data-framer-name\":undefined},\"oFLNKtufC-hover\":{\"data-framer-name\":undefined},\"oMrHcjteW-hover\":{\"data-framer-name\":undefined},\"oxwnoDuIg-hover\":{\"data-framer-name\":undefined},\"p9f2KaRlJ-hover\":{\"data-framer-name\":undefined},\"PeVhcG8vA-hover\":{\"data-framer-name\":undefined},\"pjnzn9lgP-hover\":{\"data-framer-name\":undefined},\"Pwc0GbQnE-hover\":{\"data-framer-name\":undefined},\"PZfNz_Wy9-hover\":{\"data-framer-name\":undefined},\"q3fu3ehFw-hover\":{\"data-framer-name\":undefined},\"qBU_SoTeN-hover\":{\"data-framer-name\":undefined},\"t_wGn4F4c-hover\":{\"data-framer-name\":undefined},\"tT3LW9R9C-hover\":{\"data-framer-name\":undefined},\"viJ9p9vtE-hover\":{\"data-framer-name\":undefined},\"WgdiwHJSb-hover\":{\"data-framer-name\":undefined},\"WssrJe2fU-hover\":{\"data-framer-name\":undefined},\"Y8DfaaLOW-hover\":{\"data-framer-name\":undefined},\"znaXvoNVz-hover\":{\"data-framer-name\":undefined},ADYPAtfRX:{\"data-framer-name\":\"Brixton\"},AHQdtZ1qE:{\"data-framer-name\":\"Rei\"},b81pcRKfl:{\"data-framer-name\":\"Finisterre\"},BSKyCugOP:{\"data-framer-name\":\"Jottnar\"},c2y5vG7nA:{\"data-framer-name\":\"Jenga\"},EjRepF6MQ:{\"data-framer-name\":\"Macpac\"},f61i7F4IS:{\"data-framer-name\":\"Orvis\"},HK_HKxaIB:{\"data-framer-name\":\"Montane\"},hWFY55TDX:{\"data-framer-name\":\"Nike\"},JEhLFNqCZ:{\"data-framer-name\":\"Ron Herman\"},jejz1zfo7:{\"data-framer-name\":\"MountainHardwear\"},JGzwqgwmo:{\"data-framer-name\":\"Big Agnes\"},kaPBi6FFk:{\"data-framer-name\":\"Patagonia\"},km9VwZC0F:{\"data-framer-name\":\"Norrona\"},kpkFaVJB7:{\"data-framer-name\":\"Burton\"},lBI_pSfQ1:{\"data-framer-name\":\"Yeti\"},lQLnACsCl:{\"data-framer-name\":\"Quiksilver\"},NarBelqbh:{\"data-framer-name\":\"Pertex\"},nk1KJK9hd:{\"data-framer-name\":\"Costa\"},nqqFAMag1:{\"data-framer-name\":\"Albion\"},oFLNKtufC:{\"data-framer-name\":\"Passenger\"},oMrHcjteW:{\"data-framer-name\":\"Futures\"},oxwnoDuIg:{\"data-framer-name\":\"EddieBauer\"},p9f2KaRlJ:{\"data-framer-name\":\"LLBean\"},PeVhcG8vA:{\"data-framer-name\":\"Carver\"},pjnzn9lgP:{\"data-framer-name\":\"Dakine\"},Pwc0GbQnE:{\"data-framer-name\":\"Silvini\"},PZfNz_Wy9:{\"data-framer-name\":\"BassProShops\"},q3fu3ehFw:{\"data-framer-name\":\"Smartwool\"},qBU_SoTeN:{\"data-framer-name\":\"Prana\"},t_wGn4F4c:{\"data-framer-name\":\"Stone Island\"},tT3LW9R9C:{\"data-framer-name\":\"Vaude\"},viJ9p9vtE:{\"data-framer-name\":\"Allbirds\"},WgdiwHJSb:{\"data-framer-name\":\"Outerknown\"},WssrJe2fU:{\"data-framer-name\":\"FCE\"},Y8DfaaLOW:{\"data-framer-name\":\"Rivian\"},znaXvoNVz:{\"data-framer-name\":\"Treck\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:25,pixelWidth:49,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PAxlzoK9GOZISkFCj7AaNO1zQRU.svg\"},className:\"framer-1r4l6n3\",\"data-framer-name\":\"imgLogo\",layoutDependency:layoutDependency,layoutId:\"t9C_zxu0w\",...addPropertyOverrides({ADYPAtfRX:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:224,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0xXZqPCPCUs4Jxc6z1NL9RPTJ0.svg\"}},AHQdtZ1qE:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:70,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dPvwIT3Rx68RpKbegOXISAXi6SM.svg\"}},b81pcRKfl:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:226,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JC1TBYr1y5y4hhEr8ME690zFU.svg\"}},BSKyCugOP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:91,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/jlKEAdnsK0F932wP1mV3SY9bpc.svg\"}},c2y5vG7nA:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:62,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cbK3dfuZbWnkysuClQ0tCkJzkg.svg\"}},EjRepF6MQ:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:45,pixelWidth:266,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vZwBjhpLWTUevZvT6r34GQNokBw.svg\"}},f61i7F4IS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:261,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/E8tUHNpcTQn0QKymCHZgn1HWiFg.svg\"}},HK_HKxaIB:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:239,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xwtL4aYVXpsajIjRkG7HuXEIw.svg\"}},hWFY55TDX:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:131,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/36l7nCTav2ohBfOCXZqLLH0Jzw.svg\"}},JEhLFNqCZ:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/BzF6vEMdoMakrMuVeYeTYl5KFCw.svg\"}},jejz1zfo7:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:88,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Jm87ddWQKOX7NzARS6ZyVhKM9LI.svg\"}},JGzwqgwmo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:44,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/pVIwWBe8W8NvHOfZm8525l89KH8.svg\"}},kaPBi6FFk:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:45,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/E6cHOMhay9etRkZNZKmci2wPYg4.svg\"}},km9VwZC0F:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:210,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UTjRH1NAm20KIZVETcsAEhHxXRE.svg\"}},kpkFaVJB7:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:88,pixelWidth:89,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8Rv3kG6D3d7sYG49YxpvDrKBaQ.svg\"}},lBI_pSfQ1:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:162,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mhA2cXX0Id5tMLLfLNP6a5vO4o.svg\"}},lQLnACsCl:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:102,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/I4SxbIyxQtlXWktlJ8IWUI8nONc.svg\"}},NarBelqbh:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:319,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/btiF4vP83ka2AtxdOQB50qByCrs.svg\"}},nk1KJK9hd:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:45,pixelWidth:241,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ydYFmris02VrqFZDJOSHN6CG3MA.svg\"}},nqqFAMag1:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:88,pixelWidth:80,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/E17tiam7dHFtl7DflvkJyDzARc.svg\"}},oFLNKtufC:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:281,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/u4Ql6FSeBA3DVqkMyZVZhUNkAm0.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/u4Ql6FSeBA3DVqkMyZVZhUNkAm0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/u4Ql6FSeBA3DVqkMyZVZhUNkAm0.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/u4Ql6FSeBA3DVqkMyZVZhUNkAm0.svg 2000w\"}},oMrHcjteW:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:200,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MYM4jBKH7LgIXkrXeXBHYDP8mo.svg\"}},oxwnoDuIg:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Y9bzRMVCiT8OmvpsLqhIWdKE.svg\"}},p9f2KaRlJ:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:216,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nJvyyVfMODsBdStUC4aKfbOBHFo.svg\"}},PeVhcG8vA:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:200,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SM4p6XAzbDef4Ks216eFrBqBiz0.svg\"}},pjnzn9lgP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:401,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/38Gir7Au7hFVARxzozbvUTw3CU.svg\"}},Pwc0GbQnE:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:332,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IySbrbKZz1xwpyvHDiL138UQ8Y.svg\"}},PZfNz_Wy9:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:25,pixelWidth:38,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/lRaKUSbSZcgw9s8abupfurREc.svg\"}},q3fu3ehFw:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:164,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wHRrer7xwQFq3RcmQTQs2eCQfc.svg\"}},qBU_SoTeN:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:188,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YW2CDT0oVhiHxZroEP3JpF7EwM.svg\"}},t_wGn4F4c:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:123,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Gq3tI1p2YUZTSjPA01zWB9yF1A.svg\"}},tT3LW9R9C:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:277,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/euz04ccw0U0grmn1tlQAoiEq5c.svg\"}},viJ9p9vtE:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:139,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/i7B768eqmYhCt8X2P0Hz1Xwbs94.svg\"}},WgdiwHJSb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:45,pixelWidth:422,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4O3igkXE94oOh2gwSqw7MZgMc.svg\"}},WssrJe2fU:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:56,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hiP6jhOi9P3khvv3a55JqzXhoM.svg\"}},Y8DfaaLOW:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:223,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/y7K5SOim4rKEoTnaefo5Vpj3Nh0.svg\"}},znaXvoNVz:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:44,pixelWidth:371,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YxALaw39JwVxUnNgSSs3t5x24.svg\"}}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4JI0w.framer-16m55k8, .framer-4JI0w .framer-16m55k8 { display: block; }\",\".framer-4JI0w.framer-1d2qx6f { cursor: var(--10euira); gap: 10px; height: 44px; overflow: visible; position: relative; text-decoration: none; width: 86px; }\",\".framer-4JI0w .framer-1r4l6n3 { bottom: 0px; cursor: default; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-4JI0w.framer-v-fu0sgf.framer-1d2qx6f { aspect-ratio: 0.9090909090909091 / 1; cursor: pointer; height: var(--framer-aspect-ratio-supported, 88px); width: 80px; }\",\".framer-4JI0w.framer-v-3jf63u.framer-1d2qx6f { aspect-ratio: 3 / 1; cursor: pointer; height: var(--framer-aspect-ratio-supported, 44px); width: 132px; }\",\".framer-4JI0w.framer-v-b4yf7i.framer-1d2qx6f { aspect-ratio: 1.5454545454545454 / 1; cursor: pointer; height: var(--framer-aspect-ratio-supported, 44px); width: 68px; }\",\".framer-4JI0w.framer-v-opa32l.framer-1d2qx6f { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 44px; }\",\".framer-4JI0w.framer-v-3ty2v2.framer-1d2qx6f { aspect-ratio: 1 / 1; cursor: pointer; height: var(--framer-aspect-ratio-supported, 88px); width: 88px; }\",\".framer-4JI0w.framer-v-1hk1brp.framer-1d2qx6f { aspect-ratio: 5.090909090909091 / 1; cursor: pointer; height: var(--framer-aspect-ratio-supported, 44px); width: 224px; }\",\".framer-4JI0w.framer-v-x4ocq1.framer-1d2qx6f { aspect-ratio: 4.545454545454546 / 1; cursor: pointer; height: var(--framer-aspect-ratio-supported, 44px); width: 200px; }\",\".framer-4JI0w.framer-v-hfck4k.framer-1d2qx6f { aspect-ratio: 5.454545454545454 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 240px; }\",\".framer-4JI0w.framer-v-v57ibo.framer-1d2qx6f { aspect-ratio: 9.090909090909092 / 1; cursor: pointer; height: var(--framer-aspect-ratio-supported, 44px); width: 400px; }\",\".framer-4JI0w.framer-v-11wnw9.framer-1d2qx6f { aspect-ratio: 5.409090909090909 / 1; cursor: pointer; height: var(--framer-aspect-ratio-supported, 44px); width: 238px; }\",\".framer-4JI0w.framer-v-mv87of.framer-1d2qx6f { aspect-ratio: 1.2727272727272727 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 56px; }\",\".framer-4JI0w.framer-v-71br60.framer-1d2qx6f { aspect-ratio: 5.136363636363637 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 226px; }\",\".framer-4JI0w.framer-v-u0k00k.framer-1d2qx6f { aspect-ratio: 4.545454545454546 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 200px; }\",\".framer-4JI0w.framer-v-8gypkq.framer-1d2qx6f { aspect-ratio: 1.4090909090909092 / 1; height: var(--framer-aspect-ratio-supported, 88px); width: 124px; }\",\".framer-4JI0w.framer-v-17voqu5.framer-1d2qx6f { aspect-ratio: 2.0454545454545454 / 1; height: var(--framer-aspect-ratio-supported, 88px); width: 180px; }\",\".framer-4JI0w.framer-v-z547s0.framer-1d2qx6f { aspect-ratio: 4.909090909090909 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 216px; }\",\".framer-4JI0w.framer-v-1d9wwdi.framer-1d2qx6f { aspect-ratio: 6.045454545454546 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 266px; }\",\".framer-4JI0w.framer-v-3uk9wx.framer-1d2qx6f, .framer-4JI0w.framer-v-p8jzs7.framer-1d2qx6f { aspect-ratio: 5.409090909090909 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 238px; }\",\".framer-4JI0w.framer-v-1y4mb00.framer-1d2qx6f { aspect-ratio: 2 / 1; cursor: pointer; height: var(--framer-aspect-ratio-supported, 44px); width: 88px; }\",\".framer-4JI0w.framer-v-1ere0ou.framer-1d2qx6f { aspect-ratio: 2.9545454545454546 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 130px; }\",\".framer-4JI0w.framer-v-1fu74x0.framer-1d2qx6f { aspect-ratio: 4.7727272727272725 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 210px; }\",\".framer-4JI0w.framer-v-1s7w9ti.framer-1d2qx6f { aspect-ratio: 5.909090909090909 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 260px; }\",\".framer-4JI0w.framer-v-1wk00iq.framer-1d2qx6f { aspect-ratio: 9.590909090909092 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 422px; }\",\".framer-4JI0w.framer-v-1qnihg4.framer-1d2qx6f { aspect-ratio: 5.4 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 238px; }\",\".framer-4JI0w.framer-v-jme9vb.framer-1d2qx6f { aspect-ratio: 7.2272727272727275 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 318px; }\",\".framer-4JI0w.framer-v-toc1d5.framer-1d2qx6f { aspect-ratio: 4.2727272727272725 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 188px; }\",\".framer-4JI0w.framer-v-13u88fq.framer-1d2qx6f { aspect-ratio: 2.3181818181818183 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 102px; }\",\".framer-4JI0w.framer-v-132q6dh.framer-1d2qx6f { aspect-ratio: 1.5909090909090908 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 70px; }\",\".framer-4JI0w.framer-v-e1fxet.framer-1d2qx6f { aspect-ratio: 5.045454545454546 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 222px; }\",\".framer-4JI0w.framer-v-1mwyxf9.framer-1d2qx6f { aspect-ratio: 7.545454545454546 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 332px; }\",\".framer-4JI0w.framer-v-ttg9dy.framer-1d2qx6f { aspect-ratio: 3.727272727272727 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 164px; }\",\".framer-4JI0w.framer-v-162oop4.framer-1d2qx6f { aspect-ratio: 2.772727272727273 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 122px; }\",\".framer-4JI0w.framer-v-mo5dkq.framer-1d2qx6f { aspect-ratio: 8.409090909090908 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 370px; }\",\".framer-4JI0w.framer-v-1wh75ki.framer-1d2qx6f { aspect-ratio: 6.2727272727272725 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 276px; }\",\".framer-4JI0w.framer-v-12w2h66.framer-1d2qx6f { aspect-ratio: 3.6818181818181817 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 162px; }\",\".framer-4JI0w.framer-v-1eu3soq.framer-1d2qx6f { aspect-ratio: 7.090909090909091 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 312px; }\",\".framer-4JI0w.framer-v-1d2qx6f.hover.framer-1d2qx6f { aspect-ratio: 1.95 / 1; height: var(--framer-aspect-ratio-supported, 44px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 86\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"nqqFAMag1\":{\"layout\":[\"fixed\",\"fixed\"]},\"viJ9p9vtE\":{\"layout\":[\"fixed\",\"fixed\"]},\"PZfNz_Wy9\":{\"layout\":[\"fixed\",\"fixed\"]},\"JGzwqgwmo\":{\"layout\":[\"fixed\",\"fixed\"]},\"kpkFaVJB7\":{\"layout\":[\"fixed\",\"fixed\"]},\"ADYPAtfRX\":{\"layout\":[\"fixed\",\"fixed\"]},\"PeVhcG8vA\":{\"layout\":[\"fixed\",\"fixed\"]},\"nk1KJK9hd\":{\"layout\":[\"fixed\",\"fixed\"]},\"pjnzn9lgP\":{\"layout\":[\"fixed\",\"fixed\"]},\"oxwnoDuIg\":{\"layout\":[\"fixed\",\"fixed\"]},\"WssrJe2fU\":{\"layout\":[\"fixed\",\"fixed\"]},\"b81pcRKfl\":{\"layout\":[\"fixed\",\"fixed\"]},\"oMrHcjteW\":{\"layout\":[\"fixed\",\"fixed\"]},\"c2y5vG7nA\":{\"layout\":[\"fixed\",\"fixed\"]},\"BSKyCugOP\":{\"layout\":[\"fixed\",\"fixed\"]},\"p9f2KaRlJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"EjRepF6MQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"HK_HKxaIB\":{\"layout\":[\"fixed\",\"fixed\"]},\"jejz1zfo7\":{\"layout\":[\"fixed\",\"fixed\"]},\"hWFY55TDX\":{\"layout\":[\"fixed\",\"fixed\"]},\"km9VwZC0F\":{\"layout\":[\"fixed\",\"fixed\"]},\"f61i7F4IS\":{\"layout\":[\"fixed\",\"fixed\"]},\"WgdiwHJSb\":{\"layout\":[\"fixed\",\"fixed\"]},\"kaPBi6FFk\":{\"layout\":[\"fixed\",\"fixed\"]},\"NarBelqbh\":{\"layout\":[\"fixed\",\"fixed\"]},\"qBU_SoTeN\":{\"layout\":[\"fixed\",\"fixed\"]},\"lQLnACsCl\":{\"layout\":[\"fixed\",\"fixed\"]},\"AHQdtZ1qE\":{\"layout\":[\"fixed\",\"fixed\"]},\"Y8DfaaLOW\":{\"layout\":[\"fixed\",\"fixed\"]},\"JEhLFNqCZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"Pwc0GbQnE\":{\"layout\":[\"fixed\",\"fixed\"]},\"q3fu3ehFw\":{\"layout\":[\"fixed\",\"fixed\"]},\"t_wGn4F4c\":{\"layout\":[\"fixed\",\"fixed\"]},\"znaXvoNVz\":{\"layout\":[\"fixed\",\"fixed\"]},\"tT3LW9R9C\":{\"layout\":[\"fixed\",\"fixed\"]},\"lBI_pSfQ1\":{\"layout\":[\"fixed\",\"fixed\"]},\"oFLNKtufC\":{\"layout\":[\"fixed\",\"fixed\"]},\"P2QMPw9L_\":{\"layout\":[\"fixed\",\"fixed\"]},\"VCfrV2qle\":{\"layout\":[\"fixed\",\"fixed\"]},\"gTcC5xuE1\":{\"layout\":[\"fixed\",\"fixed\"]},\"GlCUxcglA\":{\"layout\":[\"fixed\",\"fixed\"]},\"UsFberVjQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"t09kZ46Zu\":{\"layout\":[\"fixed\",\"fixed\"]},\"NhRzKUnsA\":{\"layout\":[\"fixed\",\"fixed\"]},\"mMaGNUqCT\":{\"layout\":[\"fixed\",\"fixed\"]},\"KQ2RTtHTD\":{\"layout\":[\"fixed\",\"fixed\"]},\"Pav0Me2dz\":{\"layout\":[\"fixed\",\"fixed\"]},\"uVMkZwlcl\":{\"layout\":[\"fixed\",\"fixed\"]},\"If6FQQI2o\":{\"layout\":[\"fixed\",\"fixed\"]},\"IU7vzaJVS\":{\"layout\":[\"fixed\",\"fixed\"]},\"sr0zLyIkD\":{\"layout\":[\"fixed\",\"fixed\"]},\"XSsdE_uF0\":{\"layout\":[\"fixed\",\"fixed\"]},\"yiAJJhIJ2\":{\"layout\":[\"fixed\",\"fixed\"]},\"dVuRRj4M9\":{\"layout\":[\"fixed\",\"fixed\"]},\"PUTWR4RU6\":{\"layout\":[\"fixed\",\"fixed\"]},\"Gx1gbLqSe\":{\"layout\":[\"fixed\",\"fixed\"]},\"Si8cO5XBv\":{\"layout\":[\"fixed\",\"fixed\"]},\"VBSiBfnyv\":{\"layout\":[\"fixed\",\"fixed\"]},\"MhQfOnQs9\":{\"layout\":[\"fixed\",\"fixed\"]},\"yaC_qJxKg\":{\"layout\":[\"fixed\",\"fixed\"]},\"EgizKYBte\":{\"layout\":[\"fixed\",\"fixed\"]},\"udjjoIc8h\":{\"layout\":[\"fixed\",\"fixed\"]},\"Cvtnl8VET\":{\"layout\":[\"fixed\",\"fixed\"]},\"oILrzkrP6\":{\"layout\":[\"fixed\",\"fixed\"]},\"kDn0lfINT\":{\"layout\":[\"fixed\",\"fixed\"]},\"lVpqnK7kA\":{\"layout\":[\"fixed\",\"fixed\"]},\"q0UQUyKmV\":{\"layout\":[\"fixed\",\"fixed\"]},\"k_awwN_i7\":{\"layout\":[\"fixed\",\"fixed\"]},\"y8ZhBgZqz\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZrfJt77cl\":{\"layout\":[\"fixed\",\"fixed\"]},\"nmCTRRUnC\":{\"layout\":[\"fixed\",\"fixed\"]},\"EFjm3fU7R\":{\"layout\":[\"fixed\",\"fixed\"]},\"lSvuPK5Ma\":{\"layout\":[\"fixed\",\"fixed\"]},\"J31ENrc_d\":{\"layout\":[\"fixed\",\"fixed\"]},\"wUFaxsHDl\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"awHrxY1kW\":\"link\",\"DoAgzoqNm\":\"cursor\",\"ZXtiDeupJ\":\"invert\",\"HRrsMeC2A\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerZyMHDP5df=withCSS(Component,css,\"framer-4JI0w\");export default FramerZyMHDP5df;FramerZyMHDP5df.displayName=\"Brand Partners / IconBrands\";FramerZyMHDP5df.defaultProps={height:44,width:86};addPropertyControls(FramerZyMHDP5df,{variant:{options:[\"dntEVVRLK\",\"nqqFAMag1\",\"viJ9p9vtE\",\"PZfNz_Wy9\",\"JGzwqgwmo\",\"kpkFaVJB7\",\"ADYPAtfRX\",\"PeVhcG8vA\",\"nk1KJK9hd\",\"pjnzn9lgP\",\"oxwnoDuIg\",\"WssrJe2fU\",\"b81pcRKfl\",\"oMrHcjteW\",\"c2y5vG7nA\",\"BSKyCugOP\",\"p9f2KaRlJ\",\"EjRepF6MQ\",\"HK_HKxaIB\",\"jejz1zfo7\",\"hWFY55TDX\",\"km9VwZC0F\",\"f61i7F4IS\",\"WgdiwHJSb\",\"kaPBi6FFk\",\"NarBelqbh\",\"qBU_SoTeN\",\"lQLnACsCl\",\"AHQdtZ1qE\",\"Y8DfaaLOW\",\"JEhLFNqCZ\",\"Pwc0GbQnE\",\"q3fu3ehFw\",\"t_wGn4F4c\",\"znaXvoNVz\",\"tT3LW9R9C\",\"lBI_pSfQ1\",\"oFLNKtufC\"],optionTitles:[\"Default-primary\",\"Albion\",\"Allbirds\",\"BassProShops\",\"Big Agnes\",\"Burton\",\"Brixton\",\"Carver\",\"Costa\",\"Dakine\",\"EddieBauer\",\"FCE\",\"Finisterre\",\"Futures\",\"Jenga\",\"Jottnar\",\"LLBean\",\"Macpac\",\"Montane\",\"MountainHardwear\",\"Nike\",\"Norrona\",\"Orvis\",\"Outerknown\",\"Patagonia\",\"Pertex\",\"Prana\",\"Quiksilver\",\"Rei\",\"Rivian\",\"Ron Herman\",\"Silvini\",\"Smartwool\",\"Stone Island\",\"Treck\",\"Vaude\",\"Yeti\",\"Passenger\"],title:\"Variant\",type:ControlType.Enum},awHrxY1kW:{title:\"Link\",type:ControlType.Link},DoAgzoqNm:{defaultValue:\"default\",title:\"Cursor\",type:ControlType.Cursor},ZXtiDeupJ:{defaultValue:100,title:\"Invert\",type:ControlType.Number},HRrsMeC2A:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean}});addFonts(FramerZyMHDP5df,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZyMHDP5df\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nqqFAMag1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"viJ9p9vtE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PZfNz_Wy9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JGzwqgwmo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kpkFaVJB7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ADYPAtfRX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PeVhcG8vA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nk1KJK9hd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pjnzn9lgP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oxwnoDuIg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WssrJe2fU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"b81pcRKfl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oMrHcjteW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"c2y5vG7nA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BSKyCugOP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"p9f2KaRlJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EjRepF6MQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HK_HKxaIB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jejz1zfo7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hWFY55TDX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"km9VwZC0F\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"f61i7F4IS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WgdiwHJSb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kaPBi6FFk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NarBelqbh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qBU_SoTeN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lQLnACsCl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AHQdtZ1qE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Y8DfaaLOW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JEhLFNqCZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Pwc0GbQnE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"q3fu3ehFw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"t_wGn4F4c\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"znaXvoNVz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tT3LW9R9C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lBI_pSfQ1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oFLNKtufC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"P2QMPw9L_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VCfrV2qle\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gTcC5xuE1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GlCUxcglA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UsFberVjQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"t09kZ46Zu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NhRzKUnsA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mMaGNUqCT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KQ2RTtHTD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Pav0Me2dz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uVMkZwlcl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"If6FQQI2o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IU7vzaJVS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sr0zLyIkD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XSsdE_uF0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yiAJJhIJ2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dVuRRj4M9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PUTWR4RU6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Gx1gbLqSe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Si8cO5XBv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VBSiBfnyv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MhQfOnQs9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yaC_qJxKg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EgizKYBte\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"udjjoIc8h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Cvtnl8VET\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oILrzkrP6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kDn0lfINT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lVpqnK7kA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"q0UQUyKmV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"k_awwN_i7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"y8ZhBgZqz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZrfJt77cl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nmCTRRUnC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EFjm3fU7R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lSvuPK5Ma\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"J31ENrc_d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wUFaxsHDl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"86\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"44\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"awHrxY1kW\\\":\\\"link\\\",\\\"DoAgzoqNm\\\":\\\"cursor\\\",\\\"ZXtiDeupJ\\\":\\\"invert\\\",\\\"HRrsMeC2A\\\":\\\"newTab\\\"}\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZyMHDP5df.map", "// Generated by Framer (f73129a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import BrandPartnersIconBrands from\"https://framerusercontent.com/modules/kl2xgSRt1WWElXySYjOo/OpMiIDJ3UisHgGwsV69y/ZyMHDP5df.js\";const BrandPartnersIconBrandsFonts=getFonts(BrandPartnersIconBrands);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"nynSIc2pP\",\"J2_N2R4zo\"];const serializationHash=\"framer-rmbDj\";const variantClassNames={J2_N2R4zo:\"framer-v-jixqpm\",nynSIc2pP:\"framer-v-13kn22e\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={All:\"J2_N2R4zo\",Featured:\"nynSIc2pP\"};const getProps=({gap,height,id,width,...props})=>{return{...props,lgm1xLz3d:gap??props.lgm1xLz3d??160,variant:humanReadableVariantMap[props.variant]??props.variant??\"nynSIc2pP\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,lgm1xLz3d,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"nynSIc2pP\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"J2_N2R4zo\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"J2_N2R4zo\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-13kn22e\",className,classNames),\"data-framer-name\":\"Featured\",layoutDependency:layoutDependency,layoutId:\"nynSIc2pP\",ref:refBinding,style:{...style},...addPropertyOverrides({J2_N2R4zo:{\"data-framer-name\":\"All\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4u8n38-container\",\"data-framer-name\":\"tickerAll\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"DqRYvKUFh-container\",name:\"tickerAll\",nodeId:\"DqRYvKUFh\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:lgm1xLz3d,height:\"100%\",hoverFactor:0,id:\"DqRYvKUFh\",layoutId:\"DqRYvKUFh\",name:\"tickerAll\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-duhy5\",\"data-framer-name\":\"Albion\",layoutDependency:layoutDependency,layoutId:\"jf5tUiql0\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:\"77.44px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1yh0flm-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"xUgzPAgPf-container\",nodeId:\"xUgzPAgPf\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"xUgzPAgPf\",layoutId:\"xUgzPAgPf\",style:{height:\"100%\",width:\"100%\"},variant:\"nqqFAMag1\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-97zzkv\",\"data-framer-name\":\"AllBirds\",layoutDependency:layoutDependency,layoutId:\"eM0aRGtZx\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49.28,width:\"147.84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tt1v4r-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Bdoo19yz4-container\",nodeId:\"Bdoo19yz4\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"Bdoo19yz4\",layoutId:\"Bdoo19yz4\",style:{height:\"100%\",width:\"100%\"},variant:\"viJ9p9vtE\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sn8733\",\"data-framer-name\":\"BassProShops\",layoutDependency:layoutDependency,layoutId:\"ITvhTRbcq\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70.4,width:\"108.8px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1p2qlwh-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"VpdRO0tNx-container\",nodeId:\"VpdRO0tNx\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"VpdRO0tNx\",layoutId:\"VpdRO0tNx\",style:{height:\"100%\",width:\"100%\"},variant:\"PZfNz_Wy9\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ghqtwz\",\"data-framer-name\":\"Brixton\",layoutDependency:layoutDependency,layoutId:\"jOc1ECZSZ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42.24,width:\"216.6154px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xcpe2t-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"VBIC_wsz_-container\",nodeId:\"VBIC_wsz_\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"VBIC_wsz_\",layoutId:\"VBIC_wsz_\",style:{height:\"100%\",width:\"100%\"},variant:\"ADYPAtfRX\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vcvkrh\",\"data-framer-name\":\"Burton\",layoutDependency:layoutDependency,layoutId:\"qCa4iQvKj\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:\"88px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-c69dxu-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"NJLyK7ASR-container\",nodeId:\"NJLyK7ASR\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"NJLyK7ASR\",layoutId:\"NJLyK7ASR\",style:{height:\"100%\",width:\"100%\"},variant:\"kpkFaVJB7\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a8egpw\",\"data-framer-name\":\"Carver\",layoutDependency:layoutDependency,layoutId:\"BASU0XwXg\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"200px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xquhid-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"GiIVC5CM7-container\",nodeId:\"GiIVC5CM7\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"GiIVC5CM7\",layoutId:\"GiIVC5CM7\",style:{height:\"100%\",width:\"100%\"},variant:\"PeVhcG8vA\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-r5qehv\",\"data-framer-name\":\"DaKine\",layoutDependency:layoutDependency,layoutId:\"ZxQNOObnC\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24.64,width:\"224px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ldmv8r-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"tg9uR2Jjj-container\",nodeId:\"tg9uR2Jjj\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"tg9uR2Jjj\",layoutId:\"tg9uR2Jjj\",style:{height:\"100%\",width:\"100%\"},variant:\"pjnzn9lgP\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10yrai8\",\"data-framer-name\":\"EddieBauer\",layoutDependency:layoutDependency,layoutId:\"BU7UhZ5Zo\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"238px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1t4vy9m-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ZDplSM5ij-container\",nodeId:\"ZDplSM5ij\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"ZDplSM5ij\",layoutId:\"ZDplSM5ij\",style:{height:\"100%\",width:\"100%\"},variant:\"oxwnoDuIg\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aq3n7q\",\"data-framer-name\":\"FCE\",layoutDependency:layoutDependency,layoutId:\"EUbV8EgBk\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:66.88,width:\"85.12px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-izkzjq-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"QIJ7kYtv9-container\",nodeId:\"QIJ7kYtv9\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"QIJ7kYtv9\",layoutId:\"QIJ7kYtv9\",style:{height:\"100%\",width:\"100%\"},variant:\"WssrJe2fU\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yo405l\",\"data-framer-name\":\"Jenga\",layoutDependency:layoutDependency,layoutId:\"agh9Fjx6a\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65.12,width:\"88.8px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5aemlx-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"rWCpcX9bo-container\",nodeId:\"rWCpcX9bo\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"rWCpcX9bo\",layoutId:\"rWCpcX9bo\",style:{height:\"100%\",width:\"100%\"},variant:\"c2y5vG7nA\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wdxtta\",\"data-framer-name\":\"LLBean\",layoutDependency:layoutDependency,layoutId:\"mg62caNGA\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33.44,width:\"158.08px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-c8wo1u-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"cQjVAjyq6-container\",nodeId:\"cQjVAjyq6\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"cQjVAjyq6\",layoutId:\"cQjVAjyq6\",style:{height:\"100%\",width:\"100%\"},variant:\"p9f2KaRlJ\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pjyn1y\",\"data-framer-name\":\"Macpac\",layoutDependency:layoutDependency,layoutId:\"db57t02F4\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42.24,width:\"228.48px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12pwm71-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Vr48Mztit-container\",nodeId:\"Vr48Mztit\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"Vr48Mztit\",layoutId:\"Vr48Mztit\",style:{height:\"100%\",width:\"100%\"},variant:\"EjRepF6MQ\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ap16ae\",\"data-framer-name\":\"Montane\",layoutDependency:layoutDependency,layoutId:\"w_JxX56ta\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"88px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-g6tz18-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"LB2OtAZW9-container\",nodeId:\"LB2OtAZW9\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"LB2OtAZW9\",layoutId:\"LB2OtAZW9\",style:{height:\"100%\",width:\"100%\"},variant:\"HK_HKxaIB\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qbgkmr\",\"data-framer-name\":\"MountainHardwear\",layoutDependency:layoutDependency,layoutId:\"sNV0gsOQc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70.4,width:\"140.8px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-z2ze69-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"fSjVd3FMF-container\",nodeId:\"fSjVd3FMF\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"fSjVd3FMF\",layoutId:\"fSjVd3FMF\",style:{height:\"100%\",width:\"100%\"},variant:\"jejz1zfo7\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qy3d5d\",\"data-framer-name\":\"Norrona\",layoutDependency:layoutDependency,layoutId:\"Oy4SrDPqu\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"88px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-w312wi-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Y9MYvIVbC-container\",nodeId:\"Y9MYvIVbC\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"Y9MYvIVbC\",layoutId:\"Y9MYvIVbC\",style:{height:\"100%\",width:\"100%\"},variant:\"km9VwZC0F\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ekfxlr\",\"data-framer-name\":\"Orvis\",layoutDependency:layoutDependency,layoutId:\"jiTQyfVNr\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33.44,width:\"190px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16z6caj-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"pAXJVAP1z-container\",nodeId:\"pAXJVAP1z\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"pAXJVAP1z\",layoutId:\"pAXJVAP1z\",style:{height:\"100%\",width:\"100%\"},variant:\"f61i7F4IS\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1egt8ql\",\"data-framer-name\":\"Pertex\",layoutDependency:layoutDependency,layoutId:\"UnhkQvNXA\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34.32,width:\"185.64px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-773zxh-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"h1JGe5bFA-container\",nodeId:\"h1JGe5bFA\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"h1JGe5bFA\",layoutId:\"h1JGe5bFA\",style:{height:\"100%\",width:\"100%\"},variant:\"NarBelqbh\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l7et10\",\"data-framer-name\":\"Prana\",layoutDependency:layoutDependency,layoutId:\"q2d3fjuy8\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40.48,width:\"165.6px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-f0x4ro-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"EhNiyZxys-container\",nodeId:\"EhNiyZxys\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"EhNiyZxys\",layoutId:\"EhNiyZxys\",style:{height:\"100%\",width:\"100%\"},variant:\"qBU_SoTeN\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ridcbv\",\"data-framer-name\":\"Quicksilver\",layoutDependency:layoutDependency,layoutId:\"aq5X_4NYZ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61.6,width:\"141.4px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cmllq-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"jbWoqBALz-container\",nodeId:\"jbWoqBALz\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"jbWoqBALz\",layoutId:\"jbWoqBALz\",style:{height:\"100%\",width:\"100%\"},variant:\"lQLnACsCl\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hd9clg\",\"data-framer-name\":\"REI\",layoutDependency:layoutDependency,layoutId:\"i3wO9OU0Z\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:66,width:\"100.5px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2cxv17-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"gkVJPHMI7-container\",nodeId:\"gkVJPHMI7\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"gkVJPHMI7\",layoutId:\"gkVJPHMI7\",style:{height:\"100%\",width:\"100%\"},variant:\"AHQdtZ1qE\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pmo9cz\",\"data-framer-name\":\"Rivian\",layoutDependency:layoutDependency,layoutId:\"TnxPqqR5M\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"214px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1eaisdf-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"LcxQbLSiN-container\",nodeId:\"LcxQbLSiN\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"LcxQbLSiN\",layoutId:\"LcxQbLSiN\",style:{height:\"100%\",width:\"100%\"},variant:\"Y8DfaaLOW\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h78bb\",\"data-framer-name\":\"Ron Herman\",layoutDependency:layoutDependency,layoutId:\"pJQ51717u\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38.72,width:\"139.92px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1w2xinu-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"CNwvzNCfX-container\",nodeId:\"CNwvzNCfX\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"CNwvzNCfX\",layoutId:\"CNwvzNCfX\",style:{height:\"100%\",width:\"100%\"},variant:\"JEhLFNqCZ\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l3esuq\",\"data-framer-name\":\"Silvini\",layoutDependency:layoutDependency,layoutId:\"uSdyQdeD2\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26.4,width:\"95.4px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qp5q4v-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"YL2rjf3h7-container\",nodeId:\"YL2rjf3h7\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"YL2rjf3h7\",layoutId:\"YL2rjf3h7\",style:{height:\"100%\",width:\"100%\"},variant:\"Pwc0GbQnE\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nfq8hb\",\"data-framer-name\":\"Smartwool\",layoutDependency:layoutDependency,layoutId:\"uUXK4alp1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47.52,width:\"169.56px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wxc9zk-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Fx2Bj3Nf3-container\",nodeId:\"Fx2Bj3Nf3\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"Fx2Bj3Nf3\",layoutId:\"Fx2Bj3Nf3\",style:{height:\"100%\",width:\"100%\"},variant:\"q3fu3ehFw\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8koxl7\",\"data-framer-name\":\"Stone Island\",layoutDependency:layoutDependency,layoutId:\"xCGwH60oF\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70.4,width:\"190.4px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-32ag77-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Q8lmxZgJp-container\",nodeId:\"Q8lmxZgJp\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"Q8lmxZgJp\",layoutId:\"Q8lmxZgJp\",style:{height:\"100%\",width:\"100%\"},variant:\"t_wGn4F4c\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-52xhcm\",\"data-framer-name\":\"Trek\",layoutDependency:layoutDependency,layoutId:\"gMKsRlm63\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24.64,width:\"199.36px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jqu2ue-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"OB7YQlbZG-container\",nodeId:\"OB7YQlbZG\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"OB7YQlbZG\",layoutId:\"OB7YQlbZG\",style:{height:\"100%\",width:\"100%\"},variant:\"znaXvoNVz\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d1ekhb\",\"data-framer-name\":\"Vaude\",layoutDependency:layoutDependency,layoutId:\"m1z4n5RPJ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42.24,width:\"264.96px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-z28kyd-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"UV3ufDZQE-container\",nodeId:\"UV3ufDZQE\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"UV3ufDZQE\",layoutId:\"UV3ufDZQE\",style:{height:\"100%\",width:\"100%\"},variant:\"tT3LW9R9C\",width:\"100%\",ZXtiDeupJ:100})})})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8g685f-container\",\"data-framer-name\":\"tickerFeatured\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"anKraTJKV-container\",name:\"tickerFeatured\",nodeId:\"anKraTJKV\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:lgm1xLz3d,height:\"100%\",hoverFactor:0,id:\"anKraTJKV\",layoutId:\"anKraTJKV\",name:\"tickerFeatured\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jaihkf\",\"data-framer-name\":\"OuterKnown\",layoutDependency:layoutDependency,layoutId:\"OHPbMnYjQ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29.92,width:\"179.52px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-b0ozzj-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"FvMt0t58f-container\",nodeId:\"FvMt0t58f\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"FvMt0t58f\",layoutId:\"FvMt0t58f\",style:{height:\"100%\",width:\"100%\"},variant:\"WgdiwHJSb\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1702wye\",\"data-framer-name\":\"Finisterre\",layoutDependency:layoutDependency,layoutId:\"cQhxtyyeE\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36.96,width:\"189.84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16iimvt-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"HmJyhqDvJ-container\",nodeId:\"HmJyhqDvJ\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"HmJyhqDvJ\",layoutId:\"HmJyhqDvJ\",style:{height:\"100%\",width:\"100%\"},variant:\"b81pcRKfl\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6dnyuq\",\"data-framer-name\":\"Passenger\",layoutDependency:layoutDependency,layoutId:\"QyBB9c2dv\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36.96,width:\"136.08px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mvuec4-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"WTzqPRPjz-container\",nodeId:\"WTzqPRPjz\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"WTzqPRPjz\",layoutId:\"WTzqPRPjz\",style:{height:\"100%\",width:\"100%\"},variant:\"oFLNKtufC\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vaqa2j\",\"data-framer-name\":\"Patagonia\",layoutDependency:layoutDependency,layoutId:\"WEUWURWPD\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38.72,width:\"209.44px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1khb5we-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"VPziVt9Kk-container\",nodeId:\"VPziVt9Kk\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"VPziVt9Kk\",layoutId:\"VPziVt9Kk\",style:{height:\"100%\",width:\"100%\"},variant:\"kaPBi6FFk\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wualll\",\"data-framer-name\":\"BigAgnes\",layoutDependency:layoutDependency,layoutId:\"KssgHEGHl\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,width:\"104px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gdyq8y-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"X_Cw_bQQH-container\",nodeId:\"X_Cw_bQQH\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"X_Cw_bQQH\",layoutId:\"X_Cw_bQQH\",style:{height:\"100%\",width:\"100%\"},variant:\"JGzwqgwmo\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t5ki8a\",\"data-framer-name\":\"Costa\",layoutDependency:layoutDependency,layoutId:\"xGmsrUHoA\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"240px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wqjwp-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"SvXJh4mO6-container\",nodeId:\"SvXJh4mO6\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"SvXJh4mO6\",layoutId:\"SvXJh4mO6\",style:{height:\"100%\",width:\"100%\"},variant:\"nk1KJK9hd\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b20p5i\",\"data-framer-name\":\"Yeti\",layoutDependency:layoutDependency,layoutId:\"eGenRoGID\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36.96,width:\"136.08px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3p15de-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"bspGwy3Wa-container\",nodeId:\"bspGwy3Wa\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"bspGwy3Wa\",layoutId:\"bspGwy3Wa\",style:{height:\"100%\",width:\"100%\"},variant:\"lBI_pSfQ1\",width:\"100%\",ZXtiDeupJ:100})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-u8exy8\",\"data-framer-name\":\"Futures\",layoutDependency:layoutDependency,layoutId:\"ebZcdVjs2\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38.72,width:\"168.08px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sj2fvd-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"HUrN2eB9p-container\",nodeId:\"HUrN2eB9p\",rendersWithMotion:true,scopeId:\"J72jSqUn5\",children:/*#__PURE__*/_jsx(BrandPartnersIconBrands,{DoAgzoqNm:\"default\",height:\"100%\",HRrsMeC2A:false,id:\"HUrN2eB9p\",layoutId:\"HUrN2eB9p\",style:{height:\"100%\",width:\"100%\"},variant:\"oMrHcjteW\",width:\"100%\",ZXtiDeupJ:100})})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rmbDj.framer-13dbhfs, .framer-rmbDj .framer-13dbhfs { display: block; }\",\".framer-rmbDj.framer-13kn22e { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 64px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1276px; }\",\".framer-rmbDj .framer-4u8n38-container, .framer-rmbDj .framer-8g685f-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-rmbDj .framer-duhy5, .framer-rmbDj .framer-97zzkv { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 88px; justify-content: center; overflow: hidden; padding: 0px; pointer-events: auto; position: relative; user-select: none; width: min-content; }\",\".framer-rmbDj .framer-1yh0flm-container { -webkit-user-select: none; aspect-ratio: 0.88 / 1; flex: none; height: 100%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 80px); }\",\".framer-rmbDj .framer-1tt1v4r-container { -webkit-user-select: none; aspect-ratio: 3 / 1; flex: none; height: 56%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 148px); }\",\".framer-rmbDj .framer-sn8733, .framer-rmbDj .framer-1vcvkrh { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 88px; justify-content: center; overflow: hidden; padding: 0px; pointer-events: auto; position: relative; user-select: none; width: min-content; }\",\".framer-rmbDj .framer-1p2qlwh-container { -webkit-user-select: none; aspect-ratio: 1.5454545454545454 / 1; flex: none; height: 80%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 109px); }\",\".framer-rmbDj .framer-ghqtwz, .framer-rmbDj .framer-1a8egpw, .framer-rmbDj .framer-r5qehv, .framer-rmbDj .framer-1aq3n7q, .framer-rmbDj .framer-yo405l, .framer-rmbDj .framer-1wdxtta, .framer-rmbDj .framer-pjyn1y, .framer-rmbDj .framer-ap16ae, .framer-rmbDj .framer-qbgkmr, .framer-rmbDj .framer-qy3d5d, .framer-rmbDj .framer-1ekfxlr, .framer-rmbDj .framer-1egt8ql, .framer-rmbDj .framer-1l7et10, .framer-rmbDj .framer-ridcbv, .framer-rmbDj .framer-hd9clg, .framer-rmbDj .framer-1pmo9cz, .framer-rmbDj .framer-1h78bb, .framer-rmbDj .framer-1l3esuq, .framer-rmbDj .framer-1nfq8hb, .framer-rmbDj .framer-52xhcm, .framer-rmbDj .framer-d1ekhb, .framer-rmbDj .framer-1jaihkf, .framer-rmbDj .framer-1702wye, .framer-rmbDj .framer-6dnyuq, .framer-rmbDj .framer-1vaqa2j, .framer-rmbDj .framer-1t5ki8a, .framer-rmbDj .framer-1b20p5i, .framer-rmbDj .framer-u8exy8 { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 88px; justify-content: center; overflow: hidden; padding: 0px; pointer-events: auto; position: relative; user-select: none; width: min-content; }\",\".framer-rmbDj .framer-1xcpe2t-container { -webkit-user-select: none; aspect-ratio: 5.128205128205129 / 1; flex: none; height: 48%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 217px); }\",\".framer-rmbDj .framer-c69dxu-container { -webkit-user-select: none; aspect-ratio: 1 / 1; flex: none; height: 100%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 88px); }\",\".framer-rmbDj .framer-xquhid-container { -webkit-user-select: none; aspect-ratio: 4.545454545454546 / 1; flex: none; height: 50%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 200px); }\",\".framer-rmbDj .framer-ldmv8r-container { -webkit-user-select: none; aspect-ratio: 9.090909090909092 / 1; flex: none; height: 28%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 224px); }\",\".framer-rmbDj .framer-10yrai8 { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 88px; justify-content: center; overflow: hidden; padding: 0px; pointer-events: auto; position: relative; user-select: none; width: min-content; }\",\".framer-rmbDj .framer-1t4vy9m-container { -webkit-user-select: none; aspect-ratio: 5.409090909090909 / 1; flex: none; height: 50%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 238px); }\",\".framer-rmbDj .framer-izkzjq-container { -webkit-user-select: none; aspect-ratio: 1.2727272727272727 / 1; flex: none; height: 76%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 85px); }\",\".framer-rmbDj .framer-5aemlx-container { -webkit-user-select: none; aspect-ratio: 1.3636363636363635 / 1; flex: none; height: 74%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 92px); }\",\".framer-rmbDj .framer-c8wo1u-container { -webkit-user-select: none; aspect-ratio: 4.7272727272727275 / 1; flex: none; height: 38%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 164px); }\",\".framer-rmbDj .framer-12pwm71-container { -webkit-user-select: none; aspect-ratio: 5.409090909090909 / 1; flex: none; height: 48%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 256px); }\",\".framer-rmbDj .framer-g6tz18-container { -webkit-user-select: none; aspect-ratio: 2 / 1; flex: none; height: 50%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 238px); }\",\".framer-rmbDj .framer-z2ze69-container { -webkit-user-select: none; aspect-ratio: 2 / 1; flex: none; height: 80%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 141px); }\",\".framer-rmbDj .framer-w312wi-container { -webkit-user-select: none; aspect-ratio: 2 / 1; flex: none; height: 50%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 210px); }\",\".framer-rmbDj .framer-16z6caj-container { -webkit-user-select: none; aspect-ratio: 5.681818181818182 / 1; flex: none; height: 38%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 198px); }\",\".framer-rmbDj .framer-773zxh-container { -webkit-user-select: none; aspect-ratio: 5.409090909090909 / 1; flex: none; height: 39%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 248px); }\",\".framer-rmbDj .framer-f0x4ro-container { -webkit-user-select: none; aspect-ratio: 4.090909090909091 / 1; flex: none; height: 46%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 173px); }\",\".framer-rmbDj .framer-1cmllq-container { -webkit-user-select: none; aspect-ratio: 2.2954545454545454 / 1; flex: none; height: 70%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 143px); }\",\".framer-rmbDj .framer-2cxv17-container { -webkit-user-select: none; aspect-ratio: 1.5227272727272727 / 1; flex: none; height: 75%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 105px); }\",\".framer-rmbDj .framer-1eaisdf-container { -webkit-user-select: none; aspect-ratio: 4.863636363636363 / 1; flex: none; height: 50%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 222px); }\",\".framer-rmbDj .framer-1w2xinu-container { -webkit-user-select: none; aspect-ratio: 3.6136363636363638 / 1; flex: none; height: 44%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 723px); }\",\".framer-rmbDj .framer-qp5q4v-container { -webkit-user-select: none; aspect-ratio: 3.6136363636363638 / 1; flex: none; height: 30%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 723px); }\",\".framer-rmbDj .framer-wxc9zk-container { -webkit-user-select: none; aspect-ratio: 3.5681818181818183 / 1; flex: none; height: 54%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 714px); }\",\".framer-rmbDj .framer-8koxl7 { -webkit-user-select: none; align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 88px; justify-content: center; overflow: hidden; padding: 0px; pointer-events: auto; position: relative; user-select: none; width: min-content; }\",\".framer-rmbDj .framer-32ag77-container { -webkit-user-select: none; aspect-ratio: 2.7045454545454546 / 1; flex: none; height: 80%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 541px); }\",\".framer-rmbDj .framer-jqu2ue-container { -webkit-user-select: none; aspect-ratio: 8.090909090909092 / 1; flex: none; height: 28%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 1618px); }\",\".framer-rmbDj .framer-z28kyd-container { -webkit-user-select: none; aspect-ratio: 6.2727272727272725 / 1; flex: none; height: 48%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 1255px); }\",\".framer-rmbDj .framer-b0ozzj-container { -webkit-user-select: none; aspect-ratio: 6 / 1; flex: none; height: 34%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 287px); }\",\".framer-rmbDj .framer-16iimvt-container { -webkit-user-select: none; aspect-ratio: 5.136363636363637 / 1; flex: none; height: 42%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 190px); }\",\".framer-rmbDj .framer-mvuec4-container { -webkit-user-select: none; aspect-ratio: 3.6818181818181817 / 1; flex: none; height: 42%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 262px); }\",\".framer-rmbDj .framer-1khb5we-container { -webkit-user-select: none; aspect-ratio: 5.409090909090909 / 1; flex: none; height: 44%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 210px); }\",\".framer-rmbDj .framer-wualll { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 104px; justify-content: center; overflow: hidden; padding: 0px; pointer-events: auto; position: relative; user-select: none; width: min-content; }\",\".framer-rmbDj .framer-gdyq8y-container { -webkit-user-select: none; aspect-ratio: 1 / 1; flex: none; height: 100%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 104px); }\",\".framer-rmbDj .framer-wqjwp-container { -webkit-user-select: none; aspect-ratio: 5.454545454545454 / 1; flex: none; height: 50%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 240px); }\",\".framer-rmbDj .framer-3p15de-container { -webkit-user-select: none; aspect-ratio: 3.6818181818181817 / 1; flex: none; height: 42%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 136px); }\",\".framer-rmbDj .framer-sj2fvd-container { -webkit-user-select: none; aspect-ratio: 4.340909090909091 / 1; flex: none; height: 44%; pointer-events: auto; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 176px); }\",\".framer-rmbDj.framer-v-jixqpm.framer-13kn22e { height: 88px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 1276\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"J2_N2R4zo\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"lgm1xLz3d\":\"gap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerJ72jSqUn5=withCSS(Component,css,\"framer-rmbDj\");export default FramerJ72jSqUn5;FramerJ72jSqUn5.displayName=\"Brand Partners / TickerBrands\";FramerJ72jSqUn5.defaultProps={height:64,width:1276};addPropertyControls(FramerJ72jSqUn5,{variant:{options:[\"nynSIc2pP\",\"J2_N2R4zo\"],optionTitles:[\"Featured\",\"All\"],title:\"Variant\",type:ControlType.Enum},lgm1xLz3d:{defaultValue:160,min:-100,title:\"Gap\",type:ControlType.Number}});addFonts(FramerJ72jSqUn5,[{explicitInter:true,fonts:[]},...BrandPartnersIconBrandsFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJ72jSqUn5\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1276\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"64\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"J2_N2R4zo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"lgm1xLz3d\\\":\\\"gap\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./J72jSqUn5.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"Gz0H5Gl0x\",\"W8kh6B73s\",\"V_oY7K7tc\",\"h3IR8xBhZ\",\"KnPjvuFOf\",\"KXzuWhAFA\"];const serializationHash=\"framer-20QB8\";const variantClassNames={Gz0H5Gl0x:\"framer-v-110rvjt\",h3IR8xBhZ:\"framer-v-1u25j6y\",KnPjvuFOf:\"framer-v-ggb34t\",KXzuWhAFA:\"framer-v-1lg52mb\",V_oY7K7tc:\"framer-v-12rfli8\",W8kh6B73s:\"framer-v-16s0g4b\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Bottom-from\":\"KnPjvuFOf\",\"Bottom-to\":\"KXzuWhAFA\",\"Middle-from\":\"V_oY7K7tc\",\"Middle-to\":\"h3IR8xBhZ\",\"Top-from\":\"Gz0H5Gl0x\",\"Top-to\":\"W8kh6B73s\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Gz0H5Gl0x\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Gz0H5Gl0x\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"V_oY7K7tc\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-110rvjt\",className,classNames),\"data-framer-name\":\"Top-from\",layoutDependency:layoutDependency,layoutId:\"Gz0H5Gl0x\",ref:refBinding,style:{...style},...addPropertyOverrides({h3IR8xBhZ:{\"data-framer-name\":\"Middle-to\"},KnPjvuFOf:{\"data-framer-name\":\"Bottom-from\"},KXzuWhAFA:{\"data-framer-name\":\"Bottom-to\"},V_oY7K7tc:{\"data-framer-name\":\"Middle-from\"},W8kh6B73s:{\"data-framer-name\":\"Top-to\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18qmw1l\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"PudnBtXgs\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+-1e-4),pixelHeight:135,pixelWidth:1121,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/t3BiVoCjCvApEzDK1yHssG1AYo.svg\",srcSet:\"https://framerusercontent.com/images/t3BiVoCjCvApEzDK1yHssG1AYo.svg?scale-down-to=512 512w,https://framerusercontent.com/images/t3BiVoCjCvApEzDK1yHssG1AYo.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/t3BiVoCjCvApEzDK1yHssG1AYo.svg 1121w\"},className:\"framer-1n9a96r\",\"data-framer-name\":\"icFrom\",layoutDependency:layoutDependency,layoutId:\"Is9UkQk8W\",...addPropertyOverrides({h3IR8xBhZ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+-1e-4),pixelHeight:134,pixelWidth:1120,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/2ZUD9prfOKXMKNAtexFQaP3aMOE.svg\",srcSet:\"https://framerusercontent.com/images/2ZUD9prfOKXMKNAtexFQaP3aMOE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/2ZUD9prfOKXMKNAtexFQaP3aMOE.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2ZUD9prfOKXMKNAtexFQaP3aMOE.svg 1120w\"}},KnPjvuFOf:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||134)-2.0672+-1e-4),pixelHeight:134,pixelWidth:1121,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pAwRHF6TuUYAFEdGsOp3Lh9xIQ.svg\",srcSet:\"https://framerusercontent.com/images/pAwRHF6TuUYAFEdGsOp3Lh9xIQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/pAwRHF6TuUYAFEdGsOp3Lh9xIQ.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pAwRHF6TuUYAFEdGsOp3Lh9xIQ.svg 1121w\"}},KXzuWhAFA:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+-1e-4),pixelHeight:134,pixelWidth:1121,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pAwRHF6TuUYAFEdGsOp3Lh9xIQ.svg\",srcSet:\"https://framerusercontent.com/images/pAwRHF6TuUYAFEdGsOp3Lh9xIQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/pAwRHF6TuUYAFEdGsOp3Lh9xIQ.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pAwRHF6TuUYAFEdGsOp3Lh9xIQ.svg 1121w\"}},V_oY7K7tc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+-1e-4),pixelHeight:134,pixelWidth:1121,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/2NaPpSx8BgwRPeWncTRIyQHBA.svg\",srcSet:\"https://framerusercontent.com/images/2NaPpSx8BgwRPeWncTRIyQHBA.svg?scale-down-to=512 512w,https://framerusercontent.com/images/2NaPpSx8BgwRPeWncTRIyQHBA.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2NaPpSx8BgwRPeWncTRIyQHBA.svg 1121w\"}},W8kh6B73s:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||134)-2.0672+-1e-4),pixelHeight:135,pixelWidth:1121,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/t3BiVoCjCvApEzDK1yHssG1AYo.svg\",srcSet:\"https://framerusercontent.com/images/t3BiVoCjCvApEzDK1yHssG1AYo.svg?scale-down-to=512 512w,https://framerusercontent.com/images/t3BiVoCjCvApEzDK1yHssG1AYo.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/t3BiVoCjCvApEzDK1yHssG1AYo.svg 1121w\"}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1.0671),pixelHeight:135,pixelWidth:1121,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/OAtQYIABY0gsqN7JEyqRnQVGw.svg\",srcSet:\"https://framerusercontent.com/images/OAtQYIABY0gsqN7JEyqRnQVGw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/OAtQYIABY0gsqN7JEyqRnQVGw.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OAtQYIABY0gsqN7JEyqRnQVGw.svg 1121w\"},className:\"framer-3ynt1k\",\"data-framer-name\":\"icTo\",layoutDependency:layoutDependency,layoutId:\"OV7_5vsIt\",...addPropertyOverrides({KnPjvuFOf:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||134)-2.0672+1.0671),pixelHeight:134,pixelWidth:1120,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/fRS0TA1tYypUPzGFdPE24TysSPg.svg\",srcSet:\"https://framerusercontent.com/images/fRS0TA1tYypUPzGFdPE24TysSPg.svg?scale-down-to=512 512w,https://framerusercontent.com/images/fRS0TA1tYypUPzGFdPE24TysSPg.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fRS0TA1tYypUPzGFdPE24TysSPg.svg 1120w\"}},KXzuWhAFA:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1.0671),pixelHeight:134,pixelWidth:1120,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/fRS0TA1tYypUPzGFdPE24TysSPg.svg\",srcSet:\"https://framerusercontent.com/images/fRS0TA1tYypUPzGFdPE24TysSPg.svg?scale-down-to=512 512w,https://framerusercontent.com/images/fRS0TA1tYypUPzGFdPE24TysSPg.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fRS0TA1tYypUPzGFdPE24TysSPg.svg 1120w\"}},W8kh6B73s:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||134)-2.0672+1.0671),pixelHeight:135,pixelWidth:1121,positionX:\"left\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/OAtQYIABY0gsqN7JEyqRnQVGw.svg\",srcSet:\"https://framerusercontent.com/images/OAtQYIABY0gsqN7JEyqRnQVGw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/OAtQYIABY0gsqN7JEyqRnQVGw.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OAtQYIABY0gsqN7JEyqRnQVGw.svg 1121w\"}}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-20QB8.framer-110p0zs, .framer-20QB8 .framer-110p0zs { display: block; }\",\".framer-20QB8.framer-110rvjt { height: 134px; overflow: hidden; position: relative; width: 1120px; }\",\".framer-20QB8 .framer-18qmw1l { aspect-ratio: 4.043321299638989 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 277px); left: 0px; overflow: visible; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-20QB8 .framer-1n9a96r { flex: none; height: 48%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(24.187725631768973% - 48.375451263537904% / 2); width: 100%; }\",\".framer-20QB8 .framer-3ynt1k { flex: none; height: 48%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(75.81227436823107% - 48.375451263537904% / 2); width: 100%; }\",\".framer-20QB8.framer-v-16s0g4b.framer-110rvjt, .framer-20QB8.framer-v-12rfli8.framer-110rvjt, .framer-20QB8.framer-v-1u25j6y.framer-110rvjt, .framer-20QB8.framer-v-ggb34t.framer-110rvjt, .framer-20QB8.framer-v-1lg52mb.framer-110rvjt { aspect-ratio: 8.35820895522388 / 1; height: var(--framer-aspect-ratio-supported, 134px); }\",\".framer-20QB8.framer-v-16s0g4b .framer-18qmw1l, .framer-20QB8.framer-v-ggb34t .framer-18qmw1l { bottom: 0px; top: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 134\n * @framerIntrinsicWidth 1120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"W8kh6B73s\":{\"layout\":[\"fixed\",\"fixed\"]},\"V_oY7K7tc\":{\"layout\":[\"fixed\",\"fixed\"]},\"h3IR8xBhZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"KnPjvuFOf\":{\"layout\":[\"fixed\",\"fixed\"]},\"KXzuWhAFA\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFFSG2ggTa=withCSS(Component,css,\"framer-20QB8\");export default FramerFFSG2ggTa;FramerFFSG2ggTa.displayName=\"Elements / ElementsFromTo 2\";FramerFFSG2ggTa.defaultProps={height:134,width:1120};addPropertyControls(FramerFFSG2ggTa,{variant:{options:[\"Gz0H5Gl0x\",\"W8kh6B73s\",\"V_oY7K7tc\",\"h3IR8xBhZ\",\"KnPjvuFOf\",\"KXzuWhAFA\"],optionTitles:[\"Top-from\",\"Top-to\",\"Middle-from\",\"Middle-to\",\"Bottom-from\",\"Bottom-to\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerFFSG2ggTa,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFFSG2ggTa\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"W8kh6B73s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"V_oY7K7tc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"h3IR8xBhZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KnPjvuFOf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KXzuWhAFA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"134\",\"framerIntrinsicWidth\":\"1120\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FFSG2ggTa.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ElementsElementsFromTo2 from\"https://framerusercontent.com/modules/7bB1xJQfvhH91rjQkSeo/3sE8rXlLH0lAm4F2Mwu1/FFSG2ggTa.js\";const ElementsElementsFromTo2Fonts=getFonts(ElementsElementsFromTo2);const enabledGestures={k33ljVBlz:{hover:true}};const cycleOrder=[\"k33ljVBlz\",\"PBzb7xCxm\",\"uKrQWxZm4\"];const serializationHash=\"framer-a9dm1\";const variantClassNames={k33ljVBlz:\"framer-v-1hgs0vl\",PBzb7xCxm:\"framer-v-1mlgx87\",uKrQWxZm4:\"framer-v-8zj30n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[.12,.23,.5,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop and Oversize\":\"k33ljVBlz\",\"Tablet and Phone - from\":\"PBzb7xCxm\",\"Tablet and Phone - to\":\"uKrQWxZm4\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"k33ljVBlz\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"k33ljVBlz\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearxmbvv8=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"uKrQWxZm4\",true),3e3);});const onAppear1hzwakk=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"PBzb7xCxm\",true),3e3);});useOnVariantChange(baseVariant,{PBzb7xCxm:onAppearxmbvv8,uKrQWxZm4:onAppear1hzwakk});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({uKrQWxZm4:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1hgs0vl\",className,classNames),\"data-framer-name\":\"Desktop and Oversize\",layoutDependency:layoutDependency,layoutId:\"k33ljVBlz\",ref:refBinding,style:{...style},...addPropertyOverrides({\"k33ljVBlz-hover\":{\"data-framer-name\":undefined},PBzb7xCxm:{\"data-framer-name\":\"Tablet and Phone - from\",\"data-highlight\":true},uKrQWxZm4:{\"data-framer-name\":\"Tablet and Phone - to\",\"data-highlight\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:((componentViewport?.height||434)-0)*.3088,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+((componentViewport?.height||434)*.15437788018433202-((componentViewport?.height||434)-0)*.3088/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15vxev2-container\",layoutDependency:layoutDependency,layoutId:\"FORApO_a5-container\",nodeId:\"FORApO_a5\",rendersWithMotion:true,scopeId:\"n9FZRhtfl\",children:/*#__PURE__*/_jsx(ElementsElementsFromTo2,{height:\"100%\",id:\"FORApO_a5\",layoutId:\"FORApO_a5\",style:{height:\"100%\",width:\"100%\"},variant:\"Gz0H5Gl0x\",width:\"100%\",...addPropertyOverrides({\"k33ljVBlz-hover\":{variant:\"W8kh6B73s\"},uKrQWxZm4:{variant:\"W8kh6B73s\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:((componentViewport?.height||434)-0)*.3088,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+((componentViewport?.height||434)*.5000000000000002-((componentViewport?.height||434)-0)*.3088/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19050l0-container\",layoutDependency:layoutDependency,layoutId:\"jXhIWtFOw-container\",nodeId:\"jXhIWtFOw\",rendersWithMotion:true,scopeId:\"n9FZRhtfl\",children:/*#__PURE__*/_jsx(ElementsElementsFromTo2,{height:\"100%\",id:\"jXhIWtFOw\",layoutId:\"jXhIWtFOw\",style:{height:\"100%\",width:\"100%\"},variant:\"V_oY7K7tc\",width:\"100%\",...addPropertyOverrides({\"k33ljVBlz-hover\":{variant:\"h3IR8xBhZ\"},uKrQWxZm4:{variant:\"h3IR8xBhZ\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:((componentViewport?.height||434)-0)*.3088,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+((componentViewport?.height||434)*.8456221198156684-((componentViewport?.height||434)-0)*.3088/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nfmjta-container\",layoutDependency:layoutDependency,layoutId:\"E5az0pIw9-container\",nodeId:\"E5az0pIw9\",rendersWithMotion:true,scopeId:\"n9FZRhtfl\",children:/*#__PURE__*/_jsx(ElementsElementsFromTo2,{height:\"100%\",id:\"E5az0pIw9\",layoutId:\"E5az0pIw9\",style:{height:\"100%\",width:\"100%\"},variant:\"KnPjvuFOf\",width:\"100%\",...addPropertyOverrides({\"k33ljVBlz-hover\":{variant:\"KXzuWhAFA\"},uKrQWxZm4:{variant:\"KXzuWhAFA\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-a9dm1.framer-1cl84gr, .framer-a9dm1 .framer-1cl84gr { display: block; }\",\".framer-a9dm1.framer-1hgs0vl { cursor: default; height: 434px; overflow: visible; position: relative; width: 1120px; }\",\".framer-a9dm1 .framer-15vxev2-container { flex: none; height: 31%; left: calc(50.00000000000002% - 100% / 2); pointer-events: none; position: absolute; top: calc(15.437788018433201% - 30.87557603686636% / 2); width: 100%; }\",\".framer-a9dm1 .framer-19050l0-container { flex: none; height: 31%; left: calc(50.00000000000002% - 100% / 2); pointer-events: none; position: absolute; top: calc(50.00000000000002% - 30.87557603686636% / 2); width: 100%; }\",\".framer-a9dm1 .framer-nfmjta-container { flex: none; height: 31%; left: calc(50.00000000000002% - 100% / 2); pointer-events: none; position: absolute; top: calc(84.56221198156683% - 30.87557603686636% / 2); width: 100%; }\",\".framer-a9dm1.framer-v-1mlgx87.framer-1hgs0vl, .framer-a9dm1.framer-v-8zj30n.framer-1hgs0vl, .framer-a9dm1.framer-v-1hgs0vl.hover.framer-1hgs0vl { aspect-ratio: 2.5806451612903225 / 1; height: var(--framer-aspect-ratio-supported, 434px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 434\n * @framerIntrinsicWidth 1120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"PBzb7xCxm\":{\"layout\":[\"fixed\",\"fixed\"]},\"uKrQWxZm4\":{\"layout\":[\"fixed\",\"fixed\"]},\"YmAf2Plk6\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framern9FZRhtfl=withCSS(Component,css,\"framer-a9dm1\");export default Framern9FZRhtfl;Framern9FZRhtfl.displayName=\"Home / TextHeroAnimation 2\";Framern9FZRhtfl.defaultProps={height:434,width:1120};addPropertyControls(Framern9FZRhtfl,{variant:{options:[\"k33ljVBlz\",\"PBzb7xCxm\",\"uKrQWxZm4\"],optionTitles:[\"Desktop and Oversize\",\"Tablet and Phone - from\",\"Tablet and Phone - to\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framern9FZRhtfl,[{explicitInter:true,fonts:[]},...ElementsElementsFromTo2Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framern9FZRhtfl\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1120\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PBzb7xCxm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uKrQWxZm4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YmAf2Plk6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"434\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./n9FZRhtfl.map", "// Generated by Framer (4d21961)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"OHftPzT1j\",\"Ft8A5HBHK\"];const serializationHash=\"framer-0kmJ4\";const variantClassNames={Ft8A5HBHK:\"framer-v-7sqpan\",OHftPzT1j:\"framer-v-1rnuxwn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Off:\"Ft8A5HBHK\",On:\"OHftPzT1j\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"OHftPzT1j\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OHftPzT1j\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1rnuxwn\",className,classNames),\"data-framer-name\":\"On\",layoutDependency:layoutDependency,layoutId:\"OHftPzT1j\",ref:refBinding,style:{...style},...addPropertyOverrides({Ft8A5HBHK:{\"data-framer-name\":\"Off\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nuorbx\",\"data-framer-name\":\"Spacer\",layoutDependency:layoutDependency,layoutId:\"VXor5IDGN\",style:{opacity:0}})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0kmJ4.framer-15haaa, .framer-0kmJ4 .framer-15haaa { display: block; }\",\".framer-0kmJ4.framer-1rnuxwn { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-0kmJ4 .framer-1nuorbx { flex: none; height: 41px; overflow: visible; position: relative; width: 40px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0kmJ4.framer-1rnuxwn { gap: 0px; } .framer-0kmJ4.framer-1rnuxwn > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-0kmJ4.framer-1rnuxwn > :first-child { margin-left: 0px; } .framer-0kmJ4.framer-1rnuxwn > :last-child { margin-right: 0px; } }\",\".framer-0kmJ4.framer-v-7sqpan .framer-1nuorbx { height: 1px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 41\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Ft8A5HBHK\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrFFL0k1B1=withCSS(Component,css,\"framer-0kmJ4\");export default FramerrFFL0k1B1;FramerrFFL0k1B1.displayName=\"spacerBanner2\";FramerrFFL0k1B1.defaultProps={height:41,width:40};addPropertyControls(FramerrFFL0k1B1,{variant:{options:[\"OHftPzT1j\",\"Ft8A5HBHK\"],optionTitles:[\"On\",\"Off\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerrFFL0k1B1,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrFFL0k1B1\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"40\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"41\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Ft8A5HBHK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rFFL0k1B1.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;SuisseIntl-Regular-WebS \\xb6\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"SuisseIntl-Regular-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/qdomSiU6N2Hlj8RUmEbDeMjn7c.woff\"}]}];export const css=['.framer-JGMZ9 .framer-styles-preset-1k39zov:not(.rich-text-wrapper), .framer-JGMZ9 .framer-styles-preset-1k39zov.rich-text-wrapper h2 { --framer-font-family: \"SuisseIntl-Regular-WebS \\xb6\", \"SuisseIntl-Regular-WebS \\xb6 Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.04em; --framer-line-height: 142%; --framer-paragraph-spacing: 0px; --framer-text-alignment: right; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: uppercase; }','@media (max-width: 1999px) and (min-width: 1200px) { .framer-JGMZ9 .framer-styles-preset-1k39zov:not(.rich-text-wrapper), .framer-JGMZ9 .framer-styles-preset-1k39zov.rich-text-wrapper h2 { --framer-font-family: \"SuisseIntl-Regular-WebS \\xb6\", \"SuisseIntl-Regular-WebS \\xb6 Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.04em; --framer-line-height: 142%; --framer-paragraph-spacing: 0px; --framer-text-alignment: right; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: uppercase; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-JGMZ9 .framer-styles-preset-1k39zov:not(.rich-text-wrapper), .framer-JGMZ9 .framer-styles-preset-1k39zov.rich-text-wrapper h2 { --framer-font-family: \"SuisseIntl-Regular-WebS \\xb6\", \"SuisseIntl-Regular-WebS \\xb6 Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.04em; --framer-line-height: 142%; --framer-paragraph-spacing: 0px; --framer-text-alignment: right; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: uppercase; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-JGMZ9 .framer-styles-preset-1k39zov:not(.rich-text-wrapper), .framer-JGMZ9 .framer-styles-preset-1k39zov.rich-text-wrapper h2 { --framer-font-family: \"SuisseIntl-Regular-WebS \\xb6\", \"SuisseIntl-Regular-WebS \\xb6 Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.04em; --framer-line-height: 142%; --framer-paragraph-spacing: 0px; --framer-text-alignment: right; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: uppercase; } }'];export const className=\"framer-JGMZ9\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;SuisseIntl-Regular-WebS \\xb6\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"SuisseIntl-Regular-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/qdomSiU6N2Hlj8RUmEbDeMjn7c.woff\"}]}];export const css=['.framer-Fp5wm .framer-styles-preset-aplj8j:not(.rich-text-wrapper), .framer-Fp5wm .framer-styles-preset-aplj8j.rich-text-wrapper p { --framer-font-family: \"SuisseIntl-Regular-WebS \\xb6\", \"SuisseIntl-Regular-WebS \\xb6 Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 140%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1999px) and (min-width: 1200px) { .framer-Fp5wm .framer-styles-preset-aplj8j:not(.rich-text-wrapper), .framer-Fp5wm .framer-styles-preset-aplj8j.rich-text-wrapper p { --framer-font-family: \"SuisseIntl-Regular-WebS \\xb6\", \"SuisseIntl-Regular-WebS \\xb6 Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 140%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-Fp5wm .framer-styles-preset-aplj8j:not(.rich-text-wrapper), .framer-Fp5wm .framer-styles-preset-aplj8j.rich-text-wrapper p { --framer-font-family: \"SuisseIntl-Regular-WebS \\xb6\", \"SuisseIntl-Regular-WebS \\xb6 Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 140%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-Fp5wm .framer-styles-preset-aplj8j:not(.rich-text-wrapper), .framer-Fp5wm .framer-styles-preset-aplj8j.rich-text-wrapper p { --framer-font-family: \"SuisseIntl-Regular-WebS \\xb6\", \"SuisseIntl-Regular-WebS \\xb6 Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 140%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-Fp5wm\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;SuisseIntl-Bold-WebS \\xb6\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"SuisseIntl-Bold-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/Mzj1WkRGmRK8sle6yGCBPzOlSM.woff\"}]}];export const css=['.framer-rNd72 .framer-styles-preset-jovzrj:not(.rich-text-wrapper), .framer-rNd72 .framer-styles-preset-jovzrj.rich-text-wrapper h2 { --framer-font-family: \"SuisseIntl-Bold-WebS \\xb6\", \"SuisseIntl-Bold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.04em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: uppercase; }','@media (max-width: 1999px) and (min-width: 1200px) { .framer-rNd72 .framer-styles-preset-jovzrj:not(.rich-text-wrapper), .framer-rNd72 .framer-styles-preset-jovzrj.rich-text-wrapper h2 { --framer-font-family: \"SuisseIntl-Bold-WebS \\xb6\", \"SuisseIntl-Bold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.04em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: uppercase; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-rNd72 .framer-styles-preset-jovzrj:not(.rich-text-wrapper), .framer-rNd72 .framer-styles-preset-jovzrj.rich-text-wrapper h2 { --framer-font-family: \"SuisseIntl-Bold-WebS \\xb6\", \"SuisseIntl-Bold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.04em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: uppercase; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-rNd72 .framer-styles-preset-jovzrj:not(.rich-text-wrapper), .framer-rNd72 .framer-styles-preset-jovzrj.rich-text-wrapper h2 { --framer-font-family: \"SuisseIntl-Bold-WebS \\xb6\", \"SuisseIntl-Bold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.04em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: uppercase; } }'];export const className=\"framer-rNd72\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;SuisseIntl-Bold-WebS \\xb6\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"SuisseIntl-Bold-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/Mzj1WkRGmRK8sle6yGCBPzOlSM.woff\"}]}];export const css=['.framer-M2M42 .framer-styles-preset-bik29v:not(.rich-text-wrapper), .framer-M2M42 .framer-styles-preset-bik29v.rich-text-wrapper h3 { --framer-font-family: \"SuisseIntl-Bold-WebS \\xb6\", \"SuisseIntl-Bold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.04em; --framer-line-height: 142%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: uppercase; }','@media (max-width: 1999px) and (min-width: 1200px) { .framer-M2M42 .framer-styles-preset-bik29v:not(.rich-text-wrapper), .framer-M2M42 .framer-styles-preset-bik29v.rich-text-wrapper h3 { --framer-font-family: \"SuisseIntl-Bold-WebS \\xb6\", \"SuisseIntl-Bold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.04em; --framer-line-height: 142%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: uppercase; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-M2M42 .framer-styles-preset-bik29v:not(.rich-text-wrapper), .framer-M2M42 .framer-styles-preset-bik29v.rich-text-wrapper h3 { --framer-font-family: \"SuisseIntl-Bold-WebS \\xb6\", \"SuisseIntl-Bold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.04em; --framer-line-height: 142%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: uppercase; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-M2M42 .framer-styles-preset-bik29v:not(.rich-text-wrapper), .framer-M2M42 .framer-styles-preset-bik29v.rich-text-wrapper h3 { --framer-font-family: \"SuisseIntl-Bold-WebS \\xb6\", \"SuisseIntl-Bold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.04em; --framer-line-height: 142%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: uppercase; } }'];export const className=\"framer-M2M42\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e182fd8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/OaXrcdaNmAPaI2SoOngN/e1qB6dUi6s10PudQZFBE/K55tR_WNf.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/KdQ3vQX2rl5u9I1S49BN/077QYQbGuxndaKaH7Be6/NFvCjc1oJ.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/MAKNuUWaxeI9ndRnOVOx/fY3QgwNVrdqAHHTJTysW/Y0r5wfAkg.js\";const RichTextWithFX=withFX(RichText);const cycleOrder=[\"iuAmi0JNo\",\"j2CZnnzdc\",\"oDZPjRaxy\"];const serializationHash=\"framer-yO2Vr\";const variantClassNames={iuAmi0JNo:\"framer-v-e7sq8p\",j2CZnnzdc:\"framer-v-18fo58b\",oDZPjRaxy:\"framer-v-xdel8q\"};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={duration:0,type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={delay:.1,duration:.8,ease:[.12,.23,.5,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:10};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-10,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:-10,y:0};const transition3={delay:.2,duration:.8,ease:[.12,.23,.5,1],type:\"tween\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:10};const transition4={delay:.3,duration:.8,ease:[.12,.23,.5,1],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:10};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={\"LargeToSmall Fit\":\"iuAmi0JNo\",Fill:\"oDZPjRaxy\",XSFit:\"j2CZnnzdc\"};const getProps=({amount,description,description1,height,id,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4;return{...props,Ke4bDJa4G:(_ref=amount!==null&&amount!==void 0?amount:props.Ke4bDJa4G)!==null&&_ref!==void 0?_ref:\"43\",QBkfeo5Wb:(_ref1=description1!==null&&description1!==void 0?description1:props.QBkfeo5Wb)!==null&&_ref1!==void 0?_ref1:true,rrENjJm9M:(_ref2=title!==null&&title!==void 0?title:props.rrENjJm9M)!==null&&_ref2!==void 0?_ref2:\"Communities\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"iuAmi0JNo\",xEcyIGlnR:(_ref4=description!==null&&description!==void 0?description:props.xEcyIGlnR)!==null&&_ref4!==void 0?_ref4:\"Participating in active net collections\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Ke4bDJa4G,rrENjJm9M,xEcyIGlnR,QBkfeo5Wb,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"iuAmi0JNo\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-e7sq8p\",className,classNames),\"data-framer-name\":\"LargeToSmall Fit\",layoutDependency:layoutDependency,layoutId:\"iuAmi0JNo\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({j2CZnnzdc:{\"data-framer-name\":\"XSFit\"},oDZPjRaxy:{\"data-framer-name\":\"Fill\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4mbl82\",\"data-framer-name\":\"Frame 3303\",layoutDependency:layoutDependency,layoutId:\"b2krKELNt\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-jovzrj\",\"data-styles-preset\":\"NFvCjc1oJ\",children:\"43\"})}),className:\"framer-kl7q0d\",\"data-framer-name\":\"43\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"twM6_RS3j\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:Ke4bDJa4G,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({j2CZnnzdc:{__framer__enter:animation2,__framer__exit:animation3}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-bik29v\",\"data-styles-preset\":\"Y0r5wfAkg\",children:\"Communities\"})}),className:\"framer-gea3ht\",\"data-framer-name\":\"Communities\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VaoA7iyli\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:rrENjJm9M,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({j2CZnnzdc:{__framer__animate:{transition:transition2},__framer__enter:animation2,__framer__exit:animation3}},baseVariant,gestureVariant)})]}),QBkfeo5Wb&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aplj8j\",\"data-styles-preset\":\"K55tR_WNf\",children:\"Participating in active net collections\"})}),className:\"framer-ak6fca\",\"data-framer-name\":\"Participating in active net collections\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HFfbQvuTu\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.9},text:xEcyIGlnR,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({j2CZnnzdc:{__framer__animate:{transition:transition2},__framer__enter:animation2,__framer__exit:animation3}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yO2Vr.framer-l9zlr5, .framer-yO2Vr .framer-l9zlr5 { display: block; }\",\".framer-yO2Vr.framer-e7sq8p { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-yO2Vr .framer-4mbl82 { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-yO2Vr .framer-kl7q0d, .framer-yO2Vr .framer-gea3ht, .framer-yO2Vr .framer-ak6fca { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yO2Vr.framer-e7sq8p, .framer-yO2Vr .framer-4mbl82 { gap: 0px; } .framer-yO2Vr.framer-e7sq8p > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-yO2Vr.framer-e7sq8p > :first-child, .framer-yO2Vr .framer-4mbl82 > :first-child { margin-top: 0px; } .framer-yO2Vr.framer-e7sq8p > :last-child, .framer-yO2Vr .framer-4mbl82 > :last-child { margin-bottom: 0px; } .framer-yO2Vr .framer-4mbl82 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-yO2Vr.framer-v-xdel8q .framer-ak6fca { align-self: stretch; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 106.5\n * @framerIntrinsicWidth 268.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"j2CZnnzdc\":{\"layout\":[\"auto\",\"auto\"]},\"oDZPjRaxy\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"Ke4bDJa4G\":\"amount\",\"rrENjJm9M\":\"title\",\"xEcyIGlnR\":\"description\",\"QBkfeo5Wb\":\"description1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSB1di5zUx=withCSS(Component,css,\"framer-yO2Vr\");export default FramerSB1di5zUx;FramerSB1di5zUx.displayName=\"Sub Section / CaptionFootnote\";FramerSB1di5zUx.defaultProps={height:106.5,width:268.5};addPropertyControls(FramerSB1di5zUx,{variant:{options:[\"iuAmi0JNo\",\"j2CZnnzdc\",\"oDZPjRaxy\"],optionTitles:[\"LargeToSmall Fit\",\"XSFit\",\"Fill\"],title:\"Variant\",type:ControlType.Enum},Ke4bDJa4G:{defaultValue:\"43\",displayTextArea:false,title:\"Amount\",type:ControlType.String},rrENjJm9M:{defaultValue:\"Communities\",displayTextArea:true,title:\"Title\",type:ControlType.String},xEcyIGlnR:{defaultValue:\"Participating in active net collections\",displayTextArea:true,title:\"Description\",type:ControlType.String},QBkfeo5Wb:{defaultValue:true,title:\"Description\",type:ControlType.Boolean}});addFonts(FramerSB1di5zUx,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSB1di5zUx\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"268.5\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"Ke4bDJa4G\\\":\\\"amount\\\",\\\"rrENjJm9M\\\":\\\"title\\\",\\\"xEcyIGlnR\\\":\\\"description\\\",\\\"QBkfeo5Wb\\\":\\\"description1\\\"}\",\"framerIntrinsicHeight\":\"106.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"j2CZnnzdc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"oDZPjRaxy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c815cea)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/nrobjMZIix4R0guZWBPc/KTEd3eKEUKWIxh3WXxEH/DqZStQ3sd.js\";import SubSectionCaptionFootnote from\"https://framerusercontent.com/modules/cbGx04jPJm4J6SsATHo4/QbGOj5uZ4ahQ1ln1zn21/SB1di5zUx.js\";const RichTextWithFX=withFX(RichText);const SubSectionCaptionFootnoteFonts=getFonts(SubSectionCaptionFootnote);const SubSectionCaptionFootnoteControls=getPropertyControls(SubSectionCaptionFootnote);const cycleOrder=[\"rxxEliXqx\",\"NHnTvh3OZ\",\"gAkp1y_JZ\",\"xqzpjMbiO\"];const serializationHash=\"framer-TZduv\";const variantClassNames={gAkp1y_JZ:\"framer-v-rwen9p\",NHnTvh3OZ:\"framer-v-jnrx6l\",rxxEliXqx:\"framer-v-1u0mjz1\",xqzpjMbiO:\"framer-v-15uztos\"};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 isSet=value=>{return value!==undefined&&value!==null&&value!==\"\";};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:10,y:0};const transition2={delay:.1,duration:.8,ease:[.12,.23,.5,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:10,y:0};const transition3={delay:.2,duration:.8,ease:[.12,.23,.5,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:10,y:0};const transition4={delay:.3,duration:.8,ease:[.12,.23,.5,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:10,y:0};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};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 humanReadableEnumMap={\"LargeToSmall Fit\":\"iuAmi0JNo\",Fill:\"oDZPjRaxy\",XSFit:\"j2CZnnzdc\"};const humanReadableVariantMap={Desktop:\"rxxEliXqx\",Mobile:\"NHnTvh3OZ\",Oversize:\"xqzpjMbiO\",Tablet:\"gAkp1y_JZ\"};const getProps=({amount,amount2,amount3,description1,description11,description2,description21,description3,description31,height,id,line1,line2,line3,line4,padding,title,title2,title3,variant1,variant2,variant3,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableEnumMap_variant2,_ref5,_ref6,_ref7,_ref8,_ref9,_ref10,_ref11,_ref12,_ref13,_humanReadableVariantMap_props_variant,_ref14,_humanReadableEnumMap_variant3,_ref15,_ref16,_humanReadableEnumMap_variant1,_ref17,_ref18,_ref19,_ref20;return{...props,a0YzRYPXn:(_ref=description11!==null&&description11!==void 0?description11:props.a0YzRYPXn)!==null&&_ref!==void 0?_ref:\"sourced from fisheries around the world\",CjcKk__vQ:(_ref1=amount2!==null&&amount2!==void 0?amount2:props.CjcKk__vQ)!==null&&_ref1!==void 0?_ref1:\"100%\",DI4CzhXB0:(_ref2=description21!==null&&description21!==void 0?description21:props.DI4CzhXB0)!==null&&_ref2!==void 0?_ref2:\"with no filler, just nets.\\nPlease help.\",EpNiHh6Om:(_ref3=line2!==null&&line2!==void 0?line2:props.EpNiHh6Om)!==null&&_ref3!==void 0?_ref3:\"Line 2\",hDINXkuko:(_ref4=title2!==null&&title2!==void 0?title2:props.hDINXkuko)!==null&&_ref4!==void 0?_ref4:\"Post-Consumer \\nRecycled\",hj3leLMSl:(_ref6=(_ref5=(_humanReadableEnumMap_variant2=humanReadableEnumMap[variant2])!==null&&_humanReadableEnumMap_variant2!==void 0?_humanReadableEnumMap_variant2:variant2)!==null&&_ref5!==void 0?_ref5:props.hj3leLMSl)!==null&&_ref6!==void 0?_ref6:\"iuAmi0JNo\",j1YslqIh4:(_ref7=title!==null&&title!==void 0?title:props.j1YslqIh4)!==null&&_ref7!==void 0?_ref7:\"Recycled \\nFishing net\",kOwEdPnlb:(_ref8=title3!==null&&title3!==void 0?title3:props.kOwEdPnlb)!==null&&_ref8!==void 0?_ref8:\"Traceable\\nMaterial\",oTYzEzcM_:description2!==null&&description2!==void 0?description2:props.oTYzEzcM_,oWj8CuQtE:(_ref9=description31!==null&&description31!==void 0?description31:props.oWj8CuQtE)!==null&&_ref9!==void 0?_ref9:\"Transparent supply \\nchain that is third-party\\naudited and certified\",pc7sOKalJ:(_ref10=padding!==null&&padding!==void 0?padding:props.pc7sOKalJ)!==null&&_ref10!==void 0?_ref10:24,RRagPKEET:(_ref11=line1!==null&&line1!==void 0?line1:props.RRagPKEET)!==null&&_ref11!==void 0?_ref11:\"Line 1\",SLuYQ8gPl:(_ref12=amount3!==null&&amount3!==void 0?amount3:props.SLuYQ8gPl)!==null&&_ref12!==void 0?_ref12:\"100%\",teApN5e5U:(_ref13=amount!==null&&amount!==void 0?amount:props.teApN5e5U)!==null&&_ref13!==void 0?_ref13:\"100%\",uMVQUnGYQ:description1!==null&&description1!==void 0?description1:props.uMVQUnGYQ,variant:(_ref14=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref14!==void 0?_ref14:\"rxxEliXqx\",VesfLlTqf:(_ref16=(_ref15=(_humanReadableEnumMap_variant3=humanReadableEnumMap[variant3])!==null&&_humanReadableEnumMap_variant3!==void 0?_humanReadableEnumMap_variant3:variant3)!==null&&_ref15!==void 0?_ref15:props.VesfLlTqf)!==null&&_ref16!==void 0?_ref16:\"iuAmi0JNo\",XhYGobiQc:(_ref18=(_ref17=(_humanReadableEnumMap_variant1=humanReadableEnumMap[variant1])!==null&&_humanReadableEnumMap_variant1!==void 0?_humanReadableEnumMap_variant1:variant1)!==null&&_ref17!==void 0?_ref17:props.XhYGobiQc)!==null&&_ref18!==void 0?_ref18:\"iuAmi0JNo\",yYrS86NpN:(_ref19=line3!==null&&line3!==void 0?line3:props.yYrS86NpN)!==null&&_ref19!==void 0?_ref19:\"Line 3\",zvVseCXzg:description3!==null&&description3!==void 0?description3:props.zvVseCXzg,zxXq7DYUl:(_ref20=line4!==null&&line4!==void 0?line4:props.zxXq7DYUl)!==null&&_ref20!==void 0?_ref20:\"Line 4\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,RRagPKEET,EpNiHh6Om,yYrS86NpN,zxXq7DYUl,XhYGobiQc,teApN5e5U,j1YslqIh4,uMVQUnGYQ,a0YzRYPXn,hj3leLMSl,CjcKk__vQ,hDINXkuko,oTYzEzcM_,DI4CzhXB0,VesfLlTqf,SLuYQ8gPl,kOwEdPnlb,zvVseCXzg,oWj8CuQtE,pc7sOKalJ,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rxxEliXqx\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const visible=isSet(RRagPKEET);const visible1=isSet(EpNiHh6Om);const isDisplayed=value=>{if([\"NHnTvh3OZ\",\"gAkp1y_JZ\"].includes(baseVariant))return true;return value;};const visible2=isSet(yYrS86NpN);const visible3=isSet(zxXq7DYUl);const isDisplayed1=()=>{if([\"NHnTvh3OZ\",\"gAkp1y_JZ\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1u0mjz1\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"rxxEliXqx\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({gAkp1y_JZ:{\"data-framer-name\":\"Tablet\"},NHnTvh3OZ:{\"data-framer-name\":\"Mobile\"},xqzpjMbiO:{\"data-framer-name\":\"Oversize\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13914dy\",\"data-framer-name\":\"ScrimSectionFooter\",layoutDependency:layoutDependency,layoutId:\"beyxsGsZo\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,opacity:.6},variants:{xqzpjMbiO:{borderBottomLeftRadius:20,borderBottomRightRadius:20}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-78jrlp\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"fzb5cuqH1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x4gnra\",\"data-framer-name\":\"wrapText\",layoutDependency:layoutDependency,layoutId:\"ZSvQzH3MA\",style:{rotate:0},variants:{gAkp1y_JZ:{rotate:-90},NHnTvh3OZ:{rotate:-90}},children:[visible&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1k39zov\",\"data-styles-preset\":\"DqZStQ3sd\",children:\"Line 1\"})}),className:\"framer-14u789u\",\"data-framer-name\":\"Line 1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ySoQBR_4T\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:RRagPKEET,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gAkp1y_JZ:{__framer__styleAppearEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1k39zov\",\"data-styles-preset\":\"DqZStQ3sd\",children:\"dklsafdslfkdfaj;s\"})})},NHnTvh3OZ:{__framer__styleAppearEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1k39zov\",\"data-styles-preset\":\"DqZStQ3sd\",children:\"dklsafdslfkdfaj;s\"})})}},baseVariant,gestureVariant)}),isDisplayed(visible1)&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1k39zov\",\"data-styles-preset\":\"DqZStQ3sd\",children:\"Line 2\"})}),className:\"framer-1x8sfq8\",\"data-framer-name\":\"Line 2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qBPeU2nx_\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:EpNiHh6Om,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gAkp1y_JZ:{__framer__styleAppearEffectEnabled:undefined},NHnTvh3OZ:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant)}),isDisplayed(visible2)&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1k39zov\",\"data-styles-preset\":\"DqZStQ3sd\",children:\"Line 3\"})}),className:\"framer-cydtm4\",\"data-framer-name\":\"Line 3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"llcgxvM5I\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:yYrS86NpN,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gAkp1y_JZ:{__framer__styleAppearEffectEnabled:undefined},NHnTvh3OZ:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant)}),isDisplayed(visible3)&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1k39zov\",\"data-styles-preset\":\"DqZStQ3sd\",children:\"Line 4\"})}),className:\"framer-14wlv95\",\"data-framer-name\":\"Line 3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Q5SVyvnT4\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:zxXq7DYUl,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gAkp1y_JZ:{__framer__styleAppearEffectEnabled:undefined},NHnTvh3OZ:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant)})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-4w6sjt\",\"data-framer-name\":\"Spacer\",layoutDependency:layoutDependency,layoutId:\"YGGufYqa1\",style:{\"--74h1ww\":numberToPixelString(pc7sOKalJ)}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cmjkib\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"wN29lxsB_\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7twrg7-container\",layoutDependency:layoutDependency,layoutId:\"YQdkxvJGQ-container\",children:/*#__PURE__*/_jsx(SubSectionCaptionFootnote,{height:\"100%\",id:\"YQdkxvJGQ\",Ke4bDJa4G:teApN5e5U,layoutId:\"YQdkxvJGQ\",QBkfeo5Wb:uMVQUnGYQ,rrENjJm9M:j1YslqIh4,variant:XhYGobiQc,width:\"100%\",xEcyIGlnR:a0YzRYPXn})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yq2g8h-container\",layoutDependency:layoutDependency,layoutId:\"xNVqXscOo-container\",children:/*#__PURE__*/_jsx(SubSectionCaptionFootnote,{height:\"100%\",id:\"xNVqXscOo\",Ke4bDJa4G:CjcKk__vQ,layoutId:\"xNVqXscOo\",QBkfeo5Wb:oTYzEzcM_,rrENjJm9M:hDINXkuko,variant:hj3leLMSl,width:\"100%\",xEcyIGlnR:DI4CzhXB0})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kegdu3-container\",layoutDependency:layoutDependency,layoutId:\"EivNqVu3R-container\",children:/*#__PURE__*/_jsx(SubSectionCaptionFootnote,{height:\"100%\",id:\"EivNqVu3R\",Ke4bDJa4G:SLuYQ8gPl,layoutId:\"EivNqVu3R\",QBkfeo5Wb:zvVseCXzg,rrENjJm9M:kOwEdPnlb,variant:VesfLlTqf,width:\"100%\",xEcyIGlnR:oWj8CuQtE})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TZduv.framer-169tf2p, .framer-TZduv .framer-169tf2p { display: block; }\",\".framer-TZduv.framer-1u0mjz1 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 72px 0px 96px 0px; position: relative; width: 1512px; }\",\".framer-TZduv .framer-13914dy { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-TZduv .framer-78jrlp { align-content: flex-end; align-items: flex-end; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px 36px 0px 24px; position: relative; width: 240px; z-index: 1; }\",\".framer-TZduv .framer-x4gnra { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-TZduv .framer-14u789u, .framer-TZduv .framer-1x8sfq8, .framer-TZduv .framer-cydtm4, .framer-TZduv .framer-14wlv95 { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-TZduv .framer-4w6sjt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: var(--74h1ww); position: relative; width: 100%; }\",\".framer-TZduv .framer-cmjkib { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.9 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-evenly; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-TZduv .framer-7twrg7-container, .framer-TZduv .framer-yq2g8h-container, .framer-TZduv .framer-1kegdu3-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TZduv.framer-1u0mjz1, .framer-TZduv .framer-78jrlp, .framer-TZduv .framer-x4gnra, .framer-TZduv .framer-4w6sjt { gap: 0px; } .framer-TZduv.framer-1u0mjz1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-TZduv.framer-1u0mjz1 > :first-child { margin-left: 0px; } .framer-TZduv.framer-1u0mjz1 > :last-child { margin-right: 0px; } .framer-TZduv .framer-78jrlp > *, .framer-TZduv .framer-x4gnra > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-TZduv .framer-78jrlp > :first-child, .framer-TZduv .framer-x4gnra > :first-child, .framer-TZduv .framer-4w6sjt > :first-child { margin-top: 0px; } .framer-TZduv .framer-78jrlp > :last-child, .framer-TZduv .framer-x4gnra > :last-child, .framer-TZduv .framer-4w6sjt > :last-child { margin-bottom: 0px; } .framer-TZduv .framer-4w6sjt > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-TZduv.framer-v-jnrx6l.framer-1u0mjz1 { padding: 64px 0px 96px 0px; width: 390px; }\",\".framer-TZduv.framer-v-jnrx6l .framer-78jrlp { align-content: center; align-items: center; padding: 0px; width: 60px; }\",\".framer-TZduv.framer-v-jnrx6l .framer-x4gnra, .framer-TZduv.framer-v-rwen9p .framer-x4gnra { flex-direction: row; gap: 4px; justify-content: flex-end; order: 1; }\",\".framer-TZduv.framer-v-jnrx6l .framer-4w6sjt, .framer-TZduv.framer-v-jnrx6l .framer-7twrg7-container, .framer-TZduv.framer-v-rwen9p .framer-7twrg7-container { order: 0; }\",\".framer-TZduv.framer-v-jnrx6l .framer-cmjkib { flex-direction: column; gap: 36px; justify-content: flex-start; padding: 0px 48px 0px 48px; }\",\".framer-TZduv.framer-v-jnrx6l .framer-yq2g8h-container, .framer-TZduv.framer-v-rwen9p .framer-yq2g8h-container { order: 1; }\",\".framer-TZduv.framer-v-jnrx6l .framer-1kegdu3-container, .framer-TZduv.framer-v-rwen9p .framer-1kegdu3-container { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TZduv.framer-v-jnrx6l .framer-x4gnra, .framer-TZduv.framer-v-jnrx6l .framer-cmjkib { gap: 0px; } .framer-TZduv.framer-v-jnrx6l .framer-x4gnra > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-TZduv.framer-v-jnrx6l .framer-x4gnra > :first-child { margin-left: 0px; } .framer-TZduv.framer-v-jnrx6l .framer-x4gnra > :last-child { margin-right: 0px; } .framer-TZduv.framer-v-jnrx6l .framer-cmjkib > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-TZduv.framer-v-jnrx6l .framer-cmjkib > :first-child { margin-top: 0px; } .framer-TZduv.framer-v-jnrx6l .framer-cmjkib > :last-child { margin-bottom: 0px; } }\",\".framer-TZduv.framer-v-rwen9p.framer-1u0mjz1 { padding: 96px 0px 96px 0px; }\",\".framer-TZduv.framer-v-rwen9p .framer-78jrlp { align-content: center; align-items: center; padding: 0px; width: 107px; }\",\".framer-TZduv.framer-v-rwen9p .framer-4w6sjt { gap: 0px; order: 0; }\",\".framer-TZduv.framer-v-rwen9p .framer-cmjkib { flex-direction: column; gap: 56px; justify-content: flex-start; padding: 0px 96px 0px 96px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TZduv.framer-v-rwen9p .framer-x4gnra, .framer-TZduv.framer-v-rwen9p .framer-4w6sjt, .framer-TZduv.framer-v-rwen9p .framer-cmjkib { gap: 0px; } .framer-TZduv.framer-v-rwen9p .framer-x4gnra > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-TZduv.framer-v-rwen9p .framer-x4gnra > :first-child { margin-left: 0px; } .framer-TZduv.framer-v-rwen9p .framer-x4gnra > :last-child { margin-right: 0px; } .framer-TZduv.framer-v-rwen9p .framer-4w6sjt > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-TZduv.framer-v-rwen9p .framer-4w6sjt > :first-child, .framer-TZduv.framer-v-rwen9p .framer-cmjkib > :first-child { margin-top: 0px; } .framer-TZduv.framer-v-rwen9p .framer-4w6sjt > :last-child, .framer-TZduv.framer-v-rwen9p .framer-cmjkib > :last-child { margin-bottom: 0px; } .framer-TZduv.framer-v-rwen9p .framer-cmjkib > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",\".framer-TZduv.framer-v-15uztos .framer-13914dy { top: -24px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 271\n * @framerIntrinsicWidth 1512\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NHnTvh3OZ\":{\"layout\":[\"fixed\",\"auto\"]},\"gAkp1y_JZ\":{\"layout\":[\"fixed\",\"auto\"]},\"xqzpjMbiO\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"RRagPKEET\":\"line1\",\"EpNiHh6Om\":\"line2\",\"yYrS86NpN\":\"line3\",\"zxXq7DYUl\":\"line4\",\"XhYGobiQc\":\"variant1\",\"teApN5e5U\":\"amount\",\"j1YslqIh4\":\"title\",\"uMVQUnGYQ\":\"description1\",\"a0YzRYPXn\":\"description11\",\"hj3leLMSl\":\"variant2\",\"CjcKk__vQ\":\"amount2\",\"hDINXkuko\":\"title2\",\"oTYzEzcM_\":\"description2\",\"DI4CzhXB0\":\"description21\",\"VesfLlTqf\":\"variant3\",\"SLuYQ8gPl\":\"amount3\",\"kOwEdPnlb\":\"title3\",\"zvVseCXzg\":\"description3\",\"oWj8CuQtE\":\"description31\",\"pc7sOKalJ\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameryezzG8cuz=withCSS(Component,css,\"framer-TZduv\");export default FrameryezzG8cuz;FrameryezzG8cuz.displayName=\"Sub Section / SubSection\";FrameryezzG8cuz.defaultProps={height:271,width:1512};addPropertyControls(FrameryezzG8cuz,{variant:{options:[\"rxxEliXqx\",\"NHnTvh3OZ\",\"gAkp1y_JZ\",\"xqzpjMbiO\"],optionTitles:[\"Desktop\",\"Mobile\",\"Tablet\",\"Oversize\"],title:\"Variant\",type:ControlType.Enum},RRagPKEET:{defaultValue:\"Line 1\",displayTextArea:false,title:\"Line 1\",type:ControlType.String},EpNiHh6Om:{defaultValue:\"Line 2\",displayTextArea:false,title:\"Line 2\",type:ControlType.String},yYrS86NpN:{defaultValue:\"Line 3\",displayTextArea:false,title:\"Line 3\",type:ControlType.String},zxXq7DYUl:{defaultValue:\"Line 4\",displayTextArea:false,title:\"Line4\",type:ControlType.String},XhYGobiQc:(SubSectionCaptionFootnoteControls===null||SubSectionCaptionFootnoteControls===void 0?void 0:SubSectionCaptionFootnoteControls[\"variant\"])&&{...SubSectionCaptionFootnoteControls[\"variant\"],defaultValue:\"iuAmi0JNo\",description:undefined,hidden:undefined,title:\"Variant\"},teApN5e5U:{defaultValue:\"100%\",displayTextArea:false,title:\"Amount\",type:ControlType.String},j1YslqIh4:{defaultValue:\"Recycled \\nFishing net\",displayTextArea:true,title:\"Title\",type:ControlType.String},uMVQUnGYQ:{defaultValue:false,title:\"Description 1\",type:ControlType.Boolean},a0YzRYPXn:{defaultValue:\"sourced from fisheries around the world\",displayTextArea:true,title:\"Description 1\",type:ControlType.String},hj3leLMSl:(SubSectionCaptionFootnoteControls===null||SubSectionCaptionFootnoteControls===void 0?void 0:SubSectionCaptionFootnoteControls[\"variant\"])&&{...SubSectionCaptionFootnoteControls[\"variant\"],defaultValue:\"iuAmi0JNo\",description:undefined,hidden:undefined,title:\"Variant 2\"},CjcKk__vQ:{defaultValue:\"100%\",displayTextArea:false,title:\"Amount 2\",type:ControlType.String},hDINXkuko:{defaultValue:\"Post-Consumer \\nRecycled\",displayTextArea:true,title:\"Title 2\",type:ControlType.String},oTYzEzcM_:{defaultValue:false,title:\"Description 2\",type:ControlType.Boolean},DI4CzhXB0:{defaultValue:\"with no filler, just nets.\\nPlease help.\",displayTextArea:true,title:\"Description 2\",type:ControlType.String},VesfLlTqf:(SubSectionCaptionFootnoteControls===null||SubSectionCaptionFootnoteControls===void 0?void 0:SubSectionCaptionFootnoteControls[\"variant\"])&&{...SubSectionCaptionFootnoteControls[\"variant\"],defaultValue:\"iuAmi0JNo\",description:undefined,hidden:undefined,title:\"Variant 3\"},SLuYQ8gPl:{defaultValue:\"100%\",displayTextArea:false,title:\"Amount 3\",type:ControlType.String},kOwEdPnlb:{defaultValue:\"Traceable\\nMaterial\",displayTextArea:true,title:\"Title 3\",type:ControlType.String},zvVseCXzg:{defaultValue:false,title:\"Description 3\",type:ControlType.Boolean},oWj8CuQtE:{defaultValue:\"Transparent supply \\nchain that is third-party\\naudited and certified\",displayTextArea:true,title:\"Description 3\",type:ControlType.String},pc7sOKalJ:{defaultValue:24,min:0,title:\"Padding\",type:ControlType.Number}});addFonts(FrameryezzG8cuz,[{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\"}]},...SubSectionCaptionFootnoteFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryezzG8cuz\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1512\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"271\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"RRagPKEET\\\":\\\"line1\\\",\\\"EpNiHh6Om\\\":\\\"line2\\\",\\\"yYrS86NpN\\\":\\\"line3\\\",\\\"zxXq7DYUl\\\":\\\"line4\\\",\\\"XhYGobiQc\\\":\\\"variant1\\\",\\\"teApN5e5U\\\":\\\"amount\\\",\\\"j1YslqIh4\\\":\\\"title\\\",\\\"uMVQUnGYQ\\\":\\\"description1\\\",\\\"a0YzRYPXn\\\":\\\"description11\\\",\\\"hj3leLMSl\\\":\\\"variant2\\\",\\\"CjcKk__vQ\\\":\\\"amount2\\\",\\\"hDINXkuko\\\":\\\"title2\\\",\\\"oTYzEzcM_\\\":\\\"description2\\\",\\\"DI4CzhXB0\\\":\\\"description21\\\",\\\"VesfLlTqf\\\":\\\"variant3\\\",\\\"SLuYQ8gPl\\\":\\\"amount3\\\",\\\"kOwEdPnlb\\\":\\\"title3\\\",\\\"zvVseCXzg\\\":\\\"description3\\\",\\\"oWj8CuQtE\\\":\\\"description31\\\",\\\"pc7sOKalJ\\\":\\\"padding\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NHnTvh3OZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gAkp1y_JZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xqzpjMbiO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yezzG8cuz.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Suisse Intl Black\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Suisse Intl Black\",source:\"custom\",url:\"https://framerusercontent.com/assets/SmuNlbcU08k2Vpxke0FO1dR4PEY.woff2\"}]}];export const css=['.framer-FgC9B .framer-styles-preset-8qzybf:not(.rich-text-wrapper), .framer-FgC9B .framer-styles-preset-8qzybf.rich-text-wrapper h1 { --framer-font-family: \"Suisse Intl Black\", \"Suisse Intl Black Placeholder\", sans-serif; --framer-font-size: 64px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: uppercase; }','@media (max-width: 1999px) and (min-width: 1200px) { .framer-FgC9B .framer-styles-preset-8qzybf:not(.rich-text-wrapper), .framer-FgC9B .framer-styles-preset-8qzybf.rich-text-wrapper h1 { --framer-font-family: \"Suisse Intl Black\", \"Suisse Intl Black Placeholder\", sans-serif; --framer-font-size: 64px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: uppercase; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-FgC9B .framer-styles-preset-8qzybf:not(.rich-text-wrapper), .framer-FgC9B .framer-styles-preset-8qzybf.rich-text-wrapper h1 { --framer-font-family: \"Suisse Intl Black\", \"Suisse Intl Black Placeholder\", sans-serif; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: uppercase; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-FgC9B .framer-styles-preset-8qzybf:not(.rich-text-wrapper), .framer-FgC9B .framer-styles-preset-8qzybf.rich-text-wrapper h1 { --framer-font-family: \"Suisse Intl Black\", \"Suisse Intl Black Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: uppercase; } }'];export const className=\"framer-FgC9B\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5351ffe)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import HowItWorksCardHIW from\"#framer/local/canvasComponent/Ad_5uH6Kz/Ad_5uH6Kz.js\";import MediaImageOrVideo from\"#framer/local/canvasComponent/AnCswsJC9/AnCswsJC9.js\";import NavigationGlobalHeader from\"#framer/local/canvasComponent/EfyxiOJe_/EfyxiOJe_.js\";import BrandPartnersTickerBrands from\"#framer/local/canvasComponent/J72jSqUn5/J72jSqUn5.js\";import NavigationGlobalFooter from\"#framer/local/canvasComponent/jggfkcpos/jggfkcpos.js\";import ElementsSectionHeader from\"#framer/local/canvasComponent/K3ugyd0Fj/K3ugyd0Fj.js\";import ElementsStar from\"#framer/local/canvasComponent/KQWa4JKbz/KQWa4JKbz.js\";import HomeTextHeroAnimation2 from\"#framer/local/canvasComponent/n9FZRhtfl/n9FZRhtfl.js\";import NavigationMenuBar from\"#framer/local/canvasComponent/NqU40Vrm1/NqU40Vrm1.js\";import FaqHome from\"#framer/local/canvasComponent/OJPyEcdCN/OJPyEcdCN.js\";import SpacerBanner2 from\"#framer/local/canvasComponent/rFFL0k1B1/rFFL0k1B1.js\";import NavigationButton from\"#framer/local/canvasComponent/RsMsgLwpg/RsMsgLwpg.js\";import NextUpSectionNextUp from\"#framer/local/canvasComponent/VHYpKaidN/VHYpKaidN.js\";import MediaSurfaceBackground from\"#framer/local/canvasComponent/w6HRS0AnP/w6HRS0AnP.js\";import ElementsDivider from\"#framer/local/canvasComponent/wSeYMcVDO/wSeYMcVDO.js\";import NavigationNavMenu from\"#framer/local/canvasComponent/XkSrajQxr/XkSrajQxr.js\";import SubSectionSubSection from\"#framer/local/canvasComponent/yezzG8cuz/yezzG8cuz.js\";import*as sharedStyle4 from\"#framer/local/css/CnwjP9y6P/CnwjP9y6P.js\";import*as sharedStyle5 from\"#framer/local/css/EUzeuE8DD/EUzeuE8DD.js\";import*as sharedStyle2 from\"#framer/local/css/n0ql24qWm/n0ql24qWm.js\";import*as sharedStyle from\"#framer/local/css/PtHKjXgae/PtHKjXgae.js\";import*as sharedStyle3 from\"#framer/local/css/TMDGdNqxl/TMDGdNqxl.js\";import*as sharedStyle1 from\"#framer/local/css/x1_MUB9Lf/x1_MUB9Lf.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const MediaSurfaceBackgroundFonts=getFonts(MediaSurfaceBackground);const NavigationGlobalHeaderFonts=getFonts(NavigationGlobalHeader);const NavigationGlobalHeaderWithVariantAppearEffect=withVariantAppearEffect(NavigationGlobalHeader);const NavigationMenuBarFonts=getFonts(NavigationMenuBar);const NavigationNavMenuFonts=getFonts(NavigationNavMenu);const SpacerBanner2Fonts=getFonts(SpacerBanner2);const SpacerBanner2WithVariantAppearEffect=withVariantAppearEffect(SpacerBanner2);const MotionDivWithFX=withFX(motion.div);const ElementsStarFonts=getFonts(ElementsStar);const ElementsStarWithVariantAppearEffect=withVariantAppearEffect(ElementsStar);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const HomeTextHeroAnimation2Fonts=getFonts(HomeTextHeroAnimation2);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const EmbedFonts=getFonts(Embed);const NavigationButtonFonts=getFonts(NavigationButton);const RichTextWithFX=withFX(RichText);const ElementsSectionHeaderFonts=getFonts(ElementsSectionHeader);const ElementsDividerFonts=getFonts(ElementsDivider);const ElementsDividerWithVariantAppearEffect=withVariantAppearEffect(ElementsDivider);const MediaImageOrVideoFonts=getFonts(MediaImageOrVideo);const ContainerWithFX=withFX(Container);const SubSectionSubSectionFonts=getFonts(SubSectionSubSection);const HowItWorksCardHIWFonts=getFonts(HowItWorksCardHIW);const BrandPartnersTickerBrandsFonts=getFonts(BrandPartnersTickerBrands);const ImageWithFX=withFX(Image);const FaqHomeFonts=getFonts(FaqHome);const NextUpSectionNextUpFonts=getFonts(NextUpSectionNextUp);const NavigationGlobalFooterFonts=getFonts(NavigationGlobalFooter);const breakpoints={KyKZShAoi:\"(min-width: 810px) and (max-width: 1199px)\",Rg5yzVVxZ:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px) and (max-width: 1999px)\",xX3V4Ojb9:\"(min-width: 2000px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-hWiW2\";const variantClassNames={KyKZShAoi:\"framer-v-1x5cgpn\",Rg5yzVVxZ:\"framer-v-12p16ix\",WQLkyLRf1:\"framer-v-72rtr7\",xX3V4Ojb9:\"framer-v-11ykpu4\"};const transition1={delay:.1,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-130};const transition2={delay:.2,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:400,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:400,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition3={delay:2,duration:2,ease:[.12,.23,.5,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:0,y:0};const transition4={delay:.4,duration:1.2,ease:[.12,.23,.5,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={delay:.5,duration:1.2,ease:[.12,.23,.5,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-720,y:0};const transition6={delay:0,duration:.8,ease:[.12,.23,.5,1],type:\"tween\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-10,y:0};const transition7={delay:.1,duration:.8,ease:[.12,.23,.5,1],type:\"tween\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:-10,y:0};const transition8={delay:.2,duration:.8,ease:[.12,.23,.5,1],type:\"tween\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:-10,y:0};const transition9={delay:.3,duration:.8,ease:[.12,.23,.5,1],type:\"tween\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:-10,y:0};const transition10={delay:.4,duration:.8,ease:[.12,.23,.5,1],type:\"tween\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:-10,y:0};const transition11={delay:.5,duration:.8,ease:[.12,.23,.5,1],type:\"tween\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition11,x:-10,y:0};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition12={delay:.3,duration:1.2,ease:[.12,.23,.5,1],type:\"tween\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition12,x:0,y:0};const transition13={delay:.6,duration:.8,ease:[.12,.23,.5,1],type:\"tween\"};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition13,x:-10,y:0};const transition14={delay:.7,duration:.8,ease:[.12,.23,.5,1],type:\"tween\"};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition14,x:-10,y:0};const transition15={delay:.8,duration:.8,ease:[.12,.23,.5,1],type:\"tween\"};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition15,x:-10,y:0};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition16={delay:.1,duration:1.2,ease:[.12,.23,.5,1],type:\"tween\"};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition16,x:0,y:10};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-10};const animation24={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:-10};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const animation25={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:12};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Mobile:\"Rg5yzVVxZ\",Oversize:\"xX3V4Ojb9\",Tablet:\"KyKZShAoi\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const kreT7GLLi19rmofx=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{await delay(()=>overlay.hide(),200);});const Yp6GtyP0H1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"ioC33rFF_\");const ref1=React.useRef(null);const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"KyKZShAoi\",\"Rg5yzVVxZ\"].includes(baseVariant))return true;return false;};const ref3=React.useRef(null);const elementId1=useRouteElementId(\"sfkjZwlPj\");const elementId2=useRouteElementId(\"fOC0w0kqJ\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"pLjZzNKZj\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"ajG2pD9k1\");const ref6=React.useRef(null);const elementId5=useRouteElementId(\"tgoKDNPK7\");const ref7=React.useRef(null);const ref8=React.useRef(null);const elementId6=useRouteElementId(\"x2aX_K8kr\");const elementId7=useRouteElementId(\"MRQkMUeeM\");const ref9=React.useRef(null);const elementId8=useRouteElementId(\"MmpucerMV\");const ref10=React.useRef(null);const elementId9=useRouteElementId(\"zXGoVIpwU\");const ref11=React.useRef(null);const router=useRouter();const elementId10=useRouteElementId(\"j9rCAPHGl\");const ref12=React.useRef(null);const elementId11=useRouteElementId(\"LoowTPowt\");const ref13=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Rg5yzVVxZ\")return false;return true;};const elementId12=useRouteElementId(\"bSb9FVUn_\");const ref14=React.useRef(null);const elementId13=useRouteElementId(\"eyKIk2Buc\");const ref15=React.useRef(null);const elementId14=useRouteElementId(\"y5Z93efKn\");const ref16=React.useRef(null);const elementId15=useRouteElementId(\"wlduWfBQx\");const ref17=React.useRef(null);const elementId16=useRouteElementId(\"EBMpSgt4q\");const ref18=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"Rg5yzVVxZ\")return true;return false;};const elementId17=useRouteElementId(\"jEuqpRmeH\");const ref19=React.useRef(null);const elementId18=useRouteElementId(\"YdcRmCO7p\");const ref20=React.useRef(null);const elementId19=useRouteElementId(\"Bv1KjKMS_\");const ref21=React.useRef(null);const elementId20=useRouteElementId(\"DwjkrFehU\");useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-5022d85b-0b53-4afe-ac84-f257a81ea692, rgb(10, 15, 16)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:`max(100vw, ${componentViewport?.width||\"100vw\"})`,y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bn32rh-container\",layoutScroll:true,nodeId:\"el2g7_x1b\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MediaSurfaceBackground,{height:\"100%\",id:\"el2g7_x1b\",layoutId:\"el2g7_x1b\",style:{height:\"100%\",width:\"100%\"},variant:\"Tddmt4YwP\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1uqws3c\",\"data-framer-name\":\"TopNav\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-126147v-container\",\"data-framer-name\":\"NavBar\",id:elementId,name:\"NavBar\",nodeId:\"ioC33rFF_\",ref:ref2,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{__framer__targets:[{offset:-200,ref:ref1,target:\"rf4nuSput\"}],variant:\"D6t4sQIg_\"},Rg5yzVVxZ:{__framer__targets:[{offset:-200,ref:ref1,target:\"i59QtTlj2\"}],variant:\"LPPpehEuj\"},xX3V4Ojb9:{variant:\"Y8E5RAufL\"}},children:/*#__PURE__*/_jsx(NavigationGlobalHeaderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:-200,ref:ref1,target:\"qiTvIALJY\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,aSSRTEV6w:\"CvWtmbA5Q\",BxSEcDyTP:\"l5k8tRzPx\",height:\"100%\",i8ClrODP6:false,id:\"ioC33rFF_\",layoutId:\"ioC33rFF_\",name:\"NavBar\",oltZOtBZ3:\"l5k8tRzPx\",QAprSHgOg:0,rrGwkmBcd:\"lCS4W6fJV\",style:{width:\"100%\"},U2QBNeD0o:\"l5k8tRzPx\",variant:\"mIEGovled\",width:\"100%\",wLH1IElD1:\"l5k8tRzPx\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r5s5h6 hidden-72rtr7 hidden-11ykpu4\",\"data-framer-name\":\"MenuBar\",id:\"r5s5h6\",onTap:onTap3bnx0g({overlay}),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{y:30},Rg5yzVVxZ:{y:30}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-3ftwlu-container\",\"data-framer-name\":\"MenuBar\",name:\"MenuBar\",nodeId:\"qiE0v386e\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NavigationMenuBar,{height:\"100%\",id:\"qiE0v386e\",layoutId:\"qiE0v386e\",name:\"MenuBar\",style:{height:\"100%\",width:\"100%\"},variant:\"dyFjZfH0r\",width:\"100%\",Ykcwga7Gh:0})})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.2,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1wd1xi0\"),\"data-framer-portal-id\":\"r5s5h6\",exit:{opacity:0,transition:{delay:.1,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"uYKDo6PyP\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rg5yzVVxZ:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"500px\",children:/*#__PURE__*/_jsx(Container,{animate:animation2,className:cx(scopingClassNames,\"framer-19aofav-container\"),\"data-framer-portal-id\":\"r5s5h6\",exit:animation1,initial:animation3,nodeId:\"iDbpSylpb\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rg5yzVVxZ:{variant:\"xDnTE8isv\"}},children:/*#__PURE__*/_jsx(NavigationNavMenu,{height:\"100%\",id:\"iDbpSylpb\",kreT7GLLi:kreT7GLLi19rmofx({overlay}),layoutId:\"iDbpSylpb\",style:{height:\"100%\",width:\"100%\"},variant:\"rU1PwCypB\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:cx(scopingClassNames,\"framer-106ahwz\"),\"data-framer-name\":\"MenuBar\",\"data-framer-portal-id\":\"r5s5h6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-145lq9q-container\",nodeId:\"yeHbqng7H\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SpacerBanner2WithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:-200,ref:ref1,target:\"Ft8A5HBHK\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"yeHbqng7H\",layoutId:\"yeHbqng7H\",style:{width:\"100%\"},variant:\"OHftPzT1j\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"48px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-d9tlsm-container\",\"data-framer-name\":\"MenuBar1\",name:\"MenuBar1\",nodeId:\"evSqC1hzd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NavigationMenuBar,{height:\"100%\",id:\"evSqC1hzd\",layoutId:\"evSqC1hzd\",name:\"MenuBar1\",style:{height:\"100%\",width:\"100%\"},variant:\"WTEJpQfHi\",width:\"100%\",Ykcwga7Gh:0,Yp6GtyP0H:Yp6GtyP0H1wnntms({overlay})})})})]})]}),getContainer())})})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tegmn2\",\"data-framer-name\":\"sectionStar\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ff3c6i\",\"data-framer-name\":\"spacerVh\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ozlgwm\",\"data-framer-name\":\"spacerNarie\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18hkqgz\",\"data-framer-name\":\"wrapStar\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-f2lmx\",\"data-framer-name\":\"spacerNetPlus\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{y:742},Rg5yzVVxZ:{y:761},xX3V4Ojb9:{y:761}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:3,y:749,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{animate:animation4,initial:animation5,optimized:true}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{className:\"framer-1tckr0v-container\",\"data-framer-appear-id\":\"1tckr0v\",nodeId:\"f3NnVvBV9\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{__framer__variantAppearEffectEnabled:undefined},Rg5yzVVxZ:{__framer__variantAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ElementsStarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:-620,ref:ref3,target:\"YTQUBW5M3\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"f3NnVvBV9\",layoutId:\"f3NnVvBV9\",variant:\"deZUOm0cE\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8dbxh9\",\"data-framer-name\":\"Main\",id:elementId1,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wes3qn\",\"data-framer-name\":\"lineNetPlus\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xuczgb\",\"data-framer-name\":\"spacerVh\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s72vk6\",\"data-framer-name\":\"spacerNarie\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8g4o9\",\"data-framer-name\":\"spacerNetPlus\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11h3on8\",\"data-framer-name\":\"wrapLine\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation6,className:\"framer-16phhf5\",\"data-framer-appear-id\":\"16phhf5\",\"data-framer-name\":\"Line\",initial:animation5,optimized:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9e8yk0\",\"data-framer-name\":\"sectionHero\",id:elementId2,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9uskz9\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mv8p4o\",\"data-framer-name\":\"spacerVh\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pts53l\",\"data-framer-name\":\"scrim-target\",id:elementId3,ref:ref5})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{width:`calc(${componentViewport?.width||\"100vw\"} - 96px)`,y:(componentViewport?.y||0)+0+0+0+0+0+0+0+316},Rg5yzVVxZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+0+0+0+0+0+0+316},xX3V4Ojb9:{width:`calc((min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 320px) * 1.2)`,y:(componentViewport?.y||0)+0+0+0+0+0+0+0+316}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:434,width:`calc(${componentViewport?.width||\"100vw\"} - 320px)`,y:(componentViewport?.y||0)+0+0+0+0+0+0+0+304,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hyy3ga-container\",nodeId:\"aiXl17urX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{variant:\"PBzb7xCxm\"},Rg5yzVVxZ:{variant:\"PBzb7xCxm\"}},children:/*#__PURE__*/_jsx(HomeTextHeroAnimation2,{height:\"100%\",id:\"aiXl17urX\",layoutId:\"aiXl17urX\",style:{height:\"100%\",width:\"100%\"},variant:\"k33ljVBlz\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ttvg5d\",\"data-framer-name\":\"Wrap - Logo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+0+766+0+0),pixelHeight:42,pixelWidth:90,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/moQktyKuYu6SorJZeQveG8qftWA.svg\"}},Rg5yzVVxZ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+0+766+0+0),pixelHeight:42,pixelWidth:90,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/moQktyKuYu6SorJZeQveG8qftWA.svg\"}},xX3V4Ojb9:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+0+766+0+0),pixelHeight:42,pixelWidth:90,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/moQktyKuYu6SorJZeQveG8qftWA.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation7,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+0+754+0+0),pixelHeight:42,pixelWidth:90,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/moQktyKuYu6SorJZeQveG8qftWA.svg\"},className:\"framer-1tj0i4l\",\"data-framer-appear-id\":\"1tj0i4l\",\"data-framer-name\":\"LogoNetPlus\",initial:animation8,optimized:true,style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pmsu4g\",\"data-framer-name\":\"star-start\",id:elementId4,ref:ref6})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ptklvn\",\"data-framer-name\":\"sectionSummary\",id:elementId5,ref:ref7,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-gwvjnp\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{__framer__styleAppearEffectEnabled:undefined},Rg5yzVVxZ:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref8,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1guiovm\",\"data-framer-name\":\"FeatureTile\",id:elementId6,ref:ref8,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+0+0+0+64+0),pixelHeight:110,pixelWidth:510,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/P4NnfcGc7TfXU0VclMK7fCpCU8.svg\"}},Rg5yzVVxZ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+0+0+0+36+0),pixelHeight:110,pixelWidth:510,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/P4NnfcGc7TfXU0VclMK7fCpCU8.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1200+0+0+0+64+0),pixelHeight:110,pixelWidth:510,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/P4NnfcGc7TfXU0VclMK7fCpCU8.svg\"},className:\"framer-1izbvy2\",\"data-framer-name\":\"imgHeader\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6s7vy9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UkqNQMqsC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe \\n            loading=\"lazy\" title=\"APEX Evolution by Outerknown\"\\n            src=\"https://play.gumlet.io/embed/67db37eb0f9569535c051c09\"\\n            style=\"border:none; position: absolute; top: 0; left: 0; background:true;height: 100%; width: 100%\"\\n          allow=\"accelerometer; gyroscope; autoplay; encrypted-media; picture-in-picture; fullscreen;\">\\n          </iframe>',id:\"UkqNQMqsC\",layoutId:\"UkqNQMqsC\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://drive.google.com/file/d/1RBF33Un5SIQgsoiUp0lA7q8hTIpQ0WcM/\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+0+0+0+64+505),pixelHeight:55,pixelWidth:460,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WZHMheJuOxb00ZMaACF0cd3ODs.svg\"}},Rg5yzVVxZ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+0+0+0+36+441),pixelHeight:55,pixelWidth:460,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WZHMheJuOxb00ZMaACF0cd3ODs.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1200+0+0+0+64+505),pixelHeight:55,pixelWidth:460,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WZHMheJuOxb00ZMaACF0cd3ODs.svg\"},className:\"framer-15rmve9\",\"data-framer-name\":\"imgLogoLockup\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{y:(componentViewport?.y||0)+0+0+0+1e3+0+0+0+64+605},Rg5yzVVxZ:{y:(componentViewport?.y||0)+0+0+0+1e3+0+0+0+36+509}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+1200+0+0+0+64+605,children:/*#__PURE__*/_jsx(Container,{className:\"framer-emvy5v-container\",nodeId:\"Mo10_KpCl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NavigationButton,{bmfPW78Z7:\"https://www.outerknown.com/pages/apex-evolution\",EqwQqQdNK:true,height:\"100%\",Ia0McjoIm:0,id:\"Mo10_KpCl\",layoutId:\"Mo10_KpCl\",lObK378T6:false,OzktHB1SZ:true,Q3g_CPoK1:-90,qKlaRm3Cl:\"Explore the Lineup\",variant:\"gvImo0wK0\",width:\"100%\"})})})})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3g6thm\",\"data-framer-name\":\"sectionSummary\",id:elementId7,ref:ref9,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-a56csp\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wvaxts\",\"data-framer-name\":\"primaryContainer\",id:elementId8,ref:ref10,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-32xoxz\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ho152w\",\"data-framer-name\":\"wrapHeading\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-20mefg\",\"data-styles-preset\":\"PtHKjXgae\",children:\"The\"})}),className:\"framer-zuprf3\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xzhq1c\",\"data-framer-name\":\"Span\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-20mefg\",\"data-styles-preset\":\"PtHKjXgae\",children:\"NetPLus\"})}),className:\"framer-gddh4g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-8qzybf\",\"data-styles-preset\":\"x1_MUB9Lf\",children:\"\\xae\"})}),className:\"framer-1axwu78\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-20mefg\",\"data-styles-preset\":\"PtHKjXgae\",children:\"Difference\"})}),className:\"framer-2lyq6k\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kyymrj\",\"data-framer-name\":\"wrapParagraph\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-76z34h\",\"data-styles-preset\":\"n0ql24qWm\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"NetPlus is Bureo\u2019s signature material made from post-consumer recycled fishing nets, reducing one of the most harmful forms of ocean plastic pollution while empowering fishing communities around the world.\"})}),className:\"framer-1t6se2g\",\"data-framer-name\":\"To prevent further damage to our oceans and avoid the worst impacts of plastic pollution, we are looking beyond standard recycling methods through active participation in repurposing the most harmful plastics. At Bureo, we believe that converting discarded fishing nets into high quality yarns, allows all participants in the product lifecycle to make a positive impact.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3r4cad\",\"data-framer-name\":\"Unordered List\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vy5ew9\",\"data-framer-name\":\"Line Item 1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ct45nv\",\"data-framer-name\":\"wrapIcon\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1773+0+294+0+503+0+0+0+0+22.8871),pixelHeight:62,pixelWidth:62,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/03qv4tmYRfxo1BuIp3QxxCNZ3I.svg\"}},Rg5yzVVxZ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1621+0+148+0+479+0+0+0+0+13.5),pixelHeight:62,pixelWidth:62,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/03qv4tmYRfxo1BuIp3QxxCNZ3I.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1973+0+294+0+503+0+0+0+0+28.5),pixelHeight:62,pixelWidth:62,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/03qv4tmYRfxo1BuIp3QxxCNZ3I.svg\"},className:\"framer-1hwr7wn\",\"data-framer-name\":\"icNet\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-184m0fd\",\"data-framer-name\":\"wrapText\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZUludGwtUmVndWxhci1XZWJTIMK2\",\"--framer-font-family\":'\"SuisseIntl-Regular-WebS \\xb6\", \"SuisseIntl-Regular-WebS \\xb6 Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"100% Recycled Fishing Nets\"})})},Rg5yzVVxZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIE1lZGl1bQ==\",\"--framer-font-family\":'\"Suisse Intl Medium\", \"Suisse Intl Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"100% Recycled Fishing Nets\"})}),fonts:[\"CUSTOM;Suisse Intl Medium\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZUludGwtUmVndWxhci1XZWJTIMK2\",\"--framer-font-family\":'\"SuisseIntl-Regular-WebS \\xb6\", \"SuisseIntl-Regular-WebS \\xb6 Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"100% Recycled Fishing Nets\"})}),className:\"framer-6xbxhz\",fonts:[\"CUSTOM;SuisseIntl-Regular-WebS \\xb6\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bwupjf\",\"data-framer-name\":\"Line Item 2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18npc8x\",\"data-framer-name\":\"wrapIcon\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1773+0+294+0+503+0+78.7742+2.2796+0+-1.6129),pixelHeight:50,pixelWidth:63,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WdvujejOMWmjMSerLX41vj60lBQ.svg\"}},Rg5yzVVxZ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1621+0+148+0+479+0+52+0+0+-11),pixelHeight:50,pixelWidth:63,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WdvujejOMWmjMSerLX41vj60lBQ.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1973+0+294+0+503+0+106+0+0+4),pixelHeight:50,pixelWidth:63,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WdvujejOMWmjMSerLX41vj60lBQ.svg\"},className:\"framer-1xpu6z8\",\"data-framer-name\":\"icCheck\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10fdncb\",\"data-framer-name\":\"wrapText\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZUludGwtUmVndWxhci1XZWJTIMK2\",\"--framer-font-family\":'\"SuisseIntl-Regular-WebS \\xb6\", \"SuisseIntl-Regular-WebS \\xb6 Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Fully Traceable Material\"})})},Rg5yzVVxZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIE1lZGl1bQ==\",\"--framer-font-family\":'\"Suisse Intl Medium\", \"Suisse Intl Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Fully Traceable Material\"})}),fonts:[\"CUSTOM;Suisse Intl Medium\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZUludGwtUmVndWxhci1XZWJTIMK2\",\"--framer-font-family\":'\"SuisseIntl-Regular-WebS \\xb6\", \"SuisseIntl-Regular-WebS \\xb6 Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Fully Traceable Material\"})}),className:\"framer-1ko3u0m\",fonts:[\"CUSTOM;SuisseIntl-Regular-WebS \\xb6\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xfen7\",\"data-framer-name\":\"Line Item 3\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-z063lj\",\"data-framer-name\":\"wrapIcon\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1773+0+294+0+503+0+162.1075+2.2796+0+.3871),pixelHeight:48,pixelWidth:65,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vsRdUxElXs7F3nLRvMqyyyCE.svg\"}},Rg5yzVVxZ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1621+0+148+0+479+0+104+0+0+-9),pixelHeight:48,pixelWidth:65,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vsRdUxElXs7F3nLRvMqyyyCE.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1973+0+294+0+503+0+212+0+0+6),pixelHeight:48,pixelWidth:65,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vsRdUxElXs7F3nLRvMqyyyCE.svg\"},className:\"framer-1c0v4fv\",\"data-framer-name\":\"icPeople\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6gft77\",\"data-framer-name\":\"wrapText\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZUludGwtUmVndWxhci1XZWJTIMK2\",\"--framer-font-family\":'\"SuisseIntl-Regular-WebS \\xb6\", \"SuisseIntl-Regular-WebS \\xb6 Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Empowers Fishing Communities\"})})},Rg5yzVVxZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZUludGwtUmVndWxhci1XZWJTIMK2\",\"--framer-font-family\":'\"SuisseIntl-Regular-WebS \\xb6\", \"SuisseIntl-Regular-WebS \\xb6 Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Empowers Fishing Communities\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZUludGwtUmVndWxhci1XZWJTIMK2\",\"--framer-font-family\":'\"SuisseIntl-Regular-WebS \\xb6\", \"SuisseIntl-Regular-WebS \\xb6 Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Empowers Fishing Communities\"})}),className:\"framer-1fddu5b\",fonts:[\"CUSTOM;SuisseIntl-Regular-WebS \\xb6\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jfnvnv\",\"data-framer-name\":\"Line Item 4\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ygbkp5\",\"data-framer-name\":\"wrapIcon\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1773+0+294+0+503+0+245.4408+2.2796+0+-1.6129),pixelHeight:48,pixelWidth:104,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/b6AEKtTp7w91rpORF9JCwULUsM.svg\"}},Rg5yzVVxZ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1621+0+148+0+479+0+156+0+0+-11),pixelHeight:48,pixelWidth:104,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/b6AEKtTp7w91rpORF9JCwULUsM.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1973+0+294+0+503+0+318+0+0+4),pixelHeight:48,pixelWidth:104,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/b6AEKtTp7w91rpORF9JCwULUsM.svg\"},className:\"framer-w16cei\",\"data-framer-name\":\"icWhale\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-942vrd\",\"data-framer-name\":\"wrapText\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZUludGwtUmVndWxhci1XZWJTIMK2\",\"--framer-font-family\":'\"SuisseIntl-Regular-WebS \\xb6\", \"SuisseIntl-Regular-WebS \\xb6 Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Protects Marine Ecosystems\"})})},Rg5yzVVxZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZUludGwtUmVndWxhci1XZWJTIMK2\",\"--framer-font-family\":'\"SuisseIntl-Regular-WebS \\xb6\", \"SuisseIntl-Regular-WebS \\xb6 Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Protects Marine Ecosystems\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZUludGwtUmVndWxhci1XZWJTIMK2\",\"--framer-font-family\":'\"SuisseIntl-Regular-WebS \\xb6\", \"SuisseIntl-Regular-WebS \\xb6 Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Protects Marine Ecosystems\"})}),className:\"framer-4dier3\",fonts:[\"CUSTOM;SuisseIntl-Regular-WebS \\xb6\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-las8am\",\"data-framer-name\":\"sectionMaterial\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{y:(componentViewport?.y||0)+0+0+0+2866.7741+0+0},Rg5yzVVxZ:{y:(componentViewport?.y||0)+0+0+0+2432+0+0},xX3V4Ojb9:{width:`min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:735,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+3146+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18ajie3-container\",nodeId:\"zAAIQkNTu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{variant:\"OgC6dSxu8\"},Rg5yzVVxZ:{crQxMbFm1:\"NetPlus\",variant:\"oy71nKVIp\",WPciKgCD7:\"Material\"}},children:/*#__PURE__*/_jsx(ElementsSectionHeader,{crQxMbFm1:\"NetPlus Material\",height:\"100%\",id:\"zAAIQkNTu\",layoutId:\"zAAIQkNTu\",LfIxuHp5W:true,style:{width:\"100%\"},variant:\"IcIUNVdz5\",width:\"100%\",WPciKgCD7:\"\",X1OhyZ8tT:true})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k7zr9y\",\"data-framer-name\":\"PrimaryContainer\",id:elementId9,ref:ref11,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2943,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2866.7741+0+735+0),pixelHeight:5886,pixelWidth:400,positionX:\"left\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} / 5)`,src:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg 400w\"}},Rg5yzVVxZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2943,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2432+0+735+0),pixelHeight:5886,pixelWidth:400,positionX:\"left\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} / 4)`,src:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg 400w\"}},xX3V4Ojb9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2943,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3146+0+735+0),pixelHeight:5886,pixelWidth:400,positionX:\"left\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) * 0.1398)`,src:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg 400w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2943,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3146+0+735+0),pixelHeight:5886,pixelWidth:400,positionX:\"left\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.14)`,src:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg 400w\"},className:\"framer-8qzvxo\",\"data-framer-name\":\"icScales\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f5976x\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xhov2l\",\"data-framer-name\":\"Text and Button\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f6sl9h\",\"data-framer-name\":\"wrapText\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation21,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ydi1h5\",\"data-framer-name\":\"wrapHeading\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-zj9b89\",\"data-styles-preset\":\"TMDGdNqxl\",children:\"A New Wave of Recycled Material, From Fishing Nets to Finished Goods\"})}),className:\"framer-1aajgx7\",\"data-framer-name\":\"Our proprietary NetPlus\\xae material is made from 100% post-consumer recycled fishing nets; in effort to help prevent harmful plastics from entering our oceans.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 72px, 600px) - 12px)`,y:(componentViewport?.y||0)+0+0+0+2866.7741+0+735+0+0+40+0+0+0+0+54.08},Rg5yzVVxZ:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 856px)`,y:(componentViewport?.y||0)+0+0+0+2432+0+735+0+0+36+0+0+0+0+54.08},xX3V4Ojb9:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 192px, 1032px) - 24px)`,y:(componentViewport?.y||0)+0+0+0+3146+0+735+0+0+48+0+0+0+0+58.08}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(min(${componentViewport?.width||\"100vw\"} - 128px, 856px) - 24px)`,y:(componentViewport?.y||0)+0+0+0+3146+0+735+0+0+40+0+0+0+0+58.08,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5hel5t-container\",nodeId:\"Y5LRRirQw\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsDividerWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"YAqcdi_Gu\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"UW_L85gd9\",height:\"100%\",id:\"Y5LRRirQw\",K0Es3jXZc:0,kDWvA7aVu:\"rgb(0, 0, 0)\",layoutId:\"Y5LRRirQw\",style:{height:\"100%\",width:\"100%\"},variant:\"UW_L85gd9\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-co66y7\",\"data-framer-name\":\"wrapParagraph\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-76z34h\",\"data-styles-preset\":\"n0ql24qWm\",children:\"Giving discarded fishing nets a fresh start, NetPlus material is a high-quality, high-impact solution embraced by industry-leading brands ready to take their materials program to the next level. From performance fabrics to hat brims and more, the possibilities with NetPlus material are endless.\"})}),className:\"framer-inl19r\",\"data-framer-name\":\"To prevent further damage to our oceans and avoid the worst impacts of plastic pollution, we are looking beyond standard recycling methods through active participation in repurposing the most harmful plastics. At Bureo, we believe that converting discarded fishing nets into high quality yarns, allows all participants in the product lifecycle to make a positive impact.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-55ogsj\",\"data-framer-name\":\"wrapButton\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"j8t8Ye8DD\"},implicitPathVariables:undefined},{href:{webPageId:\"j8t8Ye8DD\"},implicitPathVariables:undefined},{href:{webPageId:\"j8t8Ye8DD\"},implicitPathVariables:undefined},{href:{webPageId:\"j8t8Ye8DD\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{y:(componentViewport?.y||0)+0+0+0+2866.7741+0+735+0+0+40+0+0+235.28+24+0},Rg5yzVVxZ:{y:(componentViewport?.y||0)+0+0+0+2432+0+735+0+0+36+0+0+235.28+24+0},xX3V4Ojb9:{y:(componentViewport?.y||0)+0+0+0+3146+0+735+0+0+48+0+0+243.28+32+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+3146+0+735+0+0+40+0+0+243.28+24+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9la5dv-container\",nodeId:\"RaXx2yomY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{bmfPW78Z7:resolvedLinks[2]},Rg5yzVVxZ:{bmfPW78Z7:resolvedLinks[3]},xX3V4Ojb9:{bmfPW78Z7:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(NavigationButton,{bmfPW78Z7:resolvedLinks[0],EqwQqQdNK:true,height:\"100%\",Ia0McjoIm:100,id:\"RaXx2yomY\",layoutId:\"RaXx2yomY\",lObK378T6:false,OzktHB1SZ:true,Q3g_CPoK1:-90,qKlaRm3Cl:\"Discover NetPlus\",variant:\"IGRy7TeNw\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cno8mc\",\"data-framer-name\":\"Media\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{width:`calc((${componentViewport?.width||\"100vw\"} - 72px) / 2.144)`,y:(componentViewport?.y||0)+0+0+0+2866.7741+0+735+0+0+40+363.28+63},Rg5yzVVxZ:{height:307.5,width:`calc((${componentViewport?.width||\"100vw\"} - 48px) * 0.9006)`,y:(componentViewport?.y||0)+0+0+0+2432+0+735+0+0+36+355.28+264.25},xX3V4Ojb9:{width:`calc((min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 192px) / 2.144)`,y:(componentViewport?.y||0)+0+0+0+3146+0+735+0+0+48+387.28+63}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:500,width:`calc((${componentViewport?.width||\"100vw\"} - 128px) / 2.144)`,y:(componentViewport?.y||0)+0+0+0+3146+0+735+0+0+40+379.28+63,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-16}},{offset:250,ref:ref11,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:16}}]},Rg5yzVVxZ:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-12}},{offset:250,ref:ref11,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:12}}],transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-36}},{offset:250,ref:ref11,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:36}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1husqhb-container\",nodeId:\"IUH1OgVib\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(MediaImageOrVideo,{e4Ym1Vxl5:true,gMdX_deKS:100,height:\"100%\",id:\"IUH1OgVib\",Kvqv89Mc_:100,layoutId:\"IUH1OgVib\",LBVoRH8kq:false,lmU_1OTAg:0,r_ch5X2GA:addImageAlt({pixelHeight:1280,pixelWidth:1920,src:\"https://framerusercontent.com/images/AnCD6z279stMLmPyMdlzZ5oXF4.jpg\",srcSet:\"https://framerusercontent.com/images/AnCD6z279stMLmPyMdlzZ5oXF4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AnCD6z279stMLmPyMdlzZ5oXF4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AnCD6z279stMLmPyMdlzZ5oXF4.jpg 1920w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"OscJZl1lC\",width:\"100%\",XxEktfeyW:false,z4FgYf_gC:\"GUY9G1PGy\",ZU06hmjR5:50})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{width:`calc((${componentViewport?.width||\"100vw\"} - 72px) * 0.3981)`,y:(componentViewport?.y||0)+0+0+0+2866.7741+0+735+0+0+40+363.28+309},Rg5yzVVxZ:{height:92.5,width:`calc((${componentViewport?.width||\"100vw\"} - 48px) * 0.75)`,y:(componentViewport?.y||0)+0+0+0+2432+0+735+0+0+36+355.28+375.75},xX3V4Ojb9:{width:`calc((min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 192px) * 0.3981)`,y:(componentViewport?.y||0)+0+0+0+3146+0+735+0+0+48+387.28+309}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:164,width:`calc((${componentViewport?.width||\"100vw\"} - 128px) * 0.3981)`,y:(componentViewport?.y||0)+0+0+0+3146+0+735+0+0+40+379.28+309,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k5htfn-container\",nodeId:\"XsqTQtWma\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MediaImageOrVideo,{e4Ym1Vxl5:false,gMdX_deKS:100,height:\"100%\",id:\"XsqTQtWma\",Kvqv89Mc_:100,layoutId:\"XsqTQtWma\",LBVoRH8kq:false,lmU_1OTAg:0,MV2qrKvJu:\"https://framerusercontent.com/assets/6pKvVWQwLf3qCdJ1wqj1jkfMOrY.mp4\",style:{height:\"100%\",width:\"100%\"},variant:\"RLqqFNnJZ\",width:\"100%\",XxEktfeyW:true,z4FgYf_gC:\"PbgaGQT3c\",ZU06hmjR5:100})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{width:`calc((${componentViewport?.width||\"100vw\"} - 72px) * 0.3409)`,y:(componentViewport?.y||0)+0+0+0+2866.7741+0+735+0+0+40+363.28+4},Rg5yzVVxZ:{height:175,width:`calc((${componentViewport?.width||\"100vw\"} - 48px) * 0.95)`,y:(componentViewport?.y||0)+0+0+0+2432+0+735+0+0+36+355.28+0},xX3V4Ojb9:{width:`calc((min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 192px) * 0.3409)`,y:(componentViewport?.y||0)+0+0+0+3146+0+735+0+0+48+387.28+4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:260,width:`calc((${componentViewport?.width||\"100vw\"} - 128px) * 0.3409)`,y:(componentViewport?.y||0)+0+0+0+3146+0+735+0+0+40+379.28+4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14u143v-container\",nodeId:\"n9yS_L_jx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MediaImageOrVideo,{e4Ym1Vxl5:false,gMdX_deKS:100,height:\"100%\",id:\"n9yS_L_jx\",Kvqv89Mc_:100,l6OAsPwAN:addImageAlt({pixelHeight:1280,pixelWidth:1920,src:\"https://framerusercontent.com/images/cFFih91stvYfrEo4jGaYxKKo6Y.jpg\",srcSet:\"https://framerusercontent.com/images/cFFih91stvYfrEo4jGaYxKKo6Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cFFih91stvYfrEo4jGaYxKKo6Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cFFih91stvYfrEo4jGaYxKKo6Y.jpg 1920w\"},\"NetPlus fabric down jacket view 2\"),layoutId:\"n9yS_L_jx\",LBVoRH8kq:true,lmU_1OTAg:0,r_ch5X2GA:addImageAlt({pixelHeight:1280,pixelWidth:1920,src:\"https://framerusercontent.com/images/2NQh9zcN1up2eXi2fs2k4V6lYVc.jpg\",srcSet:\"https://framerusercontent.com/images/2NQh9zcN1up2eXi2fs2k4V6lYVc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2NQh9zcN1up2eXi2fs2k4V6lYVc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2NQh9zcN1up2eXi2fs2k4V6lYVc.jpg 1920w\"},\"NetPlus fabric down jacket view 1\"),style:{height:\"100%\",width:\"100%\"},variant:\"RLqqFNnJZ\",width:\"100%\",XxEktfeyW:false,z4FgYf_gC:\"GUY9G1PGy\",ZU06hmjR5:100})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{width:`calc((${componentViewport?.width||\"100vw\"} - 72px) * 0.28)`,y:(componentViewport?.y||0)+0+0+0+2866.7741+0+735+0+0+40+363.28+637.75},Rg5yzVVxZ:{height:189,width:`calc((${componentViewport?.width||\"100vw\"} - 48px) * 0.7997)`,y:(componentViewport?.y||0)+0+0+0+2432+0+735+0+0+36+355.28+1010.5},xX3V4Ojb9:{width:`calc((min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 192px) * 0.28)`,y:(componentViewport?.y||0)+0+0+0+3146+0+735+0+0+48+387.28+637.75}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:216.5,width:`calc((${componentViewport?.width||\"100vw\"} - 128px) * 0.28)`,y:(componentViewport?.y||0)+0+0+0+3146+0+735+0+0+40+379.28+637.75,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rg5yzVVxZ:{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0}},{offset:250,ref:ref11,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-1bbra6t-container\",nodeId:\"xCC8jVtIX\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(MediaImageOrVideo,{e4Ym1Vxl5:true,gMdX_deKS:100,height:\"100%\",id:\"xCC8jVtIX\",Kvqv89Mc_:100,layoutId:\"xCC8jVtIX\",LBVoRH8kq:false,lmU_1OTAg:0,r_ch5X2GA:addImageAlt({pixelHeight:1280,pixelWidth:1920,src:\"https://framerusercontent.com/images/FUYGLmh9G0If0fDpzoP26XU5Fhw.jpg\",srcSet:\"https://framerusercontent.com/images/FUYGLmh9G0If0fDpzoP26XU5Fhw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FUYGLmh9G0If0fDpzoP26XU5Fhw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FUYGLmh9G0If0fDpzoP26XU5Fhw.jpg 1920w\"},\"Fisherman working on boat with nets\"),style:{height:\"100%\",width:\"100%\"},variant:\"RLqqFNnJZ\",width:\"100%\",XxEktfeyW:false,z4FgYf_gC:\"GUY9G1PGy\",ZU06hmjR5:100})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{width:`calc((${componentViewport?.width||\"100vw\"} - 72px) * 0.3412)`,y:(componentViewport?.y||0)+0+0+0+2866.7741+0+735+0+0+40+363.28+-27},Rg5yzVVxZ:{height:163.5,width:`calc((${componentViewport?.width||\"100vw\"} - 48px) * 0.6901)`,y:(componentViewport?.y||0)+0+0+0+2432+0+735+0+0+36+355.28+526.25},xX3V4Ojb9:{width:`calc((min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 192px) * 0.3412)`,y:(componentViewport?.y||0)+0+0+0+3146+0+735+0+0+48+387.28+-27}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:256,width:`calc((${componentViewport?.width||\"100vw\"} - 128px) * 0.3412)`,y:(componentViewport?.y||0)+0+0+0+3146+0+735+0+0+40+379.28+-27,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bw8wwj-container\",nodeId:\"ZvcyiR_AT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MediaImageOrVideo,{e4Ym1Vxl5:true,gMdX_deKS:100,height:\"100%\",id:\"ZvcyiR_AT\",Kvqv89Mc_:100,layoutId:\"ZvcyiR_AT\",LBVoRH8kq:false,lmU_1OTAg:0,r_ch5X2GA:addImageAlt({pixelHeight:1280,pixelWidth:1824,src:\"https://framerusercontent.com/images/oxuLkn9ENWuYHQaKKOk7fm3wjU.jpg\",srcSet:\"https://framerusercontent.com/images/oxuLkn9ENWuYHQaKKOk7fm3wjU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oxuLkn9ENWuYHQaKKOk7fm3wjU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oxuLkn9ENWuYHQaKKOk7fm3wjU.jpg 1824w\"},\"Patagonia hat brim\"),style:{height:\"100%\",width:\"100%\"},variant:\"RLqqFNnJZ\",width:\"100%\",XxEktfeyW:false,z4FgYf_gC:\"GUY9G1PGy\",ZU06hmjR5:100})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{width:`calc((${componentViewport?.width||\"100vw\"} - 72px) * 0.1676)`,y:(componentViewport?.y||0)+0+0+0+2866.7741+0+735+0+0+40+363.28+-1},Rg5yzVVxZ:{height:136,width:`calc((${componentViewport?.width||\"100vw\"} - 48px) * 0.4006)`,y:(componentViewport?.y||0)+0+0+0+2432+0+735+0+0+36+355.28+192},xX3V4Ojb9:{width:`calc((min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 192px) * 0.1676)`,y:(componentViewport?.y||0)+0+0+0+3146+0+735+0+0+48+387.28+-1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,width:`calc((${componentViewport?.width||\"100vw\"} - 128px) * 0.1676)`,y:(componentViewport?.y||0)+0+0+0+3146+0+735+0+0+40+379.28+-1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rg5yzVVxZ:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:24}},{offset:250,ref:ref11,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-24}}]}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:36}},{offset:250,ref:ref11,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-36}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-141irde-container\",nodeId:\"GNalNGp85\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(MediaImageOrVideo,{e4Ym1Vxl5:true,gMdX_deKS:100,height:\"100%\",id:\"GNalNGp85\",Kvqv89Mc_:100,layoutId:\"GNalNGp85\",LBVoRH8kq:false,lmU_1OTAg:-20,r_ch5X2GA:addImageAlt({pixelHeight:1e3,pixelWidth:1e3,src:\"https://framerusercontent.com/images/1EPp0COdyNrtLE8VJuelGnAxn0c.jpg\",srcSet:\"https://framerusercontent.com/images/1EPp0COdyNrtLE8VJuelGnAxn0c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1EPp0COdyNrtLE8VJuelGnAxn0c.jpg 1000w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"xZqYDQdYr\",width:\"100%\",XxEktfeyW:false,z4FgYf_gC:\"PbgaGQT3c\",ZU06hmjR5:100})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{width:`calc((${componentViewport?.width||\"100vw\"} - 72px) * 0.3287)`,y:(componentViewport?.y||0)+0+0+0+2866.7741+0+735+0+0+40+363.28+620},Rg5yzVVxZ:{height:154.5,width:`calc((${componentViewport?.width||\"100vw\"} - 48px) * 0.5994)`,y:(componentViewport?.y||0)+0+0+0+2432+0+735+0+0+36+355.28+808.75},xX3V4Ojb9:{width:`calc((min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 192px) * 0.3287)`,y:(componentViewport?.y||0)+0+0+0+3146+0+735+0+0+48+387.28+620}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:244,width:`calc((${componentViewport?.width||\"100vw\"} - 128px) * 0.3287)`,y:(componentViewport?.y||0)+0+0+0+3146+0+735+0+0+40+379.28+620,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p1rbxg-container\",nodeId:\"epWllrTHN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MediaImageOrVideo,{e4Ym1Vxl5:true,gMdX_deKS:100,height:\"100%\",id:\"epWllrTHN\",Kvqv89Mc_:100,layoutId:\"epWllrTHN\",LBVoRH8kq:false,lmU_1OTAg:0,r_ch5X2GA:addImageAlt({pixelHeight:1280,pixelWidth:1920,src:\"https://framerusercontent.com/images/3YTeS1Pfx4zKShX5D2vLqgoIx8M.jpg\",srcSet:\"https://framerusercontent.com/images/3YTeS1Pfx4zKShX5D2vLqgoIx8M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3YTeS1Pfx4zKShX5D2vLqgoIx8M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3YTeS1Pfx4zKShX5D2vLqgoIx8M.jpg 1920w\"},\"Fishing nets underwater\"),style:{height:\"100%\",width:\"100%\"},variant:\"RLqqFNnJZ\",width:\"100%\",XxEktfeyW:false,z4FgYf_gC:\"GUY9G1PGy\",ZU06hmjR5:100})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{width:`calc((${componentViewport?.width||\"100vw\"} - 72px) * 0.2843)`,y:(componentViewport?.y||0)+0+0+0+2866.7741+0+735+0+0+40+363.28+358.5},Rg5yzVVxZ:{height:156,width:`calc((${componentViewport?.width||\"100vw\"} - 48px) * 0.5497)`,y:(componentViewport?.y||0)+0+0+0+2432+0+735+0+0+36+355.28+762},xX3V4Ojb9:{width:`calc((min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 192px) * 0.2843)`,y:(componentViewport?.y||0)+0+0+0+3146+0+735+0+0+48+387.28+358.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:205,width:`calc((${componentViewport?.width||\"100vw\"} - 128px) * 0.2843)`,y:(componentViewport?.y||0)+0+0+0+3146+0+735+0+0+40+379.28+358.5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:16}},{offset:250,ref:ref11,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-16}}]},Rg5yzVVxZ:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:36}},{offset:250,ref:ref11,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-36}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11ykc2w-container\",nodeId:\"vi5giI9W9\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(MediaImageOrVideo,{e4Ym1Vxl5:false,gMdX_deKS:100,height:\"100%\",id:\"vi5giI9W9\",Kvqv89Mc_:100,l6OAsPwAN:addImageAlt({pixelHeight:1280,pixelWidth:1920,src:\"https://framerusercontent.com/images/Lo0bndU6ueHaSTCBd3Sn6Wx8uc.jpg\",srcSet:\"https://framerusercontent.com/images/Lo0bndU6ueHaSTCBd3Sn6Wx8uc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Lo0bndU6ueHaSTCBd3Sn6Wx8uc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Lo0bndU6ueHaSTCBd3Sn6Wx8uc.jpg 1920w\"},\"\"),layoutId:\"vi5giI9W9\",LBVoRH8kq:true,lmU_1OTAg:0,r_ch5X2GA:addImageAlt({pixelHeight:1280,pixelWidth:1920,src:\"https://framerusercontent.com/images/aBENjb1sTC76x0wJtNeeQcJHHWM.jpg\",srcSet:\"https://framerusercontent.com/images/aBENjb1sTC76x0wJtNeeQcJHHWM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aBENjb1sTC76x0wJtNeeQcJHHWM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aBENjb1sTC76x0wJtNeeQcJHHWM.jpg 1920w\"},\"Image of NetPlus pellets in hands\"),style:{height:\"100%\",width:\"100%\"},variant:\"RLqqFNnJZ\",width:\"100%\",XxEktfeyW:false,z4FgYf_gC:\"PbgaGQT3c\",ZU06hmjR5:100})})})})})]})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{y:(componentViewport?.y||0)+0+0+0+4989.0541},Rg5yzVVxZ:{y:(componentViewport?.y||0)+0+0+0+4854.28},xX3V4Ojb9:{width:`min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px)`,y:(componentViewport?.y||0)+0+0+0+5340.28}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:271,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+5324.28,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15ieupt-container\",nodeId:\"lEnuPOxmv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{pc7sOKalJ:96,variant:\"gAkp1y_JZ\"},Rg5yzVVxZ:{pc7sOKalJ:84,variant:\"NHnTvh3OZ\"},xX3V4Ojb9:{variant:\"xqzpjMbiO\"}},children:/*#__PURE__*/_jsx(SubSectionSubSection,{a0YzRYPXn:\"sourced from fisheries around the world\",CjcKk__vQ:\"100%\",DI4CzhXB0:\"with no filler, just nets.\\nPlease help.\",EpNiHh6Om:\"With NetPlus\",hDINXkuko:\"Post-Consumer \\nRecycled\",height:\"100%\",hj3leLMSl:\"iuAmi0JNo\",id:\"lEnuPOxmv\",j1YslqIh4:\"Recycled \\nFishing net\",kOwEdPnlb:\"Traceable\\nMaterial\",layoutId:\"lEnuPOxmv\",oTYzEzcM_:false,oWj8CuQtE:\"Transparent supply \\nchain that is third-party\\naudited and certified\",pc7sOKalJ:24,RRagPKEET:\"Make an Impact\",SLuYQ8gPl:\"100%\",style:{width:\"100%\"},teApN5e5U:\"100%\",uMVQUnGYQ:false,variant:\"rxxEliXqx\",VesfLlTqf:\"iuAmi0JNo\",width:\"100%\",XhYGobiQc:\"iuAmi0JNo\",yYrS86NpN:\"Material\",zvVseCXzg:false,zxXq7DYUl:\"\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v9luw2\",\"data-framer-name\":\"sectionHIW\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{y:(componentViewport?.y||0)+0+0+0+5260.0541+0+0},Rg5yzVVxZ:{y:(componentViewport?.y||0)+0+0+0+5125.28+0+0},xX3V4Ojb9:{width:`min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px)`,y:(componentViewport?.y||0)+0+0+0+5611.28+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:735,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+5595.28+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u7zk79-container\",nodeId:\"HwqdMX54_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{variant:\"OgC6dSxu8\"},Rg5yzVVxZ:{variant:\"oy71nKVIp\"}},children:/*#__PURE__*/_jsx(ElementsSectionHeader,{crQxMbFm1:\"How it Works\",height:\"100%\",id:\"HwqdMX54_\",layoutId:\"HwqdMX54_\",LfIxuHp5W:true,style:{width:\"100%\"},variant:\"IcIUNVdz5\",width:\"100%\",WPciKgCD7:\"\",X1OhyZ8tT:true})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x3bfa9\",\"data-framer-name\":\"PrimaryContainer\",id:elementId10,ref:ref12,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2943,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5260.0541+0+735+0),pixelHeight:5886,pixelWidth:400,positionX:\"left\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} / 5)`,src:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg 400w\"}},Rg5yzVVxZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2943,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5125.28+0+735+0),pixelHeight:5886,pixelWidth:400,positionX:\"left\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} / 4)`,src:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg 400w\"}},xX3V4Ojb9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2943,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5611.28+0+735+0),pixelHeight:5886,pixelWidth:400,positionX:\"left\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) * 0.14)`,src:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg 400w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2943,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5595.28+0+735+0),pixelHeight:5886,pixelWidth:400,positionX:\"left\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.14)`,src:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg 400w\"},className:\"framer-za9kfg\",\"data-framer-name\":\"icScales\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-157ohde\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kmem2h\",\"data-framer-name\":\"Text and Button\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ql4xeo\",\"data-framer-name\":\"wrapText\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation21,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-oovzuq\",\"data-framer-name\":\"wrapHeading\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-zj9b89\",\"data-styles-preset\":\"TMDGdNqxl\",children:\"Our Journey to Start a Sea Change, One Net at a Time\"})}),className:\"framer-1sf5x4o\",\"data-framer-name\":\"Our proprietary NetPlus\\xae material is made from 100% post-consumer recycled fishing nets; in effort to help prevent harmful plastics from entering our oceans.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{width:`min(min(${componentViewport?.width||\"100vw\"} - 72px, 956px) - 12px, 687px)`,y:(componentViewport?.y||0)+0+0+0+5260.0541+0+735+0+0+40+0+0+0+0+58.08},Rg5yzVVxZ:{width:`min(min(${componentViewport?.width||\"100vw\"} - 48px, 956px), 1200px)`,y:(componentViewport?.y||0)+0+0+0+5125.28+0+735+0+0+36+0+0+0+0+54.08},xX3V4Ojb9:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 192px, 988px) - 24px)`,y:(componentViewport?.y||0)+0+0+0+5611.28+0+735+0+0+48+0+0+0+0+58.08}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(min(${componentViewport?.width||\"100vw\"} - 128px, 956px) - 24px)`,y:(componentViewport?.y||0)+0+0+0+5595.28+0+735+0+0+40+0+0+0+0+58.08,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15ifdv7-container\",nodeId:\"dKQqWg9nQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsDividerWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"YAqcdi_Gu\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"UW_L85gd9\",height:\"100%\",id:\"dKQqWg9nQ\",K0Es3jXZc:0,kDWvA7aVu:\"rgb(0, 0, 0)\",layoutId:\"dKQqWg9nQ\",style:{height:\"100%\",width:\"100%\"},variant:\"UW_L85gd9\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uouavq\",\"data-framer-name\":\"wrapParagraph\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-76z34h\",\"data-styles-preset\":\"n0ql24qWm\",children:\"By partnering with fishing communities around the world to create a more circular solution for end-of-life nets, we\u2019re helping reduce the amount of plastic entering our ocean while turning valuable waste material into products that last.\"})}),className:\"framer-472ctl\",\"data-framer-name\":\"To prevent further damage to our oceans and avoid the worst impacts of plastic pollution, we are looking beyond standard recycling methods through active participation in repurposing the most harmful plastics. At Bureo, we believe that converting discarded fishing nets into high quality yarns, allows all participants in the product lifecycle to make a positive impact.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wsc4a7\",\"data-framer-name\":\"wrapButton\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Mc3KYwxya\"},implicitPathVariables:undefined},{href:{webPageId:\"Mc3KYwxya\"},implicitPathVariables:undefined},{href:{webPageId:\"Mc3KYwxya\"},implicitPathVariables:undefined},{href:{webPageId:\"Mc3KYwxya\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{y:(componentViewport?.y||0)+0+0+0+5260.0541+0+735+0+0+40+0+0+243.28+24+0},Rg5yzVVxZ:{y:(componentViewport?.y||0)+0+0+0+5125.28+0+735+0+0+36+0+0+235.28+24+0},xX3V4Ojb9:{y:(componentViewport?.y||0)+0+0+0+5611.28+0+735+0+0+48+0+0+243.28+24+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+5595.28+0+735+0+0+40+0+0+243.28+24+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e8gq47-container\",nodeId:\"Bk7LU2eqF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{bmfPW78Z7:resolvedLinks1[2]},Rg5yzVVxZ:{bmfPW78Z7:resolvedLinks1[3]},xX3V4Ojb9:{bmfPW78Z7:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(NavigationButton,{bmfPW78Z7:resolvedLinks1[0],EqwQqQdNK:true,height:\"100%\",Ia0McjoIm:100,id:\"Bk7LU2eqF\",layoutId:\"Bk7LU2eqF\",lObK378T6:false,OzktHB1SZ:true,Q3g_CPoK1:-90,qKlaRm3Cl:\"Explore Our Process\",variant:\"IGRy7TeNw\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z8vszn\",\"data-framer-name\":\"Media\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sx7xvz\",\"data-framer-name\":\"wrapSpinningAndFootnote\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{width:`calc((${componentViewport?.width||\"100vw\"} - 72px) * 0.2698)`,y:(componentViewport?.y||0)+0+0+0+5260.0541+0+735+0+0+40+331.28+440.8529+0+0},Rg5yzVVxZ:{width:`calc((${componentViewport?.width||\"100vw\"} - 48px) * 0.7595)`,y:(componentViewport?.y||0)+0+0+0+5125.28+0+735+0+0+36+355.28+865.5+0+0},xX3V4Ojb9:{width:`calc((min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 192px) * 0.2257)`,y:(componentViewport?.y||0)+0+0+0+5611.28+0+735+0+0+48+307.28+424.7746+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:323,width:`calc((${componentViewport?.width||\"100vw\"} - 128px) * 0.2257)`,y:(componentViewport?.y||0)+0+0+0+5595.28+0+735+0+0+40+307.28+424.7746+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rg5yzVVxZ:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:250,ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1eu17d5-container\",id:elementId11,nodeId:\"LoowTPowt\",ref:ref13,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{variant:\"ipq8iSI3x\"},Rg5yzVVxZ:{variant:\"ipq8iSI3x\",z3yDgCezg:ref13}},children:/*#__PURE__*/_jsx(HowItWorksCardHIW,{bJWjNu8Qt:\"https://framerusercontent.com/assets/9B3j1KJUNfAZ8R7AgIKKQbmVVk.mp4\",height:\"100%\",id:\"LoowTPowt\",layoutId:\"LoowTPowt\",pQpbijn0v:true,style:{width:\"100%\"},ua8YzA3KS:0,UazOgZka0:\"4\",variant:\"MQIW0LIvb\",VcgeyAA7s:addImageAlt({pixelHeight:450,pixelWidth:800,src:\"https://framerusercontent.com/images/lYekpQGIdpB7KodD0VYDQsYc988.jpg\",srcSet:\"https://framerusercontent.com/images/lYekpQGIdpB7KodD0VYDQsYc988.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lYekpQGIdpB7KodD0VYDQsYc988.jpg 800w\"},\"\"),vYdXm5VMy:\"Spinning\",width:\"100%\",yEogJwGkQ:\"NetPlus nylon pellets \\nare extruded into\\nhigh-quality yarns.\",z3yDgCezg:ref12})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sxl53e hidden-12p16ix\",\"data-framer-name\":\"Footnote\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xX3V4Ojb9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-ixg2j2\",\"data-styles-preset\":\"CnwjP9y6P\",children:\"Spinning\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-ixg2j2\",\"data-styles-preset\":\"CnwjP9y6P\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Spinning\"})}),className:\"framer-1roth33\",\"data-framer-name\":\"Spinning\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12qoq0i\",\"data-styles-preset\":\"EUzeuE8DD\",style:{\"--framer-text-alignment\":\"left\"},children:\"Here's a quick glimpse at the production of \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12qoq0i\",\"data-styles-preset\":\"EUzeuE8DD\",style:{\"--framer-text-alignment\":\"left\"},children:\"fabrics made with NetPlus recycled nylon.\"})]}),className:\"framer-1d5s2j9\",\"data-framer-name\":\"Footnote\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{width:`calc((${componentViewport?.width||\"100vw\"} - 72px) / 3.69)`,y:(componentViewport?.y||0)+0+0+0+5260.0541+0+735+0+0+40+331.28+9.3571},Rg5yzVVxZ:{width:`calc((${componentViewport?.width||\"100vw\"} - 48px) * 0.7595)`,y:(componentViewport?.y||0)+0+0+0+5125.28+0+735+0+0+36+355.28+-35.5},xX3V4Ojb9:{width:`calc((min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 192px) * 0.2225)`,y:(componentViewport?.y||0)+0+0+0+5611.28+0+735+0+0+48+307.28+30.2054}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:323,width:`calc((${componentViewport?.width||\"100vw\"} - 128px) * 0.2225)`,y:(componentViewport?.y||0)+0+0+0+5595.28+0+735+0+0+40+307.28+30.2054,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rg5yzVVxZ:{__framer__styleAppearEffectEnabled:undefined,transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:250,ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18xvd5q-container\",id:elementId12,nodeId:\"bSb9FVUn_\",ref:ref14,rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{variant:\"ipq8iSI3x\"},Rg5yzVVxZ:{variant:\"ipq8iSI3x\"},xX3V4Ojb9:{ua8YzA3KS:0}},children:/*#__PURE__*/_jsx(HowItWorksCardHIW,{bJWjNu8Qt:\"https://framerusercontent.com/assets/HNqhjgOwOCGRA6tt2GQJbtANWMM.mp4\",height:\"100%\",id:\"bSb9FVUn_\",layoutId:\"bSb9FVUn_\",pQpbijn0v:true,style:{width:\"100%\"},ua8YzA3KS:12,UazOgZka0:\"1\",variant:\"MQIW0LIvb\",VcgeyAA7s:addImageAlt({pixelHeight:450,pixelWidth:800,src:\"https://framerusercontent.com/images/j90rDJ1QY63mYJfyGJAHyl0zqfY.jpg\",srcSet:\"https://framerusercontent.com/images/j90rDJ1QY63mYJfyGJAHyl0zqfY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/j90rDJ1QY63mYJfyGJAHyl0zqfY.jpg 800w\"},\"\"),vYdXm5VMy:\"Collecting\",width:\"100%\",yEogJwGkQ:\"Bureo partners with\\nfishing communities to\\ncapture end-of-life nets.\",z3yDgCezg:ref12})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{width:`calc((${componentViewport?.width||\"100vw\"} - 72px) * 0.2713)`,y:(componentViewport?.y||0)+0+0+0+5260.0541+0+735+0+0+40+331.28+498.7353},Rg5yzVVxZ:{width:`calc((${componentViewport?.width||\"100vw\"} - 48px) * 0.7595)`,y:(componentViewport?.y||0)+0+0+0+5125.28+0+735+0+0+36+355.28+1165.5},xX3V4Ojb9:{width:`calc((min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 192px) * 0.2225)`,y:(componentViewport?.y||0)+0+0+0+5611.28+0+735+0+0+48+307.28+416.8839}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:323,width:`calc((${componentViewport?.width||\"100vw\"} - 128px) * 0.2225)`,y:(componentViewport?.y||0)+0+0+0+5595.28+0+735+0+0+40+307.28+416.8839,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rg5yzVVxZ:{__framer__styleAppearEffectEnabled:undefined,transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:250,ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ng8q8b-container\",id:elementId13,nodeId:\"eyKIk2Buc\",ref:ref15,rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{variant:\"ipq8iSI3x\"},Rg5yzVVxZ:{variant:\"ipq8iSI3x\",z3yDgCezg:ref15}},children:/*#__PURE__*/_jsx(HowItWorksCardHIW,{bJWjNu8Qt:\"https://framerusercontent.com/assets/VcdeofIqJacBnSsWEhZLES40MzM.mp4\",height:\"100%\",id:\"eyKIk2Buc\",layoutId:\"eyKIk2Buc\",pQpbijn0v:true,style:{width:\"100%\"},ua8YzA3KS:0,UazOgZka0:\"5\",variant:\"MQIW0LIvb\",VcgeyAA7s:addImageAlt({pixelHeight:450,pixelWidth:800,src:\"https://framerusercontent.com/images/osfAe04DrGV3OvKq60UXtL33FGE.jpg\",srcSet:\"https://framerusercontent.com/images/osfAe04DrGV3OvKq60UXtL33FGE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/osfAe04DrGV3OvKq60UXtL33FGE.jpg 800w\"},\"\"),vYdXm5VMy:\"Innovating\",width:\"100%\",yEogJwGkQ:\"NetPlus nylon yarn\\nis woven into a range of\\nperformance fabrics.\",z3yDgCezg:ref12})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{width:`calc((${componentViewport?.width||\"100vw\"} - 72px) / 3.69)`,y:(componentViewport?.y||0)+0+0+0+5260.0541+0+735+0+0+40+331.28+171.4524},Rg5yzVVxZ:{width:`calc((${componentViewport?.width||\"100vw\"} - 48px) * 0.7595)`,y:(componentViewport?.y||0)+0+0+0+5125.28+0+735+0+0+36+355.28+565.5},xX3V4Ojb9:{width:`calc((min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 192px) * 0.2225)`,y:(componentViewport?.y||0)+0+0+0+5611.28+0+735+0+0+48+307.28+157.6459}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:323,width:`calc((${componentViewport?.width||\"100vw\"} - 128px) * 0.2225)`,y:(componentViewport?.y||0)+0+0+0+5595.28+0+735+0+0+40+307.28+157.6459,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rg5yzVVxZ:{__framer__styleAppearEffectEnabled:undefined,transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:250,ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-22zz0z-container\",id:elementId14,nodeId:\"y5Z93efKn\",ref:ref16,rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{variant:\"ipq8iSI3x\"},Rg5yzVVxZ:{variant:\"ipq8iSI3x\",z3yDgCezg:ref16}},children:/*#__PURE__*/_jsx(HowItWorksCardHIW,{bJWjNu8Qt:\"https://framerusercontent.com/assets/WjTKk1T8b3GWz01yNrMM1XRecY.mp4\",height:\"100%\",id:\"y5Z93efKn\",layoutId:\"y5Z93efKn\",pQpbijn0v:true,style:{width:\"100%\"},ua8YzA3KS:14,UazOgZka0:\"3\",variant:\"MQIW0LIvb\",VcgeyAA7s:addImageAlt({pixelHeight:450,pixelWidth:800,src:\"https://framerusercontent.com/images/Mzrmk4zTEcSwjqYMabtsiTgW8sY.jpg\",srcSet:\"https://framerusercontent.com/images/Mzrmk4zTEcSwjqYMabtsiTgW8sY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Mzrmk4zTEcSwjqYMabtsiTgW8sY.jpg 800w\"},\"\"),vYdXm5VMy:\"Recycling\",width:\"100%\",yEogJwGkQ:\"Nets are broken\\ndown and reformed \\ninto NetPlus recycled\\nnylon pellets.\",z3yDgCezg:ref12})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{width:`calc((${componentViewport?.width||\"100vw\"} - 72px) / 3.69)`,y:(componentViewport?.y||0)+0+0+0+5260.0541+0+735+0+0+40+331.28+-37.7381},Rg5yzVVxZ:{width:`calc((${componentViewport?.width||\"100vw\"} - 48px) * 0.7615)`,y:(componentViewport?.y||0)+0+0+0+5125.28+0+735+0+0+36+355.28+265.5},xX3V4Ojb9:{width:`calc((min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 192px) * 0.2225)`,y:(componentViewport?.y||0)+0+0+0+5611.28+0+735+0+0+48+307.28+-2.4717}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:323,width:`calc((${componentViewport?.width||\"100vw\"} - 128px) * 0.2225)`,y:(componentViewport?.y||0)+0+0+0+5595.28+0+735+0+0+40+307.28+-2.4717,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rg5yzVVxZ:{__framer__styleAppearEffectEnabled:undefined,transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:250,ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12m4i71-container\",id:elementId15,nodeId:\"wlduWfBQx\",ref:ref17,rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{variant:\"ipq8iSI3x\"},Rg5yzVVxZ:{variant:\"ipq8iSI3x\",z3yDgCezg:ref17}},children:/*#__PURE__*/_jsx(HowItWorksCardHIW,{bJWjNu8Qt:\"https://framerusercontent.com/assets/sTrr8nrYOOvre1E5sqaNTQmgQ.mp4\",height:\"100%\",id:\"wlduWfBQx\",layoutId:\"wlduWfBQx\",pQpbijn0v:true,style:{width:\"100%\"},ua8YzA3KS:0,UazOgZka0:\"2\",variant:\"MQIW0LIvb\",VcgeyAA7s:addImageAlt({pixelHeight:450,pixelWidth:800,src:\"https://framerusercontent.com/images/PDvsbyolqZTUzhvQJ0ci2zENw.jpg\",srcSet:\"https://framerusercontent.com/images/PDvsbyolqZTUzhvQJ0ci2zENw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PDvsbyolqZTUzhvQJ0ci2zENw.jpg 800w\"},\"\"),vYdXm5VMy:\"Processing\",width:\"100%\",yEogJwGkQ:\"Nets are sorted, cleaned,\\nshredded, and packed at\\nBureo facilities.\",z3yDgCezg:ref12})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{width:`calc((${componentViewport?.width||\"100vw\"} - 72px) / 3.69)`,y:(componentViewport?.y||0)+0+0+0+5260.0541+0+735+0+0+40+331.28+267.8333},Rg5yzVVxZ:{width:`calc((${componentViewport?.width||\"100vw\"} - 48px) * 0.7615)`,y:(componentViewport?.y||0)+0+0+0+5125.28+0+735+0+0+36+355.28+1465.5},xX3V4Ojb9:{width:`calc((min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 192px) * 0.2225)`,y:(componentViewport?.y||0)+0+0+0+5611.28+0+735+0+0+48+307.28+260.034}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:323,width:`calc((${componentViewport?.width||\"100vw\"} - 128px) * 0.2225)`,y:(componentViewport?.y||0)+0+0+0+5595.28+0+735+0+0+40+307.28+260.034,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rg5yzVVxZ:{__framer__styleAppearEffectEnabled:undefined,transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:250,ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1f98bxr-container\",id:elementId16,nodeId:\"EBMpSgt4q\",ref:ref18,rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{variant:\"ipq8iSI3x\"},Rg5yzVVxZ:{variant:\"ipq8iSI3x\",z3yDgCezg:ref18},xX3V4Ojb9:{ua8YzA3KS:4}},children:/*#__PURE__*/_jsx(HowItWorksCardHIW,{bJWjNu8Qt:\"https://framerusercontent.com/assets/Zd8GRuWukMNTuyFpWSLjLiHlXw.mp4\",height:\"100%\",id:\"EBMpSgt4q\",layoutId:\"EBMpSgt4q\",pQpbijn0v:true,style:{width:\"100%\"},ua8YzA3KS:0,UazOgZka0:\"6\",variant:\"MQIW0LIvb\",VcgeyAA7s:addImageAlt({pixelHeight:450,pixelWidth:800,src:\"https://framerusercontent.com/images/oN6UN1yB1dDBeNPzlUjsMorTkC8.jpg\",srcSet:\"https://framerusercontent.com/images/oN6UN1yB1dDBeNPzlUjsMorTkC8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oN6UN1yB1dDBeNPzlUjsMorTkC8.jpg 800w\"},\"\"),vYdXm5VMy:\"Empowering\",width:\"100%\",yEogJwGkQ:\"Every net recycled\\nsupports cleaner, healthier\\ncoastal communities.\",z3yDgCezg:ref12})})})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12qoq0i\",\"data-styles-preset\":\"EUzeuE8DD\",style:{\"--framer-text-alignment\":\"left\"},children:\"Here's a quick glimpse at the production of \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12qoq0i\",\"data-styles-preset\":\"EUzeuE8DD\",style:{\"--framer-text-alignment\":\"left\"},children:\"fabrics made with NetPlus recycled nylon.\"})]}),className:\"framer-1blqefp hidden-72rtr7 hidden-11ykpu4 hidden-1x5cgpn\",\"data-framer-name\":\"FootnoteMobile\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{y:(componentViewport?.y||0)+0+0+0+7292.3341},Rg5yzVVxZ:{y:(componentViewport?.y||0)+0+0+0+8349.56},xX3V4Ojb9:{width:`min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px)`,y:(componentViewport?.y||0)+0+0+0+7630.56}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:271,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+7606.56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ua57g6-container\",nodeId:\"OEyN6Kj5W\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{pc7sOKalJ:64,variant:\"gAkp1y_JZ\"},Rg5yzVVxZ:{pc7sOKalJ:56,variant:\"NHnTvh3OZ\"},xX3V4Ojb9:{variant:\"xqzpjMbiO\"}},children:/*#__PURE__*/_jsx(SubSectionSubSection,{a0YzRYPXn:\"of discarded fishing nets\\ncollected since 2013\",CjcKk__vQ:\"8\",DI4CzhXB0:\"reached through the NetPlus \\nrecycling program\",EpNiHh6Om:\"Program\",hDINXkuko:\"Countries\",height:\"100%\",hj3leLMSl:\"iuAmi0JNo\",id:\"OEyN6Kj5W\",j1YslqIh4:\"Million lbs\",kOwEdPnlb:\"Communities\",layoutId:\"OEyN6Kj5W\",oTYzEzcM_:true,oWj8CuQtE:\"with active net collections,\\nmaking NetPlus possible\",pc7sOKalJ:24,RRagPKEET:\"Our\",SLuYQ8gPl:\"44\",style:{width:\"100%\"},teApN5e5U:\"14+\",uMVQUnGYQ:true,variant:\"rxxEliXqx\",VesfLlTqf:\"iuAmi0JNo\",width:\"100%\",XhYGobiQc:\"iuAmi0JNo\",yYrS86NpN:\"At a glance\",zvVseCXzg:true,zxXq7DYUl:\"\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1szcj6t\",\"data-framer-name\":\"sectionBrandPartners\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n14j9f\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u7fygc\",\"data-framer-name\":\"PrimaryContainer\",id:elementId17,ref:ref19,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15er2vb\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gupnxd\",\"data-framer-name\":\"wrapHeading\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-20mefg\",\"data-styles-preset\":\"PtHKjXgae\",children:\"Brand\"})}),className:\"framer-r4q0h9\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-20mefg\",\"data-styles-preset\":\"PtHKjXgae\",children:\"Partners\"})}),className:\"framer-514ove\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13ojpss\",\"data-framer-name\":\"wrapParagraph\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-76z34h\",\"data-styles-preset\":\"n0ql24qWm\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Join our growing network of innovators reimagining their products with NetPlus material.\"})}),className:\"framer-1gz61i0\",\"data-framer-name\":\"To prevent further damage to our oceans and avoid the worst impacts of plastic pollution, we are looking beyond standard recycling methods through active participation in repurposing the most harmful plastics. At Bureo, we believe that converting discarded fishing nets into high quality yarns, allows all participants in the product lifecycle to make a positive impact.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-35p04l\",\"data-framer-name\":\"wrapTickers\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{height:64,width:`calc(${componentViewport?.width||\"100vw\"} - 107px)`,y:(componentViewport?.y||0)+0+0+0+7563.3341+0+548+0+419.4+0+0},Rg5yzVVxZ:{height:56,width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,y:(componentViewport?.y||0)+0+0+0+8620.56+0+548+0+383.4+12+0},xX3V4Ojb9:{width:`calc((min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 240px) * 1.3)`,y:(componentViewport?.y||0)+0+0+0+7901.56+0+548+0+431.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 240px)`,y:(componentViewport?.y||0)+0+0+0+7877.56+0+548+0+431.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1af585f-container\",nodeId:\"OSLLelLB5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{lgm1xLz3d:80},Rg5yzVVxZ:{lgm1xLz3d:48}},children:/*#__PURE__*/_jsx(BrandPartnersTickerBrands,{height:\"100%\",id:\"OSLLelLB5\",layoutId:\"OSLLelLB5\",lgm1xLz3d:120,style:{height:\"100%\",width:\"100%\"},variant:\"nynSIc2pP\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{height:64,width:`calc(${componentViewport?.width||\"100vw\"} - 107px)`,y:(componentViewport?.y||0)+0+0+0+7563.3341+0+548+0+419.4+0+100},Rg5yzVVxZ:{height:57,width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,y:(componentViewport?.y||0)+0+0+0+8620.56+0+548+0+383.4+12+80},xX3V4Ojb9:{width:`calc((min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 240px) * 1.3)`,y:(componentViewport?.y||0)+0+0+0+7901.56+0+548+0+431.4+0+128}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 240px)`,y:(componentViewport?.y||0)+0+0+0+7877.56+0+548+0+431.4+0+128,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lzblp-container\",nodeId:\"rAv6xUN1m\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{lgm1xLz3d:80},Rg5yzVVxZ:{lgm1xLz3d:48}},children:/*#__PURE__*/_jsx(BrandPartnersTickerBrands,{height:\"100%\",id:\"rAv6xUN1m\",layoutId:\"rAv6xUN1m\",lgm1xLz3d:120,style:{height:\"100%\",width:\"100%\"},variant:\"J2_N2R4zo\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jcp7g4\",\"data-framer-name\":\"Wrap - Button\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kv5KW7_An\"},implicitPathVariables:undefined},{href:{webPageId:\"kv5KW7_An\"},implicitPathVariables:undefined},{href:{webPageId:\"kv5KW7_An\"},implicitPathVariables:undefined},{href:{webPageId:\"kv5KW7_An\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{y:(componentViewport?.y||0)+0+0+0+7563.3341+0+548+0+607.4+36},Rg5yzVVxZ:{y:(componentViewport?.y||0)+0+0+0+8620.56+0+548+0+544.4+24},xX3V4Ojb9:{y:(componentViewport?.y||0)+0+0+0+7901.56+0+548+0+683.4+36}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+7877.56+0+548+0+683.4+36,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vsz00b-container\",nodeId:\"CiZmPxLgQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{bmfPW78Z7:resolvedLinks2[2]},Rg5yzVVxZ:{bmfPW78Z7:resolvedLinks2[3]},xX3V4Ojb9:{bmfPW78Z7:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(NavigationButton,{bmfPW78Z7:resolvedLinks2[0],EqwQqQdNK:true,height:\"100%\",Ia0McjoIm:0,id:\"CiZmPxLgQ\",layoutId:\"CiZmPxLgQ\",lObK378T6:false,OzktHB1SZ:true,Q3g_CPoK1:-90,qKlaRm3Cl:\"Meet Our Partners\",variant:\"FhVfGU67I\",width:\"100%\"})})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1544uj7\",\"data-framer-name\":\"sectionImpact\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{y:(componentViewport?.y||0)+0+0+0+8794.7341+0+0},Rg5yzVVxZ:{y:(componentViewport?.y||0)+0+0+0+9776.96+0+0},xX3V4Ojb9:{width:`min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px)`,y:(componentViewport?.y||0)+0+0+0+9208.96+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:735,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+9184.96+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10q6qi0-container\",nodeId:\"doW4okCGV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{variant:\"OgC6dSxu8\"},Rg5yzVVxZ:{variant:\"oy71nKVIp\"}},children:/*#__PURE__*/_jsx(ElementsSectionHeader,{crQxMbFm1:\"Impact\",height:\"100%\",id:\"doW4okCGV\",layoutId:\"doW4okCGV\",LfIxuHp5W:true,style:{width:\"100%\"},variant:\"IcIUNVdz5\",width:\"100%\",WPciKgCD7:\"\",X1OhyZ8tT:true})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lwgx1k\",\"data-framer-name\":\"PrimaryContainer\",id:elementId18,ref:ref20,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2943,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8794.7341+0+735+0),pixelHeight:5886,pixelWidth:400,positionX:\"left\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} / 5)`,src:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg 400w\"}},Rg5yzVVxZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2943,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+9776.96+0+735+0),pixelHeight:5886,pixelWidth:400,positionX:\"left\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} / 4)`,src:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg 400w\"}},xX3V4Ojb9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2943,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+9208.96+0+735+0),pixelHeight:5886,pixelWidth:400,positionX:\"left\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) * 0.1398)`,src:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg 400w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2943,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+9184.96+0+735+0),pixelHeight:5886,pixelWidth:400,positionX:\"left\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.14)`,src:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/HQbrDwOkaNlaRp9Jiaquzy596A.svg 400w\"},className:\"framer-cr1p6g\",\"data-framer-name\":\"icScales\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p27ey8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xwng5i\",\"data-framer-name\":\"Text and Button\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18w88ob\",\"data-framer-name\":\"wrapText\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-l1sjer\",\"data-framer-name\":\"wrapHeading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rg5yzVVxZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-zj9b89\",\"data-styles-preset\":\"TMDGdNqxl\",children:[\"A Net-Positive Solution \",/*#__PURE__*/_jsx(\"br\",{}),\"for People + Planet\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation21,__framer__exit:animation22,__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-zj9b89\",\"data-styles-preset\":\"TMDGdNqxl\",children:\"A Net-Positive Solution for People + Planet\"})}),className:\"framer-1ddijls\",\"data-framer-name\":\"Our proprietary NetPlus\\xae material is made from 100% post-consumer recycled fishing nets; in effort to help prevent harmful plastics from entering our oceans.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 72px, 552px) - 12px)`,y:(componentViewport?.y||0)+0+0+0+8794.7341+0+735+0+0+40+0+0+0+0+58.08},Rg5yzVVxZ:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 326px)`,y:(componentViewport?.y||0)+0+0+0+9776.96+0+735+0+0+36+0+0+0+0+54.08},xX3V4Ojb9:{width:`min(min(min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 192px, 890px) - 24px, 930px)`,y:(componentViewport?.y||0)+0+0+0+9208.96+0+735+0+0+48+0+0+0+0+58.08}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(min(${componentViewport?.width||\"100vw\"} - 128px, 730px) - 24px)`,y:(componentViewport?.y||0)+0+0+0+9184.96+0+735+0+0+40+0+0+0+0+58.08,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vv04py-container\",nodeId:\"aXyeRlWsP\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsDividerWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"YAqcdi_Gu\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"UW_L85gd9\",height:\"100%\",id:\"aXyeRlWsP\",K0Es3jXZc:0,kDWvA7aVu:\"rgb(0, 0, 0)\",layoutId:\"aXyeRlWsP\",style:{height:\"100%\",width:\"100%\"},variant:\"UW_L85gd9\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8zcii9\",\"data-framer-name\":\"wrapParagraph\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-76z34h\",\"data-styles-preset\":\"n0ql24qWm\",children:\"Beyond reducing ocean plastic pollution, the NetPlus recycling program supports cleaner, healthier fishing communities by giving back to environmental organizations where we work. Every brand partnership furthers this impact.\"})}),className:\"framer-1n1k7m1\",\"data-framer-name\":\"To prevent further damage to our oceans and avoid the worst impacts of plastic pollution, we are looking beyond standard recycling methods through active participation in repurposing the most harmful plastics. At Bureo, we believe that converting discarded fishing nets into high quality yarns, allows all participants in the product lifecycle to make a positive impact.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n9id5k\",\"data-framer-name\":\"wrapButton\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"aDO0FVYig\"},implicitPathVariables:undefined},{href:{webPageId:\"aDO0FVYig\"},implicitPathVariables:undefined},{href:{webPageId:\"aDO0FVYig\"},implicitPathVariables:undefined},{href:{webPageId:\"aDO0FVYig\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{y:(componentViewport?.y||0)+0+0+0+8794.7341+0+735+0+0+40+0+0+243.28+24+0},Rg5yzVVxZ:{y:(componentViewport?.y||0)+0+0+0+9776.96+0+735+0+0+36+0+0+235.28+12+0},xX3V4Ojb9:{y:(componentViewport?.y||0)+0+0+0+9208.96+0+735+0+0+48+0+0+243.28+24+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+9184.96+0+735+0+0+40+0+0+243.28+24+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-67jasf-container\",nodeId:\"PByNy0CnD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{bmfPW78Z7:resolvedLinks3[2]},Rg5yzVVxZ:{bmfPW78Z7:resolvedLinks3[3]},xX3V4Ojb9:{bmfPW78Z7:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(NavigationButton,{bmfPW78Z7:resolvedLinks3[0],EqwQqQdNK:true,height:\"100%\",Ia0McjoIm:100,id:\"PByNy0CnD\",layoutId:\"PByNy0CnD\",lObK378T6:false,OzktHB1SZ:true,Q3g_CPoK1:-90,qKlaRm3Cl:\"Explore Our Impact\",variant:\"IGRy7TeNw\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iapdwg\",\"data-framer-name\":\"Media\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{width:`calc((${componentViewport?.width||\"100vw\"} - 72px) * 0.55)`,y:(componentViewport?.y||0)+0+0+0+8794.7341+0+735+0+0+40+363.28+-21.5419},Rg5yzVVxZ:{height:307.5,width:`calc((${componentViewport?.width||\"100vw\"} - 48px) * 0.9006)`,y:(componentViewport?.y||0)+0+0+0+9776.96+0+735+0+0+36+287.28+89.5},xX3V4Ojb9:{width:`calc((min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 192px) / 2)`,y:(componentViewport?.y||0)+0+0+0+9208.96+0+735+0+0+48+379.28+24.0899}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:536,width:`calc((${componentViewport?.width||\"100vw\"} - 128px) / 2)`,y:(componentViewport?.y||0)+0+0+0+9184.96+0+735+0+0+40+379.28+24.0899,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-16}},{offset:250,ref:ref20,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:16}}]},Rg5yzVVxZ:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-36}},{offset:250,ref:ref20,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:36}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mtp0ar-container\",nodeId:\"gKOYeFheK\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(MediaImageOrVideo,{e4Ym1Vxl5:true,gMdX_deKS:100,height:\"100%\",id:\"gKOYeFheK\",Kvqv89Mc_:100,layoutId:\"gKOYeFheK\",LBVoRH8kq:false,lmU_1OTAg:0,r_ch5X2GA:addImageAlt({pixelHeight:1280,pixelWidth:1920,src:\"https://framerusercontent.com/images/cVds3lm6zTH8eVNFoDtQd95WMs.jpg\"},\"Colorful boats in harbor\"),style:{height:\"100%\",width:\"100%\"},variant:\"OscJZl1lC\",width:\"100%\",XxEktfeyW:false,z4FgYf_gC:\"GUY9G1PGy\",ZU06hmjR5:100})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{height:165,width:`calc((${componentViewport?.width||\"100vw\"} - 72px) * 0.3198)`,y:(componentViewport?.y||0)+0+0+0+8794.7341+0+735+0+0+40+363.28+328.5},Rg5yzVVxZ:{height:190.5,width:`calc((${componentViewport?.width||\"100vw\"} - 48px) * 0.7997)`,y:(componentViewport?.y||0)+0+0+0+9776.96+0+735+0+0+36+287.28+696.75},xX3V4Ojb9:{width:`calc((min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 192px) * 0.2799)`,y:(componentViewport?.y||0)+0+0+0+9208.96+0+735+0+0+48+379.28+390.059}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:209.5,width:`calc((${componentViewport?.width||\"100vw\"} - 128px) * 0.2799)`,y:(componentViewport?.y||0)+0+0+0+9184.96+0+735+0+0+40+379.28+390.059,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rg5yzVVxZ:{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0}},{offset:250,ref:ref20,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-160xjn4-container\",nodeId:\"pqp7YbaI9\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(MediaImageOrVideo,{e4Ym1Vxl5:true,gMdX_deKS:100,height:\"100%\",id:\"pqp7YbaI9\",Kvqv89Mc_:100,layoutId:\"pqp7YbaI9\",LBVoRH8kq:false,lmU_1OTAg:0,r_ch5X2GA:addImageAlt({pixelHeight:1280,pixelWidth:1920,src:\"https://framerusercontent.com/images/6sLxWEVWakEI72I5Dg9XwgRZrdE.jpg\",srcSet:\"https://framerusercontent.com/images/6sLxWEVWakEI72I5Dg9XwgRZrdE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6sLxWEVWakEI72I5Dg9XwgRZrdE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6sLxWEVWakEI72I5Dg9XwgRZrdE.jpg 1920w\"},\"Warehouse with nets on pallets and forklift\"),style:{height:\"100%\",width:\"100%\"},variant:\"RLqqFNnJZ\",width:\"100%\",XxEktfeyW:false,z4FgYf_gC:\"GUY9G1PGy\",ZU06hmjR5:100})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{offset:250,ref:ref20,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:36,y:-24}}],background:{alt:\"\",fit:\"fit\",intrinsicHeight:1256,intrinsicWidth:1539,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8794.7341+0+735+0+0+40+363.28+-10.5),pixelHeight:1256,pixelWidth:1539,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 72px) * 0.36)`,src:\"https://framerusercontent.com/images/mYsAsG9aJMeuIoZeui81y0qIRA.png\",srcSet:\"https://framerusercontent.com/images/mYsAsG9aJMeuIoZeui81y0qIRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/mYsAsG9aJMeuIoZeui81y0qIRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mYsAsG9aJMeuIoZeui81y0qIRA.png 1539w\"}},Rg5yzVVxZ:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{offset:250,ref:ref20,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:12,y:-12}}],background:{alt:\"\",fit:\"fit\",intrinsicHeight:1256,intrinsicWidth:1539,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+9776.96+0+735+0+0+36+287.28+40),pixelHeight:1256,pixelWidth:1539,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 48px) * 0.6023)`,src:\"https://framerusercontent.com/images/mYsAsG9aJMeuIoZeui81y0qIRA.png\",srcSet:\"https://framerusercontent.com/images/mYsAsG9aJMeuIoZeui81y0qIRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/mYsAsG9aJMeuIoZeui81y0qIRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mYsAsG9aJMeuIoZeui81y0qIRA.png 1539w\"}},xX3V4Ojb9:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1256,intrinsicWidth:1539,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+9208.96+0+735+0+0+48+379.28+-48.2584),pixelHeight:1256,pixelWidth:1539,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 192px) * 0.312)`,src:\"https://framerusercontent.com/images/mYsAsG9aJMeuIoZeui81y0qIRA.png\",srcSet:\"https://framerusercontent.com/images/mYsAsG9aJMeuIoZeui81y0qIRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/mYsAsG9aJMeuIoZeui81y0qIRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mYsAsG9aJMeuIoZeui81y0qIRA.png 1539w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{offset:250,ref:ref20,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:56,y:-56}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:1256,intrinsicWidth:1539,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+9184.96+0+735+0+0+40+379.28+-48.2584),pixelHeight:1256,pixelWidth:1539,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 128px) * 0.312)`,src:\"https://framerusercontent.com/images/mYsAsG9aJMeuIoZeui81y0qIRA.png\",srcSet:\"https://framerusercontent.com/images/mYsAsG9aJMeuIoZeui81y0qIRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/mYsAsG9aJMeuIoZeui81y0qIRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mYsAsG9aJMeuIoZeui81y0qIRA.png 1539w\"},className:\"framer-p38bej\",\"data-framer-name\":\"Image\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{offset:250,ref:ref20,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:56,y:-80}}],background:{alt:\"\",fit:\"fit\",intrinsicHeight:1256,intrinsicWidth:1539,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8794.7341+0+735+0+0+40+363.28+-130.5),pixelHeight:1256,pixelWidth:1539,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 72px) * 0.1999)`,src:\"https://framerusercontent.com/images/PK8IMTU2jYaj3tCwyczrBzXJc.png\",srcSet:\"https://framerusercontent.com/images/PK8IMTU2jYaj3tCwyczrBzXJc.png?scale-down-to=512 512w,https://framerusercontent.com/images/PK8IMTU2jYaj3tCwyczrBzXJc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PK8IMTU2jYaj3tCwyczrBzXJc.png 1539w\"}},Rg5yzVVxZ:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-12,y:0}},{offset:250,ref:ref20,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:12,y:-56}}],background:{alt:\"\",fit:\"fit\",intrinsicHeight:1256,intrinsicWidth:1539,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+9776.96+0+735+0+0+36+287.28+-24.5),pixelHeight:1256,pixelWidth:1539,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 48px) * 0.3421)`,src:\"https://framerusercontent.com/images/PK8IMTU2jYaj3tCwyczrBzXJc.png\",srcSet:\"https://framerusercontent.com/images/PK8IMTU2jYaj3tCwyczrBzXJc.png?scale-down-to=512 512w,https://framerusercontent.com/images/PK8IMTU2jYaj3tCwyczrBzXJc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PK8IMTU2jYaj3tCwyczrBzXJc.png 1539w\"}},xX3V4Ojb9:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1256,intrinsicWidth:1539,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+9208.96+0+735+0+0+48+379.28+-165.9213),pixelHeight:1256,pixelWidth:1539,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 192px) * 0.1604)`,src:\"https://framerusercontent.com/images/PK8IMTU2jYaj3tCwyczrBzXJc.png\",srcSet:\"https://framerusercontent.com/images/PK8IMTU2jYaj3tCwyczrBzXJc.png?scale-down-to=512 512w,https://framerusercontent.com/images/PK8IMTU2jYaj3tCwyczrBzXJc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PK8IMTU2jYaj3tCwyczrBzXJc.png 1539w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{offset:250,ref:ref20,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:96,y:-112}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:1256,intrinsicWidth:1539,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+9184.96+0+735+0+0+40+379.28+-165.9213),pixelHeight:1256,pixelWidth:1539,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 128px) * 0.1604)`,src:\"https://framerusercontent.com/images/PK8IMTU2jYaj3tCwyczrBzXJc.png\",srcSet:\"https://framerusercontent.com/images/PK8IMTU2jYaj3tCwyczrBzXJc.png?scale-down-to=512 512w,https://framerusercontent.com/images/PK8IMTU2jYaj3tCwyczrBzXJc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PK8IMTU2jYaj3tCwyczrBzXJc.png 1539w\"},className:\"framer-1sulpsp\",\"data-framer-name\":\"Image\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{height:183,width:`calc((${componentViewport?.width||\"100vw\"} - 72px) * 0.3604)`,y:(componentViewport?.y||0)+0+0+0+8794.7341+0+735+0+0+40+363.28+-.5},Rg5yzVVxZ:{height:165.5,width:`calc((${componentViewport?.width||\"100vw\"} - 48px) / 1.428)`,y:(componentViewport?.y||0)+0+0+0+9776.96+0+735+0+0+36+287.28+342.25},xX3V4Ojb9:{width:`calc((min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 192px) / 3.35)`,y:(componentViewport?.y||0)+0+0+0+9208.96+0+735+0+0+48+379.28+9.7841}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:`calc((${componentViewport?.width||\"100vw\"} - 128px) / 3.35)`,y:(componentViewport?.y||0)+0+0+0+9184.96+0+735+0+0+40+379.28+9.7841,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kiwtbo-container\",nodeId:\"BRLcoVkLm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MediaImageOrVideo,{e4Ym1Vxl5:true,gMdX_deKS:100,height:\"100%\",id:\"BRLcoVkLm\",Kvqv89Mc_:100,layoutId:\"BRLcoVkLm\",LBVoRH8kq:false,lmU_1OTAg:0,r_ch5X2GA:addImageAlt({pixelHeight:1280,pixelWidth:1920,src:\"https://framerusercontent.com/images/KZiQJKtdPp63JLBempCuwAcEgc.jpg\",srcSet:\"https://framerusercontent.com/images/KZiQJKtdPp63JLBempCuwAcEgc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KZiQJKtdPp63JLBempCuwAcEgc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KZiQJKtdPp63JLBempCuwAcEgc.jpg 1920w\"},\"Man sitting working on cutting nets\"),style:{height:\"100%\",width:\"100%\"},variant:\"RLqqFNnJZ\",width:\"100%\",XxEktfeyW:false,z4FgYf_gC:\"GUY9G1PGy\",ZU06hmjR5:100})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{height:179,width:`calc((${componentViewport?.width||\"100vw\"} - 72px) * 0.3604)`,y:(componentViewport?.y||0)+0+0+0+8794.7341+0+735+0+0+40+363.28+345.5},Rg5yzVVxZ:{height:183.5,width:`calc((${componentViewport?.width||\"100vw\"} - 48px) * 0.7997)`,y:(componentViewport?.y||0)+0+0+0+9776.96+0+735+0+0+36+287.28+478.25},xX3V4Ojb9:{width:`calc((min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 192px) * 0.2997)`,y:(componentViewport?.y||0)+0+0+0+9208.96+0+735+0+0+48+379.28+406.9991}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:212.5,width:`calc((${componentViewport?.width||\"100vw\"} - 128px) * 0.2997)`,y:(componentViewport?.y||0)+0+0+0+9184.96+0+735+0+0+40+379.28+406.9991,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:16}},{offset:250,ref:ref20,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-16}}]}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:36}},{offset:250,ref:ref20,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-36}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vtcbcn-container\",nodeId:\"X8HrrFj_a\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(MediaImageOrVideo,{e4Ym1Vxl5:true,gMdX_deKS:100,height:\"100%\",id:\"X8HrrFj_a\",Kvqv89Mc_:100,layoutId:\"X8HrrFj_a\",LBVoRH8kq:false,lmU_1OTAg:0,r_ch5X2GA:addImageAlt({pixelHeight:1280,pixelWidth:1920,src:\"https://framerusercontent.com/images/DzrufNNnp73d8lp91QHu1XV3LI.jpg\",srcSet:\"https://framerusercontent.com/images/DzrufNNnp73d8lp91QHu1XV3LI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DzrufNNnp73d8lp91QHu1XV3LI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DzrufNNnp73d8lp91QHu1XV3LI.jpg 1920w\"},\"Team shot of employees and nylon nets\"),style:{height:\"100%\",width:\"100%\"},variant:\"RLqqFNnJZ\",width:\"100%\",XxEktfeyW:false,z4FgYf_gC:\"GUY9G1PGy\",ZU06hmjR5:100})})})})})]})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{y:(componentViewport?.y||0)+0+0+0+10585.0141},Rg5yzVVxZ:{y:(componentViewport?.y||0)+0+0+0+11819.24},xX3V4Ojb9:{width:`min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px)`,y:(componentViewport?.y||0)+0+0+0+11161.74}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:271,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+11129.74,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qqfsqj-container\",nodeId:\"bH_EicDqA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{pc7sOKalJ:66,variant:\"gAkp1y_JZ\"},Rg5yzVVxZ:{pc7sOKalJ:60,variant:\"NHnTvh3OZ\"},xX3V4Ojb9:{variant:\"xqzpjMbiO\"}},children:/*#__PURE__*/_jsx(SubSectionSubSection,{a0YzRYPXn:\"implemented in North \\nand South America\",CjcKk__vQ:\"72\",DI4CzhXB0:\"supported through \\nthe NetPlus \\nrecycling program\",EpNiHh6Om:\"Collective\",hDINXkuko:\"Employees\",height:\"100%\",hj3leLMSl:\"iuAmi0JNo\",id:\"bH_EicDqA\",j1YslqIh4:\"Community \\nProjects\",kOwEdPnlb:\"Environmental \\nGroups\",layoutId:\"bH_EicDqA\",oTYzEzcM_:true,oWj8CuQtE:\"funded through the sale \\nof NetPlus material\",pc7sOKalJ:24,RRagPKEET:\"Our\",SLuYQ8gPl:\"16\",style:{width:\"100%\"},teApN5e5U:\"11\",uMVQUnGYQ:true,variant:\"rxxEliXqx\",VesfLlTqf:\"iuAmi0JNo\",width:\"100%\",XhYGobiQc:\"iuAmi0JNo\",yYrS86NpN:\"Impact\",zvVseCXzg:true,zxXq7DYUl:\"2024\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11dnl2e\",\"data-framer-name\":\"sectionFAQ\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+0+0+10856.0141+0+0},Rg5yzVVxZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,y:(componentViewport?.y||0)+0+0+0+12090.24+0+0},xX3V4Ojb9:{width:`min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px)`,y:(componentViewport?.y||0)+0+0+0+11432.74+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:735,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+11400.74+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xatg36-container\",nodeId:\"C23gOi_FJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{variant:\"OgC6dSxu8\"},Rg5yzVVxZ:{variant:\"oy71nKVIp\"}},children:/*#__PURE__*/_jsx(ElementsSectionHeader,{crQxMbFm1:\"\",height:\"100%\",id:\"C23gOi_FJ\",layoutId:\"C23gOi_FJ\",LfIxuHp5W:false,style:{width:\"100%\"},variant:\"IcIUNVdz5\",width:\"100%\",WPciKgCD7:\"FAQ\",X1OhyZ8tT:true})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yk63al\",\"data-framer-name\":\"PrimaryContainer\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w23j3v\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{width:`calc(${componentViewport?.width||\"100vw\"} - 179px)`,y:(componentViewport?.y||0)+0+0+0+10856.0141+0+735+0+0+12+0},Rg5yzVVxZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 132px)`,y:(componentViewport?.y||0)+0+0+0+12090.24+0+735+12+0+24+0},xX3V4Ojb9:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px) - 264px)`,y:(componentViewport?.y||0)+0+0+0+11432.74+0+735+0+0+12+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:128,width:`calc(${componentViewport?.width||\"100vw\"} - 264px)`,y:(componentViewport?.y||0)+0+0+0+11400.74+0+735+0+0+12+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-byaiu8-container\",nodeId:\"RdTwnKel1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{variant:\"rjhapvPG8\"},Rg5yzVVxZ:{variant:\"WGmH1b11w\"}},children:/*#__PURE__*/_jsx(FaqHome,{height:\"100%\",id:\"RdTwnKel1\",layoutId:\"RdTwnKel1\",style:{width:\"100%\"},variant:\"gQE_jSDI5\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Tc_IVQGJI\",webPageId:\"LwITWlxoL\"},implicitPathVariables:undefined},{href:{hash:\":Tc_IVQGJI\",webPageId:\"LwITWlxoL\"},implicitPathVariables:undefined},{href:{hash:\":Tc_IVQGJI\",webPageId:\"LwITWlxoL\"},implicitPathVariables:undefined},{href:{hash:\":Tc_IVQGJI\",webPageId:\"LwITWlxoL\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{y:(componentViewport?.y||0)+0+0+0+10856.0141+0+735+0+0+12+176},Rg5yzVVxZ:{y:(componentViewport?.y||0)+0+0+0+12090.24+0+735+12+0+24+176},xX3V4Ojb9:{y:(componentViewport?.y||0)+0+0+0+11432.74+0+735+0+0+12+176}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+11400.74+0+735+0+0+12+176,children:/*#__PURE__*/_jsx(Container,{className:\"framer-se7gf3-container\",nodeId:\"Na1hZj2_z\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{bmfPW78Z7:resolvedLinks4[2]},Rg5yzVVxZ:{bmfPW78Z7:resolvedLinks4[3]},xX3V4Ojb9:{bmfPW78Z7:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(NavigationButton,{bmfPW78Z7:resolvedLinks4[0],EqwQqQdNK:true,height:\"100%\",Ia0McjoIm:0,id:\"Na1hZj2_z\",layoutId:\"Na1hZj2_z\",lObK378T6:false,OzktHB1SZ:true,Q3g_CPoK1:-90,qKlaRm3Cl:\"Still Have Questions?\",variant:\"FhVfGU67I\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d5sk0c\",\"data-framer-name\":\"Spacer\"})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"j8t8Ye8DD\"},implicitPathVariables:undefined},{href:{webPageId:\"j8t8Ye8DD\"},implicitPathVariables:undefined},{href:{webPageId:\"j8t8Ye8DD\"},implicitPathVariables:undefined},{href:{webPageId:\"j8t8Ye8DD\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{y:(componentViewport?.y||0)+0+0+0+12069.0141},Rg5yzVVxZ:{y:(componentViewport?.y||0)+0+0+0+13375.24},xX3V4Ojb9:{width:`min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px)`,y:(componentViewport?.y||0)+0+0+0+12895.74}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1210,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+12613.74,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1znszr-container\",id:elementId19,nodeId:\"Bv1KjKMS_\",ref:ref21,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{Bm3umUxF6:resolvedLinks5[2],variant:\"R6S_5nWLg\"},Rg5yzVVxZ:{Bm3umUxF6:resolvedLinks5[3],CR3yu4naR:\"Discover NetPlus\",variant:\"gC8oK7hLD\"},xX3V4Ojb9:{Bm3umUxF6:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(NextUpSectionNextUp,{a4WJ6RFcF:\"https://framerusercontent.com/assets/WjTKk1T8b3GWz01yNrMM1XRecY.mp4\",Bm3umUxF6:resolvedLinks5[0],CR3yu4naR:\"Discover NetPlus Material\",Ei_JS9s0d:\"4px 0px 0px 0px\",FBVP0x80G:false,height:\"100%\",id:\"Bv1KjKMS_\",layoutId:\"Bv1KjKMS_\",SkvAIBLp5:\"Explore a new wave of post-consumer recycled materials made from fishing nets.\",style:{width:\"100%\"},Uq4M1207Z:\"NetPlus Material\",variant:\"uVOxeUUhg\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rx82eo\",\"data-framer-name\":\"sectionFooter\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":sfkjZwlPj\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":sfkjZwlPj\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":sfkjZwlPj\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":sfkjZwlPj\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{y:(componentViewport?.y||0)+0+0+0+13279.0141+0+0},Rg5yzVVxZ:{y:(componentViewport?.y||0)+0+0+0+14585.24+0+0},xX3V4Ojb9:{width:`min(${componentViewport?.width||\"100vw\"} * 0.7, 2000px)`,y:(componentViewport?.y||0)+0+0+0+14105.74+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:620,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+13823.74+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ps52v6-container\",id:elementId20,nodeId:\"DwjkrFehU\",ref:ref3,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KyKZShAoi:{goMwpZwzd:resolvedLinks6[2],variant:\"jL5tJykQp\"},Rg5yzVVxZ:{goMwpZwzd:resolvedLinks6[3],variant:\"QMo1qGlMT\"},xX3V4Ojb9:{goMwpZwzd:resolvedLinks6[1],variant:\"PZuuGs_JE\"}},children:/*#__PURE__*/_jsx(NavigationGlobalFooter,{goMwpZwzd:resolvedLinks6[0],height:\"100%\",id:\"DwjkrFehU\",layoutId:\"DwjkrFehU\",style:{width:\"100%\"},t3eRA3KDr:true,variant:\"QyCoW553W\",width:\"100%\"})})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hWiW2.framer-lux5qc, .framer-hWiW2 .framer-lux5qc { display: block; }\",\".framer-hWiW2.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-5022d85b-0b53-4afe-ac84-f257a81ea692, #0a0f10); 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-hWiW2 .framer-bn32rh-container { flex: none; height: 100vh; min-height: 100%; min-width: 100%; position: fixed; right: 0px; top: 0px; width: 100%; z-index: 0; }\",\".framer-hWiW2 .framer-1uqws3c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: fixed; right: 0px; top: 0px; z-index: 6; }\",\".framer-hWiW2 .framer-126147v-container, .framer-hWiW2 .framer-1ps52v6-container { flex: none; height: auto; position: relative; width: 100%; z-index: 3; }\",\".framer-hWiW2 .framer-r5s5h6 { align-content: flex-end; align-items: flex-end; bottom: 0px; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px 48px 10px 24px; position: absolute; right: 0px; width: min-content; z-index: 6; }\",\".framer-hWiW2 .framer-3ftwlu-container, .framer-hWiW2 .framer-d9tlsm-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 48px; }\",\".framer-hWiW2.framer-1wd1xi0 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 8; }\",\".framer-hWiW2.framer-19aofav-container { bottom: 0px; flex: none; position: fixed; right: 0px; top: 0px; width: 500px; will-change: var(--framer-will-change-effect-override, transform); z-index: 9; }\",\".framer-hWiW2.framer-106ahwz { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 80px; justify-content: flex-start; overflow: visible; padding: 0px 48px 10px 24px; position: fixed; right: 0px; top: 21px; width: min-content; z-index: 10; }\",\".framer-hWiW2 .framer-145lq9q-container { align-self: stretch; flex: none; height: auto; position: relative; width: auto; }\",\".framer-hWiW2 .framer-1tegmn2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-end; left: 160px; overflow: hidden; padding: 0px; position: fixed; right: 160px; top: 0px; z-index: 2; }\",\".framer-hWiW2 .framer-1ff3c6i, .framer-hWiW2 .framer-1xuczgb { flex: none; gap: 10px; height: 30vh; max-height: 288px; overflow: hidden; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-1ozlgwm, .framer-hWiW2 .framer-s72vk6 { aspect-ratio: 2.5806451612903225 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 341px); overflow: visible; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-18hkqgz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px 0px 12px 0px; position: relative; width: min-content; }\",\".framer-hWiW2 .framer-f2lmx, .framer-hWiW2 .framer-8g4o9 { aspect-ratio: 2.1621621621621623 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 74px); overflow: visible; position: relative; width: 160px; }\",\".framer-hWiW2 .framer-1tckr0v-container { flex: none; height: auto; position: relative; width: auto; z-index: 2; }\",\".framer-hWiW2 .framer-8dbxh9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-1wes3qn { align-content: flex-start; align-items: flex-start; bottom: 620px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; justify-content: flex-start; left: 160px; overflow: hidden; padding: 0px; position: absolute; right: 160px; top: 0px; z-index: 2; }\",\".framer-hWiW2 .framer-11h3on8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 160px; }\",\".framer-hWiW2 .framer-16phhf5 { background-color: rgba(255, 255, 255, 0.5); flex: none; height: 100%; left: calc(50.00000000000002% - 1px / 2); overflow: visible; position: absolute; top: calc(49.99574504297509% - 100% / 2); width: 1px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-hWiW2 .framer-9e8yk0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-start; min-height: 1200px; overflow: visible; padding: 0px 160px 0px 160px; position: relative; width: 100%; z-index: 3; }\",\".framer-hWiW2 .framer-9uskz9 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-mv8p4o { background-color: rgba(0, 0, 0, 0); flex: none; height: 30vh; max-height: 288px; opacity: 0; overflow: visible; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-1pts53l { background-color: rgba(255, 255, 255, 0.6); bottom: 0px; flex: none; height: 80px; left: 0px; overflow: hidden; position: absolute; right: 0px; }\",\".framer-hWiW2 .framer-1hyy3ga-container { aspect-ratio: 2.5806451612903225 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 341px); position: relative; width: 100%; }\",\".framer-hWiW2 .framer-ttvg5d { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-hWiW2 .framer-1tj0i4l { -webkit-filter: invert(0); aspect-ratio: 2.1621621621621623 / 1; filter: invert(0); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 74px); overflow: visible; position: relative; width: 160px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-hWiW2 .framer-pmsu4g { align-self: stretch; flex: none; height: 1px; overflow: hidden; position: relative; width: auto; }\",\".framer-hWiW2 .framer-ptklvn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 240px 0px 240px; position: relative; width: 100%; z-index: 3; }\",\".framer-hWiW2 .framer-gwvjnp { 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: flex-start; overflow: hidden; padding: 0px 0px 0px 1px; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-1guiovm { align-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.6); border-bottom-right-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; max-width: 720px; overflow: hidden; padding: 64px 56px 64px 56px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hWiW2 .framer-1izbvy2 { aspect-ratio: 4.666666666666667 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 78px); overflow: visible; position: relative; width: 60%; }\",\".framer-hWiW2 .framer-6s7vy9-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 342px); position: relative; width: 100%; }\",\".framer-hWiW2 .framer-15rmve9 { -webkit-filter: invert(1); aspect-ratio: 8.333333333333334 / 1; filter: invert(1); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 44px); overflow: visible; position: relative; width: 60%; }\",\".framer-hWiW2 .framer-emvy5v-container, .framer-hWiW2 .framer-9la5dv-container, .framer-hWiW2 .framer-1e8gq47-container, .framer-hWiW2 .framer-1vsz00b-container, .framer-hWiW2 .framer-67jasf-container, .framer-hWiW2 .framer-se7gf3-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-hWiW2 .framer-3g6thm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 240px; position: relative; width: 100%; z-index: 3; }\",\".framer-hWiW2 .framer-a56csp { background-color: rgba(0, 0, 0, 0); flex: none; height: 246px; opacity: 0; overflow: visible; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-1wvaxts { 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: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hWiW2 .framer-32xoxz { 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: 24px; position: relative; width: min-content; }\",\".framer-hWiW2 .framer-1ho152w, .framer-hWiW2 .framer-1kyymrj, .framer-hWiW2 .framer-gupnxd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hWiW2 .framer-zuprf3, .framer-hWiW2 .framer-gddh4g, .framer-hWiW2 .framer-2lyq6k, .framer-hWiW2 .framer-6xbxhz, .framer-hWiW2 .framer-1ko3u0m, .framer-hWiW2 .framer-1fddu5b, .framer-hWiW2 .framer-4dier3, .framer-hWiW2 .framer-r4q0h9, .framer-hWiW2 .framer-514ove { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hWiW2 .framer-xzhq1c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-hWiW2 .framer-1axwu78 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hWiW2 .framer-1t6se2g { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 612px; word-break: break-word; word-wrap: break-word; }\",\".framer-hWiW2 .framer-3r4cad { -webkit-user-select: none; align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 24px 0px 12px; position: relative; user-select: none; width: auto; }\",\".framer-hWiW2 .framer-1vy5ew9, .framer-hWiW2 .framer-1bwupjf, .framer-hWiW2 .framer-xfen7, .framer-hWiW2 .framer-1jfnvnv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-1ct45nv, .framer-hWiW2 .framer-18npc8x, .framer-hWiW2 .framer-z063lj, .framer-hWiW2 .framer-1ygbkp5 { align-content: center; align-items: center; aspect-ratio: 2.1379310344827585 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 58px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 124px; z-index: 1; }\",\".framer-hWiW2 .framer-1hwr7wn { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 58px); overflow: hidden; position: relative; width: 47%; }\",\".framer-hWiW2 .framer-184m0fd { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hWiW2 .framer-1xpu6z8 { aspect-ratio: 1.26 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 51%; }\",\".framer-hWiW2 .framer-10fdncb, .framer-hWiW2 .framer-6gft77, .framer-hWiW2 .framer-942vrd { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hWiW2 .framer-1c0v4fv { aspect-ratio: 1.391304347826087 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); overflow: hidden; position: relative; width: 52%; }\",\".framer-hWiW2 .framer-w16cei { aspect-ratio: 2.16 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 87%; }\",\".framer-hWiW2 .framer-las8am, .framer-hWiW2 .framer-1v9luw2, .framer-hWiW2 .framer-1544uj7 { -webkit-filter: invert(0); align-content: center; align-items: center; display: flex; filter: invert(0); flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-hWiW2 .framer-18ajie3-container, .framer-hWiW2 .framer-1u7zk79-container, .framer-hWiW2 .framer-1eu17d5-container, .framer-hWiW2 .framer-10q6qi0-container, .framer-hWiW2 .framer-xatg36-container, .framer-hWiW2 .framer-byaiu8-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-k7zr9y, .framer-hWiW2 .framer-1x3bfa9, .framer-hWiW2 .framer-1lwgx1k { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; scroll-margin-top: 250px; width: 100%; z-index: 3; }\",\".framer-hWiW2 .framer-8qzvxo, .framer-hWiW2 .framer-za9kfg, .framer-hWiW2 .framer-cr1p6g { flex: none; height: 100%; min-height: 1420px; overflow: visible; position: absolute; right: -12px; top: 0px; width: 14%; z-index: 0; }\",\".framer-hWiW2 .framer-f5976x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 64px 160px 64px; position: relative; width: 100%; z-index: 1; }\",\".framer-hWiW2 .framer-1xhov2l { 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: flex-start; max-width: 856px; overflow: visible; padding: 0px 0px 0px 24px; position: relative; width: 100%; z-index: 1; }\",\".framer-hWiW2 .framer-1f6sl9h, .framer-hWiW2 .framer-ql4xeo, .framer-hWiW2 .framer-18w88ob { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-ydi1h5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 600px; overflow: visible; padding: 0px 24px 0px 0px; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-1aajgx7, .framer-hWiW2 .framer-inl19r, .framer-hWiW2 .framer-472ctl, .framer-hWiW2 .framer-1n1k7m1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hWiW2 .framer-5hel5t-container, .framer-hWiW2 .framer-15ifdv7-container, .framer-hWiW2 .framer-vv04py-container { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-co66y7, .framer-hWiW2 .framer-1uouavq, .framer-hWiW2 .framer-8zcii9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 4px 24px 0px 0px; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-55ogsj, .framer-hWiW2 .framer-wsc4a7, .framer-hWiW2 .framer-n9id5k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 24px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-1cno8mc { aspect-ratio: 1.25 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 858px); overflow: visible; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-1husqhb-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 500px); left: 50%; position: absolute; top: 36%; transform: translate(-50%, -50%); width: 47%; }\",\".framer-hWiW2 .framer-1k5htfn-container { aspect-ratio: 2.6219512195121952 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 163px); left: 80%; position: absolute; top: 45%; transform: translate(-50%, -50%); width: 40%; }\",\".framer-hWiW2 .framer-14u143v-container { aspect-ratio: 1.3846153846153846 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 264px); left: 17%; position: absolute; top: 16%; transform: translate(-50%, -50%); width: 34%; }\",\".framer-hWiW2 .framer-1bbra6t-container { aspect-ratio: 1.471698113207547 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 204px); left: 29%; position: absolute; top: 86%; transform: translate(-50%, -50%); width: 28%; }\",\".framer-hWiW2 .framer-1bw8wwj-container { aspect-ratio: 1.439453125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 255px); left: 82%; position: absolute; top: 12%; transform: translate(-50%, -50%); width: 34%; }\",\".framer-hWiW2 .framer-141irde-container { aspect-ratio: 1.0048076923076923 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 179px); left: 50%; position: absolute; top: 10%; transform: translate(-50%, -50%); width: 17%; }\",\".framer-hWiW2 .framer-p1rbxg-container { aspect-ratio: 1.4549180327868851 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 242px); left: 73%; position: absolute; top: 86%; transform: translate(-50%, -50%); width: 33%; }\",\".framer-hWiW2 .framer-11ykc2w-container { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 203px); left: 18%; position: absolute; top: 53%; transform: translate(-50%, -50%); width: 28%; }\",\".framer-hWiW2 .framer-15ieupt-container, .framer-hWiW2 .framer-1ua57g6-container, .framer-hWiW2 .framer-qqfsqj-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-hWiW2 .framer-157ohde { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 64px 160px 64px; position: relative; width: 100%; z-index: 1; }\",\".framer-hWiW2 .framer-kmem2h { 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: flex-start; max-width: 956px; overflow: visible; padding: 0px 0px 0px 24px; position: relative; width: 100%; z-index: 1; }\",\".framer-hWiW2 .framer-oovzuq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 24px 0px 0px; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-1sf5x4o { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-hWiW2 .framer-z8vszn { aspect-ratio: 1.517555266579974 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 707px); overflow: visible; position: relative; width: 100%; z-index: 1; }\",\".framer-hWiW2 .framer-sx7xvz { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 64%; overflow: visible; padding: 0px; position: absolute; top: 79%; transform: translate(-50%, -50%); width: 23%; }\",\".framer-hWiW2 .framer-1sxl53e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hWiW2 .framer-1roth33 { --framer-paragraph-spacing: 0px; flex: none; height: 40px; opacity: 0; position: relative; white-space: pre; width: auto; }\",\".framer-hWiW2 .framer-1d5s2j9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 40px; white-space: pre-wrap; width: 350px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-hWiW2 .framer-18xvd5q-container { flex: none; height: auto; left: 36%; position: absolute; top: 25%; transform: translate(-50%, -50%); width: 22%; }\",\".framer-hWiW2 .framer-ng8q8b-container { flex: none; height: auto; left: 37%; position: absolute; top: 75%; transform: translate(-50%, -50%); width: 22%; }\",\".framer-hWiW2 .framer-22zz0z-container { flex: none; height: auto; left: 88%; position: absolute; top: 42%; transform: translate(-50%, -50%); width: 22%; }\",\".framer-hWiW2 .framer-12m4i71-container { flex: none; height: auto; left: 63%; position: absolute; top: 21%; transform: translate(-50%, -50%); width: 22%; }\",\".framer-hWiW2 .framer-1f98bxr-container { flex: none; height: auto; left: 13%; position: absolute; top: 55%; transform: translate(-50%, -50%); width: 22%; }\",\".framer-hWiW2 .framer-1blqefp { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-hWiW2 .framer-1szcj6t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 240px; position: relative; width: 100%; z-index: 3; }\",\".framer-hWiW2 .framer-1n14j9f { background-color: rgba(0, 0, 0, 0); flex: none; height: 50vh; opacity: 0; overflow: visible; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-u7fygc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 24px; width: 100%; }\",\".framer-hWiW2 .framer-15er2vb { 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: 24px; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-13ojpss { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 36px 0px 0px; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-1gz61i0 { flex: none; height: auto; max-width: 436px; opacity: 0.9; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hWiW2 .framer-35p04l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-1af585f-container, .framer-hWiW2 .framer-lzblp-container { flex: none; height: 88px; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-jcp7g4 { 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: 36px 0px 0px 24px; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-p27ey8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 64px 160px 64px; position: relative; width: 100%; z-index: 1; }\",\".framer-hWiW2 .framer-xwng5i { 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: flex-start; max-width: 730px; overflow: visible; padding: 0px 0px 0px 24px; position: relative; width: 100%; z-index: 1; }\",\".framer-hWiW2 .framer-l1sjer { 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: flex-start; overflow: visible; padding: 0px 24px 0px 0px; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-1ddijls { flex: 1 0 0px; height: auto; max-width: 632px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-hWiW2 .framer-1iapdwg { aspect-ratio: 1.8524980174464711 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 579px); overflow: visible; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-mtp0ar-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 536px); left: 48%; position: absolute; top: 46%; transform: translate(-50%, -50%); width: 50%; }\",\".framer-hWiW2 .framer-160xjn4-container { aspect-ratio: 1.4334600760456273 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 210px); left: 76%; position: absolute; top: 78%; transform: translate(-50%, -50%); width: 28%; }\",\".framer-hWiW2 .framer-p38bej { aspect-ratio: 1.2859477124183007 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 260px); left: 67%; overflow: visible; position: absolute; top: 13%; transform: translate(-50%, -50%); width: 31%; }\",\".framer-hWiW2 .framer-1sulpsp { aspect-ratio: 1.048780487804878 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 164px); left: 80%; position: absolute; top: -13%; transform: translate(-50%, -50%); width: 16%; }\",\".framer-hWiW2 .framer-1kiwtbo-container { aspect-ratio: 1.4545454545454546 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 220px); left: 15%; position: absolute; top: 19%; transform: translate(-50%, -50%); width: 30%; }\",\".framer-hWiW2 .framer-vtcbcn-container { aspect-ratio: 1.4893617021276595 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 216px); left: 21%; position: absolute; top: 81%; transform: translate(-50%, -50%); width: 30%; }\",\".framer-hWiW2 .framer-11dnl2e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-hWiW2 .framer-yk63al { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 240px; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-1w23j3v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 12px 0px 0px 24px; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-1d5sk0c { background-color: rgba(0, 0, 0, 0); flex: none; height: 25vh; overflow: visible; position: relative; width: 100%; }\",\".framer-hWiW2 .framer-1znszr-container { flex: none; height: auto; position: relative; scroll-margin-top: 48px; width: 100%; }\",\".framer-hWiW2 .framer-1rx82eo { 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; position: relative; width: 100%; z-index: 3; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,\"@media (min-width: 2000px) { .framer-hWiW2.framer-72rtr7 { justify-content: center; width: 2000px; } .framer-hWiW2 .framer-bn32rh-container, .framer-hWiW2 .framer-yk63al { order: 1; } .framer-hWiW2 .framer-1uqws3c { order: 2; } .framer-hWiW2 .framer-1tegmn2 { left: 50%; max-width: 2000px; order: 3; padding: 0px 160px 0px 160px; right: unset; transform: translateX(-50%); width: 70%; z-index: unset; } .framer-hWiW2 .framer-1ff3c6i, .framer-hWiW2 .framer-1xuczgb, .framer-hWiW2 .framer-mv8p4o { max-height: unset; } .framer-hWiW2 .framer-1ozlgwm, .framer-hWiW2 .framer-s72vk6, .framer-hWiW2 .framer-1hyy3ga-container { height: var(--framer-aspect-ratio-supported, 503px); width: 120%; } .framer-hWiW2 .framer-8dbxh9 { max-width: 2000px; order: 4; width: 70%; } .framer-hWiW2 .framer-1t6se2g { width: 750px; } .framer-hWiW2 .framer-k7zr9y, .framer-hWiW2 .framer-1x3bfa9, .framer-hWiW2 .framer-1lwgx1k { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; scroll-margin-top: 200px; will-change: var(--framer-will-change-override, transform); } .framer-hWiW2 .framer-8qzvxo { width: 14%; } .framer-hWiW2 .framer-f5976x { border-top-left-radius: 20px; border-top-right-radius: 20px; padding: 48px 96px 160px 96px; } .framer-hWiW2 .framer-1xhov2l { max-width: 1032px; } .framer-hWiW2 .framer-ydi1h5 { max-width: 648px; } .framer-hWiW2 .framer-55ogsj { padding: 32px 0px 0px 0px; } .framer-hWiW2 .framer-1cno8mc { height: var(--framer-aspect-ratio-supported, 967px); } .framer-hWiW2 .framer-1husqhb-container { height: var(--framer-aspect-ratio-supported, 564px); } .framer-hWiW2 .framer-1k5htfn-container { height: var(--framer-aspect-ratio-supported, 184px); } .framer-hWiW2 .framer-14u143v-container { height: var(--framer-aspect-ratio-supported, 298px); } .framer-hWiW2 .framer-1bbra6t-container { height: var(--framer-aspect-ratio-supported, 230px); } .framer-hWiW2 .framer-1bw8wwj-container { height: var(--framer-aspect-ratio-supported, 287px); } .framer-hWiW2 .framer-141irde-container { height: var(--framer-aspect-ratio-supported, 202px); } .framer-hWiW2 .framer-p1rbxg-container { height: var(--framer-aspect-ratio-supported, 273px); } .framer-hWiW2 .framer-11ykc2w-container { height: var(--framer-aspect-ratio-supported, 229px); } .framer-hWiW2 .framer-157ohde { padding: 48px 96px 160px 96px; } .framer-hWiW2 .framer-kmem2h { max-width: 988px; order: 0; } .framer-hWiW2 .framer-z8vszn { height: var(--framer-aspect-ratio-supported, 796px); order: 1; } .framer-hWiW2 .framer-u7fygc { scroll-margin-top: 200px; } .framer-hWiW2 .framer-1gz61i0 { max-width: 500px; } .framer-hWiW2 .framer-35p04l { width: 130%; } .framer-hWiW2 .framer-cr1p6g { height: 1778px; width: 14%; } .framer-hWiW2 .framer-p27ey8 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; padding: 48px 96px 160px 96px; will-change: var(--framer-will-change-override, transform); } .framer-hWiW2 .framer-xwng5i { max-width: 890px; } .framer-hWiW2 .framer-18w88ob { max-width: 930px; } .framer-hWiW2 .framer-1ddijls { max-width: 720px; } .framer-hWiW2 .framer-1iapdwg { height: var(--framer-aspect-ratio-supported, 653px); } .framer-hWiW2 .framer-mtp0ar-container { height: var(--framer-aspect-ratio-supported, 604px); } .framer-hWiW2 .framer-160xjn4-container { height: var(--framer-aspect-ratio-supported, 236px); } .framer-hWiW2 .framer-p38bej { height: var(--framer-aspect-ratio-supported, 294px); } .framer-hWiW2 .framer-1sulpsp { height: var(--framer-aspect-ratio-supported, 185px); } .framer-hWiW2 .framer-1kiwtbo-container { height: var(--framer-aspect-ratio-supported, 248px); } .framer-hWiW2 .framer-vtcbcn-container { height: var(--framer-aspect-ratio-supported, 243px); } .framer-hWiW2 .framer-xatg36-container { order: 0; } .framer-hWiW2 .framer-1d5sk0c { height: 50vh; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-hWiW2.framer-72rtr7 { width: 810px; } .framer-hWiW2 .framer-bn32rh-container, .framer-hWiW2 .framer-r5s5h6, .framer-hWiW2 .framer-d9tlsm-container { order: 1; } .framer-hWiW2 .framer-1uqws3c { order: 2; } .framer-hWiW2 .framer-126147v-container, .framer-hWiW2 .framer-145lq9q-container, .framer-hWiW2 .framer-9uskz9, .framer-hWiW2 .framer-10q6qi0-container { order: 0; } .framer-hWiW2 .framer-1tegmn2 { left: 48px; order: 3; right: 48px; } .framer-hWiW2 .framer-1ff3c6i, .framer-hWiW2 .framer-1xuczgb, .framer-hWiW2 .framer-mv8p4o { max-height: unset; } .framer-hWiW2 .framer-1ozlgwm, .framer-hWiW2 .framer-s72vk6, .framer-hWiW2 .framer-1hyy3ga-container { height: var(--framer-aspect-ratio-supported, 277px); } .framer-hWiW2 .framer-f2lmx, .framer-hWiW2 .framer-1tj0i4l { height: var(--framer-aspect-ratio-supported, 55px); width: 119px; } .framer-hWiW2 .framer-1tckr0v-container { will-change: var(--framer-will-change-effect-override, transform); } .framer-hWiW2 .framer-8dbxh9, .framer-hWiW2 .framer-las8am { order: 4; } .framer-hWiW2 .framer-1wes3qn { left: 48px; order: 0; right: 48px; } .framer-hWiW2 .framer-8g4o9 { height: var(--framer-aspect-ratio-supported, 56px); width: 120px; } .framer-hWiW2 .framer-11h3on8 { width: 119px; } .framer-hWiW2 .framer-9e8yk0 { min-height: 1000px; order: 1; padding: 0px 48px 0px 48px; } .framer-hWiW2 .framer-ptklvn { order: 2; padding: 0px 108px 0px 108px; } .framer-hWiW2 .framer-1izbvy2 { height: var(--framer-aspect-ratio-supported, 62px); } .framer-hWiW2 .framer-6s7vy9-container { height: var(--framer-aspect-ratio-supported, 271px); } .framer-hWiW2 .framer-15rmve9 { height: var(--framer-aspect-ratio-supported, 35px); } .framer-hWiW2 .framer-3g6thm { order: 3; padding: 0px 0px 0px 108px; } .framer-hWiW2 .framer-1t6se2g { width: 564px; } .framer-hWiW2 .framer-3r4cad { gap: 32px; } .framer-hWiW2 .framer-1ct45nv, .framer-hWiW2 .framer-18npc8x, .framer-hWiW2 .framer-z063lj, .framer-hWiW2 .framer-1ygbkp5 { height: var(--framer-aspect-ratio-supported, 47px); width: 100px; } .framer-hWiW2 .framer-1hwr7wn { height: var(--framer-aspect-ratio-supported, 47px); } .framer-hWiW2 .framer-1bwupjf, .framer-hWiW2 .framer-xfen7, .framer-hWiW2 .framer-1jfnvnv { height: 51px; width: 550px; } .framer-hWiW2 .framer-1xpu6z8, .framer-hWiW2 .framer-w16cei { height: var(--framer-aspect-ratio-supported, 41px); } .framer-hWiW2 .framer-10fdncb, .framer-hWiW2 .framer-6gft77, .framer-hWiW2 .framer-942vrd { align-self: unset; height: 100%; } .framer-hWiW2 .framer-1c0v4fv { height: var(--framer-aspect-ratio-supported, 37px); } .framer-hWiW2 .framer-8qzvxo, .framer-hWiW2 .framer-za9kfg, .framer-hWiW2 .framer-cr1p6g { width: 20%; } .framer-hWiW2 .framer-f5976x { gap: 64px; padding: 40px 36px 120px 36px; } .framer-hWiW2 .framer-1xhov2l { max-width: 600px; padding: 0px 0px 0px 12px; } .framer-hWiW2 .framer-1f6sl9h { gap: 8px; } .framer-hWiW2 .framer-ydi1h5 { max-width: 448px; } .framer-hWiW2 .framer-1cno8mc { height: var(--framer-aspect-ratio-supported, 591px); } .framer-hWiW2 .framer-1husqhb-container { height: var(--framer-aspect-ratio-supported, 344px); } .framer-hWiW2 .framer-1k5htfn-container { height: var(--framer-aspect-ratio-supported, 113px); } .framer-hWiW2 .framer-14u143v-container { height: var(--framer-aspect-ratio-supported, 182px); } .framer-hWiW2 .framer-1bbra6t-container, .framer-hWiW2 .framer-11ykc2w-container { height: var(--framer-aspect-ratio-supported, 140px); } .framer-hWiW2 .framer-1bw8wwj-container { height: var(--framer-aspect-ratio-supported, 175px); } .framer-hWiW2 .framer-141irde-container { height: var(--framer-aspect-ratio-supported, 123px); } .framer-hWiW2 .framer-p1rbxg-container { height: var(--framer-aspect-ratio-supported, 167px); } .framer-hWiW2 .framer-15ieupt-container { order: 5; } .framer-hWiW2 .framer-1v9luw2 { order: 6; } .framer-hWiW2 .framer-1x3bfa9, .framer-hWiW2 .framer-u7fygc { gap: 24px; } .framer-hWiW2 .framer-157ohde { gap: 24px; padding: 40px 36px 144px 36px; } .framer-hWiW2 .framer-kmem2h { padding: 0px 0px 0px 12px; } .framer-hWiW2 .framer-ql4xeo { max-width: 687px; } .framer-hWiW2 .framer-z8vszn { aspect-ratio: 0.9437340153452686 / 1; height: var(--framer-aspect-ratio-supported, 782px); } .framer-hWiW2 .framer-sx7xvz { left: 67%; top: 80%; width: 27%; } .framer-hWiW2 .framer-1d5s2j9 { width: 174px; } .framer-hWiW2 .framer-18xvd5q-container { left: 32%; top: 22%; width: 27%; } .framer-hWiW2 .framer-ng8q8b-container { left: 34%; top: 84%; width: 27%; } .framer-hWiW2 .framer-22zz0z-container { left: 86%; top: 43%; width: 27%; } .framer-hWiW2 .framer-12m4i71-container { left: 65%; top: 16%; width: 27%; } .framer-hWiW2 .framer-1f98bxr-container { left: 14%; top: 55%; width: 27%; } .framer-hWiW2 .framer-1ua57g6-container { order: 7; } .framer-hWiW2 .framer-1szcj6t { order: 8; padding: 0px 0px 0px 107px; } .framer-hWiW2 .framer-1gz61i0 { width: 372px; } .framer-hWiW2 .framer-35p04l { gap: 36px; } .framer-hWiW2 .framer-1af585f-container, .framer-hWiW2 .framer-lzblp-container { height: 64px; } .framer-hWiW2 .framer-1544uj7 { order: 9; } .framer-hWiW2 .framer-1lwgx1k { gap: 24px; order: 1; } .framer-hWiW2 .framer-p27ey8 { gap: 56px; padding: 40px 36px 120px 36px; } .framer-hWiW2 .framer-xwng5i { max-width: 552px; padding: 0px 0px 0px 12px; } .framer-hWiW2 .framer-1ddijls { max-width: unset; } .framer-hWiW2 .framer-1iapdwg { aspect-ratio: 1.387218045112782 / 1; height: var(--framer-aspect-ratio-supported, 532px); } .framer-hWiW2 .framer-mtp0ar-container { height: var(--framer-aspect-ratio-supported, 406px); width: 55%; } .framer-hWiW2 .framer-160xjn4-container { height: var(--framer-aspect-ratio-supported, 165px); left: 76%; top: 77%; width: 32%; } .framer-hWiW2 .framer-p38bej { height: var(--framer-aspect-ratio-supported, 207px); left: 70%; top: 15%; width: 36%; } .framer-hWiW2 .framer-1sulpsp { height: var(--framer-aspect-ratio-supported, 141px); left: 85%; top: -11%; width: 20%; } .framer-hWiW2 .framer-1kiwtbo-container { height: var(--framer-aspect-ratio-supported, 183px); left: 18%; top: 17%; width: 36%; } .framer-hWiW2 .framer-vtcbcn-container { height: var(--framer-aspect-ratio-supported, 179px); left: 21%; top: 82%; width: 36%; } .framer-hWiW2 .framer-qqfsqj-container { order: 10; } .framer-hWiW2 .framer-11dnl2e { order: 11; padding: 0px 48px 0px 0px; } .framer-hWiW2 .framer-yk63al { padding: 0px 0px 0px 107px; } .framer-hWiW2 .framer-1znszr-container { order: 12; } .framer-hWiW2 .framer-1rx82eo { order: 13; }}\",\"@media (max-width: 809px) { .framer-hWiW2.framer-72rtr7 { width: 390px; } .framer-hWiW2 .framer-bn32rh-container, .framer-hWiW2 .framer-55ogsj, .framer-hWiW2 .framer-1x3bfa9 { order: 1; } .framer-hWiW2 .framer-1uqws3c, .framer-hWiW2 .framer-1blqefp { order: 2; } .framer-hWiW2 .framer-126147v-container, .framer-hWiW2 .framer-1u7zk79-container, .framer-hWiW2 .framer-1eu17d5-container { order: 0; } .framer-hWiW2 .framer-r5s5h6 { order: 1; padding: 0px 24px 10px 24px; } .framer-hWiW2.framer-1wd1xi0 { background-color: unset; z-index: 9; } .framer-hWiW2.framer-19aofav-container { left: 0px; width: unset; } .framer-hWiW2.framer-106ahwz { padding: 0px 24px 10px 24px; } .framer-hWiW2 .framer-1tegmn2 { left: 24px; order: 3; right: 24px; } .framer-hWiW2 .framer-1ff3c6i, .framer-hWiW2 .framer-1xuczgb { gap: 0px; max-height: unset; } .framer-hWiW2 .framer-1ozlgwm, .framer-hWiW2 .framer-s72vk6 { height: var(--framer-aspect-ratio-supported, 133px); } .framer-hWiW2 .framer-f2lmx, .framer-hWiW2 .framer-1tj0i4l { height: var(--framer-aspect-ratio-supported, 33px); width: 70px; } .framer-hWiW2 .framer-8dbxh9, .framer-hWiW2 .framer-las8am { order: 4; } .framer-hWiW2 .framer-1wes3qn { bottom: 808px; gap: 8px; left: 24px; order: 0; right: 24px; } .framer-hWiW2 .framer-8g4o9 { height: var(--framer-aspect-ratio-supported, 56px); width: 120px; } .framer-hWiW2 .framer-11h3on8 { width: 70px; } .framer-hWiW2 .framer-9e8yk0 { min-height: unset; order: 1; padding: 0px 24px 0px 24px; } .framer-hWiW2 .framer-mv8p4o { max-height: unset; order: 0; } .framer-hWiW2 .framer-1hyy3ga-container { height: var(--framer-aspect-ratio-supported, 133px); order: 1; } .framer-hWiW2 .framer-ttvg5d { gap: 4px; order: 3; } .framer-hWiW2 .framer-pmsu4g { align-self: unset; overflow: visible; width: 69px; } .framer-hWiW2 .framer-ptklvn { order: 2; padding: 0px 24px 0px 60px; } .framer-hWiW2 .framer-1guiovm { gap: 24px; padding: 36px 24px 36px 24px; } .framer-hWiW2 .framer-1izbvy2 { height: var(--framer-aspect-ratio-supported, 39px); width: 70%; } .framer-hWiW2 .framer-6s7vy9-container { height: var(--framer-aspect-ratio-supported, 145px); } .framer-hWiW2 .framer-15rmve9 { height: var(--framer-aspect-ratio-supported, 22px); width: 70%; } .framer-hWiW2 .framer-3g6thm { order: 3; padding: 0px 0px 0px 60px; } .framer-hWiW2 .framer-a56csp { height: 10vh; } .framer-hWiW2 .framer-1wvaxts { gap: 12px; width: 100%; } .framer-hWiW2 .framer-32xoxz { gap: 12px; padding: 24px 0px 24px 24px; width: 100%; } .framer-hWiW2 .framer-1kyymrj { width: 100%; } .framer-hWiW2 .framer-1t6se2g { max-width: 248px; width: 100%; } .framer-hWiW2 .framer-3r4cad { align-self: unset; gap: 24px; width: 100%; } .framer-hWiW2 .framer-1vy5ew9, .framer-hWiW2 .framer-1bwupjf, .framer-hWiW2 .framer-xfen7, .framer-hWiW2 .framer-1jfnvnv { gap: 8px; max-width: 330px; } .framer-hWiW2 .framer-1ct45nv, .framer-hWiW2 .framer-18npc8x, .framer-hWiW2 .framer-z063lj, .framer-hWiW2 .framer-1ygbkp5 { height: var(--framer-aspect-ratio-supported, 26px); width: 19%; } .framer-hWiW2 .framer-1hwr7wn { height: var(--framer-aspect-ratio-supported, 26px); } .framer-hWiW2 .framer-184m0fd, .framer-hWiW2 .framer-10fdncb, .framer-hWiW2 .framer-6gft77, .framer-hWiW2 .framer-942vrd { flex: 1 0 0px; width: 1px; } .framer-hWiW2 .framer-6xbxhz, .framer-hWiW2 .framer-1ko3u0m, .framer-hWiW2 .framer-1fddu5b, .framer-hWiW2 .framer-4dier3 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-hWiW2 .framer-1xpu6z8, .framer-hWiW2 .framer-w16cei { height: var(--framer-aspect-ratio-supported, 23px); } .framer-hWiW2 .framer-1c0v4fv { height: var(--framer-aspect-ratio-supported, 21px); } .framer-hWiW2 .framer-8qzvxo { min-height: 2832px; order: 0; width: 25%; } .framer-hWiW2 .framer-f5976x { gap: 56px; order: 1; padding: 36px 24px 96px 24px; } .framer-hWiW2 .framer-1xhov2l, .framer-hWiW2 .framer-kmem2h { order: 0; padding: 0px; } .framer-hWiW2 .framer-1f6sl9h { gap: 8px; order: 0; } .framer-hWiW2 .framer-1cno8mc { aspect-ratio: 0.285 / 1; height: var(--framer-aspect-ratio-supported, 1200px); order: 1; } .framer-hWiW2 .framer-1husqhb-container { height: var(--framer-aspect-ratio-supported, 308px); left: 0px; top: 35%; transform: translateY(-50%); width: 90%; } .framer-hWiW2 .framer-1k5htfn-container { height: var(--framer-aspect-ratio-supported, 98px); left: unset; right: 0px; top: 35%; transform: translateY(-50%); width: 75%; } .framer-hWiW2 .framer-14u143v-container { height: var(--framer-aspect-ratio-supported, 235px); left: 0px; top: 0px; transform: unset; width: 95%; } .framer-hWiW2 .framer-1bbra6t-container { height: var(--framer-aspect-ratio-supported, 186px); left: 50%; top: 92%; width: 80%; } .framer-hWiW2 .framer-1bw8wwj-container { height: var(--framer-aspect-ratio-supported, 164px); left: 0px; top: 51%; transform: translateY(-50%); width: 69%; } .framer-hWiW2 .framer-141irde-container { height: var(--framer-aspect-ratio-supported, 137px); left: 64%; top: 22%; width: 40%; } .framer-hWiW2 .framer-p1rbxg-container { height: var(--framer-aspect-ratio-supported, 141px); left: 12px; top: 74%; transform: translateY(-50%); width: 60%; } .framer-hWiW2 .framer-11ykc2w-container { height: var(--framer-aspect-ratio-supported, 126px); left: unset; right: 12px; top: 70%; transform: translateY(-50%); width: 55%; } .framer-hWiW2 .framer-15ieupt-container { order: 5; } .framer-hWiW2 .framer-1v9luw2 { order: 6; } .framer-hWiW2 .framer-za9kfg, .framer-hWiW2 .framer-cr1p6g { min-height: 2832px; width: 25%; } .framer-hWiW2 .framer-157ohde { gap: 56px; padding: 36px 24px 64px 24px; } .framer-hWiW2 .framer-ql4xeo { gap: 8px; max-width: 1200px; } .framer-hWiW2 .framer-oovzuq { flex-direction: column; gap: 0px; padding: 0px; } .framer-hWiW2 .framer-1sf5x4o { flex: none; width: 100%; } .framer-hWiW2 .framer-z8vszn { aspect-ratio: 0.14937286202964653 / 1; gap: 35px; height: var(--framer-aspect-ratio-supported, 2290px); order: 1; } .framer-hWiW2 .framer-sx7xvz { left: 0px; top: 59%; transform: translateY(-50%); width: 76%; } .framer-hWiW2 .framer-18xvd5q-container { left: unset; right: 0px; top: 7%; transform: translateY(-50%); width: 76%; } .framer-hWiW2 .framer-ng8q8b-container { left: unset; right: 0px; top: 76%; transform: translateY(-50%); width: 76%; } .framer-hWiW2 .framer-22zz0z-container { left: unset; right: 0px; top: 41%; transform: translateY(-50%); width: 76%; } .framer-hWiW2 .framer-12m4i71-container { left: 0px; top: 24%; transform: translateY(-50%); width: 76%; } .framer-hWiW2 .framer-1f98bxr-container { left: 0px; top: 93%; transform: translateY(-50%); width: 76%; } .framer-hWiW2 .framer-1ua57g6-container { order: 7; } .framer-hWiW2 .framer-1szcj6t { order: 8; padding: 0px 0px 0px 60px; } .framer-hWiW2 .framer-u7fygc { gap: 0px; } .framer-hWiW2 .framer-15er2vb { gap: 12px; } .framer-hWiW2 .framer-1gz61i0 { width: 267px; } .framer-hWiW2 .framer-35p04l { gap: 24px; padding: 12px 0px 12px 0px; } .framer-hWiW2 .framer-1af585f-container { height: 56px; } .framer-hWiW2 .framer-lzblp-container { height: 57px; } .framer-hWiW2 .framer-jcp7g4 { padding: 24px 0px 0px 24px; } .framer-hWiW2 .framer-1544uj7 { order: 9; } .framer-hWiW2 .framer-1lwgx1k { gap: 48px; } .framer-hWiW2 .framer-p27ey8 { gap: 0px; padding: 36px 24px 96px 24px; } .framer-hWiW2 .framer-xwng5i { max-width: 326px; order: 0; padding: 0px; } .framer-hWiW2 .framer-18w88ob { gap: 8px; } .framer-hWiW2 .framer-l1sjer { padding: 0px; } .framer-hWiW2 .framer-1ddijls { max-width: 312px; } .framer-hWiW2 .framer-8zcii9 { padding: 4px 0px 0px 0px; } .framer-hWiW2 .framer-n9id5k { padding: 12px 0px 0px 0px; } .framer-hWiW2 .framer-1iapdwg { aspect-ratio: 0.38513513513513514 / 1; height: var(--framer-aspect-ratio-supported, 888px); order: 1; } .framer-hWiW2 .framer-mtp0ar-container { height: var(--framer-aspect-ratio-supported, 308px); left: 0px; top: 90px; transform: unset; width: 90%; } .framer-hWiW2 .framer-160xjn4-container { height: var(--framer-aspect-ratio-supported, 191px); left: 40%; top: 89%; width: 80%; } .framer-hWiW2 .framer-p38bej { aspect-ratio: 1.271604938271605 / 1; height: var(--framer-aspect-ratio-supported, 162px); left: 67%; top: 14%; width: 60%; } .framer-hWiW2 .framer-1sulpsp { aspect-ratio: 1.2580645161290323 / 1; height: var(--framer-aspect-ratio-supported, 93px); left: 94%; top: 2%; width: 34%; } .framer-hWiW2 .framer-1kiwtbo-container { height: var(--framer-aspect-ratio-supported, 165px); left: 35%; top: 48%; width: 70%; } .framer-hWiW2 .framer-vtcbcn-container { height: var(--framer-aspect-ratio-supported, 184px); left: 60%; top: 64%; width: 80%; } .framer-hWiW2 .framer-qqfsqj-container { order: 10; } .framer-hWiW2 .framer-11dnl2e { order: 11; padding: 0px 24px 0px 0px; } .framer-hWiW2 .framer-yk63al { gap: 24px; padding: 12px 0px 0px 60px; } .framer-hWiW2 .framer-1w23j3v { padding: 24px; } .framer-hWiW2 .framer-1znszr-container { order: 12; } .framer-hWiW2 .framer-1rx82eo { order: 13; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 13942\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xX3V4Ojb9\":{\"layout\":[\"fixed\",\"auto\"]},\"KyKZShAoi\":{\"layout\":[\"fixed\",\"auto\"]},\"Rg5yzVVxZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"ioC33rFF_\":{\"pattern\":\":ioC33rFF_\",\"name\":\"header\"},\"sfkjZwlPj\":{\"pattern\":\":sfkjZwlPj\",\"name\":\"main\"},\"fOC0w0kqJ\":{\"pattern\":\":fOC0w0kqJ\",\"name\":\"hero-section\"},\"pLjZzNKZj\":{\"pattern\":\":pLjZzNKZj\",\"name\":\"scrim-target\"},\"ajG2pD9k1\":{\"pattern\":\":ajG2pD9k1\",\"name\":\"star-start\"},\"tgoKDNPK7\":{\"pattern\":\":tgoKDNPK7\",\"name\":\"below-fold\"},\"x2aX_K8kr\":{\"pattern\":\":x2aX_K8kr\",\"name\":\"apex-evolution\"},\"MRQkMUeeM\":{\"pattern\":\":MRQkMUeeM\",\"name\":\"below-fold\"},\"MmpucerMV\":{\"pattern\":\":MmpucerMV\",\"name\":\"summary-section\"},\"zXGoVIpwU\":{\"pattern\":\":zXGoVIpwU\",\"name\":\"netplus-material\"},\"j9rCAPHGl\":{\"pattern\":\":j9rCAPHGl\",\"name\":\"how-it-works\"},\"LoowTPowt\":{\"pattern\":\":LoowTPowt\",\"name\":\"4\"},\"bSb9FVUn_\":{\"pattern\":\":bSb9FVUn_\",\"name\":\"1\"},\"eyKIk2Buc\":{\"pattern\":\":eyKIk2Buc\",\"name\":\"5\"},\"y5Z93efKn\":{\"pattern\":\":y5Z93efKn\",\"name\":\"3\"},\"wlduWfBQx\":{\"pattern\":\":wlduWfBQx\",\"name\":\"2\"},\"EBMpSgt4q\":{\"pattern\":\":EBMpSgt4q\",\"name\":\"6\"},\"jEuqpRmeH\":{\"pattern\":\":jEuqpRmeH\",\"name\":\"brand-partners\"},\"YdcRmCO7p\":{\"pattern\":\":YdcRmCO7p\",\"name\":\"impact\"},\"Bv1KjKMS_\":{\"pattern\":\":Bv1KjKMS_\",\"name\":\"next-up\"},\"DwjkrFehU\":{\"pattern\":\":DwjkrFehU\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-hWiW2\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:13942,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"SuisseIntl-Regular-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/qdomSiU6N2Hlj8RUmEbDeMjn7c.woff\"},{family:\"Suisse Intl Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/S3AjtVcnbKWW346fPlozHCGVfo.woff2\"}]},...MediaSurfaceBackgroundFonts,...NavigationGlobalHeaderFonts,...NavigationMenuBarFonts,...NavigationNavMenuFonts,...SpacerBanner2Fonts,...ElementsStarFonts,...HomeTextHeroAnimation2Fonts,...EmbedFonts,...NavigationButtonFonts,...ElementsSectionHeaderFonts,...ElementsDividerFonts,...MediaImageOrVideoFonts,...SubSectionSubSectionFonts,...HowItWorksCardHIWFonts,...BrandPartnersTickerBrandsFonts,...FaqHomeFonts,...NextUpSectionNextUpFonts,...NavigationGlobalFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"13942\",\"framerScrollSections\":\"{\\\"ioC33rFF_\\\":{\\\"pattern\\\":\\\":ioC33rFF_\\\",\\\"name\\\":\\\"header\\\"},\\\"sfkjZwlPj\\\":{\\\"pattern\\\":\\\":sfkjZwlPj\\\",\\\"name\\\":\\\"main\\\"},\\\"fOC0w0kqJ\\\":{\\\"pattern\\\":\\\":fOC0w0kqJ\\\",\\\"name\\\":\\\"hero-section\\\"},\\\"pLjZzNKZj\\\":{\\\"pattern\\\":\\\":pLjZzNKZj\\\",\\\"name\\\":\\\"scrim-target\\\"},\\\"ajG2pD9k1\\\":{\\\"pattern\\\":\\\":ajG2pD9k1\\\",\\\"name\\\":\\\"star-start\\\"},\\\"tgoKDNPK7\\\":{\\\"pattern\\\":\\\":tgoKDNPK7\\\",\\\"name\\\":\\\"below-fold\\\"},\\\"x2aX_K8kr\\\":{\\\"pattern\\\":\\\":x2aX_K8kr\\\",\\\"name\\\":\\\"apex-evolution\\\"},\\\"MRQkMUeeM\\\":{\\\"pattern\\\":\\\":MRQkMUeeM\\\",\\\"name\\\":\\\"below-fold\\\"},\\\"MmpucerMV\\\":{\\\"pattern\\\":\\\":MmpucerMV\\\",\\\"name\\\":\\\"summary-section\\\"},\\\"zXGoVIpwU\\\":{\\\"pattern\\\":\\\":zXGoVIpwU\\\",\\\"name\\\":\\\"netplus-material\\\"},\\\"j9rCAPHGl\\\":{\\\"pattern\\\":\\\":j9rCAPHGl\\\",\\\"name\\\":\\\"how-it-works\\\"},\\\"LoowTPowt\\\":{\\\"pattern\\\":\\\":LoowTPowt\\\",\\\"name\\\":\\\"4\\\"},\\\"bSb9FVUn_\\\":{\\\"pattern\\\":\\\":bSb9FVUn_\\\",\\\"name\\\":\\\"1\\\"},\\\"eyKIk2Buc\\\":{\\\"pattern\\\":\\\":eyKIk2Buc\\\",\\\"name\\\":\\\"5\\\"},\\\"y5Z93efKn\\\":{\\\"pattern\\\":\\\":y5Z93efKn\\\",\\\"name\\\":\\\"3\\\"},\\\"wlduWfBQx\\\":{\\\"pattern\\\":\\\":wlduWfBQx\\\",\\\"name\\\":\\\"2\\\"},\\\"EBMpSgt4q\\\":{\\\"pattern\\\":\\\":EBMpSgt4q\\\",\\\"name\\\":\\\"6\\\"},\\\"jEuqpRmeH\\\":{\\\"pattern\\\":\\\":jEuqpRmeH\\\",\\\"name\\\":\\\"brand-partners\\\"},\\\"YdcRmCO7p\\\":{\\\"pattern\\\":\\\":YdcRmCO7p\\\",\\\"name\\\":\\\"impact\\\"},\\\"Bv1KjKMS_\\\":{\\\"pattern\\\":\\\":Bv1KjKMS_\\\",\\\"name\\\":\\\"next-up\\\"},\\\"DwjkrFehU\\\":{\\\"pattern\\\":\\\":DwjkrFehU\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xX3V4Ojb9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KyKZShAoi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Rg5yzVVxZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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AE,kBAAkB,CAAC,QAAQ,EAAE,EAAE,kBAAkB,CAAC,QAAQ,EAAE,CAAC,EAAE,GAAG3C,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,S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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", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "MotionDivWithFX", "withFX", "motion", "VideoFonts", "getFonts", "Video", "RichTextWithFX", "RichText2", "VideoControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transition3", "transition4", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "toImageSrc", "transformTemplate2", "animation1", "transition5", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "caption", "file", "gap", "height", "id", "image", "number", "scrollSection", "title", "video", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "vYdXm5VMy", "UazOgZka0", "z3yDgCezg", "pQpbijn0v", "bJWjNu8Qt", "VcgeyAA7s", "yEogJwGkQ", "ua8YzA3KS", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap15201g9", "args", "onTaptlcaiw", "onTap10or46e", "onTapwg6hg3", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerAd_5uH6Kz", "withCSS", "Ad_5uH6Kz_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "cursor", "height", "id", "invert", "link", "newTab", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "awHrxY1kW", "DoAgzoqNm", "ZXtiDeupJ", "HRrsMeC2A", "awHrxY1kWyJ5F9iX7E", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "Image2", "getLoadingLazyAtYPosition", "css", "FramerZyMHDP5df", "withCSS", "ZyMHDP5df_default", "addPropertyControls", "ControlType", "addFonts", "BrandPartnersIconBrandsFonts", "getFonts", "ZyMHDP5df_default", "TickerFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "gap", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "lgm1xLz3d", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerJ72jSqUn5", "withCSS", "J72jSqUn5_default", "addPropertyControls", "ControlType", "addFonts", "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", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "css", "FramerFFSG2ggTa", "withCSS", "FFSG2ggTa_default", "addPropertyControls", "ControlType", "addFonts", "ElementsElementsFromTo2Fonts", "getFonts", "FFSG2ggTa_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearxmbvv8", "args", "onAppear1hzwakk", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Framern9FZRhtfl", "withCSS", "n9FZRhtfl_default", "addPropertyControls", "ControlType", "addFonts", "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", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "css", "FramerrFFL0k1B1", "withCSS", "rFFL0k1B1_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "RichTextWithFX", "withFX", "RichText2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "animation2", "animation3", "transition3", "animation4", "transition4", "animation5", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "amount", "description", "description1", "height", "id", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Ke4bDJa4G", "rrENjJm9M", "xEcyIGlnR", "QBkfeo5Wb", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "css", "FramerSB1di5zUx", "withCSS", "SB1di5zUx_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "RichTextWithFX", "withFX", "RichText2", "SubSectionCaptionFootnoteFonts", "getFonts", "SB1di5zUx_default", "SubSectionCaptionFootnoteControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "isSet", "value", "animation", "transition2", "animation1", "transition3", "animation2", "transition4", "animation3", "numberToPixelString", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "amount", "amount2", "amount3", "description1", "description11", "description2", "description21", "description3", "description31", "height", "id", "line1", "line2", "line3", "line4", "padding", "title", "title2", "title3", "variant1", "variant2", "variant3", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableEnumMap_variant2", "_ref5", "_ref6", "_ref7", "_ref8", "_ref9", "_ref10", "_ref11", "_ref12", "_ref13", "_humanReadableVariantMap_props_variant", "_ref14", "_humanReadableEnumMap_variant3", "_ref15", "_ref16", "_humanReadableEnumMap_variant1", "_ref17", "_ref18", "_ref19", "_ref20", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "RRagPKEET", "EpNiHh6Om", "yYrS86NpN", "zxXq7DYUl", "XhYGobiQc", "teApN5e5U", "j1YslqIh4", "uMVQUnGYQ", "a0YzRYPXn", "hj3leLMSl", "CjcKk__vQ", "hDINXkuko", "oTYzEzcM_", "DI4CzhXB0", "VesfLlTqf", "SLuYQ8gPl", "kOwEdPnlb", "zvVseCXzg", "oWj8CuQtE", "pc7sOKalJ", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "visible", "visible1", "isDisplayed", "visible2", "visible3", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FrameryezzG8cuz", "withCSS", "yezzG8cuz_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "MediaSurfaceBackgroundFonts", "getFonts", "w6HRS0AnP_default", "NavigationGlobalHeaderFonts", "EfyxiOJe_default", "NavigationGlobalHeaderWithVariantAppearEffect", "withVariantAppearEffect", "NavigationMenuBarFonts", "NqU40Vrm1_default", "NavigationNavMenuFonts", "XkSrajQxr_default", "SpacerBanner2Fonts", "rFFL0k1B1_default", "SpacerBanner2WithVariantAppearEffect", "MotionDivWithFX", "withFX", "motion", "ElementsStarFonts", "KQWa4JKbz_default", "ElementsStarWithVariantAppearEffect", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "MotionDivWithOptimizedAppearEffect", "HomeTextHeroAnimation2Fonts", "n9FZRhtfl_default", "ImageWithOptimizedAppearEffect", "Image2", "EmbedFonts", "Embed", "NavigationButtonFonts", "RsMsgLwpg_default", "RichTextWithFX", "RichText2", "ElementsSectionHeaderFonts", "K3ugyd0Fj_default", "ElementsDividerFonts", "wSeYMcVDO_default", "ElementsDividerWithVariantAppearEffect", "MediaImageOrVideoFonts", "AnCswsJC9_default", "ContainerWithFX", "SubSectionSubSectionFonts", "yezzG8cuz_default", "HowItWorksCardHIWFonts", "Ad_5uH6Kz_default", "BrandPartnersTickerBrandsFonts", "J72jSqUn5_default", "ImageWithFX", "FaqHomeFonts", "OJPyEcdCN_default", "NextUpSectionNextUpFonts", "VHYpKaidN_default", "NavigationGlobalFooterFonts", "jggfkcpos_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "animation2", "animation3", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition3", "animation4", "animation5", "transition4", "animation6", "transition5", "animation7", "animation8", "animation9", "transition6", "animation10", "transition7", "animation11", "transition8", "animation12", "transition9", "animation13", "transition10", "animation14", "transition11", "animation15", "animation16", "transition12", "animation17", "transition13", "animation18", "transition14", "animation19", "transition15", "animation20", "animation21", "transition16", "animation22", "animation23", "animation24", "transformTemplate1", "_", "t", "addImageAlt", "image", "alt", "transformTemplate2", "animation25", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "kreT7GLLi19rmofx", "Yp6GtyP0H1wnntms", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "ref2", "isDisplayed", "ref3", "elementId1", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "ref6", "elementId5", "ref7", "ref8", "elementId6", "elementId7", "ref9", "elementId8", "ref10", "elementId9", "ref11", "router", "useRouter", "elementId10", "ref12", "elementId11", "ref13", "isDisplayed1", "elementId12", "ref14", "elementId13", "ref15", "elementId14", "ref16", "elementId15", "ref17", "elementId16", "ref18", "isDisplayed2", "elementId17", "ref19", "elementId18", "ref20", "elementId19", "ref21", "elementId20", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "l", "AnimatePresence", "Ga", "x", "getLoadingLazyAtYPosition", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
