{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/jfK7C7JmdHGaVBsvt1V7/G0lF2a2mezep3QZSQZwm/DotLottie.js", "ssg:https://framerusercontent.com/modules/q7XG5Nlbf8c9FgrtJ9e5/ottsAqOJad8FVuVEHnI8/eKbEoLGIM.js", "ssg:https://framerusercontent.com/modules/wTJdET57AuXa6azwLUXU/YBzouwu3YyOY2964XvaH/c9G9WR3sY.js", "ssg:https://framerusercontent.com/modules/vfuITo163C06S8chIjne/9KxIJIAEsc05jexjTRjO/sZzlLjINJ.js", "ssg:https://framerusercontent.com/modules/z5OnjRqo2kQeJG0FS9wx/pc0aTX1iK8O0fs9nM1B5/t766HsZPK.js", "ssg:https://framerusercontent.com/modules/MSHYZZRhUWq8vKLyd9ty/vvsqSiHttwEiSWYlc5p1/c9G9WR3sY.js", "ssg:https://framerusercontent.com/modules/MSHYZZRhUWq8vKLyd9ty/vvsqSiHttwEiSWYlc5p1/c9G9WR3sY-0.js", "ssg:https://framerusercontent.com/modules/x9rNYXy9H9SdlgjQLo4m/ZxDQlpwAM3YMsv7cYEZd/sHgGk4tVe.js", "ssg:https://framerusercontent.com/modules/57FhkldN9P7x88MqAEaR/MaCiz8nzfVQ2yBstuToQ/LocaleSelector.js", "ssg:https://framerusercontent.com/modules/cuKUFdzXlhvw8OVOBeAc/VOfaY9LHiTLKveiePI7P/border.js", "ssg:https://framerusercontent.com/modules/9muYaW1MvHoRQJ0P7dkP/V2GVvLqiMxXRSxszkCSa/focus.js", "ssg:https://framerusercontent.com/modules/YfmtnpWjJrP37sQ18QUZ/9Y2P24U2SBIbf2fPVsOX/hover.js", "ssg:https://framerusercontent.com/modules/wjZLfSMaP1TvJDu5PCwr/6SPClu354QJPCp6Xj5C0/padding.js", "ssg:https://framerusercontent.com/modules/N6MwtHbWoiZJNn1xpqxu/58OHv7BfCzgeBhiv1TYu/radius.js", "ssg:https://framerusercontent.com/modules/lL4LYjzLFCJpX97IpkgO/XWPse2EduCFwxQkoZScl/E7jYo9Lya.js", "ssg:https://framerusercontent.com/modules/65WbMb05rVsD237vPxUX/CzOJGPaKbg2bor1BEA0r/MJ2kLlsLQ.js", "ssg:https://framerusercontent.com/modules/VPyxbiwo89woBZOYl0E9/2nKAG9H2HhalHLawxyjD/UQNlvfeto.js", "ssg:https://framerusercontent.com/modules/qOrZcSSkwS3LYO0ftlda/8Wt1jn7RtR5X8eO8agvy/STYvFPvWw.js", "ssg:https://framerusercontent.com/modules/qOrZcSSkwS3LYO0ftlda/8Wt1jn7RtR5X8eO8agvy/STYvFPvWw-0.js", "ssg:https://framerusercontent.com/modules/7RTmsbT7e81OxtzNucHe/VrzolcIbVhFGbkIDC6u1/o3MzmYbzR.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useRef,useState}from\"react\";const placeholderUrl=\"https://lottie.host/d826e0a7-b7e8-4072-8afe-c943ed2dd2ca/DpX3m5yT5Z.lottie\";/**\n * DOT LOTTIE\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export default function DotLottie(props){return /*#__PURE__*/ _jsx(OptimizationFriendly,{loading:/*#__PURE__*/ _jsx(\"div\",{}),loaded:/*#__PURE__*/ _jsx(LottiePlayer,{...props})});};function LottiePlayer(props){/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const lottieInstanceRef=useRef(null);const shouldPlay=isCanvas||props.hover===true||props.autoplay===false?null:true;/* File or URL */ let src;switch(props.srcType){case\"url\":src=props.srcUrl;break;case\"file\":src=props.srcFile;break;default:src=placeholderUrl;break;}/* Progress */ const[isReady,setIsReady]=useState(false);/* For canvas states */ useEffect(()=>{if(!lottieInstanceRef.current)return;lottieInstanceRef.current.addEventListener(\"ready\",()=>setIsReady(true));},[]);useEffect(()=>{if(!lottieInstanceRef.current)return;lottieInstanceRef.current.seek(`${props.progress}%`);},[isReady,props.progress]);const lastVariant=useRef();/* For component variant support */ useEffect(()=>{if(isCanvas)return;if(lastVariant.current!==props.autoplay){if(!lottieInstanceRef.current)return;if(props.autoplay===true){lottieInstanceRef.current.play();}if(props.autoplay===false){lottieInstanceRef.current.pause();}}lastVariant.current=props.autoplay;},[props.autoplay]);return(// @ts-ignore\n/*#__PURE__*/ _jsx(\"dotlottie-player\",{src:src,ref:lottieInstanceRef,autoplay:shouldPlay,loop:props.loop?true:null,hover:props.hover?true:null,controls:props.controls?true:null,background:props.background?props.background:null,speed:props.speed,direction:props.direction,style:{...props.style,width:\"100%\",height:\"100%\"}},src));}DotLottie.defaultProps={srcUrl:placeholderUrl,autoplay:true,background:\"#05F\",controls:false,direction:1,hover:false,loop:true,speed:1};DotLottie.displayName=\"Dot Lottie\";addPropertyControls(DotLottie,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"url\",\"file\"],optionTitles:[\"URL\",\"File\"]},srcUrl:{type:ControlType.String,title:\"Link\",placeholder:\"../example.lottie\",hidden:props=>props.srcType===\"file\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"lottie\",\"json\"],hidden:props=>props.srcType===\"url\"},autoplay:{type:ControlType.Boolean,title:\"Autoplay\",defaultValue:true},background:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"#05F\"},controls:{type:ControlType.Boolean,title:\"Controls\"},direction:{type:ControlType.Enum,title:\"Direction\",defaultValue:\"1\",displaySegmentedControl:true,segmentedControlDirection:\"horizontal\",options:[\"1\",\"-1\"],optionTitles:[\"Normal\",\"Reverse\"]},hover:{type:ControlType.Boolean,title:\"Hover Play\"},loop:{type:ControlType.Boolean,title:\"Loop\"},speed:{type:ControlType.Number,title:\"Speed\",defaultValue:1,min:1,max:10,unit:\"x\",step:.5,displayStepper:true},progress:{type:ControlType.Number,title:\"Progress\",defaultValue:0,min:0,max:100,step:1,description:\"This component is made for Lottie files. [Learn more here](https://dotlottie.io/).\"}});/* For SSG */ function OptimizationFriendly({loading,loaded}){const[isLoading,setLoading]=React.useState(true);// We can't load web-components in ssg on the server,\n// so we defer rendering until we hit the client.\nReact.useEffect(()=>{import(\"https://unpkg.com/@dotlottie/player-component@1.3.2/dist/dotlottie-player.js\").then(()=>{setLoading(false);});},[]);return isLoading?loading:loaded;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"DotLottie\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DotLottie.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Source Sans 3-600\",\"GF;Source Sans 3-900\",\"GF;Source Sans 3-900italic\",\"GF;Source Sans 3-600italic\"]);export const fonts=[{family:\"Source Sans 3\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxm7FEI_io6npfB.woff2\",weight:\"600\"},{family:\"Source Sans 3\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KwR7FEI_io6npfB.woff2\",weight:\"900\"},{family:\"Source Sans 3\",style:\"italic\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqBBJ9CsYm4fB3Ts.woff2\",weight:\"900\"},{family:\"Source Sans 3\",style:\"italic\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqGdJ9CsYm4fB3Ts.woff2\",weight:\"600\"}];export const css=['.framer-0EfFq .framer-styles-preset-1cogha5:not(.rich-text-wrapper), .framer-0EfFq .framer-styles-preset-1cogha5.rich-text-wrapper p { --framer-font-family: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-family-bold: \"Source Sans 3\", sans-serif; --framer-font-family-bold-italic: \"Source Sans 3\", sans-serif; --framer-font-family-italic: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, #01061d); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-0EfFq\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ca9141d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import DotLottie from\"https://framerusercontent.com/modules/jfK7C7JmdHGaVBsvt1V7/G0lF2a2mezep3QZSQZwm/DotLottie.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/vfuITo163C06S8chIjne/9KxIJIAEsc05jexjTRjO/sZzlLjINJ.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/z5OnjRqo2kQeJG0FS9wx/pc0aTX1iK8O0fs9nM1B5/t766HsZPK.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/MSHYZZRhUWq8vKLyd9ty/vvsqSiHttwEiSWYlc5p1/c9G9WR3sY.js\";const DotLottieFonts=getFonts(DotLottie);const enabledGestures={aguIpHkWM:{hover:true},CSYkHvgLn:{hover:true},d1Cd5Tn31:{hover:true},etRgSaaGp:{hover:true},g0sMdg0c1:{hover:true},grquzfsXY:{hover:true},GWNlVEoTo:{hover:true},OMKDu3PkU:{hover:true},XkaU2VSzf:{hover:true},xWYC05CGU:{hover:true},YsRM13mDN:{hover:true},zKDh830E4:{hover:true}};const cycleOrder=[\"YsRM13mDN\",\"XkaU2VSzf\",\"GWNlVEoTo\",\"CSYkHvgLn\",\"grquzfsXY\",\"d1Cd5Tn31\",\"zKDh830E4\",\"etRgSaaGp\",\"xWYC05CGU\",\"aguIpHkWM\",\"g0sMdg0c1\",\"OMKDu3PkU\"];const serializationHash=\"framer-7UHCB\";const variantClassNames={aguIpHkWM:\"framer-v-1c9mm41\",CSYkHvgLn:\"framer-v-1b1v4ry\",d1Cd5Tn31:\"framer-v-1kzbxhr\",etRgSaaGp:\"framer-v-1mwm63e\",g0sMdg0c1:\"framer-v-1ejhje7\",grquzfsXY:\"framer-v-vjcak7\",GWNlVEoTo:\"framer-v-pi8000\",OMKDu3PkU:\"framer-v-1pmw84j\",XkaU2VSzf:\"framer-v-qyjmed\",xWYC05CGU:\"framer-v-520rop\",YsRM13mDN:\"framer-v-1stb0t\",zKDh830E4:\"framer-v-gds0ph\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Become a member 2\":\"g0sMdg0c1\",\"Become a member\":\"aguIpHkWM\",\"For educators 2\":\"xWYC05CGU\",\"For educators\":\"etRgSaaGp\",\"For Individuals\":\"d1Cd5Tn31\",\"Get Involved\":\"GWNlVEoTo\",\"Individuals 2\":\"zKDh830E4\",About:\"YsRM13mDN\",Contact:\"grquzfsXY\",Events:\"XkaU2VSzf\",Partners:\"CSYkHvgLn\",Ressources:\"OMKDu3PkU\"};const getProps=({height,hover,id,tap,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,mf745BWdZ:hover!==null&&hover!==void 0?hover:props.mf745BWdZ,Mpnv9PFtp:(_ref=text!==null&&text!==void 0?text:props.Mpnv9PFtp)!==null&&_ref!==void 0?_ref:\"For individuals\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"YsRM13mDN\",xu7f4sHQH:tap!==null&&tap!==void 0?tap:props.xu7f4sHQH};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,xu7f4sHQH,mf745BWdZ,Mpnv9PFtp,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YsRM13mDN\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1ena3w=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(xu7f4sHQH){const res=await xu7f4sHQH(...args);if(res===false)return false;}});const onMouseEnteredwnny=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(mf745BWdZ){const res=await mf745BWdZ(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16,_getLocalizedValue17,_getLocalizedValue18,_getLocalizedValue19,_getLocalizedValue20,_getLocalizedValue21,_getLocalizedValue22,_getLocalizedValue23;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QZR20IMHz\"},nodeId:\"YsRM13mDN\",...addPropertyOverrides({aguIpHkWM:{href:{hash:\":LCtFewNoO\",webPageId:\"Myod5ng9o\"},openInNewTab:false},CSYkHvgLn:{href:{webPageId:\"VmmzEQbHb\"},openInNewTab:false},d1Cd5Tn31:{href:{hash:\":gffUT2WG_\",webPageId:\"Myod5ng9o\"},openInNewTab:false},etRgSaaGp:{href:{hash:\":u3zM29B5W\",webPageId:\"Myod5ng9o\"},openInNewTab:false},g0sMdg0c1:{href:{hash:\":LCtFewNoO\",webPageId:\"Myod5ng9o\"},openInNewTab:false,smoothScroll:true},grquzfsXY:{href:{webPageId:\"KG3NfATEo\"},openInNewTab:false},GWNlVEoTo:{href:{webPageId:\"Myod5ng9o\"},openInNewTab:false},OMKDu3PkU:{href:{webPageId:\"c1D_HGAXM\"},openInNewTab:false},XkaU2VSzf:{href:{webPageId:\"C4FvE2wBe\"},openInNewTab:false},xWYC05CGU:{href:{hash:\":u3zM29B5W\",webPageId:\"Myod5ng9o\"},openInNewTab:false,smoothScroll:true},zKDh830E4:{href:{hash:\":gffUT2WG_\",webPageId:\"Myod5ng9o\"},openInNewTab:false,smoothScroll:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1stb0t\",className,classNames)} framer-177mphv`,\"data-framer-name\":\"About\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"YsRM13mDN\",onMouseEnter:onMouseEnteredwnny,onTap:onTap1ena3w,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"aguIpHkWM-hover\":{\"data-framer-name\":undefined},\"CSYkHvgLn-hover\":{\"data-framer-name\":undefined},\"d1Cd5Tn31-hover\":{\"data-framer-name\":undefined},\"etRgSaaGp-hover\":{\"data-framer-name\":undefined},\"g0sMdg0c1-hover\":{\"data-framer-name\":undefined},\"grquzfsXY-hover\":{\"data-framer-name\":undefined},\"GWNlVEoTo-hover\":{\"data-framer-name\":undefined},\"OMKDu3PkU-hover\":{\"data-framer-name\":undefined},\"XkaU2VSzf-hover\":{\"data-framer-name\":undefined},\"xWYC05CGU-hover\":{\"data-framer-name\":undefined},\"YsRM13mDN-hover\":{\"data-framer-name\":undefined},\"zKDh830E4-hover\":{\"data-framer-name\":undefined},aguIpHkWM:{\"data-framer-name\":\"Become a member\"},CSYkHvgLn:{\"data-framer-name\":\"Partners\"},d1Cd5Tn31:{\"data-framer-name\":\"For Individuals\"},etRgSaaGp:{\"data-framer-name\":\"For educators\"},g0sMdg0c1:{\"data-framer-name\":\"Become a member 2\"},grquzfsXY:{\"data-framer-name\":\"Contact\"},GWNlVEoTo:{\"data-framer-name\":\"Get Involved\"},OMKDu3PkU:{\"data-framer-name\":\"Ressources\"},XkaU2VSzf:{\"data-framer-name\":\"Events\"},xWYC05CGU:{\"data-framer-name\":\"For educators 2\"},zKDh830E4:{\"data-framer-name\":\"Individuals 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\"},children:\"About Us\"})}),className:\"framer-1v7g08\",\"data-framer-name\":\"Link One\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yRWkliqMZ\",variants:{\"aguIpHkWM-hover\":{\"--extracted-r6o4lv\":\"var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29))\"},\"CSYkHvgLn-hover\":{\"--extracted-r6o4lv\":\"var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29))\"},\"d1Cd5Tn31-hover\":{\"--extracted-r6o4lv\":\"var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29))\"},\"etRgSaaGp-hover\":{\"--extracted-r6o4lv\":\"var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29))\"},\"g0sMdg0c1-hover\":{\"--extracted-r6o4lv\":\"var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29))\"},\"grquzfsXY-hover\":{\"--extracted-r6o4lv\":\"var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29))\"},\"GWNlVEoTo-hover\":{\"--extracted-r6o4lv\":\"var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29))\"},\"XkaU2VSzf-hover\":{\"--extracted-r6o4lv\":\"var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29))\"},\"xWYC05CGU-hover\":{\"--extracted-r6o4lv\":\"var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29))\"},\"YsRM13mDN-hover\":{\"--extracted-r6o4lv\":\"var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29))\"},\"zKDh830E4-hover\":{\"--extracted-r6o4lv\":\"var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"aguIpHkWM-hover\":{children:(_getLocalizedValue1=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Become a member\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]},\"CSYkHvgLn-hover\":{children:(_getLocalizedValue2=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Partners\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]},\"d1Cd5Tn31-hover\":{children:(_getLocalizedValue3=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"For individuals\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]},\"etRgSaaGp-hover\":{children:(_getLocalizedValue4=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"For educators\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]},\"g0sMdg0c1-hover\":{children:(_getLocalizedValue5=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Become a member\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]},\"grquzfsXY-hover\":{children:(_getLocalizedValue6=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Contact\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]},\"GWNlVEoTo-hover\":{children:(_getLocalizedValue7=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Get Involved\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]},\"OMKDu3PkU-hover\":{children:(_getLocalizedValue8=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Resources\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]},\"XkaU2VSzf-hover\":{children:(_getLocalizedValue9=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Events\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]},\"xWYC05CGU-hover\":{children:(_getLocalizedValue10=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"For educators\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]},\"YsRM13mDN-hover\":{children:(_getLocalizedValue11=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"About Us\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]},\"zKDh830E4-hover\":{children:(_getLocalizedValue12=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"For individuals\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]},aguIpHkWM:{children:(_getLocalizedValue13=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Become a member\"})})},CSYkHvgLn:{children:(_getLocalizedValue14=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Partners\"})})},d1Cd5Tn31:{children:(_getLocalizedValue15=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\"},children:\"For individuals\"})}),text:Mpnv9PFtp},etRgSaaGp:{children:(_getLocalizedValue16=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\"},children:\"For educators\"})})},g0sMdg0c1:{children:(_getLocalizedValue17=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue17!==void 0?_getLocalizedValue17:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5l4ee2\",\"data-styles-preset\":\"sZzlLjINJ\",children:\"Become a member\"})})},grquzfsXY:{children:(_getLocalizedValue18=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue18!==void 0?_getLocalizedValue18:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Contact\"})})},GWNlVEoTo:{children:(_getLocalizedValue19=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue19!==void 0?_getLocalizedValue19:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get Involved\"})})},OMKDu3PkU:{children:(_getLocalizedValue20=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue20!==void 0?_getLocalizedValue20:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Resources\"})})},XkaU2VSzf:{children:(_getLocalizedValue21=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue21!==void 0?_getLocalizedValue21:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Events\"})})},xWYC05CGU:{children:(_getLocalizedValue22=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue22!==void 0?_getLocalizedValue22:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5l4ee2\",\"data-styles-preset\":\"sZzlLjINJ\",children:\"For educators\"})})},zKDh830E4:{children:(_getLocalizedValue23=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue23!==void 0?_getLocalizedValue23:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5l4ee2\",\"data-styles-preset\":\"sZzlLjINJ\",children:\"For individuals\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-be6kbl-container\",layoutDependency:layoutDependency,layoutId:\"t4EZEi7Eq-container\",children:/*#__PURE__*/_jsx(DotLottie,{autoplay:false,background:\"rgba(0, 85, 255, 0)\",controls:false,direction:\"1\",height:\"100%\",hover:true,id:\"t4EZEi7Eq\",layoutId:\"t4EZEi7Eq\",loop:false,progress:0,speed:1,srcType:\"url\",srcUrl:\"https://lottie.host/7b32a365-66f5-4d33-bced-1f1f67375b69/bOR0pBA4Mn.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({CSYkHvgLn:{srcUrl:\"https://lottie.host/01bf9c65-bc85-49fe-bd3f-6f396cf11c0a/U0fzSXnewr.json\"},grquzfsXY:{srcUrl:\"https://lottie.host/574c5c7f-2583-4203-b263-ae7be86bd6a2/Y0BtTHwNG8.json\"},GWNlVEoTo:{srcUrl:\"https://lottie.host/bbb13c46-963b-4823-9f2d-ca90e43e5654/jHiqiJcUI0.json\"},OMKDu3PkU:{srcUrl:\"https://lottie.host/ec1e86fa-a0c7-474f-9670-8330a0e76042/dSIKAeN9lv.json\"},XkaU2VSzf:{srcUrl:\"https://lottie.host/ec1e86fa-a0c7-474f-9670-8330a0e76042/dSIKAeN9lv.json\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7UHCB.framer-177mphv, .framer-7UHCB .framer-177mphv { display: block; }\",\".framer-7UHCB.framer-1stb0t { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-7UHCB .framer-1v7g08 { flex: none; height: auto; pointer-events: none; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-7UHCB .framer-be6kbl-container { bottom: -21px; flex: none; left: -16px; position: absolute; right: -14px; top: 0px; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7UHCB.framer-1stb0t { gap: 0px; } .framer-7UHCB.framer-1stb0t > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-7UHCB.framer-1stb0t > :first-child { margin-top: 0px; } .framer-7UHCB.framer-1stb0t > :last-child { margin-bottom: 0px; } }\",\".framer-7UHCB.framer-v-qyjmed .framer-be6kbl-container, .framer-7UHCB.framer-v-1pmw84j .framer-be6kbl-container { bottom: -14px; left: -22px; right: -18px; top: -11px; }\",\".framer-7UHCB.framer-v-pi8000 .framer-be6kbl-container, .framer-7UHCB.framer-v-1b1v4ry .framer-be6kbl-container, .framer-7UHCB.framer-v-vjcak7 .framer-be6kbl-container { bottom: -10px; left: -15px; right: -15px; top: -11px; }\",\".framer-7UHCB.framer-v-1kzbxhr .framer-be6kbl-container, .framer-7UHCB.framer-v-gds0ph .framer-be6kbl-container, .framer-7UHCB.framer-v-1mwm63e .framer-be6kbl-container, .framer-7UHCB.framer-v-520rop .framer-be6kbl-container { left: -15px; right: -15px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 60\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"XkaU2VSzf\":{\"layout\":[\"auto\",\"auto\"]},\"GWNlVEoTo\":{\"layout\":[\"auto\",\"auto\"]},\"CSYkHvgLn\":{\"layout\":[\"auto\",\"auto\"]},\"grquzfsXY\":{\"layout\":[\"auto\",\"auto\"]},\"d1Cd5Tn31\":{\"layout\":[\"auto\",\"auto\"]},\"zKDh830E4\":{\"layout\":[\"auto\",\"auto\"]},\"etRgSaaGp\":{\"layout\":[\"auto\",\"auto\"]},\"xWYC05CGU\":{\"layout\":[\"auto\",\"auto\"]},\"aguIpHkWM\":{\"layout\":[\"auto\",\"auto\"]},\"g0sMdg0c1\":{\"layout\":[\"auto\",\"auto\"]},\"OMKDu3PkU\":{\"layout\":[\"auto\",\"auto\"]},\"ZrlscYJoI\":{\"layout\":[\"auto\",\"auto\"]},\"cFV1wfhcq\":{\"layout\":[\"auto\",\"auto\"]},\"BNAVNhKAP\":{\"layout\":[\"auto\",\"auto\"]},\"zwAsfYmC8\":{\"layout\":[\"auto\",\"auto\"]},\"g9L6k7vOw\":{\"layout\":[\"auto\",\"auto\"]},\"PCqypbdrn\":{\"layout\":[\"auto\",\"auto\"]},\"Qylb37XuY\":{\"layout\":[\"auto\",\"auto\"]},\"jnXFjzLLr\":{\"layout\":[\"auto\",\"auto\"]},\"AJ7fQZ2wq\":{\"layout\":[\"auto\",\"auto\"]},\"KLGrGdE8q\":{\"layout\":[\"auto\",\"auto\"]},\"bJNfgwwj3\":{\"layout\":[\"auto\",\"auto\"]},\"RFQ2H38Y_\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"xu7f4sHQH\":\"tap\",\"mf745BWdZ\":\"hover\",\"Mpnv9PFtp\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerc9G9WR3sY=withCSS(Component,css,\"framer-7UHCB\");export default Framerc9G9WR3sY;Framerc9G9WR3sY.displayName=\"Nav button\";Framerc9G9WR3sY.defaultProps={height:32,width:60};addPropertyControls(Framerc9G9WR3sY,{variant:{options:[\"YsRM13mDN\",\"XkaU2VSzf\",\"GWNlVEoTo\",\"CSYkHvgLn\",\"grquzfsXY\",\"d1Cd5Tn31\",\"zKDh830E4\",\"etRgSaaGp\",\"xWYC05CGU\",\"aguIpHkWM\",\"g0sMdg0c1\",\"OMKDu3PkU\"],optionTitles:[\"About\",\"Events\",\"Get Involved\",\"Partners\",\"Contact\",\"For Individuals\",\"Individuals 2\",\"For educators\",\"For educators 2\",\"Become a member\",\"Become a member 2\",\"Ressources\"],title:\"Variant\",type:ControlType.Enum},xu7f4sHQH:{title:\"Tap\",type:ControlType.EventHandler},mf745BWdZ:{title:\"Hover\",type:ControlType.EventHandler},Mpnv9PFtp:{defaultValue:\"For individuals\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(Framerc9G9WR3sY,[{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:\"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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...DotLottieFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerc9G9WR3sY\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"XkaU2VSzf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"GWNlVEoTo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"CSYkHvgLn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"grquzfsXY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"d1Cd5Tn31\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zKDh830E4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"etRgSaaGp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xWYC05CGU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"aguIpHkWM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"g0sMdg0c1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"OMKDu3PkU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZrlscYJoI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cFV1wfhcq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"BNAVNhKAP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zwAsfYmC8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"g9L6k7vOw\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"PCqypbdrn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Qylb37XuY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"jnXFjzLLr\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AJ7fQZ2wq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"KLGrGdE8q\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"bJNfgwwj3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"RFQ2H38Y_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"xu7f4sHQH\\\":\\\"tap\\\",\\\"mf745BWdZ\\\":\\\"hover\\\",\\\"Mpnv9PFtp\\\":\\\"text\\\"}\",\"framerIntrinsicWidth\":\"60\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"32\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Source Sans 3-regular\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{family:\"Source Sans 3\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Ky461EI_io6npfB.woff2\",weight:\"400\"}];export const css=['.framer-RJY2n .framer-styles-preset-5l4ee2:not(.rich-text-wrapper), .framer-RJY2n .framer-styles-preset-5l4ee2.rich-text-wrapper p { --framer-font-family: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-RJY2n\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Source Sans 3-regular\",\"GF;Source Sans 3-700\",\"GF;Source Sans 3-900italic\",\"GF;Source Sans 3-italic\"]);export const fonts=[{family:\"Source Sans 3\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Ky461EI_io6npfB.woff2\",weight:\"400\"},{family:\"Source Sans 3\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxf7FEI_io6npfB.woff2\",weight:\"700\"},{family:\"Source Sans 3\",style:\"italic\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqBBJ9CsYm4fB3Ts.woff2\",weight:\"900\"},{family:\"Source Sans 3\",style:\"italic\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqLlO9CsYm4fB3Ts.woff2\",weight:\"400\"}];export const css=['.framer-L8V87 .framer-styles-preset-88dk3g:not(.rich-text-wrapper), .framer-L8V87 .framer-styles-preset-88dk3g.rich-text-wrapper p { --framer-font-family: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-family-bold: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Source Sans 3\", sans-serif; --framer-font-family-italic: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-L8V87 .framer-styles-preset-88dk3g:not(.rich-text-wrapper), .framer-L8V87 .framer-styles-preset-88dk3g.rich-text-wrapper p { --framer-font-family: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-family-bold: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Source Sans 3\", sans-serif; --framer-font-family-italic: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-L8V87 .framer-styles-preset-88dk3g:not(.rich-text-wrapper), .framer-L8V87 .framer-styles-preset-88dk3g.rich-text-wrapper p { --framer-font-family: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-family-bold: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Source Sans 3\", sans-serif; --framer-font-family-italic: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-L8V87\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ca9141d)\nimport*as localizedValues from\"./c9G9WR3sY-0.js\";const valuesByLocaleId={ddvCJkPvt:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\"},children:\"O nas\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Wydarzenia\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\"},children:\"We\u017A udzia\u0142\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Partnerzy\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Kontakt\"})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Dla uczestnik\\xf3w indywidualnych\"})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5l4ee2\",\"data-styles-preset\":\"sZzlLjINJ\",children:\"Dla uczestnik\\xf3w indywidualnych\"})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Dla nauczycieli\"})});export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5l4ee2\",\"data-styles-preset\":\"sZzlLjINJ\",children:\"Dla nauczycieli\"})});export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Zosta\u0144 cz\u0142onkiem/cz\u0142onkini\u0105\"})});export const v10=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5l4ee2\",\"data-styles-preset\":\"sZzlLjINJ\",children:\"Zosta\u0144 cz\u0142onkiem/cz\u0142onkini\u0105\"})});export const v11=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Wydarzenia\"})});export const v12=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"O nas\"})})});export const v13=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Wydarzenia\"})})});export const v14=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"We\u017A udzia\u0142\"})})});export const v15=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Partnerzy\"})})});export const v16=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Kontakt\"})})});export const v17=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Dla uczestnik\\xf3w indywidualnych\"})})});export const v18=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Dla nauczycieli\"})})});export const v19=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, rgb(1, 6, 29)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Zosta\u0144 cz\u0142onkiem/cz\u0142onkini\u0105\"})})});export const v20=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-88dk3g\",\"data-styles-preset\":\"t766HsZPK\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Wydarzenia\"})})});\nexport const __FramerMetadata__ = {\"exports\":{\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v18\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v20\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v19\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ca9141d)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getLoadingLazyAtYPosition,Image,Link,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import LocaleSelector from\"https://framerusercontent.com/modules/57FhkldN9P7x88MqAEaR/MaCiz8nzfVQ2yBstuToQ/LocaleSelector.js\";import NavButton from\"https://framerusercontent.com/modules/wTJdET57AuXa6azwLUXU/YBzouwu3YyOY2964XvaH/c9G9WR3sY.js\";const NavButtonFonts=getFonts(NavButton);const MotionDivWithFX=withFX(motion.div);const LocaleSelectorFonts=getFonts(LocaleSelector);const cycleOrder=[\"clAPeJLmB\",\"chQ5OJcv4\",\"tPJESiT2H\"];const serializationHash=\"framer-iSSBi\";const variantClassNames={chQ5OJcv4:\"framer-v-b941a7\",clAPeJLmB:\"framer-v-1nqj73j\",tPJESiT2H:\"framer-v-opplrd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition3={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Phone Closed\":\"tPJESiT2H\",\"Phone Open\":\"chQ5OJcv4\",Desktop:\"clAPeJLmB\"};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:\"clAPeJLmB\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"clAPeJLmB\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapzofviq=activeVariantCallback(async(...args)=>{setVariant(\"tPJESiT2H\");});const onTap1rhhz49=activeVariantCallback(async(...args)=>{setVariant(\"chQ5OJcv4\");});const onMouseEnterizu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"chQ5OJcv4\",\"tPJESiT2H\"].includes(baseVariant))return true;return false;};const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const isDisplayed1=()=>{if(baseVariant===\"chQ5OJcv4\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1nqj73j\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"clAPeJLmB\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({chQ5OJcv4:{\"data-framer-name\":\"Phone Open\"},tPJESiT2H:{\"data-framer-name\":\"Phone Closed\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-50yde6\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"dRi9KC9c3\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{chQ5OJcv4:{backgroundColor:\"var(--token-c80ecc69-6209-4f3f-aaeb-aa8735c30f48, rgb(255, 255, 255))\"},tPJESiT2H:{backgroundColor:\"var(--token-c80ecc69-6209-4f3f-aaeb-aa8735c30f48, rgb(255, 255, 255))\"}},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"rME5S1E83\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1mmpvd3 framer-1gkxa63\",layoutDependency:layoutDependency,layoutId:\"rME5S1E83\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:150,intrinsicWidth:992,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||525)-24-53)/2)+10+0),pixelHeight:300,pixelWidth:1984,positionX:\"center\",positionY:\"center\",sizes:\"218px\",src:\"https://framerusercontent.com/images/eJdnNxnkUEVKTveWk39jo2eRhbM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/eJdnNxnkUEVKTveWk39jo2eRhbM.png?scale-down-to=512 512w,https://framerusercontent.com/images/eJdnNxnkUEVKTveWk39jo2eRhbM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eJdnNxnkUEVKTveWk39jo2eRhbM.png 1984w\"},className:\"framer-tak3o3\",\"data-framer-name\":\"EYP Logo\",layoutDependency:layoutDependency,layoutId:\"XzHGGZibF\",...addPropertyOverrides({chQ5OJcv4:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:150,intrinsicWidth:992,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||476)-0-476)/1*0)+15.5+0),pixelHeight:300,pixelWidth:1984,positionX:\"center\",positionY:\"center\",sizes:\"218px\",src:\"https://framerusercontent.com/images/eJdnNxnkUEVKTveWk39jo2eRhbM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/eJdnNxnkUEVKTveWk39jo2eRhbM.png?scale-down-to=512 512w,https://framerusercontent.com/images/eJdnNxnkUEVKTveWk39jo2eRhbM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eJdnNxnkUEVKTveWk39jo2eRhbM.png 1984w\"}},tPJESiT2H:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:150,intrinsicWidth:992,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||65)-0-65)/1*0)+15.5+0),pixelHeight:300,pixelWidth:1984,positionX:\"center\",positionY:\"center\",sizes:\"218px\",src:\"https://framerusercontent.com/images/eJdnNxnkUEVKTveWk39jo2eRhbM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/eJdnNxnkUEVKTveWk39jo2eRhbM.png?scale-down-to=512 512w,https://framerusercontent.com/images/eJdnNxnkUEVKTveWk39jo2eRhbM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eJdnNxnkUEVKTveWk39jo2eRhbM.png 1984w\"}}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g6q7ps\",\"data-framer-name\":\"Hamburger\",layoutDependency:layoutDependency,layoutId:\"vOEoVyfQg\",...addPropertyOverrides({chQ5OJcv4:{\"data-highlight\":true,onTap:onTapzofviq},tPJESiT2H:{\"data-highlight\":true,onTap:onTap1rhhz49}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-812b9m\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"LZ6_jFj0i\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{chQ5OJcv4:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lohl2q\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"xJgvVZaB7\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{chQ5OJcv4:{rotate:45}}})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-i0ycg1\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"u9zg8pUw2\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\",opacity:1},variants:{chQ5OJcv4:{backgroundColor:\"rgb(255, 255, 255)\"},tPJESiT2H:{backgroundColor:\"rgb(255, 255, 255)\",opacity:0}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xefa98\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"mtJlkb19Z\",style:{opacity:1},variants:{tPJESiT2H:{opacity:0}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vki9dk\",layoutDependency:layoutDependency,layoutId:\"jQjhw2hy8\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"60.5px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||525)-24-42)/2)+0+5+0+0,...addPropertyOverrides({chQ5OJcv4:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||476)-0-476)/1*1)+20+0+0+11+0+0},tPJESiT2H:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||65)-0-65)/1*1)+0+0+0+-31+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-196d6r1-container\",layoutDependency:layoutDependency,layoutId:\"OUee0Q6HN-container\",children:/*#__PURE__*/_jsx(NavButton,{height:\"100%\",id:\"OUee0Q6HN\",layoutId:\"OUee0Q6HN\",Mpnv9PFtp:\"For individuals\",style:{width:\"100%\"},variant:\"YsRM13mDN\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-bk2e4m\",\"data-framer-name\":\"Separator\",layoutDependency:layoutDependency,layoutId:\"vDbCKhPUx\",style:{backgroundColor:\"rgba(0, 0, 0, 0.08)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pk484s\",layoutDependency:layoutDependency,layoutId:\"DT3B0noGY\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"44.5px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||525)-24-42)/2)+0+5+0+0,...addPropertyOverrides({chQ5OJcv4:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||476)-0-476)/1*1)+20+0+0+64+0+0},tPJESiT2H:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||65)-0-65)/1*1)+0+0+0+-251+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13uvafi-container\",layoutDependency:layoutDependency,layoutId:\"W4VZR_4Cm-container\",children:/*#__PURE__*/_jsx(NavButton,{height:\"100%\",id:\"W4VZR_4Cm\",layoutId:\"W4VZR_4Cm\",Mpnv9PFtp:\"For individuals\",style:{width:\"100%\"},variant:\"XkaU2VSzf\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-8y6a8a\",\"data-framer-name\":\"Separator\",layoutDependency:layoutDependency,layoutId:\"RrzCrvgrZ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.08)\"}}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e6xnar\",\"data-highlight\":true,id:`${layoutId}-1e6xnar`,layoutDependency:layoutDependency,layoutId:\"ABJlZ6e0k\",onMouseEnter:onMouseEnterizu9gt({overlay}),ref:ref2,children:[/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:45,\"data-framer-portal-id\":`${layoutId}-1e6xnar`,offsetX:0,offsetY:22,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1nzaqhq\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"xk5M4TMS8\",ref:ref3,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||525)-24-42)/2)+0+0+-78+20+0,...addPropertyOverrides({chQ5OJcv4:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||476)-0-476)/1*1)+20+0+0+117+-78+20+0},tPJESiT2H:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||65)-0-65)/1*1)+0+0+0+-167+-78+20+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fwpkm9-container\",layoutDependency:layoutDependency,layoutId:\"hVNL2tCwa-container\",children:/*#__PURE__*/_jsx(NavButton,{height:\"100%\",id:\"hVNL2tCwa\",layoutId:\"hVNL2tCwa\",Mpnv9PFtp:\"For individuals\",variant:\"d1Cd5Tn31\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||525)-24-42)/2)+0+0+-78+20+42,...addPropertyOverrides({chQ5OJcv4:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||476)-0-476)/1*1)+20+0+0+117+-78+20+42},tPJESiT2H:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||65)-0-65)/1*1)+0+0+0+-167+-78+20+42}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1utin8l-container\",layoutDependency:layoutDependency,layoutId:\"cz2sK7IhE-container\",children:/*#__PURE__*/_jsx(NavButton,{height:\"100%\",id:\"cz2sK7IhE\",layoutId:\"cz2sK7IhE\",Mpnv9PFtp:\"For individuals\",variant:\"etRgSaaGp\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||525)-24-42)/2)+0+0+-78+20+84,...addPropertyOverrides({chQ5OJcv4:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||476)-0-476)/1*1)+20+0+0+117+-78+20+84},tPJESiT2H:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||65)-0-65)/1*1)+0+0+0+-167+-78+20+84}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vamvse-container\",layoutDependency:layoutDependency,layoutId:\"rSag4qtI_-container\",children:/*#__PURE__*/_jsx(NavButton,{height:\"100%\",id:\"rSag4qtI_\",layoutId:\"rSag4qtI_\",Mpnv9PFtp:\"For individuals\",variant:\"aguIpHkWM\",width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"83.5px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||525)-24-42)/2)+0+0+5+0,...addPropertyOverrides({chQ5OJcv4:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||476)-0-476)/1*1)+20+0+0+117+5+0},tPJESiT2H:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||65)-0-65)/1*1)+0+0+0+-167+5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-m5ihaq-container\",layoutDependency:layoutDependency,layoutId:\"vtWsg4kGf-container\",children:/*#__PURE__*/_jsx(NavButton,{height:\"100%\",id:\"vtWsg4kGf\",layoutId:\"vtWsg4kGf\",Mpnv9PFtp:\"For individuals\",style:{width:\"100%\"},variant:\"GWNlVEoTo\",width:\"100%\"})})})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v3ajpm\",\"data-framer-name\":\"Separator\",layoutDependency:layoutDependency,layoutId:\"x8RHY8Qo3\",style:{backgroundColor:\"rgba(0, 0, 0, 0.08)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rrce13\",layoutDependency:layoutDependency,layoutId:\"wPSc6Ro4Z\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"56.5px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||525)-24-42)/2)+0+5+0+0,...addPropertyOverrides({chQ5OJcv4:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||476)-0-476)/1*1)+20+0+0+180+0+0},tPJESiT2H:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||65)-0-65)/1*1)+0+0+0+-115+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pqvuzu-container\",layoutDependency:layoutDependency,layoutId:\"ERLK6jc3B-container\",children:/*#__PURE__*/_jsx(NavButton,{height:\"100%\",id:\"ERLK6jc3B\",layoutId:\"ERLK6jc3B\",Mpnv9PFtp:\"For individuals\",style:{width:\"100%\"},variant:\"CSYkHvgLn\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3gwzme\",layoutDependency:layoutDependency,layoutId:\"HpVMBdlcR\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"52px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||525)-24-42)/2)+0+5+0+0,...addPropertyOverrides({chQ5OJcv4:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||476)-0-476)/1*1)+20+0+0+233+0+0},tPJESiT2H:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||65)-0-65)/1*1)+0+0+0+-73+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-skwf5p-container\",layoutDependency:layoutDependency,layoutId:\"yDalKb627-container\",children:/*#__PURE__*/_jsx(NavButton,{height:\"100%\",id:\"yDalKb627\",layoutId:\"yDalKb627\",Mpnv9PFtp:\"For individuals\",style:{width:\"100%\"},variant:\"grquzfsXY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8tspfa\",\"data-highlight\":true,id:`${layoutId}-8tspfa`,layoutDependency:layoutDependency,layoutId:\"N0RzBYBEe\",onMouseEnter:onMouseEnterizu9gt({overlay:overlay1}),ref:ref4,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"81px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||525)-24-42)/2)+0+5+0+0,...addPropertyOverrides({chQ5OJcv4:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||476)-0-476)/1*1)+20+0+0+286+0+0},tPJESiT2H:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||65)-0-65)/1*1)+0+0+0+-209+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tuc7yz-container\",layoutDependency:layoutDependency,layoutId:\"fQiRmPsdT-container\",children:/*#__PURE__*/_jsx(NavButton,{height:\"100%\",id:\"fQiRmPsdT\",layoutId:\"fQiRmPsdT\",Mpnv9PFtp:\"For individuals\",style:{width:\"100%\"},variant:\"OMKDu3PkU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref4,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:45,\"data-framer-portal-id\":`${layoutId}-8tspfa`,offsetX:0,offsetY:22,onDismiss:overlay1.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-1lj17sz\",exit:animation3,initial:animation2,layoutDependency:layoutDependency,layoutId:\"c8frVkDJp\",ref:ref5,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||525)-24-42)/2)+0+5+-78+20+0,...addPropertyOverrides({chQ5OJcv4:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||476)-0-476)/1*1)+20+0+0+286+-78+20+0},tPJESiT2H:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||65)-0-65)/1*1)+0+0+0+-209+-78+20+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uj3fvs-container\",layoutDependency:layoutDependency,layoutId:\"GtapzVtnF-container\",children:/*#__PURE__*/_jsx(NavButton,{height:\"100%\",id:\"GtapzVtnF\",layoutId:\"GtapzVtnF\",Mpnv9PFtp:\"Code of conduct\",variant:\"d1Cd5Tn31\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||525)-24-42)/2)+0+5+-78+20+42,...addPropertyOverrides({chQ5OJcv4:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||476)-0-476)/1*1)+20+0+0+286+-78+20+42},tPJESiT2H:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||65)-0-65)/1*1)+0+0+0+-209+-78+20+42}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a2apcz-container\",layoutDependency:layoutDependency,layoutId:\"OHKHqSACY-container\",children:/*#__PURE__*/_jsx(NavButton,{height:\"100%\",id:\"OHKHqSACY\",layoutId:\"OHKHqSACY\",Mpnv9PFtp:\"Privacy Policy\",variant:\"d1Cd5Tn31\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||525)-24-42)/2)+0+5+-78+20+84,...addPropertyOverrides({chQ5OJcv4:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||476)-0-476)/1*1)+20+0+0+286+-78+20+84},tPJESiT2H:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||65)-0-65)/1*1)+0+0+0+-209+-78+20+84}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-131ewnl-container\",layoutDependency:layoutDependency,layoutId:\"Di2VK1byW-container\",children:/*#__PURE__*/_jsx(NavButton,{height:\"100%\",id:\"Di2VK1byW\",layoutId:\"Di2VK1byW\",Mpnv9PFtp:\"Election panels policy\",variant:\"d1Cd5Tn31\",width:\"100%\"})})})]})})})]})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dmbe78\",\"data-framer-name\":\"Separator\",layoutDependency:layoutDependency,layoutId:\"BlxhtV77A\",style:{backgroundColor:\"rgba(0, 0, 0, 0.08)\"}}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vbqsjl\",\"data-framer-name\":\"Separator\",layoutDependency:layoutDependency,layoutId:\"i3CGRrClJ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.08)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s3gpnq\",\"data-framer-name\":\"Language\",layoutDependency:layoutDependency,layoutId:\"OtRAQJ4iQ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xojuob-container\",layoutDependency:layoutDependency,layoutId:\"inDxBM1Bm-container\",children:/*#__PURE__*/_jsx(LocaleSelector,{caret:{color:\"var(--token-8d4fc709-ea18-45b9-8076-78d9029acb23, rgb(37, 55, 70))\",size:12,type:\"default\"},font:{fontFamily:'\"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},height:\"100%\",icon:{color:\"var(--token-8d4fc709-ea18-45b9-8076-78d9029acb23, rgb(37, 55, 70))\",size:18,type:\"default\"},id:\"inDxBM1Bm\",layoutId:\"inDxBM1Bm\",options:{focus:{color:\"var(--token-e74fc906-87fd-4ceb-a0d8-018f92bd573e, rgb(247, 247, 251))\",offset:0,style:\"solid\",width:1},gap:5,hover:{borderColor:\"var(--token-29abdb2d-d693-4979-a00c-63889e56622b, rgb(255, 215, 0))\",fillColor:\"var(--token-820006df-53c5-4304-a555-16f94f4ff07d, rgb(236, 236, 245))\",textColor:\"var(--token-29abdb2d-d693-4979-a00c-63889e56622b, rgb(255, 215, 0))\"},title:false},padding:10,paddingBottom:8,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:8,radius:28,radiusBottomLeft:28,radiusBottomRight:28,radiusPerConrner:false,radiusTopLeft:28,radiusTopRight:28,textColor:\"var(--token-8d4fc709-ea18-45b9-8076-78d9029acb23, rgb(37, 55, 70))\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ymitpw\",\"data-framer-name\":\"Separator\",layoutDependency:layoutDependency,layoutId:\"HXXyHKqCb\",style:{backgroundColor:\"rgba(0, 0, 0, 0.08)\"}})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dh3lmu\",\"data-framer-name\":\"Upper bleed\",layoutDependency:layoutDependency,layoutId:\"sDBMuy56q\",style:{backgroundColor:\"var(--token-c80ecc69-6209-4f3f-aaeb-aa8735c30f48, rgb(255, 255, 255))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dbaa6a\",\"data-framer-name\":\"Bottom Line\",layoutDependency:layoutDependency,layoutId:\"eEKVgbNfP\",style:{backgroundColor:\"rgba(0, 0, 0, 0.08)\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iSSBi.framer-1gkxa63, .framer-iSSBi .framer-1gkxa63 { display: block; }\",\".framer-iSSBi.framer-1nqj73j { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: 525px; justify-content: space-between; overflow: visible; padding: 12px 30px 12px 30px; position: relative; width: 1200px; }\",\".framer-iSSBi .framer-50yde6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 0px 10px 10px; position: relative; width: 1px; }\",\".framer-iSSBi .framer-1mmpvd3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 33px; justify-content: center; overflow: visible; padding: 0px 0px 0px 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-iSSBi .framer-tak3o3 { align-content: center; align-items: center; aspect-ratio: 6.613333333333333 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 33px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 218px; }\",\".framer-iSSBi .framer-g6q7ps { flex: none; height: 40px; overflow: hidden; position: relative; width: 40px; }\",\".framer-iSSBi .framer-812b9m { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iSSBi .framer-lohl2q { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iSSBi .framer-i0ycg1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-iSSBi .framer-xefa98 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-iSSBi .framer-1vki9dk, .framer-iSSBi .framer-1pk484s, .framer-iSSBi .framer-rrce13, .framer-iSSBi .framer-3gwzme, .framer-iSSBi .framer-8tspfa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-iSSBi .framer-196d6r1-container { flex: none; height: auto; position: relative; width: 61px; }\",\".framer-iSSBi .framer-bk2e4m, .framer-iSSBi .framer-8y6a8a, .framer-iSSBi .framer-1v3ajpm, .framer-iSSBi .framer-1dmbe78, .framer-iSSBi .framer-1vbqsjl, .framer-iSSBi .framer-1ymitpw { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 1px; z-index: 1; }\",\".framer-iSSBi .framer-13uvafi-container { flex: none; height: auto; position: relative; width: 45px; }\",\".framer-iSSBi .framer-1e6xnar { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 5px; position: relative; width: min-content; }\",\".framer-iSSBi .framer-1nzaqhq, .framer-iSSBi .framer-1lj17sz { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 50px 20px 50px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-iSSBi .framer-fwpkm9-container, .framer-iSSBi .framer-1utin8l-container, .framer-iSSBi .framer-vamvse-container, .framer-iSSBi .framer-1uj3fvs-container, .framer-iSSBi .framer-1a2apcz-container, .framer-iSSBi .framer-131ewnl-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-iSSBi .framer-m5ihaq-container { flex: none; height: auto; position: relative; width: 84px; }\",\".framer-iSSBi .framer-pqvuzu-container { flex: none; height: auto; position: relative; width: 57px; }\",\".framer-iSSBi .framer-skwf5p-container { flex: none; height: auto; position: relative; width: 52px; }\",\".framer-iSSBi .framer-tuc7yz-container { flex: none; height: auto; position: relative; width: 81px; }\",\".framer-iSSBi .framer-1s3gpnq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-iSSBi .framer-1xojuob-container { flex: none; height: auto; pointer-events: auto; position: relative; width: auto; }\",\".framer-iSSBi .framer-1dh3lmu { flex: none; height: 16px; left: 0px; overflow: visible; position: absolute; right: 0px; top: -15px; z-index: 1; }\",\".framer-iSSBi .framer-dbaa6a { bottom: 0px; flex: none; height: 1px; left: 0px; overflow: visible; position: absolute; right: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iSSBi .framer-50yde6, .framer-iSSBi .framer-1mmpvd3, .framer-iSSBi .framer-tak3o3, .framer-iSSBi .framer-i0ycg1, .framer-iSSBi .framer-xefa98, .framer-iSSBi .framer-1vki9dk, .framer-iSSBi .framer-1pk484s, .framer-iSSBi .framer-1e6xnar, .framer-iSSBi .framer-1nzaqhq, .framer-iSSBi .framer-rrce13, .framer-iSSBi .framer-3gwzme, .framer-iSSBi .framer-8tspfa, .framer-iSSBi .framer-1lj17sz, .framer-iSSBi .framer-1s3gpnq { gap: 0px; } .framer-iSSBi .framer-50yde6 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-iSSBi .framer-50yde6 > :first-child, .framer-iSSBi .framer-1mmpvd3 > :first-child, .framer-iSSBi .framer-tak3o3 > :first-child, .framer-iSSBi .framer-i0ycg1 > :first-child, .framer-iSSBi .framer-xefa98 > :first-child, .framer-iSSBi .framer-1s3gpnq > :first-child { margin-left: 0px; } .framer-iSSBi .framer-50yde6 > :last-child, .framer-iSSBi .framer-1mmpvd3 > :last-child, .framer-iSSBi .framer-tak3o3 > :last-child, .framer-iSSBi .framer-i0ycg1 > :last-child, .framer-iSSBi .framer-xefa98 > :last-child, .framer-iSSBi .framer-1s3gpnq > :last-child { margin-right: 0px; } .framer-iSSBi .framer-1mmpvd3 > *, .framer-iSSBi .framer-tak3o3 > *, .framer-iSSBi .framer-1s3gpnq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-iSSBi .framer-i0ycg1 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-iSSBi .framer-xefa98 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-iSSBi .framer-1vki9dk > *, .framer-iSSBi .framer-1pk484s > *, .framer-iSSBi .framer-1e6xnar > *, .framer-iSSBi .framer-1nzaqhq > *, .framer-iSSBi .framer-rrce13 > *, .framer-iSSBi .framer-3gwzme > *, .framer-iSSBi .framer-8tspfa > *, .framer-iSSBi .framer-1lj17sz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-iSSBi .framer-1vki9dk > :first-child, .framer-iSSBi .framer-1pk484s > :first-child, .framer-iSSBi .framer-1e6xnar > :first-child, .framer-iSSBi .framer-1nzaqhq > :first-child, .framer-iSSBi .framer-rrce13 > :first-child, .framer-iSSBi .framer-3gwzme > :first-child, .framer-iSSBi .framer-8tspfa > :first-child, .framer-iSSBi .framer-1lj17sz > :first-child { margin-top: 0px; } .framer-iSSBi .framer-1vki9dk > :last-child, .framer-iSSBi .framer-1pk484s > :last-child, .framer-iSSBi .framer-1e6xnar > :last-child, .framer-iSSBi .framer-1nzaqhq > :last-child, .framer-iSSBi .framer-rrce13 > :last-child, .framer-iSSBi .framer-3gwzme > :last-child, .framer-iSSBi .framer-8tspfa > :last-child, .framer-iSSBi .framer-1lj17sz > :last-child { margin-bottom: 0px; } }\",\".framer-iSSBi.framer-v-b941a7.framer-1nqj73j, .framer-iSSBi.framer-v-opplrd.framer-1nqj73j { flex-direction: column; height: min-content; max-height: calc(var(--framer-viewport-height, 100vh) * 1); padding: 0px; width: 390px; }\",\".framer-iSSBi.framer-v-b941a7 .framer-50yde6, .framer-iSSBi.framer-v-opplrd .framer-50yde6 { flex: none; gap: unset; justify-content: space-between; order: 1; padding: 10px; width: 100%; z-index: 2; }\",\".framer-iSSBi.framer-v-b941a7 .framer-1mmpvd3, .framer-iSSBi.framer-v-b941a7 .framer-tuc7yz-container, .framer-iSSBi.framer-v-b941a7 .framer-1dh3lmu, .framer-iSSBi.framer-v-opplrd .framer-1mmpvd3, .framer-iSSBi.framer-v-opplrd .framer-1dh3lmu { order: 0; }\",\".framer-iSSBi.framer-v-b941a7 .framer-tak3o3, .framer-iSSBi.framer-v-opplrd .framer-tak3o3 { height: var(--framer-aspect-ratio-supported, 32px); }\",\".framer-iSSBi.framer-v-b941a7 .framer-g6q7ps, .framer-iSSBi.framer-v-opplrd .framer-g6q7ps { cursor: pointer; height: 44px; order: 1; width: 44px; }\",\".framer-iSSBi.framer-v-b941a7 .framer-812b9m, .framer-iSSBi.framer-v-b941a7 .framer-lohl2q { top: calc(50.00000000000002% - 2px / 2); }\",\".framer-iSSBi.framer-v-b941a7 .framer-i0ycg1 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; justify-content: flex-end; order: 2; padding: 20px 20px 30px 20px; width: 100%; z-index: 1; }\",\".framer-iSSBi.framer-v-b941a7 .framer-xefa98 { flex-direction: column; gap: 10px; justify-content: flex-end; width: 100%; }\",\".framer-iSSBi.framer-v-b941a7 .framer-1vki9dk, .framer-iSSBi.framer-v-b941a7 .framer-1lj17sz, .framer-iSSBi.framer-v-opplrd .framer-1s3gpnq { order: 1; }\",\".framer-iSSBi.framer-v-b941a7 .framer-bk2e4m, .framer-iSSBi.framer-v-opplrd .framer-bk2e4m { flex: none; order: 0; width: 100%; }\",\".framer-iSSBi.framer-v-b941a7 .framer-1pk484s, .framer-iSSBi.framer-v-b941a7 .framer-dbaa6a, .framer-iSSBi.framer-v-opplrd .framer-dbaa6a { order: 3; }\",\".framer-iSSBi.framer-v-b941a7 .framer-8y6a8a, .framer-iSSBi.framer-v-opplrd .framer-1v3ajpm { flex: none; order: 4; width: 100%; }\",\".framer-iSSBi.framer-v-b941a7 .framer-1e6xnar { order: 5; }\",\".framer-iSSBi.framer-v-b941a7 .framer-1v3ajpm { flex: none; order: 6; width: 100%; }\",\".framer-iSSBi.framer-v-b941a7 .framer-rrce13 { order: 7; }\",\".framer-iSSBi.framer-v-b941a7 .framer-3gwzme, .framer-iSSBi.framer-v-opplrd .framer-8tspfa { order: 9; }\",\".framer-iSSBi.framer-v-b941a7 .framer-8tspfa, .framer-iSSBi.framer-v-opplrd .framer-rrce13 { order: 11; }\",\".framer-iSSBi.framer-v-b941a7 .framer-1dmbe78 { flex: none; order: 8; width: 100%; }\",\".framer-iSSBi.framer-v-b941a7 .framer-1vbqsjl { flex: none; order: 10; width: 100%; }\",\".framer-iSSBi.framer-v-b941a7 .framer-1s3gpnq, .framer-iSSBi.framer-v-opplrd .framer-1vki9dk { order: 13; }\",\".framer-iSSBi.framer-v-b941a7 .framer-1ymitpw, .framer-iSSBi.framer-v-opplrd .framer-1ymitpw { flex: none; order: 2; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iSSBi.framer-v-b941a7.framer-1nqj73j, .framer-iSSBi.framer-v-b941a7 .framer-50yde6, .framer-iSSBi.framer-v-b941a7 .framer-i0ycg1, .framer-iSSBi.framer-v-b941a7 .framer-xefa98 { gap: 0px; } .framer-iSSBi.framer-v-b941a7.framer-1nqj73j > *, .framer-iSSBi.framer-v-b941a7.framer-1nqj73j > :first-child, .framer-iSSBi.framer-v-b941a7.framer-1nqj73j > :last-child, .framer-iSSBi.framer-v-b941a7 .framer-50yde6 > *, .framer-iSSBi.framer-v-b941a7 .framer-50yde6 > :first-child, .framer-iSSBi.framer-v-b941a7 .framer-50yde6 > :last-child { margin: 0px; } .framer-iSSBi.framer-v-b941a7 .framer-i0ycg1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-iSSBi.framer-v-b941a7 .framer-i0ycg1 > :first-child, .framer-iSSBi.framer-v-b941a7 .framer-xefa98 > :first-child { margin-top: 0px; } .framer-iSSBi.framer-v-b941a7 .framer-i0ycg1 > :last-child, .framer-iSSBi.framer-v-b941a7 .framer-xefa98 > :last-child { margin-bottom: 0px; } .framer-iSSBi.framer-v-b941a7 .framer-xefa98 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-iSSBi.framer-v-opplrd .framer-812b9m { top: calc(61.36363636363639% - 2px / 2); }\",\".framer-iSSBi.framer-v-opplrd .framer-lohl2q { top: calc(38.636363636363654% - 2px / 2); }\",\".framer-iSSBi.framer-v-opplrd .framer-i0ycg1 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; height: 1px; justify-content: flex-end; order: 2; overflow: hidden; padding: 0px 20px 0px 20px; width: 100%; z-index: 1; }\",\".framer-iSSBi.framer-v-opplrd .framer-xefa98 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 10px; height: 1px; justify-content: flex-end; width: 100%; }\",\".framer-iSSBi.framer-v-opplrd .framer-1pk484s { order: 8; }\",\".framer-iSSBi.framer-v-opplrd .framer-8y6a8a { flex: none; order: 3; width: 100%; }\",\".framer-iSSBi.framer-v-opplrd .framer-1e6xnar { order: 10; }\",\".framer-iSSBi.framer-v-opplrd .framer-3gwzme { order: 12; }\",\".framer-iSSBi.framer-v-opplrd .framer-1vbqsjl { flex: none; order: 5; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iSSBi.framer-v-opplrd.framer-1nqj73j, .framer-iSSBi.framer-v-opplrd .framer-50yde6, .framer-iSSBi.framer-v-opplrd .framer-i0ycg1, .framer-iSSBi.framer-v-opplrd .framer-xefa98 { gap: 0px; } .framer-iSSBi.framer-v-opplrd.framer-1nqj73j > *, .framer-iSSBi.framer-v-opplrd.framer-1nqj73j > :first-child, .framer-iSSBi.framer-v-opplrd.framer-1nqj73j > :last-child, .framer-iSSBi.framer-v-opplrd .framer-50yde6 > *, .framer-iSSBi.framer-v-opplrd .framer-50yde6 > :first-child, .framer-iSSBi.framer-v-opplrd .framer-50yde6 > :last-child { margin: 0px; } .framer-iSSBi.framer-v-opplrd .framer-i0ycg1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-iSSBi.framer-v-opplrd .framer-i0ycg1 > :first-child, .framer-iSSBi.framer-v-opplrd .framer-xefa98 > :first-child { margin-top: 0px; } .framer-iSSBi.framer-v-opplrd .framer-i0ycg1 > :last-child, .framer-iSSBi.framer-v-opplrd .framer-xefa98 > :last-child { margin-bottom: 0px; } .framer-iSSBi.framer-v-opplrd .framer-xefa98 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 525\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"chQ5OJcv4\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]},\"tPJESiT2H\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersHgGk4tVe=withCSS(Component,css,\"framer-iSSBi\");export default FramersHgGk4tVe;FramersHgGk4tVe.displayName=\"Navigation\";FramersHgGk4tVe.defaultProps={height:525,width:1200};addPropertyControls(FramersHgGk4tVe,{variant:{options:[\"clAPeJLmB\",\"chQ5OJcv4\",\"tPJESiT2H\"],optionTitles:[\"Desktop\",\"Phone Open\",\"Phone Closed\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramersHgGk4tVe,[{explicitInter:true,fonts:[{family:\"Source Sans 3\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Ky461EI_io6npfB.woff2\",weight:\"400\"}]},...NavButtonFonts,...LocaleSelectorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersHgGk4tVe\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"525\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"chQ5OJcv4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]},\\\"tPJESiT2H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "var e,t;import{jsx as o,jsxs as l}from\"react/jsx-runtime\";import{addPropertyControls as r,ControlType as i,// @ts-ignore Internal function\nuseLocaleInfo as a,withCSS as n}from\"framer\";import{useId as s,useRef as u,useState as d}from\"react\";import{getBorderStyle as c,borderControls as p}from\"https://framerusercontent.com/modules/cuKUFdzXlhvw8OVOBeAc/VOfaY9LHiTLKveiePI7P/border.js\";import{getFocusStyle as f,focusControls as m}from\"https://framerusercontent.com/modules/9muYaW1MvHoRQJ0P7dkP/V2GVvLqiMxXRSxszkCSa/focus.js\";import{getHoverStyle as h,hoverControls as v}from\"https://framerusercontent.com/modules/YfmtnpWjJrP37sQ18QUZ/9Y2P24U2SBIbf2fPVsOX/hover.js\";import{getPaddingStyle as g,paddingControls as y}from\"https://framerusercontent.com/modules/wjZLfSMaP1TvJDu5PCwr/6SPClu354QJPCp6Xj5C0/padding.js\";import{getRadiusStyle as b,radiusControls as w}from\"https://framerusercontent.com/modules/N6MwtHbWoiZJNn1xpqxu/58OHv7BfCzgeBhiv1TYu/radius.js\";let C=\"framer-locale-picker\";function x(e){return\"number\"==typeof e?`${e}px`:e;}function j({type:e,color:t,image:l,size:r}){return\"custom\"===e&&l?/*#__PURE__*/o(\"img\",{...l,width:r,height:r}):/*#__PURE__*/o(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",width:r,height:r,fill:t,children:/*#__PURE__*/o(\"path\",{d:\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm87.63,96H175.8c-1.41-28.46-10.27-55.47-25.12-77A88.2,88.2,0,0,1,215.63,120ZM128,215.89c-18.73-20.27-30.09-49-31.77-79.89h63.54C158.09,166.87,146.73,195.62,128,215.89ZM96.23,120c1.68-30.87,13-59.62,31.77-79.89,18.73,20.27,30.09,49,31.77,79.89Zm9.09-77C90.47,64.53,81.61,91.54,80.2,120H40.37A88.2,88.2,0,0,1,105.32,43ZM40.37,136H80.2c1.41,28.46,10.27,55.47,25.12,77A88.2,88.2,0,0,1,40.37,136Zm110.31,77c14.85-21.56,23.71-48.57,25.12-77h39.83A88.2,88.2,0,0,1,150.68,213Z\"})});}function S({type:e,color:t,image:l,size:r}){return\"custom\"===e&&l?/*#__PURE__*/o(\"img\",{...l,width:r,height:r}):/*#__PURE__*/o(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 12 12\",width:r,height:r,children:/*#__PURE__*/o(\"path\",{d:\"M 2 4.5 L 6 8.5 L 10 4.5\",fill:\"none\",stroke:t,strokeWidth:1.5,strokeLinecap:\"round\",strokeLinejoin:\"round\"})});}!function(e){e.Default=\"default\",e.Custom=\"custom\";}(e||(e={})),function(t){t.Default=\"default\",t.Custom=\"custom\";}(t||(t={}));/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any\n * @framerDisableUnlink\n * @framerIntrinsicWidth 120\n * @framerIntrinsicHeight 34\n */let T=n(({font:e,fillColor:t,textColor:r,icon:i,caret:n,options:{title:p,gap:m,border:v,hover:y,focus:w},style:x,...T})=>{var V,k;let $=s(),{activeLocale:F,locales:N,setLocale:O}=a(),Z=null!==(V=null==F?void 0:F.id)&&void 0!==V?V:\"default\",L=u(Z),[z,A]=d(Z),B=N.find(e=>e.id===z);return L.current!==Z&&(L.current=Z,z!==Z&&A(Z)),/*#__PURE__*/l(\"div\",{className:C,style:x,children:[/*#__PURE__*/o(\"label\",{htmlFor:$,children:\"Select Language\"}),/*#__PURE__*/o(\"select\",{id:$,value:z,onChange:function(e){let t=e.target.value;A(t);let o=N.find(e=>e.id===t);O(o);},children:N.map(e=>/*#__PURE__*/o(\"option\",{value:e.id,children:e.name},e.id))}),/*#__PURE__*/l(\"div\",{className:\"input\",style:{...e,\"--framer-background-color\":t,\"--framer-color\":r,...g(T),...b(T),...c(v),...h(y),...f(w),gap:m},children:[i&&/*#__PURE__*/o(\"div\",{className:\"icon\",children:/*#__PURE__*/o(j,{...i})}),p&&/*#__PURE__*/o(\"div\",{className:\"title\",children:null!==(k=null==B?void 0:B.name)&&void 0!==k?k:\"English\"}),n&&/*#__PURE__*/o(\"div\",{className:\"caret\",children:/*#__PURE__*/o(S,{...n})})]})]});},[`\n            .${C} {\n                position: relative;\n            }\n        `,`\n            .${C} label {\n                position: absolute;\n                width: 1px;\n                height: 1px;\n                margin: -1px;\n                overflow: hidden;\n                white-space: nowrap;\n                clip: rect(0 0 0 0);\n                clip-path: inset(50%);\n            }\n        `,`\n            .${C} select {\n                appearance: none;\n                position: absolute;\n                opacity: 0;\n                top: 0;\n                right: 0;\n                bottom: 0;\n                left: 0;\n                cursor: inherit;\n                width: 100%;\n            }\n        `,`\n            .${C} .input {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                height: 100%;\n                pointer-events: none;\n                overflow: hidden;\n                background-color: var(--framer-background-color);\n                color: var(--framer-color);\n                border-color: var(--framer-border-color);\n            }\n        `,`\n            .${C} select:focus-visible + .input  {\n                outline: var(--framer-focus-outline, none);\n                outline-offset: var(--framer-focus-outline-offset);\n            }\n        `,`\n            .${C}:hover .input {\n                background-color: var(--framer-hover-background-color, var(--framer-background-color));\n                color: var(--framer-hover-color, var(--framer-color));\n                border-color: var(--framer-hover-border-color, var(--framer-border-color));\n            }\n        `,`\n            .${C} .title {\n                flex: 1 1 auto;\n                white-space: nowrap;\n                text-overflow: ellipsis;\n                overflow: hidden;\n            }\n        `,`\n            .${C} .icon, .${C} .caret {\n                display: flex;\n                align-items: center;\n            }\n        `]);T.displayName=\"Locale Selector\",r(T,{font:{// @ts-ignore\ntype:i.Font,controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:\"1.5em\"}},fillColor:{type:i.Color,title:\"Fill\",optional:!0,defaultValue:\"#eee\"},textColor:{type:i.Color,title:\"Text\",defaultValue:\"#000\"},...y,...w,icon:{type:i.Object,buttonTitle:\"Size, Color\",optional:!0,controls:{type:{type:i.Enum,title:\"Icon\",options:Object.values(e),optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:!0,defaultValue:\"default\"},color:{type:i.Color,displaySegmentedControl:!0,defaultValue:\"#000\",hidden:e=>\"default\"!==e.type},image:{type:i.ResponsiveImage,title:\"File\",allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:e=>\"custom\"!==e.type},size:{type:i.Number,displayStepper:!0,defaultValue:18}}},caret:{type:i.Object,buttonTitle:\"Size, Color\",optional:!0,controls:{type:{type:i.Enum,title:\"Icon\",options:Object.values(t),optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:!0,defaultValue:\"default\"},color:{type:i.Color,displaySegmentedControl:!0,defaultValue:\"#000\",hidden:e=>\"default\"!==e.type},image:{type:i.ResponsiveImage,title:\"File\",allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:e=>\"custom\"!==e.type},size:{type:i.Number,displayStepper:!0,defaultValue:12}},defaultValue:{}},options:{type:i.Object,title:\"Options\",buttonTitle:\"Border, Hover\",controls:{title:{type:i.Boolean,defaultValue:!0},gap:{type:i.Number,displayStepper:!0,defaultValue:5},border:{type:i.Object,buttonTitle:\"Color, Width\",optional:!0,controls:p},hover:{type:i.Object,buttonTitle:\"Fill, Border\",optional:!0,controls:v},focus:{type:i.Object,buttonTitle:\"Color, Width\",controls:m}}}});export default T;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"LocaleSelector\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicHeight\":\"34\",\"framerDisableUnlink\":\"* @framerIntrinsicWidth 120\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LocaleSelector.map", "import{ControlType}from\"framer\";export function getBorderStyle({color,width=0,widthPerSide=false,widthTop=0,widthRight=0,widthBottom=0,widthLeft=0,style=\"none\"}={}){const result={};if(color){result[\"--framer-border-color\"]=color;result.borderStyle=style;if(widthPerSide){result.borderTopWidth=widthTop;result.borderRightWidth=widthRight;result.borderBottomWidth=widthBottom;result.borderLeftWidth=widthLeft;}else{result.borderTopWidth=width;result.borderRightWidth=width;result.borderBottomWidth=width;result.borderLeftWidth=width;}}else{result.border=\"none\";}return result;}export const borderControls={color:{type:ControlType.Color,defaultValue:\"#444\"},width:{type:ControlType.FusedNumber,toggleKey:\"widthPerSide\",toggleTitles:[\"Width\",\"Width per side\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],defaultValue:1,min:0},style:{type:ControlType.Enum,options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"double\"],defaultValue:\"solid\"}};\nexport const __FramerMetadata__ = {\"exports\":{\"BorderOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"borderControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBorderStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./border.map", "import{ControlType}from\"framer\";export function getFocusStyle({color,width,style,offset}={}){const result={};if(color){result[\"--framer-focus-outline\"]=`${width}px ${style} ${color}`;result[\"--framer-focus-outline-offset\"]=`${offset}px`;}return result;}export const focusControls={color:{type:ControlType.Color,defaultValue:\"#09f\"},width:{type:ControlType.Number,displayStepper:true,defaultValue:1,min:0},style:{type:ControlType.Enum,options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"double\"],defaultValue:\"solid\"},offset:{type:ControlType.Number,displayStepper:true}};\nexport const __FramerMetadata__ = {\"exports\":{\"focusControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFocusStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"FocusOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./focus.map", "import{ControlType}from\"framer\";export function getHoverStyle({fillColor,textColor,borderColor}={}){return{\"--framer-hover-background-color\":fillColor,\"--framer-hover-color\":textColor,\"--framer-hover-border-color\":borderColor};}export const hoverControls={fillColor:{type:ControlType.Color,title:\"Fill\",optional:true},textColor:{type:ControlType.Color,title:\"Text\",optional:true},borderColor:{type:ControlType.Color,title:\"Border\",optional:true}};\nexport const __FramerMetadata__ = {\"exports\":{\"HoverOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getHoverStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"hoverControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hover.map", "import{ControlType}from\"framer\";export function getPaddingStyle({padding=0,paddingPerSide=false,paddingTop=0,paddingRight=0,paddingBottom=0,paddingLeft=0}={}){if(paddingPerSide){return{paddingTop:paddingTop,paddingRight:paddingRight,paddingBottom:paddingBottom,paddingLeft:paddingLeft};}else{return{paddingTop:padding,paddingRight:padding,paddingBottom:padding,paddingLeft:padding};}}export const paddingControls={padding:{type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],defaultValue:10,min:0}};\nexport const __FramerMetadata__ = {\"exports\":{\"getPaddingStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./padding.map", "import{ControlType}from\"framer\";export function getRadiusStyle({radius=0,radiusPerCorner=false,radiusTopLeft=0,radiusTopRight=0,radiusBottomRight=0,radiusBottomLeft=0}={}){const result={};if(radiusPerCorner){result.borderTopLeftRadius=radiusTopLeft;result.borderTopRightRadius=radiusTopRight;result.borderBottomRightRadius=radiusBottomRight;result.borderBottomLeftRadius=radiusBottomLeft;}else{result.borderTopLeftRadius=radius;result.borderTopRightRadius=radius;result.borderBottomRightRadius=radius;result.borderBottomLeftRadius=radius;}return result;}export const radiusControls={radius:{type:ControlType.FusedNumber,toggleKey:\"radiusPerConrner\",toggleTitles:[\"Radius\",\"Radius per side\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\",],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],defaultValue:10,min:0}};\nexport const __FramerMetadata__ = {\"exports\":{\"getRadiusStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"radiusControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./radius.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Source Sans 3-700\",\"GF;Source Sans 3-900\",\"GF;Source Sans 3-900italic\",\"GF;Source Sans 3-700italic\"]);export const fonts=[{family:\"Source Sans 3\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxf7FEI_io6npfB.woff2\",weight:\"700\"},{family:\"Source Sans 3\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KwR7FEI_io6npfB.woff2\",weight:\"900\"},{family:\"Source Sans 3\",style:\"italic\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqBBJ9CsYm4fB3Ts.woff2\",weight:\"900\"},{family:\"Source Sans 3\",style:\"italic\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqF5J9CsYm4fB3Ts.woff2\",weight:\"700\"}];export const css=['.framer-6mg3L .framer-styles-preset-10ex2zj:not(.rich-text-wrapper), .framer-6mg3L .framer-styles-preset-10ex2zj.rich-text-wrapper p { --framer-font-family: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-family-bold: \"Source Sans 3\", sans-serif; --framer-font-family-bold-italic: \"Source Sans 3\", sans-serif; --framer-font-family-italic: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, #01061d); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-6mg3L\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Source Sans 3-600\",\"GF;Source Sans 3-900\",\"GF;Source Sans 3-900italic\",\"GF;Source Sans 3-600italic\"]);export const fonts=[{family:\"Source Sans 3\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxm7FEI_io6npfB.woff2\",weight:\"600\"},{family:\"Source Sans 3\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KwR7FEI_io6npfB.woff2\",weight:\"900\"},{family:\"Source Sans 3\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqBBJ9CsYm4fB3Ts.woff2\",weight:\"900\"},{family:\"Source Sans 3\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqGdJ9CsYm4fB3Ts.woff2\",weight:\"600\"}];export const css=['.framer-jyTxh .framer-styles-preset-1a3vt2p:not(.rich-text-wrapper), .framer-jyTxh .framer-styles-preset-1a3vt2p.rich-text-wrapper h2 { --framer-font-family: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-family-bold: \"Source Sans 3\", sans-serif; --framer-font-family-bold-italic: \"Source Sans 3\", sans-serif; --framer-font-family-italic: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-size: 46px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, #01061d); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-jyTxh .framer-styles-preset-1a3vt2p:not(.rich-text-wrapper), .framer-jyTxh .framer-styles-preset-1a3vt2p.rich-text-wrapper h2 { --framer-font-family: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-family-bold: \"Source Sans 3\", sans-serif; --framer-font-family-bold-italic: \"Source Sans 3\", sans-serif; --framer-font-family-italic: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, #01061d); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-jyTxh .framer-styles-preset-1a3vt2p:not(.rich-text-wrapper), .framer-jyTxh .framer-styles-preset-1a3vt2p.rich-text-wrapper h2 { --framer-font-family: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-family-bold: \"Source Sans 3\", sans-serif; --framer-font-family-bold-italic: \"Source Sans 3\", sans-serif; --framer-font-family-italic: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, #01061d); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-jyTxh\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[];export const css=['.framer-PfrHf .framer-styles-preset-1qnzp4w:not(.rich-text-wrapper), .framer-PfrHf .framer-styles-preset-1qnzp4w.rich-text-wrapper a { --framer-link-current-text-color: var(--token-2d962d3a-a3a0-42a8-a140-53cbf150e4e2, #e94082) /* {\"name\":\"Pink\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-29abdb2d-d693-4979-a00c-63889e56622b, #ffd700) /* {\"name\":\"Yellow 500\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, #01061d); --framer-link-text-decoration: none; }'];export const className=\"framer-PfrHf\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2a8efd8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Image,Link,RichText,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Mailchimp from\"https://framerusercontent.com/modules/0ZSF8VJcL5AhXebKiUw3/nbsZGufHZBGrLw7CNirb/Mailchimp.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/lL4LYjzLFCJpX97IpkgO/XWPse2EduCFwxQkoZScl/E7jYo9Lya.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/oKAus99hpeKFOE4FyD7S/tWsEbBejhZUTS7E6G4or/ec1ob0esf.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/q7XG5Nlbf8c9FgrtJ9e5/ottsAqOJad8FVuVEHnI8/eKbEoLGIM.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/65WbMb05rVsD237vPxUX/CzOJGPaKbg2bor1BEA0r/MJ2kLlsLQ.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/VPyxbiwo89woBZOYl0E9/2nKAG9H2HhalHLawxyjD/UQNlvfeto.js\";import*as localizedValues from\"./STYvFPvWw-0.js\";const MailchimpFonts=getFonts(Mailchimp);const cycleOrder=[\"qDdm_Hq_n\",\"RJHLVwn4m\",\"OZzDzoXEX\"];const serializationHash=\"framer-YODuo\";const variantClassNames={OZzDzoXEX:\"framer-v-16s35cs\",qDdm_Hq_n:\"framer-v-7swm34\",RJHLVwn4m:\"framer-v-1j208u7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const valuesByLocaleId={ddvCJkPvt:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"qDdm_Hq_n\",Mobile:\"OZzDzoXEX\",Tablet:\"RJHLVwn4m\"};const getProps=({background,height,id,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,Iyw8vMYJ2:(_ref=background!==null&&background!==void 0?background:props.Iyw8vMYJ2)!==null&&_ref!==void 0?_ref:\"var(--token-c80ecc69-6209-4f3f-aaeb-aa8735c30f48, rgb(255, 255, 255))\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"qDdm_Hq_n\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Iyw8vMYJ2,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"qDdm_Hq_n\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-7swm34\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"qDdm_Hq_n\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:Iyw8vMYJ2,...style},...addPropertyOverrides({OZzDzoXEX:{\"data-framer-name\":\"Mobile\"},RJHLVwn4m:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pkrj9o\",\"data-framer-name\":\"CTA\",layoutDependency:layoutDependency,layoutId:\"Fpqr1uaoi\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1obi3o8\",\"data-framer-name\":\"Frame 12\",layoutDependency:layoutDependency,layoutId:\"bXygbuO1H\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k4l4hf\",\"data-framer-name\":\"Frame 19\",layoutDependency:layoutDependency,layoutId:\"ms2n6cGJd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l4bgpe\",layoutDependency:layoutDependency,layoutId:\"JFwrdqg2q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1a3vt2p\",\"data-styles-preset\":\"MJ2kLlsLQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Join the community of\"})}),className:\"framer-1at6qm\",\"data-framer-name\":\"Heading\",layoutDependency:layoutDependency,layoutId:\"c3bL4JRqg\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({OZzDzoXEX:{children:(_getLocalizedValue1=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1a3vt2p\",\"data-styles-preset\":\"MJ2kLlsLQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Join the community of\"})})},RJHLVwn4m:{children:(_getLocalizedValue2=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1a3vt2p\",\"data-styles-preset\":\"MJ2kLlsLQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Join the community of\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ggfs8o\",layoutDependency:layoutDependency,layoutId:\"Mbww4BIy0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1a3vt2p\",\"data-styles-preset\":\"MJ2kLlsLQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"change\"})}),className:\"framer-ekjtmk\",\"data-framer-name\":\"Heading\",layoutDependency:layoutDependency,layoutId:\"CfKl7zfdM\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({OZzDzoXEX:{children:(_getLocalizedValue4=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1a3vt2p\",\"data-styles-preset\":\"MJ2kLlsLQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"change\"})})},RJHLVwn4m:{children:(_getLocalizedValue5=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1a3vt2p\",\"data-styles-preset\":\"MJ2kLlsLQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"change\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1and6h4\",\"data-framer-name\":\"Scribble\",layoutDependency:layoutDependency,layoutId:\"CJZhUEbzk\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-131535a\",\"data-framer-name\":\"Vector 18\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:322,layoutDependency:layoutDependency,layoutId:\"ElTdFZyBV\",svg:'<svg width=\"322\" height=\"23\" viewBox=\"-2 -2 322 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.25293 16.3416C0.647346 19.4969 29.3466 9.06625 31.985 8.55989C42.5024 6.5414 53.2983 5.09269 62.6796 10.7215C75.9815 18.7026 92.3366 18.2394 106.69 14.18C119.741 10.4887 131.273 5.97592 144.993 6.22537C150.138 6.31892 153.326 8.37475 157.617 10.8944C164.181 14.7497 170.303 17.7397 178.022 18.5032C194.048 20.0882 207.879 15.3487 222.81 10.4621C233.205 7.06018 246.835 6.75247 257.655 7.95464C265.604 8.83784 273.264 10.8128 281.346 10.8944C295.505 11.0374 305.457 6.58397 317.747 0\" stroke=\"#FFD700\" stroke-width=\"3\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue6=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1cogha5\",\"data-styles-preset\":\"eKbEoLGIM\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get notified about our upcoming events\"})}),className:\"framer-5t6xns\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"SCfMgy_Z_\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({OZzDzoXEX:{children:(_getLocalizedValue7=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1cogha5\",\"data-styles-preset\":\"eKbEoLGIM\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get notified about our upcoming events\"})})},RJHLVwn4m:{children:(_getLocalizedValue8=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1cogha5\",\"data-styles-preset\":\"eKbEoLGIM\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get notified about our upcoming events\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3qqeww\",\"data-framer-name\":\"Signup\",layoutDependency:layoutDependency,layoutId:\"Xy__ZRuZ_\",style:{backgroundColor:\"rgb(247, 247, 251)\",borderBottomLeftRadius:47,borderBottomRightRadius:47,borderTopLeftRadius:47,borderTopRightRadius:47},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xtjhn5-container\",layoutDependency:layoutDependency,layoutId:\"Th7yR7K_5-container\",children:/*#__PURE__*/_jsx(Mailchimp,{borderRadius:45,bottomLeftRadius:45,bottomRightRadius:45,button:{color:\"rgb(255, 255, 255)\",fill:\"rgb(0, 0, 0)\",fontWeight:600,label:\"Sign Up\"},font:true,fontFamily:\"Source Sans\",fontSize:16,fontWeight:400,gap:15,height:\"100%\",id:\"Th7yR7K_5\",input:{color:\"rgb(0, 0, 0)\",error:\"rgb(238, 68, 68)\",fill:\"rgb(235, 235, 235)\",placeholder:\"Your email\",placeholderColor:\"rgba(0, 0, 0, 0.3)\",value:\"\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"Th7yR7K_5\",padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,style:{width:\"100%\"},topLeftRadius:45,topRightRadius:45,url:\"https://eyppoland.us22.list-manage.com/subscribe/post?u=bc33d348fc7735f91d0106b49&amp;id=5f9bee9e7a&amp;f_id=0084c3e1f0\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1actxws\",\"data-framer-name\":\"Frame 17\",layoutDependency:layoutDependency,layoutId:\"SNv5Fj7_R\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xuvigx\",layoutDependency:layoutDependency,layoutId:\"f0gR0j1IM\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13ihxef\",\"data-framer-name\":\"Frame 15\",layoutDependency:layoutDependency,layoutId:\"tqFlJeij5\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/TjvrN8LTdXVE8peqX4IGVRRfo.jpg\"},className:\"framer-wyv5yl\",\"data-framer-name\":\"Ellipse 5\",layoutDependency:layoutDependency,layoutId:\"Z2DwGg8qA\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/thC3KRFewgtkI6mWCFFFjstXYnM.jpg\"},className:\"framer-1ftwbri\",\"data-framer-name\":\"Ellipse 6\",layoutDependency:layoutDependency,layoutId:\"I9Hin9pxo\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/a0KEo4lG6sE88xJ84bB7QwqrD4.jpg\"},className:\"framer-qp9ez8\",\"data-framer-name\":\"Ellipse 7\",layoutDependency:layoutDependency,layoutId:\"F9zXa6j3w\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/qYP5PULFP3jR2ED6sSqz2hteJGM.jpg\"},className:\"framer-4sdnz7\",\"data-framer-name\":\"Ellipse 8\",layoutDependency:layoutDependency,layoutId:\"a_OZ7XJMD\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/XMI36fFaUWULBfBwWnwLfw0ude0.jpg\"},className:\"framer-195jdft\",\"data-framer-name\":\"Ellipse 9\",layoutDependency:layoutDependency,layoutId:\"sw8TvkFmf\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/iIbJ68jmCSKXWPRYYjhwtcXNvk.jpg\"},className:\"framer-69z6d4\",\"data-framer-name\":\"Ellipse 10\",layoutDependency:layoutDependency,layoutId:\"rbd7qf7zU\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/Vai0wg1VnUklWo8zN4QxFwnF4.jpg\"},className:\"framer-13xgwr9\",\"data-framer-name\":\"Ellipse 11\",layoutDependency:layoutDependency,layoutId:\"SE2ydiG9D\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/4518ZmHAhNeYRmzfzuzIFQVY0w.jpg\"},className:\"framer-7b1aiy\",\"data-framer-name\":\"Ellipse 14\",layoutDependency:layoutDependency,layoutId:\"dwVZnSt9e\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/FJ2TzlT3BsyHArPwa9qQoLZj0.jpg\"},className:\"framer-6qqy3h\",\"data-framer-name\":\"Ellipse 15\",layoutDependency:layoutDependency,layoutId:\"q6UFjm0tk\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/2iWNgiz3zEGEHfvxI9GtbHeUAA.jpg\"},className:\"framer-1x44dnc\",\"data-framer-name\":\"Ellipse 16\",layoutDependency:layoutDependency,layoutId:\"PsEdn2_4g\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o0cur7\",\"data-framer-name\":\"Frame 16\",layoutDependency:layoutDependency,layoutId:\"Y2O1Pxvyl\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/fFxqqmIqrclpMIHQXSMLcCeowRE.jpg\"},className:\"framer-3rso6g\",\"data-framer-name\":\"Ellipse 5\",layoutDependency:layoutDependency,layoutId:\"rBtE0RIk0\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/1CCnyf9ZoAEVA6vyhtaEQzEY4U.jpg\"},className:\"framer-8rtw0q\",\"data-framer-name\":\"Ellipse 6\",layoutDependency:layoutDependency,layoutId:\"HUN7jOT_e\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/Ry65VDXgd1Q5hruxgIgGnKqjH8.jpg\"},className:\"framer-98ffr8\",\"data-framer-name\":\"Ellipse 7\",layoutDependency:layoutDependency,layoutId:\"FfXxMjP_K\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/A5EzPN85pVlkOYnaydzyZYwQU.jpg\"},className:\"framer-17lz33h\",\"data-framer-name\":\"Ellipse 8\",layoutDependency:layoutDependency,layoutId:\"CQhPDgqjo\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/p06wenQ4WW1MUDnAwdV6kcIJdg.jpg\"},className:\"framer-1agyzz7\",\"data-framer-name\":\"Ellipse 11\",layoutDependency:layoutDependency,layoutId:\"h8UwepW4s\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/0h8CkkryiSoyoerJBP4SDwqoWM.jpg\"},className:\"framer-abtbz8\",\"data-framer-name\":\"Ellipse 12\",layoutDependency:layoutDependency,layoutId:\"tTXWPbqLv\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/wFMKSHVd6sNKPt6jmuPrDbtD8.jpg\"},className:\"framer-hobupv\",\"data-framer-name\":\"Ellipse 14\",layoutDependency:layoutDependency,layoutId:\"EQr06i9Kw\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/FE6Sdrwudl6TbozWRClYW4ACzk.jpg\"},className:\"framer-29hy6t\",\"data-framer-name\":\"Ellipse 15\",layoutDependency:layoutDependency,layoutId:\"Us6UDKEfP\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/Eh5qmR8rh40IGopQfVwvzl9wNjg.jpg\"},className:\"framer-d7nsec\",\"data-framer-name\":\"Ellipse 16\",layoutDependency:layoutDependency,layoutId:\"oyBguudRH\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rvrtov\",\"data-framer-name\":\"Frame 17\",layoutDependency:layoutDependency,layoutId:\"NsIWmzh2m\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/sUQ2317V7nSR5sgZoNvpGbpto.jpg\"},className:\"framer-vcl01m\",\"data-framer-name\":\"Ellipse 5\",layoutDependency:layoutDependency,layoutId:\"h8OF4I4Ms\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/cFmUmvdgpRNJAcIwvmuqZhKUE.jpg\"},className:\"framer-1q8knwv\",\"data-framer-name\":\"Ellipse 6\",layoutDependency:layoutDependency,layoutId:\"T0kefR47z\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/Owb010zyDyAuddmfpqcp8sNLj4.jpg\"},className:\"framer-1j3aaj8\",\"data-framer-name\":\"Ellipse 7\",layoutDependency:layoutDependency,layoutId:\"Apnbub0fB\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/wpcbOZZWdWgNKL1X0DApQHqg9k.jpg\"},className:\"framer-16gv2s4\",\"data-framer-name\":\"Ellipse 8\",layoutDependency:layoutDependency,layoutId:\"tPIfxRNpN\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/768ZCpXdfCtpQsaJ7lLXe3csIw.jpg\"},className:\"framer-p0sn6v\",\"data-framer-name\":\"Ellipse 9\",layoutDependency:layoutDependency,layoutId:\"bM27GM56r\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/iEh3pRYGKKCPOiSYlWTJ7dXo4.jpg\"},className:\"framer-5lpa2u\",\"data-framer-name\":\"Ellipse 10\",layoutDependency:layoutDependency,layoutId:\"NcCpclCxL\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/vrQdsVxbnIIxqpVCDx1fehFpBI.jpg\"},className:\"framer-nmanrq\",\"data-framer-name\":\"Ellipse 13\",layoutDependency:layoutDependency,layoutId:\"oaIqa3rdl\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/6qD8GDrlQOR95udwhLdUoBIOCw.jpg\"},className:\"framer-17h0fmz\",\"data-framer-name\":\"Ellipse 14\",layoutDependency:layoutDependency,layoutId:\"Wa65bzXwM\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/yQpigNwyGaXSsiV0agP6iYmrtI.jpg\"},className:\"framer-m9to8t\",\"data-framer-name\":\"Ellipse 15\",layoutDependency:layoutDependency,layoutId:\"TUs5huLwt\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/XlN6pwUGcww4H9ZfwnUw4lS6I3Q.jpg\"},className:\"framer-13tue81\",\"data-framer-name\":\"Ellipse 16\",layoutDependency:layoutDependency,layoutId:\"t6ifUVS7w\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v7ibnm\",\"data-framer-name\":\"Frame 18\",layoutDependency:layoutDependency,layoutId:\"cA4ZCUXDY\",style:{background:\"linear-gradient(180deg, rgba(255, 252, 255, 0) 0%, rgba(255, 252, 255, 1) 100%)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kvqqej\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"sxJzKaSKK\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nx6gx6\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"PK5gLL6oe\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:150,intrinsicWidth:992,pixelHeight:300,pixelWidth:1984,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/eJdnNxnkUEVKTveWk39jo2eRhbM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/eJdnNxnkUEVKTveWk39jo2eRhbM.png?scale-down-to=512 512w, https://framerusercontent.com/images/eJdnNxnkUEVKTveWk39jo2eRhbM.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/eJdnNxnkUEVKTveWk39jo2eRhbM.png 1984w\"},className:\"framer-mvoaqd\",\"data-framer-name\":\"$20150717_JP_Poland_4C_noBG_wide\",layoutDependency:layoutDependency,layoutId:\"YCw0d2_fw\",...addPropertyOverrides({OZzDzoXEX:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:150,intrinsicWidth:992,pixelHeight:300,pixelWidth:1984,positionX:\"center\",positionY:\"center\",sizes:\"calc(min(min(390px, 100vw), min(390px, 100vw) * 10) - 40px)\",src:\"https://framerusercontent.com/images/eJdnNxnkUEVKTveWk39jo2eRhbM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/eJdnNxnkUEVKTveWk39jo2eRhbM.png?scale-down-to=512 512w, https://framerusercontent.com/images/eJdnNxnkUEVKTveWk39jo2eRhbM.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/eJdnNxnkUEVKTveWk39jo2eRhbM.png 1984w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hwruom\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"jz1qalzLD\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioj88o\",\"data-styles-preset\":\"ec1ob0esf\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Q0vJ8OtY6\",webPageId:\"KG3NfATEo\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qnzp4w\",\"data-styles-preset\":\"UQNlvfeto\",children:\"Donate\"})})})}),className:\"framer-1xchk05\",\"data-framer-name\":\"Donate\",layoutDependency:layoutDependency,layoutId:\"A7j5mG38N\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ioj88o\",\"data-styles-preset\":\"ec1ob0esf\",children:/*#__PURE__*/_jsx(Link,{href:\"https://members.eyp.org/auth/sign_in\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qnzp4w\",\"data-styles-preset\":\"UQNlvfeto\",children:\"Members Platform\"})})})}),className:\"framer-1nwlswo\",\"data-framer-name\":\"Link Two\",layoutDependency:layoutDependency,layoutId:\"ubdGx5O_Z\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dq2ryf\",\"data-framer-name\":\"Social Links\",layoutDependency:layoutDependency,layoutId:\"ADHEDwLHP\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/EYPPoland\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-11bcm6r framer-eqgbq9\",\"data-framer-name\":\"Icon / Facebook\",layoutDependency:layoutDependency,layoutId:\"oRGz8eSeE\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-y4qc1f\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I4210:13885;122:847\",svg:'<svg width=\"20\" height=\"21\" viewBox=\"0 0 20 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20 10.7598C20 5.20324 15.5229 0.69873 10 0.69873C4.47715 0.69873 0 5.20324 0 10.7598C0 15.7815 3.65684 19.9439 8.4375 20.6987V13.6681H5.89844V10.7598H8.4375V8.54325C8.4375 6.02169 9.9305 4.62885 12.2146 4.62885C13.3088 4.62885 14.4531 4.82536 14.4531 4.82536V7.30134H13.1922C11.95 7.30134 11.5625 8.07695 11.5625 8.87263V10.7598H14.3359L13.8926 13.6681H11.5625V20.6987C16.3432 19.9439 20 15.7817 20 10.7598Z\" fill=\"#02061D\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/eyppoland/\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ipmnkx framer-eqgbq9\",\"data-framer-name\":\"Icon / Instagram\",layoutDependency:layoutDependency,layoutId:\"BZgtfxfXv\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ti305h\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"I4210:13886;122:848\",svg:'<svg width=\"18\" height=\"19\" viewBox=\"0 0 18 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13 0.69873H5C2.23858 0.69873 0 2.93731 0 5.69873V13.6987C0 16.4601 2.23858 18.6987 5 18.6987H13C15.7614 18.6987 18 16.4601 18 13.6987V5.69873C18 2.93731 15.7614 0.69873 13 0.69873ZM16.25 13.6987C16.2445 15.4913 14.7926 16.9432 13 16.9487H5C3.20735 16.9432 1.75549 15.4913 1.75 13.6987V5.69873C1.75549 3.90608 3.20735 2.45422 5 2.44873H13C14.7926 2.45422 16.2445 3.90608 16.25 5.69873V13.6987ZM13.75 5.94873C14.3023 5.94873 14.75 5.50101 14.75 4.94873C14.75 4.39645 14.3023 3.94873 13.75 3.94873C13.1977 3.94873 12.75 4.39645 12.75 4.94873C12.75 5.50101 13.1977 5.94873 13.75 5.94873ZM9 5.19873C6.51472 5.19873 4.5 7.21345 4.5 9.69873C4.5 12.184 6.51472 14.1987 9 14.1987C11.4853 14.1987 13.5 12.184 13.5 9.69873C13.5027 8.50443 13.0294 7.3583 12.1849 6.51381C11.3404 5.66932 10.1943 5.19607 9 5.19873ZM6.25 9.69873C6.25 11.2175 7.4812 12.4487 9 12.4487C10.5188 12.4487 11.75 11.2175 11.75 9.69873C11.75 8.17993 10.5188 6.94873 9 6.94873C7.4812 6.94873 6.25 8.17993 6.25 9.69873Z\" fill=\"#02061D\"/>\\n</svg>\\n',withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-621xzn\",\"data-framer-name\":\"Credits\",layoutDependency:layoutDependency,layoutId:\"xsAcVynR8\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1saidce\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"u7uxmQh6i\",style:{backgroundColor:\"rgb(1, 6, 29)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6ing3q\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"nAEccrKNT\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10ex2zj\",\"data-styles-preset\":\"E7jYo9Lya\",children:\"\\xa9 2023 EYP Poland\"})}),className:\"framer-14zn0wp\",\"data-framer-name\":\"\\xa9 2023 Relume. All rights reserved.\",layoutDependency:layoutDependency,layoutId:\"WnxsXf3J_\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10ex2zj\",\"data-styles-preset\":\"E7jYo9Lya\",children:/*#__PURE__*/_jsx(Link,{href:\"https://commission.europa.eu/law/law-topic/data-protection/data-protection-eu_en\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qnzp4w\",\"data-styles-preset\":\"UQNlvfeto\",children:\"Privacy Policy\"})})})}),className:\"framer-1lz7hd3\",\"data-framer-name\":\"Privacy Policy\",layoutDependency:layoutDependency,layoutId:\"MrvIGfJqI\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10ex2zj\",\"data-styles-preset\":\"E7jYo9Lya\",children:/*#__PURE__*/_jsx(Link,{href:\"filus.co\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qnzp4w\",\"data-styles-preset\":\"UQNlvfeto\",children:\"design // Marty Filus\"})})})}),className:\"framer-j1nq41\",\"data-framer-name\":\"Design\",layoutDependency:layoutDependency,layoutId:\"aQZZsbR_m\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})})});});const css=['.framer-YODuo[data-border=\"true\"]::after, .framer-YODuo [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YODuo.framer-eqgbq9, .framer-YODuo .framer-eqgbq9 { display: block; }\",\".framer-YODuo.framer-7swm34 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 90px; height: min-content; justify-content: flex-start; overflow: visible; padding: 75px 0px 36px 0px; position: relative; width: 1200px; }\",\".framer-YODuo .framer-1pkrj9o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-YODuo .framer-1obi3o8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 43px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-YODuo .framer-1k4l4hf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-YODuo .framer-l4bgpe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-YODuo .framer-1at6qm { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-YODuo .framer-ggfs8o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-YODuo .framer-ekjtmk { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 2; }\",\".framer-YODuo .framer-1and6h4 { align-content: center; align-items: center; aspect-ratio: 14 / 1; bottom: -4px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 13px); justify-content: center; left: -16px; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; right: -17px; z-index: 1; }\",\".framer-YODuo .framer-131535a { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-YODuo .framer-5t6xns { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-YODuo .framer-3qqeww { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 5px 5px 5px 5px; position: relative; width: 440px; }\",\".framer-YODuo .framer-xtjhn5-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-YODuo .framer-1actxws { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-YODuo .framer-1xuvigx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 274px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1002px; }\",\".framer-YODuo .framer-13ihxef, .framer-YODuo .framer-1o0cur7, .framer-YODuo .framer-1rvrtov { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 7px 0px 7px; position: relative; width: min-content; }\",\".framer-YODuo .framer-wyv5yl, .framer-YODuo .framer-1ftwbri, .framer-YODuo .framer-qp9ez8, .framer-YODuo .framer-4sdnz7, .framer-YODuo .framer-195jdft, .framer-YODuo .framer-69z6d4, .framer-YODuo .framer-13xgwr9, .framer-YODuo .framer-7b1aiy, .framer-YODuo .framer-6qqy3h, .framer-YODuo .framer-1x44dnc, .framer-YODuo .framer-3rso6g, .framer-YODuo .framer-8rtw0q, .framer-YODuo .framer-98ffr8, .framer-YODuo .framer-17lz33h, .framer-YODuo .framer-1agyzz7, .framer-YODuo .framer-abtbz8, .framer-YODuo .framer-hobupv, .framer-YODuo .framer-29hy6t, .framer-YODuo .framer-d7nsec, .framer-YODuo .framer-vcl01m, .framer-YODuo .framer-1q8knwv, .framer-YODuo .framer-1j3aaj8, .framer-YODuo .framer-16gv2s4, .framer-YODuo .framer-p0sn6v, .framer-YODuo .framer-5lpa2u, .framer-YODuo .framer-nmanrq, .framer-YODuo .framer-17h0fmz, .framer-YODuo .framer-m9to8t, .framer-YODuo .framer-13tue81 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 78px); position: relative; width: 78px; }\",\".framer-YODuo .framer-1v7ibnm { bottom: 0px; flex: none; height: 357px; left: 0px; overflow: hidden; position: absolute; right: 0px; z-index: 1; }\",\".framer-YODuo .framer-kvqqej { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1000%; overflow: hidden; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-YODuo .framer-nx6gx6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-YODuo .framer-mvoaqd { flex: 1 0 0px; height: 25px; overflow: visible; position: relative; width: 1px; }\",\".framer-YODuo .framer-hwruom { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-YODuo .framer-1xchk05, .framer-YODuo .framer-1nwlswo, .framer-YODuo .framer-14zn0wp, .framer-YODuo .framer-1lz7hd3, .framer-YODuo .framer-j1nq41 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-YODuo .framer-1dq2ryf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-YODuo .framer-11bcm6r, .framer-YODuo .framer-1ipmnkx { flex: none; height: 24px; overflow: hidden; position: relative; text-decoration: none; width: 24px; }\",\".framer-YODuo .framer-y4qc1f { bottom: 2px; flex: none; left: 2px; position: absolute; right: 2px; top: 2px; }\",\".framer-YODuo .framer-1ti305h { bottom: 3px; flex: none; left: 3px; position: absolute; right: 3px; top: 3px; }\",\".framer-YODuo .framer-621xzn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-YODuo .framer-1saidce { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-YODuo .framer-6ing3q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YODuo.framer-7swm34, .framer-YODuo .framer-1pkrj9o, .framer-YODuo .framer-1obi3o8, .framer-YODuo .framer-1k4l4hf, .framer-YODuo .framer-l4bgpe, .framer-YODuo .framer-ggfs8o, .framer-YODuo .framer-1and6h4, .framer-YODuo .framer-3qqeww, .framer-YODuo .framer-1actxws, .framer-YODuo .framer-1xuvigx, .framer-YODuo .framer-13ihxef, .framer-YODuo .framer-1o0cur7, .framer-YODuo .framer-1rvrtov, .framer-YODuo .framer-kvqqej, .framer-YODuo .framer-nx6gx6, .framer-YODuo .framer-hwruom, .framer-YODuo .framer-1dq2ryf, .framer-YODuo .framer-621xzn, .framer-YODuo .framer-6ing3q { gap: 0px; } .framer-YODuo.framer-7swm34 > * { margin: 0px; margin-bottom: calc(90px / 2); margin-top: calc(90px / 2); } .framer-YODuo.framer-7swm34 > :first-child, .framer-YODuo .framer-1pkrj9o > :first-child, .framer-YODuo .framer-1obi3o8 > :first-child, .framer-YODuo .framer-1k4l4hf > :first-child, .framer-YODuo .framer-1actxws > :first-child, .framer-YODuo .framer-1xuvigx > :first-child, .framer-YODuo .framer-kvqqej > :first-child, .framer-YODuo .framer-621xzn > :first-child { margin-top: 0px; } .framer-YODuo.framer-7swm34 > :last-child, .framer-YODuo .framer-1pkrj9o > :last-child, .framer-YODuo .framer-1obi3o8 > :last-child, .framer-YODuo .framer-1k4l4hf > :last-child, .framer-YODuo .framer-1actxws > :last-child, .framer-YODuo .framer-1xuvigx > :last-child, .framer-YODuo .framer-kvqqej > :last-child, .framer-YODuo .framer-621xzn > :last-child { margin-bottom: 0px; } .framer-YODuo .framer-1pkrj9o > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-YODuo .framer-1obi3o8 > * { margin: 0px; margin-bottom: calc(43px / 2); margin-top: calc(43px / 2); } .framer-YODuo .framer-1k4l4hf > *, .framer-YODuo .framer-1xuvigx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-YODuo .framer-l4bgpe > *, .framer-YODuo .framer-ggfs8o > *, .framer-YODuo .framer-1and6h4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-YODuo .framer-l4bgpe > :first-child, .framer-YODuo .framer-ggfs8o > :first-child, .framer-YODuo .framer-1and6h4 > :first-child, .framer-YODuo .framer-3qqeww > :first-child, .framer-YODuo .framer-13ihxef > :first-child, .framer-YODuo .framer-1o0cur7 > :first-child, .framer-YODuo .framer-1rvrtov > :first-child, .framer-YODuo .framer-nx6gx6 > :first-child, .framer-YODuo .framer-hwruom > :first-child, .framer-YODuo .framer-1dq2ryf > :first-child, .framer-YODuo .framer-6ing3q > :first-child { margin-left: 0px; } .framer-YODuo .framer-l4bgpe > :last-child, .framer-YODuo .framer-ggfs8o > :last-child, .framer-YODuo .framer-1and6h4 > :last-child, .framer-YODuo .framer-3qqeww > :last-child, .framer-YODuo .framer-13ihxef > :last-child, .framer-YODuo .framer-1o0cur7 > :last-child, .framer-YODuo .framer-1rvrtov > :last-child, .framer-YODuo .framer-nx6gx6 > :last-child, .framer-YODuo .framer-hwruom > :last-child, .framer-YODuo .framer-1dq2ryf > :last-child, .framer-YODuo .framer-6ing3q > :last-child { margin-right: 0px; } .framer-YODuo .framer-3qqeww > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-YODuo .framer-1actxws > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-YODuo .framer-13ihxef > *, .framer-YODuo .framer-1o0cur7 > *, .framer-YODuo .framer-1rvrtov > * { margin: 0px; margin-left: calc(23px / 2); margin-right: calc(23px / 2); } .framer-YODuo .framer-kvqqej > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-YODuo .framer-nx6gx6 > *, .framer-YODuo .framer-hwruom > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-YODuo .framer-1dq2ryf > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-YODuo .framer-621xzn > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-YODuo .framer-6ing3q > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",\".framer-YODuo.framer-v-1j208u7.framer-7swm34 { width: 810px; }\",\".framer-YODuo.framer-v-1j208u7 .framer-1xuvigx, .framer-YODuo.framer-v-16s35cs .framer-1xuvigx { height: min-content; width: 100%; }\",\".framer-YODuo.framer-v-16s35cs.framer-7swm34 { width: 390px; }\",\".framer-YODuo.framer-v-16s35cs .framer-1pkrj9o, .framer-YODuo.framer-v-16s35cs .framer-kvqqej { padding: 0px 20px 0px 20px; }\",\".framer-YODuo.framer-v-16s35cs .framer-l4bgpe { flex-direction: column; gap: 0px; }\",\".framer-YODuo.framer-v-16s35cs .framer-1at6qm { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-YODuo.framer-v-16s35cs .framer-1and6h4 { bottom: -3px; height: var(--framer-aspect-ratio-supported, 6px); left: -15px; right: -15px; }\",\".framer-YODuo.framer-v-16s35cs .framer-3qqeww { width: 100%; }\",\".framer-YODuo.framer-v-16s35cs .framer-nx6gx6 { flex-direction: column; flex-wrap: wrap; justify-content: center; }\",\".framer-YODuo.framer-v-16s35cs .framer-mvoaqd { flex: none; width: 100%; }\",\".framer-YODuo.framer-v-16s35cs .framer-1dq2ryf { flex: none; justify-content: center; width: 100%; }\",\".framer-YODuo.framer-v-16s35cs .framer-6ing3q { flex-wrap: wrap; justify-content: center; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YODuo.framer-v-16s35cs .framer-l4bgpe, .framer-YODuo.framer-v-16s35cs .framer-nx6gx6 { gap: 0px; } .framer-YODuo.framer-v-16s35cs .framer-l4bgpe > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-YODuo.framer-v-16s35cs .framer-l4bgpe > :first-child, .framer-YODuo.framer-v-16s35cs .framer-nx6gx6 > :first-child { margin-top: 0px; } .framer-YODuo.framer-v-16s35cs .framer-l4bgpe > :last-child, .framer-YODuo.framer-v-16s35cs .framer-nx6gx6 > :last-child { margin-bottom: 0px; } .framer-YODuo.framer-v-16s35cs .framer-nx6gx6 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 909\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RJHLVwn4m\":{\"layout\":[\"fixed\",\"auto\"]},\"OZzDzoXEX\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Iyw8vMYJ2\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerSTYvFPvWw=withCSS(Component,css,\"framer-YODuo\");export default FramerSTYvFPvWw;FramerSTYvFPvWw.displayName=\"Footer\";FramerSTYvFPvWw.defaultProps={height:909,width:1200};addPropertyControls(FramerSTYvFPvWw,{variant:{options:[\"qDdm_Hq_n\",\"RJHLVwn4m\",\"OZzDzoXEX\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},Iyw8vMYJ2:{defaultValue:'var(--token-c80ecc69-6209-4f3f-aaeb-aa8735c30f48, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',title:\"Background\",type:ControlType.Color}});addFonts(FramerSTYvFPvWw,[...MailchimpFonts,...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts,...sharedStyle3.fonts,...sharedStyle4.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSTYvFPvWw\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"909\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"Iyw8vMYJ2\\\":\\\"background\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RJHLVwn4m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OZzDzoXEX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./STYvFPvWw.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1a3vt2p\",\"data-styles-preset\":\"MJ2kLlsLQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Do\u0142\u0105cz do spo\u0142eczno\u015Bci\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1a3vt2p\",\"data-styles-preset\":\"MJ2kLlsLQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Do\u0142\u0105cz do spo\u0142eczno\u015Bci\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1a3vt2p\",\"data-styles-preset\":\"MJ2kLlsLQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Do\u0142\u0105cz do spo\u0142eczno\u015Bci\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1a3vt2p\",\"data-styles-preset\":\"MJ2kLlsLQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"zmiany\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1a3vt2p\",\"data-styles-preset\":\"MJ2kLlsLQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"zmiany\"})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1a3vt2p\",\"data-styles-preset\":\"MJ2kLlsLQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"zmiany\"})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1cogha5\",\"data-styles-preset\":\"eKbEoLGIM\",style:{\"--framer-text-alignment\":\"center\"},children:\"B\u0105d\u017A na bie\u017C\u0105co z nadchodz\u0105cymi wydarzeniami\"})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1cogha5\",\"data-styles-preset\":\"eKbEoLGIM\",style:{\"--framer-text-alignment\":\"center\"},children:\"B\u0105d\u017A na bie\u017C\u0105co z nadchodz\u0105cymi wydarzeniami\"})});export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1cogha5\",\"data-styles-preset\":\"eKbEoLGIM\",style:{\"--framer-text-alignment\":\"center\"},children:\"B\u0105d\u017A na bie\u017C\u0105co z nadchodz\u0105cymi wydarzeniami\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Source Sans 3-700\",\"GF;Source Sans 3-900\",\"GF;Source Sans 3-900italic\",\"GF;Source Sans 3-700italic\"]);export const fonts=[{family:\"Source Sans 3\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxf7FEI_io6npfB.woff2\",weight:\"700\"},{family:\"Source Sans 3\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KwR7FEI_io6npfB.woff2\",weight:\"900\"},{family:\"Source Sans 3\",style:\"italic\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqBBJ9CsYm4fB3Ts.woff2\",weight:\"900\"},{family:\"Source Sans 3\",style:\"italic\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqF5J9CsYm4fB3Ts.woff2\",weight:\"700\"}];export const css=['.framer-Ylm0L .framer-styles-preset-1l0roou:not(.rich-text-wrapper), .framer-Ylm0L .framer-styles-preset-1l0roou.rich-text-wrapper h1 { --framer-font-family: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-family-bold: \"Source Sans 3\", sans-serif; --framer-font-family-bold-italic: \"Source Sans 3\", sans-serif; --framer-font-family-italic: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-size: 72px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 105%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, #01061d); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-Ylm0L .framer-styles-preset-1l0roou:not(.rich-text-wrapper), .framer-Ylm0L .framer-styles-preset-1l0roou.rich-text-wrapper h1 { --framer-font-family: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-family-bold: \"Source Sans 3\", sans-serif; --framer-font-family-bold-italic: \"Source Sans 3\", sans-serif; --framer-font-family-italic: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-size: 58px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 105%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, #01061d); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-Ylm0L .framer-styles-preset-1l0roou:not(.rich-text-wrapper), .framer-Ylm0L .framer-styles-preset-1l0roou.rich-text-wrapper h1 { --framer-font-family: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-family-bold: \"Source Sans 3\", sans-serif; --framer-font-family-bold-italic: \"Source Sans 3\", sans-serif; --framer-font-family-italic: \"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif; --framer-font-size: 42px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 105%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-4a588c7c-ceb2-4b2f-8ead-e5a912ab6723, #01061d); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-Ylm0L\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["init_ssg_sandbox_shims", "placeholderUrl", "DotLottie", "props", "p", "OptimizationFriendly", "LottiePlayer", "isCanvas", "RenderTarget", "lottieInstanceRef", "pe", "shouldPlay", "src", "isReady", "setIsReady", "ye", "ue", "lastVariant", "addPropertyControls", "ControlType", "loading", "loaded", "isLoading", "setLoading", "init_ssg_sandbox_shims", "fontStore", "fonts", "css", "className", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "fontStore", "fonts", "css", "className", "init_ssg_sandbox_shims", "fontStore", "fonts", "css", "className", "init_ssg_sandbox_shims", "c9G9WR3sY_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "v18", "v19", "v2", "v20", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "init_ssg_sandbox_shims", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "v18", "v19", "v20", "__FramerMetadata__", "valuesByLocaleId", "c9G9WR3sY_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "DotLottieFonts", "getFonts", "DotLottie", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "hover", "id", "tap", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "xu7f4sHQH", "mf745BWdZ", "Mpnv9PFtp", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1ena3w", "args", "onMouseEnteredwnny", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "_getLocalizedValue17", "_getLocalizedValue18", "_getLocalizedValue19", "_getLocalizedValue20", "_getLocalizedValue21", "_getLocalizedValue22", "_getLocalizedValue23", "LayoutGroup", "Link", "u", "cx", "RichText2", "getLocalizedValue", "ComponentViewportProvider", "css", "Framerc9G9WR3sY", "withCSS", "c9G9WR3sY_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "getBorderStyle", "color", "width", "widthPerSide", "widthTop", "widthRight", "widthBottom", "widthLeft", "style", "result", "borderControls", "ControlType", "init_ssg_sandbox_shims", "getFocusStyle", "color", "width", "style", "offset", "result", "focusControls", "ControlType", "init_ssg_sandbox_shims", "getHoverStyle", "fillColor", "textColor", "borderColor", "hoverControls", "ControlType", "init_ssg_sandbox_shims", "getPaddingStyle", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "paddingControls", "ControlType", "init_ssg_sandbox_shims", "getRadiusStyle", "radius", "radiusPerCorner", "radiusTopLeft", "radiusTopRight", "radiusBottomRight", "radiusBottomLeft", "result", "radiusControls", "ControlType", "e", "t", "C", "j", "e", "t", "l", "r", "p", "S", "T", "withCSS", "i", "n", "m", "v", "y", "w", "x", "V", "k", "$", "ae", "F", "N", "O", "useLocaleInfo", "Z", "L", "pe", "z", "A", "ye", "B", "u", "C", "o", "getPaddingStyle", "getRadiusStyle", "getBorderStyle", "getHoverStyle", "getFocusStyle", "addPropertyControls", "ControlType", "paddingControls", "radiusControls", "borderControls", "hoverControls", "focusControls", "LocaleSelector_default", "NavButtonFonts", "getFonts", "c9G9WR3sY_default", "MotionDivWithFX", "withFX", "motion", "LocaleSelectorFonts", "LocaleSelector_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition3", "animation3", "animation4", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapzofviq", "args", "onTap1rhhz49", "onMouseEnterizu9gt", "overlay", "paginationInfo", "ref1", "pe", "isDisplayed", "ref2", "ref3", "ref4", "ref5", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Link", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "l", "AnimatePresence", "Floating", "overlay1", "css", "FramersHgGk4tVe", "withCSS", "sHgGk4tVe_default", "addPropertyControls", "ControlType", "addFonts", "init_ssg_sandbox_shims", "fontStore", "fonts", "css", "className", "init_ssg_sandbox_shims", "fontStore", "fonts", "css", "className", "init_ssg_sandbox_shims", "fontStore", "fonts", "css", "className", "init_ssg_sandbox_shims", "STYvFPvWw_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "init_ssg_sandbox_shims", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "__FramerMetadata__", "MailchimpFonts", "getFonts", "Mailchimp_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "valuesByLocaleId", "STYvFPvWw_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "height", "id", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Iyw8vMYJ2", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "LayoutGroup", "u", "cx", "RichText2", "SVG", "Image2", "Link", "css", "FramerSTYvFPvWw", "withCSS", "STYvFPvWw_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "init_ssg_sandbox_shims", "fontStore", "fonts", "css", "className"]
}
