{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/8bugfDh77VwQBehdXd6W/xfjxAOaROjdkOExjTEsz/PledgeForm.js", "ssg:https://framerusercontent.com/modules/cCMiwcqJSrV0e9IKMBM3/xiBUwaE7UHpLqnFTDJI3/q6IQT3wCP.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";export default function PledgeForm({backgroundColor}){const[message,setMessage]=useState(\"\");const[count,setCount]=useState(null)// Start with null for initial load\n;// Fetch the current count when the component loads\nuseEffect(()=>{async function fetchCount(){try{const response=await fetch(\"https://tp-form-coding-project.onrender.com/count\");if(!response.ok){throw new Error(`Server error: ${response.statusText}`);}const data=await response.json();setCount(data.count)// Set the count with fetched data\n;}catch(error){console.error(\"Error fetching count:\",error.message||error);setCount(\"Error\")// Display \"Error\" if fetching fails\n;}}fetchCount()// Call function to fetch count on component load\n;},[]);const handleSubmit=async event=>{event.preventDefault();const firstName=event.target[\"first-name\"].value;const lastName=event.target[\"last-name\"].value;const email=event.target[\"email\"].value;try{const response=await fetch(\"https://tp-form-coding-project.onrender.com/submit\",{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify({firstName,lastName,email})});const data=await response.json();if(data.message===\"Your signature has already been added!\"){setMessage(data.message);}else{setMessage(\"Thank you for signing!\");setCount(data.count)// Update count after successful submission\n;}// Clear form inputs after successful submission\nevent.target.reset();}catch(error){console.error(\"Error submitting form:\",error);setMessage(\"An error occurred. Please try again later.\");}};return /*#__PURE__*/_jsxs(\"div\",{style:{backgroundColor,padding:\"20px\",fontFamily:\"Alegreya, serif\",maxWidth:\"1000px\",margin:\"auto\",display:\"flex\",flexDirection:\"column\",gap:\"20px\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"row\",justifyContent:\"space-between\",alignItems:\"center\",gap:\"20px\",flexWrap:\"wrap\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:{flex:\"1 1 45%\",minWidth:\"300px\",display:\"flex\",flexDirection:\"column\",alignItems:\"flex-start\",justifyContent:\"center\",height:\"100%\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"inline-block\",textAlign:\"left\"},children:[/*#__PURE__*/_jsxs(\"h1\",{style:{fontSize:\"80px\",margin:\"0\",display:\"flex\",fontFamily:\"serif\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:\"serif\",fontSize:\"80px\",marginRight:\"10px\"},children:count!==null?count!==\"Error\"?count:\"Error\":/*#__PURE__*/_jsx(\"span\",{className:\"ellipsis\",children:\"...\"})}),\"People\"]}),/*#__PURE__*/_jsx(\"hr\",{style:{margin:\"8px 0\",borderColor:\"#000\",width:\"100%\"}})]}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:\"1.5rem\",margin:\"0\"},children:\"Have agreed to follow our protocols!\"})]}),/*#__PURE__*/_jsxs(\"div\",{style:{flex:\"1 1 45%\",minWidth:\"300px\"},children:[/*#__PURE__*/_jsx(\"div\",{style:{textAlign:\"left\",fontSize:\"2.0rem\",marginBottom:\"20px\",fontWeight:\"bold\"},children:/*#__PURE__*/_jsx(\"p\",{children:\"Take the ?iisaak Pledge. Join the movement by signing your name:\"})}),/*#__PURE__*/_jsxs(\"form\",{id:\"pledgeForm\",onSubmit:handleSubmit,style:{display:\"flex\",flexDirection:\"column\",gap:\"10px\",fontFamily:\"Roboto, sans-serif\"},children:[/*#__PURE__*/_jsx(\"label\",{htmlFor:\"first-name\",style:{fontWeight:\"bold\"},children:\"Enter your first name*\"}),/*#__PURE__*/_jsx(\"input\",{type:\"text\",id:\"first-name\",name:\"first-name\",placeholder:\"Your first name\",required:true,style:{padding:\"10px\",fontSize:\"1rem\",border:\"1px solid #000\",borderRadius:\"5px\",fontFamily:\"Roboto, sans-serif\"}}),/*#__PURE__*/_jsx(\"label\",{htmlFor:\"last-name\",style:{fontWeight:\"bold\"},children:\"Enter your last name\"}),/*#__PURE__*/_jsx(\"input\",{type:\"text\",id:\"last-name\",name:\"last-name\",placeholder:\"Your last name\",style:{padding:\"10px\",fontSize:\"1rem\",border:\"1px solid #000\",borderRadius:\"5px\",fontFamily:\"Roboto, sans-serif\"}}),/*#__PURE__*/_jsx(\"label\",{htmlFor:\"email\",style:{fontWeight:\"bold\"},children:\"Enter your email *\"}),/*#__PURE__*/_jsx(\"input\",{type:\"email\",id:\"email\",name:\"email\",placeholder:\"address@email.com\",required:true,style:{padding:\"10px\",fontSize:\"1rem\",border:\"1px solid #000\",borderRadius:\"5px\",fontFamily:\"Roboto, sans-serif\"}}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:\"0.8rem\",color:\"#666\",marginTop:\"-8px\"},children:\"*Your email will only be used for validation\"}),/*#__PURE__*/_jsx(\"button\",{type:\"submit\",style:{padding:\"10px\",fontSize:\"1rem\",fontWeight:\"bold\",color:\"#fff\",backgroundColor:\"#2E5634\",border:\"none\",borderRadius:\"5px\",cursor:\"pointer\",transition:\"background-color 0.3s ease\"},onMouseOver:e=>{e.target.style.backgroundColor=\"#234626\";},onMouseOut:e=>{e.target.style.backgroundColor=\"#2E5634\";},children:\"Add your signature\"})]}),message&&/*#__PURE__*/_jsx(\"p\",{id:\"thankYouMessage\",style:{marginTop:\"20px\",fontSize:\"1.2rem\"},children:message})]})]}),/*#__PURE__*/_jsx(\"style\",{children:`\n                .ellipsis::after {\n                    content: '...';\n                    animation: ellipsis 1.5s infinite;\n                }\n\n                @keyframes ellipsis {\n                    0% { content: ''; }\n                    33% { content: '.'; }\n                    66% { content: '..'; }\n                    100% { content: '...'; }\n                }\n            `})]});}// Add Property Controls here, at the bottom\naddPropertyControls(PledgeForm,{backgroundColor:{title:\"Background Color\",type:ControlType.Color,defaultValue:\"#f5f5f5\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"PledgeForm\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PledgeForm.map", "// Generated by Framer (4991a04)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import Footer from\"#framer/local/canvasComponent/aWxtscJss/aWxtscJss.js\";import Button2 from\"#framer/local/canvasComponent/KpXAasXfW/KpXAasXfW.js\";import DividerWG from\"#framer/local/canvasComponent/sMbxb5ILR/sMbxb5ILR.js\";import Navigation from\"#framer/local/canvasComponent/uo7t57TkU/uo7t57TkU.js\";import ScrollToTop from\"#framer/local/canvasComponent/YtkFF5FWm/YtkFF5FWm.js\";import PledgeForm from\"#framer/local/codeFile/F7lFRrH/PledgeForm.js\";import*as sharedStyle from\"#framer/local/css/B2XKMTyYN/B2XKMTyYN.js\";import*as sharedStyle4 from\"#framer/local/css/U_dhRWDBG/U_dhRWDBG.js\";import*as sharedStyle2 from\"#framer/local/css/upMpZw76n/upMpZw76n.js\";import*as sharedStyle1 from\"#framer/local/css/WFXwNE556/WFXwNE556.js\";import*as sharedStyle3 from\"#framer/local/css/wRj_BKfsa/wRj_BKfsa.js\";import metadataProvider from\"#framer/local/webPageMetadata/q6IQT3wCP/q6IQT3wCP.js\";const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const PledgeFormFonts=getFonts(PledgeForm);const Button2Fonts=getFonts(Button2);const DividerWGFonts=getFonts(DividerWG);const MaterialFonts=getFonts(Material);const ScrollToTopFonts=getFonts(ScrollToTop);const FooterFonts=getFonts(Footer);const NavigationFonts=getFonts(Navigation);const ContainerWithFX=withFX(Container);const breakpoints={C9i1wgfII:\"(min-width: 810px) and (max-width: 1199px)\",eQG1adglj:\"(min-width: 1200px)\",iTlJZeYGD:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-prLxG\";const variantClassNames={C9i1wgfII:\"framer-v-yjpskd\",eQG1adglj:\"framer-v-1pufc5y\",iTlJZeYGD:\"framer-v-1hd2cw7\"};const transition1={delay:.2,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:25};const transition2={delay:.4,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition3={damping:35,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-100};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"eQG1adglj\",Phone:\"iTlJZeYGD\",Tablet:\"C9i1wgfII\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"eQG1adglj\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-prLxG`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-prLxG`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const elementId=useRouteElementId(\"J9ZXmgIKX\");const ref2=React.useRef(null);const router=useRouter();const elementId1=useRouteElementId(\"Z6lPydw5z\");const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"iTlJZeYGD\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"eQG1adglj\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1pufc5y\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTlJZeYGD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(80),pixelHeight:703,pixelWidth:1250,sizes:\"min(100vw, 1440px)\",src:\"https://framerusercontent.com/images/KD70YpEoXMiL5wEVUOrdumANgQ.png\",srcSet:\"https://framerusercontent.com/images/KD70YpEoXMiL5wEVUOrdumANgQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/KD70YpEoXMiL5wEVUOrdumANgQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KD70YpEoXMiL5wEVUOrdumANgQ.png 1250w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(0),pixelHeight:703,pixelWidth:1250,sizes:\"min(100vw, 1440px)\",src:\"https://framerusercontent.com/images/KD70YpEoXMiL5wEVUOrdumANgQ.png\",srcSet:\"https://framerusercontent.com/images/KD70YpEoXMiL5wEVUOrdumANgQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/KD70YpEoXMiL5wEVUOrdumANgQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KD70YpEoXMiL5wEVUOrdumANgQ.png 1250w\"},className:\"framer-1mthvh5\",\"data-framer-name\":\"header\",id:elementId,name:\"header\",ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l9d9h9\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-15nfa3x\",\"data-styles-preset\":\"B2XKMTyYN\",children:\"\u0294iisaaksinh\u0323i\u0294in | Visit Responsibly\"})}),className:\"framer-sagam7\",\"data-framer-appear-id\":\"sagam7\",\"data-framer-name\":\"Medium length hero headline goes here\",fonts:[\"Inter\"],initial:animation1,name:\"Medium length hero headline goes here\",optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-b64p7q\",\"data-styles-preset\":\"WFXwNE556\",children:\"Let us be respectful of Natural Law. Let us observe, appreciate and act accordingly.\"})}),className:\"framer-huoxsa\",\"data-framer-appear-id\":\"huoxsa\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.\",fonts:[\"Inter\"],initial:animation1,name:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.\",optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1w32wvc\",\"data-framer-name\":\"Vector 10\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:59,intrinsicWidth:1443,name:\"Vector 10\",svg:'<svg width=\"1443\" height=\"59\" viewBox=\"-1 -1 1443 59\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 46.8515V-6.86628e-08C0 -6.86628e-08 110.998 1.83288 181.775 5.57758C268.87 10.1856 315.632 19.4324 403.034 21.5582C506.98 24.0864 567.098 19.2912 671.11 17.8482C722.58 17.1342 746.258 21.0464 797.736 21.5582C881.283 22.3889 931.486 9.05332 1014.75 12.988C1097.76 16.9109 1143.65 20.1404 1226.49 25.0792C1283.37 28.4707 1315.13 29.2034 1372.31 30.1703C1398.82 30.6186 1440.23 30.1703 1440.23 30.1703V55.7756H1372.31C1315.36 55.7756 1283.41 56.7507 1226.49 55.7756C1143.6 54.3557 1097.5 49.8464 1014.75 46.8515C927.437 43.6916 875.136 51.7655 787.647 51.1573C673.667 50.365 613.353 45.6673 499.384 46.8515C405.01 47.8321 351.858 50.4017 257.682 46.8515C185.567 44.1329 145.604 48.221 73.3661 46.8515C44.5198 46.3047 0 46.8515 0 46.8515Z\" fill=\"#FFFBF7\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uc36le\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sic5cu-container\",children:/*#__PURE__*/_jsx(PledgeForm,{backgroundColor:\"var(--token-00332fe1-b269-48a3-8222-c90f9cc71be7, rgb(255, 251, 247))\",height:\"100%\",id:\"bf12eH2bO\",layoutId:\"bf12eH2bO\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6slhx3\",\"data-framer-name\":\"contribute\",name:\"contribute\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-x372ww\",\"data-styles-preset\":\"upMpZw76n\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Ways you can support during your stay\"})}),className:\"framer-gq24ze\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-160v2h6\",\"data-framer-name\":\"contribute\",name:\"contribute\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ibfxn2\",\"data-framer-name\":\"iisaak\",name:\"iisaak\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTlJZeYGD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(737.6),sizes:\"calc(min(100vw, 1440px) - 40px)\",src:\"https://framerusercontent.com/images/0mZAx3RhrmbgeQtBILTHaFbdM6Y.png\",srcSet:\"https://framerusercontent.com/images/0mZAx3RhrmbgeQtBILTHaFbdM6Y.png?scale-down-to=2048 847w,https://framerusercontent.com/images/0mZAx3RhrmbgeQtBILTHaFbdM6Y.png 972w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1017.6),sizes:\"240px\",src:\"https://framerusercontent.com/images/0mZAx3RhrmbgeQtBILTHaFbdM6Y.png\",srcSet:\"https://framerusercontent.com/images/0mZAx3RhrmbgeQtBILTHaFbdM6Y.png?scale-down-to=2048 847w,https://framerusercontent.com/images/0mZAx3RhrmbgeQtBILTHaFbdM6Y.png 972w\"},className:\"framer-t6ap1m\",\"data-framer-name\":\"Rectangle 9\",name:\"Rectangle 9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9i1wgfII:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1097.4396946564887),pixelHeight:954,pixelWidth:942,sizes:\"194px\",src:\"https://framerusercontent.com/images/QyeXVYJ7B4SsZFDbwNjZX9bu6Q.png\",srcSet:\"https://framerusercontent.com/images/QyeXVYJ7B4SsZFDbwNjZX9bu6Q.png 942w\"}},iTlJZeYGD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(758.1),pixelHeight:954,pixelWidth:942,sizes:\"109px\",src:\"https://framerusercontent.com/images/QyeXVYJ7B4SsZFDbwNjZX9bu6Q.png\",srcSet:\"https://framerusercontent.com/images/QyeXVYJ7B4SsZFDbwNjZX9bu6Q.png 942w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1087.793893129771),pixelHeight:954,pixelWidth:942,sizes:\"194px\",src:\"https://framerusercontent.com/images/QyeXVYJ7B4SsZFDbwNjZX9bu6Q.png\",srcSet:\"https://framerusercontent.com/images/QyeXVYJ7B4SsZFDbwNjZX9bu6Q.png 942w\"},className:\"framer-1lvg193\",style:{rotate:7},transformTemplate:transformTemplate1})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-er0e5c\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ysm4b6\",\"data-styles-preset\":\"wRj_BKfsa\",children:\"Practice the Principles of \u0294iisaak\"})}),className:\"framer-1sae4ci\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1rjgg1y\",\"data-styles-preset\":\"U_dhRWDBG\",children:[\"Like any other place, there are important customs to follow when visiting Tla-o-qui-aht Tribal Parks. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Visitors and locals in Tofino are encouraged to take the \u0294iisaak Pledge, which outlines respectful behaviors and practices to follow during their stay.\"]})}),className:\"framer-1ytar78\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Z6lPydw5z\",webPageId:\"q6IQT3wCP\"},implicitPathVariables:undefined},{href:{hash:\":Z6lPydw5z\",webPageId:\"q6IQT3wCP\"},implicitPathVariables:undefined},{href:{hash:\":Z6lPydw5z\",webPageId:\"q6IQT3wCP\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9i1wgfII:{y:1266.6},iTlJZeYGD:{y:1127.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:1257.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1say6pe-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9i1wgfII:{lUgxvcmpa:resolvedLinks[1]},iTlJZeYGD:{lUgxvcmpa:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",id:\"zPkR0wQaY\",layoutId:\"zPkR0wQaY\",lUgxvcmpa:resolvedLinks[0],p7GDEzp7m:\"Take the \u0294iisaak Pledge\",T6iC2M499:false,variant:\"sTuS3P4Yj\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-96e3v1\",\"data-framer-name\":\"ally\",name:\"ally\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9i1wgfII:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1387.6),sizes:\"240px\",src:\"https://framerusercontent.com/images/0mZAx3RhrmbgeQtBILTHaFbdM6Y.png\",srcSet:\"https://framerusercontent.com/images/0mZAx3RhrmbgeQtBILTHaFbdM6Y.png?scale-down-to=2048 847w,https://framerusercontent.com/images/0mZAx3RhrmbgeQtBILTHaFbdM6Y.png 972w\"}},iTlJZeYGD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1239.6),sizes:\"calc(min(100vw, 1440px) - 40px)\",src:\"https://framerusercontent.com/images/0mZAx3RhrmbgeQtBILTHaFbdM6Y.png\",srcSet:\"https://framerusercontent.com/images/0mZAx3RhrmbgeQtBILTHaFbdM6Y.png?scale-down-to=2048 847w,https://framerusercontent.com/images/0mZAx3RhrmbgeQtBILTHaFbdM6Y.png 972w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1017.6),sizes:\"240px\",src:\"https://framerusercontent.com/images/0mZAx3RhrmbgeQtBILTHaFbdM6Y.png\",srcSet:\"https://framerusercontent.com/images/0mZAx3RhrmbgeQtBILTHaFbdM6Y.png?scale-down-to=2048 847w,https://framerusercontent.com/images/0mZAx3RhrmbgeQtBILTHaFbdM6Y.png 972w\"},className:\"framer-1gq03nj\",\"data-framer-name\":\"Rectangle 9\",name:\"Rectangle 9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9i1wgfII:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1423.6),sizes:\"127px\",src:\"https://framerusercontent.com/images/BzS4g8Xi9UFZGjJloHvGdLFRUg.png\",srcSet:\"https://framerusercontent.com/images/BzS4g8Xi9UFZGjJloHvGdLFRUg.png 521w\"}},iTlJZeYGD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1256.6),sizes:\"53px\",src:\"https://framerusercontent.com/images/BzS4g8Xi9UFZGjJloHvGdLFRUg.png\",srcSet:\"https://framerusercontent.com/images/BzS4g8Xi9UFZGjJloHvGdLFRUg.png 521w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(995.8426127527217),sizes:\"162px\",src:\"https://framerusercontent.com/images/BzS4g8Xi9UFZGjJloHvGdLFRUg.png\",srcSet:\"https://framerusercontent.com/images/BzS4g8Xi9UFZGjJloHvGdLFRUg.png 521w\"},className:\"framer-92gq48\",\"data-framer-name\":\"TPA-logo-color.vect. 3\",name:\"TPA-logo-color.vect. 3\",transformTemplate:transformTemplate1})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o3ti1a\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ysm4b6\",\"data-styles-preset\":\"wRj_BKfsa\",children:\"Be a Tribal Park Ally\"})}),className:\"framer-1fhqk4l\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rjgg1y\",\"data-styles-preset\":\"U_dhRWDBG\",children:\"The Tribal Park Allies program brings together local businesses and the Tla-o-qui-aht First Nations to protect and nurture the Tla-o-qui-aht Tribal Parks. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rjgg1y\",\"data-styles-preset\":\"U_dhRWDBG\",children:\"By supporting businesses that are part of this program, visitors contribute directly to land stewardship and the resurgence of Indigenous culture.\"})]}),className:\"framer-b17lso\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"U4HMPjL36\"},implicitPathVariables:undefined},{href:{webPageId:\"U4HMPjL36\"},implicitPathVariables:undefined},{href:{webPageId:\"U4HMPjL36\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9i1wgfII:{y:1767.6},iTlJZeYGD:{y:1769.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:1327.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r2u4hz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9i1wgfII:{lUgxvcmpa:resolvedLinks1[1]},iTlJZeYGD:{lUgxvcmpa:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",id:\"R5yOxF14p\",layoutId:\"R5yOxF14p\",lUgxvcmpa:resolvedLinks1[0],p7GDEzp7m:\"View certified businesses\",T6iC2M499:false,variant:\"sTuS3P4Yj\",width:\"100%\"})})})})})})]})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9i1wgfII:{y:1817.6},iTlJZeYGD:{y:1881.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"1439px\",y:1409.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f76q8p-container\",children:/*#__PURE__*/_jsx(DividerWG,{height:\"100%\",id:\"n_TAx_TIT\",layoutId:\"n_TAx_TIT\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y66lnr\",\"data-framer-name\":\"Timeline / 13 /\",name:\"Timeline / 13 /\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11zz92k\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7k2rel\",\"data-framer-name\":\"Section Title\",name:\"Section Title\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-fuwphf\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-x372ww\",\"data-styles-preset\":\"upMpZw76n\",style:{\"--framer-text-alignment\":\"center\"},children:\"\u0294iisaak Pledge\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"(ii-saak)\"})]}),className:\"framer-rkak5v\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Roboto-regular\"],id:elementId1,name:\"Heading\",ref:ref3,verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e7qzgn\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uytwqe\",\"data-framer-name\":\"Content 1\",name:\"Content 1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mzsj00\",\"data-framer-name\":\"Image container\",name:\"Image container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9i1wgfII:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2321.2),pixelHeight:1672,pixelWidth:1657,positionX:\"58.6%\",positionY:\"48.4%\",sizes:\"max((min(100vw, 1440px) - 60px) * 0.5488 - 64px, 1px)\",src:\"https://framerusercontent.com/images/KyQdHPi6LclnlCuWiOdmKPiyU.png\",srcSet:\"https://framerusercontent.com/images/KyQdHPi6LclnlCuWiOdmKPiyU.png?scale-down-to=1024 1014w,https://framerusercontent.com/images/KyQdHPi6LclnlCuWiOdmKPiyU.png 1657w\"}},iTlJZeYGD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2343.2),pixelHeight:1672,pixelWidth:1657,positionX:\"58.6%\",positionY:\"48.4%\",sizes:\"max(min(100vw, 1440px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/KyQdHPi6LclnlCuWiOdmKPiyU.png\",srcSet:\"https://framerusercontent.com/images/KyQdHPi6LclnlCuWiOdmKPiyU.png?scale-down-to=1024 1014w,https://framerusercontent.com/images/KyQdHPi6LclnlCuWiOdmKPiyU.png 1657w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1953.1999999999998),pixelHeight:1672,pixelWidth:1657,positionX:\"58.6%\",positionY:\"48.4%\",sizes:\"max((min(100vw, 1440px) - 130px) * 0.5488 - 128px, 1px)\",src:\"https://framerusercontent.com/images/KyQdHPi6LclnlCuWiOdmKPiyU.png\",srcSet:\"https://framerusercontent.com/images/KyQdHPi6LclnlCuWiOdmKPiyU.png?scale-down-to=1024 1014w,https://framerusercontent.com/images/KyQdHPi6LclnlCuWiOdmKPiyU.png 1657w\"},className:\"framer-1g5ihbu\",\"data-framer-name\":\"Placeholder Image\",name:\"Placeholder Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-svlds0\",\"data-framer-name\":\"credit\",name:\"credit\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w94iec-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-0245cc87-ba40-487f-baf5-731fa4e2c673, rgb(204, 204, 204))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"PhotoCamera\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"A3dLpm9Z0\",layoutId:\"A3dLpm9Z0\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC1yZWd1bGFy\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(138, 138, 138)\"},children:\"Marnie Recker\"})}),className:\"framer-1n2vfjl\",fonts:[\"GF;Roboto Condensed-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-euz985 hidden-1hd2cw7\",\"data-framer-name\":\"Timeline progress\",name:\"Timeline progress\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14x9m95\",\"data-framer-name\":\"Progress container\",name:\"Progress container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-709gol\",\"data-border\":true,\"data-framer-name\":\"Divider\",name:\"Divider\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10iibub\",\"data-framer-name\":\"Circle\",name:\"Circle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p7o3jo\",\"data-border\":true,\"data-framer-name\":\"Divider\",name:\"Divider\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xnyfgv\",\"data-framer-name\":\"Timeline date\",name:\"Timeline date\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k8ljps\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vh1fsf\",\"data-framer-name\":\"Titles\",name:\"Titles\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z8r8tc\",\"data-framer-name\":\"Frame 173\",name:\"Frame 173\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTlJZeYGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u0294iisaaksinh\u0323i\u0294in \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u0294iisaaksinh\u0323i\u0294in \"})}),className:\"framer-3oqkwo\",\"data-framer-name\":\"Date\",fonts:[\"GF;Roboto-700\"],name:\"Date\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTlJZeYGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"(ii-saak-sin-hi-in) \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"(ii-saak-sin-hi-in) \"})}),className:\"framer-uy1nkf\",\"data-framer-name\":\"Date\",fonts:[\"GF;Roboto-regular\"],name:\"Date\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTlJZeYGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWxlZ3JleWEtcmVndWxhcg==\",\"--framer-font-family\":'\"Alegreya\", \"Alegreya Placeholder\", serif',\"--framer-font-size\":\"21px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Let us be respectful of Natural Law. Let us observe, appreciate and act accordingly.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWxlZ3JleWEtcmVndWxhcg==\",\"--framer-font-family\":'\"Alegreya\", \"Alegreya Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Let us be respectful of Natural Law. Let us observe, appreciate and act accordingly.\"})}),className:\"framer-11qftm3\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Alegreya-regular\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Some How-To\u2019s:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLWl0YWxpYw==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Notice the ways that your presence has an impact on this place, and find ways to make those impacts positive.\"})})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLWl0YWxpYw==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Protect biodiversity by respecting the boundaries and privacy of animals, by keeping a safe distance from them, and by not leaving personal belongings or food unattended.\"})})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLWl0YWxpYw==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Take care of yourselves by staying prepared for diverse conditions and emergencies.\"})})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLWl0YWxpYw==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Respect flora and fauna who share in a right to coexist by helping to advocate for their protection.\"})})})]}),className:\"framer-i4emwq\",\"data-framer-name\":\"Description\",fonts:[\"GF;Roboto-700\",\"GF;Roboto-italic\",\"GF;Roboto-regular\"],name:\"Description\",verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wjfjsq\",\"data-framer-name\":\"Content 2\",name:\"Content 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-e2euvr\",\"data-framer-name\":\"Timeline date\",name:\"Timeline date\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-medx9k\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xjo6iv\",\"data-framer-name\":\"Titles\",name:\"Titles\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12numqx\",\"data-framer-name\":\"Frame 173\",name:\"Frame 173\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTlJZeYGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Taaquuqh\u0323\u0142i\u0294in\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Taaquuqh\u0323\u0142i\u0294in\"})}),className:\"framer-h0rolr\",\"data-framer-name\":\"Date\",fonts:[\"GF;Roboto-700\"],name:\"Date\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTlJZeYGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"(Taa-quuqh-thli-in)\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"(Taa-quuqh-thli-in)\"})}),className:\"framer-ehd37\",\"data-framer-name\":\"Date\",fonts:[\"GF;Roboto-regular\"],name:\"Date\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTlJZeYGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWxlZ3JleWEtcmVndWxhcg==\",\"--framer-font-family\":'\"Alegreya\", \"Alegreya Placeholder\", serif',\"--framer-font-size\":\"21px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Let us speak truthfully and act honorably. Let us learn the history of this place and its People, correcting colonial narratives like the myth that this is a wilderness.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWxlZ3JleWEtcmVndWxhcg==\",\"--framer-font-family\":'\"Alegreya\", \"Alegreya Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Let us speak truthfully and act honorably. Let us learn the history of this place and its People, correcting colonial narratives like the myth that this is a wilderness.\"})}),className:\"framer-1dxkdcg\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Alegreya-regular\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Some How-To\u2019s:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLWl0YWxpYw==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Acknowledge Indigenous rights and title throughout the territory and conduct yourself as a guest.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Take the opportunity to learn the realities of colonization that occurred here and be sensitive to these matters while listening and learning.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Support Indigenous language revitalization efforts. Learn and use Tla-o-qui-aht place names.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Practice communication that helps educate others. Report concerns (such as illegal dumping, fires, harassment or poaching of wildlife) to Tla-o-qui-aht Tribal Parks.\"})})]})]}),className:\"framer-1sdjss8\",\"data-framer-name\":\"Description\",fonts:[\"GF;Roboto-700\",\"GF;Roboto-italic\"],name:\"Description\",verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-19jqwuw hidden-1hd2cw7\",\"data-framer-name\":\"Timeline progress\",name:\"Timeline progress\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ja2gs\",\"data-framer-name\":\"Progress container\",name:\"Progress container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4xy7pk\",\"data-border\":true,\"data-framer-name\":\"Divider\",name:\"Divider\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9a8doy\",\"data-framer-name\":\"Circle\",name:\"Circle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n6x338\",\"data-border\":true,\"data-framer-name\":\"Divider\",name:\"Divider\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b7kq4o\",\"data-framer-name\":\"Image container\",name:\"Image container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9i1wgfII:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2993.2),pixelHeight:1262,pixelWidth:1893,positionX:\"57.7%\",positionY:\"50.2%\",sizes:\"max((min(100vw, 1440px) - 60px) * 0.4512, 1px)\",src:\"https://framerusercontent.com/images/sgsG74UZGSE0bTZmb4NxOT1wI0o.png\",srcSet:\"https://framerusercontent.com/images/sgsG74UZGSE0bTZmb4NxOT1wI0o.png?scale-down-to=512 512w,https://framerusercontent.com/images/sgsG74UZGSE0bTZmb4NxOT1wI0o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sgsG74UZGSE0bTZmb4NxOT1wI0o.png 1893w\"}},iTlJZeYGD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4627.7),pixelHeight:1262,pixelWidth:1893,positionX:\"57.7%\",positionY:\"50.2%\",sizes:\"max(min(100vw, 1440px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/sgsG74UZGSE0bTZmb4NxOT1wI0o.png\",srcSet:\"https://framerusercontent.com/images/sgsG74UZGSE0bTZmb4NxOT1wI0o.png?scale-down-to=512 512w,https://framerusercontent.com/images/sgsG74UZGSE0bTZmb4NxOT1wI0o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sgsG74UZGSE0bTZmb4NxOT1wI0o.png 1893w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2625.2),pixelHeight:1262,pixelWidth:1893,positionX:\"57.7%\",positionY:\"50.2%\",sizes:\"max((min(100vw, 1440px) - 130px) * 0.4512, 1px)\",src:\"https://framerusercontent.com/images/sgsG74UZGSE0bTZmb4NxOT1wI0o.png\",srcSet:\"https://framerusercontent.com/images/sgsG74UZGSE0bTZmb4NxOT1wI0o.png?scale-down-to=512 512w,https://framerusercontent.com/images/sgsG74UZGSE0bTZmb4NxOT1wI0o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sgsG74UZGSE0bTZmb4NxOT1wI0o.png 1893w\"},className:\"framer-1l3k41g\",\"data-framer-name\":\"Placeholder Image\",name:\"Placeholder Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9suyag\",\"data-framer-name\":\"credit\",name:\"credit\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ihpee2-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-0245cc87-ba40-487f-baf5-731fa4e2c673, rgb(204, 204, 204))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"PhotoCamera\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"OSMebIFVx\",layoutId:\"OSMebIFVx\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC1yZWd1bGFy\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(138, 138, 138)\"},children:\"Kyler Vos\"})}),className:\"framer-1885wzw\",fonts:[\"GF;Roboto Condensed-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rgxgnw\",\"data-framer-name\":\"Content 3\",name:\"Content 3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a1gsnj\",\"data-framer-name\":\"Image container\",name:\"Image container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9i1wgfII:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3665.2),pixelHeight:1331,pixelWidth:1997,sizes:\"max((min(100vw, 1440px) - 60px) * 0.5488 - 64px, 1px)\",src:\"https://framerusercontent.com/images/s92DALZLzoNPF0VM1WxgOUuZcro.png\",srcSet:\"https://framerusercontent.com/images/s92DALZLzoNPF0VM1WxgOUuZcro.png?scale-down-to=512 512w,https://framerusercontent.com/images/s92DALZLzoNPF0VM1WxgOUuZcro.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/s92DALZLzoNPF0VM1WxgOUuZcro.png 1997w\"}},iTlJZeYGD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6927.7),pixelHeight:1331,pixelWidth:1997,sizes:\"max(min(100vw, 1440px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/s92DALZLzoNPF0VM1WxgOUuZcro.png\",srcSet:\"https://framerusercontent.com/images/s92DALZLzoNPF0VM1WxgOUuZcro.png?scale-down-to=512 512w,https://framerusercontent.com/images/s92DALZLzoNPF0VM1WxgOUuZcro.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/s92DALZLzoNPF0VM1WxgOUuZcro.png 1997w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3297.2),pixelHeight:1331,pixelWidth:1997,sizes:\"max((min(100vw, 1440px) - 130px) * 0.5488 - 128px, 1px)\",src:\"https://framerusercontent.com/images/s92DALZLzoNPF0VM1WxgOUuZcro.png\",srcSet:\"https://framerusercontent.com/images/s92DALZLzoNPF0VM1WxgOUuZcro.png?scale-down-to=512 512w,https://framerusercontent.com/images/s92DALZLzoNPF0VM1WxgOUuZcro.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/s92DALZLzoNPF0VM1WxgOUuZcro.png 1997w\"},className:\"framer-bcm8wl\",\"data-framer-name\":\"Placeholder Image\",name:\"Placeholder Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yjrkfw\",\"data-framer-name\":\"credit\",name:\"credit\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10599wa-container\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(23, 23, 23)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"PhotoCamera\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"foqhohxZO\",layoutId:\"foqhohxZO\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC1yZWd1bGFy\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"14px\"},children:\"Jeremy Koreski\"})}),className:\"framer-18tmnql\",fonts:[\"GF;Roboto Condensed-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-jnmvsq hidden-1hd2cw7\",\"data-framer-name\":\"Timeline progress\",name:\"Timeline progress\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ny88f5\",\"data-framer-name\":\"Progress container\",name:\"Progress container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kii22g\",\"data-border\":true,\"data-framer-name\":\"Divider\",name:\"Divider\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-boor7i\",\"data-framer-name\":\"Circle\",name:\"Circle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-no116l\",\"data-border\":true,\"data-framer-name\":\"Divider\",name:\"Divider\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4h4x4v\",\"data-framer-name\":\"Timeline date\",name:\"Timeline date\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u44ifw\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rj4i11\",\"data-framer-name\":\"Titles\",name:\"Titles\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5urnhl\",\"data-framer-name\":\"Frame 173\",name:\"Frame 173\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTlJZeYGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u0141aayaksiinh\u0323i\u0294in\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u0141aayaksiinh\u0323i\u0294in\"})}),className:\"framer-wx5k17\",\"data-framer-name\":\"Date\",fonts:[\"GF;Roboto-700\"],name:\"Date\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTlJZeYGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"(Thlaa-yak-siin-hi-in)\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"(Thlaa-yak-siin-hi-in)\"})}),className:\"framer-2z2zsl\",\"data-framer-name\":\"Date\",fonts:[\"GF;Roboto-regular\"],name:\"Date\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTlJZeYGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWxlZ3JleWEtcmVndWxhcg==\",\"--framer-font-family\":'\"Alegreya\", \"Alegreya Placeholder\", serif',\"--framer-font-size\":\"21px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Let us be generous and helpful: There is no end to the work of building community.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWxlZ3JleWEtcmVndWxhcg==\",\"--framer-font-family\":'\"Alegreya\", \"Alegreya Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Let us be generous and helpful: There is no end to the work of building community.\"})}),className:\"framer-1ix6tyg\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Alegreya-regular\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Some How-To\u2019s:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLWl0YWxpYw==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Donate your time and effort by participating in a beach clean or other restoration event.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Help protect these vital habitats by removing invasive species.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Support the Tla-o-qui-aht Tribal Parks Allies program with your purchases.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Contribute to the Tla-o-qui-aht Tribal Parks ecosystem services fee to help support long term protection of this place.\"})})]})]}),className:\"framer-6psohc\",\"data-framer-name\":\"Description\",fonts:[\"GF;Roboto-700\",\"GF;Roboto-italic\"],name:\"Description\",verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ptobds\",\"data-framer-name\":\"Content 4\",name:\"Content 4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jxu3sa\",\"data-framer-name\":\"Timeline date\",name:\"Timeline date\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-my58ib\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n6n5os\",\"data-framer-name\":\"Titles\",name:\"Titles\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14novzb\",\"data-framer-name\":\"Frame 173\",name:\"Frame 173\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTlJZeYGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Q\u02B7aasiinh\u0323apin\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Q\u02B7aasiinh\u0323apin\"})}),className:\"framer-1j856qe\",\"data-framer-name\":\"Date\",fonts:[\"GF;Roboto-700\"],name:\"Date\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTlJZeYGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"(Qwaa-siin-hap-in)\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"(Qwaa-siin-hap-in)\"})}),className:\"framer-1l4eqys\",\"data-framer-name\":\"Date\",fonts:[\"GF;Roboto-regular\"],name:\"Date\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTlJZeYGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWxlZ3JleWEtcmVndWxhcg==\",\"--framer-font-family\":'\"Alegreya\", \"Alegreya Placeholder\", serif',\"--framer-font-size\":\"21px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Let us leave healthy habitats undisturbed, keeping them as they are for future generations of life.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWxlZ3JleWEtcmVndWxhcg==\",\"--framer-font-family\":'\"Alegreya\", \"Alegreya Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Let us leave healthy habitats undisturbed, keeping them as they are for future generations of life.\"})}),className:\"framer-8i1kkm\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Alegreya-regular\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Some How-To\u2019s:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLWl0YWxpYw==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Leave places cleaner than you found them by disposing of garbage and ensuring fires are put out properly.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Refrain from disturbing, destroying or removing Indigenous plants - especially during bird nesting season.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Watch your step and leave small animals, shells, stones, minerals and cultural belongings in place.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Walk, ride, drive, park and camp only where permitted, respecting that not all areas and events are open to visitors.\"})})]})]}),className:\"framer-45y53u\",\"data-framer-name\":\"Description\",fonts:[\"GF;Roboto-700\",\"GF;Roboto-italic\"],name:\"Description\",verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ke495w hidden-1hd2cw7\",\"data-framer-name\":\"Timeline progress\",name:\"Timeline progress\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tgqt7p\",\"data-framer-name\":\"Progress container\",name:\"Progress container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d2qkmt\",\"data-border\":true,\"data-framer-name\":\"Divider\",name:\"Divider\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-136xfsl\",\"data-framer-name\":\"Circle\",name:\"Circle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p4b1ku\",\"data-border\":true,\"data-framer-name\":\"Divider\",name:\"Divider\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f3vdna\",\"data-framer-name\":\"Image container\",name:\"Image container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9i1wgfII:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4337.2),pixelHeight:1271,pixelWidth:1920,sizes:\"max((min(100vw, 1440px) - 60px) * 0.4512, 1px)\",src:\"https://framerusercontent.com/images/V9TgWGlPXJM4GRIWW3y6yujqKE.png\",srcSet:\"https://framerusercontent.com/images/V9TgWGlPXJM4GRIWW3y6yujqKE.png?scale-down-to=512 512w,https://framerusercontent.com/images/V9TgWGlPXJM4GRIWW3y6yujqKE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/V9TgWGlPXJM4GRIWW3y6yujqKE.png 1920w\"}},iTlJZeYGD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(9227.7),pixelHeight:1271,pixelWidth:1920,sizes:\"max(min(100vw, 1440px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/V9TgWGlPXJM4GRIWW3y6yujqKE.png\",srcSet:\"https://framerusercontent.com/images/V9TgWGlPXJM4GRIWW3y6yujqKE.png?scale-down-to=512 512w,https://framerusercontent.com/images/V9TgWGlPXJM4GRIWW3y6yujqKE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/V9TgWGlPXJM4GRIWW3y6yujqKE.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3969.2),pixelHeight:1271,pixelWidth:1920,sizes:\"max((min(100vw, 1440px) - 130px) * 0.4512, 1px)\",src:\"https://framerusercontent.com/images/V9TgWGlPXJM4GRIWW3y6yujqKE.png\",srcSet:\"https://framerusercontent.com/images/V9TgWGlPXJM4GRIWW3y6yujqKE.png?scale-down-to=512 512w,https://framerusercontent.com/images/V9TgWGlPXJM4GRIWW3y6yujqKE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/V9TgWGlPXJM4GRIWW3y6yujqKE.png 1920w\"},className:\"framer-jsnmfj\",\"data-framer-name\":\"Placeholder Image\",name:\"Placeholder Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qkx1ul\",\"data-framer-name\":\"credit\",name:\"credit\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k0carz-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-0245cc87-ba40-487f-baf5-731fa4e2c673, rgb(204, 204, 204))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"PhotoCamera\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"kTvd6vpOI\",layoutId:\"kTvd6vpOI\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC1yZWd1bGFy\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(138, 138, 138)\"},children:\"Jeremy Koreski\"})}),className:\"framer-1feoeag\",fonts:[\"GF;Roboto Condensed-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9i1wgfII:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1602,intrinsicWidth:1496.5,loading:getLoadingLazyAtYPosition(2265.6),pixelHeight:3204,pixelWidth:2993,sizes:\"calc(min(100vw, 1440px) * 1.5417)\",src:\"https://framerusercontent.com/images/YHvweXAlJDLKcGy5hLs6enDhg0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/YHvweXAlJDLKcGy5hLs6enDhg0.png?scale-down-to=1024 956w,https://framerusercontent.com/images/YHvweXAlJDLKcGy5hLs6enDhg0.png?scale-down-to=2048 1913w,https://framerusercontent.com/images/YHvweXAlJDLKcGy5hLs6enDhg0.png 2993w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1602,intrinsicWidth:1496.5,loading:getLoadingLazyAtYPosition(1857.6),pixelHeight:3204,pixelWidth:2993,sizes:\"calc(min(100vw, 1440px) * 1.5417)\",src:\"https://framerusercontent.com/images/YHvweXAlJDLKcGy5hLs6enDhg0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/YHvweXAlJDLKcGy5hLs6enDhg0.png?scale-down-to=1024 956w,https://framerusercontent.com/images/YHvweXAlJDLKcGy5hLs6enDhg0.png?scale-down-to=2048 1913w,https://framerusercontent.com/images/YHvweXAlJDLKcGy5hLs6enDhg0.png 2993w\"},className:\"framer-jwt8uj hidden-1hd2cw7\",\"data-framer-name\":\"Group 16\",name:\"Group 16\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g9uqdo\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-45fh0t-container\",children:/*#__PURE__*/_jsx(PledgeForm,{backgroundColor:\"var(--token-00332fe1-b269-48a3-8222-c90f9cc71be7, rgb(255, 251, 247))\",height:\"100%\",id:\"PqlQEED_k\",layoutId:\"PqlQEED_k\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11h2kp9\",\"data-framer-name\":\"scroll to top\",name:\"scroll to top\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":J9ZXmgIKX\",webPageId:\"q6IQT3wCP\"},implicitPathVariables:undefined},{href:{hash:\":J9ZXmgIKX\",webPageId:\"q6IQT3wCP\"},implicitPathVariables:undefined},{href:{hash:\":J9ZXmgIKX\",webPageId:\"q6IQT3wCP\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9i1wgfII:{y:6499.200000000001},iTlJZeYGD:{y:12101.7}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:5015.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-139zfdn-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9i1wgfII:{HfjoanfVk:resolvedLinks2[1]},iTlJZeYGD:{HfjoanfVk:resolvedLinks2[2],variant:\"Yw5Zo_6xr\"}},children:/*#__PURE__*/_jsx(ScrollToTop,{height:\"100%\",HfjoanfVk:resolvedLinks2[0],id:\"cAAkjFKSV\",layoutId:\"cAAkjFKSV\",owIuTz6Yp:\"var(--token-66251828-2e31-4015-a21a-114b8ab6a8c7, rgb(58, 76, 58))\",style:{height:\"100%\"},variant:\"oYBju0Q6t\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9i1wgfII:{y:6545.200000000001},iTlJZeYGD:{y:12147.7}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:630,width:\"min(100vw, 1440px)\",y:5061.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18fyqny-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9i1wgfII:{variant:\"XHPJcj3z5\"},iTlJZeYGD:{variant:\"oyN1uy42_\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"smcnglaV7\",layoutId:\"smcnglaV7\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"RsrfNHuA1\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"min(100vw, 1440px)\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation3},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rljd1t-container\",layoutScroll:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9i1wgfII:{variant:\"rEdAxxngU\"},iTlJZeYGD:{style:{maxWidth:\"100%\",width:\"100%\"},variant:\"Hxwb3gKaS\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"Rq5lxdOn4\",layoutId:\"Rq5lxdOn4\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"P5yJGfi0_\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-prLxG { background: var(--token-e3b3eb85-15a2-44c5-a525-0bc0e3354c0c, rgb(36, 56, 36)) /* {\"name\":\"Background Green\"} */; }`,\".framer-prLxG.framer-1rqdmyr, .framer-prLxG .framer-1rqdmyr { display: block; }\",\".framer-prLxG.framer-1pufc5y { align-content: center; align-items: center; background-color: var(--token-e3b3eb85-15a2-44c5-a525-0bc0e3354c0c, #243824); 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-prLxG .framer-1mthvh5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 500px; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-prLxG .framer-1l9d9h9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 65px 0px 65px; position: relative; width: 1008px; }\",\".framer-prLxG .framer-sagam7, .framer-prLxG .framer-1sae4ci, .framer-prLxG .framer-1ytar78, .framer-prLxG .framer-1fhqk4l, .framer-prLxG .framer-b17lso, .framer-prLxG .framer-3oqkwo, .framer-prLxG .framer-uy1nkf, .framer-prLxG .framer-11qftm3, .framer-prLxG .framer-i4emwq, .framer-prLxG .framer-h0rolr, .framer-prLxG .framer-ehd37, .framer-prLxG .framer-1dxkdcg, .framer-prLxG .framer-1sdjss8, .framer-prLxG .framer-wx5k17, .framer-prLxG .framer-2z2zsl, .framer-prLxG .framer-1ix6tyg, .framer-prLxG .framer-6psohc, .framer-prLxG .framer-1j856qe, .framer-prLxG .framer-1l4eqys, .framer-prLxG .framer-8i1kkm, .framer-prLxG .framer-45y53u { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-prLxG .framer-huoxsa { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 659px; word-break: break-word; word-wrap: break-word; }\",\".framer-prLxG .framer-1w32wvc { bottom: -17px; flex: none; height: 59px; left: -122px; position: absolute; right: -121px; z-index: 1; }\",\".framer-prLxG .framer-1uc36le, .framer-prLxG .framer-1g9uqdo { align-content: center; align-items: center; background-color: var(--token-00332fe1-b269-48a3-8222-c90f9cc71be7, #fffbf7); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 60px 65px 60px 65px; position: relative; width: 100%; }\",\".framer-prLxG .framer-1sic5cu-container, .framer-prLxG .framer-45fh0t-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-prLxG .framer-6slhx3 { align-content: center; align-items: center; background-color: var(--token-00332fe1-b269-48a3-8222-c90f9cc71be7, #fffbf7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 80px 65px 80px 65px; position: relative; width: 100%; }\",\".framer-prLxG .framer-gq24ze, .framer-prLxG .framer-1n2vfjl, .framer-prLxG .framer-1885wzw, .framer-prLxG .framer-18tmnql, .framer-prLxG .framer-1feoeag { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-prLxG .framer-160v2h6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-prLxG .framer-ibfxn2 { align-content: flex-start; align-items: flex-start; background-color: var(--token-e3b3eb85-15a2-44c5-a525-0bc0e3354c0c, #243824); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-prLxG .framer-t6ap1m { align-self: stretch; flex: none; height: auto; position: relative; width: 240px; }\",\".framer-prLxG .framer-1lvg193 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 194px); left: 50%; overflow: hidden; position: absolute; top: 54%; transform: translate(-50%, -50%); width: 194px; }\",\".framer-prLxG .framer-er0e5c, .framer-prLxG .framer-o3ti1a { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 1px; }\",\".framer-prLxG .framer-1say6pe-container, .framer-prLxG .framer-1r2u4hz-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-prLxG .framer-96e3v1 { align-content: center; align-items: center; align-self: stretch; background-color: var(--token-e3b3eb85-15a2-44c5-a525-0bc0e3354c0c, #243824); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-prLxG .framer-1gq03nj { flex: none; height: 100%; position: relative; width: 240px; }\",\".framer-prLxG .framer-92gq48 { aspect-ratio: 0.4558180510518208 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 355px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 162px; }\",\".framer-prLxG .framer-f76q8p-container { flex: none; height: 64px; position: relative; width: 1439px; }\",\".framer-prLxG .framer-1y66lnr { align-content: center; align-items: center; background-color: var(--token-e3b3eb85-15a2-44c5-a525-0bc0e3354c0c, #243824); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 0px 65px 80px 65px; position: relative; width: 100%; }\",\".framer-prLxG .framer-11zz92k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 70px 0px 0px 0px; position: relative; width: 768px; }\",\".framer-prLxG .framer-7k2rel { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-prLxG .framer-fuwphf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-prLxG .framer-rkak5v { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 768px; word-break: break-word; word-wrap: break-word; }\",\".framer-prLxG .framer-1e7qzgn { 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: 2; }\",\".framer-prLxG .framer-1uytwqe, .framer-prLxG .framer-1wjfjsq, .framer-prLxG .framer-rgxgnw, .framer-prLxG .framer-ptobds { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-prLxG .framer-1mzsj00, .framer-prLxG .framer-1a1gsnj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 32px 0px 48px 0px; position: relative; width: 1px; }\",\".framer-prLxG .framer-1g5ihbu, .framer-prLxG .framer-1l3k41g, .framer-prLxG .framer-bcm8wl, .framer-prLxG .framer-jsnmfj { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: 592px; position: relative; width: 1px; }\",\".framer-prLxG .framer-svlds0 { align-content: center; align-items: center; bottom: 17px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 19px; justify-content: center; left: 345px; overflow: hidden; padding: 0px; position: absolute; width: min-content; }\",\".framer-prLxG .framer-1w94iec-container, .framer-prLxG .framer-ihpee2-container, .framer-prLxG .framer-10599wa-container, .framer-prLxG .framer-1k0carz-container { flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-prLxG .framer-euz985, .framer-prLxG .framer-19jqwuw, .framer-prLxG .framer-jnmvsq { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 32px; }\",\".framer-prLxG .framer-14x9m95 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-prLxG .framer-709gol, .framer-prLxG .framer-4xy7pk, .framer-prLxG .framer-1kii22g, .framer-prLxG .framer-1d2qkmt { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background-color: #ffffff; flex: none; height: 24px; position: relative; width: 3px; }\",\".framer-prLxG .framer-10iibub, .framer-prLxG .framer-9a8doy, .framer-prLxG .framer-boor7i, .framer-prLxG .framer-136xfsl { aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 15px); position: relative; width: 15px; }\",\".framer-prLxG .framer-1p7o3jo, .framer-prLxG .framer-n6x338, .framer-prLxG .framer-no116l, .framer-prLxG .framer-p4b1ku { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background-color: #ffffff; flex: 1 0 0px; height: 1px; position: relative; width: 3px; }\",\".framer-prLxG .framer-xnyfgv, .framer-prLxG .framer-4h4x4v { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: flex-start; overflow: visible; padding: 16px 0px 0px 0px; position: relative; width: 45%; }\",\".framer-prLxG .framer-1k8ljps, .framer-prLxG .framer-medx9k, .framer-prLxG .framer-1u44ifw, .framer-prLxG .framer-my58ib { 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-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-prLxG .framer-1vh1fsf, .framer-prLxG .framer-1xjo6iv, .framer-prLxG .framer-rj4i11, .framer-prLxG .framer-n6n5os { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-prLxG .framer-z8r8tc, .framer-prLxG .framer-12numqx, .framer-prLxG .framer-5urnhl, .framer-prLxG .framer-14novzb { 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%; }\",\".framer-prLxG .framer-e2euvr { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: flex-start; overflow: visible; padding: 16px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-prLxG .framer-1ja2gs, .framer-prLxG .framer-1ny88f5, .framer-prLxG .framer-tgqt7p { 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; }\",\".framer-prLxG .framer-1b7kq4o, .framer-prLxG .framer-f3vdna { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 32px 0px 48px 0px; position: relative; width: 45%; }\",\".framer-prLxG .framer-9suyag { align-content: center; align-items: center; bottom: 17px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 19px; justify-content: center; left: 370px; overflow: hidden; padding: 0px; position: absolute; width: 81px; }\",\".framer-prLxG .framer-yjrkfw { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.4); bottom: 17px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 19px; justify-content: center; left: 346px; overflow: hidden; padding: 0px; position: absolute; width: min-content; }\",\".framer-prLxG .framer-1jxu3sa { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 672px; justify-content: flex-start; overflow: visible; padding: 16px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-prLxG .framer-1ke495w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 672px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 32px; }\",\".framer-prLxG .framer-qkx1ul { align-content: center; align-items: center; bottom: 17px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 19px; justify-content: center; left: 366px; overflow: hidden; padding: 0px; position: absolute; width: min-content; }\",\".framer-prLxG .framer-jwt8uj { flex: none; height: 3130px; left: -329px; overflow: visible; position: absolute; top: 384px; width: 154%; z-index: 1; }\",\".framer-prLxG .framer-11h2kp9 { align-content: center; align-items: center; background-color: var(--token-00332fe1-b269-48a3-8222-c90f9cc71be7, #fffbf7); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 52px; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-prLxG .framer-139zfdn-container { flex: none; height: 40px; position: relative; width: auto; z-index: 1; }\",\".framer-prLxG .framer-18fyqny-container { flex: none; height: auto; max-width: 1440px; position: relative; width: 100%; }\",\".framer-prLxG .framer-1rljd1t-container { flex: none; height: 80px; left: calc(50.00000000000002% - min(1440px, 100%) / 2); max-width: 1440px; position: fixed; top: 0px; width: 100%; z-index: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-prLxG.framer-1pufc5y, .framer-prLxG .framer-1mthvh5, .framer-prLxG .framer-1l9d9h9, .framer-prLxG .framer-1uc36le, .framer-prLxG .framer-6slhx3, .framer-prLxG .framer-160v2h6, .framer-prLxG .framer-ibfxn2, .framer-prLxG .framer-er0e5c, .framer-prLxG .framer-96e3v1, .framer-prLxG .framer-o3ti1a, .framer-prLxG .framer-1y66lnr, .framer-prLxG .framer-11zz92k, .framer-prLxG .framer-7k2rel, .framer-prLxG .framer-fuwphf, .framer-prLxG .framer-1e7qzgn, .framer-prLxG .framer-1uytwqe, .framer-prLxG .framer-1mzsj00, .framer-prLxG .framer-svlds0, .framer-prLxG .framer-euz985, .framer-prLxG .framer-14x9m95, .framer-prLxG .framer-xnyfgv, .framer-prLxG .framer-1k8ljps, .framer-prLxG .framer-1vh1fsf, .framer-prLxG .framer-z8r8tc, .framer-prLxG .framer-1wjfjsq, .framer-prLxG .framer-e2euvr, .framer-prLxG .framer-medx9k, .framer-prLxG .framer-1xjo6iv, .framer-prLxG .framer-12numqx, .framer-prLxG .framer-19jqwuw, .framer-prLxG .framer-1ja2gs, .framer-prLxG .framer-1b7kq4o, .framer-prLxG .framer-9suyag, .framer-prLxG .framer-rgxgnw, .framer-prLxG .framer-1a1gsnj, .framer-prLxG .framer-yjrkfw, .framer-prLxG .framer-jnmvsq, .framer-prLxG .framer-1ny88f5, .framer-prLxG .framer-4h4x4v, .framer-prLxG .framer-1u44ifw, .framer-prLxG .framer-rj4i11, .framer-prLxG .framer-5urnhl, .framer-prLxG .framer-ptobds, .framer-prLxG .framer-1jxu3sa, .framer-prLxG .framer-my58ib, .framer-prLxG .framer-n6n5os, .framer-prLxG .framer-14novzb, .framer-prLxG .framer-1ke495w, .framer-prLxG .framer-tgqt7p, .framer-prLxG .framer-f3vdna, .framer-prLxG .framer-qkx1ul, .framer-prLxG .framer-1g9uqdo, .framer-prLxG .framer-11h2kp9 { gap: 0px; } .framer-prLxG.framer-1pufc5y > *, .framer-prLxG .framer-1e7qzgn > *, .framer-prLxG .framer-z8r8tc > *, .framer-prLxG .framer-12numqx > *, .framer-prLxG .framer-5urnhl > *, .framer-prLxG .framer-14novzb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-prLxG.framer-1pufc5y > :first-child, .framer-prLxG .framer-1mthvh5 > :first-child, .framer-prLxG .framer-1l9d9h9 > :first-child, .framer-prLxG .framer-6slhx3 > :first-child, .framer-prLxG .framer-er0e5c > :first-child, .framer-prLxG .framer-o3ti1a > :first-child, .framer-prLxG .framer-1y66lnr > :first-child, .framer-prLxG .framer-11zz92k > :first-child, .framer-prLxG .framer-7k2rel > :first-child, .framer-prLxG .framer-fuwphf > :first-child, .framer-prLxG .framer-1e7qzgn > :first-child, .framer-prLxG .framer-euz985 > :first-child, .framer-prLxG .framer-14x9m95 > :first-child, .framer-prLxG .framer-xnyfgv > :first-child, .framer-prLxG .framer-1k8ljps > :first-child, .framer-prLxG .framer-1vh1fsf > :first-child, .framer-prLxG .framer-z8r8tc > :first-child, .framer-prLxG .framer-e2euvr > :first-child, .framer-prLxG .framer-medx9k > :first-child, .framer-prLxG .framer-1xjo6iv > :first-child, .framer-prLxG .framer-12numqx > :first-child, .framer-prLxG .framer-19jqwuw > :first-child, .framer-prLxG .framer-1ja2gs > :first-child, .framer-prLxG .framer-jnmvsq > :first-child, .framer-prLxG .framer-1ny88f5 > :first-child, .framer-prLxG .framer-4h4x4v > :first-child, .framer-prLxG .framer-1u44ifw > :first-child, .framer-prLxG .framer-rj4i11 > :first-child, .framer-prLxG .framer-5urnhl > :first-child, .framer-prLxG .framer-1jxu3sa > :first-child, .framer-prLxG .framer-my58ib > :first-child, .framer-prLxG .framer-n6n5os > :first-child, .framer-prLxG .framer-14novzb > :first-child, .framer-prLxG .framer-1ke495w > :first-child, .framer-prLxG .framer-tgqt7p > :first-child { margin-top: 0px; } .framer-prLxG.framer-1pufc5y > :last-child, .framer-prLxG .framer-1mthvh5 > :last-child, .framer-prLxG .framer-1l9d9h9 > :last-child, .framer-prLxG .framer-6slhx3 > :last-child, .framer-prLxG .framer-er0e5c > :last-child, .framer-prLxG .framer-o3ti1a > :last-child, .framer-prLxG .framer-1y66lnr > :last-child, .framer-prLxG .framer-11zz92k > :last-child, .framer-prLxG .framer-7k2rel > :last-child, .framer-prLxG .framer-fuwphf > :last-child, .framer-prLxG .framer-1e7qzgn > :last-child, .framer-prLxG .framer-euz985 > :last-child, .framer-prLxG .framer-14x9m95 > :last-child, .framer-prLxG .framer-xnyfgv > :last-child, .framer-prLxG .framer-1k8ljps > :last-child, .framer-prLxG .framer-1vh1fsf > :last-child, .framer-prLxG .framer-z8r8tc > :last-child, .framer-prLxG .framer-e2euvr > :last-child, .framer-prLxG .framer-medx9k > :last-child, .framer-prLxG .framer-1xjo6iv > :last-child, .framer-prLxG .framer-12numqx > :last-child, .framer-prLxG .framer-19jqwuw > :last-child, .framer-prLxG .framer-1ja2gs > :last-child, .framer-prLxG .framer-jnmvsq > :last-child, .framer-prLxG .framer-1ny88f5 > :last-child, .framer-prLxG .framer-4h4x4v > :last-child, .framer-prLxG .framer-1u44ifw > :last-child, .framer-prLxG .framer-rj4i11 > :last-child, .framer-prLxG .framer-5urnhl > :last-child, .framer-prLxG .framer-1jxu3sa > :last-child, .framer-prLxG .framer-my58ib > :last-child, .framer-prLxG .framer-n6n5os > :last-child, .framer-prLxG .framer-14novzb > :last-child, .framer-prLxG .framer-1ke495w > :last-child, .framer-prLxG .framer-tgqt7p > :last-child { margin-bottom: 0px; } .framer-prLxG .framer-1mthvh5 > *, .framer-prLxG .framer-euz985 > *, .framer-prLxG .framer-19jqwuw > *, .framer-prLxG .framer-jnmvsq > *, .framer-prLxG .framer-1ke495w > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-prLxG .framer-1l9d9h9 > *, .framer-prLxG .framer-er0e5c > *, .framer-prLxG .framer-o3ti1a > *, .framer-prLxG .framer-fuwphf > *, .framer-prLxG .framer-1vh1fsf > *, .framer-prLxG .framer-1xjo6iv > *, .framer-prLxG .framer-rj4i11 > *, .framer-prLxG .framer-n6n5os > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-prLxG .framer-1uc36le > *, .framer-prLxG .framer-1mzsj00 > *, .framer-prLxG .framer-1b7kq4o > *, .framer-prLxG .framer-1a1gsnj > *, .framer-prLxG .framer-f3vdna > *, .framer-prLxG .framer-1g9uqdo > *, .framer-prLxG .framer-11h2kp9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-prLxG .framer-1uc36le > :first-child, .framer-prLxG .framer-160v2h6 > :first-child, .framer-prLxG .framer-ibfxn2 > :first-child, .framer-prLxG .framer-96e3v1 > :first-child, .framer-prLxG .framer-1uytwqe > :first-child, .framer-prLxG .framer-1mzsj00 > :first-child, .framer-prLxG .framer-svlds0 > :first-child, .framer-prLxG .framer-1wjfjsq > :first-child, .framer-prLxG .framer-1b7kq4o > :first-child, .framer-prLxG .framer-9suyag > :first-child, .framer-prLxG .framer-rgxgnw > :first-child, .framer-prLxG .framer-1a1gsnj > :first-child, .framer-prLxG .framer-yjrkfw > :first-child, .framer-prLxG .framer-ptobds > :first-child, .framer-prLxG .framer-f3vdna > :first-child, .framer-prLxG .framer-qkx1ul > :first-child, .framer-prLxG .framer-1g9uqdo > :first-child, .framer-prLxG .framer-11h2kp9 > :first-child { margin-left: 0px; } .framer-prLxG .framer-1uc36le > :last-child, .framer-prLxG .framer-160v2h6 > :last-child, .framer-prLxG .framer-ibfxn2 > :last-child, .framer-prLxG .framer-96e3v1 > :last-child, .framer-prLxG .framer-1uytwqe > :last-child, .framer-prLxG .framer-1mzsj00 > :last-child, .framer-prLxG .framer-svlds0 > :last-child, .framer-prLxG .framer-1wjfjsq > :last-child, .framer-prLxG .framer-1b7kq4o > :last-child, .framer-prLxG .framer-9suyag > :last-child, .framer-prLxG .framer-rgxgnw > :last-child, .framer-prLxG .framer-1a1gsnj > :last-child, .framer-prLxG .framer-yjrkfw > :last-child, .framer-prLxG .framer-ptobds > :last-child, .framer-prLxG .framer-f3vdna > :last-child, .framer-prLxG .framer-qkx1ul > :last-child, .framer-prLxG .framer-1g9uqdo > :last-child, .framer-prLxG .framer-11h2kp9 > :last-child { margin-right: 0px; } .framer-prLxG .framer-6slhx3 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-prLxG .framer-160v2h6 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-prLxG .framer-ibfxn2 > *, .framer-prLxG .framer-96e3v1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-prLxG .framer-1y66lnr > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-prLxG .framer-11zz92k > *, .framer-prLxG .framer-7k2rel > *, .framer-prLxG .framer-xnyfgv > *, .framer-prLxG .framer-1k8ljps > *, .framer-prLxG .framer-e2euvr > *, .framer-prLxG .framer-medx9k > *, .framer-prLxG .framer-4h4x4v > *, .framer-prLxG .framer-1u44ifw > *, .framer-prLxG .framer-1jxu3sa > *, .framer-prLxG .framer-my58ib > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-prLxG .framer-1uytwqe > *, .framer-prLxG .framer-1wjfjsq > *, .framer-prLxG .framer-rgxgnw > *, .framer-prLxG .framer-ptobds > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-prLxG .framer-svlds0 > *, .framer-prLxG .framer-9suyag > *, .framer-prLxG .framer-yjrkfw > *, .framer-prLxG .framer-qkx1ul > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-prLxG .framer-14x9m95 > *, .framer-prLxG .framer-1ja2gs > *, .framer-prLxG .framer-1ny88f5 > *, .framer-prLxG .framer-tgqt7p > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-prLxG { background: var(--token-e3b3eb85-15a2-44c5-a525-0bc0e3354c0c, rgb(36, 56, 36)) /* {\"name\":\"Background Green\"} */; } .framer-prLxG.framer-1pufc5y { width: 810px; } .framer-prLxG .framer-1l9d9h9 { padding: 0px 30px 0px 30px; } .framer-prLxG .framer-1uc36le, .framer-prLxG .framer-1g9uqdo { padding: 60px 30px 60px 30px; } .framer-prLxG .framer-6slhx3 { padding: 80px 30px 80px 30px; } .framer-prLxG .framer-160v2h6 { flex-direction: column; } .framer-prLxG .framer-ibfxn2 { flex: none; height: 330px; width: 100%; } .framer-prLxG .framer-t6ap1m { align-self: unset; height: 100%; } .framer-prLxG .framer-er0e5c { height: 100%; justify-content: center; } .framer-prLxG .framer-96e3v1 { align-self: unset; flex: none; height: 350px; width: 100%; } .framer-prLxG .framer-92gq48 { height: var(--framer-aspect-ratio-supported, 279px); top: 50%; width: 127px; } .framer-prLxG .framer-o3ti1a { height: 100%; } .framer-prLxG .framer-1y66lnr { gap: 40px; padding: 0px 30px 80px 30px; } .framer-prLxG .framer-1uytwqe, .framer-prLxG .framer-1wjfjsq, .framer-prLxG .framer-rgxgnw, .framer-prLxG .framer-ptobds { gap: 16px; } .framer-prLxG .framer-svlds0, .framer-prLxG .framer-9suyag, .framer-prLxG .framer-yjrkfw, .framer-prLxG .framer-qkx1ul { bottom: 7px; left: 270px; } .framer-prLxG .framer-1jxu3sa { height: min-content; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-prLxG .framer-160v2h6, .framer-prLxG .framer-1y66lnr, .framer-prLxG .framer-1uytwqe, .framer-prLxG .framer-1wjfjsq, .framer-prLxG .framer-rgxgnw, .framer-prLxG .framer-ptobds { gap: 0px; } .framer-prLxG .framer-160v2h6 > *, .framer-prLxG .framer-1y66lnr > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-prLxG .framer-160v2h6 > :first-child, .framer-prLxG .framer-1y66lnr > :first-child { margin-top: 0px; } .framer-prLxG .framer-160v2h6 > :last-child, .framer-prLxG .framer-1y66lnr > :last-child { margin-bottom: 0px; } .framer-prLxG .framer-1uytwqe > *, .framer-prLxG .framer-1wjfjsq > *, .framer-prLxG .framer-rgxgnw > *, .framer-prLxG .framer-ptobds > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-prLxG .framer-1uytwqe > :first-child, .framer-prLxG .framer-1wjfjsq > :first-child, .framer-prLxG .framer-rgxgnw > :first-child, .framer-prLxG .framer-ptobds > :first-child { margin-left: 0px; } .framer-prLxG .framer-1uytwqe > :last-child, .framer-prLxG .framer-1wjfjsq > :last-child, .framer-prLxG .framer-rgxgnw > :last-child, .framer-prLxG .framer-ptobds > :last-child { margin-right: 0px; } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-prLxG { background: var(--token-e3b3eb85-15a2-44c5-a525-0bc0e3354c0c, rgb(36, 56, 36)) /* {\"name\":\"Background Green\"} */; } .framer-prLxG.framer-1pufc5y { width: 390px; } .framer-prLxG .framer-1mthvh5 { order: 1; } .framer-prLxG .framer-1l9d9h9 { gap: 20px; padding: 0px 20px 0px 20px; width: 100%; } .framer-prLxG .framer-huoxsa { width: 100%; } .framer-prLxG .framer-1uc36le { order: 5; padding: 30px 20px 30px 20px; } .framer-prLxG .framer-6slhx3 { order: 2; padding: 40px 20px 40px 20px; } .framer-prLxG .framer-gq24ze { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-prLxG .framer-160v2h6 { flex-direction: column; } .framer-prLxG .framer-ibfxn2 { flex: none; flex-direction: column; width: 100%; } .framer-prLxG .framer-t6ap1m { align-self: unset; height: 150px; width: 100%; } .framer-prLxG .framer-1lvg193 { height: var(--framer-aspect-ratio-supported, 109px); top: 50%; width: 109px; } .framer-prLxG .framer-er0e5c, .framer-prLxG .framer-o3ti1a { flex: none; width: 100%; } .framer-prLxG .framer-96e3v1 { align-self: unset; flex: none; flex-direction: column; height: min-content; width: 100%; } .framer-prLxG .framer-1gq03nj { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 150px; justify-content: center; padding: 0px; width: 100%; } .framer-prLxG .framer-92gq48 { height: var(--framer-aspect-ratio-supported, 117px); left: unset; order: 0; position: relative; top: unset; transform: unset; width: 53px; } .framer-prLxG .framer-f76q8p-container { order: 3; } .framer-prLxG .framer-1y66lnr { gap: 40px; order: 4; padding: 0px 20px 80px 20px; } .framer-prLxG .framer-11zz92k { padding: 60px 0px 0px 0px; width: 100%; } .framer-prLxG .framer-1uytwqe, .framer-prLxG .framer-1wjfjsq, .framer-prLxG .framer-rgxgnw, .framer-prLxG .framer-ptobds { flex-direction: column; gap: 16px; } .framer-prLxG .framer-1mzsj00 { flex: none; padding: 0px; width: 100%; } .framer-prLxG .framer-svlds0, .framer-prLxG .framer-9suyag, .framer-prLxG .framer-yjrkfw, .framer-prLxG .framer-qkx1ul { bottom: 12px; left: unset; right: -1px; } .framer-prLxG .framer-xnyfgv, .framer-prLxG .framer-4h4x4v { align-self: unset; height: min-content; width: 100%; } .framer-prLxG .framer-e2euvr { align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-prLxG .framer-1b7kq4o, .framer-prLxG .framer-f3vdna { order: 0; padding: 32px 0px 0px 0px; width: 100%; } .framer-prLxG .framer-1a1gsnj { flex: none; padding: 32px 0px 0px 0px; width: 100%; } .framer-prLxG .framer-1jxu3sa { flex: none; height: min-content; order: 1; width: 100%; } .framer-prLxG .framer-1g9uqdo { order: 6; padding: 30px 20px 30px 20px; } .framer-prLxG .framer-11h2kp9 { order: 7; } .framer-prLxG .framer-18fyqny-container { order: 8; } .framer-prLxG .framer-1rljd1t-container { height: auto; left: unset; order: 0; position: sticky; will-change: transform; z-index: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-prLxG .framer-1l9d9h9, .framer-prLxG .framer-160v2h6, .framer-prLxG .framer-ibfxn2, .framer-prLxG .framer-96e3v1, .framer-prLxG .framer-1gq03nj, .framer-prLxG .framer-1y66lnr, .framer-prLxG .framer-1uytwqe, .framer-prLxG .framer-1wjfjsq, .framer-prLxG .framer-rgxgnw, .framer-prLxG .framer-ptobds { gap: 0px; } .framer-prLxG .framer-1l9d9h9 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-prLxG .framer-1l9d9h9 > :first-child, .framer-prLxG .framer-160v2h6 > :first-child, .framer-prLxG .framer-ibfxn2 > :first-child, .framer-prLxG .framer-96e3v1 > :first-child, .framer-prLxG .framer-1y66lnr > :first-child, .framer-prLxG .framer-1uytwqe > :first-child, .framer-prLxG .framer-1wjfjsq > :first-child, .framer-prLxG .framer-rgxgnw > :first-child, .framer-prLxG .framer-ptobds > :first-child { margin-top: 0px; } .framer-prLxG .framer-1l9d9h9 > :last-child, .framer-prLxG .framer-160v2h6 > :last-child, .framer-prLxG .framer-ibfxn2 > :last-child, .framer-prLxG .framer-96e3v1 > :last-child, .framer-prLxG .framer-1y66lnr > :last-child, .framer-prLxG .framer-1uytwqe > :last-child, .framer-prLxG .framer-1wjfjsq > :last-child, .framer-prLxG .framer-rgxgnw > :last-child, .framer-prLxG .framer-ptobds > :last-child { margin-bottom: 0px; } .framer-prLxG .framer-160v2h6 > *, .framer-prLxG .framer-1y66lnr > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-prLxG .framer-ibfxn2 > *, .framer-prLxG .framer-96e3v1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-prLxG .framer-1gq03nj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-prLxG .framer-1gq03nj > :first-child { margin-left: 0px; } .framer-prLxG .framer-1gq03nj > :last-child { margin-right: 0px; } .framer-prLxG .framer-1uytwqe > *, .framer-prLxG .framer-1wjfjsq > *, .framer-prLxG .framer-rgxgnw > *, .framer-prLxG .framer-ptobds > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-prLxG[data-border=\"true\"]::after, .framer-prLxG [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6308\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"C9i1wgfII\":{\"layout\":[\"fixed\",\"auto\"]},\"iTlJZeYGD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const Framerq6IQT3wCP=withCSS(Component,css,\"framer-prLxG\");export default Framerq6IQT3wCP;Framerq6IQT3wCP.displayName=\"Page\";Framerq6IQT3wCP.defaultProps={height:6308,width:1200};addFonts(Framerq6IQT3wCP,[{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:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v32/KFOmCnqEu92Fr1Me4GZLCzYlKw.woff2\",weight:\"400\"},{family:\"Roboto Condensed\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyovBM731BKMSK.woff2\",weight:\"400\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v32/KFOlCnqEu92Fr1MmWUlvBh05IsDqlA.woff2\",weight:\"700\"},{family:\"Alegreya\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/alegreya/v36/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNG9hUI-aCisSGVrw.woff2\",weight:\"400\"},{family:\"Roboto\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/roboto/v32/KFOkCnqEu92Fr1Mu52xKKTM1K9nz.woff2\",weight:\"400\"}]},...PledgeFormFonts,...Button2Fonts,...DividerWGFonts,...MaterialFonts,...ScrollToTopFonts,...FooterFonts,...NavigationFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerq6IQT3wCP\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"6308\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C9i1wgfII\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iTlJZeYGD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PledgeForm", "backgroundColor", "message", "setMessage", "ye", "count", "setCount", "ue", "fetchCount", "response", "data", "error", "u", "p", "event", "firstName", "lastName", "email", "e", "addPropertyControls", "ControlType", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "PledgeFormFonts", "getFonts", "PledgeForm", "Button2Fonts", "KpXAasXfW_default", "DividerWGFonts", "sMbxb5ILR_default", "MaterialFonts", "Icon", "ScrollToTopFonts", "YtkFF5FWm_default", "FooterFonts", "aWxtscJss_default", "NavigationFonts", "uo7t57TkU_default", "ContainerWithFX", "withFX", "Container", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transformTemplate1", "_", "t", "transition3", "animation3", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "router", "useRouter", "elementId1", "ref3", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "x", "SVG", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "css", "Framerq6IQT3wCP", "withCSS", "q6IQT3wCP_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
