{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:js-cookie@3.0.5/dist/js.cookie.mjs", "ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/tWxPGoauEDGvb60hKQfR/mjnCrEseAiGvkfV3x4Hw/ThemeToggle.js", "ssg:https://framerusercontent.com/modules/vX3rQFhCCz3gttc3RH6Z/YpSkTr43ijsbb9UzL5ib/bytBR8Rsj.js", "ssg:https://framerusercontent.com/modules/hx06YNv5Gw5QWVAdY2Pw/dtYHyvSnrDwyBKslJ2Pd/gVUDvJoa4.js", "ssg:https://framerusercontent.com/modules/7u4JpnPWpVVG5yY21TGx/i4kShQF52FcoAQkQPioJ/DEdeMZlCi.js", "ssg:https://framerusercontent.com/modules/gr2d7S9S8yDOBVuj4k0i/oL9R8PEI6Qbuk7ceh1xe/Bs097bP7Q.js", "ssg:https://framerusercontent.com/modules/dgb2Nblmy9UWrzX6Wvvm/WH2obpZZLmaPgIfLjFvw/BUvbPfCKf.js", "ssg:https://framerusercontent.com/modules/hw7V3DSp68MAPx48Omah/JZMXggrhijUAyywvq1jO/v4NnQRbLR.js", "ssg:https://framerusercontent.com/modules/Y2dOTVZ1lYr7t1ulc2cy/yhmoMT7TP6gMF9joRyv8/FRZNGj4IY.js", "ssg:https://framerusercontent.com/modules/eHRIrJeHvVSurycst1GG/f0hCWTraEVzTuFpmQHiL/KJ3vtYGuD.js", "ssg:https://framerusercontent.com/modules/9UkCaD11cgrihGlnsRLY/oyT1GOxmxxeFTGfeIQMY/Te22MQM1I.js", "ssg:https://framerusercontent.com/modules/euI1jDmPHCX8F1bofbwk/SeZ2m2Q6hdU1rBVHA5oj/WhvZz4zsO.js", "ssg:https://framerusercontent.com/modules/luLgu6x7aLd6muzjAKSp/LMKX1bLWBy39QCUuZJRY/EGHy3r4gl.js"],
  "sourcesContent": ["function assign(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)e[r]=n[r]}return e}var e={read:function(e){'\"'===e[0]&&(e=e.slice(1,-1));return e.replace(/(%[\\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}};function init(e,t){function set(n,r,i){if(\"undefined\"!==typeof document){i=assign({},t,i);\"number\"===typeof i.expires&&(i.expires=new Date(Date.now()+864e5*i.expires));i.expires&&(i.expires=i.expires.toUTCString());n=encodeURIComponent(n).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var o=\"\";for(var c in i)if(i[c]){o+=\"; \"+c;true!==i[c]&&(o+=\"=\"+i[c].split(\";\")[0])}return document.cookie=n+\"=\"+e.write(r,n)+o}}function get(t){if(\"undefined\"!==typeof document&&(!arguments.length||t)){var n=document.cookie?document.cookie.split(\"; \"):[];var r={};for(var i=0;i<n.length;i++){var o=n[i].split(\"=\");var c=o.slice(1).join(\"=\");try{var a=decodeURIComponent(o[0]);r[a]=e.read(c,a);if(t===a)break}catch(e){}}return t?r[t]:r}}return Object.create({set:set,get:get,remove:function(e,t){set(e,\"\",assign({},t,{expires:-1}))},withAttributes:function(e){return init(this.converter,assign({},this.attributes,e))},withConverter:function(e){return init(assign({},this.converter,e),this.attributes)}},{attributes:{value:Object.freeze(t)},converter:{value:Object.freeze(e)}})}var t=init(e,{path:\"/\"});export{t as default};\n\n//# sourceMappingURL=js.cookie.mjs.map", "import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,Image}from\"framer\";import{motion}from\"framer-motion\";import{useState,useEffect,useRef}from\"react\";import Cookies from\"js-cookie\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";// Sun and moon icons from tabler-icons.io\nconst THEME_ATTRIBUTE=\"framestack-theme\";const COOKIE_NAME=\"framestack-theme\";const STYLE_ID=\"framestack-theme-toggle\";const SIGNAL_NAME=\"framestack-theme-changed\";const THEMES=[\"light\",\"dark\",\"deviceTheme\"];const useThemeStore=createStore(\"deviceTheme\");function extractBodySection(inputString){const searchStr=\"body{\";const startIndex=inputString.indexOf(searchStr);if(startIndex!==-1){const endIndex=inputString.indexOf(\"}\",startIndex+searchStr.length);if(endIndex!==-1){const bodySection=inputString.substring(startIndex+searchStr.length,endIndex);return bodySection;}}return null// Return null if \"body{\" or \"}\" is not found\n;}function makeBorderStyle(border){return border?{borderWidth:border.widthIsMixed?`${border.widthTop}px ${border.widthRight}px ${border.widthBottom}px ${border.widthLeft}px`:`${border.width}px`,borderStyle:border.style,borderColor:border.color}:[];}/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function ThemeToggle(props){var _window;const{toggle,dropdown,dropdownOptions,icons,transition}=props;let isPreview=false;let initialTheme=props.defaultTheme;if(typeof document!==\"undefined\"){if(document.body.hasAttribute(\"data-framer-theme\")){if(initialTheme==\"deviceTheme\"){initialTheme=document.body.getAttribute(\"data-framer-theme\");}isPreview=true;}else if(document.body.hasAttribute(THEME_ATTRIBUTE)){initialTheme=document.body.getAttribute(THEME_ATTRIBUTE);}else if(props.saveTheme){const storedTheme=Cookies.get(COOKIE_NAME);if(THEMES.includes(storedTheme)){initialTheme=storedTheme;}}}let deviceTheme=\"light\";if(isPreview&&document.body.hasAttribute(\"data-framer-theme\")){deviceTheme=document.body.getAttribute(\"data-framer-theme\");}else if(typeof window!=\"undefined\"&&((_window=window)===null||_window===void 0?void 0:_window.matchMedia)){deviceTheme=window.matchMedia(\"(prefers-color-scheme: dark)\").matches?\"dark\":\"light\";}const[theme,setTheme]=useThemeStore();const[activeTheme,setActiveTheme]=useState(initialTheme==\"deviceTheme\"?deviceTheme:initialTheme)// light or dark\n;const[originalPreviewTheme,setOriginalPreviewTheme]=useState(initialTheme);const themeRef=useRef(theme);const selectRef=useRef(null);function changeTheme(newTheme){let newActiveTheme=newTheme;if(newTheme==\"deviceTheme\"){if(isPreview){newActiveTheme=originalPreviewTheme;}else{newActiveTheme=deviceTheme;}}setTheme(newTheme);setActiveTheme(newActiveTheme);if(isPreview){document.body.setAttribute(\"data-framer-theme\",newActiveTheme);}document.body.setAttribute(THEME_ATTRIBUTE,newTheme);document.documentElement.setAttribute(THEME_ATTRIBUTE,newTheme);if(props.saveTheme){Cookies.set(COOKIE_NAME,newTheme,{expires:365})// Expires in 1 year\n;}window.dispatchEvent(new CustomEvent(SIGNAL_NAME));}function toggleTheme(){const newActiveTheme=activeTheme==\"light\"?\"dark\":\"light\";if(props.resetToDeviceTheme){changeTheme(newActiveTheme==deviceTheme?\"deviceTheme\":newActiveTheme);}else{changeTheme(newActiveTheme);}}function onSelectChange(){if(selectRef.current){changeTheme(THEMES[selectRef.current.selectedIndex]);}}const handleThemeChange=event=>{if(themeRef.current==\"deviceTheme\"){setActiveTheme(event.matches?\"dark\":\"light\");}};useEffect(()=>{themeRef.current=theme// Update the ref whenever the theme state changes\n;if(theme==\"deviceTheme\"){if(isPreview){setActiveTheme(originalPreviewTheme);}else{setActiveTheme(deviceTheme);}}else{setActiveTheme(theme);}},[theme]);useEffect(()=>{if(initialTheme!=theme){changeTheme(initialTheme);}// const themeAttr = document.body.getAttribute(THEME_ATTRIBUTE)\n// if (themeAttr) {\n//     changeTheme(themeAttr)\n// }\nconst mediaQuery=window.matchMedia(\"(prefers-color-scheme: dark)\");mediaQuery.addEventListener(\"change\",handleThemeChange);if(!isPreview){let generateStyle=true;// Check if <head> already has theme attribute\nconst headElement=document.querySelector(\"head\");if(headElement){if(headElement.querySelector(`style#${STYLE_ID}`)){generateStyle=false;}}// Generate <style> with color styles\nif(generateStyle){let style=document.querySelector(\"style[data-framer-css-ssr-minified]\");if(style&&(style===null||style===void 0?void 0:style.textContent)){const styleText=style.textContent;const darkLocation=styleText.indexOf(\"@media (prefers-color-scheme: dark){body{--token\");if(darkLocation!==-1){var styleElement=document.createElement(\"style\");styleElement.id=STYLE_ID;styleElement.textContent=`body[${THEME_ATTRIBUTE}=\"light\"] {${extractBodySection(styleText)}} body[${THEME_ATTRIBUTE}=\"dark\"] {${extractBodySection(styleText.substring(darkLocation))}} ${props.setColorScheme?`html {color-scheme: light dark; } html[${THEME_ATTRIBUTE}=\"light\"] { color-scheme: light; } html[${THEME_ATTRIBUTE}=\"dark\"] { color-scheme: dark; } `:\"\"}`;document.head.appendChild(styleElement);}}}}return()=>mediaQuery.removeEventListener(\"change\",handleThemeChange);},[]);switch(props.componentStyle){case\"toggle\":const{height,padding,shadow}=toggle;return /*#__PURE__*/_jsxs(motion.div,{onClick:toggleTheme,style:{position:\"relative\",minHeight:height,minWidth:height*2-padding*2,backgroundColor:toggle.fill,padding:padding,borderRadius:toggle.radius,color:icons.color,cursor:\"pointer\",...props.style},layout:false,whileHover:{color:icons.hoverColor||icons.color},initial:false,transition:transition,children:[props.border&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,boxSizing:\"border-box\",borderRadius:toggle.radius,...makeBorderStyle(props.border)}}),/*#__PURE__*/_jsx(motion.div,{style:{position:\"absolute\",height:height-padding*2,aspectRatio:1,[activeTheme==\"light\"?\"left\":\"right\"]:padding,backgroundColor:toggle.switch,borderRadius:toggle.radius-padding,boxShadow:shadow?`${shadow.x}px ${shadow.y}px ${shadow.blur}px ${shadow.spread}px ${shadow.color}`:\"none\",boxSizing:\"border-box\",...makeBorderStyle(toggle.switchBorder)},layout:true,initial:false,transition:transition,children:icons&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0},children:/*#__PURE__*/_jsx(Icon,{theme:activeTheme,style:{position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\"},...icons})})})]});case\"dropdown\":const{showDeviceTheme}=dropdownOptions;const themeTitles={light:dropdownOptions.lightText,dark:dropdownOptions.darkText,deviceTheme:dropdownOptions.deviceThemeText};return /*#__PURE__*/_jsxs(motion.div,{style:{display:\"flex\",flexDirection:\"row\",gap:dropdown.gap,alignItems:\"center\",justifyContent:\"space-between\",backgroundColor:dropdown.fill,color:dropdown.fontColor,borderRadius:dropdown.radiusIsMixed?`${dropdown.radiusTopLeft}px ${dropdown.radiusTopRight}px ${dropdown.radiusBottomRight}px ${dropdown.radiusBottomLeft}px`:`${dropdown.radius}px`,padding:dropdown.paddingIsMixed?`${dropdown.paddingTopLeft}px ${dropdown.paddingTopRight}px ${dropdown.paddingBottomRight}px ${dropdown.paddingBottomLeft}px`:`${dropdown.padding}px`,userSelect:\"none\",boxSizing:\"border-box\",cursor:\"pointer\",\"--icon-color\":icons.color,...makeBorderStyle(props.border),...dropdown.font,...props.style},whileHover:{color:dropdown.fontColorHover||dropdown.fontColor,\"--icon-color\":icons.hoverColor||icons.color},initial:false,transition:transition,children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"row\",alignItems:\"center\",gap:dropdown.gap},children:[icons&&/*#__PURE__*/_jsx(\"div\",{style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Icon,{theme:activeTheme,...props.icons,style:{color:\"var(--icon-color)\"}})}),!showDeviceTheme&&theme==\"deviceTheme\"?themeTitles[deviceTheme]:themeTitles[theme]]}),/*#__PURE__*/_jsx(\"div\",{style:{display:\"contents\",color:dropdown.arrow},children:dropdown.arrow&&/*#__PURE__*/_jsx(Icon,{theme:\"arrow\",size:18})}),/*#__PURE__*/_jsxs(\"select\",{ref:selectRef,name:\"theme\",onChange:onSelectChange,style:{position:\"absolute\",inset:0,opacity:0},children:[/*#__PURE__*/_jsx(\"option\",{value:\"light\",selected:theme==\"light\"||!showDeviceTheme&&deviceTheme==\"light\",children:themeTitles.light}),/*#__PURE__*/_jsx(\"option\",{value:\"dark\",selected:theme==\"dark\"||!showDeviceTheme&&deviceTheme==\"dark\",children:themeTitles.dark}),showDeviceTheme&&/*#__PURE__*/_jsx(\"option\",{value:\"deviceTheme\",selected:theme==\"deviceTheme\",children:themeTitles.deviceTheme})]})]});case\"custom\":return /*#__PURE__*/_jsx(\"div\",{onClick:toggleTheme,children:activeTheme==\"light\"?props.customLight:props.customDark});}}ThemeToggle.displayName=\"Theme Toggle\";const borderControls={color:{type:ControlType.Color,defaultValue:\"#222\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}};const toggleShadowDefault={color:\"rgba(0, 0, 0, 0.2)\",x:0,y:2,blur:4,spread:0};const iconsDefault={type:\"default\",color:\"#333333\",size:18,opacity:1};addPropertyControls(ThemeToggle,{defaultTheme:{type:ControlType.Enum,defaultValue:\"deviceTheme\",options:[\"deviceTheme\",\"light\",\"dark\"],optionTitles:[\"Device Theme\",\"Light\",\"Dark\"],title:\"Default\"},saveTheme:{type:ControlType.Boolean,defaultValue:true,title:\"Save Cookie\"},componentStyle:{type:ControlType.Enum,defaultValue:\"toggle\",options:[\"toggle\",\"dropdown\",\"custom\"],optionTitles:[\"Toggle\",\"Dropdown\",\"Custom\"],title:\"Style\"},toggle:{type:ControlType.Object,buttonTitle:\"Options\",controls:{height:{type:ControlType.Number,defaultValue:32,min:1,step:1},fill:{type:ControlType.Color,defaultValue:\"#EDEDED\",optional:true},switch:{type:ControlType.Color,defaultValue:\"#FFF\"},switchBorder:{type:ControlType.Object,optional:true,controls:borderControls},shadow:{type:ControlType.Object,defaultValue:toggleShadowDefault,optional:true,controls:{color:{type:ControlType.Color,defaultValue:toggleShadowDefault.color},x:{type:ControlType.Number,defaultValue:toggleShadowDefault.x,displayStepper:true},y:{type:ControlType.Number,defaultValue:toggleShadowDefault.y,displayStepper:true},blur:{type:ControlType.Number,defaultValue:toggleShadowDefault.blur,min:0,displayStepper:true},spread:{type:ControlType.Number,defaultValue:toggleShadowDefault.spread,displayStepper:true}}},padding:{type:ControlType.Number,defaultValue:4,min:0,step:1,displayStepper:true},radius:{type:ControlType.Number,defaultValue:16,min:0}},hidden:props=>props.componentStyle!==\"toggle\"},dropdown:{type:ControlType.Object,buttonTitle:\"Options\",controls:{fill:{type:ControlType.Color,defaultValue:\"#EDEDED\",optional:true},fontColor:{type:ControlType.Color,defaultValue:\"#000\"},fontColorHover:{type:ControlType.Color,optional:true,title:\"Hover Font Color\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:16,lineHeight:1}},arrow:{type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.5)\",optional:true},gap:{type:ControlType.Number,defaultValue:8,min:0,step:1},padding:{type:ControlType.FusedNumber,defaultValue:8,toggleKey:\"paddingIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTopLeft\",\"paddingTopRight\",\"paddingBottomRight\",\"paddingBottomLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},radius:{type:ControlType.FusedNumber,defaultValue:10,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0}},hidden:props=>props.componentStyle!==\"dropdown\"},dropdownOptions:{type:ControlType.Object,title:\"Options\",buttonTitle:\"Options\",// buttonTitle: \"Options\",\ncontrols:{showDeviceTheme:{type:ControlType.Boolean,defaultValue:true},deviceThemeText:{type:ControlType.String,defaultValue:\"Device Theme\",hidden:props=>!props.showDeviceTheme},lightText:{type:ControlType.String,defaultValue:\"Light\"},darkText:{type:ControlType.String,defaultValue:\"Dark\"}},hidden:props=>props.componentStyle!==\"dropdown\"},icons:{type:ControlType.Object,defaultValue:iconsDefault,optional:true,controls:{type:{type:ControlType.Enum,defaultValue:\"default\",options:[\"default\",\"svg\",\"image\"],optionTitles:[\"Default\",\"SVG\",\"Image\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},lightSvg:{type:ControlType.String,placeholder:\"<svg></svg>\",displayTextArea:true,title:\"Light SVG\",hidden:props=>props.type!=\"svg\"},darkSvg:{type:ControlType.String,placeholder:\"<svg></svg>\",displayTextArea:true,title:\"Dark SVG\",hidden:props=>props.type!=\"svg\"},lightImage:{type:ControlType.ResponsiveImage,title:\"Light\",hidden:props=>props.type!=\"image\"},darkImage:{type:ControlType.ResponsiveImage,title:\"Dark\",hidden:props=>props.type!=\"image\"},sizing:{type:ControlType.Enum,defaultValue:\"cover\",options:[\"fill\",\"fit\",\"stretch\"],optionTitles:[\"Fill\",\"Fit\",\"Stretch\"],hidden:props=>props.type!=\"image\"},color:{type:ControlType.Color,defaultValue:iconsDefault.color,hidden:props=>props.type!=\"default\"&&props.type!=\"svg\"},hoverColor:{type:ControlType.Color,optional:true,hidden:props=>props.type!=\"default\"&&props.type!=\"svg\"},size:{type:ControlType.Number,defaultValue:iconsDefault.size,min:1,step:1,displayStepper:true},opacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01}},hidden:props=>props.componentStyle==\"custom\"},border:{type:ControlType.Object,optional:true,controls:borderControls,hidden:props=>props.componentStyle==\"custom\"},customLight:{type:ControlType.ComponentInstance,title:\"Light\",hidden:props=>props.componentStyle!==\"custom\"},customDark:{type:ControlType.ComponentInstance,title:\"Dark\",hidden:props=>props.componentStyle!==\"custom\"},resetToDeviceTheme:{type:ControlType.Boolean,defaultValue:true,// description:\n//     \"Uses the device theme when the toggle is switched to the current device theme.\",\nhidden:props=>props.componentStyle!==\"toggle\"},setColorScheme:{type:ControlType.Boolean,defaultValue:true,title:\"Theme Scroll Bars\"},transition:{type:ControlType.Transition,hidden:props=>props.type==\"custom\"}});function Icon(props){const{theme,type,size,lightSvg,darkSvg,lightImage,darkImage,sizing,opacity,style={}}=props;switch(type){case\"svg\":if(theme==\"light\"&&!lightSvg.length||theme==\"dark\"&&!darkSvg.length){return /*#__PURE__*/_jsx(\"div\",{});}return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{className:\"theme-toggle-icon\",style:{width:size,height:size,opacity,pointerEvents:\"none\",...style},dangerouslySetInnerHTML:{__html:(theme==\"light\"?lightSvg:darkSvg).replace(/width=\"(\\d+)\"/,`width=\"${size}\"`).replace(/height=\"(\\d+)\"/,`width=\"${size}\"`)}}),/*#__PURE__*/_jsx(\"style\",{children:`.theme-toggle-icon svg { display: block; }`})]});case\"image\":return /*#__PURE__*/_jsx(Image,{background:{fit:sizing,...theme==\"light\"?lightImage:darkImage},style:{opacity,width:size,height:size,...style}});case\"default\":return /*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:size,height:size,viewBox:\"0 0 24 24\",strokeWidth:\"2\",stroke:\"currentColor\",fill:\"none\",strokeLinecap:\"round\",strokeLinejoin:\"round\",style:{opacity,...style},children:[/*#__PURE__*/_jsx(\"path\",{stroke:\"none\",d:\"M0 0h24v24H0z\",fill:\"none\"}),theme==\"light\"?[/*#__PURE__*/_jsx(\"path\",{d:\"M12 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M18.313 16.91l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.218 -1.567l.102 .07z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M7.007 16.993a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M6.213 4.81l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.217 -1.567l.102 .07z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M19.107 4.893a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z\",strokeWidth:\"0\",fill:\"currentColor\"})]:theme==\"dark\"?/*#__PURE__*/_jsx(\"path\",{d:\"M12 1.992a10 10 0 1 0 9.236 13.838c.341 -.82 -.476 -1.644 -1.298 -1.31a6.5 6.5 0 0 1 -6.864 -10.787l.077 -.08c.551 -.63 .113 -1.653 -.758 -1.653h-.266l-.068 -.006l-.06 -.002z\",strokeWidth:\"0\",fill:\"currentColor\"}):// Arrow\n/*#__PURE__*/_jsx(\"path\",{d:\"M6 9l6 6l6 -6\"})]});}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ThemeToggle\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ThemeToggle.map", "// Generated by Framer (9e1dc8e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./bytBR8Rsj-0.js\";const cycleOrder=[\"qdXiA6nnH\",\"lRTDRxIQK\",\"tFh79Fsle\",\"FxDjXgRNk\"];const serializationHash=\"framer-AfR60\";const variantClassNames={FxDjXgRNk:\"framer-v-1hhiari\",lRTDRxIQK:\"framer-v-eugo1w\",qdXiA6nnH:\"framer-v-eu1my0\",tFh79Fsle:\"framer-v-qg1x2r\"};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 valuesByLocaleId={VH393QRe6: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 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={\"Phone White\":\"FxDjXgRNk\",Default:\"qdXiA6nnH\",Phone:\"tFh79Fsle\",White:\"lRTDRxIQK\"};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:\"qdXiA6nnH\"};};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:\"qdXiA6nnH\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"lRTDRxIQK\",\"FxDjXgRNk\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"lRTDRxIQK\",\"FxDjXgRNk\"].includes(baseVariant))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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-eu1my0\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"qdXiA6nnH\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({FxDjXgRNk:{\"data-framer-name\":\"Phone White\"},lRTDRxIQK:{\"data-framer-name\":\"White\"},tFh79Fsle:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1j1rfle\",\"data-framer-name\":\"Default\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"zqUzET6Hn\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 76 80\"><path d=\"M 54.512 12.27 C 54.451 12.183 54.392 12.094 54.33 12.007 C 53.502 10.857 52.563 9.792 51.536 8.825 C 51.075 8.39 50.593 7.977 50.097 7.584 C 48.327 6.184 46.339 5.052 44.19 4.247 C 43.236 3.891 42.25 3.602 41.238 3.38 C 40.989 3.326 40.739 3.276 40.488 3.23 C 40.369 3.208 40.248 3.187 40.128 3.165 C 38.965 2.974 37.771 2.871 36.553 2.871 C 35.085 2.871 33.655 3.017 32.27 3.291 C 32.214 3.302 32.16 3.313 32.103 3.326 C 31.841 3.38 31.581 3.437 31.323 3.5 C 30.444 3.715 29.585 3.986 28.751 4.304 C 26.657 5.104 24.72 6.215 22.991 7.582 C 22.481 7.984 21.992 8.41 21.519 8.856 C 20.455 9.862 19.489 10.973 18.639 12.173 C 18.576 12.262 18.516 12.351 18.453 12.442 C 17.397 13.983 16.526 15.666 15.883 17.455 C 16.277 17.507 17.198 17.646 18.453 17.946 C 18.96 18.068 19.521 18.215 20.126 18.396 C 22.581 19.128 25.734 20.382 28.751 22.497 C 29.626 23.113 30.491 23.797 31.323 24.567 C 31.341 24.582 31.358 24.597 31.373 24.612 C 31.384 24.623 31.395 24.634 31.406 24.643 C 32.975 26.106 34.429 27.858 35.625 29.958 C 35.844 30.342 36.056 30.738 36.258 31.147 C 36.264 31.16 36.271 31.173 36.277 31.183 L 36.277 31.147 C 36.277 31.144 36.28 31.144 36.28 31.142 C 36.336 31.027 36.394 30.916 36.453 30.803 C 36.457 30.792 36.464 30.784 36.468 30.773 C 36.47 30.766 36.475 30.76 36.477 30.755 C 36.481 30.747 36.485 30.738 36.49 30.729 C 37.768 28.256 39.383 26.219 41.149 24.547 C 41.177 24.519 41.208 24.493 41.236 24.465 C 41.775 23.96 42.328 23.489 42.887 23.047 C 43.316 22.71 43.75 22.391 44.185 22.091 C 47.276 19.956 50.489 18.696 52.977 17.963 C 53.526 17.802 54.039 17.665 54.507 17.552 C 55.675 17.27 56.57 17.122 57.049 17.052 C 56.401 15.353 55.543 13.746 54.512 12.27 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 54.513 12.275 C 54.452 12.188 54.393 12.099 54.331 12.012 C 54.09 14.151 53.622 16.137 52.98 17.974 C 53.529 17.813 54.042 17.676 54.511 17.563 C 55.679 17.281 56.574 17.133 57.053 17.063 C 56.402 15.357 55.544 13.751 54.513 12.275 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 18.639 12.181 C 18.576 12.27 18.516 12.359 18.453 12.451 C 17.397 13.992 16.526 15.674 15.883 17.463 C 16.277 17.516 17.198 17.655 18.453 17.955 C 18.96 18.076 19.521 18.224 20.126 18.405 C 19.419 16.5 18.901 14.427 18.639 12.181 Z\" fill=\"rgb(246,178,26)\"></path><path d=\"M 31.324 24.576 C 31.341 24.591 31.358 24.606 31.374 24.621 C 31.356 24.593 31.339 24.562 31.324 24.534 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 28.927 12.573 C 28.868 12.527 28.81 12.486 28.751 12.44 C 26.433 10.699 23.88 9.579 21.52 8.862 C 20.456 9.869 19.489 10.979 18.64 12.179 C 18.902 14.425 19.42 16.498 20.126 18.402 C 22.582 19.135 25.735 20.389 28.751 22.504 C 29.627 23.119 30.492 23.804 31.324 24.573 L 31.324 24.532 C 28.91 20.356 28.435 16.248 28.927 12.573 Z\" fill=\"rgb(236,139,35)\"></path><path d=\"M 36.468 30.786 C 36.47 30.779 36.475 30.773 36.477 30.768 C 36.475 30.766 36.47 30.762 36.468 30.76 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 36.456 30.747 C 36.456 30.77 36.456 30.792 36.454 30.814 C 36.458 30.803 36.465 30.794 36.469 30.784 L 36.469 30.757 C 36.465 30.755 36.46 30.751 36.456 30.747 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 50.095 7.59 C 48.324 6.191 46.337 5.058 44.187 4.254 C 43.234 3.897 42.248 3.608 41.236 3.387 C 40.987 3.332 40.737 3.282 40.486 3.237 C 40.367 3.215 40.245 3.193 40.126 3.171 C 38.962 2.98 37.768 2.878 36.55 2.878 C 35.083 2.878 33.653 3.024 32.268 3.297 C 32.212 3.308 32.158 3.319 32.101 3.332 C 31.839 3.387 31.579 3.443 31.321 3.506 C 30.441 3.721 29.583 3.993 28.749 4.31 C 26.655 5.11 24.718 6.221 22.988 7.588 C 22.479 7.99 21.99 8.416 21.517 8.862 C 23.877 9.579 26.43 10.697 28.749 12.44 C 28.807 12.483 28.866 12.527 28.924 12.573 C 29.163 10.797 29.624 9.123 30.203 7.59 C 30.543 6.688 30.922 5.836 31.321 5.041 C 31.607 4.469 31.902 3.928 32.197 3.417 C 33.573 4.626 34.919 6.015 36.136 7.59 L 36.401 7.59 C 37.599 6.019 38.926 4.632 40.282 3.415 C 40.622 3.919 40.941 4.423 41.231 4.926 C 41.747 5.819 42.183 6.708 42.551 7.59 C 43.262 9.299 43.713 10.981 43.955 12.616 C 44.031 12.557 44.107 12.503 44.183 12.446 C 46.539 10.675 49.139 9.547 51.53 8.832 C 51.075 8.397 50.593 7.984 50.095 7.59 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 36.406 7.59 L 36.141 7.59 C 36.187 7.649 36.23 7.706 36.276 7.764 C 36.319 7.706 36.362 7.647 36.406 7.59 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 36.141 7.591 C 34.923 6.015 33.575 4.628 32.201 3.417 C 31.907 3.926 31.612 4.469 31.326 5.041 C 30.929 5.836 30.548 6.688 30.207 7.591 C 29.629 9.123 29.165 10.797 28.929 12.573 C 29.768 13.218 30.574 13.946 31.326 14.768 C 31.638 15.109 31.939 15.466 32.232 15.84 C 33.107 12.74 34.555 10.06 36.275 7.764 C 36.23 7.706 36.187 7.647 36.141 7.591 Z\" fill=\"rgb(236,139,35)\"></path><path d=\"M 31.324 14.768 C 30.572 13.946 29.765 13.216 28.927 12.573 C 28.435 16.248 28.91 20.357 31.324 24.534 L 31.324 22.591 L 31.324 22.332 C 31.339 19.989 31.668 17.829 32.23 15.84 C 31.939 15.466 31.636 15.109 31.324 14.768 Z\" fill=\"rgb(229,111,37)\"></path><path d=\"M 42.556 7.591 C 42.188 6.708 41.752 5.817 41.237 4.926 C 40.946 4.423 40.628 3.919 40.287 3.415 C 38.929 4.632 37.605 6.019 36.406 7.591 C 36.363 7.649 36.319 7.706 36.274 7.764 C 36.339 7.849 36.404 7.936 36.467 8.023 C 38.183 10.34 39.611 13.051 40.443 16.192 C 40.699 15.848 40.964 15.52 41.234 15.203 C 42.077 14.22 42.996 13.362 43.958 12.616 C 43.72 10.981 43.269 9.297 42.556 7.591 Z\" fill=\"rgb(236,139,35)\"></path><path d=\"M 36.469 30.758 L 36.469 30.212 C 36.467 30.388 36.46 30.566 36.456 30.747 C 36.46 30.751 36.465 30.755 36.469 30.758 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 40.448 16.192 C 39.613 13.051 38.187 10.34 36.471 8.023 C 36.406 7.936 36.343 7.849 36.278 7.764 C 34.555 10.06 33.11 12.74 32.234 15.84 C 34.703 18.996 36.41 23.358 36.473 29.386 L 36.473 30.212 L 36.473 30.758 C 36.475 30.76 36.48 30.764 36.482 30.766 C 36.486 30.758 36.491 30.749 36.495 30.74 C 36.3 24.234 37.947 19.554 40.448 16.192 Z\" fill=\"rgb(229,111,37)\"></path><path d=\"M 32.232 15.84 C 31.669 17.829 31.341 19.989 31.326 22.332 L 31.326 22.591 L 31.326 24.534 C 31.344 24.563 31.361 24.593 31.376 24.621 C 31.387 24.632 31.398 24.643 31.408 24.652 C 32.977 26.115 34.432 27.867 35.628 29.966 C 35.847 30.351 36.059 30.747 36.261 31.155 C 36.267 31.168 36.274 31.181 36.28 31.192 L 36.28 31.155 C 36.28 31.153 36.282 31.153 36.282 31.151 C 36.339 31.036 36.397 30.925 36.456 30.812 C 36.456 30.788 36.456 30.766 36.458 30.745 C 36.462 30.566 36.469 30.386 36.471 30.21 L 36.471 29.384 C 36.406 23.358 34.7 18.996 32.232 15.84 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 51.535 8.83 C 49.143 9.545 46.544 10.673 44.189 12.444 C 44.113 12.501 44.037 12.555 43.961 12.614 C 44.537 16.507 43.937 20.109 42.888 23.061 C 43.317 22.724 43.751 22.404 44.186 22.104 C 47.277 19.97 50.49 18.709 52.978 17.976 C 53.62 16.14 54.088 14.151 54.329 12.014 C 53.503 10.864 52.564 9.799 51.535 8.83 Z\" fill=\"rgb(236,139,35)\"></path><path d=\"M 43.962 12.614 C 43 13.359 42.081 14.218 41.238 15.201 C 40.967 15.518 40.703 15.846 40.447 16.19 C 40.933 18.015 41.214 19.985 41.238 22.106 L 41.238 22.68 L 41.238 24.476 C 41.778 23.971 42.33 23.5 42.89 23.058 C 43.938 20.109 44.539 16.507 43.962 12.614 Z\" fill=\"rgb(229,111,37)\"></path><path d=\"M 40.447 16.192 C 37.946 19.557 36.299 24.236 36.492 30.742 C 37.771 28.269 39.385 26.232 41.152 24.56 C 41.18 24.532 41.21 24.506 41.238 24.478 L 41.238 22.682 L 41.238 22.108 C 41.214 19.985 40.93 18.015 40.447 16.192 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 28.058 45.18 C 22.649 42.895 15.599 37.316 14.745 26.584 C 14.583 24.537 14.689 22.826 15.116 20.174 C 15.116 20.174 39.253 22.985 34.809 46.832 C 34.809 46.834 31.725 46.732 28.058 45.18 Z\" fill=\"rgb(114,147,61)\"></path><path d=\"M 44.78 45.18 C 50.187 42.895 57.237 37.316 58.086 26.584 C 58.255 24.537 58.145 22.826 57.718 20.174 C 57.718 20.174 33.582 22.985 38.034 46.832 C 38.036 46.834 41.111 46.732 44.78 45.18 Z\" fill=\"rgb(114, 147, 61)\"></path><path d=\"M 72.517 50.221 C 72.517 51.864 71.232 53.153 69.559 53.153 C 67.903 53.153 66.584 51.864 66.584 50.221 C 66.584 48.614 67.903 47.323 69.559 47.323 C 71.232 47.323 72.517 48.614 72.517 50.221 Z M 67.323 50.221 C 67.323 51.51 68.274 52.534 69.577 52.534 C 70.846 52.534 71.778 51.508 71.778 50.236 C 71.778 48.947 70.846 47.906 69.559 47.906 C 68.272 47.908 67.323 48.949 67.323 50.221 Z M 69.1 51.74 L 68.432 51.74 L 68.432 48.843 C 68.694 48.79 69.065 48.753 69.542 48.753 C 70.088 48.753 70.333 48.843 70.545 48.967 C 70.703 49.09 70.827 49.321 70.827 49.601 C 70.827 49.919 70.58 50.166 70.227 50.273 L 70.227 50.308 C 70.508 50.414 70.667 50.625 70.755 51.014 C 70.844 51.458 70.896 51.634 70.968 51.738 L 70.246 51.738 C 70.157 51.631 70.105 51.366 70.016 51.032 C 69.962 50.712 69.787 50.573 69.416 50.573 L 69.1 50.573 Z M 69.119 50.097 L 69.436 50.097 C 69.806 50.097 70.105 49.973 70.105 49.673 C 70.105 49.408 69.912 49.23 69.49 49.23 C 69.314 49.23 69.191 49.247 69.119 49.266 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 11.339 65.067 L 6.131 65.067 L 4.881 68.327 L 2.885 68.327 L 8.036 55.279 L 9.393 55.279 L 14.553 68.327 L 12.568 68.327 Z M 6.807 63.321 L 10.66 63.321 L 8.734 58.237 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 18.568 64.46 L 18.568 55.318 L 20.447 55.318 L 20.447 64.48 C 20.447 65.902 21.964 66.599 23.325 66.599 C 24.664 66.599 26.185 65.878 26.185 64.463 L 26.185 55.32 L 28.06 55.32 L 28.06 64.482 C 28.06 67.097 25.531 68.458 23.325 68.458 C 21.067 68.453 18.568 67.093 18.568 64.46 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 36.135 61.796 L 38.294 61.796 C 39.856 61.796 40.628 60.674 40.628 59.546 C 40.628 58.444 39.856 57.153 38.294 57.153 L 35.455 57.153 L 35.455 68.325 L 33.613 68.325 L 33.613 55.277 L 38.294 55.277 C 41.087 55.277 42.478 57.507 42.478 59.544 C 42.478 61.367 41.365 63.098 39.161 63.487 L 43.213 68.325 L 40.81 68.325 L 36.135 62.678 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 48.995 66.471 L 54.959 66.471 L 54.959 68.327 L 47.125 68.327 L 47.125 55.318 L 54.942 55.318 L 54.942 57.174 L 48.995 57.174 L 48.995 60.8 L 54.816 60.8 L 54.816 62.68 L 48.995 62.68 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 66.732 65.067 L 61.529 65.067 L 60.279 68.327 L 58.278 68.327 L 63.434 55.279 L 64.793 55.279 L 69.948 68.327 L 67.963 68.327 Z M 62.207 63.321 L 66.056 63.321 L 64.134 58.237 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 5.861 71.873 L 6.541 71.873 L 6.541 77.024 L 5.861 77.024 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 10.721 75.007 L 10.721 77.026 L 10.073 77.026 L 10.073 75.044 C 10.073 74.459 9.716 74.103 9.23 74.103 C 8.747 74.103 8.164 74.379 8.164 75.135 L 8.164 77.026 L 7.514 77.026 L 7.514 73.533 L 8.164 73.533 L 8.164 74.064 C 8.372 73.638 8.94 73.459 9.319 73.459 C 10.184 73.459 10.728 74.027 10.721 75.007 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 14.709 75.007 L 14.709 77.026 L 14.059 77.026 L 14.059 75.044 C 14.059 74.459 13.701 74.103 13.218 74.103 C 12.732 74.103 12.152 74.379 12.152 75.135 L 12.152 77.026 L 11.504 77.026 L 11.504 73.533 L 12.152 73.533 L 12.152 74.064 C 12.36 73.638 12.928 73.459 13.307 73.459 C 14.171 73.459 14.715 74.027 14.709 75.007 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 15.253 75.268 C 15.253 74.162 16.078 73.459 17.071 73.459 C 18.064 73.459 18.896 74.162 18.896 75.268 C 18.896 76.374 18.061 77.1 17.071 77.1 C 16.078 77.1 15.253 76.374 15.253 75.268 Z M 18.25 75.268 C 18.25 74.551 17.713 74.07 17.071 74.07 C 16.438 74.07 15.907 74.548 15.907 75.268 C 15.907 75.994 16.438 76.487 17.071 76.487 C 17.71 76.487 18.25 75.994 18.25 75.268 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 22.489 73.533 L 21.037 77.026 L 20.404 77.026 L 18.957 73.533 L 19.65 73.533 L 20.725 76.194 L 21.791 73.533 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 26.179 73.533 L 26.179 77.026 L 25.531 77.026 L 25.531 76.472 C 25.299 76.876 24.792 77.1 24.294 77.1 C 23.34 77.1 22.549 76.374 22.549 75.277 C 22.549 74.17 23.331 73.459 24.287 73.459 C 24.809 73.459 25.301 73.668 25.531 74.079 L 25.531 73.533 Z M 25.529 75.268 C 25.529 74.514 24.918 74.07 24.343 74.07 C 23.711 74.07 23.204 74.564 23.204 75.268 C 23.204 75.963 23.711 76.487 24.343 76.487 C 24.97 76.487 25.529 76.016 25.529 75.268 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 28.683 74.094 L 27.929 74.094 L 27.929 77.026 L 27.281 77.026 L 27.281 74.094 L 26.654 74.094 L 26.654 73.533 L 27.281 73.533 L 27.281 72.21 L 27.929 72.21 L 27.929 73.533 L 28.683 73.533 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 28.971 72.246 C 28.971 72.001 29.182 71.814 29.429 71.814 C 29.682 71.814 29.89 72.001 29.89 72.246 C 29.89 72.494 29.682 72.681 29.429 72.681 C 29.182 72.681 28.971 72.494 28.971 72.246 Z M 29.108 73.533 L 29.756 73.533 L 29.756 77.026 L 29.108 77.026 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 30.345 75.268 C 30.345 74.162 31.173 73.459 32.163 73.459 C 33.154 73.459 33.99 74.162 33.99 75.268 C 33.99 76.374 33.154 77.1 32.163 77.1 C 31.171 77.1 30.345 76.374 30.345 75.268 Z M 33.34 75.268 C 33.34 74.551 32.805 74.07 32.163 74.07 C 31.53 74.07 31.002 74.548 31.002 75.268 C 31.002 75.994 31.53 76.487 32.163 76.487 C 32.805 76.487 33.34 75.994 33.34 75.268 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 37.798 75.007 L 37.798 77.026 L 37.15 77.026 L 37.15 75.044 C 37.15 74.459 36.79 74.103 36.307 74.103 C 35.824 74.103 35.241 74.379 35.241 75.135 L 35.241 77.026 L 34.593 77.026 L 34.593 73.533 L 35.241 73.533 L 35.241 74.064 C 35.451 73.638 36.016 73.459 36.396 73.459 C 37.26 73.459 37.804 74.027 37.798 75.007 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 41.098 73.077 L 41.098 73.533 L 41.911 73.533 L 41.911 74.094 L 41.098 74.094 L 41.098 77.027 L 40.45 77.027 L 40.45 74.094 L 39.779 74.094 L 39.779 73.533 L 40.45 73.533 L 40.45 73.168 C 40.45 72.255 40.832 71.627 41.761 71.627 L 42.134 71.627 L 42.134 72.24 L 41.874 72.24 C 41.254 72.24 41.092 72.62 41.098 73.077 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 42.006 75.268 C 42.006 74.162 42.834 73.459 43.824 73.459 C 44.816 73.459 45.651 74.162 45.651 75.268 C 45.651 76.374 44.816 77.1 43.824 77.1 C 42.836 77.1 42.006 76.374 42.006 75.268 Z M 45.005 75.268 C 45.005 74.551 44.467 74.07 43.826 74.07 C 43.193 74.07 42.664 74.548 42.664 75.268 C 42.664 75.994 43.193 76.487 43.826 76.487 C 44.467 76.487 45.005 75.994 45.005 75.268 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 48.492 73.594 L 48.388 74.207 C 48.202 74.118 48.015 74.088 47.881 74.088 C 47.187 74.088 46.912 74.829 46.912 75.748 L 46.912 77.026 L 46.256 77.026 L 46.256 73.533 L 46.912 73.533 L 46.912 74.327 C 47.09 73.714 47.426 73.459 47.887 73.459 C 48.135 73.459 48.388 73.527 48.492 73.594 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 50.034 74.461 C 50.034 72.996 51.167 71.816 52.63 71.816 C 53.308 71.816 53.911 72.077 54.359 72.488 L 53.889 72.931 C 53.562 72.64 53.113 72.444 52.63 72.444 C 51.549 72.444 50.714 73.355 50.714 74.464 C 50.714 75.57 51.549 76.476 52.63 76.476 C 53.516 76.476 54.195 75.968 54.299 75.168 C 54.307 75.131 54.314 75.085 54.314 75.042 L 52.823 75.042 L 52.823 74.451 L 55.059 74.451 C 55.059 76.253 54.091 77.105 52.63 77.105 C 51.167 77.1 50.034 75.92 50.034 74.461 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 55.32 75.268 C 55.32 74.162 56.145 73.459 57.138 73.459 C 58.13 73.459 58.965 74.162 58.965 75.268 C 58.965 76.374 58.13 77.1 57.138 77.1 C 56.147 77.1 55.32 76.374 55.32 75.268 Z M 58.317 75.268 C 58.317 74.551 57.779 74.07 57.138 74.07 C 56.505 74.07 55.974 74.548 55.974 75.268 C 55.974 75.994 56.505 76.487 57.138 76.487 C 57.779 76.487 58.317 75.994 58.317 75.268 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 59.329 75.268 C 59.329 74.162 60.157 73.459 61.147 73.459 C 62.137 73.459 62.974 74.162 62.974 75.268 C 62.974 76.374 62.137 77.1 61.147 77.1 C 60.157 77.1 59.329 76.374 59.329 75.268 Z M 62.326 75.268 C 62.326 74.551 61.788 74.07 61.147 74.07 C 60.514 74.07 59.985 74.548 59.985 75.268 C 59.985 75.994 60.514 76.487 61.147 76.487 C 61.788 76.487 62.326 75.994 62.326 75.268 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 66.978 71.627 L 66.978 77.027 L 66.33 77.027 L 66.33 76.472 C 66.098 76.877 65.591 77.1 65.092 77.1 C 64.139 77.1 63.348 76.374 63.348 75.277 C 63.348 74.17 64.13 73.46 65.083 73.46 C 65.606 73.46 66.1 73.668 66.33 74.079 L 66.33 71.627 Z M 66.327 75.268 C 66.327 74.514 65.716 74.07 65.142 74.07 C 64.509 74.07 64 74.564 64 75.268 C 64 75.964 64.507 76.487 65.142 76.487 C 65.768 76.487 66.327 76.016 66.327 75.268 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path></svg>',svgContentId:11331984265,withExternalLayout:true,...addPropertyOverrides({tFh79Fsle:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 56 59\"><path d=\"M 40.166 9.049 C 40.122 8.985 40.079 8.92 40.032 8.855 C 39.422 8.007 38.731 7.222 37.974 6.509 C 37.634 6.188 37.279 5.883 36.914 5.593 C 35.609 4.561 34.145 3.726 32.561 3.132 C 31.858 2.87 31.132 2.656 30.386 2.493 C 30.202 2.453 30.019 2.416 29.833 2.382 C 29.745 2.366 29.656 2.35 29.568 2.334 C 28.711 2.193 27.831 2.118 26.934 2.118 C 25.852 2.118 24.799 2.225 23.778 2.427 C 23.737 2.435 23.697 2.443 23.655 2.453 C 23.462 2.493 23.27 2.534 23.08 2.581 C 22.432 2.74 21.8 2.94 21.185 3.174 C 19.642 3.764 18.215 4.583 16.941 5.592 C 16.565 5.888 16.204 6.202 15.856 6.531 C 15.072 7.273 14.36 8.092 13.734 8.977 C 13.688 9.043 13.643 9.109 13.597 9.176 C 12.819 10.313 12.177 11.553 11.703 12.873 C 11.993 12.911 12.672 13.014 13.597 13.235 C 13.97 13.325 14.384 13.434 14.83 13.567 C 16.639 14.107 18.962 15.032 21.185 16.592 C 21.83 17.046 22.467 17.551 23.08 18.118 C 23.093 18.129 23.106 18.14 23.117 18.152 C 23.125 18.16 23.133 18.168 23.141 18.174 C 24.297 19.253 25.369 20.545 26.25 22.094 C 26.411 22.378 26.568 22.669 26.716 22.971 C 26.721 22.98 26.726 22.99 26.731 22.998 L 26.731 22.971 C 26.731 22.969 26.732 22.969 26.732 22.967 C 26.774 22.882 26.817 22.801 26.86 22.717 C 26.863 22.709 26.868 22.703 26.871 22.695 C 26.873 22.69 26.876 22.685 26.878 22.682 C 26.881 22.676 26.884 22.669 26.887 22.663 C 27.829 20.839 29.019 19.336 30.32 18.104 C 30.341 18.083 30.363 18.064 30.384 18.043 C 30.782 17.671 31.189 17.323 31.601 16.998 C 31.917 16.749 32.237 16.513 32.558 16.292 C 34.835 14.718 37.203 13.788 39.036 13.248 C 39.44 13.129 39.818 13.028 40.163 12.945 C 41.024 12.737 41.683 12.627 42.036 12.576 C 41.559 11.323 40.927 10.138 40.166 9.049 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 40.167 9.053 C 40.123 8.988 40.079 8.923 40.033 8.859 C 39.856 10.436 39.511 11.901 39.038 13.256 C 39.442 13.137 39.821 13.036 40.166 12.953 C 41.026 12.745 41.686 12.635 42.039 12.584 C 41.56 11.326 40.927 10.141 40.167 9.053 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 13.734 8.984 C 13.688 9.049 13.643 9.115 13.597 9.182 C 12.819 10.319 12.177 11.56 11.703 12.879 C 11.993 12.918 12.672 13.02 13.597 13.241 C 13.97 13.331 14.384 13.44 14.83 13.573 C 14.309 12.169 13.927 10.64 13.734 8.984 Z\" fill=\"rgb(246,178,26)\"></path><path d=\"M 23.081 18.125 C 23.093 18.136 23.106 18.147 23.117 18.158 C 23.105 18.137 23.092 18.115 23.081 18.094 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 21.315 9.272 C 21.271 9.239 21.228 9.208 21.185 9.175 C 19.477 7.89 17.596 7.065 15.857 6.536 C 15.073 7.278 14.36 8.097 13.734 8.982 C 13.928 10.638 14.309 12.167 14.83 13.572 C 16.639 14.112 18.962 15.037 21.185 16.597 C 21.83 17.05 22.468 17.555 23.081 18.123 L 23.081 18.092 C 21.302 15.013 20.952 11.983 21.315 9.272 Z\" fill=\"rgb(236,139,35)\"></path><path d=\"M 26.871 22.705 C 26.873 22.7 26.876 22.695 26.878 22.692 C 26.876 22.69 26.873 22.687 26.871 22.685 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 26.862 22.676 C 26.862 22.693 26.862 22.709 26.861 22.725 C 26.864 22.717 26.869 22.711 26.872 22.703 L 26.872 22.684 C 26.869 22.682 26.865 22.679 26.862 22.676 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 36.912 5.598 C 35.607 4.566 34.143 3.73 32.559 3.137 C 31.857 2.874 31.13 2.661 30.384 2.498 C 30.201 2.458 30.017 2.421 29.832 2.387 C 29.744 2.371 29.655 2.355 29.567 2.339 C 28.709 2.198 27.829 2.122 26.932 2.122 C 25.851 2.122 24.797 2.23 23.777 2.432 C 23.735 2.44 23.695 2.448 23.654 2.458 C 23.46 2.498 23.269 2.539 23.079 2.586 C 22.43 2.744 21.798 2.945 21.183 3.179 C 19.641 3.769 18.213 4.588 16.939 5.596 C 16.564 5.893 16.203 6.207 15.855 6.536 C 17.594 7.065 19.475 7.889 21.183 9.174 C 21.226 9.207 21.27 9.239 21.313 9.272 C 21.488 7.963 21.828 6.728 22.255 5.598 C 22.505 4.933 22.785 4.304 23.079 3.718 C 23.289 3.296 23.507 2.897 23.724 2.52 C 24.738 3.411 25.729 4.436 26.627 5.598 L 26.822 5.598 C 27.705 4.439 28.682 3.416 29.682 2.518 C 29.932 2.89 30.167 3.262 30.381 3.633 C 30.761 4.291 31.082 4.947 31.354 5.598 C 31.877 6.858 32.209 8.099 32.388 9.304 C 32.444 9.261 32.5 9.221 32.556 9.179 C 34.292 7.873 36.208 7.041 37.969 6.513 C 37.634 6.193 37.279 5.888 36.912 5.598 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 26.825 5.598 L 26.63 5.598 C 26.664 5.641 26.696 5.683 26.729 5.726 C 26.761 5.683 26.793 5.64 26.825 5.598 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 26.63 5.598 C 25.733 4.436 24.74 3.413 23.727 2.52 C 23.51 2.895 23.293 3.296 23.082 3.718 C 22.79 4.304 22.509 4.933 22.258 5.598 C 21.832 6.728 21.49 7.963 21.316 9.272 C 21.934 9.748 22.528 10.285 23.082 10.891 C 23.312 11.143 23.534 11.406 23.75 11.682 C 24.395 9.396 25.461 7.419 26.729 5.726 C 26.696 5.683 26.664 5.64 26.63 5.598 Z\" fill=\"rgb(236,139,35)\"></path><path d=\"M 23.081 10.891 C 22.527 10.285 21.932 9.747 21.315 9.272 C 20.952 11.983 21.302 15.013 23.081 18.094 L 23.081 16.661 L 23.081 16.47 C 23.092 14.742 23.335 13.149 23.748 11.682 C 23.534 11.406 23.311 11.143 23.081 10.891 Z\" fill=\"rgb(229,111,37)\"></path><path d=\"M 31.357 5.598 C 31.086 4.947 30.765 4.29 30.385 3.633 C 30.171 3.262 29.936 2.89 29.685 2.518 C 28.684 3.416 27.709 4.439 26.825 5.598 C 26.794 5.641 26.762 5.683 26.728 5.726 C 26.776 5.789 26.824 5.853 26.87 5.917 C 28.135 7.626 29.187 9.625 29.8 11.941 C 29.989 11.688 30.184 11.446 30.383 11.212 C 31.004 10.487 31.681 9.854 32.39 9.304 C 32.215 8.099 31.883 6.856 31.357 5.598 Z\" fill=\"rgb(236,139,35)\"></path><path d=\"M 26.872 22.684 L 26.872 22.281 C 26.87 22.411 26.866 22.543 26.862 22.676 C 26.866 22.679 26.869 22.682 26.872 22.684 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 29.804 11.941 C 29.189 9.625 28.138 7.626 26.873 5.917 C 26.825 5.853 26.779 5.789 26.731 5.726 C 25.462 7.419 24.397 9.396 23.752 11.682 C 25.57 14.009 26.829 17.227 26.875 21.672 L 26.875 22.281 L 26.875 22.684 C 26.877 22.685 26.88 22.689 26.881 22.69 C 26.885 22.684 26.888 22.677 26.891 22.671 C 26.747 17.873 27.961 14.421 29.804 11.941 Z\" fill=\"rgb(229,111,37)\"></path><path d=\"M 23.75 11.682 C 23.335 13.149 23.094 14.742 23.082 16.47 L 23.082 16.661 L 23.082 18.094 C 23.095 18.115 23.108 18.137 23.119 18.158 C 23.127 18.166 23.135 18.174 23.143 18.181 C 24.299 19.259 25.371 20.552 26.252 22.1 C 26.413 22.384 26.57 22.676 26.718 22.977 C 26.723 22.987 26.728 22.996 26.733 23.004 L 26.733 22.977 C 26.733 22.975 26.734 22.975 26.734 22.974 C 26.776 22.889 26.819 22.807 26.862 22.724 C 26.862 22.706 26.862 22.69 26.864 22.674 C 26.867 22.543 26.872 22.409 26.873 22.28 L 26.873 21.671 C 26.825 17.227 25.569 14.009 23.75 11.682 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 37.973 6.512 C 36.21 7.039 34.296 7.871 32.56 9.178 C 32.504 9.219 32.448 9.259 32.392 9.303 C 32.817 12.174 32.375 14.83 31.602 17.007 C 31.918 16.759 32.237 16.523 32.558 16.302 C 34.835 14.728 37.203 13.798 39.037 13.258 C 39.509 11.903 39.854 10.436 40.032 8.86 C 39.423 8.012 38.732 7.227 37.973 6.512 Z\" fill=\"rgb(236,139,35)\"></path><path d=\"M 32.393 9.303 C 31.684 9.853 31.007 10.486 30.386 11.21 C 30.186 11.444 29.992 11.687 29.803 11.94 C 30.161 13.286 30.368 14.739 30.386 16.303 L 30.386 16.727 L 30.386 18.051 C 30.784 17.679 31.191 17.331 31.603 17.006 C 32.376 14.83 32.818 12.174 32.393 9.303 Z\" fill=\"rgb(229,111,37)\"></path><path d=\"M 29.803 11.941 C 27.96 14.423 26.747 17.874 26.889 22.672 C 27.831 20.848 29.021 19.346 30.322 18.113 C 30.343 18.092 30.365 18.073 30.386 18.052 L 30.386 16.728 L 30.386 16.305 C 30.368 14.739 30.159 13.286 29.803 11.941 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 20.674 33.32 C 16.689 31.635 11.494 27.52 10.865 19.606 C 10.745 18.096 10.823 16.834 11.138 14.878 C 11.138 14.878 28.924 16.951 25.648 34.539 C 25.648 34.54 23.376 34.465 20.674 33.32 Z\" fill=\"rgb(114,147,61)\"></path><path d=\"M 32.996 33.32 C 36.98 31.635 42.174 27.52 42.8 19.606 C 42.925 18.096 42.843 16.834 42.529 14.878 C 42.529 14.878 24.745 16.951 28.025 34.539 C 28.026 34.54 30.292 34.465 32.996 33.32 Z\" fill=\"rgb(114, 147, 61)\"></path><path d=\"M 53.434 37.038 C 53.434 38.25 52.487 39.2 51.254 39.2 C 50.034 39.2 49.062 38.25 49.062 37.038 C 49.062 35.853 50.034 34.901 51.254 34.901 C 52.487 34.901 53.434 35.853 53.434 37.038 Z M 49.606 37.038 C 49.606 37.988 50.307 38.743 51.267 38.743 C 52.203 38.743 52.889 37.987 52.889 37.049 C 52.889 36.098 52.203 35.331 51.254 35.331 C 50.306 35.332 49.606 36.1 49.606 37.038 Z M 50.916 38.158 L 50.424 38.158 L 50.424 36.021 C 50.617 35.983 50.89 35.956 51.241 35.956 C 51.644 35.956 51.824 36.021 51.981 36.113 C 52.097 36.204 52.188 36.374 52.188 36.581 C 52.188 36.815 52.006 36.998 51.746 37.076 L 51.746 37.102 C 51.954 37.18 52.07 37.336 52.136 37.623 C 52.201 37.95 52.239 38.08 52.292 38.157 L 51.76 38.157 C 51.695 38.078 51.657 37.883 51.591 37.636 C 51.551 37.4 51.422 37.297 51.149 37.297 L 50.916 37.297 Z M 50.93 36.946 L 51.163 36.946 C 51.436 36.946 51.657 36.855 51.657 36.634 C 51.657 36.438 51.514 36.307 51.203 36.307 C 51.074 36.307 50.983 36.32 50.93 36.334 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 8.355 47.987 L 4.518 47.987 L 3.596 50.391 L 2.126 50.391 L 5.921 40.768 L 6.921 40.768 L 10.723 50.391 L 9.26 50.391 Z M 5.016 46.699 L 7.855 46.699 L 6.435 42.95 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 13.682 47.54 L 13.682 40.797 L 15.066 40.797 L 15.066 47.554 C 15.066 48.602 16.184 49.117 17.187 49.117 C 18.173 49.117 19.294 48.585 19.294 47.541 L 19.294 40.799 L 20.676 40.799 L 20.676 47.556 C 20.676 49.484 18.812 50.488 17.187 50.488 C 15.523 50.484 13.682 49.481 13.682 47.54 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 26.626 45.574 L 28.216 45.574 C 29.368 45.574 29.936 44.747 29.936 43.915 C 29.936 43.102 29.368 42.15 28.216 42.15 L 26.125 42.15 L 26.125 50.39 L 24.767 50.39 L 24.767 40.767 L 28.216 40.767 C 30.275 40.767 31.3 42.411 31.3 43.913 C 31.3 45.258 30.479 46.534 28.855 46.821 L 31.841 50.39 L 30.07 50.39 L 26.626 46.225 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 36.102 49.022 L 40.496 49.022 L 40.496 50.392 L 34.723 50.392 L 34.723 40.797 L 40.483 40.797 L 40.483 42.166 L 36.102 42.166 L 36.102 44.84 L 40.391 44.84 L 40.391 46.227 L 36.102 46.227 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 49.171 47.987 L 45.337 47.987 L 44.416 50.391 L 42.942 50.391 L 46.741 40.768 L 47.742 40.768 L 51.541 50.391 L 50.078 50.391 Z M 45.837 46.7 L 48.673 46.7 L 47.257 42.95 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 4.318 53.006 L 4.82 53.006 L 4.82 56.805 L 4.318 56.805 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 7.9 55.318 L 7.9 56.807 L 7.422 56.807 L 7.422 55.345 C 7.422 54.914 7.159 54.651 6.801 54.651 C 6.445 54.651 6.016 54.854 6.016 55.412 L 6.016 56.807 L 5.537 56.807 L 5.537 54.231 L 6.016 54.231 L 6.016 54.622 C 6.169 54.308 6.587 54.176 6.867 54.176 C 7.504 54.176 7.905 54.595 7.9 55.318 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 10.838 55.318 L 10.838 56.807 L 10.359 56.807 L 10.359 55.345 C 10.359 54.914 10.096 54.651 9.74 54.651 C 9.382 54.651 8.954 54.854 8.954 55.412 L 8.954 56.807 L 8.476 56.807 L 8.476 54.231 L 8.954 54.231 L 8.954 54.622 C 9.107 54.308 9.526 54.176 9.805 54.176 C 10.442 54.176 10.843 54.595 10.838 55.318 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 11.239 55.51 C 11.239 54.694 11.847 54.176 12.579 54.176 C 13.31 54.176 13.923 54.694 13.923 55.51 C 13.923 56.326 13.308 56.862 12.579 56.862 C 11.847 56.862 11.239 56.326 11.239 55.51 Z M 13.447 55.51 C 13.447 54.981 13.051 54.627 12.579 54.627 C 12.112 54.627 11.721 54.98 11.721 55.51 C 11.721 56.046 12.112 56.409 12.579 56.409 C 13.05 56.409 13.447 56.046 13.447 55.51 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 16.571 54.231 L 15.501 56.807 L 15.035 56.807 L 13.968 54.231 L 14.479 54.231 L 15.271 56.193 L 16.057 54.231 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 19.29 54.231 L 19.29 56.807 L 18.812 56.807 L 18.812 56.398 C 18.642 56.696 18.268 56.862 17.901 56.862 C 17.198 56.862 16.615 56.326 16.615 55.517 C 16.615 54.701 17.192 54.176 17.896 54.176 C 18.281 54.176 18.643 54.33 18.812 54.633 L 18.812 54.231 Z M 18.811 55.51 C 18.811 54.954 18.361 54.627 17.937 54.627 C 17.471 54.627 17.097 54.991 17.097 55.51 C 17.097 56.023 17.471 56.409 17.937 56.409 C 18.399 56.409 18.811 56.062 18.811 55.51 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 21.135 54.644 L 20.579 54.644 L 20.579 56.807 L 20.102 56.807 L 20.102 54.644 L 19.64 54.644 L 19.64 54.231 L 20.102 54.231 L 20.102 53.255 L 20.579 53.255 L 20.579 54.231 L 21.135 54.231 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 21.347 53.282 C 21.347 53.101 21.502 52.963 21.684 52.963 C 21.871 52.963 22.024 53.101 22.024 53.282 C 22.024 53.465 21.871 53.602 21.684 53.602 C 21.502 53.602 21.347 53.465 21.347 53.282 Z M 21.448 54.231 L 21.925 54.231 L 21.925 56.807 L 21.448 56.807 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 22.36 55.51 C 22.36 54.694 22.97 54.176 23.699 54.176 C 24.429 54.176 25.045 54.694 25.045 55.51 C 25.045 56.326 24.429 56.862 23.699 56.862 C 22.968 56.862 22.36 56.326 22.36 55.51 Z M 24.566 55.51 C 24.566 54.981 24.172 54.627 23.699 54.627 C 23.233 54.627 22.843 54.98 22.843 55.51 C 22.843 56.046 23.233 56.409 23.699 56.409 C 24.172 56.409 24.566 56.046 24.566 55.51 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 27.851 55.318 L 27.851 56.807 L 27.374 56.807 L 27.374 55.345 C 27.374 54.914 27.108 54.651 26.752 54.651 C 26.396 54.651 25.967 54.854 25.967 55.412 L 25.967 56.807 L 25.489 56.807 L 25.489 54.231 L 25.967 54.231 L 25.967 54.622 C 26.122 54.308 26.538 54.176 26.818 54.176 C 27.455 54.176 27.856 54.595 27.851 55.318 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 30.283 53.894 L 30.283 54.231 L 30.882 54.231 L 30.882 54.644 L 30.283 54.644 L 30.283 56.807 L 29.806 56.807 L 29.806 54.644 L 29.311 54.644 L 29.311 54.231 L 29.806 54.231 L 29.806 53.962 C 29.806 53.288 30.087 52.825 30.772 52.825 L 31.046 52.825 L 31.046 53.277 L 30.855 53.277 C 30.398 53.277 30.278 53.558 30.283 53.894 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 30.951 55.51 C 30.951 54.694 31.562 54.176 32.291 54.176 C 33.023 54.176 33.637 54.694 33.637 55.51 C 33.637 56.326 33.023 56.862 32.291 56.862 C 31.563 56.862 30.951 56.326 30.951 55.51 Z M 33.162 55.51 C 33.162 54.981 32.766 54.627 32.293 54.627 C 31.827 54.627 31.437 54.98 31.437 55.51 C 31.437 56.046 31.827 56.409 32.293 56.409 C 32.766 56.409 33.162 56.046 33.162 55.51 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 35.731 54.276 L 35.654 54.728 C 35.517 54.662 35.38 54.64 35.281 54.64 C 34.77 54.64 34.567 55.186 34.567 55.864 L 34.567 56.807 L 34.083 56.807 L 34.083 54.231 L 34.567 54.231 L 34.567 54.816 C 34.698 54.364 34.945 54.176 35.285 54.176 C 35.468 54.176 35.654 54.226 35.731 54.276 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 36.867 54.915 C 36.867 53.835 37.702 52.964 38.78 52.964 C 39.28 52.964 39.724 53.157 40.054 53.46 L 39.708 53.787 C 39.467 53.572 39.136 53.428 38.78 53.428 C 37.983 53.428 37.368 54.099 37.368 54.917 C 37.368 55.733 37.983 56.401 38.78 56.401 C 39.433 56.401 39.933 56.026 40.01 55.436 C 40.016 55.409 40.021 55.375 40.021 55.343 L 38.922 55.343 L 38.922 54.907 L 40.57 54.907 C 40.57 56.236 39.856 56.865 38.78 56.865 C 37.702 56.861 36.867 55.991 36.867 54.915 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 40.762 55.51 C 40.762 54.694 41.37 54.176 42.101 54.176 C 42.833 54.176 43.448 54.694 43.448 55.51 C 43.448 56.326 42.833 56.862 42.101 56.862 C 41.372 56.862 40.762 56.326 40.762 55.51 Z M 42.97 55.51 C 42.97 54.981 42.574 54.627 42.101 54.627 C 41.635 54.627 41.244 54.98 41.244 55.51 C 41.244 56.046 41.635 56.409 42.101 56.409 C 42.574 56.409 42.97 56.046 42.97 55.51 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 43.716 55.51 C 43.716 54.694 44.326 54.176 45.056 54.176 C 45.785 54.176 46.402 54.694 46.402 55.51 C 46.402 56.326 45.785 56.862 45.056 56.862 C 44.326 56.862 43.716 56.326 43.716 55.51 Z M 45.924 55.51 C 45.924 54.981 45.528 54.627 45.056 54.627 C 44.589 54.627 44.2 54.98 44.2 55.51 C 44.2 56.046 44.589 56.409 45.056 56.409 C 45.528 56.409 45.924 56.046 45.924 55.51 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path><path d=\"M 49.352 52.825 L 49.352 56.807 L 48.874 56.807 L 48.874 56.398 C 48.704 56.696 48.33 56.862 47.963 56.862 C 47.26 56.862 46.677 56.326 46.677 55.517 C 46.677 54.701 47.254 54.176 47.956 54.176 C 48.341 54.176 48.705 54.33 48.874 54.633 L 48.874 52.825 Z M 48.873 55.51 C 48.873 54.954 48.423 54.627 47.999 54.627 C 47.533 54.627 47.158 54.991 47.158 55.51 C 47.158 56.023 47.532 56.409 47.999 56.409 C 48.461 56.409 48.873 56.062 48.873 55.51 Z\" fill=\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)) /* {&quot;name&quot;:&quot;Text Primary&quot;} */\"></path></svg>',svgContentId:9992887972}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1wfxg2g\",\"data-framer-name\":\"White\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"XrFxG6U_J\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 89 92\"><path d=\"M 63.836 14.111 C 63.765 14.011 63.696 13.908 63.623 13.808 C 62.653 12.486 61.554 11.261 60.352 10.149 C 59.811 9.649 59.248 9.174 58.666 8.722 C 56.593 7.112 54.266 5.809 51.748 4.884 C 50.632 4.474 49.477 4.142 48.292 3.887 C 48 3.825 47.708 3.767 47.414 3.715 C 47.274 3.69 47.132 3.665 46.992 3.64 C 45.63 3.42 44.231 3.302 42.805 3.302 C 41.087 3.302 39.412 3.47 37.79 3.785 C 37.724 3.797 37.661 3.81 37.595 3.825 C 37.288 3.887 36.983 3.952 36.681 4.025 C 35.651 4.272 34.646 4.584 33.669 4.949 C 31.217 5.869 28.948 7.147 26.923 8.719 C 26.327 9.181 25.753 9.671 25.2 10.184 C 23.954 11.341 22.822 12.619 21.827 13.998 C 21.754 14.101 21.683 14.203 21.609 14.308 C 20.373 16.081 19.353 18.015 18.599 20.073 C 19.061 20.133 20.14 20.293 21.609 20.638 C 22.203 20.778 22.86 20.948 23.568 21.155 C 26.444 21.998 30.136 23.44 33.669 25.872 C 34.694 26.58 35.707 27.367 36.681 28.252 C 36.702 28.269 36.722 28.287 36.74 28.304 C 36.752 28.317 36.765 28.329 36.778 28.339 C 38.615 30.022 40.318 32.036 41.719 34.451 C 41.975 34.894 42.224 35.349 42.46 35.819 C 42.467 35.834 42.475 35.849 42.483 35.861 L 42.483 35.819 C 42.483 35.816 42.485 35.816 42.485 35.814 C 42.551 35.681 42.62 35.554 42.688 35.424 C 42.693 35.411 42.701 35.401 42.706 35.389 C 42.709 35.381 42.714 35.374 42.716 35.369 C 42.721 35.359 42.726 35.349 42.731 35.339 C 44.229 32.494 46.119 30.152 48.188 28.229 C 48.221 28.197 48.256 28.167 48.289 28.134 C 48.921 27.554 49.568 27.012 50.223 26.505 C 50.725 26.117 51.233 25.75 51.743 25.405 C 55.362 22.95 59.126 21.5 62.039 20.658 C 62.681 20.473 63.283 20.315 63.831 20.185 C 65.199 19.86 66.247 19.69 66.808 19.61 C 66.049 17.656 65.044 15.808 63.836 14.111 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 63.837 14.116 C 63.766 14.016 63.698 13.913 63.624 13.813 C 63.342 16.273 62.794 18.558 62.043 20.67 C 62.685 20.485 63.287 20.328 63.835 20.198 C 65.203 19.873 66.251 19.703 66.812 19.623 C 66.05 17.661 65.045 15.813 63.837 14.116 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 21.827 14.008 C 21.754 14.111 21.683 14.213 21.609 14.318 C 20.373 16.091 19.353 18.026 18.599 20.083 C 19.061 20.143 20.14 20.303 21.609 20.648 C 22.203 20.788 22.86 20.958 23.568 21.165 C 22.741 18.975 22.134 16.591 21.827 14.008 Z\" fill=\"rgb(246,178,26)\"></path><path d=\"M 36.682 28.262 C 36.702 28.28 36.722 28.297 36.74 28.314 C 36.72 28.282 36.7 28.247 36.682 28.214 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 33.875 14.459 C 33.806 14.406 33.738 14.359 33.669 14.306 C 30.954 12.304 27.964 11.016 25.201 10.191 C 23.955 11.349 22.823 12.626 21.828 14.006 C 22.135 16.588 22.742 18.973 23.569 21.163 C 26.444 22.005 30.137 23.447 33.669 25.88 C 34.695 26.587 35.707 27.375 36.682 28.26 L 36.682 28.212 C 33.855 23.41 33.299 18.685 33.875 14.459 Z\" fill=\"rgb(236,139,35)\"></path><path d=\"M 42.706 35.404 C 42.709 35.396 42.714 35.389 42.717 35.384 C 42.714 35.381 42.709 35.376 42.706 35.374 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 42.692 35.359 C 42.692 35.386 42.692 35.411 42.689 35.436 C 42.694 35.424 42.702 35.414 42.707 35.401 L 42.707 35.371 C 42.702 35.369 42.697 35.364 42.692 35.359 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 58.664 8.729 C 56.59 7.119 54.263 5.817 51.746 4.892 C 50.629 4.482 49.474 4.15 48.289 3.895 C 47.997 3.832 47.706 3.775 47.411 3.722 C 47.272 3.697 47.129 3.672 46.99 3.647 C 45.627 3.427 44.229 3.31 42.802 3.31 C 41.084 3.31 39.409 3.477 37.788 3.792 C 37.722 3.805 37.658 3.817 37.592 3.832 C 37.285 3.895 36.981 3.96 36.679 4.032 C 35.648 4.28 34.643 4.592 33.666 4.957 C 31.215 5.877 28.946 7.154 26.921 8.727 C 26.324 9.189 25.751 9.679 25.198 10.191 C 27.961 11.016 30.951 12.301 33.666 14.306 C 33.735 14.356 33.803 14.406 33.872 14.458 C 34.151 12.416 34.692 10.491 35.369 8.729 C 35.768 7.692 36.212 6.712 36.679 5.797 C 37.014 5.139 37.359 4.517 37.704 3.93 C 39.315 5.319 40.891 6.917 42.318 8.729 L 42.627 8.729 C 44.031 6.922 45.584 5.327 47.173 3.927 C 47.571 4.507 47.944 5.087 48.284 5.664 C 48.888 6.692 49.398 7.714 49.83 8.729 C 50.662 10.694 51.19 12.629 51.474 14.508 C 51.563 14.441 51.652 14.378 51.741 14.313 C 54.499 12.276 57.545 10.979 60.344 10.156 C 59.811 9.656 59.248 9.182 58.664 8.729 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 42.633 8.729 L 42.323 8.729 C 42.377 8.797 42.427 8.862 42.481 8.929 C 42.532 8.862 42.582 8.794 42.633 8.729 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 42.323 8.729 C 40.897 6.917 39.318 5.322 37.709 3.93 C 37.364 4.515 37.019 5.139 36.684 5.797 C 36.22 6.712 35.773 7.692 35.375 8.729 C 34.697 10.491 34.154 12.416 33.877 14.459 C 34.859 15.201 35.803 16.038 36.684 16.983 C 37.05 17.376 37.402 17.786 37.745 18.216 C 38.77 14.651 40.465 11.569 42.48 8.929 C 42.427 8.862 42.376 8.794 42.323 8.729 Z\" fill=\"rgb(236,139,35)\"></path><path d=\"M 36.682 16.983 C 35.801 16.038 34.857 15.198 33.875 14.459 C 33.299 18.686 33.855 23.41 36.682 28.215 L 36.682 25.98 L 36.682 25.682 C 36.699 22.988 37.085 20.503 37.743 18.216 C 37.402 17.786 37.047 17.376 36.682 16.983 Z\" fill=\"rgb(229,111,37)\"></path><path d=\"M 49.836 8.729 C 49.404 7.714 48.894 6.689 48.29 5.664 C 47.95 5.087 47.577 4.507 47.179 3.927 C 45.587 5.327 44.037 6.922 42.633 8.729 C 42.583 8.797 42.532 8.862 42.479 8.929 C 42.555 9.027 42.631 9.127 42.704 9.227 C 44.714 11.891 46.387 15.009 47.361 18.621 C 47.661 18.226 47.97 17.848 48.288 17.483 C 49.275 16.353 50.351 15.366 51.478 14.509 C 51.199 12.629 50.671 10.691 49.836 8.729 Z\" fill=\"rgb(236,139,35)\"></path><path d=\"M 42.707 35.371 L 42.707 34.744 C 42.705 34.946 42.697 35.151 42.692 35.359 C 42.697 35.364 42.702 35.369 42.707 35.371 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 47.366 18.621 C 46.389 15.009 44.719 11.891 42.709 9.227 C 42.633 9.127 42.56 9.027 42.484 8.929 C 40.466 11.569 38.773 14.651 37.748 18.216 C 40.639 21.845 42.638 26.862 42.712 33.794 L 42.712 34.744 L 42.712 35.371 C 42.715 35.374 42.72 35.379 42.722 35.381 C 42.727 35.371 42.732 35.361 42.737 35.351 C 42.509 27.87 44.438 22.488 47.366 18.621 Z\" fill=\"rgb(229,111,37)\"></path><path d=\"M 37.745 18.215 C 37.086 20.503 36.702 22.987 36.685 25.682 L 36.685 25.98 L 36.685 28.214 C 36.705 28.247 36.725 28.282 36.743 28.314 C 36.756 28.327 36.768 28.339 36.781 28.349 C 38.618 30.032 40.321 32.046 41.722 34.461 C 41.979 34.904 42.227 35.359 42.463 35.829 C 42.471 35.843 42.478 35.859 42.486 35.871 L 42.486 35.829 C 42.486 35.826 42.489 35.826 42.489 35.824 C 42.555 35.691 42.623 35.564 42.692 35.434 C 42.692 35.406 42.692 35.381 42.694 35.356 C 42.699 35.151 42.707 34.944 42.709 34.741 L 42.709 33.791 C 42.633 26.862 40.636 21.845 37.745 18.215 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 60.35 10.154 C 57.549 10.976 54.506 12.274 51.747 14.311 C 51.658 14.376 51.569 14.438 51.481 14.506 C 52.156 18.983 51.453 23.125 50.224 26.52 C 50.727 26.132 51.234 25.765 51.744 25.42 C 55.363 22.965 59.127 21.515 62.04 20.673 C 62.792 18.561 63.34 16.273 63.622 13.816 C 62.655 12.494 61.556 11.269 60.35 10.154 Z\" fill=\"rgb(236,139,35)\"></path><path d=\"M 51.482 14.506 C 50.355 15.363 49.279 16.351 48.292 17.481 C 47.975 17.846 47.665 18.223 47.366 18.618 C 47.934 20.718 48.264 22.982 48.292 25.422 L 48.292 26.082 L 48.292 28.147 C 48.924 27.567 49.571 27.025 50.226 26.517 C 51.454 23.125 52.157 18.983 51.482 14.506 Z\" fill=\"rgb(229,111,37)\"></path><path d=\"M 47.366 18.621 C 44.437 22.49 42.508 27.872 42.734 35.354 C 44.232 32.509 46.122 30.167 48.191 28.244 C 48.224 28.212 48.259 28.182 48.292 28.149 L 48.292 26.085 L 48.292 25.425 C 48.264 22.982 47.932 20.718 47.366 18.621 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 32.857 51.957 C 26.523 49.33 18.267 42.913 17.267 30.572 C 17.077 28.217 17.202 26.25 17.701 23.2 C 17.701 23.2 45.968 26.432 40.763 53.857 C 40.763 53.859 37.151 53.742 32.857 51.957 Z\" fill=\"rgb(114,147,61)\"></path><path d=\"M 52.44 51.957 C 58.772 49.33 67.027 42.913 68.022 30.572 C 68.22 28.217 68.09 26.25 67.591 23.2 C 67.591 23.2 39.327 26.432 44.539 53.857 C 44.542 53.859 48.143 53.742 52.44 51.957 Z\" fill=\"rgb(114, 147, 61)\"></path><path d=\"M 84.922 57.754 C 84.922 59.644 83.417 61.126 81.457 61.126 C 79.519 61.126 77.973 59.644 77.973 57.754 C 77.973 55.906 79.519 54.422 81.457 54.422 C 83.417 54.422 84.922 55.906 84.922 57.754 Z M 78.838 57.754 C 78.838 59.236 79.952 60.414 81.478 60.414 C 82.965 60.414 84.056 59.234 84.056 57.771 C 84.056 56.289 82.965 55.092 81.457 55.092 C 79.95 55.094 78.838 56.291 78.838 57.754 Z M 80.919 59.501 L 80.138 59.501 L 80.138 56.169 C 80.445 56.109 80.879 56.066 81.437 56.066 C 82.077 56.066 82.363 56.169 82.612 56.311 C 82.797 56.454 82.942 56.719 82.942 57.041 C 82.942 57.406 82.653 57.691 82.239 57.814 L 82.239 57.854 C 82.569 57.976 82.754 58.219 82.858 58.666 C 82.962 59.176 83.023 59.379 83.107 59.499 L 82.262 59.499 C 82.158 59.376 82.097 59.071 81.993 58.686 C 81.93 58.319 81.724 58.159 81.29 58.159 L 80.919 58.159 Z M 80.942 57.611 L 81.313 57.611 C 81.747 57.611 82.097 57.469 82.097 57.124 C 82.097 56.819 81.871 56.614 81.376 56.614 C 81.171 56.614 81.026 56.634 80.942 56.656 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 13.278 74.826 L 7.18 74.826 L 5.716 78.576 L 3.378 78.576 L 9.411 63.57 L 10.999 63.57 L 17.042 78.576 L 14.717 78.576 Z M 7.972 72.819 L 12.484 72.819 L 10.228 66.972 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 21.744 74.13 L 21.744 63.616 L 23.944 63.616 L 23.944 74.152 C 23.944 75.787 25.721 76.589 27.314 76.589 C 28.883 76.589 30.664 75.759 30.664 74.132 L 30.664 63.618 L 32.86 63.618 L 32.86 74.155 C 32.86 77.162 29.898 78.727 27.314 78.727 C 24.67 78.722 21.744 77.157 21.744 74.13 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 42.316 71.065 L 44.844 71.065 C 46.674 71.065 47.577 69.775 47.577 68.478 C 47.577 67.21 46.674 65.725 44.844 65.725 L 41.519 65.725 L 41.519 78.574 L 39.362 78.574 L 39.362 63.568 L 44.844 63.568 C 48.115 63.568 49.745 66.133 49.745 68.475 C 49.745 70.572 48.44 72.562 45.859 73.01 L 50.605 78.574 L 47.79 78.574 L 42.316 72.08 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 57.376 76.442 L 64.36 76.442 L 64.36 78.577 L 55.186 78.577 L 55.186 63.616 L 64.34 63.616 L 64.34 65.75 L 57.376 65.75 L 57.376 69.92 L 64.192 69.92 L 64.192 72.082 L 57.376 72.082 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 78.147 74.827 L 72.054 74.827 L 70.589 78.576 L 68.247 78.576 L 74.284 63.571 L 75.876 63.571 L 81.913 78.576 L 79.589 78.576 Z M 72.848 72.82 L 77.355 72.82 L 75.104 66.973 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 6.863 82.654 L 7.66 82.654 L 7.66 88.578 L 6.863 88.578 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 12.555 86.258 L 12.555 88.58 L 11.796 88.58 L 11.796 86.301 C 11.796 85.628 11.378 85.218 10.809 85.218 C 10.243 85.218 9.561 85.536 9.561 86.406 L 9.561 88.58 L 8.799 88.58 L 8.799 84.563 L 9.561 84.563 L 9.561 85.173 C 9.804 84.683 10.469 84.478 10.913 84.478 C 11.926 84.478 12.563 85.131 12.555 86.258 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 17.225 86.258 L 17.225 88.58 L 16.463 88.58 L 16.463 86.301 C 16.463 85.628 16.045 85.218 15.479 85.218 C 14.91 85.218 14.23 85.536 14.23 86.406 L 14.23 88.58 L 13.471 88.58 L 13.471 84.563 L 14.23 84.563 L 14.23 85.173 C 14.474 84.683 15.139 84.478 15.583 84.478 C 16.596 84.478 17.232 85.131 17.225 86.258 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 17.862 86.558 C 17.862 85.286 18.829 84.478 19.991 84.478 C 21.153 84.478 22.128 85.286 22.128 86.558 C 22.128 87.831 21.151 88.665 19.991 88.665 C 18.829 88.665 17.862 87.831 17.862 86.558 Z M 21.372 86.558 C 21.372 85.733 20.742 85.181 19.991 85.181 C 19.25 85.181 18.628 85.731 18.628 86.558 C 18.628 87.393 19.25 87.96 19.991 87.96 C 20.74 87.96 21.372 87.393 21.372 86.558 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 26.336 84.563 L 24.636 88.58 L 23.895 88.58 L 22.199 84.563 L 23.012 84.563 L 24.27 87.623 L 25.519 84.563 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 30.657 84.563 L 30.657 88.58 L 29.898 88.58 L 29.898 87.943 C 29.627 88.408 29.033 88.665 28.449 88.665 C 27.333 88.665 26.406 87.831 26.406 86.568 C 26.406 85.296 27.322 84.478 28.442 84.478 C 29.053 84.478 29.629 84.718 29.898 85.191 L 29.898 84.563 Z M 29.896 86.558 C 29.896 85.691 29.18 85.181 28.507 85.181 C 27.767 85.181 27.173 85.748 27.173 86.558 C 27.173 87.358 27.767 87.96 28.507 87.96 C 29.241 87.96 29.896 87.418 29.896 86.558 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 33.589 85.208 L 32.706 85.208 L 32.706 88.58 L 31.947 88.58 L 31.947 85.208 L 31.214 85.208 L 31.214 84.563 L 31.947 84.563 L 31.947 83.041 L 32.706 83.041 L 32.706 84.563 L 33.589 84.563 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 33.927 83.083 C 33.927 82.801 34.173 82.586 34.463 82.586 C 34.76 82.586 35.003 82.801 35.003 83.083 C 35.003 83.369 34.76 83.583 34.463 83.583 C 34.173 83.583 33.927 83.369 33.927 83.083 Z M 34.087 84.563 L 34.846 84.563 L 34.846 88.58 L 34.087 88.58 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 35.536 86.558 C 35.536 85.286 36.505 84.478 37.665 84.478 C 38.825 84.478 39.804 85.286 39.804 86.558 C 39.804 87.831 38.825 88.665 37.665 88.665 C 36.503 88.665 35.536 87.831 35.536 86.558 Z M 39.043 86.558 C 39.043 85.733 38.416 85.181 37.665 85.181 C 36.924 85.181 36.305 85.731 36.305 86.558 C 36.305 87.393 36.924 87.96 37.665 87.96 C 38.416 87.96 39.043 87.393 39.043 86.558 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 44.263 86.258 L 44.263 88.58 L 43.504 88.58 L 43.504 86.301 C 43.504 85.628 43.083 85.218 42.517 85.218 C 41.951 85.218 41.269 85.536 41.269 86.406 L 41.269 88.58 L 40.51 88.58 L 40.51 84.563 L 41.269 84.563 L 41.269 85.173 C 41.515 84.683 42.177 84.478 42.621 84.478 C 43.634 84.478 44.271 85.131 44.263 86.258 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 48.128 84.038 L 48.128 84.563 L 49.08 84.563 L 49.08 85.208 L 48.128 85.208 L 48.128 88.58 L 47.37 88.58 L 47.37 85.208 L 46.583 85.208 L 46.583 84.563 L 47.37 84.563 L 47.37 84.143 C 47.37 83.094 47.816 82.371 48.905 82.371 L 49.341 82.371 L 49.341 83.076 L 49.037 83.076 C 48.311 83.076 48.121 83.513 48.128 84.038 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 49.191 86.558 C 49.191 85.286 50.16 84.478 51.32 84.478 C 52.482 84.478 53.459 85.286 53.459 86.558 C 53.459 87.831 52.482 88.665 51.32 88.665 C 50.163 88.665 49.191 87.831 49.191 86.558 Z M 52.703 86.558 C 52.703 85.733 52.074 85.181 51.323 85.181 C 50.582 85.181 49.962 85.731 49.962 86.558 C 49.962 87.393 50.582 87.96 51.323 87.96 C 52.074 87.96 52.703 87.393 52.703 86.558 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 56.787 84.633 L 56.665 85.338 C 56.447 85.236 56.228 85.201 56.071 85.201 C 55.259 85.201 54.937 86.053 54.937 87.111 L 54.937 88.58 L 54.168 88.58 L 54.168 84.563 L 54.937 84.563 L 54.937 85.476 C 55.145 84.771 55.538 84.478 56.079 84.478 C 56.368 84.478 56.665 84.556 56.787 84.633 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 58.592 85.631 C 58.592 83.946 59.92 82.589 61.633 82.589 C 62.427 82.589 63.132 82.889 63.658 83.361 L 63.107 83.871 C 62.724 83.536 62.198 83.311 61.633 83.311 C 60.366 83.311 59.389 84.358 59.389 85.633 C 59.389 86.905 60.366 87.948 61.633 87.948 C 62.67 87.948 63.465 87.363 63.587 86.443 C 63.597 86.401 63.604 86.348 63.604 86.298 L 61.858 86.298 L 61.858 85.618 L 64.477 85.618 C 64.477 87.69 63.343 88.67 61.633 88.67 C 59.92 88.665 58.592 87.308 58.592 85.631 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 64.782 86.558 C 64.782 85.286 65.749 84.478 66.911 84.478 C 68.074 84.478 69.051 85.286 69.051 86.558 C 69.051 87.831 68.074 88.665 66.911 88.665 C 65.751 88.665 64.782 87.831 64.782 86.558 Z M 68.292 86.558 C 68.292 85.733 67.662 85.181 66.911 85.181 C 66.17 85.181 65.548 85.731 65.548 86.558 C 65.548 87.393 66.17 87.96 66.911 87.96 C 67.662 87.96 68.292 87.393 68.292 86.558 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 69.477 86.558 C 69.477 85.286 70.446 84.478 71.606 84.478 C 72.766 84.478 73.746 85.286 73.746 86.558 C 73.746 87.831 72.766 88.665 71.606 88.665 C 70.446 88.665 69.477 87.831 69.477 86.558 Z M 72.987 86.558 C 72.987 85.733 72.357 85.181 71.606 85.181 C 70.865 85.181 70.246 85.731 70.246 86.558 C 70.246 87.393 70.865 87.96 71.606 87.96 C 72.357 87.96 72.987 87.393 72.987 86.558 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 78.434 82.371 L 78.434 88.58 L 77.676 88.58 L 77.676 87.943 C 77.404 88.408 76.81 88.665 76.226 88.665 C 75.11 88.665 74.183 87.831 74.183 86.568 C 74.183 85.296 75.1 84.478 76.216 84.478 C 76.828 84.478 77.406 84.718 77.676 85.191 L 77.676 82.371 Z M 77.673 86.558 C 77.673 85.691 76.957 85.181 76.285 85.181 C 75.544 85.181 74.947 85.748 74.947 86.558 C 74.947 87.358 75.541 87.96 76.285 87.96 C 77.018 87.96 77.673 87.418 77.673 86.558 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path></svg>',svgContentId:10313889546,withExternalLayout:true,...addPropertyOverrides({FxDjXgRNk:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 56 59\"><path d=\"M 40.166 9.049 C 40.122 8.985 40.079 8.92 40.032 8.855 C 39.422 8.007 38.731 7.222 37.974 6.509 C 37.634 6.188 37.279 5.883 36.914 5.593 C 35.609 4.561 34.145 3.726 32.561 3.132 C 31.858 2.87 31.132 2.656 30.386 2.493 C 30.202 2.453 30.019 2.416 29.833 2.382 C 29.745 2.366 29.656 2.35 29.568 2.334 C 28.711 2.193 27.831 2.118 26.934 2.118 C 25.852 2.118 24.799 2.225 23.778 2.427 C 23.737 2.435 23.697 2.443 23.655 2.453 C 23.462 2.493 23.27 2.534 23.08 2.581 C 22.432 2.74 21.8 2.94 21.185 3.174 C 19.642 3.764 18.215 4.583 16.941 5.592 C 16.565 5.888 16.204 6.202 15.856 6.531 C 15.072 7.273 14.36 8.092 13.734 8.977 C 13.688 9.043 13.643 9.109 13.597 9.176 C 12.819 10.313 12.177 11.553 11.703 12.873 C 11.993 12.911 12.672 13.014 13.597 13.235 C 13.97 13.325 14.384 13.434 14.83 13.567 C 16.639 14.107 18.962 15.032 21.185 16.592 C 21.83 17.046 22.467 17.551 23.08 18.118 C 23.093 18.129 23.106 18.14 23.117 18.152 C 23.125 18.16 23.133 18.168 23.141 18.174 C 24.297 19.253 25.369 20.545 26.25 22.094 C 26.411 22.378 26.568 22.669 26.716 22.971 C 26.721 22.98 26.726 22.99 26.731 22.998 L 26.731 22.971 C 26.731 22.969 26.732 22.969 26.732 22.967 C 26.774 22.882 26.817 22.801 26.86 22.717 C 26.863 22.709 26.868 22.703 26.871 22.695 C 26.873 22.69 26.876 22.685 26.878 22.682 C 26.881 22.676 26.884 22.669 26.887 22.663 C 27.829 20.839 29.019 19.336 30.32 18.104 C 30.341 18.083 30.363 18.064 30.384 18.043 C 30.782 17.671 31.189 17.323 31.601 16.998 C 31.917 16.749 32.237 16.513 32.558 16.292 C 34.835 14.718 37.203 13.788 39.036 13.248 C 39.44 13.129 39.818 13.028 40.163 12.945 C 41.024 12.737 41.683 12.627 42.036 12.576 C 41.559 11.323 40.927 10.138 40.166 9.049 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 40.167 9.053 C 40.123 8.988 40.079 8.923 40.033 8.859 C 39.856 10.436 39.511 11.901 39.038 13.256 C 39.442 13.137 39.821 13.036 40.166 12.953 C 41.026 12.745 41.686 12.635 42.039 12.584 C 41.56 11.326 40.927 10.141 40.167 9.053 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 13.734 8.984 C 13.688 9.049 13.643 9.115 13.597 9.182 C 12.819 10.319 12.177 11.56 11.703 12.879 C 11.993 12.918 12.672 13.02 13.597 13.241 C 13.97 13.331 14.384 13.44 14.83 13.573 C 14.309 12.169 13.927 10.64 13.734 8.984 Z\" fill=\"rgb(246,178,26)\"></path><path d=\"M 23.081 18.125 C 23.093 18.136 23.106 18.147 23.117 18.158 C 23.105 18.137 23.092 18.115 23.081 18.094 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 21.315 9.272 C 21.271 9.239 21.228 9.208 21.185 9.175 C 19.477 7.89 17.596 7.065 15.857 6.536 C 15.073 7.278 14.36 8.097 13.734 8.982 C 13.928 10.638 14.309 12.167 14.83 13.572 C 16.639 14.112 18.962 15.037 21.185 16.597 C 21.83 17.05 22.468 17.555 23.081 18.123 L 23.081 18.092 C 21.302 15.013 20.952 11.983 21.315 9.272 Z\" fill=\"rgb(236,139,35)\"></path><path d=\"M 26.871 22.705 C 26.873 22.7 26.876 22.695 26.878 22.692 C 26.876 22.69 26.873 22.687 26.871 22.685 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 26.862 22.676 C 26.862 22.693 26.862 22.709 26.861 22.725 C 26.864 22.717 26.869 22.711 26.872 22.703 L 26.872 22.684 C 26.869 22.682 26.865 22.679 26.862 22.676 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 36.912 5.598 C 35.607 4.566 34.143 3.73 32.559 3.137 C 31.857 2.874 31.13 2.661 30.384 2.498 C 30.201 2.458 30.017 2.421 29.832 2.387 C 29.744 2.371 29.655 2.355 29.567 2.339 C 28.709 2.198 27.829 2.122 26.932 2.122 C 25.851 2.122 24.797 2.23 23.777 2.432 C 23.735 2.44 23.695 2.448 23.654 2.458 C 23.46 2.498 23.269 2.539 23.079 2.586 C 22.43 2.744 21.798 2.945 21.183 3.179 C 19.641 3.769 18.213 4.588 16.939 5.596 C 16.564 5.893 16.203 6.207 15.855 6.536 C 17.594 7.065 19.475 7.889 21.183 9.174 C 21.226 9.207 21.27 9.239 21.313 9.272 C 21.488 7.963 21.828 6.728 22.255 5.598 C 22.505 4.933 22.785 4.304 23.079 3.718 C 23.289 3.296 23.507 2.897 23.724 2.52 C 24.738 3.411 25.729 4.436 26.627 5.598 L 26.822 5.598 C 27.705 4.439 28.682 3.416 29.682 2.518 C 29.932 2.89 30.167 3.262 30.381 3.633 C 30.761 4.291 31.082 4.947 31.354 5.598 C 31.877 6.858 32.209 8.099 32.388 9.304 C 32.444 9.261 32.5 9.221 32.556 9.179 C 34.292 7.873 36.208 7.041 37.969 6.513 C 37.634 6.193 37.279 5.888 36.912 5.598 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 26.825 5.598 L 26.63 5.598 C 26.664 5.641 26.696 5.683 26.729 5.726 C 26.761 5.683 26.793 5.64 26.825 5.598 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 26.63 5.598 C 25.733 4.436 24.74 3.413 23.727 2.52 C 23.51 2.895 23.293 3.296 23.082 3.718 C 22.79 4.304 22.509 4.933 22.258 5.598 C 21.832 6.728 21.49 7.963 21.316 9.272 C 21.934 9.748 22.528 10.285 23.082 10.891 C 23.312 11.143 23.534 11.406 23.75 11.682 C 24.395 9.396 25.461 7.419 26.729 5.726 C 26.696 5.683 26.664 5.64 26.63 5.598 Z\" fill=\"rgb(236,139,35)\"></path><path d=\"M 23.081 10.891 C 22.527 10.285 21.932 9.747 21.315 9.272 C 20.952 11.983 21.302 15.013 23.081 18.094 L 23.081 16.661 L 23.081 16.47 C 23.092 14.742 23.335 13.149 23.748 11.682 C 23.534 11.406 23.311 11.143 23.081 10.891 Z\" fill=\"rgb(229,111,37)\"></path><path d=\"M 31.357 5.598 C 31.086 4.947 30.765 4.29 30.385 3.633 C 30.171 3.262 29.936 2.89 29.685 2.518 C 28.684 3.416 27.709 4.439 26.825 5.598 C 26.794 5.641 26.762 5.683 26.728 5.726 C 26.776 5.789 26.824 5.853 26.87 5.917 C 28.135 7.626 29.187 9.625 29.8 11.941 C 29.989 11.688 30.184 11.446 30.383 11.212 C 31.004 10.487 31.681 9.854 32.39 9.304 C 32.215 8.099 31.883 6.856 31.357 5.598 Z\" fill=\"rgb(236,139,35)\"></path><path d=\"M 26.872 22.684 L 26.872 22.281 C 26.87 22.411 26.866 22.543 26.862 22.676 C 26.866 22.679 26.869 22.682 26.872 22.684 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 29.804 11.941 C 29.189 9.625 28.138 7.626 26.873 5.917 C 26.825 5.853 26.779 5.789 26.731 5.726 C 25.462 7.419 24.397 9.396 23.752 11.682 C 25.57 14.009 26.829 17.227 26.875 21.672 L 26.875 22.281 L 26.875 22.684 C 26.877 22.685 26.88 22.689 26.881 22.69 C 26.885 22.684 26.888 22.677 26.891 22.671 C 26.747 17.873 27.961 14.421 29.804 11.941 Z\" fill=\"rgb(229,111,37)\"></path><path d=\"M 23.75 11.682 C 23.335 13.149 23.094 14.742 23.082 16.47 L 23.082 16.661 L 23.082 18.094 C 23.095 18.115 23.108 18.137 23.119 18.158 C 23.127 18.166 23.135 18.174 23.143 18.181 C 24.299 19.259 25.371 20.552 26.252 22.1 C 26.413 22.384 26.57 22.676 26.718 22.977 C 26.723 22.987 26.728 22.996 26.733 23.004 L 26.733 22.977 C 26.733 22.975 26.734 22.975 26.734 22.974 C 26.776 22.889 26.819 22.807 26.862 22.724 C 26.862 22.706 26.862 22.69 26.864 22.674 C 26.867 22.543 26.872 22.409 26.873 22.28 L 26.873 21.671 C 26.825 17.227 25.569 14.009 23.75 11.682 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 37.973 6.512 C 36.21 7.039 34.296 7.871 32.56 9.178 C 32.504 9.219 32.448 9.259 32.392 9.303 C 32.817 12.174 32.375 14.83 31.602 17.007 C 31.918 16.759 32.237 16.523 32.558 16.302 C 34.835 14.728 37.203 13.798 39.037 13.258 C 39.509 11.903 39.854 10.436 40.032 8.86 C 39.423 8.012 38.732 7.227 37.973 6.512 Z\" fill=\"rgb(236,139,35)\"></path><path d=\"M 32.393 9.303 C 31.684 9.853 31.007 10.486 30.386 11.21 C 30.186 11.444 29.992 11.687 29.803 11.94 C 30.161 13.286 30.368 14.739 30.386 16.303 L 30.386 16.727 L 30.386 18.051 C 30.784 17.679 31.191 17.331 31.603 17.006 C 32.376 14.83 32.818 12.174 32.393 9.303 Z\" fill=\"rgb(229,111,37)\"></path><path d=\"M 29.803 11.941 C 27.96 14.423 26.747 17.874 26.889 22.672 C 27.831 20.848 29.021 19.346 30.322 18.113 C 30.343 18.092 30.365 18.073 30.386 18.052 L 30.386 16.728 L 30.386 16.305 C 30.368 14.739 30.159 13.286 29.803 11.941 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 20.674 33.32 C 16.689 31.635 11.494 27.52 10.865 19.606 C 10.745 18.096 10.823 16.834 11.138 14.878 C 11.138 14.878 28.924 16.951 25.648 34.539 C 25.648 34.54 23.376 34.465 20.674 33.32 Z\" fill=\"rgb(114,147,61)\"></path><path d=\"M 32.996 33.32 C 36.98 31.635 42.174 27.52 42.8 19.606 C 42.925 18.096 42.843 16.834 42.529 14.878 C 42.529 14.878 24.745 16.951 28.025 34.539 C 28.026 34.54 30.292 34.465 32.996 33.32 Z\" fill=\"rgb(114, 147, 61)\"></path><path d=\"M 53.434 37.038 C 53.434 38.25 52.487 39.2 51.254 39.2 C 50.034 39.2 49.062 38.25 49.062 37.038 C 49.062 35.853 50.034 34.901 51.254 34.901 C 52.487 34.901 53.434 35.853 53.434 37.038 Z M 49.606 37.038 C 49.606 37.988 50.307 38.743 51.267 38.743 C 52.203 38.743 52.889 37.987 52.889 37.049 C 52.889 36.098 52.203 35.33 51.254 35.33 C 50.306 35.332 49.606 36.1 49.606 37.038 Z M 50.916 38.158 L 50.424 38.158 L 50.424 36.021 C 50.617 35.983 50.89 35.956 51.241 35.956 C 51.644 35.956 51.824 36.021 51.981 36.113 C 52.097 36.204 52.188 36.374 52.188 36.581 C 52.188 36.815 52.006 36.998 51.746 37.076 L 51.746 37.102 C 51.954 37.18 52.07 37.336 52.136 37.623 C 52.201 37.95 52.239 38.08 52.292 38.157 L 51.76 38.157 C 51.695 38.078 51.657 37.883 51.591 37.636 C 51.551 37.4 51.422 37.297 51.149 37.297 L 50.916 37.297 Z M 50.93 36.946 L 51.163 36.946 C 51.436 36.946 51.657 36.855 51.657 36.634 C 51.657 36.438 51.514 36.307 51.203 36.307 C 51.074 36.307 50.983 36.32 50.93 36.334 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 8.355 47.987 L 4.518 47.987 L 3.596 50.391 L 2.126 50.391 L 5.921 40.768 L 6.921 40.768 L 10.723 50.391 L 9.26 50.391 Z M 5.016 46.699 L 7.855 46.699 L 6.435 42.95 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 13.682 47.54 L 13.682 40.797 L 15.066 40.797 L 15.066 47.554 C 15.066 48.602 16.184 49.117 17.187 49.117 C 18.173 49.117 19.294 48.585 19.294 47.541 L 19.294 40.799 L 20.676 40.799 L 20.676 47.556 C 20.676 49.484 18.812 50.488 17.187 50.488 C 15.523 50.484 13.682 49.481 13.682 47.54 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 26.626 45.574 L 28.216 45.574 C 29.368 45.574 29.936 44.747 29.936 43.915 C 29.936 43.102 29.368 42.15 28.216 42.15 L 26.125 42.15 L 26.125 50.39 L 24.767 50.39 L 24.767 40.767 L 28.216 40.767 C 30.275 40.767 31.3 42.411 31.3 43.913 C 31.3 45.258 30.479 46.534 28.855 46.821 L 31.841 50.39 L 30.07 50.39 L 26.626 46.225 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 36.102 49.022 L 40.496 49.022 L 40.496 50.392 L 34.723 50.392 L 34.723 40.797 L 40.483 40.797 L 40.483 42.166 L 36.102 42.166 L 36.102 44.84 L 40.391 44.84 L 40.391 46.227 L 36.102 46.227 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 49.171 47.987 L 45.337 47.987 L 44.416 50.391 L 42.942 50.391 L 46.741 40.768 L 47.742 40.768 L 51.541 50.391 L 50.078 50.391 Z M 45.837 46.7 L 48.673 46.7 L 47.257 42.95 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 4.318 53.006 L 4.82 53.006 L 4.82 56.805 L 4.318 56.805 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 7.9 55.318 L 7.9 56.807 L 7.422 56.807 L 7.422 55.345 C 7.422 54.914 7.159 54.651 6.801 54.651 C 6.445 54.651 6.016 54.854 6.016 55.412 L 6.016 56.807 L 5.537 56.807 L 5.537 54.231 L 6.016 54.231 L 6.016 54.622 C 6.169 54.308 6.587 54.176 6.867 54.176 C 7.504 54.176 7.905 54.595 7.9 55.318 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 10.838 55.318 L 10.838 56.807 L 10.359 56.807 L 10.359 55.345 C 10.359 54.914 10.096 54.651 9.74 54.651 C 9.382 54.651 8.954 54.854 8.954 55.412 L 8.954 56.807 L 8.476 56.807 L 8.476 54.231 L 8.954 54.231 L 8.954 54.622 C 9.107 54.308 9.526 54.176 9.805 54.176 C 10.442 54.176 10.843 54.595 10.838 55.318 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 11.239 55.51 C 11.239 54.694 11.847 54.176 12.579 54.176 C 13.31 54.176 13.923 54.694 13.923 55.51 C 13.923 56.326 13.308 56.862 12.579 56.862 C 11.847 56.862 11.239 56.326 11.239 55.51 Z M 13.447 55.51 C 13.447 54.981 13.051 54.627 12.579 54.627 C 12.112 54.627 11.721 54.98 11.721 55.51 C 11.721 56.046 12.112 56.409 12.579 56.409 C 13.05 56.409 13.447 56.046 13.447 55.51 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 16.571 54.231 L 15.501 56.807 L 15.035 56.807 L 13.968 54.231 L 14.479 54.231 L 15.271 56.193 L 16.057 54.231 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 19.29 54.231 L 19.29 56.807 L 18.812 56.807 L 18.812 56.398 C 18.642 56.696 18.268 56.862 17.901 56.862 C 17.198 56.862 16.615 56.326 16.615 55.516 C 16.615 54.701 17.192 54.176 17.896 54.176 C 18.281 54.176 18.643 54.33 18.812 54.633 L 18.812 54.231 Z M 18.811 55.51 C 18.811 54.954 18.361 54.627 17.937 54.627 C 17.471 54.627 17.097 54.991 17.097 55.51 C 17.097 56.023 17.471 56.409 17.937 56.409 C 18.399 56.409 18.811 56.062 18.811 55.51 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 21.135 54.645 L 20.579 54.645 L 20.579 56.807 L 20.102 56.807 L 20.102 54.645 L 19.64 54.645 L 19.64 54.231 L 20.102 54.231 L 20.102 53.255 L 20.579 53.255 L 20.579 54.231 L 21.135 54.231 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 21.347 53.282 C 21.347 53.101 21.502 52.963 21.684 52.963 C 21.871 52.963 22.024 53.101 22.024 53.282 C 22.024 53.465 21.871 53.602 21.684 53.602 C 21.502 53.602 21.347 53.465 21.347 53.282 Z M 21.448 54.231 L 21.925 54.231 L 21.925 56.807 L 21.448 56.807 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 22.36 55.51 C 22.36 54.694 22.97 54.176 23.699 54.176 C 24.429 54.176 25.045 54.694 25.045 55.51 C 25.045 56.326 24.429 56.862 23.699 56.862 C 22.968 56.862 22.36 56.326 22.36 55.51 Z M 24.566 55.51 C 24.566 54.981 24.172 54.627 23.699 54.627 C 23.233 54.627 22.843 54.98 22.843 55.51 C 22.843 56.046 23.233 56.409 23.699 56.409 C 24.172 56.409 24.566 56.046 24.566 55.51 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 27.851 55.318 L 27.851 56.807 L 27.374 56.807 L 27.374 55.345 C 27.374 54.914 27.108 54.651 26.752 54.651 C 26.396 54.651 25.967 54.854 25.967 55.412 L 25.967 56.807 L 25.489 56.807 L 25.489 54.231 L 25.967 54.231 L 25.967 54.622 C 26.122 54.308 26.538 54.176 26.818 54.176 C 27.455 54.176 27.856 54.595 27.851 55.318 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 30.283 53.894 L 30.283 54.231 L 30.882 54.231 L 30.882 54.644 L 30.283 54.644 L 30.283 56.807 L 29.806 56.807 L 29.806 54.644 L 29.311 54.644 L 29.311 54.231 L 29.806 54.231 L 29.806 53.962 C 29.806 53.288 30.087 52.825 30.772 52.825 L 31.046 52.825 L 31.046 53.277 L 30.855 53.277 C 30.398 53.277 30.278 53.558 30.283 53.894 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 30.951 55.51 C 30.951 54.694 31.562 54.176 32.291 54.176 C 33.023 54.176 33.637 54.694 33.637 55.51 C 33.637 56.326 33.023 56.862 32.291 56.862 C 31.563 56.862 30.951 56.326 30.951 55.51 Z M 33.162 55.51 C 33.162 54.981 32.766 54.627 32.293 54.627 C 31.827 54.627 31.437 54.98 31.437 55.51 C 31.437 56.046 31.827 56.409 32.293 56.409 C 32.766 56.409 33.162 56.046 33.162 55.51 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 35.731 54.276 L 35.654 54.728 C 35.517 54.662 35.38 54.64 35.281 54.64 C 34.77 54.64 34.567 55.186 34.567 55.864 L 34.567 56.807 L 34.083 56.807 L 34.083 54.231 L 34.567 54.231 L 34.567 54.816 C 34.698 54.364 34.945 54.176 35.285 54.176 C 35.468 54.176 35.654 54.226 35.731 54.276 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 36.867 54.915 C 36.867 53.835 37.702 52.964 38.78 52.964 C 39.28 52.964 39.724 53.157 40.054 53.46 L 39.708 53.787 C 39.467 53.572 39.136 53.428 38.78 53.428 C 37.983 53.428 37.368 54.099 37.368 54.917 C 37.368 55.733 37.983 56.401 38.78 56.401 C 39.433 56.401 39.933 56.026 40.01 55.436 C 40.016 55.409 40.021 55.375 40.021 55.343 L 38.922 55.343 L 38.922 54.907 L 40.57 54.907 C 40.57 56.236 39.856 56.865 38.78 56.865 C 37.702 56.861 36.867 55.991 36.867 54.915 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 40.762 55.51 C 40.762 54.694 41.37 54.176 42.101 54.176 C 42.833 54.176 43.448 54.694 43.448 55.51 C 43.448 56.326 42.833 56.862 42.101 56.862 C 41.372 56.862 40.762 56.326 40.762 55.51 Z M 42.97 55.51 C 42.97 54.981 42.574 54.627 42.101 54.627 C 41.635 54.627 41.244 54.98 41.244 55.51 C 41.244 56.046 41.635 56.409 42.101 56.409 C 42.574 56.409 42.97 56.046 42.97 55.51 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 43.716 55.51 C 43.716 54.694 44.326 54.176 45.056 54.176 C 45.785 54.176 46.402 54.694 46.402 55.51 C 46.402 56.326 45.785 56.862 45.056 56.862 C 44.326 56.862 43.716 56.326 43.716 55.51 Z M 45.924 55.51 C 45.924 54.981 45.528 54.627 45.056 54.627 C 44.589 54.627 44.2 54.98 44.2 55.51 C 44.2 56.046 44.589 56.409 45.056 56.409 C 45.528 56.409 45.924 56.046 45.924 55.51 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 49.352 52.825 L 49.352 56.807 L 48.874 56.807 L 48.874 56.398 C 48.704 56.696 48.33 56.862 47.963 56.862 C 47.26 56.862 46.677 56.326 46.677 55.517 C 46.677 54.701 47.254 54.176 47.956 54.176 C 48.341 54.176 48.705 54.33 48.874 54.633 L 48.874 52.825 Z M 48.873 55.51 C 48.873 54.954 48.423 54.627 47.999 54.627 C 47.533 54.627 47.158 54.991 47.158 55.51 C 47.158 56.023 47.532 56.409 47.999 56.409 C 48.461 56.409 48.873 56.062 48.873 55.51 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path></svg>',svgContentId:9311762795},lRTDRxIQK:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 77 80\"><path d=\"M 55.229 12.27 C 55.167 12.183 55.108 12.094 55.044 12.007 C 54.206 10.857 53.255 9.792 52.214 8.825 C 51.747 8.39 51.259 7.977 50.756 7.584 C 48.962 6.184 46.949 5.052 44.771 4.247 C 43.805 3.891 42.806 3.602 41.781 3.38 C 41.528 3.326 41.276 3.276 41.021 3.23 C 40.9 3.208 40.777 3.187 40.656 3.165 C 39.477 2.974 38.268 2.871 37.034 2.871 C 35.547 2.871 34.098 3.017 32.695 3.291 C 32.638 3.302 32.583 3.313 32.526 3.326 C 32.26 3.38 31.997 3.437 31.736 3.5 C 30.844 3.715 29.975 3.986 29.129 4.304 C 27.008 5.104 25.045 6.215 23.293 7.582 C 22.777 7.984 22.281 8.41 21.802 8.856 C 20.724 9.862 19.745 10.973 18.884 12.173 C 18.821 12.262 18.759 12.351 18.696 12.442 C 17.626 13.983 16.744 15.666 16.091 17.455 C 16.491 17.507 17.424 17.646 18.696 17.946 C 19.209 18.068 19.778 18.215 20.391 18.396 C 22.878 19.128 26.073 20.382 29.129 22.497 C 30.016 23.113 30.892 23.797 31.736 24.567 C 31.753 24.582 31.771 24.597 31.786 24.612 C 31.797 24.623 31.808 24.634 31.819 24.643 C 33.408 26.106 34.882 27.858 36.094 29.958 C 36.316 30.342 36.531 30.738 36.735 31.147 C 36.741 31.16 36.748 31.173 36.755 31.183 L 36.755 31.147 C 36.755 31.144 36.757 31.144 36.757 31.142 C 36.814 31.027 36.873 30.916 36.933 30.803 C 36.937 30.792 36.944 30.784 36.948 30.773 C 36.95 30.766 36.955 30.76 36.957 30.755 C 36.961 30.747 36.965 30.738 36.97 30.729 C 38.265 28.256 39.901 26.219 41.69 24.547 C 41.719 24.519 41.75 24.493 41.778 24.465 C 42.325 23.96 42.885 23.489 43.451 23.047 C 43.886 22.71 44.325 22.391 44.767 22.091 C 47.898 19.956 51.154 18.696 53.674 17.963 C 54.23 17.802 54.75 17.665 55.224 17.552 C 56.408 17.27 57.315 17.122 57.8 17.052 C 57.144 15.353 56.274 13.746 55.229 12.27 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 55.23 12.275 C 55.168 12.188 55.109 12.099 55.046 12.012 C 54.802 14.151 54.328 16.137 53.678 17.974 C 54.233 17.813 54.754 17.676 55.228 17.563 C 56.411 17.281 57.318 17.133 57.803 17.063 C 57.145 15.357 56.275 13.751 55.23 12.275 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 18.884 12.181 C 18.821 12.27 18.759 12.359 18.696 12.451 C 17.626 13.992 16.744 15.674 16.091 17.463 C 16.491 17.516 17.424 17.655 18.696 17.955 C 19.209 18.076 19.778 18.224 20.391 18.405 C 19.675 16.5 19.15 14.427 18.884 12.181 Z\" fill=\"rgb(246,178,26)\"></path><path d=\"M 31.736 24.576 C 31.753 24.591 31.771 24.606 31.786 24.621 C 31.769 24.593 31.751 24.562 31.736 24.534 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 29.308 12.573 C 29.248 12.527 29.189 12.486 29.13 12.44 C 26.78 10.699 24.194 9.579 21.803 8.862 C 20.725 9.869 19.746 10.979 18.885 12.179 C 19.151 14.425 19.675 16.498 20.391 18.402 C 22.879 19.135 26.073 20.389 29.13 22.504 C 30.017 23.119 30.893 23.804 31.736 24.573 L 31.736 24.532 C 29.29 20.356 28.809 16.248 29.308 12.573 Z\" fill=\"rgb(236,139,35)\"></path><path d=\"M 36.948 30.786 C 36.95 30.779 36.955 30.773 36.957 30.768 C 36.955 30.766 36.95 30.762 36.948 30.76 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 36.936 30.747 C 36.936 30.77 36.936 30.792 36.933 30.814 C 36.938 30.803 36.944 30.794 36.949 30.784 L 36.949 30.757 C 36.944 30.755 36.94 30.751 36.936 30.747 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 50.754 7.59 C 48.96 6.191 46.947 5.058 44.769 4.254 C 43.803 3.897 42.804 3.608 41.778 3.387 C 41.526 3.332 41.273 3.282 41.019 3.237 C 40.898 3.215 40.775 3.193 40.654 3.171 C 39.475 2.98 38.265 2.878 37.031 2.878 C 35.545 2.878 34.096 3.024 32.693 3.297 C 32.636 3.308 32.581 3.319 32.524 3.332 C 32.258 3.387 31.995 3.443 31.733 3.506 C 30.842 3.721 29.972 3.993 29.127 4.31 C 27.006 5.11 25.043 6.221 23.291 7.588 C 22.775 7.99 22.279 8.416 21.8 8.862 C 24.191 9.579 26.778 10.697 29.127 12.44 C 29.186 12.483 29.246 12.527 29.305 12.573 C 29.546 10.797 30.014 9.123 30.6 7.59 C 30.945 6.688 31.329 5.836 31.733 5.041 C 32.023 4.469 32.322 3.928 32.62 3.417 C 34.014 4.626 35.378 6.015 36.612 7.59 L 36.88 7.59 C 38.094 6.019 39.438 4.632 40.812 3.415 C 41.157 3.919 41.48 4.423 41.774 4.926 C 42.296 5.819 42.738 6.708 43.111 7.59 C 43.831 9.299 44.288 10.981 44.534 12.616 C 44.611 12.557 44.688 12.503 44.764 12.446 C 47.151 10.675 49.786 9.547 52.208 8.832 C 51.747 8.397 51.259 7.984 50.754 7.59 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 36.885 7.59 L 36.617 7.59 C 36.663 7.649 36.707 7.706 36.753 7.764 C 36.797 7.706 36.841 7.647 36.885 7.59 Z\" fill=\"rgb(246,179,26)\"></path><path d=\"M 36.617 7.591 C 35.383 6.015 34.017 4.628 32.625 3.417 C 32.326 3.926 32.028 4.469 31.738 5.041 C 31.336 5.836 30.95 6.688 30.605 7.591 C 30.019 9.123 29.549 10.797 29.31 12.573 C 30.159 13.218 30.976 13.946 31.738 14.768 C 32.054 15.109 32.359 15.466 32.656 15.84 C 33.543 12.74 35.009 10.06 36.753 7.764 C 36.707 7.706 36.663 7.647 36.617 7.591 Z\" fill=\"rgb(236,139,35)\"></path><path d=\"M 31.736 14.768 C 30.974 13.946 30.157 13.216 29.307 12.573 C 28.809 16.248 29.29 20.357 31.736 24.534 L 31.736 22.591 L 31.736 22.332 C 31.751 19.989 32.085 17.829 32.654 15.84 C 32.359 15.466 32.052 15.109 31.736 14.768 Z\" fill=\"rgb(229,111,37)\"></path><path d=\"M 43.116 7.591 C 42.743 6.708 42.302 5.817 41.779 4.926 C 41.485 4.423 41.162 3.919 40.817 3.415 C 39.441 4.632 38.099 6.019 36.885 7.591 C 36.841 7.649 36.797 7.706 36.751 7.764 C 36.817 7.849 36.883 7.936 36.947 8.023 C 38.686 10.34 40.132 13.051 40.976 16.192 C 41.235 15.848 41.503 15.52 41.777 15.203 C 42.631 14.22 43.562 13.362 44.537 12.616 C 44.295 10.981 43.839 9.297 43.116 7.591 Z\" fill=\"rgb(236,139,35)\"></path><path d=\"M 36.949 30.758 L 36.949 30.212 C 36.947 30.388 36.94 30.566 36.936 30.747 C 36.94 30.751 36.945 30.755 36.949 30.758 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 40.98 16.192 C 40.135 13.051 38.69 10.34 36.951 8.023 C 36.885 7.936 36.821 7.849 36.755 7.764 C 35.01 10.06 33.545 12.74 32.658 15.84 C 35.159 18.996 36.889 23.358 36.953 29.386 L 36.953 30.212 L 36.953 30.758 C 36.955 30.76 36.96 30.764 36.962 30.766 C 36.966 30.758 36.971 30.749 36.975 30.74 C 36.777 24.234 38.446 19.554 40.98 16.192 Z\" fill=\"rgb(229,111,37)\"></path><path d=\"M 32.656 15.84 C 32.085 17.829 31.754 19.989 31.738 22.332 L 31.738 22.591 L 31.738 24.534 C 31.756 24.563 31.773 24.593 31.789 24.621 C 31.8 24.632 31.811 24.643 31.822 24.652 C 33.411 26.115 34.885 27.867 36.097 29.966 C 36.318 30.351 36.534 30.747 36.738 31.155 C 36.744 31.168 36.751 31.181 36.758 31.192 L 36.758 31.155 C 36.758 31.153 36.76 31.153 36.76 31.151 C 36.817 31.036 36.876 30.925 36.935 30.812 C 36.935 30.788 36.935 30.766 36.938 30.745 C 36.942 30.566 36.949 30.386 36.951 30.21 L 36.951 29.384 C 36.885 23.358 35.157 18.996 32.656 15.84 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 52.213 8.83 C 49.789 9.545 47.157 10.673 44.77 12.444 C 44.693 12.501 44.616 12.555 44.539 12.614 C 45.123 16.507 44.515 20.109 43.452 23.061 C 43.887 22.724 44.326 22.404 44.768 22.104 C 47.899 19.97 51.155 18.709 53.675 17.976 C 54.325 16.14 54.8 14.151 55.043 12.014 C 54.207 10.864 53.256 9.799 52.213 8.83 Z\" fill=\"rgb(236,139,35)\"></path><path d=\"M 44.541 12.614 C 43.566 13.359 42.635 14.218 41.781 15.201 C 41.506 15.518 41.238 15.846 40.979 16.19 C 41.471 18.015 41.757 19.985 41.781 22.106 L 41.781 22.68 L 41.781 24.476 C 42.327 23.971 42.887 23.5 43.454 23.058 C 44.517 20.109 45.125 16.507 44.541 12.614 Z\" fill=\"rgb(229,111,37)\"></path><path d=\"M 40.979 16.192 C 38.446 19.557 36.777 24.237 36.972 30.742 C 38.268 28.269 39.903 26.232 41.693 24.56 C 41.721 24.532 41.752 24.506 41.781 24.478 L 41.781 22.682 L 41.781 22.109 C 41.757 19.985 41.469 18.015 40.979 16.192 Z\" fill=\"rgb(222,91,38)\"></path><path d=\"M 28.427 45.18 C 22.947 42.895 15.804 37.316 14.939 26.584 C 14.775 24.536 14.882 22.826 15.315 20.174 C 15.315 20.174 39.77 22.984 35.267 46.832 C 35.267 46.834 32.142 46.732 28.427 45.18 Z\" fill=\"rgb(114,147,61)\"></path><path d=\"M 45.369 45.18 C 50.847 42.895 57.99 37.316 58.85 26.584 C 59.022 24.536 58.91 22.826 58.477 20.174 C 58.477 20.174 34.024 22.984 38.534 46.832 C 38.536 46.834 41.652 46.732 45.369 45.18 Z\" fill=\"rgb(114, 147, 61)\"></path><path d=\"M 73.471 50.221 C 73.471 51.864 72.169 53.153 70.474 53.153 C 68.797 53.153 67.46 51.864 67.46 50.221 C 67.46 48.614 68.797 47.323 70.474 47.323 C 72.169 47.323 73.471 48.614 73.471 50.221 Z M 68.208 50.221 C 68.208 51.51 69.172 52.533 70.492 52.533 C 71.779 52.533 72.723 51.507 72.723 50.236 C 72.723 48.947 71.779 47.906 70.474 47.906 C 69.17 47.908 68.208 48.949 68.208 50.221 Z M 70.009 51.74 L 69.333 51.74 L 69.333 48.842 C 69.598 48.79 69.974 48.753 70.457 48.753 C 71.01 48.753 71.258 48.842 71.473 48.966 C 71.634 49.09 71.759 49.321 71.759 49.601 C 71.759 49.918 71.509 50.166 71.151 50.273 L 71.151 50.308 C 71.436 50.414 71.596 50.625 71.686 51.014 C 71.776 51.457 71.829 51.633 71.902 51.738 L 71.17 51.738 C 71.08 51.631 71.028 51.366 70.938 51.031 C 70.883 50.712 70.705 50.573 70.329 50.573 L 70.009 50.573 Z M 70.029 50.097 L 70.349 50.097 C 70.725 50.097 71.028 49.973 71.028 49.673 C 71.028 49.408 70.832 49.229 70.404 49.229 C 70.226 49.229 70.101 49.247 70.029 49.266 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 11.488 65.067 L 6.212 65.067 L 4.945 68.327 L 2.923 68.327 L 8.142 55.279 L 9.516 55.279 L 14.744 68.327 L 12.733 68.327 Z M 6.897 63.321 L 10.801 63.321 L 8.849 58.237 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 18.812 64.461 L 18.812 55.318 L 20.716 55.318 L 20.716 64.48 C 20.716 65.902 22.253 66.599 23.632 66.599 C 24.989 66.599 26.53 65.878 26.53 64.463 L 26.53 55.32 L 28.429 55.32 L 28.429 64.482 C 28.429 67.097 25.867 68.458 23.632 68.458 C 21.344 68.454 18.812 67.093 18.812 64.461 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 36.611 61.796 L 38.798 61.796 C 40.381 61.796 41.162 60.674 41.162 59.546 C 41.162 58.444 40.381 57.153 38.798 57.153 L 35.921 57.153 L 35.921 68.325 L 34.055 68.325 L 34.055 55.277 L 38.798 55.277 C 41.628 55.277 43.037 57.507 43.037 59.544 C 43.037 61.367 41.909 63.098 39.676 63.487 L 43.782 68.325 L 41.347 68.325 L 36.611 62.678 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 49.64 66.471 L 55.682 66.471 L 55.682 68.328 L 47.745 68.328 L 47.745 55.318 L 55.665 55.318 L 55.665 57.174 L 49.64 57.174 L 49.64 60.8 L 55.537 60.8 L 55.537 62.68 L 49.64 62.68 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 67.61 65.067 L 62.339 65.067 L 61.072 68.327 L 59.045 68.327 L 64.269 55.279 L 65.645 55.279 L 70.869 68.327 L 68.857 68.327 Z M 63.026 63.321 L 66.925 63.321 L 64.978 58.237 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 5.938 71.873 L 6.627 71.873 L 6.627 77.024 L 5.938 77.024 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 10.862 75.007 L 10.862 77.026 L 10.206 77.026 L 10.206 75.044 C 10.206 74.459 9.844 74.103 9.352 74.103 C 8.862 74.103 8.272 74.379 8.272 75.135 L 8.272 77.026 L 7.613 77.026 L 7.613 73.533 L 8.272 73.533 L 8.272 74.064 C 8.482 73.638 9.058 73.459 9.442 73.459 C 10.318 73.459 10.869 74.027 10.862 75.007 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 14.902 75.007 L 14.902 77.026 L 14.244 77.026 L 14.244 75.044 C 14.244 74.459 13.881 74.103 13.392 74.103 C 12.9 74.103 12.312 74.379 12.312 75.135 L 12.312 77.026 L 11.655 77.026 L 11.655 73.533 L 12.312 73.533 L 12.312 74.064 C 12.522 73.638 13.098 73.459 13.482 73.459 C 14.358 73.459 14.909 74.027 14.902 75.007 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 15.453 75.268 C 15.453 74.162 16.29 73.459 17.296 73.459 C 18.301 73.459 19.144 74.162 19.144 75.268 C 19.144 76.374 18.299 77.1 17.296 77.1 C 16.29 77.1 15.453 76.374 15.453 75.268 Z M 18.49 75.268 C 18.49 74.551 17.946 74.07 17.296 74.07 C 16.654 74.07 16.117 74.548 16.117 75.268 C 16.117 75.994 16.654 76.487 17.296 76.487 C 17.943 76.487 18.49 75.994 18.49 75.268 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 22.785 73.533 L 21.314 77.026 L 20.673 77.026 L 19.206 73.533 L 19.909 73.533 L 20.998 76.194 L 22.078 73.533 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 26.524 73.533 L 26.524 77.026 L 25.867 77.026 L 25.867 76.472 C 25.632 76.876 25.118 77.1 24.613 77.1 C 23.647 77.1 22.846 76.374 22.846 75.277 C 22.846 74.17 23.638 73.459 24.607 73.459 C 25.136 73.459 25.634 73.668 25.867 74.079 L 25.867 73.533 Z M 25.865 75.268 C 25.865 74.514 25.246 74.07 24.664 74.07 C 24.023 74.07 23.509 74.564 23.509 75.268 C 23.509 75.963 24.023 76.487 24.664 76.487 C 25.298 76.487 25.865 76.016 25.865 75.268 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 29.06 74.094 L 28.296 74.094 L 28.296 77.026 L 27.64 77.026 L 27.64 74.094 L 27.005 74.094 L 27.005 73.533 L 27.64 73.533 L 27.64 72.21 L 28.296 72.21 L 28.296 73.533 L 29.06 73.533 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 29.353 72.246 C 29.353 72.001 29.566 71.814 29.816 71.814 C 30.073 71.814 30.284 72.001 30.284 72.246 C 30.284 72.494 30.073 72.681 29.816 72.681 C 29.566 72.681 29.353 72.494 29.353 72.246 Z M 29.491 73.533 L 30.147 73.533 L 30.147 77.026 L 29.491 77.026 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 30.744 75.268 C 30.744 74.162 31.583 73.459 32.587 73.459 C 33.59 73.459 34.438 74.162 34.438 75.268 C 34.438 76.374 33.59 77.1 32.587 77.1 C 31.581 77.1 30.744 76.374 30.744 75.268 Z M 33.779 75.268 C 33.779 74.551 33.236 74.07 32.587 74.07 C 31.945 74.07 31.41 74.548 31.41 75.268 C 31.41 75.994 31.945 76.487 32.587 76.487 C 33.236 76.487 33.779 75.994 33.779 75.268 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 38.295 75.007 L 38.295 77.026 L 37.639 77.026 L 37.639 75.044 C 37.639 74.459 37.274 74.103 36.784 74.103 C 36.295 74.103 35.704 74.379 35.704 75.135 L 35.704 77.026 L 35.048 77.026 L 35.048 73.533 L 35.704 73.533 L 35.704 74.064 C 35.917 73.638 36.49 73.459 36.875 73.459 C 37.751 73.459 38.302 74.027 38.295 75.007 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 41.639 73.077 L 41.639 73.533 L 42.462 73.533 L 42.462 74.094 L 41.639 74.094 L 41.639 77.027 L 40.983 77.027 L 40.983 74.094 L 40.302 74.094 L 40.302 73.533 L 40.983 73.533 L 40.983 73.168 C 40.983 72.255 41.369 71.627 42.311 71.627 L 42.689 71.627 L 42.689 72.24 L 42.425 72.24 C 41.797 72.24 41.633 72.62 41.639 73.077 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 42.558 75.268 C 42.558 74.162 43.397 73.459 44.401 73.459 C 45.406 73.459 46.251 74.162 46.251 75.268 C 46.251 76.374 45.406 77.1 44.401 77.1 C 43.399 77.1 42.558 76.374 42.558 75.268 Z M 45.597 75.268 C 45.597 74.551 45.053 74.07 44.403 74.07 C 43.762 74.07 43.226 74.548 43.226 75.268 C 43.226 75.994 43.762 76.487 44.403 76.487 C 45.053 76.487 45.597 75.994 45.597 75.268 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 49.13 73.594 L 49.025 74.207 C 48.836 74.118 48.647 74.088 48.511 74.088 C 47.808 74.088 47.529 74.829 47.529 75.748 L 47.529 77.026 L 46.864 77.026 L 46.864 73.533 L 47.529 73.533 L 47.529 74.327 C 47.71 73.714 48.05 73.459 48.518 73.459 C 48.768 73.459 49.025 73.527 49.13 73.594 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 50.692 74.461 C 50.692 72.996 51.841 71.816 53.323 71.816 C 54.01 71.816 54.62 72.077 55.075 72.488 L 54.598 72.931 C 54.267 72.64 53.812 72.444 53.323 72.444 C 52.227 72.444 51.382 73.355 51.382 74.464 C 51.382 75.57 52.227 76.476 53.323 76.476 C 54.221 76.476 54.908 75.968 55.013 75.168 C 55.022 75.131 55.029 75.085 55.029 75.042 L 53.518 75.042 L 53.518 74.451 L 55.784 74.451 C 55.784 76.253 54.802 77.105 53.323 77.105 C 51.841 77.1 50.692 75.92 50.692 74.461 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 56.047 75.268 C 56.047 74.162 56.884 73.459 57.89 73.459 C 58.895 73.459 59.74 74.162 59.74 75.268 C 59.74 76.374 58.895 77.1 57.89 77.1 C 56.886 77.1 56.047 76.374 56.047 75.268 Z M 59.084 75.268 C 59.084 74.551 58.539 74.07 57.89 74.07 C 57.248 74.07 56.71 74.548 56.71 75.268 C 56.71 75.994 57.248 76.487 57.89 76.487 C 58.539 76.487 59.084 75.994 59.084 75.268 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 60.109 75.268 C 60.109 74.162 60.948 73.459 61.951 73.459 C 62.955 73.459 63.802 74.162 63.802 75.268 C 63.802 76.374 62.955 77.1 61.951 77.1 C 60.948 77.1 60.109 76.374 60.109 75.268 Z M 63.146 75.268 C 63.146 74.551 62.601 74.07 61.951 74.07 C 61.31 74.07 60.775 74.548 60.775 75.268 C 60.775 75.994 61.31 76.487 61.951 76.487 C 62.601 76.487 63.146 75.994 63.146 75.268 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path><path d=\"M 67.859 71.627 L 67.859 77.027 L 67.202 77.027 L 67.202 76.472 C 66.967 76.877 66.454 77.1 65.949 77.1 C 64.983 77.1 64.181 76.374 64.181 75.277 C 64.181 74.17 64.974 73.46 65.94 73.46 C 66.469 73.46 66.97 73.668 67.202 74.079 L 67.202 71.627 Z M 67.2 75.268 C 67.2 74.514 66.581 74.07 65.999 74.07 C 65.358 74.07 64.842 74.564 64.842 75.268 C 64.842 75.964 65.356 76.487 65.999 76.487 C 66.634 76.487 67.2 76.016 67.2 75.268 Z\" fill=\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Static White&quot;} */\"></path></svg>',svgContentId:9560919581}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AfR60.framer-ip8en, .framer-AfR60 .framer-ip8en { display: block; }\",\".framer-AfR60.framer-eu1my0 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 89px; }\",\".framer-AfR60 .framer-1j1rfle { flex: none; height: 80px; position: relative; width: 76px; }\",\".framer-AfR60 .framer-1wfxg2g { flex: none; height: 92px; position: relative; width: 89px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AfR60.framer-eu1my0 { gap: 0px; } .framer-AfR60.framer-eu1my0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-AfR60.framer-eu1my0 > :first-child { margin-top: 0px; } .framer-AfR60.framer-eu1my0 > :last-child { margin-bottom: 0px; } }\",\".framer-AfR60.framer-v-eugo1w .framer-1wfxg2g { height: 80px; width: 77px; }\",\".framer-AfR60.framer-v-qg1x2r.framer-eu1my0, .framer-AfR60.framer-v-1hhiari.framer-eu1my0 { width: min-content; }\",\".framer-AfR60.framer-v-qg1x2r .framer-1j1rfle, .framer-AfR60.framer-v-1hhiari .framer-1wfxg2g { height: 59px; width: 56px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 89\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"lRTDRxIQK\":{\"layout\":[\"fixed\",\"auto\"]},\"tFh79Fsle\":{\"layout\":[\"auto\",\"auto\"]},\"FxDjXgRNk\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbytBR8Rsj=withCSS(Component,css,\"framer-AfR60\");export default FramerbytBR8Rsj;FramerbytBR8Rsj.displayName=\"Logo\";FramerbytBR8Rsj.defaultProps={height:80,width:89};addPropertyControls(FramerbytBR8Rsj,{variant:{options:[\"qdXiA6nnH\",\"lRTDRxIQK\",\"tFh79Fsle\",\"FxDjXgRNk\"],optionTitles:[\"Default\",\"White\",\"Phone\",\"Phone White\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerbytBR8Rsj,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbytBR8Rsj\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lRTDRxIQK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tFh79Fsle\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FxDjXgRNk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"89\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"80\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bytBR8Rsj.map", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./gVUDvJoa4-0.js\";const cycleOrder=[\"e9_YU_sm1\",\"PJ5ikxBQk\"];const serializationHash=\"framer-k0LKx\";const variantClassNames={e9_YU_sm1:\"framer-v-1v2ags6\",PJ5ikxBQk:\"framer-v-1w68dqp\"};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 valuesByLocaleId={VH393QRe6: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 transition1={damping:40,delay:0,mass:1,stiffness:600,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={Closed:\"e9_YU_sm1\",Open:\"PJ5ikxBQk\"};const getProps=({click,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,oECE0oaeR:click!==null&&click!==void 0?click:props.oECE0oaeR,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"e9_YU_sm1\"};};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,oECE0oaeR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"e9_YU_sm1\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap19592h5=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(oECE0oaeR){const res=await oECE0oaeR(...args);if(res===false)return false;}});const ref1=React.useRef(null);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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1v2ags6\",className,classNames),\"data-framer-name\":\"Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"e9_YU_sm1\",onTap:onTap19592h5,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({PJ5ikxBQk:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ldtd8r\",\"data-framer-name\":\"Frame\",layoutDependency:layoutDependency,layoutId:\"d1Z4RS5cg\",style:{rotate:0},variants:{PJ5ikxBQk:{rotate:-180}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4riu29\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"yv4KgqK7_\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 3 5.5 L 7 9.5 L 11 5.5\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-e44a9202-0471-49cb-b948-fca628655188, rgba(88, 120, 36, 0.5)) /* {&quot;name&quot;:&quot;Text Tertiary&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9059856046,withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-k0LKx.framer-1l8br3z, .framer-k0LKx .framer-1l8br3z { display: block; }\",\".framer-k0LKx.framer-1v2ags6 { cursor: pointer; height: 14px; overflow: visible; position: relative; width: 14px; }\",\".framer-k0LKx .framer-1ldtd8r { flex: none; height: 14px; left: calc(50.00000000000002% - 14px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 14px / 2); width: 14px; }\",\".framer-k0LKx .framer-4riu29 { flex: none; height: 14px; left: calc(50.00000000000002% - 14px / 2); position: absolute; top: calc(50.00000000000002% - 14px / 2); width: 14px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 14\n * @framerIntrinsicWidth 14\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"PJ5ikxBQk\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"oECE0oaeR\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramergVUDvJoa4=withCSS(Component,css,\"framer-k0LKx\");export default FramergVUDvJoa4;FramergVUDvJoa4.displayName=\"Caret\";FramergVUDvJoa4.defaultProps={height:14,width:14};addPropertyControls(FramergVUDvJoa4,{variant:{options:[\"e9_YU_sm1\",\"PJ5ikxBQk\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},oECE0oaeR:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramergVUDvJoa4,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergVUDvJoa4\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"oECE0oaeR\\\":\\\"click\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"14\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PJ5ikxBQk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"14\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./gVUDvJoa4.map", "// Generated by Framer (552ec80)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Caret from\"https://framerusercontent.com/modules/hx06YNv5Gw5QWVAdY2Pw/dtYHyvSnrDwyBKslJ2Pd/gVUDvJoa4.js\";const CaretFonts=getFonts(Caret);const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"MeEe3gfZz\",\"VjuHIFmXu\",\"sIIoZ4a1J\",\"WFzcLiEvZ\"];const serializationHash=\"framer-iu8Dk\";const variantClassNames={MeEe3gfZz:\"framer-v-nqwstm\",sIIoZ4a1J:\"framer-v-3tsoyt\",VjuHIFmXu:\"framer-v-huxf15\",WFzcLiEvZ:\"framer-v-1rpl2rj\"};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={bounce:.2,delay:0,duration:.4,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={\"Variant 1\":\"MeEe3gfZz\",\"Variant phone closed\":\"sIIoZ4a1J\",\"Variant Phone open\":\"WFzcLiEvZ\",open:\"VjuHIFmXu\"};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:\"MeEe3gfZz\"};};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:\"MeEe3gfZz\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapifmh3z=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"VjuHIFmXu\");});const onTapxgpsz1=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"WFzcLiEvZ\");});const onTap1g3ofih=activeVariantCallback(async(...args)=>{setVariant(\"MeEe3gfZz\");});const onTapufspuh=activeVariantCallback(async(...args)=>{setVariant(\"sIIoZ4a1J\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"VjuHIFmXu\",\"WFzcLiEvZ\"].includes(baseVariant))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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-nqwstm\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"MeEe3gfZz\",onTap:onTapifmh3z,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({sIIoZ4a1J:{\"data-framer-name\":\"Variant phone closed\",onTap:onTapxgpsz1},VjuHIFmXu:{\"data-framer-name\":\"open\"},WFzcLiEvZ:{\"data-framer-name\":\"Variant Phone open\",\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x4q8a1\",\"data-framer-name\":\"Trigger\",layoutDependency:layoutDependency,layoutId:\"fn2VTwmAE\",...addPropertyOverrides({VjuHIFmXu:{\"data-highlight\":true,onTap:onTap1g3ofih},WFzcLiEvZ:{\"data-highlight\":true,onTap:onTapufspuh}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Technology\"})}),className:\"framer-b3xu4x\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"XnIZbLmT5\",style:{\"--extracted-r6o4lv\":\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\"},variants:{VjuHIFmXu:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({sIIoZ4a1J:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Technology\"})})},VjuHIFmXu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\",\"--framer-text-transform\":\"uppercase\"},children:\"Technology\"})})},WFzcLiEvZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Technology\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+6.4,...addPropertyOverrides({sIIoZ4a1J:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+5.800000000000001},WFzcLiEvZ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+5.800000000000001}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8ly15s-container\",layoutDependency:layoutDependency,layoutId:\"obBxJ0JtH-container\",children:/*#__PURE__*/_jsx(Caret,{height:\"100%\",id:\"obBxJ0JtH\",layoutId:\"obBxJ0JtH\",variant:\"e9_YU_sm1\",width:\"100%\",...addPropertyOverrides({VjuHIFmXu:{variant:\"PJ5ikxBQk\"},WFzcLiEvZ:{variant:\"PJ5ikxBQk\"}},baseVariant,gestureVariant)})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JO3qBQ43b\"},nodeId:\"xDZQ9Qzux\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1osgk2s framer-bfdrbk\",\"data-framer-name\":\"Submenu Item\",layoutDependency:layoutDependency,layoutId:\"xDZQ9Qzux\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v90ws2\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"X3tXxEjTw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\"},children:\"Zeal Technology\"})}),className:\"framer-puqtst\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"iPaPneUNb\",style:{\"--extracted-r6o4lv\":\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WFzcLiEvZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\"},children:\"Zeal Technology\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(106, 120, 84)))\"},children:\"Liposomal Powder Technology.\"})}),className:\"framer-1ihq6l2\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"d9Q1E2qTb\",style:{\"--extracted-r6o4lv\":\"var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(106, 120, 84))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yq8hve\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"BL8aIVBtg\",style:{backgroundColor:\"var(--token-8cb2084f-ada9-4325-af22-fb5b735c144b, rgb(255, 248, 241))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,opacity:0},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qtk3ki-container\",layoutDependency:layoutDependency,layoutId:\"Fy9NW25tb-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a7e55753-55e4-453c-b2cd-6d4851533872, rgb(222, 91, 39))\",height:\"100%\",iconSearch:\"arrow right\",iconSelection:\"House\",id:\"Fy9NW25tb\",layoutId:\"Fy9NW25tb\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UsPIQNwEu\"},nodeId:\"PUf5JM5RA\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1owvhhs framer-bfdrbk\",\"data-framer-name\":\"Submenu Item\",layoutDependency:layoutDependency,layoutId:\"PUf5JM5RA\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fanjd8\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"MZEHb8D3c\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\"},children:\"PNS Technology\"})}),className:\"framer-1lm04d8\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"qFKbXeoUq\",style:{\"--extracted-r6o4lv\":\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WFzcLiEvZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\"},children:\"PNS Technology\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(106, 120, 84)))\"},children:\"Bringing Ayurveda to the 21st Century.\"})}),className:\"framer-4gmzvo\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"j5gcqPVEU\",style:{\"--extracted-r6o4lv\":\"var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(106, 120, 84))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12un8u8\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"qjt_lVvxc\",style:{backgroundColor:\"var(--token-8cb2084f-ada9-4325-af22-fb5b735c144b, rgb(255, 248, 241))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,opacity:0},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18o3ceq-container\",layoutDependency:layoutDependency,layoutId:\"KtUSlOjEv-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a7e55753-55e4-453c-b2cd-6d4851533872, rgb(222, 91, 39))\",height:\"100%\",iconSearch:\"arrow right\",iconSelection:\"House\",id:\"KtUSlOjEv\",layoutId:\"KtUSlOjEv\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iu8Dk.framer-bfdrbk, .framer-iu8Dk .framer-bfdrbk { display: block; }\",\".framer-iu8Dk.framer-nqwstm { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-iu8Dk .framer-x4q8a1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 0px 5px 0px; position: relative; width: min-content; }\",\".framer-iu8Dk .framer-b3xu4x { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-iu8Dk .framer-8ly15s-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-iu8Dk .framer-1osgk2s, .framer-iu8Dk .framer-1owvhhs { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 330px; }\",\".framer-iu8Dk .framer-1v90ws2, .framer-iu8Dk .framer-1fanjd8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-iu8Dk .framer-puqtst, .framer-iu8Dk .framer-1lm04d8 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-iu8Dk .framer-1ihq6l2, .framer-iu8Dk .framer-4gmzvo { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iu8Dk .framer-yq8hve, .framer-iu8Dk .framer-12un8u8 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px; position: absolute; right: 0px; width: min-content; z-index: 1; }\",\".framer-iu8Dk .framer-qtk3ki-container, .framer-iu8Dk .framer-18o3ceq-container { flex: none; height: 16px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iu8Dk.framer-nqwstm, .framer-iu8Dk .framer-x4q8a1, .framer-iu8Dk .framer-1osgk2s, .framer-iu8Dk .framer-1v90ws2, .framer-iu8Dk .framer-yq8hve, .framer-iu8Dk .framer-1owvhhs, .framer-iu8Dk .framer-1fanjd8, .framer-iu8Dk .framer-12un8u8 { gap: 0px; } .framer-iu8Dk.framer-nqwstm > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-iu8Dk.framer-nqwstm > :first-child, .framer-iu8Dk .framer-1v90ws2 > :first-child, .framer-iu8Dk .framer-1fanjd8 > :first-child { margin-top: 0px; } .framer-iu8Dk.framer-nqwstm > :last-child, .framer-iu8Dk .framer-1v90ws2 > :last-child, .framer-iu8Dk .framer-1fanjd8 > :last-child { margin-bottom: 0px; } .framer-iu8Dk .framer-x4q8a1 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-iu8Dk .framer-x4q8a1 > :first-child, .framer-iu8Dk .framer-1osgk2s > :first-child, .framer-iu8Dk .framer-yq8hve > :first-child, .framer-iu8Dk .framer-1owvhhs > :first-child, .framer-iu8Dk .framer-12un8u8 > :first-child { margin-left: 0px; } .framer-iu8Dk .framer-x4q8a1 > :last-child, .framer-iu8Dk .framer-1osgk2s > :last-child, .framer-iu8Dk .framer-yq8hve > :last-child, .framer-iu8Dk .framer-1owvhhs > :last-child, .framer-iu8Dk .framer-12un8u8 > :last-child { margin-right: 0px; } .framer-iu8Dk .framer-1osgk2s > *, .framer-iu8Dk .framer-1owvhhs > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-iu8Dk .framer-1v90ws2 > *, .framer-iu8Dk .framer-1fanjd8 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-iu8Dk .framer-yq8hve > *, .framer-iu8Dk .framer-12un8u8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-iu8Dk.framer-v-huxf15 .framer-x4q8a1, .framer-iu8Dk.framer-v-1rpl2rj .framer-x4q8a1 { cursor: pointer; }\",\".framer-iu8Dk.framer-v-1rpl2rj.framer-nqwstm { cursor: unset; }\",\".framer-iu8Dk.framer-v-1rpl2rj .framer-1v90ws2, .framer-iu8Dk.framer-v-1rpl2rj .framer-1fanjd8 { gap: 4px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iu8Dk.framer-v-1rpl2rj .framer-1v90ws2, .framer-iu8Dk.framer-v-1rpl2rj .framer-1fanjd8 { gap: 0px; } .framer-iu8Dk.framer-v-1rpl2rj .framer-1v90ws2 > *, .framer-iu8Dk.framer-v-1rpl2rj .framer-1fanjd8 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-iu8Dk.framer-v-1rpl2rj .framer-1v90ws2 > :first-child, .framer-iu8Dk.framer-v-1rpl2rj .framer-1fanjd8 > :first-child { margin-top: 0px; } .framer-iu8Dk.framer-v-1rpl2rj .framer-1v90ws2 > :last-child, .framer-iu8Dk.framer-v-1rpl2rj .framer-1fanjd8 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 27\n * @framerIntrinsicWidth 120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"VjuHIFmXu\":{\"layout\":[\"auto\",\"auto\"]},\"sIIoZ4a1J\":{\"layout\":[\"auto\",\"auto\"]},\"WFzcLiEvZ\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDEdeMZlCi=withCSS(Component,css,\"framer-iu8Dk\");export default FramerDEdeMZlCi;FramerDEdeMZlCi.displayName=\"Tab menu Tech\";FramerDEdeMZlCi.defaultProps={height:27,width:120};addPropertyControls(FramerDEdeMZlCi,{variant:{options:[\"MeEe3gfZz\",\"VjuHIFmXu\",\"sIIoZ4a1J\",\"WFzcLiEvZ\"],optionTitles:[\"Variant 1\",\"open\",\"Variant phone closed\",\"Variant Phone open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerDEdeMZlCi,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]},...CaretFonts,...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDEdeMZlCi\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"27\",\"framerIntrinsicWidth\":\"120\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VjuHIFmXu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"sIIoZ4a1J\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"WFzcLiEvZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DEdeMZlCi.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-regular\",\"FS;Satoshi-bold\",\"FS;Satoshi-bold italic\",\"FS;Satoshi-italic\"]);export const fonts=[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MPIFA4B3XXRNY2MJDGP6GOOOAF6EOCLO/W5E4ZFYPJ3V6JKMBGHB6YMITK6EWS2XA/QOMBWPST76ICDYF6WOBS7SQ7RBT67QW2.woff2\",weight:\"400\"}];export const css=['.framer-OrgcZ .framer-styles-preset-ia6ese:not(.rich-text-wrapper), .framer-OrgcZ .framer-styles-preset-ia6ese.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi 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: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 160%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-63543266-d977-48ae-a608-2640fed612cd, #6a7854); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-OrgcZ\";\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([\"GF;DM Sans-500\",\"GF;DM Sans-700\",\"GF;DM Sans-700italic\",\"GF;DM Sans-500italic\"]);export const fonts=[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm32RmYJpso5.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-7DW32RmYJpso5.woff2\",weight:\"500\"}];export const css=['.framer-t7Aep .framer-styles-preset-1r2zmyo:not(.rich-text-wrapper), .framer-t7Aep .framer-styles-preset-1r2zmyo.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-size: 15px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, #2c4800); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-t7Aep\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (716ed5b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Link,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/gr2d7S9S8yDOBVuj4k0i/oL9R8PEI6Qbuk7ceh1xe/Bs097bP7Q.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/dgb2Nblmy9UWrzX6Wvvm/WH2obpZZLmaPgIfLjFvw/BUvbPfCKf.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={HCOTTSF9L:{hover:true}};const cycleOrder=[\"HCOTTSF9L\"];const serializationHash=\"framer-LIldV\";const variantClassNames={HCOTTSF9L:\"framer-v-cu12q4\"};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 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 getProps=({height,id,link,subHeading,title,width,...props})=>{var _ref,_ref1;return{...props,b7U7jztHx:link!==null&&link!==void 0?link:props.b7U7jztHx,E6FrGgOBf:(_ref=subHeading!==null&&subHeading!==void 0?subHeading:props.E6FrGgOBf)!==null&&_ref!==void 0?_ref:\"An infinite canvas\",oBuYGdcM2:(_ref1=title!==null&&title!==void 0?title:props.oBuYGdcM2)!==null&&_ref1!==void 0?_ref1:\"Design\"};};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,oBuYGdcM2,E6FrGgOBf,b7U7jztHx,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"HCOTTSF9L\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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__*/_jsx(Link,{href:b7U7jztHx,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-cu12q4\",className,classNames)} framer-13c02c4`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"HCOTTSF9L\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"HCOTTSF9L-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1plyks9\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"JC7WUdEDG\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{\"HCOTTSF9L-hover\":{\"--border-bottom-width\":\"0px\",\"--border-color\":'var(--token-a7e55753-55e4-453c-b2cd-6d4851533872, rgb(222, 91, 39)) /* {\"name\":\"Orange\"} */',\"--border-left-width\":\"1px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({\"HCOTTSF9L-hover\":{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1r2zmyo\",\"data-styles-preset\":\"BUvbPfCKf\",children:\"Design\"})}),className:\"framer-1qaefyt\",layoutDependency:layoutDependency,layoutId:\"Ixr1Cp3uW\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:oBuYGdcM2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ia6ese\",\"data-styles-preset\":\"Bs097bP7Q\",children:\"An infinite canvas\"})}),className:\"framer-tgqd33\",layoutDependency:layoutDependency,layoutId:\"VjX5blFb0\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:E6FrGgOBf,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-b904vr\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"EjZxx99et\",style:{backgroundColor:\"var(--token-8cb2084f-ada9-4325-af22-fb5b735c144b, rgb(255, 248, 241))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,opacity:0},variants:{\"HCOTTSF9L-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4gbfkn-container\",layoutDependency:layoutDependency,layoutId:\"BGBu1fN1J-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a7e55753-55e4-453c-b2cd-6d4851533872, rgb(222, 91, 39))\",height:\"100%\",iconSearch:\"arrow right\",iconSelection:\"House\",id:\"BGBu1fN1J\",layoutId:\"BGBu1fN1J\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})})})})});});const css=['.framer-LIldV[data-border=\"true\"]::after, .framer-LIldV [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-LIldV.framer-13c02c4, .framer-LIldV .framer-13c02c4 { display: block; }\",\".framer-LIldV.framer-cu12q4 { align-content: flex-end; align-items: flex-end; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 274px; }\",\".framer-LIldV .framer-1plyks9 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-LIldV .framer-1qaefyt { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-LIldV .framer-tgqd33 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-LIldV .framer-b904vr { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px 8px 8px 8px; position: absolute; right: 0px; width: min-content; z-index: 1; }\",\".framer-LIldV .framer-4gbfkn-container { flex: none; height: 16px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LIldV.framer-cu12q4, .framer-LIldV .framer-1plyks9, .framer-LIldV .framer-b904vr { gap: 0px; } .framer-LIldV.framer-cu12q4 > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-LIldV.framer-cu12q4 > :first-child, .framer-LIldV .framer-b904vr > :first-child { margin-left: 0px; } .framer-LIldV.framer-cu12q4 > :last-child, .framer-LIldV .framer-b904vr > :last-child { margin-right: 0px; } .framer-LIldV .framer-1plyks9 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-LIldV .framer-1plyks9 > :first-child { margin-top: 0px; } .framer-LIldV .framer-1plyks9 > :last-child { margin-bottom: 0px; } .framer-LIldV .framer-b904vr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-LIldV.framer-v-cu12q4.hover.framer-cu12q4 { align-content: flex-start; align-items: flex-start; }\",\".framer-LIldV.framer-v-cu12q4.hover .framer-1plyks9 { padding: 0px 0px 0px 10px; }\",\".framer-LIldV.framer-v-cu12q4.hover .framer-b904vr { bottom: unset; top: 0px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 41\n * @framerIntrinsicWidth 273.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"IFf5UyUL2\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"oBuYGdcM2\":\"title\",\"E6FrGgOBf\":\"subHeading\",\"b7U7jztHx\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const Framerv4NnQRbLR=withCSS(Component,css,\"framer-LIldV\");export default Framerv4NnQRbLR;Framerv4NnQRbLR.displayName=\"Submenu Item\";Framerv4NnQRbLR.defaultProps={height:41,width:273.5};addPropertyControls(Framerv4NnQRbLR,{oBuYGdcM2:{defaultValue:\"Design\",displayTextArea:false,title:\"Title\",type:ControlType.String},E6FrGgOBf:{defaultValue:\"An infinite canvas\",displayTextArea:false,title:\"Sub Heading\",type:ControlType.String},b7U7jztHx:{title:\"Link\",type:ControlType.Link}});addFonts(Framerv4NnQRbLR,[...PhosphorFonts,...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerv4NnQRbLR\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"273.5\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IFf5UyUL2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"41\",\"framerVariables\":\"{\\\"oBuYGdcM2\\\":\\\"title\\\",\\\"E6FrGgOBf\\\":\\\"subHeading\\\",\\\"b7U7jztHx\\\":\\\"link\\\"}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./v4NnQRbLR.map", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./FRZNGj4IY-0.js\";import SubmenuItem from\"https://framerusercontent.com/modules/hw7V3DSp68MAPx48Omah/JZMXggrhijUAyywvq1jO/v4NnQRbLR.js\";const SubmenuItemFonts=getFonts(SubmenuItem);const serializationHash=\"framer-u62Q5\";const variantClassNames={WXhCqCShg:\"framer-v-fxtbch\"};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 valuesByLocaleId={VH393QRe6: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 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 getProps=({height,id,width,...props})=>{return{...props};};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({defaultVariant:\"WXhCqCShg\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-fxtbch\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Single\",layoutDependency:layoutDependency,layoutId:\"WXhCqCShg\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9e5cf286-6288-470f-9ece-f934d8d69487, rgba(62, 69, 81, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-4477b7d8-c795-4d73-8382-4dc54f954441, rgb(255, 255, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nx5zc3\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"G0Gha0tgc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e44a9202-0471-49cb-b948-fca628655188, rgba(88, 120, 36, 0.5)))\"},children:\"TECHNOLOGY\"})}),className:\"framer-fn4s5j\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"rrERF2wXn\",style:{\"--extracted-r6o4lv\":\"var(--token-e44a9202-0471-49cb-b948-fca628655188, rgba(88, 120, 36, 0.5))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JO3qBQ43b\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10om4gw-container\",layoutDependency:layoutDependency,layoutId:\"bodQhW30x-container\",children:/*#__PURE__*/_jsx(SubmenuItem,{b7U7jztHx:resolvedLinks[0],E6FrGgOBf:\"Liposomal Powder Technology.\",height:\"100%\",id:\"bodQhW30x\",layoutId:\"bodQhW30x\",oBuYGdcM2:\"Zeal Technology\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-k6iezd\",\"data-framer-name\":\"Separator\",layoutDependency:layoutDependency,layoutId:\"phdFKEiUo\",style:{backgroundColor:\"var(--token-9e5cf286-6288-470f-9ece-f934d8d69487, rgba(62, 69, 81, 0.1))\"}}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UsPIQNwEu\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-a74pjy-container\",layoutDependency:layoutDependency,layoutId:\"biqvoU3LO-container\",children:/*#__PURE__*/_jsx(SubmenuItem,{b7U7jztHx:resolvedLinks1[0],E6FrGgOBf:\"Bringing Ayurveda to the 21st Century.\",height:\"100%\",id:\"biqvoU3LO\",layoutId:\"biqvoU3LO\",oBuYGdcM2:\"PNS Technology\",style:{width:\"100%\"},width:\"100%\"})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-u62Q5.framer-1cchj2, .framer-u62Q5 .framer-1cchj2 { display: block; }\",\".framer-u62Q5.framer-fxtbch { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 390px; }\",\".framer-u62Q5 .framer-1nx5zc3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 1px; }\",\".framer-u62Q5 .framer-fn4s5j { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-u62Q5 .framer-10om4gw-container, .framer-u62Q5 .framer-a74pjy-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-u62Q5 .framer-k6iezd { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-u62Q5.framer-fxtbch, .framer-u62Q5 .framer-1nx5zc3 { gap: 0px; } .framer-u62Q5.framer-fxtbch > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-u62Q5.framer-fxtbch > :first-child { margin-left: 0px; } .framer-u62Q5.framer-fxtbch > :last-child { margin-right: 0px; } .framer-u62Q5 .framer-1nx5zc3 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-u62Q5 .framer-1nx5zc3 > :first-child { margin-top: 0px; } .framer-u62Q5 .framer-1nx5zc3 > :last-child { margin-bottom: 0px; } }\",'.framer-u62Q5[data-border=\"true\"]::after, .framer-u62Q5 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 218.5\n * @framerIntrinsicWidth 390\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFRZNGj4IY=withCSS(Component,css,\"framer-u62Q5\");export default FramerFRZNGj4IY;FramerFRZNGj4IY.displayName=\"Mega Menu / Technology\";FramerFRZNGj4IY.defaultProps={height:218.5,width:390};addFonts(FramerFRZNGj4IY,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"}]},...SubmenuItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFRZNGj4IY\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"390\",\"framerIntrinsicHeight\":\"218.5\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FRZNGj4IY.map", "// Generated by Framer (9e1dc8e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Caret from\"https://framerusercontent.com/modules/hx06YNv5Gw5QWVAdY2Pw/dtYHyvSnrDwyBKslJ2Pd/gVUDvJoa4.js\";import*as localizedValues from\"./KJ3vtYGuD-0.js\";const CaretFonts=getFonts(Caret);const cycleOrder=[\"IT9KLjTiI\",\"hVch8tBom\"];const serializationHash=\"framer-OTDAx\";const variantClassNames={hVch8tBom:\"framer-v-1dvclaj\",IT9KLjTiI:\"framer-v-ddpfl5\"};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 valuesByLocaleId={VH393QRe6: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 transition1={damping:40,delay:0,mass:1,stiffness:600,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={Closed:\"IT9KLjTiI\",Open:\"hVch8tBom\"};const getProps=({click,color,height,hover2,hover3,hover4,hover5,id,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,abBo6mUMI:hover5!==null&&hover5!==void 0?hover5:props.abBo6mUMI,BxUxalNR5:click!==null&&click!==void 0?click:props.BxUxalNR5,DApvjrdfG:(_ref=title!==null&&title!==void 0?title:props.DApvjrdfG)!==null&&_ref!==void 0?_ref:\"Product\",rMfkujzBa:hover2!==null&&hover2!==void 0?hover2:props.rMfkujzBa,u5lzX_nF6:(_ref1=color!==null&&color!==void 0?color:props.u5lzX_nF6)!==null&&_ref1!==void 0?_ref1:\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"IT9KLjTiI\",W3shnvXX6:hover4!==null&&hover4!==void 0?hover4:props.W3shnvXX6,X5EyQLNZz:hover3!==null&&hover3!==void 0?hover3:props.X5EyQLNZz};};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,DApvjrdfG,u5lzX_nF6,BxUxalNR5,rMfkujzBa,X5EyQLNZz,W3shnvXX6,abBo6mUMI,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"IT9KLjTiI\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapn83ub4=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(BxUxalNR5){const res=await BxUxalNR5(...args);if(res===false)return false;}});const onMouseEnter1dwghrw=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(rMfkujzBa){const res=await rMfkujzBa(...args);if(res===false)return false;}if(X5EyQLNZz){const res=await X5EyQLNZz(...args);if(res===false)return false;}if(W3shnvXX6){const res=await W3shnvXX6(...args);if(res===false)return false;}if(abBo6mUMI){const res=await abBo6mUMI(...args);if(res===false)return false;}});const ref1=React.useRef(null);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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ddpfl5\",className,classNames),\"data-framer-name\":\"Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"IT9KLjTiI\",onMouseEnter:onMouseEnter1dwghrw,onTap:onTapn83ub4,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({hVch8tBom:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-u5lzX_nF6-KJ3vtYGuD))\",\"--framer-text-transform\":\"uppercase\"},children:\"Product\"})}),className:\"framer-a1sb9s\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"mPBOD7xKL\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-u5lzX_nF6-KJ3vtYGuD)\",\"--variable-reference-u5lzX_nF6-KJ3vtYGuD\":u5lzX_nF6},text:DApvjrdfG,variants:{hVch8tBom:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({hVch8tBom:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\",\"--framer-text-transform\":\"uppercase\"},children:\"Product\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(5+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-10-14)/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8x5hfp-container\",layoutDependency:layoutDependency,layoutId:\"QohRPcBI3-container\",children:/*#__PURE__*/_jsx(Caret,{height:\"100%\",id:\"QohRPcBI3\",layoutId:\"QohRPcBI3\",variant:\"e9_YU_sm1\",width:\"100%\",...addPropertyOverrides({hVch8tBom:{variant:\"PJ5ikxBQk\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OTDAx.framer-agt4ad, .framer-OTDAx .framer-agt4ad { display: block; }\",\".framer-OTDAx.framer-ddpfl5 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 0px 5px 0px; position: relative; width: min-content; }\",\".framer-OTDAx .framer-a1sb9s { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-OTDAx .framer-8x5hfp-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OTDAx.framer-ddpfl5 { gap: 0px; } .framer-OTDAx.framer-ddpfl5 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-OTDAx.framer-ddpfl5 > :first-child { margin-left: 0px; } .framer-OTDAx.framer-ddpfl5 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 74\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"hVch8tBom\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"DApvjrdfG\":\"title\",\"u5lzX_nF6\":\"color\",\"BxUxalNR5\":\"click\",\"rMfkujzBa\":\"hover2\",\"X5EyQLNZz\":\"hover3\",\"W3shnvXX6\":\"hover4\",\"abBo6mUMI\":\"hover5\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKJ3vtYGuD=withCSS(Component,css,\"framer-OTDAx\");export default FramerKJ3vtYGuD;FramerKJ3vtYGuD.displayName=\"Trigger\";FramerKJ3vtYGuD.defaultProps={height:24,width:74};addPropertyControls(FramerKJ3vtYGuD,{variant:{options:[\"IT9KLjTiI\",\"hVch8tBom\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},DApvjrdfG:{defaultValue:\"Product\",displayTextArea:false,title:\"Title\",type:ControlType.String},u5lzX_nF6:{defaultValue:\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\",title:\"Color\",type:ControlType.Color},BxUxalNR5:{title:\"Click\",type:ControlType.EventHandler},rMfkujzBa:{title:\"Hover 2\",type:ControlType.EventHandler},X5EyQLNZz:{title:\"Hover 3\",type:ControlType.EventHandler},W3shnvXX6:{title:\"Hover 4\",type:ControlType.EventHandler},abBo6mUMI:{title:\"Hover 5\",type:ControlType.EventHandler}});addFonts(FramerKJ3vtYGuD,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"}]},...CaretFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKJ3vtYGuD\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"24\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hVch8tBom\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"74\",\"framerVariables\":\"{\\\"DApvjrdfG\\\":\\\"title\\\",\\\"u5lzX_nF6\\\":\\\"color\\\",\\\"BxUxalNR5\\\":\\\"click\\\",\\\"rMfkujzBa\\\":\\\"hover2\\\",\\\"X5EyQLNZz\\\":\\\"hover3\\\",\\\"W3shnvXX6\\\":\\\"hover4\\\",\\\"abBo6mUMI\\\":\\\"hover5\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KJ3vtYGuD.map", "// Generated by Framer (552ec80)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Caret from\"https://framerusercontent.com/modules/hx06YNv5Gw5QWVAdY2Pw/dtYHyvSnrDwyBKslJ2Pd/gVUDvJoa4.js\";const CaretFonts=getFonts(Caret);const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"sJTV2vbb3\",\"FKJup4FHo\",\"Rl_k9Q_Z1\",\"ntYhNdzCf\"];const serializationHash=\"framer-hDT4Y\";const variantClassNames={FKJup4FHo:\"framer-v-spu3ho\",ntYhNdzCf:\"framer-v-a93950\",Rl_k9Q_Z1:\"framer-v-3nesuc\",sJTV2vbb3:\"framer-v-1uk32sj\"};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={bounce:.2,delay:0,duration:.4,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={\"phone closed\":\"Rl_k9Q_Z1\",\"Phone open\":\"ntYhNdzCf\",\"Variant 2\":\"FKJup4FHo\",closed:\"sJTV2vbb3\"};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:\"sJTV2vbb3\"};};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:\"sJTV2vbb3\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1croa7i=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"FKJup4FHo\");});const onTapbnsxwq=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"ntYhNdzCf\");});const onTapc9bg60=activeVariantCallback(async(...args)=>{setVariant(\"sJTV2vbb3\");});const onTap164ejh4=activeVariantCallback(async(...args)=>{setVariant(\"Rl_k9Q_Z1\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"FKJup4FHo\",\"ntYhNdzCf\"].includes(baseVariant))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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1uk32sj\",className,classNames),\"data-framer-name\":\"closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"sJTV2vbb3\",onTap:onTap1croa7i,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({FKJup4FHo:{\"data-framer-name\":\"Variant 2\"},ntYhNdzCf:{\"data-framer-name\":\"Phone open\",\"data-highlight\":undefined,onTap:undefined},Rl_k9Q_Z1:{\"data-framer-name\":\"phone closed\",onTap:onTapbnsxwq}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-egwjvc\",\"data-framer-name\":\"Trigger\",layoutDependency:layoutDependency,layoutId:\"IHoL0HKcw\",...addPropertyOverrides({FKJup4FHo:{\"data-highlight\":true,onTap:onTapc9bg60},ntYhNdzCf:{\"data-highlight\":true,onTap:onTap164ejh4}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Human Nutrition\"})}),className:\"framer-18mwct\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"rVGOqBc6y\",style:{\"--extracted-r6o4lv\":\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ntYhNdzCf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Human Nutrition\"})})},Rl_k9Q_Z1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Human Nutrition\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+6.4,...addPropertyOverrides({ntYhNdzCf:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+5.800000000000001},Rl_k9Q_Z1:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+5.800000000000001}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-b9e3oi-container\",layoutDependency:layoutDependency,layoutId:\"RrqfDwe7X-container\",children:/*#__PURE__*/_jsx(Caret,{height:\"100%\",id:\"RrqfDwe7X\",layoutId:\"RrqfDwe7X\",variant:\"e9_YU_sm1\",width:\"100%\",...addPropertyOverrides({FKJup4FHo:{variant:\"PJ5ikxBQk\"},ntYhNdzCf:{variant:\"PJ5ikxBQk\"}},baseVariant,gestureVariant)})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hillnFyD4\"},nodeId:\"fDM8VRCd6\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-2ckcth framer-1qzwr8h\",\"data-framer-name\":\"Submenu Item\",layoutDependency:layoutDependency,layoutId:\"fDM8VRCd6\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7l87yp\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"A1uL4yNM5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\"},children:\"Fitnox\"})}),className:\"framer-ya60yt\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"HlY2GRlj9\",style:{\"--extracted-r6o4lv\":\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ntYhNdzCf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\"},children:\"Fitnox\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(106, 120, 84)))\"},children:\"Pre & Post exercise supplement\"})}),className:\"framer-b3r9hj\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"dOUuGPcTt\",style:{\"--extracted-r6o4lv\":\"var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(106, 120, 84))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q9goew\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"rWW6GiTCV\",style:{backgroundColor:\"var(--token-8cb2084f-ada9-4325-af22-fb5b735c144b, rgb(255, 248, 241))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,opacity:0},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-py428v-container\",layoutDependency:layoutDependency,layoutId:\"uCXEsaFik-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a7e55753-55e4-453c-b2cd-6d4851533872, rgb(222, 91, 39))\",height:\"100%\",iconSearch:\"arrow right\",iconSelection:\"House\",id:\"uCXEsaFik\",layoutId:\"uCXEsaFik\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mgRRTX1UT\"},nodeId:\"Ryr5EDlEq\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1abd9g4 framer-1qzwr8h\",\"data-framer-name\":\"Submenu Item\",layoutDependency:layoutDependency,layoutId:\"Ryr5EDlEq\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wwgajh\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"fhuBh9pQv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\"},children:\"Actbiome\"})}),className:\"framer-13480i8\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"NcauBefZ_\",style:{\"--extracted-r6o4lv\":\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ntYhNdzCf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\"},children:\"Actbiome\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(106, 120, 84)))\"},children:\"Innovative Solution for Gut Health\"})}),className:\"framer-1cdmfjm\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"GdhOx3y6f\",style:{\"--extracted-r6o4lv\":\"var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(106, 120, 84))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yxap14\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"LjfqsLoat\",style:{backgroundColor:\"var(--token-8cb2084f-ada9-4325-af22-fb5b735c144b, rgb(255, 248, 241))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,opacity:0},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-z1qs5r-container\",layoutDependency:layoutDependency,layoutId:\"gRDBMCHky-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a7e55753-55e4-453c-b2cd-6d4851533872, rgb(222, 91, 39))\",height:\"100%\",iconSearch:\"arrow right\",iconSelection:\"House\",id:\"gRDBMCHky\",layoutId:\"gRDBMCHky\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jFth1gR09\"},nodeId:\"RRX9NECV3\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-2mk29r framer-1qzwr8h\",\"data-framer-name\":\"Submenu Item\",layoutDependency:layoutDependency,layoutId:\"RRX9NECV3\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sfd79c\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"KHAUbLMFX\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\"},children:\"Ginactiv\"})}),className:\"framer-vhnky\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"TbtDp75JF\",style:{\"--extracted-r6o4lv\":\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ntYhNdzCf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\"},children:\"Ginactiv\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(106, 120, 84)))\"},children:\"Rediscover the Essence of Ginger\"})}),className:\"framer-6rz99z\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"WXPrzBi8N\",style:{\"--extracted-r6o4lv\":\"var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(106, 120, 84))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cv8gtf\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"ZdocXK5F5\",style:{backgroundColor:\"var(--token-8cb2084f-ada9-4325-af22-fb5b735c144b, rgb(255, 248, 241))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,opacity:0},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-iyfcfl-container\",layoutDependency:layoutDependency,layoutId:\"WGYzBW3Eg-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a7e55753-55e4-453c-b2cd-6d4851533872, rgb(222, 91, 39))\",height:\"100%\",iconSearch:\"arrow right\",iconSelection:\"House\",id:\"WGYzBW3Eg\",layoutId:\"WGYzBW3Eg\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"C8vuSBGXx\"},nodeId:\"tloD2b_zu\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1vuonui framer-1qzwr8h\",\"data-framer-name\":\"Submenu Item\",layoutDependency:layoutDependency,layoutId:\"tloD2b_zu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cyj57y\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"QqG4B6why\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\"},children:\"Acumin\"})}),className:\"framer-1w42cxm\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"CYQKy1QNN\",style:{\"--extracted-r6o4lv\":\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ntYhNdzCf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\"},children:\"Acumin\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(106, 120, 84)))\"},children:\"Highly Bioavailable Curcumin\"})}),className:\"framer-1r8ky2p\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"udg4zndaV\",style:{\"--extracted-r6o4lv\":\"var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(106, 120, 84))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ydcuee\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"U7EFfai8x\",style:{backgroundColor:\"var(--token-8cb2084f-ada9-4325-af22-fb5b735c144b, rgb(255, 248, 241))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,opacity:0},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15zkakg-container\",layoutDependency:layoutDependency,layoutId:\"ES7PmWQVp-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a7e55753-55e4-453c-b2cd-6d4851533872, rgb(222, 91, 39))\",height:\"100%\",iconSearch:\"arrow right\",iconSelection:\"House\",id:\"ES7PmWQVp\",layoutId:\"ES7PmWQVp\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fwFEnXbzD\"},nodeId:\"sq5tARcRr\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-dywf4z framer-1qzwr8h\",\"data-framer-name\":\"Submenu Item\",layoutDependency:layoutDependency,layoutId:\"sq5tARcRr\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g64ai3\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"dkf_SfidR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\"},children:\"Acujoint\"})}),className:\"framer-c9yipl\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"DoyLJMTJl\",style:{\"--extracted-r6o4lv\":\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ntYhNdzCf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\"},children:\"Acujoint\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(106, 120, 84)))\"},children:\"Innovative Solution for Joint Health\"})}),className:\"framer-kl42c\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"qc7qRHnKI\",style:{\"--extracted-r6o4lv\":\"var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(106, 120, 84))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o98cp6\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"QzVzFj5Rj\",style:{backgroundColor:\"var(--token-8cb2084f-ada9-4325-af22-fb5b735c144b, rgb(255, 248, 241))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,opacity:0},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1grru2c-container\",layoutDependency:layoutDependency,layoutId:\"U5rnuRJ_k-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a7e55753-55e4-453c-b2cd-6d4851533872, rgb(222, 91, 39))\",height:\"100%\",iconSearch:\"arrow right\",iconSelection:\"House\",id:\"U5rnuRJ_k\",layoutId:\"U5rnuRJ_k\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Psyf14too\"},nodeId:\"VGNfvV025\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1feg8b1 framer-1qzwr8h\",\"data-framer-name\":\"Submenu Item\",layoutDependency:layoutDependency,layoutId:\"VGNfvV025\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ugay3q\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"XQIEaSnIP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\"},children:\"Rephyll\"})}),className:\"framer-1nuhsxi\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"kQS4eUz91\",style:{\"--extracted-r6o4lv\":\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ntYhNdzCf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\"},children:\"Rephyll\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(106, 120, 84)))\"},children:\"Manage Pain Naturally\"})}),className:\"framer-3sa42c\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"Fo4KIQ7GU\",style:{\"--extracted-r6o4lv\":\"var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(106, 120, 84))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x6445\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"z1A2Sk7LB\",style:{backgroundColor:\"var(--token-8cb2084f-ada9-4325-af22-fb5b735c144b, rgb(255, 248, 241))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,opacity:0},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wllpe0-container\",layoutDependency:layoutDependency,layoutId:\"IBDtVGctU-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a7e55753-55e4-453c-b2cd-6d4851533872, rgb(222, 91, 39))\",height:\"100%\",iconSearch:\"arrow right\",iconSelection:\"House\",id:\"IBDtVGctU\",layoutId:\"IBDtVGctU\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hDT4Y.framer-1qzwr8h, .framer-hDT4Y .framer-1qzwr8h { display: block; }\",\".framer-hDT4Y.framer-1uk32sj { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-hDT4Y .framer-egwjvc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 0px 5px 0px; position: relative; width: min-content; }\",\".framer-hDT4Y .framer-18mwct { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hDT4Y .framer-b9e3oi-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-hDT4Y .framer-2ckcth, .framer-hDT4Y .framer-1abd9g4, .framer-hDT4Y .framer-2mk29r, .framer-hDT4Y .framer-1vuonui, .framer-hDT4Y .framer-dywf4z, .framer-hDT4Y .framer-1feg8b1 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 240px; }\",\".framer-hDT4Y .framer-7l87yp, .framer-hDT4Y .framer-wwgajh, .framer-hDT4Y .framer-sfd79c, .framer-hDT4Y .framer-1cyj57y, .framer-hDT4Y .framer-g64ai3, .framer-hDT4Y .framer-ugay3q { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hDT4Y .framer-ya60yt, .framer-hDT4Y .framer-13480i8, .framer-hDT4Y .framer-vhnky, .framer-hDT4Y .framer-1w42cxm, .framer-hDT4Y .framer-c9yipl, .framer-hDT4Y .framer-1nuhsxi { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-hDT4Y .framer-b3r9hj, .framer-hDT4Y .framer-1cdmfjm, .framer-hDT4Y .framer-6rz99z, .framer-hDT4Y .framer-1r8ky2p, .framer-hDT4Y .framer-kl42c, .framer-hDT4Y .framer-3sa42c { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hDT4Y .framer-1q9goew, .framer-hDT4Y .framer-yxap14, .framer-hDT4Y .framer-1cv8gtf, .framer-hDT4Y .framer-1ydcuee, .framer-hDT4Y .framer-o98cp6, .framer-hDT4Y .framer-1x6445 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px; position: absolute; right: 0px; width: min-content; z-index: 1; }\",\".framer-hDT4Y .framer-py428v-container, .framer-hDT4Y .framer-z1qs5r-container, .framer-hDT4Y .framer-iyfcfl-container, .framer-hDT4Y .framer-15zkakg-container, .framer-hDT4Y .framer-1grru2c-container, .framer-hDT4Y .framer-wllpe0-container { flex: none; height: 16px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hDT4Y.framer-1uk32sj, .framer-hDT4Y .framer-egwjvc, .framer-hDT4Y .framer-2ckcth, .framer-hDT4Y .framer-7l87yp, .framer-hDT4Y .framer-1q9goew, .framer-hDT4Y .framer-1abd9g4, .framer-hDT4Y .framer-wwgajh, .framer-hDT4Y .framer-yxap14, .framer-hDT4Y .framer-2mk29r, .framer-hDT4Y .framer-sfd79c, .framer-hDT4Y .framer-1cv8gtf, .framer-hDT4Y .framer-1vuonui, .framer-hDT4Y .framer-1cyj57y, .framer-hDT4Y .framer-1ydcuee, .framer-hDT4Y .framer-dywf4z, .framer-hDT4Y .framer-g64ai3, .framer-hDT4Y .framer-o98cp6, .framer-hDT4Y .framer-1feg8b1, .framer-hDT4Y .framer-ugay3q, .framer-hDT4Y .framer-1x6445 { gap: 0px; } .framer-hDT4Y.framer-1uk32sj > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-hDT4Y.framer-1uk32sj > :first-child, .framer-hDT4Y .framer-7l87yp > :first-child, .framer-hDT4Y .framer-wwgajh > :first-child, .framer-hDT4Y .framer-sfd79c > :first-child, .framer-hDT4Y .framer-1cyj57y > :first-child, .framer-hDT4Y .framer-g64ai3 > :first-child, .framer-hDT4Y .framer-ugay3q > :first-child { margin-top: 0px; } .framer-hDT4Y.framer-1uk32sj > :last-child, .framer-hDT4Y .framer-7l87yp > :last-child, .framer-hDT4Y .framer-wwgajh > :last-child, .framer-hDT4Y .framer-sfd79c > :last-child, .framer-hDT4Y .framer-1cyj57y > :last-child, .framer-hDT4Y .framer-g64ai3 > :last-child, .framer-hDT4Y .framer-ugay3q > :last-child { margin-bottom: 0px; } .framer-hDT4Y .framer-egwjvc > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-hDT4Y .framer-egwjvc > :first-child, .framer-hDT4Y .framer-2ckcth > :first-child, .framer-hDT4Y .framer-1q9goew > :first-child, .framer-hDT4Y .framer-1abd9g4 > :first-child, .framer-hDT4Y .framer-yxap14 > :first-child, .framer-hDT4Y .framer-2mk29r > :first-child, .framer-hDT4Y .framer-1cv8gtf > :first-child, .framer-hDT4Y .framer-1vuonui > :first-child, .framer-hDT4Y .framer-1ydcuee > :first-child, .framer-hDT4Y .framer-dywf4z > :first-child, .framer-hDT4Y .framer-o98cp6 > :first-child, .framer-hDT4Y .framer-1feg8b1 > :first-child, .framer-hDT4Y .framer-1x6445 > :first-child { margin-left: 0px; } .framer-hDT4Y .framer-egwjvc > :last-child, .framer-hDT4Y .framer-2ckcth > :last-child, .framer-hDT4Y .framer-1q9goew > :last-child, .framer-hDT4Y .framer-1abd9g4 > :last-child, .framer-hDT4Y .framer-yxap14 > :last-child, .framer-hDT4Y .framer-2mk29r > :last-child, .framer-hDT4Y .framer-1cv8gtf > :last-child, .framer-hDT4Y .framer-1vuonui > :last-child, .framer-hDT4Y .framer-1ydcuee > :last-child, .framer-hDT4Y .framer-dywf4z > :last-child, .framer-hDT4Y .framer-o98cp6 > :last-child, .framer-hDT4Y .framer-1feg8b1 > :last-child, .framer-hDT4Y .framer-1x6445 > :last-child { margin-right: 0px; } .framer-hDT4Y .framer-2ckcth > *, .framer-hDT4Y .framer-1abd9g4 > *, .framer-hDT4Y .framer-2mk29r > *, .framer-hDT4Y .framer-1vuonui > *, .framer-hDT4Y .framer-dywf4z > *, .framer-hDT4Y .framer-1feg8b1 > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-hDT4Y .framer-7l87yp > *, .framer-hDT4Y .framer-wwgajh > *, .framer-hDT4Y .framer-sfd79c > *, .framer-hDT4Y .framer-1cyj57y > *, .framer-hDT4Y .framer-g64ai3 > *, .framer-hDT4Y .framer-ugay3q > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-hDT4Y .framer-1q9goew > *, .framer-hDT4Y .framer-yxap14 > *, .framer-hDT4Y .framer-1cv8gtf > *, .framer-hDT4Y .framer-1ydcuee > *, .framer-hDT4Y .framer-o98cp6 > *, .framer-hDT4Y .framer-1x6445 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-hDT4Y.framer-v-spu3ho .framer-egwjvc, .framer-hDT4Y.framer-v-a93950 .framer-egwjvc { cursor: pointer; }\",\".framer-hDT4Y.framer-v-a93950.framer-1uk32sj { cursor: unset; }\",\".framer-hDT4Y.framer-v-a93950 .framer-7l87yp, .framer-hDT4Y.framer-v-a93950 .framer-wwgajh, .framer-hDT4Y.framer-v-a93950 .framer-sfd79c, .framer-hDT4Y.framer-v-a93950 .framer-1cyj57y, .framer-hDT4Y.framer-v-a93950 .framer-g64ai3, .framer-hDT4Y.framer-v-a93950 .framer-ugay3q { gap: 4px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hDT4Y.framer-v-a93950 .framer-7l87yp, .framer-hDT4Y.framer-v-a93950 .framer-wwgajh, .framer-hDT4Y.framer-v-a93950 .framer-sfd79c, .framer-hDT4Y.framer-v-a93950 .framer-1cyj57y, .framer-hDT4Y.framer-v-a93950 .framer-g64ai3, .framer-hDT4Y.framer-v-a93950 .framer-ugay3q { gap: 0px; } .framer-hDT4Y.framer-v-a93950 .framer-7l87yp > *, .framer-hDT4Y.framer-v-a93950 .framer-wwgajh > *, .framer-hDT4Y.framer-v-a93950 .framer-sfd79c > *, .framer-hDT4Y.framer-v-a93950 .framer-1cyj57y > *, .framer-hDT4Y.framer-v-a93950 .framer-g64ai3 > *, .framer-hDT4Y.framer-v-a93950 .framer-ugay3q > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-hDT4Y.framer-v-a93950 .framer-7l87yp > :first-child, .framer-hDT4Y.framer-v-a93950 .framer-wwgajh > :first-child, .framer-hDT4Y.framer-v-a93950 .framer-sfd79c > :first-child, .framer-hDT4Y.framer-v-a93950 .framer-1cyj57y > :first-child, .framer-hDT4Y.framer-v-a93950 .framer-g64ai3 > :first-child, .framer-hDT4Y.framer-v-a93950 .framer-ugay3q > :first-child { margin-top: 0px; } .framer-hDT4Y.framer-v-a93950 .framer-7l87yp > :last-child, .framer-hDT4Y.framer-v-a93950 .framer-wwgajh > :last-child, .framer-hDT4Y.framer-v-a93950 .framer-sfd79c > :last-child, .framer-hDT4Y.framer-v-a93950 .framer-1cyj57y > :last-child, .framer-hDT4Y.framer-v-a93950 .framer-g64ai3 > :last-child, .framer-hDT4Y.framer-v-a93950 .framer-ugay3q > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 27\n * @framerIntrinsicWidth 156.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"FKJup4FHo\":{\"layout\":[\"auto\",\"auto\"]},\"Rl_k9Q_Z1\":{\"layout\":[\"auto\",\"auto\"]},\"ntYhNdzCf\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTe22MQM1I=withCSS(Component,css,\"framer-hDT4Y\");export default FramerTe22MQM1I;FramerTe22MQM1I.displayName=\"Tab menu products\";FramerTe22MQM1I.defaultProps={height:27,width:156.5};addPropertyControls(FramerTe22MQM1I,{variant:{options:[\"sJTV2vbb3\",\"FKJup4FHo\",\"Rl_k9Q_Z1\",\"ntYhNdzCf\"],optionTitles:[\"closed\",\"Variant 2\",\"phone closed\",\"Phone open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerTe22MQM1I,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]},...CaretFonts,...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTe22MQM1I\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FKJup4FHo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Rl_k9Q_Z1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ntYhNdzCf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"156.5\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"27\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Te22MQM1I.map", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,ResolveLinks,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SubmenuItem from\"https://framerusercontent.com/modules/hw7V3DSp68MAPx48Omah/JZMXggrhijUAyywvq1jO/v4NnQRbLR.js\";import*as localizedValues from\"./WhvZz4zsO-0.js\";const SubmenuItemFonts=getFonts(SubmenuItem);const serializationHash=\"framer-5lFyd\";const variantClassNames={vMD6wKHg0:\"framer-v-o019xv\"};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 valuesByLocaleId={VH393QRe6: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 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 getProps=({height,id,width,...props})=>{return{...props};};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({defaultVariant:\"vMD6wKHg0\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-o019xv\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Single\",layoutDependency:layoutDependency,layoutId:\"vMD6wKHg0\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9e5cf286-6288-470f-9ece-f934d8d69487, rgba(62, 69, 81, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-4477b7d8-c795-4d73-8382-4dc54f954441, rgb(255, 255, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sh5mzv\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"BvDTgUuBw\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hillnFyD4\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-p6h52l-container\",layoutDependency:layoutDependency,layoutId:\"XvGzTquGj-container\",children:/*#__PURE__*/_jsx(SubmenuItem,{b7U7jztHx:resolvedLinks[0],E6FrGgOBf:\"Pre & Post exercise supplement\",height:\"100%\",id:\"XvGzTquGj\",layoutId:\"XvGzTquGj\",oBuYGdcM2:\"Fitnox\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mgRRTX1UT\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7jiacd-container\",layoutDependency:layoutDependency,layoutId:\"dxMaHRVsV-container\",children:/*#__PURE__*/_jsx(SubmenuItem,{b7U7jztHx:resolvedLinks1[0],E6FrGgOBf:\"Innovative Solution for Gut Health\",height:\"100%\",id:\"dxMaHRVsV\",layoutId:\"dxMaHRVsV\",oBuYGdcM2:\"Actbiome\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jFth1gR09\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ogazjc-container\",layoutDependency:layoutDependency,layoutId:\"psvVggx9v-container\",children:/*#__PURE__*/_jsx(SubmenuItem,{b7U7jztHx:resolvedLinks2[0],E6FrGgOBf:\"Rediscover the Essence of Ginger\",height:\"100%\",id:\"psvVggx9v\",layoutId:\"psvVggx9v\",oBuYGdcM2:\"Ginactiv\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qlyram\",\"data-framer-name\":\"Separator\",layoutDependency:layoutDependency,layoutId:\"G1szhZLnj\",style:{backgroundColor:\"var(--token-9e5cf286-6288-470f-9ece-f934d8d69487, rgba(62, 69, 81, 0.1))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c5mhdb\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"lt0v4IvQ5\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"C8vuSBGXx\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bvagnj-container\",layoutDependency:layoutDependency,layoutId:\"VAkYzEZlQ-container\",children:/*#__PURE__*/_jsx(SubmenuItem,{b7U7jztHx:resolvedLinks3[0],E6FrGgOBf:\"Highly Bioavailable Curcumin\",height:\"100%\",id:\"VAkYzEZlQ\",layoutId:\"VAkYzEZlQ\",oBuYGdcM2:\"Acumin\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fwFEnXbzD\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xfbxf6-container\",layoutDependency:layoutDependency,layoutId:\"qjh_CThRa-container\",children:/*#__PURE__*/_jsx(SubmenuItem,{b7U7jztHx:resolvedLinks4[0],E6FrGgOBf:\"Innovative Solution for Joint Health\",height:\"100%\",id:\"qjh_CThRa\",layoutId:\"qjh_CThRa\",oBuYGdcM2:\"Acujoint\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Psyf14too\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pqurgg-container\",layoutDependency:layoutDependency,layoutId:\"Wpanc7GAN-container\",children:/*#__PURE__*/_jsx(SubmenuItem,{b7U7jztHx:resolvedLinks5[0],E6FrGgOBf:\"Manage Pain Naturally\",height:\"100%\",id:\"Wpanc7GAN\",layoutId:\"Wpanc7GAN\",oBuYGdcM2:\"Rephyll\",style:{width:\"100%\"},width:\"100%\"})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5lFyd.framer-p9jn5e, .framer-5lFyd .framer-p9jn5e { display: block; }\",\".framer-5lFyd.framer-o019xv { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 600px; }\",\".framer-5lFyd .framer-1sh5mzv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 1px; }\",\".framer-5lFyd .framer-p6h52l-container, .framer-5lFyd .framer-7jiacd-container, .framer-5lFyd .framer-1ogazjc-container, .framer-5lFyd .framer-bvagnj-container, .framer-5lFyd .framer-xfbxf6-container, .framer-5lFyd .framer-1pqurgg-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-5lFyd .framer-1qlyram { align-self: stretch; flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-5lFyd .framer-c5mhdb { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; overflow: hidden; padding: 30px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5lFyd.framer-o019xv, .framer-5lFyd .framer-1sh5mzv, .framer-5lFyd .framer-c5mhdb { gap: 0px; } .framer-5lFyd.framer-o019xv > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-5lFyd.framer-o019xv > :first-child { margin-left: 0px; } .framer-5lFyd.framer-o019xv > :last-child { margin-right: 0px; } .framer-5lFyd .framer-1sh5mzv > *, .framer-5lFyd .framer-c5mhdb > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-5lFyd .framer-1sh5mzv > :first-child, .framer-5lFyd .framer-c5mhdb > :first-child { margin-top: 0px; } .framer-5lFyd .framer-1sh5mzv > :last-child, .framer-5lFyd .framer-c5mhdb > :last-child { margin-bottom: 0px; } }\",'.framer-5lFyd[data-border=\"true\"]::after, .framer-5lFyd [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 223.5\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWhvZz4zsO=withCSS(Component,css,\"framer-5lFyd\");export default FramerWhvZz4zsO;FramerWhvZz4zsO.displayName=\"Mega Menu / Products\";FramerWhvZz4zsO.defaultProps={height:223.5,width:600};addFonts(FramerWhvZz4zsO,[{explicitInter:true,fonts:[]},...SubmenuItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWhvZz4zsO\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"223.5\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WhvZz4zsO.map", "// Generated by Framer (9e1dc8e)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,Link,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Search from\"https://framerusercontent.com/modules/6wAE2eMb2Tl3zrU7u4UL/HPzg2Uk7mwtBmDzvGbWF/Search.js\";import ThemeToggle from\"https://framerusercontent.com/modules/tWxPGoauEDGvb60hKQfR/mjnCrEseAiGvkfV3x4Hw/ThemeToggle.js\";import Logo from\"https://framerusercontent.com/modules/vX3rQFhCCz3gttc3RH6Z/YpSkTr43ijsbb9UzL5ib/bytBR8Rsj.js\";import TabMenuTech from\"https://framerusercontent.com/modules/7u4JpnPWpVVG5yY21TGx/i4kShQF52FcoAQkQPioJ/DEdeMZlCi.js\";import*as localizedValues from\"./EGHy3r4gl-0.js\";import MegaMenuTechnology from\"https://framerusercontent.com/modules/Y2dOTVZ1lYr7t1ulc2cy/yhmoMT7TP6gMF9joRyv8/FRZNGj4IY.js\";import Trigger from\"https://framerusercontent.com/modules/eHRIrJeHvVSurycst1GG/f0hCWTraEVzTuFpmQHiL/KJ3vtYGuD.js\";import TabMenuProducts from\"https://framerusercontent.com/modules/9UkCaD11cgrihGlnsRLY/oyT1GOxmxxeFTGfeIQMY/Te22MQM1I.js\";import MegaMenuProducts from\"https://framerusercontent.com/modules/euI1jDmPHCX8F1bofbwk/SeZ2m2Q6hdU1rBVHA5oj/WhvZz4zsO.js\";import Button from\"https://framerusercontent.com/modules/11MSckH610Tm95vASx5U/ThNG72Y0t7ssKFR7OLAb/zTZ_GPlpp.js\";const TriggerFonts=getFonts(Trigger);const MegaMenuTechnologyFonts=getFonts(MegaMenuTechnology);const MotionDivWithFX=withFX(motion.div);const TabMenuTechFonts=getFonts(TabMenuTech);const TabMenuProductsFonts=getFonts(TabMenuProducts);const MegaMenuProductsFonts=getFonts(MegaMenuProducts);const ButtonFonts=getFonts(Button);const LogoFonts=getFonts(Logo);const SearchFonts=getFonts(Search);const ThemeToggleFonts=getFonts(ThemeToggle);const cycleOrder=[\"u2Jpt8olN\",\"qTJn47rgK\",\"feZl56Xso\",\"hVvGZoDZV\",\"AoN0yUgOK\",\"yPEP3oRJz\",\"kCiGPZ3QP\",\"XC7vPeSE9\",\"IaWpVMQsM\",\"ZVXmMZZI4\",\"rHRoXfc3E\",\"hPR9jvGIg\",\"oAf1Vyh6I\",\"wAZYZELod\"];const serializationHash=\"framer-3MOoZ\";const variantClassNames={AoN0yUgOK:\"framer-v-1ur595l\",feZl56Xso:\"framer-v-1jycy58\",hPR9jvGIg:\"framer-v-1lwgh1u\",hVvGZoDZV:\"framer-v-178wlz4\",IaWpVMQsM:\"framer-v-bp83oo\",kCiGPZ3QP:\"framer-v-skmpie\",oAf1Vyh6I:\"framer-v-1oh8p6e\",qTJn47rgK:\"framer-v-17fdejb\",rHRoXfc3E:\"framer-v-b37rv6\",u2Jpt8olN:\"framer-v-1p5ngjk\",wAZYZELod:\"framer-v-zc8r7p\",XC7vPeSE9:\"framer-v-hlpg47\",yPEP3oRJz:\"framer-v-ren7pq\",ZVXmMZZI4:\"framer-v-vq3khd\"};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 valuesByLocaleId={VH393QRe6: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 transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:40,delay:0,mass:.5,stiffness:600,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,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:.95,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 animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;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\":\"hVvGZoDZV\",\"Phone open transparent\":\"oAf1Vyh6I\",\"Phone open\":\"XC7vPeSE9\",\"Phone transparent 1.0\":\"hPR9jvGIg\",\"Phone transparent section\":\"wAZYZELod\",\"Phone Transparent\":\"yPEP3oRJz\",\"Tab open\":\"kCiGPZ3QP\",\"Tablet transparent section\":\"rHRoXfc3E\",\"Tablet Transparent\":\"AoN0yUgOK\",\"Tablet Trasparent 1.0 open\":\"ZVXmMZZI4\",\"Tablet Trasparent 1.0\":\"IaWpVMQsM\",Desktop:\"u2Jpt8olN\",Tablet:\"feZl56Xso\",Transparent:\"qTJn47rgK\"};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:\"u2Jpt8olN\"};};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:\"u2Jpt8olN\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const W3shnvXX6izu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const abBo6mUMIizu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const onTap1bo27ud=activeVariantCallback(async(...args)=>{setVariant(\"cgBFPDmI5\");});const onTap1fi7ygt=activeVariantCallback(async(...args)=>{setVariant(\"XC7vPeSE9\");});const onTap7zkhm2=activeVariantCallback(async(...args)=>{setVariant(\"hVvGZoDZV\");});const onTapig38c5=activeVariantCallback(async(...args)=>{setVariant(\"oAf1Vyh6I\");});const onTapadpbvg=activeVariantCallback(async(...args)=>{setVariant(\"hPR9jvGIg\");});const onTap1oek32x=activeVariantCallback(async(...args)=>{setVariant(\"kCiGPZ3QP\");});const onTap1nepevv=activeVariantCallback(async(...args)=>{setVariant(\"feZl56Xso\");});const onTapjeraxw=activeVariantCallback(async(...args)=>{setVariant(\"ZVXmMZZI4\");});const onTap1e19bdp=activeVariantCallback(async(...args)=>{setVariant(\"IaWpVMQsM\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"feZl56Xso\",\"hVvGZoDZV\",\"IaWpVMQsM\",\"rHRoXfc3E\",\"hPR9jvGIg\",\"wAZYZELod\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"kCiGPZ3QP\",\"XC7vPeSE9\",\"ZVXmMZZI4\",\"oAf1Vyh6I\"].includes(baseVariant))return false;return true;};const ref2=React.useRef(null);const ref3=React.useRef(null);const isDisplayed2=()=>{if([\"kCiGPZ3QP\",\"XC7vPeSE9\",\"ZVXmMZZI4\",\"oAf1Vyh6I\"].includes(baseVariant))return true;return false;};const ref4=React.useRef(null);const ref5=React.useRef(null);const isDisplayed3=()=>{if([\"XC7vPeSE9\",\"oAf1Vyh6I\"].includes(baseVariant))return true;return false;};const router=useRouter();const isDisplayed4=()=>{if([\"feZl56Xso\",\"hVvGZoDZV\",\"kCiGPZ3QP\",\"XC7vPeSE9\",\"IaWpVMQsM\",\"ZVXmMZZI4\",\"rHRoXfc3E\",\"hPR9jvGIg\",\"oAf1Vyh6I\",\"wAZYZELod\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if([\"feZl56Xso\",\"hVvGZoDZV\",\"kCiGPZ3QP\",\"XC7vPeSE9\",\"IaWpVMQsM\",\"ZVXmMZZI4\",\"rHRoXfc3E\",\"hPR9jvGIg\",\"oAf1Vyh6I\",\"wAZYZELod\"].includes(baseVariant))return true;return false;};const isDisplayed6=()=>{if([\"hVvGZoDZV\",\"yPEP3oRJz\",\"XC7vPeSE9\",\"hPR9jvGIg\",\"oAf1Vyh6I\",\"wAZYZELod\"].includes(baseVariant))return true;return false;};const isDisplayed7=()=>{if([\"XC7vPeSE9\",\"oAf1Vyh6I\"].includes(baseVariant))return false;return true;};const isDisplayed8=()=>{if([\"feZl56Xso\",\"hVvGZoDZV\",\"yPEP3oRJz\",\"kCiGPZ3QP\",\"XC7vPeSE9\",\"IaWpVMQsM\",\"ZVXmMZZI4\",\"rHRoXfc3E\",\"hPR9jvGIg\",\"oAf1Vyh6I\",\"wAZYZELod\"].includes(baseVariant))return false;return true;};const isDisplayed9=()=>{if([\"hVvGZoDZV\",\"yPEP3oRJz\",\"XC7vPeSE9\",\"hPR9jvGIg\",\"oAf1Vyh6I\",\"wAZYZELod\"].includes(baseVariant))return false;return true;};const isDisplayed10=()=>{if([\"feZl56Xso\",\"kCiGPZ3QP\",\"IaWpVMQsM\",\"ZVXmMZZI4\",\"rHRoXfc3E\"].includes(baseVariant))return true;return false;};const isDisplayed11=()=>{if([\"kCiGPZ3QP\",\"ZVXmMZZI4\"].includes(baseVariant))return false;return true;};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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1p5ngjk\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"u2Jpt8olN\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backdropFilter:\"blur(20px)\",backgroundColor:\"var(--token-60b2e85a-4f38-4b2a-8f8b-5644d044ef06, rgba(255, 255, 255, 0.8))\",filter:\"blur(0px)\",WebkitBackdropFilter:\"blur(20px)\",WebkitFilter:\"blur(0px)\",...style},variants:{AoN0yUgOK:{backdropFilter:\"blur(0px)\",backgroundColor:\"rgba(0, 0, 0, 0)\",WebkitBackdropFilter:\"blur(0px)\"},hPR9jvGIg:{backdropFilter:\"blur(0px)\",backgroundColor:\"rgba(0, 0, 0, 0)\",WebkitBackdropFilter:\"blur(0px)\"},IaWpVMQsM:{backdropFilter:\"blur(0px)\",backgroundColor:\"rgba(0, 0, 0, 0)\",WebkitBackdropFilter:\"blur(0px)\"},qTJn47rgK:{backdropFilter:\"blur(0px)\",backgroundColor:\"rgba(0, 0, 0, 0)\",WebkitBackdropFilter:\"blur(0px)\"},rHRoXfc3E:{backgroundColor:\"rgba(0, 0, 0, 0)\"},wAZYZELod:{backgroundColor:\"rgba(0, 0, 0, 0)\"},yPEP3oRJz:{backdropFilter:\"blur(0px)\",backgroundColor:\"rgba(0, 0, 0, 0)\",WebkitBackdropFilter:\"blur(0px)\"}},...addPropertyOverrides({AoN0yUgOK:{\"data-framer-name\":\"Tablet Transparent\"},feZl56Xso:{\"data-framer-name\":\"Tablet\"},hPR9jvGIg:{\"data-framer-name\":\"Phone transparent 1.0\"},hVvGZoDZV:{\"data-framer-name\":\"Phone closed\"},IaWpVMQsM:{\"data-framer-name\":\"Tablet Trasparent 1.0\"},kCiGPZ3QP:{\"data-framer-name\":\"Tab open\"},oAf1Vyh6I:{\"data-framer-name\":\"Phone open transparent\"},qTJn47rgK:{\"data-framer-name\":\"Transparent\"},rHRoXfc3E:{\"data-framer-name\":\"Tablet transparent section\"},wAZYZELod:{\"data-framer-name\":\"Phone transparent section\"},XC7vPeSE9:{\"data-framer-name\":\"Phone open\"},yPEP3oRJz:{\"data-framer-name\":\"Phone Transparent\"},ZVXmMZZI4:{\"data-framer-name\":\"Tablet Trasparent 1.0 open\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-truofv\",\"data-framer-name\":\"bottom fold\",layoutDependency:layoutDependency,layoutId:\"ntScufZwI\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(16+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||112)-32-24)/2)+0,...addPropertyOverrides({AoN0yUgOK:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(20+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||120)-40-24)/2)+0},yPEP3oRJz:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(20+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||120)-40-24)/2)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ase0pr-container\",\"data-framer-name\":\"Trigger\",id:`${layoutId}-1ase0pr`,layoutDependency:layoutDependency,layoutId:\"r0hemQc3L-container\",name:\"Trigger\",ref:ref2,children:[/*#__PURE__*/_jsx(Trigger,{DApvjrdfG:\"Technology\",height:\"100%\",id:\"r0hemQc3L\",layoutId:\"r0hemQc3L\",name:\"Trigger\",u5lzX_nF6:\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\",variant:overlay.visible?\"hVch8tBom\":\"IT9KLjTiI\",W3shnvXX6:W3shnvXX6izu9gt({overlay}),width:\"100%\",...addPropertyOverrides({AoN0yUgOK:{u5lzX_nF6:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\"},qTJn47rgK:{u5lzX_nF6:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\",X5EyQLNZz:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1ase0pr`,offsetX:143,offsetY:20,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-y1gvwq\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"plRr02xoM\",ref:ref3,role:\"dialog\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:218,width:\"396px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(16+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||112)-32-24)/2)+0+0+0+0,...addPropertyOverrides({AoN0yUgOK:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(20+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||120)-40-24)/2)+0+0+0+0},yPEP3oRJz:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(20+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||120)-40-24)/2)+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-teh55d-container\",layoutDependency:layoutDependency,layoutId:\"Q6QJM1BYx-container\",children:/*#__PURE__*/_jsx(MegaMenuTechnology,{height:\"100%\",id:\"Q6QJM1BYx\",layoutId:\"Q6QJM1BYx\",style:{width:\"100%\"},width:\"100%\"})})})})})})]})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({kCiGPZ3QP:{height:27,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+256+0+0},oAf1Vyh6I:{height:27,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+232+0+0},XC7vPeSE9:{height:27,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+232+0+0},ZVXmMZZI4:{height:27,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+256+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-s9x64y-container\",layoutDependency:layoutDependency,layoutId:\"JjqOx6rXu-container\",children:/*#__PURE__*/_jsx(TabMenuTech,{height:\"100%\",id:\"JjqOx6rXu\",layoutId:\"JjqOx6rXu\",variant:\"MeEe3gfZz\",width:\"100%\",...addPropertyOverrides({oAf1Vyh6I:{variant:\"sIIoZ4a1J\"},XC7vPeSE9:{variant:\"sIIoZ4a1J\"}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({kCiGPZ3QP:{height:27,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+256+0+55},oAf1Vyh6I:{height:27,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+232+0+51},XC7vPeSE9:{height:27,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+232+0+51},ZVXmMZZI4:{height:27,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+256+0+55}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tosnac-container\",layoutDependency:layoutDependency,layoutId:\"R44HBv_Hq-container\",children:/*#__PURE__*/_jsx(TabMenuProducts,{height:\"100%\",id:\"R44HBv_Hq\",layoutId:\"R44HBv_Hq\",variant:\"sJTV2vbb3\",width:\"100%\",...addPropertyOverrides({oAf1Vyh6I:{variant:\"Rl_k9Q_Z1\"},XC7vPeSE9:{variant:\"Rl_k9Q_Z1\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(16+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||112)-32-24)/2)+0,...addPropertyOverrides({AoN0yUgOK:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(20+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||120)-40-24)/2)+0},yPEP3oRJz:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(20+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||120)-40-24)/2)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ilycyp-container\",\"data-framer-name\":\"Trigger\",id:`${layoutId}-ilycyp`,layoutDependency:layoutDependency,layoutId:\"qfMm8fcNv-container\",name:\"Trigger\",ref:ref4,children:[/*#__PURE__*/_jsx(Trigger,{abBo6mUMI:abBo6mUMIizu9gt({overlay:overlay1}),DApvjrdfG:\"Human Nutrition\",height:\"100%\",id:\"qfMm8fcNv\",layoutId:\"qfMm8fcNv\",name:\"Trigger\",u5lzX_nF6:\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\",variant:overlay1.visible?\"hVch8tBom\":\"IT9KLjTiI\",width:\"100%\",...addPropertyOverrides({AoN0yUgOK:{u5lzX_nF6:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\"},qTJn47rgK:{u5lzX_nF6:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\"}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref4,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-ilycyp`,offsetX:212,offsetY:20,onDismiss:overlay1.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-19iuzql\",exit:animation3,initial:animation5,layoutDependency:layoutDependency,layoutId:\"XDK73Ne0B\",ref:ref5,role:\"dialog\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:223,width:\"600px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(16+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||112)-32-24)/2)+0+0+0+0,...addPropertyOverrides({AoN0yUgOK:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(20+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||120)-40-24)/2)+0+0+0+0},yPEP3oRJz:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(20+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||120)-40-24)/2)+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w6p89w-container\",layoutDependency:layoutDependency,layoutId:\"zLyTGrbFC-container\",children:/*#__PURE__*/_jsx(MegaMenuProducts,{height:\"100%\",id:\"zLyTGrbFC\",layoutId:\"zLyTGrbFC\",style:{width:\"100%\"},width:\"100%\"})})})})})})]})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cgc0qL04X\"},openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-tmglg8 framer-1ltnz5f\",\"data-framer-name\":\"animal nutrition\",layoutDependency:layoutDependency,layoutId:\"t5i9zLEZC\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Animal Nutrition\"})}),className:\"framer-e2x9pu\",\"data-framer-name\":\"Latest News\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"WRve5h2yQ\",style:{\"--extracted-r6o4lv\":\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\"},variants:{AoN0yUgOK:{\"--extracted-r6o4lv\":\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\"},qTJn47rgK:{\"--extracted-r6o4lv\":\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AoN0yUgOK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Animal Nutrition\"})})},kCiGPZ3QP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Animal Nutrition\"})})},oAf1Vyh6I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Animal Nutrition\"})})},qTJn47rgK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Animal Nutrition\"})})},XC7vPeSE9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Animal Nutrition\"})})},ZVXmMZZI4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Animal Nutrition\"})})}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cXA2vxlT_\"},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-7jtgsk framer-1ltnz5f\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"dy7a70EVp\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"News\"})}),className:\"framer-1nyvdlo\",\"data-framer-name\":\"Latest News\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"PnTWDRSWY\",style:{\"--extracted-r6o4lv\":\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({oAf1Vyh6I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"News\"})})},XC7vPeSE9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"News\"})})}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QmREIpr_H\"},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1o9kusr framer-1ltnz5f\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"rCPeKdtgb\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Careers\"})}),className:\"framer-mbccdz\",\"data-framer-name\":\"Latest News\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"AsbFBBIjO\",style:{\"--extracted-r6o4lv\":\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({oAf1Vyh6I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Careers\"})})},XC7vPeSE9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Careers\"})})}},baseVariant,gestureVariant)})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ncOPMTqmS\"},implicitPathVariables:undefined},{href:{webPageId:\"ncOPMTqmS\"},implicitPathVariables:undefined},{href:{webPageId:\"ncOPMTqmS\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({oAf1Vyh6I:{height:50,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+232+0+250.79999999999998},XC7vPeSE9:{height:50,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+232+0+250.79999999999998}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ai1myu-container\",layoutDependency:layoutDependency,layoutId:\"jG3iNGhoM-container\",children:/*#__PURE__*/_jsx(Button,{FxN06y5MB:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\",gp2RoL8Bt:false,hcA1xDH0f:\"Contact us\",height:\"100%\",id:\"jG3iNGhoM\",inDHIhQOo:\"var(--token-ec7ecbee-705e-4e59-8db2-506fdde7869d, rgba(44, 71, 0, 0))\",KB0TOjbjC:\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\",layoutId:\"jG3iNGhoM\",rPQE7CEpW:\"ArrowRight\",style:{width:\"100%\"},Ua1ceYBdI:false,variant:\"M9obfF1Cc\",wFYJBPYrt:resolvedLinks[0],width:\"100%\",...addPropertyOverrides({oAf1Vyh6I:{wFYJBPYrt:resolvedLinks[2]},XC7vPeSE9:{wFYJBPYrt:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})]}),isDisplayed4()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cR4CNRl63\"},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ik54h3 framer-1ltnz5f\",\"data-framer-name\":\"Logo Wrapper\",layoutDependency:layoutDependency,layoutId:\"d6Hcwxvfb\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"89px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(16+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||112)-32-80)/2)+0+0,...addPropertyOverrides({AoN0yUgOK:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(20+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||120)-40-80)/2)+0+0},yPEP3oRJz:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(20+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||120)-40-80)/2)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-34ffcg-container\",layoutDependency:layoutDependency,layoutId:\"jNiNndYZJ-container\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"jNiNndYZJ\",layoutId:\"jNiNndYZJ\",style:{width:\"100%\"},variant:\"qdXiA6nnH\",width:\"100%\",...addPropertyOverrides({qTJn47rgK:{variant:\"lRTDRxIQK\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qtxacw\",\"data-framer-name\":\"top fold\",layoutDependency:layoutDependency,layoutId:\"GDCs7JihS\",children:[isDisplayed5()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cR4CNRl63\"},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-18gaqce framer-1ltnz5f\",\"data-framer-name\":\"Logo Wrapper\",layoutDependency:layoutDependency,layoutId:\"bp5mf4hEN\",transformTemplate:transformTemplate1,...addPropertyOverrides({feZl56Xso:{transformTemplate:undefined},hPR9jvGIg:{transformTemplate:undefined},hVvGZoDZV:{transformTemplate:undefined},IaWpVMQsM:{transformTemplate:undefined},kCiGPZ3QP:{transformTemplate:undefined},oAf1Vyh6I:{transformTemplate:undefined},rHRoXfc3E:{transformTemplate:undefined},wAZYZELod:{transformTemplate:undefined},XC7vPeSE9:{transformTemplate:undefined},ZVXmMZZI4:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"89px\",...addPropertyOverrides({feZl56Xso:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+0+60+0+0},hPR9jvGIg:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+0+60+0+0},hVvGZoDZV:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+0+60+0+0},IaWpVMQsM:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+0+60+0+0},kCiGPZ3QP:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+0+60+0+0},oAf1Vyh6I:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+0+60+0+0},rHRoXfc3E:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+0+60+0+0},wAZYZELod:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+0+60+0+0},XC7vPeSE9:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+0+60+0+0},ZVXmMZZI4:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+0+60+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lvms9p-container\",layoutDependency:layoutDependency,layoutId:\"um_Y0IQLJ-container\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"um_Y0IQLJ\",layoutId:\"um_Y0IQLJ\",style:{width:\"100%\"},variant:\"qdXiA6nnH\",width:\"100%\",...addPropertyOverrides({feZl56Xso:{variant:\"tFh79Fsle\"},hPR9jvGIg:{variant:\"FxDjXgRNk\"},hVvGZoDZV:{variant:\"tFh79Fsle\"},IaWpVMQsM:{variant:\"FxDjXgRNk\"},kCiGPZ3QP:{variant:\"tFh79Fsle\"},oAf1Vyh6I:{variant:\"tFh79Fsle\"},rHRoXfc3E:{variant:\"FxDjXgRNk\"},wAZYZELod:{variant:\"FxDjXgRNk\"},XC7vPeSE9:{variant:\"tFh79Fsle\"},ZVXmMZZI4:{variant:\"tFh79Fsle\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pdbhzm\",\"data-framer-name\":\"Left Wrapp\",layoutDependency:layoutDependency,layoutId:\"y7FchVGKH\",children:[isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1buc0r7\",\"data-framer-name\":\"Icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"fnHafVQEN\",onTap:onTap1bo27ud,...addPropertyOverrides({hPR9jvGIg:{onTap:onTapig38c5},hVvGZoDZV:{onTap:onTap1fi7ygt},oAf1Vyh6I:{onTap:onTapadpbvg},wAZYZELod:{onTap:onTapig38c5},XC7vPeSE9:{onTap:onTap7zkhm2},yPEP3oRJz:{\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-lbmcku\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"y9lu6ZRkE\",style:{backgroundColor:\"var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(62, 70, 82))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{hPR9jvGIg:{backgroundColor:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\"},oAf1Vyh6I:{rotate:45},wAZYZELod:{backgroundColor:\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\"},XC7vPeSE9:{rotate:45},yPEP3oRJz:{backgroundColor:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l518gt\",\"data-framer-name\":\"Mid\",layoutDependency:layoutDependency,layoutId:\"K5dl5Kp7g\",style:{backgroundColor:\"var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(62, 70, 82))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{hPR9jvGIg:{backgroundColor:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\"},oAf1Vyh6I:{rotate:-45},wAZYZELod:{backgroundColor:\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\"},XC7vPeSE9:{rotate:-45},yPEP3oRJz:{backgroundColor:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\"}}}),isDisplayed7()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1snteay\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"wi_rRR3Dy\",style:{backgroundColor:\"var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(62, 70, 82))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{hPR9jvGIg:{backgroundColor:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\"},wAZYZELod:{backgroundColor:\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\"},yPEP3oRJz:{backgroundColor:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\"}}})]}),isDisplayed8()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-52lmd4\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"OnERluFGE\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cXA2vxlT_\"},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1mnb6gd framer-1ltnz5f\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"pCIC9DVDA\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"News\"})}),className:\"framer-1b3p54t\",\"data-framer-name\":\"Latest News\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"BhklPOgtJ\",style:{\"--extracted-r6o4lv\":\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\"},variants:{AoN0yUgOK:{\"--extracted-r6o4lv\":\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\"},qTJn47rgK:{\"--extracted-r6o4lv\":\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AoN0yUgOK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"News\"})})},qTJn47rgK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"News\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QmREIpr_H\"},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1pkimgd framer-1ltnz5f\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"xvyYcRjf7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Careers\"})}),className:\"framer-zig6nb\",\"data-framer-name\":\"Latest News\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"EgIneWXYe\",style:{\"--extracted-r6o4lv\":\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\"},variants:{AoN0yUgOK:{\"--extracted-r6o4lv\":\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\"},qTJn47rgK:{\"--extracted-r6o4lv\":\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AoN0yUgOK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Careers\"})})},qTJn47rgK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Careers\"})})}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rqfw6r\",\"data-framer-name\":\"Right Items\",layoutDependency:layoutDependency,layoutId:\"y22JVYu7M\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ky0bln-container\",layoutDependency:layoutDependency,layoutId:\"zDACFYc3H-container\",children:/*#__PURE__*/_jsx(Search,{backdropOptions:{backgroundColor:\"rgba(0, 0, 0, 0.8)\",transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},zIndex:10},height:\"100%\",iconColor:\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\",iconSize:20,iconType:\"default\",id:\"zDACFYc3H\",inputOptions:{clearButtonText:\"Clear\",clearButtonType:\"icon\",dividerType:\"fullWidth\",iconOptions:{iconColor:\"rgba(0, 0, 0, 0.45)\",iconSize:18,iconType:\"default\"},inputFont:{},placeholderOptions:{placeholderColor:\"rgba(0, 0, 0, 0.4)\",placeholderText:\"Search...\"},textColor:\"rgb(51, 51, 51)\"},layoutId:\"zDACFYc3H\",modalOptions:{backgroundColor:\"rgb(255, 255, 255)\",borderRadius:16,heightIsStatic:true,heightTransition:{damping:60,delay:0,mass:1,stiffness:800,type:\"spring\"},layoutType:\"QuickMenu\",shadow:{blur:40,color:\"rgba(0, 0, 0, 0.2)\",spread:0,x:0,y:20},top:0,width:500},resultOptions:{itemType:\"fullWidth\",subtitleOptions:{subtitleColor:\"rgba(0, 0, 0, 0.4)\",subtitleFont:{},subtitleType:\"path\"},titleColor:\"rgb(51, 51, 51)\",titleFont:{},titleType:\"h1\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({AoN0yUgOK:{iconColor:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\"},hPR9jvGIg:{iconColor:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\"},IaWpVMQsM:{iconColor:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\"},qTJn47rgK:{iconColor:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\"},yPEP3oRJz:{iconColor:\"rgb(255, 255, 255)\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11lsipx-container\",layoutDependency:layoutDependency,layoutId:\"Mp5SZfmxN-container\",children:/*#__PURE__*/_jsx(ThemeToggle,{componentStyle:\"toggle\",customDark:[],customLight:[],defaultTheme:\"deviceTheme\",dropdown:{arrow:\"rgba(0, 0, 0, 0.5)\",fill:\"rgb(237, 237, 237)\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:\"rgb(0, 0, 0)\",gap:8,padding:8,paddingBottomLeft:8,paddingBottomRight:8,paddingIsMixed:false,paddingTopLeft:8,paddingTopRight:8,radius:10,radiusBottomLeft:10,radiusBottomRight:10,radiusIsMixed:false,radiusTopLeft:10,radiusTopRight:10},dropdownOptions:{darkText:\"Dark\",deviceThemeText:\"Device Theme\",lightText:\"Light\",showDeviceTheme:true},height:\"100%\",icons:{color:\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\",darkSvg:\"\",lightSvg:\"\",opacity:1,size:14,sizing:\"fill\",type:\"default\"},id:\"Mp5SZfmxN\",layoutId:\"Mp5SZfmxN\",resetToDeviceTheme:true,saveTheme:true,setColorScheme:true,toggle:{fill:\"var(--token-645f12be-7ee0-4dc6-9d47-88060ca10161, rgb(247, 247, 247))\",height:32,padding:4,radius:16,shadow:{blur:4,color:\"rgba(0, 0, 0, 0.2)\",spread:0,x:0,y:2},switch:\"var(--token-645f12be-7ee0-4dc6-9d47-88060ca10161, rgb(247, 247, 247))\"},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})}),isDisplayed9()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ncOPMTqmS\"},implicitPathVariables:undefined},{href:{webPageId:\"ncOPMTqmS\"},implicitPathVariables:undefined},{href:{webPageId:\"ncOPMTqmS\"},implicitPathVariables:undefined},{href:{webPageId:\"ncOPMTqmS\"},implicitPathVariables:undefined},{href:{webPageId:\"ncOPMTqmS\"},implicitPathVariables:undefined},{href:{webPageId:\"ncOPMTqmS\"},implicitPathVariables:undefined},{href:{webPageId:\"ncOPMTqmS\"},implicitPathVariables:undefined},{href:{webPageId:\"ncOPMTqmS\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(16+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||112)-32-200)/2)+0+0+75,...addPropertyOverrides({AoN0yUgOK:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(20+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||120)-40-200)/2)+0+0+75},feZl56Xso:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+0+0+0+75},IaWpVMQsM:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+0+0+0+75},kCiGPZ3QP:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+0+0+0+75},rHRoXfc3E:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+0+0+0+75},ZVXmMZZI4:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+0+0+0+75}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lb55kf-container\",layoutDependency:layoutDependency,layoutId:\"HGH5CIOD5-container\",children:/*#__PURE__*/_jsx(Button,{FxN06y5MB:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\",gp2RoL8Bt:false,hcA1xDH0f:\"Contact us\",height:\"100%\",id:\"HGH5CIOD5\",inDHIhQOo:\"var(--token-ec7ecbee-705e-4e59-8db2-506fdde7869d, rgba(44, 71, 0, 0))\",KB0TOjbjC:\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\",layoutId:\"HGH5CIOD5\",rPQE7CEpW:\"ArrowRight\",Ua1ceYBdI:false,variant:\"M9obfF1Cc\",wFYJBPYrt:resolvedLinks1[0],width:\"100%\",...addPropertyOverrides({AoN0yUgOK:{KB0TOjbjC:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\",variant:\"TpmF29DGu\",wFYJBPYrt:resolvedLinks1[3]},feZl56Xso:{wFYJBPYrt:resolvedLinks1[2]},IaWpVMQsM:{inDHIhQOo:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\",KB0TOjbjC:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\",variant:\"TpmF29DGu\",wFYJBPYrt:resolvedLinks1[5]},kCiGPZ3QP:{wFYJBPYrt:resolvedLinks1[4]},qTJn47rgK:{inDHIhQOo:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\",KB0TOjbjC:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\",variant:\"TpmF29DGu\",wFYJBPYrt:resolvedLinks1[1]},rHRoXfc3E:{FxN06y5MB:\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\",inDHIhQOo:\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\",wFYJBPYrt:resolvedLinks1[7]},ZVXmMZZI4:{wFYJBPYrt:resolvedLinks1[6]}},baseVariant,gestureVariant)})})})}),isDisplayed10()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1um4jn0\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"Ssp3ZQEOL\",...addPropertyOverrides({feZl56Xso:{\"data-highlight\":true,onTap:onTap1oek32x},IaWpVMQsM:{\"data-highlight\":true,onTap:onTapjeraxw},kCiGPZ3QP:{\"data-highlight\":true,onTap:onTap1nepevv},rHRoXfc3E:{\"data-highlight\":true,onTap:onTapjeraxw},ZVXmMZZI4:{\"data-highlight\":true,onTap:onTap1e19bdp}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1glnwy3\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"AFmMJZ7W9\",style:{backgroundColor:\"var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(62, 70, 82))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{IaWpVMQsM:{backgroundColor:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\"},kCiGPZ3QP:{rotate:-45},rHRoXfc3E:{backgroundColor:\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\"},ZVXmMZZI4:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ukl1yr\",\"data-framer-name\":\"Mid\",layoutDependency:layoutDependency,layoutId:\"Ik9cYuAFz\",style:{backgroundColor:\"var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(62, 70, 82))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{IaWpVMQsM:{backgroundColor:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\"},kCiGPZ3QP:{backgroundColor:\"var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(106, 120, 84))\",rotate:45},rHRoXfc3E:{backgroundColor:\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\"},ZVXmMZZI4:{backgroundColor:\"var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(106, 120, 84))\",rotate:45}}}),isDisplayed11()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-zdpg9k\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"RIbAekJxB\",style:{backgroundColor:\"var(--token-63543266-d977-48ae-a608-2640fed612cd, rgb(62, 70, 82))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{IaWpVMQsM:{backgroundColor:\"var(--token-87d8e08d-e871-45af-b4d5-e61bf0f5578a, rgb(255, 255, 255))\"},rHRoXfc3E:{backgroundColor:\"var(--token-f582609c-4bbf-4eb3-9386-db67efb661ca, rgb(44, 72, 0))\"}}})]})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3MOoZ.framer-1ltnz5f, .framer-3MOoZ .framer-1ltnz5f { display: block; }\",\".framer-3MOoZ.framer-1p5ngjk { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 16px 56px 16px 56px; position: relative; width: 1200px; }\",\".framer-3MOoZ .framer-truofv, .framer-3MOoZ .framer-pdbhzm, .framer-3MOoZ .framer-rqfw6r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3MOoZ .framer-1ase0pr-container, .framer-3MOoZ .framer-s9x64y-container, .framer-3MOoZ .framer-1tosnac-container, .framer-3MOoZ .framer-ilycyp-container, .framer-3MOoZ .framer-11lsipx-container, .framer-3MOoZ .framer-1lb55kf-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-3MOoZ .framer-y1gvwq, .framer-3MOoZ .framer-19iuzql { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-3MOoZ .framer-teh55d-container { flex: none; height: auto; position: relative; width: 396px; }\",\".framer-3MOoZ .framer-1w6p89w-container { flex: none; height: auto; position: relative; width: 600px; }\",\".framer-3MOoZ .framer-tmglg8, .framer-3MOoZ .framer-7jtgsk, .framer-3MOoZ .framer-1o9kusr, .framer-3MOoZ .framer-1mnb6gd, .framer-3MOoZ .framer-1pkimgd { 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: 5px 0px 5px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-3MOoZ .framer-e2x9pu, .framer-3MOoZ .framer-1nyvdlo, .framer-3MOoZ .framer-mbccdz, .framer-3MOoZ .framer-1b3p54t, .framer-3MOoZ .framer-zig6nb { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-3MOoZ .framer-ai1myu-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-3MOoZ .framer-1ik54h3 { 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: hidden; padding: 0px; position: relative; text-decoration: none; width: 90px; z-index: 1; }\",\".framer-3MOoZ .framer-34ffcg-container, .framer-3MOoZ .framer-lvms9p-container { flex: none; height: auto; position: relative; width: 89px; }\",\".framer-3MOoZ .framer-qtxacw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3MOoZ .framer-18gaqce { 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: hidden; padding: 0px; position: absolute; right: 499px; text-decoration: none; top: 50%; width: 90px; z-index: 1; }\",\".framer-3MOoZ .framer-1buc0r7 { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: hidden; position: relative; width: 32px; }\",\".framer-3MOoZ .framer-lbmcku, .framer-3MOoZ .framer-1glnwy3 { bottom: 7px; flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3MOoZ .framer-1l518gt, .framer-3MOoZ .framer-1ukl1yr { flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3MOoZ .framer-1snteay, .framer-3MOoZ .framer-zdpg9k { flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: 7px; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3MOoZ .framer-52lmd4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3MOoZ .framer-1ky0bln-container { cursor: pointer; flex: none; height: 28px; position: relative; width: 28px; }\",\".framer-3MOoZ .framer-1um4jn0 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: hidden; position: relative; width: 32px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3MOoZ .framer-truofv, .framer-3MOoZ .framer-y1gvwq, .framer-3MOoZ .framer-19iuzql, .framer-3MOoZ .framer-tmglg8, .framer-3MOoZ .framer-7jtgsk, .framer-3MOoZ .framer-1o9kusr, .framer-3MOoZ .framer-1ik54h3, .framer-3MOoZ .framer-qtxacw, .framer-3MOoZ .framer-18gaqce, .framer-3MOoZ .framer-pdbhzm, .framer-3MOoZ .framer-52lmd4, .framer-3MOoZ .framer-1mnb6gd, .framer-3MOoZ .framer-1pkimgd, .framer-3MOoZ .framer-rqfw6r { gap: 0px; } .framer-3MOoZ .framer-truofv > *, .framer-3MOoZ .framer-pdbhzm > *, .framer-3MOoZ .framer-rqfw6r > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-3MOoZ .framer-truofv > :first-child, .framer-3MOoZ .framer-tmglg8 > :first-child, .framer-3MOoZ .framer-7jtgsk > :first-child, .framer-3MOoZ .framer-1o9kusr > :first-child, .framer-3MOoZ .framer-qtxacw > :first-child, .framer-3MOoZ .framer-pdbhzm > :first-child, .framer-3MOoZ .framer-52lmd4 > :first-child, .framer-3MOoZ .framer-1mnb6gd > :first-child, .framer-3MOoZ .framer-1pkimgd > :first-child, .framer-3MOoZ .framer-rqfw6r > :first-child { margin-left: 0px; } .framer-3MOoZ .framer-truofv > :last-child, .framer-3MOoZ .framer-tmglg8 > :last-child, .framer-3MOoZ .framer-7jtgsk > :last-child, .framer-3MOoZ .framer-1o9kusr > :last-child, .framer-3MOoZ .framer-qtxacw > :last-child, .framer-3MOoZ .framer-pdbhzm > :last-child, .framer-3MOoZ .framer-52lmd4 > :last-child, .framer-3MOoZ .framer-1mnb6gd > :last-child, .framer-3MOoZ .framer-1pkimgd > :last-child, .framer-3MOoZ .framer-rqfw6r > :last-child { margin-right: 0px; } .framer-3MOoZ .framer-y1gvwq > *, .framer-3MOoZ .framer-19iuzql > *, .framer-3MOoZ .framer-1ik54h3 > *, .framer-3MOoZ .framer-18gaqce > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-3MOoZ .framer-y1gvwq > :first-child, .framer-3MOoZ .framer-19iuzql > :first-child, .framer-3MOoZ .framer-1ik54h3 > :first-child, .framer-3MOoZ .framer-18gaqce > :first-child { margin-top: 0px; } .framer-3MOoZ .framer-y1gvwq > :last-child, .framer-3MOoZ .framer-19iuzql > :last-child, .framer-3MOoZ .framer-1ik54h3 > :last-child, .framer-3MOoZ .framer-18gaqce > :last-child { margin-bottom: 0px; } .framer-3MOoZ .framer-tmglg8 > *, .framer-3MOoZ .framer-7jtgsk > *, .framer-3MOoZ .framer-1o9kusr > *, .framer-3MOoZ .framer-qtxacw > *, .framer-3MOoZ .framer-1mnb6gd > *, .framer-3MOoZ .framer-1pkimgd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-3MOoZ .framer-52lmd4 > * { margin: 0px; margin-left: calc(28px / 2); margin-right: calc(28px / 2); } }\",\".framer-3MOoZ.framer-v-17fdejb .framer-1ky0bln-container, .framer-3MOoZ.framer-v-1jycy58 .framer-1lb55kf-container, .framer-3MOoZ.framer-v-skmpie .framer-1lb55kf-container, .framer-3MOoZ.framer-v-bp83oo .framer-1lb55kf-container, .framer-3MOoZ.framer-v-vq3khd .framer-1lb55kf-container, .framer-3MOoZ.framer-v-b37rv6 .framer-1lb55kf-container { order: 0; }\",\".framer-3MOoZ.framer-v-17fdejb .framer-11lsipx-container, .framer-3MOoZ.framer-v-1jycy58 .framer-1ky0bln-container, .framer-3MOoZ.framer-v-skmpie .framer-1ky0bln-container, .framer-3MOoZ.framer-v-bp83oo .framer-1ky0bln-container, .framer-3MOoZ.framer-v-vq3khd .framer-1ky0bln-container, .framer-3MOoZ.framer-v-b37rv6 .framer-1ky0bln-container { order: 1; }\",\".framer-3MOoZ.framer-v-17fdejb .framer-1lb55kf-container, .framer-3MOoZ.framer-v-1jycy58 .framer-11lsipx-container, .framer-3MOoZ.framer-v-178wlz4 .framer-1buc0r7, .framer-3MOoZ.framer-v-skmpie .framer-11lsipx-container, .framer-3MOoZ.framer-v-hlpg47 .framer-1buc0r7, .framer-3MOoZ.framer-v-bp83oo .framer-11lsipx-container, .framer-3MOoZ.framer-v-vq3khd .framer-11lsipx-container, .framer-3MOoZ.framer-v-b37rv6 .framer-11lsipx-container, .framer-3MOoZ.framer-v-1lwgh1u .framer-1buc0r7, .framer-3MOoZ.framer-v-1oh8p6e .framer-1buc0r7, .framer-3MOoZ.framer-v-zc8r7p .framer-1buc0r7 { order: 2; }\",\".framer-3MOoZ.framer-v-1jycy58.framer-1p5ngjk, .framer-3MOoZ.framer-v-skmpie.framer-1p5ngjk, .framer-3MOoZ.framer-v-bp83oo.framer-1p5ngjk, .framer-3MOoZ.framer-v-vq3khd.framer-1p5ngjk, .framer-3MOoZ.framer-v-b37rv6.framer-1p5ngjk { flex-direction: column; gap: 56px; justify-content: flex-start; padding: 20px; width: 810px; }\",\".framer-3MOoZ.framer-v-1jycy58 .framer-qtxacw, .framer-3MOoZ.framer-v-178wlz4 .framer-qtxacw, .framer-3MOoZ.framer-v-skmpie .framer-qtxacw, .framer-3MOoZ.framer-v-hlpg47 .framer-qtxacw, .framer-3MOoZ.framer-v-bp83oo .framer-qtxacw, .framer-3MOoZ.framer-v-vq3khd .framer-qtxacw, .framer-3MOoZ.framer-v-b37rv6 .framer-qtxacw, .framer-3MOoZ.framer-v-1lwgh1u .framer-qtxacw, .framer-3MOoZ.framer-v-1oh8p6e .framer-qtxacw, .framer-3MOoZ.framer-v-zc8r7p .framer-qtxacw { gap: unset; justify-content: space-between; order: 0; width: 100%; }\",\".framer-3MOoZ.framer-v-1jycy58 .framer-18gaqce, .framer-3MOoZ.framer-v-178wlz4 .framer-18gaqce, .framer-3MOoZ.framer-v-skmpie .framer-18gaqce, .framer-3MOoZ.framer-v-hlpg47 .framer-18gaqce, .framer-3MOoZ.framer-v-bp83oo .framer-18gaqce, .framer-3MOoZ.framer-v-vq3khd .framer-18gaqce, .framer-3MOoZ.framer-v-b37rv6 .framer-18gaqce, .framer-3MOoZ.framer-v-1lwgh1u .framer-18gaqce, .framer-3MOoZ.framer-v-1oh8p6e .framer-18gaqce, .framer-3MOoZ.framer-v-zc8r7p .framer-18gaqce { position: relative; right: unset; top: unset; width: 55px; }\",\".framer-3MOoZ.framer-v-1jycy58 .framer-lvms9p-container, .framer-3MOoZ.framer-v-178wlz4 .framer-lvms9p-container, .framer-3MOoZ.framer-v-skmpie .framer-lvms9p-container, .framer-3MOoZ.framer-v-hlpg47 .framer-lvms9p-container, .framer-3MOoZ.framer-v-bp83oo .framer-lvms9p-container, .framer-3MOoZ.framer-v-vq3khd .framer-lvms9p-container, .framer-3MOoZ.framer-v-b37rv6 .framer-lvms9p-container, .framer-3MOoZ.framer-v-1lwgh1u .framer-lvms9p-container, .framer-3MOoZ.framer-v-1oh8p6e .framer-lvms9p-container, .framer-3MOoZ.framer-v-zc8r7p .framer-lvms9p-container { width: auto; }\",\".framer-3MOoZ.framer-v-1jycy58 .framer-rqfw6r, .framer-3MOoZ.framer-v-1ur595l .framer-52lmd4, .framer-3MOoZ.framer-v-1ur595l .framer-rqfw6r, .framer-3MOoZ.framer-v-ren7pq .framer-rqfw6r, .framer-3MOoZ.framer-v-skmpie .framer-rqfw6r, .framer-3MOoZ.framer-v-bp83oo .framer-rqfw6r, .framer-3MOoZ.framer-v-vq3khd .framer-rqfw6r, .framer-3MOoZ.framer-v-b37rv6 .framer-rqfw6r { gap: 16px; }\",\".framer-3MOoZ.framer-v-1jycy58 .framer-1um4jn0, .framer-3MOoZ.framer-v-skmpie .framer-1um4jn0, .framer-3MOoZ.framer-v-bp83oo .framer-1um4jn0, .framer-3MOoZ.framer-v-vq3khd .framer-1um4jn0, .framer-3MOoZ.framer-v-b37rv6 .framer-1um4jn0 { cursor: pointer; order: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3MOoZ.framer-v-1jycy58.framer-1p5ngjk, .framer-3MOoZ.framer-v-1jycy58 .framer-qtxacw, .framer-3MOoZ.framer-v-1jycy58 .framer-rqfw6r { gap: 0px; } .framer-3MOoZ.framer-v-1jycy58.framer-1p5ngjk > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-3MOoZ.framer-v-1jycy58.framer-1p5ngjk > :first-child { margin-top: 0px; } .framer-3MOoZ.framer-v-1jycy58.framer-1p5ngjk > :last-child { margin-bottom: 0px; } .framer-3MOoZ.framer-v-1jycy58 .framer-qtxacw > *, .framer-3MOoZ.framer-v-1jycy58 .framer-qtxacw > :first-child, .framer-3MOoZ.framer-v-1jycy58 .framer-qtxacw > :last-child { margin: 0px; } .framer-3MOoZ.framer-v-1jycy58 .framer-rqfw6r > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-3MOoZ.framer-v-1jycy58 .framer-rqfw6r > :first-child { margin-left: 0px; } .framer-3MOoZ.framer-v-1jycy58 .framer-rqfw6r > :last-child { margin-right: 0px; } }\",\".framer-3MOoZ.framer-v-178wlz4.framer-1p5ngjk, .framer-3MOoZ.framer-v-hlpg47.framer-1p5ngjk, .framer-3MOoZ.framer-v-1lwgh1u.framer-1p5ngjk, .framer-3MOoZ.framer-v-1oh8p6e.framer-1p5ngjk, .framer-3MOoZ.framer-v-zc8r7p.framer-1p5ngjk { flex-direction: column; gap: 32px; justify-content: flex-start; padding: 10px 20px 10px 20px; width: 390px; }\",\".framer-3MOoZ.framer-v-178wlz4 .framer-rqfw6r, .framer-3MOoZ.framer-v-hlpg47 .framer-rqfw6r, .framer-3MOoZ.framer-v-1lwgh1u .framer-rqfw6r, .framer-3MOoZ.framer-v-1oh8p6e .framer-rqfw6r, .framer-3MOoZ.framer-v-zc8r7p .framer-rqfw6r { gap: 16px; order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3MOoZ.framer-v-178wlz4.framer-1p5ngjk, .framer-3MOoZ.framer-v-178wlz4 .framer-qtxacw, .framer-3MOoZ.framer-v-178wlz4 .framer-rqfw6r { gap: 0px; } .framer-3MOoZ.framer-v-178wlz4.framer-1p5ngjk > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-3MOoZ.framer-v-178wlz4.framer-1p5ngjk > :first-child { margin-top: 0px; } .framer-3MOoZ.framer-v-178wlz4.framer-1p5ngjk > :last-child { margin-bottom: 0px; } .framer-3MOoZ.framer-v-178wlz4 .framer-qtxacw > *, .framer-3MOoZ.framer-v-178wlz4 .framer-qtxacw > :first-child, .framer-3MOoZ.framer-v-178wlz4 .framer-qtxacw > :last-child { margin: 0px; } .framer-3MOoZ.framer-v-178wlz4 .framer-rqfw6r > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-3MOoZ.framer-v-178wlz4 .framer-rqfw6r > :first-child { margin-left: 0px; } .framer-3MOoZ.framer-v-178wlz4 .framer-rqfw6r > :last-child { margin-right: 0px; } }\",\".framer-3MOoZ.framer-v-1ur595l.framer-1p5ngjk { padding: 20px; width: 810px; }\",\".framer-3MOoZ.framer-v-1ur595l .framer-pdbhzm { gap: 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3MOoZ.framer-v-1ur595l .framer-pdbhzm, .framer-3MOoZ.framer-v-1ur595l .framer-52lmd4, .framer-3MOoZ.framer-v-1ur595l .framer-rqfw6r { gap: 0px; } .framer-3MOoZ.framer-v-1ur595l .framer-pdbhzm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-3MOoZ.framer-v-1ur595l .framer-pdbhzm > :first-child, .framer-3MOoZ.framer-v-1ur595l .framer-52lmd4 > :first-child, .framer-3MOoZ.framer-v-1ur595l .framer-rqfw6r > :first-child { margin-left: 0px; } .framer-3MOoZ.framer-v-1ur595l .framer-pdbhzm > :last-child, .framer-3MOoZ.framer-v-1ur595l .framer-52lmd4 > :last-child, .framer-3MOoZ.framer-v-1ur595l .framer-rqfw6r > :last-child { margin-right: 0px; } .framer-3MOoZ.framer-v-1ur595l .framer-52lmd4 > *, .framer-3MOoZ.framer-v-1ur595l .framer-rqfw6r > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",\".framer-3MOoZ.framer-v-ren7pq.framer-1p5ngjk { padding: 20px; width: 390px; }\",\".framer-3MOoZ.framer-v-ren7pq .framer-1buc0r7 { cursor: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3MOoZ.framer-v-ren7pq .framer-rqfw6r { gap: 0px; } .framer-3MOoZ.framer-v-ren7pq .framer-rqfw6r > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-3MOoZ.framer-v-ren7pq .framer-rqfw6r > :first-child { margin-left: 0px; } .framer-3MOoZ.framer-v-ren7pq .framer-rqfw6r > :last-child { margin-right: 0px; } }\",\".framer-3MOoZ.framer-v-skmpie .framer-truofv, .framer-3MOoZ.framer-v-vq3khd .framer-truofv { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 28px; order: 1; width: 100%; }\",\".framer-3MOoZ.framer-v-skmpie .framer-1glnwy3, .framer-3MOoZ.framer-v-hlpg47 .framer-lbmcku, .framer-3MOoZ.framer-v-vq3khd .framer-1glnwy3, .framer-3MOoZ.framer-v-1oh8p6e .framer-lbmcku { bottom: 15px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3MOoZ.framer-v-skmpie.framer-1p5ngjk, .framer-3MOoZ.framer-v-skmpie .framer-truofv, .framer-3MOoZ.framer-v-skmpie .framer-qtxacw, .framer-3MOoZ.framer-v-skmpie .framer-rqfw6r { gap: 0px; } .framer-3MOoZ.framer-v-skmpie.framer-1p5ngjk > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-3MOoZ.framer-v-skmpie.framer-1p5ngjk > :first-child, .framer-3MOoZ.framer-v-skmpie .framer-truofv > :first-child { margin-top: 0px; } .framer-3MOoZ.framer-v-skmpie.framer-1p5ngjk > :last-child, .framer-3MOoZ.framer-v-skmpie .framer-truofv > :last-child { margin-bottom: 0px; } .framer-3MOoZ.framer-v-skmpie .framer-truofv > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-3MOoZ.framer-v-skmpie .framer-qtxacw > *, .framer-3MOoZ.framer-v-skmpie .framer-qtxacw > :first-child, .framer-3MOoZ.framer-v-skmpie .framer-qtxacw > :last-child { margin: 0px; } .framer-3MOoZ.framer-v-skmpie .framer-rqfw6r > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-3MOoZ.framer-v-skmpie .framer-rqfw6r > :first-child { margin-left: 0px; } .framer-3MOoZ.framer-v-skmpie .framer-rqfw6r > :last-child { margin-right: 0px; } }\",\".framer-3MOoZ.framer-v-hlpg47 .framer-truofv, .framer-3MOoZ.framer-v-1oh8p6e .framer-truofv { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; order: 1; width: 100%; }\",\".framer-3MOoZ.framer-v-hlpg47 .framer-ai1myu-container, .framer-3MOoZ.framer-v-1oh8p6e .framer-ai1myu-container { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3MOoZ.framer-v-hlpg47.framer-1p5ngjk, .framer-3MOoZ.framer-v-hlpg47 .framer-truofv, .framer-3MOoZ.framer-v-hlpg47 .framer-qtxacw, .framer-3MOoZ.framer-v-hlpg47 .framer-rqfw6r { gap: 0px; } .framer-3MOoZ.framer-v-hlpg47.framer-1p5ngjk > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-3MOoZ.framer-v-hlpg47.framer-1p5ngjk > :first-child, .framer-3MOoZ.framer-v-hlpg47 .framer-truofv > :first-child { margin-top: 0px; } .framer-3MOoZ.framer-v-hlpg47.framer-1p5ngjk > :last-child, .framer-3MOoZ.framer-v-hlpg47 .framer-truofv > :last-child { margin-bottom: 0px; } .framer-3MOoZ.framer-v-hlpg47 .framer-truofv > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-3MOoZ.framer-v-hlpg47 .framer-qtxacw > *, .framer-3MOoZ.framer-v-hlpg47 .framer-qtxacw > :first-child, .framer-3MOoZ.framer-v-hlpg47 .framer-qtxacw > :last-child { margin: 0px; } .framer-3MOoZ.framer-v-hlpg47 .framer-rqfw6r > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-3MOoZ.framer-v-hlpg47 .framer-rqfw6r > :first-child { margin-left: 0px; } .framer-3MOoZ.framer-v-hlpg47 .framer-rqfw6r > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3MOoZ.framer-v-bp83oo.framer-1p5ngjk, .framer-3MOoZ.framer-v-bp83oo .framer-qtxacw, .framer-3MOoZ.framer-v-bp83oo .framer-rqfw6r { gap: 0px; } .framer-3MOoZ.framer-v-bp83oo.framer-1p5ngjk > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-3MOoZ.framer-v-bp83oo.framer-1p5ngjk > :first-child { margin-top: 0px; } .framer-3MOoZ.framer-v-bp83oo.framer-1p5ngjk > :last-child { margin-bottom: 0px; } .framer-3MOoZ.framer-v-bp83oo .framer-qtxacw > *, .framer-3MOoZ.framer-v-bp83oo .framer-qtxacw > :first-child, .framer-3MOoZ.framer-v-bp83oo .framer-qtxacw > :last-child { margin: 0px; } .framer-3MOoZ.framer-v-bp83oo .framer-rqfw6r > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-3MOoZ.framer-v-bp83oo .framer-rqfw6r > :first-child { margin-left: 0px; } .framer-3MOoZ.framer-v-bp83oo .framer-rqfw6r > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3MOoZ.framer-v-vq3khd.framer-1p5ngjk, .framer-3MOoZ.framer-v-vq3khd .framer-truofv, .framer-3MOoZ.framer-v-vq3khd .framer-qtxacw, .framer-3MOoZ.framer-v-vq3khd .framer-rqfw6r { gap: 0px; } .framer-3MOoZ.framer-v-vq3khd.framer-1p5ngjk > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-3MOoZ.framer-v-vq3khd.framer-1p5ngjk > :first-child, .framer-3MOoZ.framer-v-vq3khd .framer-truofv > :first-child { margin-top: 0px; } .framer-3MOoZ.framer-v-vq3khd.framer-1p5ngjk > :last-child, .framer-3MOoZ.framer-v-vq3khd .framer-truofv > :last-child { margin-bottom: 0px; } .framer-3MOoZ.framer-v-vq3khd .framer-truofv > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-3MOoZ.framer-v-vq3khd .framer-qtxacw > *, .framer-3MOoZ.framer-v-vq3khd .framer-qtxacw > :first-child, .framer-3MOoZ.framer-v-vq3khd .framer-qtxacw > :last-child { margin: 0px; } .framer-3MOoZ.framer-v-vq3khd .framer-rqfw6r > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-3MOoZ.framer-v-vq3khd .framer-rqfw6r > :first-child { margin-left: 0px; } .framer-3MOoZ.framer-v-vq3khd .framer-rqfw6r > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3MOoZ.framer-v-b37rv6.framer-1p5ngjk, .framer-3MOoZ.framer-v-b37rv6 .framer-qtxacw, .framer-3MOoZ.framer-v-b37rv6 .framer-rqfw6r { gap: 0px; } .framer-3MOoZ.framer-v-b37rv6.framer-1p5ngjk > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-3MOoZ.framer-v-b37rv6.framer-1p5ngjk > :first-child { margin-top: 0px; } .framer-3MOoZ.framer-v-b37rv6.framer-1p5ngjk > :last-child { margin-bottom: 0px; } .framer-3MOoZ.framer-v-b37rv6 .framer-qtxacw > *, .framer-3MOoZ.framer-v-b37rv6 .framer-qtxacw > :first-child, .framer-3MOoZ.framer-v-b37rv6 .framer-qtxacw > :last-child { margin: 0px; } .framer-3MOoZ.framer-v-b37rv6 .framer-rqfw6r > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-3MOoZ.framer-v-b37rv6 .framer-rqfw6r > :first-child { margin-left: 0px; } .framer-3MOoZ.framer-v-b37rv6 .framer-rqfw6r > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3MOoZ.framer-v-1lwgh1u.framer-1p5ngjk, .framer-3MOoZ.framer-v-1lwgh1u .framer-qtxacw, .framer-3MOoZ.framer-v-1lwgh1u .framer-rqfw6r { gap: 0px; } .framer-3MOoZ.framer-v-1lwgh1u.framer-1p5ngjk > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-3MOoZ.framer-v-1lwgh1u.framer-1p5ngjk > :first-child { margin-top: 0px; } .framer-3MOoZ.framer-v-1lwgh1u.framer-1p5ngjk > :last-child { margin-bottom: 0px; } .framer-3MOoZ.framer-v-1lwgh1u .framer-qtxacw > *, .framer-3MOoZ.framer-v-1lwgh1u .framer-qtxacw > :first-child, .framer-3MOoZ.framer-v-1lwgh1u .framer-qtxacw > :last-child { margin: 0px; } .framer-3MOoZ.framer-v-1lwgh1u .framer-rqfw6r > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-3MOoZ.framer-v-1lwgh1u .framer-rqfw6r > :first-child { margin-left: 0px; } .framer-3MOoZ.framer-v-1lwgh1u .framer-rqfw6r > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3MOoZ.framer-v-1oh8p6e.framer-1p5ngjk, .framer-3MOoZ.framer-v-1oh8p6e .framer-truofv, .framer-3MOoZ.framer-v-1oh8p6e .framer-qtxacw, .framer-3MOoZ.framer-v-1oh8p6e .framer-rqfw6r { gap: 0px; } .framer-3MOoZ.framer-v-1oh8p6e.framer-1p5ngjk > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-3MOoZ.framer-v-1oh8p6e.framer-1p5ngjk > :first-child, .framer-3MOoZ.framer-v-1oh8p6e .framer-truofv > :first-child { margin-top: 0px; } .framer-3MOoZ.framer-v-1oh8p6e.framer-1p5ngjk > :last-child, .framer-3MOoZ.framer-v-1oh8p6e .framer-truofv > :last-child { margin-bottom: 0px; } .framer-3MOoZ.framer-v-1oh8p6e .framer-truofv > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-3MOoZ.framer-v-1oh8p6e .framer-qtxacw > *, .framer-3MOoZ.framer-v-1oh8p6e .framer-qtxacw > :first-child, .framer-3MOoZ.framer-v-1oh8p6e .framer-qtxacw > :last-child { margin: 0px; } .framer-3MOoZ.framer-v-1oh8p6e .framer-rqfw6r > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-3MOoZ.framer-v-1oh8p6e .framer-rqfw6r > :first-child { margin-left: 0px; } .framer-3MOoZ.framer-v-1oh8p6e .framer-rqfw6r > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3MOoZ.framer-v-zc8r7p.framer-1p5ngjk, .framer-3MOoZ.framer-v-zc8r7p .framer-qtxacw, .framer-3MOoZ.framer-v-zc8r7p .framer-rqfw6r { gap: 0px; } .framer-3MOoZ.framer-v-zc8r7p.framer-1p5ngjk > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-3MOoZ.framer-v-zc8r7p.framer-1p5ngjk > :first-child { margin-top: 0px; } .framer-3MOoZ.framer-v-zc8r7p.framer-1p5ngjk > :last-child { margin-bottom: 0px; } .framer-3MOoZ.framer-v-zc8r7p .framer-qtxacw > *, .framer-3MOoZ.framer-v-zc8r7p .framer-qtxacw > :first-child, .framer-3MOoZ.framer-v-zc8r7p .framer-qtxacw > :last-child { margin: 0px; } .framer-3MOoZ.framer-v-zc8r7p .framer-rqfw6r > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-3MOoZ.framer-v-zc8r7p .framer-rqfw6r > :first-child { margin-left: 0px; } .framer-3MOoZ.framer-v-zc8r7p .framer-rqfw6r > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 112\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qTJn47rgK\":{\"layout\":[\"fixed\",\"auto\"]},\"feZl56Xso\":{\"layout\":[\"fixed\",\"auto\"]},\"hVvGZoDZV\":{\"layout\":[\"fixed\",\"auto\"]},\"AoN0yUgOK\":{\"layout\":[\"fixed\",\"auto\"]},\"yPEP3oRJz\":{\"layout\":[\"fixed\",\"auto\"]},\"kCiGPZ3QP\":{\"layout\":[\"fixed\",\"auto\"]},\"XC7vPeSE9\":{\"layout\":[\"fixed\",\"auto\"]},\"IaWpVMQsM\":{\"layout\":[\"fixed\",\"auto\"]},\"ZVXmMZZI4\":{\"layout\":[\"fixed\",\"auto\"]},\"rHRoXfc3E\":{\"layout\":[\"fixed\",\"auto\"]},\"hPR9jvGIg\":{\"layout\":[\"fixed\",\"auto\"]},\"oAf1Vyh6I\":{\"layout\":[\"fixed\",\"auto\"]},\"wAZYZELod\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEGHy3r4gl=withCSS(Component,css,\"framer-3MOoZ\");export default FramerEGHy3r4gl;FramerEGHy3r4gl.displayName=\"Primary Header\";FramerEGHy3r4gl.defaultProps={height:112,width:1200};addPropertyControls(FramerEGHy3r4gl,{variant:{options:[\"u2Jpt8olN\",\"qTJn47rgK\",\"feZl56Xso\",\"hVvGZoDZV\",\"AoN0yUgOK\",\"yPEP3oRJz\",\"kCiGPZ3QP\",\"XC7vPeSE9\",\"IaWpVMQsM\",\"ZVXmMZZI4\",\"rHRoXfc3E\",\"hPR9jvGIg\",\"oAf1Vyh6I\",\"wAZYZELod\"],optionTitles:[\"Desktop\",\"Transparent\",\"Tablet\",\"Phone closed\",\"Tablet Transparent\",\"Phone Transparent\",\"Tab open\",\"Phone open\",\"Tablet Trasparent 1.0\",\"Tablet Trasparent 1.0 open\",\"Tablet transparent section\",\"Phone transparent 1.0\",\"Phone open transparent\",\"Phone transparent section\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerEGHy3r4gl,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{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\"}]},...TriggerFonts,...MegaMenuTechnologyFonts,...TabMenuTechFonts,...TabMenuProductsFonts,...MegaMenuProductsFonts,...ButtonFonts,...LogoFonts,...SearchFonts,...ThemeToggleFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEGHy3r4gl\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qTJn47rgK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"feZl56Xso\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hVvGZoDZV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AoN0yUgOK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yPEP3oRJz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kCiGPZ3QP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XC7vPeSE9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IaWpVMQsM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZVXmMZZI4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rHRoXfc3E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hPR9jvGIg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oAf1Vyh6I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wAZYZELod\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["assign", "e", "t", "n", "r", "init", "set", "i", "o", "c", "get", "a", "createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "THEME_ATTRIBUTE", "COOKIE_NAME", "STYLE_ID", "SIGNAL_NAME", "THEMES", "useThemeStore", "createStore", "extractBodySection", "inputString", "searchStr", "startIndex", "endIndex", "makeBorderStyle", "border", "ThemeToggle", "props", "_window", "toggle", "dropdown", "dropdownOptions", "icons", "transition", "isPreview", "initialTheme", "storedTheme", "t", "deviceTheme", "window", "theme", "setTheme", "activeTheme", "setActiveTheme", "ye", "originalPreviewTheme", "setOriginalPreviewTheme", "themeRef", "pe", "selectRef", "changeTheme", "newTheme", "newActiveTheme", "toggleTheme", "onSelectChange", "handleThemeChange", "event", "ue", "mediaQuery", "generateStyle", "headElement", "style", "styleText", "darkLocation", "styleElement", "height", "padding", "shadow", "u", "motion", "p", "Icon", "showDeviceTheme", "themeTitles", "borderControls", "ControlType", "toggleShadowDefault", "iconsDefault", "addPropertyControls", "type", "size", "lightSvg", "darkSvg", "lightImage", "darkImage", "sizing", "opacity", "l", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "SVG", "css", "FramerbytBR8Rsj", "withCSS", "bytBR8Rsj_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "oECE0oaeR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap19592h5", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "addPropertyOverrides", "SVG", "css", "FramergVUDvJoa4", "withCSS", "gVUDvJoa4_default", "addPropertyControls", "ControlType", "addFonts", "CaretFonts", "getFonts", "gVUDvJoa4_default", "PhosphorFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapifmh3z", "args", "onTapxgpsz1", "onTap1g3ofih", "onTapufspuh", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "Link", "css", "FramerDEdeMZlCi", "withCSS", "DEdeMZlCi_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "subHeading", "title", "width", "props", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "oBuYGdcM2", "E6FrGgOBf", "b7U7jztHx", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "Link", "u", "cx", "RichText2", "css", "Framerv4NnQRbLR", "withCSS", "v4NnQRbLR_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "SubmenuItemFonts", "getFonts", "v4NnQRbLR_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "u", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "v4NnQRbLR_default", "resolvedLinks1", "css", "FramerFRZNGj4IY", "withCSS", "FRZNGj4IY_default", "addFonts", "SubmenuItemFonts", "CaretFonts", "getFonts", "gVUDvJoa4_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "color", "height", "hover2", "hover3", "hover4", "hover5", "id", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "DApvjrdfG", "u5lzX_nF6", "BxUxalNR5", "rMfkujzBa", "X5EyQLNZz", "W3shnvXX6", "abBo6mUMI", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapn83ub4", "args", "onMouseEnter1dwghrw", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "RichText2", "ComponentViewportProvider", "gVUDvJoa4_default", "css", "FramerKJ3vtYGuD", "withCSS", "KJ3vtYGuD_default", "addPropertyControls", "ControlType", "addFonts", "CaretFonts", "CaretFonts", "getFonts", "gVUDvJoa4_default", "PhosphorFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1croa7i", "args", "onTapbnsxwq", "onTapc9bg60", "onTap164ejh4", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "Link", "css", "FramerTe22MQM1I", "withCSS", "Te22MQM1I_default", "addPropertyControls", "ControlType", "addFonts", "SubmenuItemFonts", "getFonts", "v4NnQRbLR_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "v4NnQRbLR_default", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "css", "FramerWhvZz4zsO", "withCSS", "WhvZz4zsO_default", "addFonts", "SubmenuItemFonts", "TriggerFonts", "getFonts", "KJ3vtYGuD_default", "MegaMenuTechnologyFonts", "FRZNGj4IY_default", "MotionDivWithFX", "withFX", "motion", "TabMenuTechFonts", "DEdeMZlCi_default", "TabMenuProductsFonts", "Te22MQM1I_default", "MegaMenuProductsFonts", "WhvZz4zsO_default", "ButtonFonts", "zTZ_GPlpp_default", "LogoFonts", "bytBR8Rsj_default", "SearchFonts", "Search_default", "ThemeToggleFonts", "ThemeToggle", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition3", "animation3", "animation4", "animation5", "transformTemplate1", "_", "t", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "W3shnvXX6izu9gt", "overlay", "paginationInfo", "args", "abBo6mUMIizu9gt", "onTap1bo27ud", "onTap1fi7ygt", "onTap7zkhm2", "onTapig38c5", "onTapadpbvg", "onTap1oek32x", "onTap1nepevv", "onTapjeraxw", "onTap1e19bdp", "ref1", "pe", "isDisplayed", "isDisplayed1", "ref2", "ref3", "isDisplayed2", "ref4", "ref5", "isDisplayed3", "router", "useRouter", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "l", "ComponentViewportProvider", "KJ3vtYGuD_default", "AnimatePresence", "Floating", "MotionDivWithFX", "FRZNGj4IY_default", "DEdeMZlCi_default", "Te22MQM1I_default", "overlay1", "WhvZz4zsO_default", "Link", "RichText2", "ResolveLinks", "resolvedLinks", "zTZ_GPlpp_default", "bytBR8Rsj_default", "Search_default", "ThemeToggle", "resolvedLinks1", "css", "FramerEGHy3r4gl", "withCSS", "EGHy3r4gl_default", "addPropertyControls", "ControlType", "addFonts", "TriggerFonts", "MegaMenuTechnologyFonts", "TabMenuTechFonts", "TabMenuProductsFonts", "MegaMenuProductsFonts", "ButtonFonts", "LogoFonts", "SearchFonts", "ThemeToggleFonts"]
}
