{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/icon-nullstate.js@0.7.0", "ssg:https://framer.com/m/feather-icons/home.js@0.0.29", "ssg:https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js", "ssg:https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js", "ssg:https://framerusercontent.com/modules/cWoqRrSOZoAExfoQsM0o/YxdCLDYif65BdqIs7sQp/Lt4frqDhH.js", "ssg:https://framerusercontent.com/modules/IIs2W5ZBxL9oBvkHG2KD/dz4HAJWjuDeZg1U9K8SD/DbgOlESTA.js", "ssg:https://framerusercontent.com/modules/aL4m3BnTmoi3V6zy1auE/9CRC6KvfGLA5vapt9rj2/YrHmLn2k8.js", "ssg:https://framerusercontent.com/modules/d4iNOS5s4o0lxxMDzbb5/12SguLElVMFm80CV4Qxw/SUKVFVPOh.js"],
  "sourcesContent": ["import { jsx as _jsx } from \"react/jsx-runtime\";\nimport * as React from \"react\";\nexport const containerStyles = {\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nconst nullIconStyle = {\n    minWidth: \"10px\",\n    minHeight: \"10px\",\n    maxWidth: \"20px\",\n    maxHeight: \"20px\",\n    width: \"60%\",\n    height: \"60%\"\n};\nconst emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(149, 149, 149, 0.1)\",\n    border: \"1px dashed rgba(149, 149, 149, 0.15)\",\n    color: \"#a5a5a5\",\n    flexDirection: \"column\"\n};\nexport const NullState = /*#__PURE__*/ React.forwardRef((_, ref)=>{\n    return(/*#__PURE__*/ _jsx(\"div\", {\n        style: emptyStateStyle,\n        ref: ref\n    }));\n}) /*\n\n<svg\n                xmlns=\"http://www.w3.org/2000/svg\"\n                viewBox=\"0 0 30 30\"\n                style={nullIconStyle}\n            >\n                <path\n                    d=\"M 12.857 0 C 19.958 0 25.714 5.756 25.714 12.857 C 25.714 19.958 19.958 25.714 12.857 25.714 C 5.756 25.714 0 19.958 0 12.857 C 0 5.756 5.756 0 12.857 0 Z\"\n                    fill=\"#FFFFFF\"\n                ></path>\n                <path\n                    d=\"M 20.357 20.357 L 27.857 27.857\"\n                    fill=\"transparent\"\n                    strokeWidth=\"4.28\"\n                    stroke=\"#FFFFFF\"\n                    strokeLinecap=\"round\"\n                ></path>\n                <g transform=\"translate(9.643 6.429)\">\n                    <path\n                        d=\"M 3.214 12.857 L 3.214 12.857\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.75\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                    ></path>\n                    <path\n                        d=\"M 0 3.214 C 0 1.004 1.843 0 3.214 0 C 4.586 0 6.429 0.603 6.429 3.214 C 6.429 5.826 3.214 5.913 3.214 7.232 C 3.214 8.552 3.214 8.571 3.214 8.571\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.22\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                        strokeLinejoin=\"round\"\n                    ></path>\n                </g>\n            </svg>\n            */ ;\n\nexport const __FramerMetadata__ = {\"exports\":{\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"NullState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./nullstate.map", "let r;var s=o=>{if(!r){const n=o.forwardRef(({color:t=\"currentColor\",size:e=24,...i},l)=>o.createElement(\"svg\",{ref:l,xmlns:\"http://www.w3.org/2000/svg\",width:e,height:e,viewBox:\"0 0 24 24\",fill:\"none\",stroke:t,strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\",...i},o.createElement(\"path\",{d:\"M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z\"}),o.createElement(\"polyline\",{points:\"9 22 9 12 15 12 15 22\"})));n.displayName=\"Home\",r=n}return r};export{s as default};\n", "import{useMemo}from\"react\";import{ControlType}from\"framer\";/*\n ** ICON UTILS\n ** Pull as much re-usable logic into here as possible\n ** This will make it easier to replace in all icon components\n */ export const containerStyles={width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};export const defaultEvents={onClick:{type:ControlType.EventHandler},onMouseDown:{type:ControlType.EventHandler},onMouseUp:{type:ControlType.EventHandler},onMouseEnter:{type:ControlType.EventHandler},onMouseLeave:{type:ControlType.EventHandler}};const findByArray=(arr,search)=>arr.find(a=>a.toLowerCase().includes(search));export function getIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// gotta get the exact match first THEN find\n// have a set and try to access ?\nif(selectByList)return iconSelection;if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;}export function useIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// Clean search term\nconst iconSearchResult=useMemo(()=>{if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;},[iconSelection,iconSearch]);const name=selectByList?iconSelection:iconSearchResult;return name;}\nexport const __FramerMetadata__ = {\"exports\":{\"getIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/feather-icons/home.js@0.0.29\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"activity\",\"airplay\",\"alert-circle\",\"alert-octagon\",\"alert-triangle\",\"align-center\",\"align-justify\",\"align-left\",\"align-right\",\"anchor\",\"aperture\",\"archive\",\"arrow-down\",\"arrow-down-circle\",\"arrow-down-left\",\"arrow-down-right\",\"arrow-left\",\"arrow-left-circle\",\"arrow-right\",\"arrow-right-circle\",\"arrow-up\",\"arrow-up-circle\",\"arrow-up-left\",\"arrow-up-right\",\"at-sign\",\"award\",\"bar-chart\",\"bar-chart-2\",\"battery\",\"battery-charging\",\"bell\",\"bell-off\",\"bluetooth\",\"bold\",\"book\",\"book-open\",\"bookmark\",\"box\",\"briefcase\",\"calendar\",\"camera\",\"camera-off\",\"cast\",\"check\",\"check-circle\",\"check-square\",\"chevron-down\",\"chevron-left\",\"chevron-right\",\"chevron-up\",\"chevrons-down\",\"chevrons-left\",\"chevrons-right\",\"chevrons-up\",\"chrome\",\"circle\",\"clipboard\",\"clock\",\"cloud\",\"cloud-drizzle\",\"cloud-lightning\",\"cloud-off\",\"cloud-rain\",\"cloud-snow\",\"code\",\"codepen\",\"codesandbox\",\"coffee\",\"columns\",\"command\",\"compass\",\"copy\",\"corner-down-left\",\"corner-down-right\",\"corner-left-down\",\"corner-left-up\",\"corner-right-down\",\"corner-right-up\",\"corner-up-left\",\"corner-up-right\",\"cpu\",\"credit-card\",\"crop\",\"crosshair\",\"database\",\"delete\",\"disc\",\"divide\",\"divide-circle\",\"divide-square\",\"dollar-sign\",\"download\",\"download-cloud\",\"dribbble\",\"droplet\",\"edit\",\"edit-2\",\"edit-3\",\"external-link\",\"eye\",\"eye-off\",\"facebook\",\"fast-forward\",\"feather\",\"figma\",\"file\",\"file-minus\",\"file-plus\",\"file-text\",\"film\",\"filter\",\"flag\",\"folder\",\"folder-minus\",\"folder-plus\",\"framer\",\"frown\",\"gift\",\"git-branch\",\"git-commit\",\"git-merge\",\"git-pull-request\",\"github\",\"gitlab\",\"globe\",\"grid\",\"hard-drive\",\"hash\",\"headphones\",\"heart\",\"help-circle\",\"hexagon\",\"home\",\"image\",\"inbox\",\"info\",\"instagram\",\"italic\",\"key\",\"layers\",\"layout\",\"life-buoy\",\"link\",\"link-2\",\"linkedin\",\"list\",\"loader\",\"lock\",\"log-in\",\"log-out\",\"mail\",\"map\",\"map-pin\",\"maximize\",\"maximize-2\",\"meh\",\"menu\",\"message-circle\",\"message-square\",\"mic\",\"mic-off\",\"minimize\",\"minimize-2\",\"minus\",\"minus-circle\",\"minus-square\",\"monitor\",\"moon\",\"more-horizontal\",\"more-vertical\",\"mouse-pointer\",\"move\",\"music\",\"navigation\",\"navigation-2\",\"octagon\",\"package\",\"paperclip\",\"pause\",\"pause-circle\",\"pen-tool\",\"percent\",\"phone\",\"phone-call\",\"phone-forwarded\",\"phone-incoming\",\"phone-missed\",\"phone-off\",\"phone-outgoing\",\"pie-chart\",\"play\",\"play-circle\",\"plus\",\"plus-circle\",\"plus-square\",\"pocket\",\"power\",\"printer\",\"radio\",\"refresh-ccw\",\"refresh-cw\",\"repeat\",\"rewind\",\"rotate-ccw\",\"rotate-cw\",\"rss\",\"save\",\"scissors\",\"search\",\"send\",\"server\",\"settings\",\"share\",\"share-2\",\"shield\",\"shield-off\",\"shopping-bag\",\"shopping-cart\",\"shuffle\",\"sidebar\",\"skip-back\",\"skip-forward\",\"slack\",\"slash\",\"sliders\",\"smartphone\",\"smile\",\"speaker\",\"square\",\"star\",\"stop-circle\",\"sun\",\"sunrise\",\"sunset\",\"tablet\",\"tag\",\"target\",\"terminal\",\"thermometer\",\"thumbs-down\",\"thumbs-up\",\"toggle-left\",\"toggle-right\",\"tool\",\"trash\",\"trash-2\",\"trello\",\"trending-down\",\"trending-up\",\"triangle\",\"truck\",\"tv\",\"twitch\",\"twitter\",\"type\",\"umbrella\",\"underline\",\"unlock\",\"upload\",\"upload-cloud\",\"user\",\"user-check\",\"user-minus\",\"user-plus\",\"user-x\",\"users\",\"video\",\"video-off\",\"voicemail\",\"volume\",\"volume-1\",\"volume-2\",\"volume-x\",\"watch\",\"wifi\",\"wifi-off\",\"wind\",\"x\",\"x-circle\",\"x-octagon\",\"x-square\",\"youtube\",\"zap\",\"zap-off\",\"zoom-in\",\"zoom-out\",];const moduleBaseUrl=\"https://framer.com/m/feather-icons/\";const uppercaseIconKeys=iconKeys.map(name=>name.charAt(0).toUpperCase()+name.slice(1));const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * FEATHER\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){let active=true;// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.29`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);// console.log(module.default)\nif(active)setSelectedIcon(module.default(React));}catch(e){console.log(e);if(active)setSelectedIcon(null);}return()=>{active=false;};}// Import module when new style or icon is selected\nuseEffect(()=>{importModule();},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(\"div\",{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(SelectedIcon,{style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Feather\";Icon.defaultProps={width:24,height:24,iconSelection:\"home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,optionTitles:uppercaseIconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Feather site](https://feathericons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Feather.map", "// Generated by Framer (575e68f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-ykIl0 .framer-styles-preset-1lqwqip:not(.rich-text-wrapper), .framer-ykIl0 .framer-styles-preset-1lqwqip.rich-text-wrapper a { --framer-link-current-text-color: #ffffff; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: rgba(255, 255, 255, 0.8); --framer-link-hover-text-decoration: none; --framer-link-text-color: #ffffff; --framer-link-text-decoration: none; }\"];export const className=\"framer-ykIl0\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (575e68f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-jZ97b .framer-styles-preset-1ly7l64:not(.rich-text-wrapper), .framer-jZ97b .framer-styles-preset-1ly7l64.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #3548f0; --framer-link-hover-text-decoration: none; --framer-link-text-decoration: none; }\"];export const className=\"framer-jZ97b\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8857874)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/IIs2W5ZBxL9oBvkHG2KD/dz4HAJWjuDeZg1U9K8SD/DbgOlESTA.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/cWoqRrSOZoAExfoQsM0o/YxdCLDYif65BdqIs7sQp/Lt4frqDhH.js\";const FeatherFonts=getFonts(Feather);const cycleOrder=[\"sxkHnlzhs\",\"gDRAr1Rqd\",\"T4uN7hr_E\",\"Qiyed8EUe\"];const serializationHash=\"framer-Qal2x\";const variantClassNames={gDRAr1Rqd:\"framer-v-dugvb7\",Qiyed8EUe:\"framer-v-b8t2eu\",sxkHnlzhs:\"framer-v-2nx42v\",T4uN7hr_E:\"framer-v-71tmjw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:3,stiffness:400,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 humanReadableVariantMap={\"Mobile/Closed\":\"T4uN7hr_E\",\"Mobile/Opened\":\"Qiyed8EUe\",\"Variant 1\":\"sxkHnlzhs\",\"Variant 2\":\"gDRAr1Rqd\"};const getProps=({fontSize,gap,height,id,linkSize,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1,_ref2,_ref3;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:\"sxkHnlzhs\",weEv0ux9e:(_ref1=fontSize!==null&&fontSize!==void 0?fontSize:props.weEv0ux9e)!==null&&_ref1!==void 0?_ref1:20,WjPSo6EEt:(_ref2=gap!==null&&gap!==void 0?gap:props.WjPSo6EEt)!==null&&_ref2!==void 0?_ref2:14,YmB9P_sKD:(_ref3=linkSize!==null&&linkSize!==void 0?linkSize:props.YmB9P_sKD)!==null&&_ref3!==void 0?_ref3:18};};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,weEv0ux9e,YmB9P_sKD,WjPSo6EEt,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sxkHnlzhs\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap16cc0ve=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"gDRAr1Rqd\");});const onMouseEnter1osrgji=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"gDRAr1Rqd\");});const onTap1tvyo3m=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"sxkHnlzhs\");});const onMouseLeave6p640n=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"sxkHnlzhs\");});const onTap1jlpeth=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"Qiyed8EUe\");});const onTap1s6n015=activeVariantCallback(async(...args)=>{setVariant(\"T4uN7hr_E\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-2nx42v\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"sxkHnlzhs\",onMouseEnter:onMouseEnter1osrgji,onTap:onTap16cc0ve,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(255, 255, 255, 0)\",...style},...addPropertyOverrides({gDRAr1Rqd:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeave6p640n,onTap:onTap1tvyo3m},Qiyed8EUe:{\"data-framer-name\":\"Mobile/Opened\",\"data-highlight\":undefined,onMouseEnter:undefined,onTap:undefined},T4uN7hr_E:{\"data-framer-name\":\"Mobile/Closed\",onMouseEnter:undefined,onTap:onTap1jlpeth}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h8190o\",\"data-framer-name\":\"wrapper\",layoutDependency:layoutDependency,layoutId:\"DeGIzv78q\",...addPropertyOverrides({Qiyed8EUe:{\"data-highlight\":true,onTap:onTap1s6n015}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFNlbWlCb2xk\",\"--framer-font-family\":'\"Standerd SemiBold\", \"Standerd SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-weEv0ux9e-YrHmLn2k8) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Important Links\"})}),className:\"framer-qqsnph\",\"data-framer-name\":\"Home\",fonts:[\"CUSTOM;Standerd SemiBold\"],layoutDependency:layoutDependency,layoutId:\"juXFRgEit\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-weEv0ux9e-YrHmLn2k8\":weEv0ux9e},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p97j-container\",layoutDependency:layoutDependency,layoutId:\"b9pLO9tv4-container\",style:{rotate:0},variants:{gDRAr1Rqd:{rotate:180},Qiyed8EUe:{rotate:180}},children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"chevron-down\",id:\"b9pLO9tv4\",layoutId:\"b9pLO9tv4\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q3n5se\",layoutDependency:layoutDependency,layoutId:\"EG2ZLESAt\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xcnfla\",layoutDependency:layoutDependency,layoutId:\"RARbF12kD\",style:{\"--1nf8il2\":WjPSo6EEt,\"--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\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:0},variants:{gDRAr1Rqd:{opacity:1},Qiyed8EUe:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(255, 255, 255, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,opacity:1},T4uN7hr_E:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(255, 255, 255, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({Qiyed8EUe:{\"data-border\":true},T4uN7hr_E:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-YmB9P_sKD-YrHmLn2k8) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 38, 61))\"},children:/*#__PURE__*/_jsx(Link,{href:\"http://www.nseindia.com/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ly7l64\",\"data-styles-preset\":\"DbgOlESTA\",children:\"www.nseindia.com\"})})})}),className:\"framer-1t14b92\",\"data-framer-name\":\"Technology\",fonts:[\"CUSTOM;Standerd Regular\"],layoutDependency:layoutDependency,layoutId:\"rHtPpbuTz\",style:{\"--extracted-r6o4lv\":\"rgb(15, 38, 61)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-YmB9P_sKD-YrHmLn2k8\":YmB9P_sKD},variants:{Qiyed8EUe:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},T4uN7hr_E:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Qiyed8EUe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-YmB9P_sKD-YrHmLn2k8) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"http://www.nseindia.com/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"www.nseindia.com\"})})})})},T4uN7hr_E:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-YmB9P_sKD-YrHmLn2k8) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"http://www.nseindia.com/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ly7l64\",\"data-styles-preset\":\"DbgOlESTA\",children:\"www.nseindia.com\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-YmB9P_sKD-YrHmLn2k8) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 38, 61))\"},children:/*#__PURE__*/_jsx(Link,{href:\"www.bseindia.com\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ly7l64\",\"data-styles-preset\":\"DbgOlESTA\",children:\"www.bseindia.com\"})})})}),className:\"framer-14ff0ak\",\"data-framer-name\":\"About Us\",fonts:[\"CUSTOM;Standerd Regular\"],layoutDependency:layoutDependency,layoutId:\"CXPcGC1KQ\",style:{\"--extracted-r6o4lv\":\"rgb(15, 38, 61)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-YmB9P_sKD-YrHmLn2k8\":YmB9P_sKD},variants:{Qiyed8EUe:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},T4uN7hr_E:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Qiyed8EUe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-YmB9P_sKD-YrHmLn2k8) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"www.bseindia.com\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"www.bseindia.com\"})})})})},T4uN7hr_E:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-YmB9P_sKD-YrHmLn2k8) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"www.bseindia.com\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ly7l64\",\"data-styles-preset\":\"DbgOlESTA\",children:\"www.bseindia.com\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-YmB9P_sKD-YrHmLn2k8) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 38, 61))\"},children:/*#__PURE__*/_jsx(Link,{href:\"www.mca.gov.in\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ly7l64\",\"data-styles-preset\":\"DbgOlESTA\",children:\"www.mca.gov.in\"})})})}),className:\"framer-cs0qxv\",\"data-framer-name\":\"Contact\",fonts:[\"CUSTOM;Standerd Regular\"],layoutDependency:layoutDependency,layoutId:\"DSCBaPigB\",style:{\"--extracted-r6o4lv\":\"rgb(15, 38, 61)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-YmB9P_sKD-YrHmLn2k8\":YmB9P_sKD},variants:{Qiyed8EUe:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},T4uN7hr_E:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Qiyed8EUe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-YmB9P_sKD-YrHmLn2k8) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"www.mca.gov.in\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"www.mca.gov.in\"})})})})},T4uN7hr_E:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-YmB9P_sKD-YrHmLn2k8) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"www.mca.gov.in\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ly7l64\",\"data-styles-preset\":\"DbgOlESTA\",children:\"www.mca.gov.in\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-YmB9P_sKD-YrHmLn2k8) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 38, 61))\"},children:/*#__PURE__*/_jsx(Link,{href:\"http://www.sebi.gov.in/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ly7l64\",\"data-styles-preset\":\"DbgOlESTA\",children:\"www.sebi.gov.in\"})})})}),className:\"framer-19hpmqi\",\"data-framer-name\":\"Investor Relations\",fonts:[\"CUSTOM;Standerd Regular\"],layoutDependency:layoutDependency,layoutId:\"bKz3iC5Q0\",style:{\"--extracted-r6o4lv\":\"rgb(15, 38, 61)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-YmB9P_sKD-YrHmLn2k8\":YmB9P_sKD},variants:{Qiyed8EUe:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},T4uN7hr_E:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Qiyed8EUe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-YmB9P_sKD-YrHmLn2k8) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"http://www.sebi.gov.in/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"www.sebi.gov.in\"})})})})},T4uN7hr_E:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-YmB9P_sKD-YrHmLn2k8) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"http://www.sebi.gov.in/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ly7l64\",\"data-styles-preset\":\"DbgOlESTA\",children:\"www.sebi.gov.in\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-YmB9P_sKD-YrHmLn2k8) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 38, 61))\"},children:/*#__PURE__*/_jsx(Link,{href:\"http://www.rbi.org.in/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ly7l64\",\"data-styles-preset\":\"DbgOlESTA\",children:\"www.rbi.org.in\"})})})}),className:\"framer-13o99oo\",\"data-framer-name\":\"Culture\",fonts:[\"CUSTOM;Standerd Regular\"],layoutDependency:layoutDependency,layoutId:\"xz7k_JVaS\",style:{\"--extracted-r6o4lv\":\"rgb(15, 38, 61)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-YmB9P_sKD-YrHmLn2k8\":YmB9P_sKD},variants:{Qiyed8EUe:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},T4uN7hr_E:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Qiyed8EUe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-YmB9P_sKD-YrHmLn2k8) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"http://www.rbi.org.in/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"www.rbi.org.in\"})})})})},T4uN7hr_E:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-YmB9P_sKD-YrHmLn2k8) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"http://www.rbi.org.in/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ly7l64\",\"data-styles-preset\":\"DbgOlESTA\",children:\"www.rbi.org.in\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-YmB9P_sKD-YrHmLn2k8) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 38, 61))\"},children:/*#__PURE__*/_jsx(Link,{href:\"http://www.capitalmarket.com/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ly7l64\",\"data-styles-preset\":\"DbgOlESTA\",children:\"www.capitalmarket.com\"})})})}),className:\"framer-1fxb6wj\",\"data-framer-name\":\"Culture\",fonts:[\"CUSTOM;Standerd Regular\"],layoutDependency:layoutDependency,layoutId:\"s6ibxWKIV\",style:{\"--extracted-r6o4lv\":\"rgb(15, 38, 61)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-YmB9P_sKD-YrHmLn2k8\":YmB9P_sKD},variants:{Qiyed8EUe:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},T4uN7hr_E:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Qiyed8EUe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-YmB9P_sKD-YrHmLn2k8) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"http://www.capitalmarket.com/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"www.capitalmarket.com\"})})})})},T4uN7hr_E:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-YmB9P_sKD-YrHmLn2k8) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"http://www.capitalmarket.com/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ly7l64\",\"data-styles-preset\":\"DbgOlESTA\",children:\"www.capitalmarket.com\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-YmB9P_sKD-YrHmLn2k8) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 38, 61))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://sachet.rbi.org.in/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ly7l64\",\"data-styles-preset\":\"DbgOlESTA\",children:\"www.sachet.rbi.org.in\"})})})}),className:\"framer-1ey44xr\",\"data-framer-name\":\"Culture\",fonts:[\"CUSTOM;Standerd Regular\"],layoutDependency:layoutDependency,layoutId:\"A60xY1VtU\",style:{\"--extracted-r6o4lv\":\"rgb(15, 38, 61)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-YmB9P_sKD-YrHmLn2k8\":YmB9P_sKD},variants:{Qiyed8EUe:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},T4uN7hr_E:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Qiyed8EUe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-YmB9P_sKD-YrHmLn2k8) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://sachet.rbi.org.in/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"www.sachet.rbi.org.in\"})})})})},T4uN7hr_E:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-YmB9P_sKD-YrHmLn2k8) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://sachet.rbi.org.in/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ly7l64\",\"data-styles-preset\":\"DbgOlESTA\",children:\"www.sachet.rbi.org.in\"})})})})}},baseVariant,gestureVariant)})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Qal2x.framer-1c7moob, .framer-Qal2x .framer-1c7moob { display: block; }\",\".framer-Qal2x.framer-2nx42v { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 26px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Qal2x .framer-1h8190o { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Qal2x .framer-qqsnph, .framer-Qal2x .framer-1t14b92, .framer-Qal2x .framer-14ff0ak, .framer-Qal2x .framer-cs0qxv, .framer-Qal2x .framer-19hpmqi, .framer-Qal2x .framer-13o99oo, .framer-Qal2x .framer-1fxb6wj, .framer-Qal2x .framer-1ey44xr { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Qal2x .framer-1p97j-container { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-Qal2x .framer-q3n5se { 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: 8px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-Qal2x .framer-xcnfla { -webkit-user-select: none; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: calc(max(0, var(--1nf8il2)) * 1px); height: min-content; justify-content: flex-start; overflow: hidden; padding: 12px 20px 16px 20px; pointer-events: none; position: relative; user-select: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Qal2x.framer-2nx42v, .framer-Qal2x .framer-1h8190o, .framer-Qal2x .framer-q3n5se, .framer-Qal2x .framer-xcnfla { gap: 0px; } .framer-Qal2x.framer-2nx42v > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Qal2x.framer-2nx42v > :first-child, .framer-Qal2x .framer-xcnfla > :first-child { margin-top: 0px; } .framer-Qal2x.framer-2nx42v > :last-child, .framer-Qal2x .framer-xcnfla > :last-child { margin-bottom: 0px; } .framer-Qal2x .framer-1h8190o > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-Qal2x .framer-1h8190o > :first-child, .framer-Qal2x .framer-q3n5se > :first-child { margin-left: 0px; } .framer-Qal2x .framer-1h8190o > :last-child, .framer-Qal2x .framer-q3n5se > :last-child { margin-right: 0px; } .framer-Qal2x .framer-q3n5se > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Qal2x .framer-xcnfla > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--1nf8il2)) * 1px) / 2); margin-top: calc(calc(max(0, var(--1nf8il2)) * 1px) / 2); } }\",\".framer-Qal2x.framer-v-dugvb7.framer-2nx42v { overflow: visible; }\",\".framer-Qal2x.framer-v-dugvb7 .framer-xcnfla { -webkit-user-select: unset; pointer-events: unset; user-select: unset; }\",\".framer-Qal2x.framer-v-71tmjw.framer-2nx42v { gap: 20px; }\",\".framer-Qal2x.framer-v-71tmjw .framer-xcnfla, .framer-Qal2x.framer-v-b8t2eu .framer-xcnfla { -webkit-user-select: auto; padding: 0px 16px 2px 16px; pointer-events: auto; user-select: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Qal2x.framer-v-71tmjw.framer-2nx42v { gap: 0px; } .framer-Qal2x.framer-v-71tmjw.framer-2nx42v > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Qal2x.framer-v-71tmjw.framer-2nx42v > :first-child { margin-top: 0px; } .framer-Qal2x.framer-v-71tmjw.framer-2nx42v > :last-child { margin-bottom: 0px; } }\",\".framer-Qal2x.framer-v-b8t2eu.framer-2nx42v { cursor: unset; gap: 20px; height: min-content; overflow: visible; }\",\".framer-Qal2x.framer-v-b8t2eu .framer-1h8190o { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Qal2x.framer-v-b8t2eu.framer-2nx42v { gap: 0px; } .framer-Qal2x.framer-v-b8t2eu.framer-2nx42v > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Qal2x.framer-v-b8t2eu.framer-2nx42v > :first-child { margin-top: 0px; } .framer-Qal2x.framer-v-b8t2eu.framer-2nx42v > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-Qal2x[data-border=\"true\"]::after, .framer-Qal2x [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 26\n * @framerIntrinsicWidth 211\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"gDRAr1Rqd\":{\"layout\":[\"auto\",\"fixed\"]},\"T4uN7hr_E\":{\"layout\":[\"auto\",\"fixed\"]},\"Qiyed8EUe\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"weEv0ux9e\":\"fontSize\",\"YmB9P_sKD\":\"linkSize\",\"WjPSo6EEt\":\"gap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYrHmLn2k8=withCSS(Component,css,\"framer-Qal2x\");export default FramerYrHmLn2k8;FramerYrHmLn2k8.displayName=\"Important-links-footer\";FramerYrHmLn2k8.defaultProps={height:26,width:211};addPropertyControls(FramerYrHmLn2k8,{variant:{options:[\"sxkHnlzhs\",\"gDRAr1Rqd\",\"T4uN7hr_E\",\"Qiyed8EUe\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Mobile/Closed\",\"Mobile/Opened\"],title:\"Variant\",type:ControlType.Enum},weEv0ux9e:{defaultValue:20,title:\"Font Size\",type:ControlType.Number},YmB9P_sKD:{defaultValue:18,title:\"Link Size\",type:ControlType.Number},WjPSo6EEt:{defaultValue:14,min:0,title:\"Gap\",type:ControlType.Number}});addFonts(FramerYrHmLn2k8,[{explicitInter:true,fonts:[{family:\"Standerd SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/FaHY5x3oofppLJn8DdXCupQ6CVQ.woff2\"},{family:\"Standerd Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/Dt7a9jHzRCzqBWQ2vXx6nvOFNc.woff2\"}]},...FeatherFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYrHmLn2k8\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"211\",\"framerIntrinsicHeight\":\"26\",\"framerVariables\":\"{\\\"weEv0ux9e\\\":\\\"fontSize\\\",\\\"YmB9P_sKD\\\":\\\"linkSize\\\",\\\"WjPSo6EEt\\\":\\\"gap\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"gDRAr1Rqd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"T4uN7hr_E\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Qiyed8EUe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YrHmLn2k8.map", "// Generated by Framer (56d1180)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/cWoqRrSOZoAExfoQsM0o/YxdCLDYif65BdqIs7sQp/Lt4frqDhH.js\";import ImportantLinksFooter from\"https://framerusercontent.com/modules/aL4m3BnTmoi3V6zy1auE/9CRC6KvfGLA5vapt9rj2/YrHmLn2k8.js\";const ImportantLinksFooterFonts=getFonts(ImportantLinksFooter);const cycleOrder=[\"RsawMhJzc\",\"jTqaxFJiI\",\"f51qd8D6t\"];const serializationHash=\"framer-jcR8B\";const variantClassNames={f51qd8D6t:\"framer-v-y380tl\",jTqaxFJiI:\"framer-v-7u1e8x\",RsawMhJzc:\"framer-v-zis0v3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"RsawMhJzc\",Phone:\"f51qd8D6t\",Tablet:\"jTqaxFJiI\"};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:\"RsawMhJzc\"};};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:\"RsawMhJzc\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-zis0v3\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"RsawMhJzc\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:\"linear-gradient(180deg, rgba(33, 39, 51, 1) 0%, rgba(34, 44, 118, 1) 51.99999809265137%, rgba(53, 72, 240, 1) 100%)\",...style},...addPropertyOverrides({f51qd8D6t:{\"data-framer-name\":\"Phone\"},jTqaxFJiI:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-4a3cy9\",\"data-framer-name\":\"wrapper\",layoutDependency:layoutDependency,layoutId:\"oAXEU05i5\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-103kruw\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"epj_Ln6nv\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-21fq8z\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"JV4rFuWjL\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gsy45k\",layoutDependency:layoutDependency,layoutId:\"o7wq4p8En\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Home\"})})})}),className:\"framer-lqdemi\",\"data-framer-name\":\"Technology\",fonts:[\"CUSTOM;Standerd Regular\"],layoutDependency:layoutDependency,layoutId:\"rzOQuw0M3\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({f51qd8D6t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Home\"})})})})},jTqaxFJiI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Home\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qvRRskqv4\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Technology\"})})})}),className:\"framer-h0cedd\",\"data-framer-name\":\"Technology\",fonts:[\"CUSTOM;Standerd Regular\"],layoutDependency:layoutDependency,layoutId:\"MQPJpCDMi\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({f51qd8D6t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qvRRskqv4\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Technology\"})})})})},jTqaxFJiI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qvRRskqv4\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Technology\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zcqKiIBEG\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"About Us\"})})})}),className:\"framer-102frgd\",\"data-framer-name\":\"About Us\",fonts:[\"CUSTOM;Standerd Regular\"],layoutDependency:layoutDependency,layoutId:\"AoJINJbq5\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({f51qd8D6t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zcqKiIBEG\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"About Us\"})})})})},jTqaxFJiI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zcqKiIBEG\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"About Us\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"km_KcG_Y4\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Culture\"})})})}),className:\"framer-1wbc3fk\",\"data-framer-name\":\"Culture\",fonts:[\"CUSTOM;Standerd Regular\"],layoutDependency:layoutDependency,layoutId:\"BMBT1aKvn\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({f51qd8D6t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"km_KcG_Y4\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Culture\"})})})})},jTqaxFJiI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"km_KcG_Y4\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Culture\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XHRNoPawi\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Investor Relations\"})})})}),className:\"framer-w85nwc\",\"data-framer-name\":\"Investor Relations\",fonts:[\"CUSTOM;Standerd Regular\"],layoutDependency:layoutDependency,layoutId:\"qEIGj8pwu\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({f51qd8D6t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XHRNoPawi\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Investor Relations\"})})})})},jTqaxFJiI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XHRNoPawi\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Investor Relations\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"b_ePEySKV\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Contact\"})})})}),className:\"framer-1lnsd6j\",\"data-framer-name\":\"Contact\",fonts:[\"CUSTOM;Standerd Regular\"],layoutDependency:layoutDependency,layoutId:\"kSHZfV5oA\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({f51qd8D6t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"b_ePEySKV\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Contact\"})})})})},jTqaxFJiI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"b_ePEySKV\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Contact\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Udsry3VZv\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Senti\"})})})}),className:\"framer-189stj1\",\"data-framer-name\":\"Contact\",fonts:[\"CUSTOM;Standerd Regular\"],layoutDependency:layoutDependency,layoutId:\"Rf3ErB9h1\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({f51qd8D6t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Udsry3VZv\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Senti\"})})})})},jTqaxFJiI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Udsry3VZv\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Senti\"})})})})}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vm7jh\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"KwYvorHWN\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g4mzno\",layoutDependency:layoutDependency,layoutId:\"fK33ODkrm\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-85zmgc\",layoutDependency:layoutDependency,layoutId:\"OYIghlPAZ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"X02SnBrqh\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Lending Partners\"})})})}),className:\"framer-1iokexm\",\"data-framer-name\":\"Technology\",fonts:[\"CUSTOM;Standerd Regular\"],layoutDependency:layoutDependency,layoutId:\"kykDC3rN_\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({f51qd8D6t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"X02SnBrqh\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Lending Partners\"})})})})},jTqaxFJiI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"X02SnBrqh\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Lending Partners\"})})})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kaopfk\",layoutDependency:layoutDependency,layoutId:\"sDdrvrraG\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":jSaHhbOVq\",webPageId:\"XHRNoPawi\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Financials\"})})})}),className:\"framer-zn8c3r\",\"data-framer-name\":\"Technology\",fonts:[\"CUSTOM;Standerd Regular\"],layoutDependency:layoutDependency,layoutId:\"jdiJF0XrW\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({f51qd8D6t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":jSaHhbOVq\",webPageId:\"XHRNoPawi\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Financials\"})})})})},jTqaxFJiI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":jSaHhbOVq\",webPageId:\"XHRNoPawi\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Financials\"})})})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uu9rty\",layoutDependency:layoutDependency,layoutId:\"eZlvyuHAD\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uNWrJboAJ\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Board of Directors & Committees\"})})})}),className:\"framer-1obkekb\",\"data-framer-name\":\"About Us\",fonts:[\"CUSTOM;Standerd Regular\"],layoutDependency:layoutDependency,layoutId:\"biv1vtJC1\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({f51qd8D6t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uNWrJboAJ\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Board of Directors & Committees\"})})})})},jTqaxFJiI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uNWrJboAJ\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Board of Directors & Committees\"})})})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xuxvdp\",layoutDependency:layoutDependency,layoutId:\"C_X8z4dzi\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":jSaHhbOVq\",webPageId:\"XHRNoPawi\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Policies & Other Announcements\"})})})}),className:\"framer-100vu80\",\"data-framer-name\":\"About Us\",fonts:[\"CUSTOM;Standerd Regular\"],layoutDependency:layoutDependency,layoutId:\"KBhPSy4SG\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({f51qd8D6t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":jSaHhbOVq\",webPageId:\"XHRNoPawi\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Policies & Other Announcements\"})})})})},jTqaxFJiI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":jSaHhbOVq\",webPageId:\"XHRNoPawi\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Policies & Other Announcements\"})})})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ubupa4\",layoutDependency:layoutDependency,layoutId:\"YNAzJqHh_\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Wy5hNiure\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Corporate Governance Philosophy\"})})})}),className:\"framer-n51wna\",\"data-framer-name\":\"Contact\",fonts:[\"CUSTOM;Standerd Regular\"],layoutDependency:layoutDependency,layoutId:\"EEJbga26L\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({f51qd8D6t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Wy5hNiure\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Corporate Governance Philosophy\"})})})})},jTqaxFJiI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Wy5hNiure\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Corporate Governance Philosophy\"})})})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lbseaa\",layoutDependency:layoutDependency,layoutId:\"jxKNmhz7R\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":BrOJOR4kI\",webPageId:\"XHRNoPawi\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Disclosures under Regulation 46 of the LODR\"})})})}),className:\"framer-57u6c6\",\"data-framer-name\":\"Contact\",fonts:[\"CUSTOM;Standerd Regular\"],layoutDependency:layoutDependency,layoutId:\"R2Yx2e9Cx\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({f51qd8D6t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":BrOJOR4kI\",webPageId:\"XHRNoPawi\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Disclosures under Regulation 46 of the LODR\"})})})})},jTqaxFJiI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":BrOJOR4kI\",webPageId:\"XHRNoPawi\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lqwqip\",\"data-styles-preset\":\"Lt4frqDhH\",children:\"Disclosures under Regulation 46 of the LODR\"})})})})}},baseVariant,gestureVariant)})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o2527w\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"yO39SP8PC\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-58q621\",layoutDependency:layoutDependency,layoutId:\"U3wAm4U0v\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Customer Support -\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(255, 255, 255))\"},children:\"grievanceredressal@apollofinvest.com\"})]}),className:\"framer-11c85xm\",\"data-framer-name\":\"Technology\",fonts:[\"CUSTOM;Standerd Regular\"],layoutDependency:layoutDependency,layoutId:\"db5jzRbPm\",style:{\"--extracted-2gxw0f\":\"rgb(255, 255, 255)\",\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.strong,{children:\"Address: \"}),\"301, Plot No. B-27, Commerce Centre, Off New Link Road Near Morya House, Andheri West, Andheri, Mumbai, Mumbai, Maharashtra, India, 400053\"]})}),className:\"framer-sitrt3\",\"data-framer-name\":\"Technology\",fonts:[\"CUSTOM;Standerd Regular\"],layoutDependency:layoutDependency,layoutId:\"JOsk64EpS\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/apollo-finvest-india-ltd/\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-12iwn30 framer-1yt7f8t\",\"data-framer-name\":\"wrapper\",layoutDependency:layoutDependency,layoutId:\"iIt6sfDbJ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-806wrz\",layoutDependency:layoutDependency,layoutId:\"SZfSBVp5i\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6tbree\",\"data-framer-name\":\"logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"EM2f4uh0H\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15 0C15.7956 0 16.5587 0.316071 17.1213 0.87868C17.6839 1.44129 18 2.20435 18 3V15C18 15.7956 17.6839 16.5587 17.1213 17.1213C16.5587 17.6839 15.7956 18 15 18H3C2.20435 18 1.44129 17.6839 0.87868 17.1213C0.316071 16.5587 0 15.7956 0 15V3C0 2.20435 0.316071 1.44129 0.87868 0.87868C1.44129 0.316071 2.20435 0 3 0H15ZM5 7C4.73478 7 4.48043 7.10536 4.29289 7.29289C4.10536 7.48043 4 7.73478 4 8V13C4 13.2652 4.10536 13.5196 4.29289 13.7071C4.48043 13.8946 4.73478 14 5 14C5.26522 14 5.51957 13.8946 5.70711 13.7071C5.89464 13.5196 6 13.2652 6 13V8C6 7.73478 5.89464 7.48043 5.70711 7.29289C5.51957 7.10536 5.26522 7 5 7ZM8 6C7.73478 6 7.48043 6.10536 7.29289 6.29289C7.10536 6.48043 7 6.73478 7 7V13C7 13.2652 7.10536 13.5196 7.29289 13.7071C7.48043 13.8946 7.73478 14 8 14C8.26522 14 8.51957 13.8946 8.70711 13.7071C8.89464 13.5196 9 13.2652 9 13V9.34C9.305 8.996 9.82 8.592 10.393 8.347C10.726 8.205 11.227 8.147 11.575 8.257C11.6904 8.28629 11.7933 8.35226 11.868 8.445C11.92 8.515 12 8.671 12 9V13C12 13.2652 12.1054 13.5196 12.2929 13.7071C12.4804 13.8946 12.7348 14 13 14C13.2652 14 13.5196 13.8946 13.7071 13.7071C13.8946 13.5196 14 13.2652 14 13V9C14 8.33 13.83 7.734 13.476 7.256C13.1503 6.82256 12.6944 6.50472 12.175 6.349C11.273 6.066 10.274 6.223 9.607 6.509C9.39347 6.60084 9.18545 6.70502 8.984 6.821C8.94208 6.59059 8.82062 6.3822 8.6408 6.23216C8.46097 6.08213 8.23419 5.99996 8 6ZM5 4C4.73478 4 4.48043 4.10536 4.29289 4.29289C4.10536 4.48043 4 4.73478 4 5C4 5.26522 4.10536 5.51957 4.29289 5.70711C4.48043 5.89464 4.73478 6 5 6C5.26522 6 5.51957 5.89464 5.70711 5.70711C5.89464 5.51957 6 5.26522 6 5C6 4.73478 5.89464 4.48043 5.70711 4.29289C5.51957 4.10536 5.26522 4 5 4Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N0YW5kZXJkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Standerd Regular\", \"Standerd Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Follow us on Linkedin \"})}),className:\"framer-18t8g7k\",\"data-framer-name\":\"Technology\",fonts:[\"CUSTOM;Standerd Regular\"],layoutDependency:layoutDependency,layoutId:\"uzMcRgWZS\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,width:`max((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1440px) - 80px) * 0.4 - 120px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||783)-60-1327)/2+0+0)+150+0+0+0+437.00000000000006,...addPropertyOverrides({f51qd8D6t:{width:`calc(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1440px) - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1037.5)-60-2376)/2+0+0)+80+0+0+1585.9999999999998+0+443.00000000000006},jTqaxFJiI:{width:`max((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1440px) * 0.6 - 80px) / 2, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||660)-40-1169)/2+0+0)+100+0+0+0+426.6000000000001}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tp792l-container\",layoutDependency:layoutDependency,layoutId:\"ha9xnvQsr-container\",children:/*#__PURE__*/_jsx(ImportantLinksFooter,{height:\"100%\",id:\"ha9xnvQsr\",layoutId:\"ha9xnvQsr\",style:{width:\"100%\"},variant:\"sxkHnlzhs\",weEv0ux9e:20,width:\"100%\",WjPSo6EEt:14,YmB9P_sKD:18,...addPropertyOverrides({f51qd8D6t:{variant:\"T4uN7hr_E\",weEv0ux9e:18,WjPSo6EEt:12},jTqaxFJiI:{weEv0ux9e:18,WjPSo6EEt:12,YmB9P_sKD:16}},baseVariant,gestureVariant)})})})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1icd3o\",layoutDependency:layoutDependency,layoutId:\"rOkDHiv4J\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||783)-60-1327)/2+1118+60)+0+0),pixelHeight:149,pixelWidth:817,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.75)`,src:\"https://framerusercontent.com/images/gtQlCQRib76QNmxx3nx9yngX2k.svg\",srcSet:\"https://framerusercontent.com/images/gtQlCQRib76QNmxx3nx9yngX2k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/gtQlCQRib76QNmxx3nx9yngX2k.svg 817w\"},className:\"framer-dejrf0\",layoutDependency:layoutDependency,layoutId:\"sshIFSEqT\",...addPropertyOverrides({f51qd8D6t:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1037.5)-60-2376)/2+2167+60)+0+0),pixelHeight:149,pixelWidth:817,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/gtQlCQRib76QNmxx3nx9yngX2k.svg\",srcSet:\"https://framerusercontent.com/images/gtQlCQRib76QNmxx3nx9yngX2k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/gtQlCQRib76QNmxx3nx9yngX2k.svg 817w\"}},jTqaxFJiI:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||660)-40-1169)/2+959.9999999999999+60)+0+0),pixelHeight:149,pixelWidth:817,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.8)`,src:\"https://framerusercontent.com/images/gtQlCQRib76QNmxx3nx9yngX2k.svg\",srcSet:\"https://framerusercontent.com/images/gtQlCQRib76QNmxx3nx9yngX2k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/gtQlCQRib76QNmxx3nx9yngX2k.svg 817w\"}}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jcR8B.framer-1yt7f8t, .framer-jcR8B .framer-1yt7f8t { display: block; }\",\".framer-jcR8B.framer-zis0v3 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 60px 0px; position: relative; width: 1200px; }\",\".framer-jcR8B .framer-4a3cy9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 150px 0px 32px 80px; position: relative; width: 100%; }\",\".framer-jcR8B .framer-103kruw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 80%; }\",\".framer-jcR8B .framer-21fq8z, .framer-jcR8B .framer-vm7jh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 25%; }\",\".framer-jcR8B .framer-1gsy45k, .framer-jcR8B .framer-g4mzno { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jcR8B .framer-lqdemi, .framer-jcR8B .framer-h0cedd, .framer-jcR8B .framer-102frgd, .framer-jcR8B .framer-1wbc3fk, .framer-jcR8B .framer-w85nwc, .framer-jcR8B .framer-1lnsd6j, .framer-jcR8B .framer-189stj1, .framer-jcR8B .framer-11c85xm, .framer-jcR8B .framer-sitrt3 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-jcR8B .framer-85zmgc, .framer-jcR8B .framer-kaopfk, .framer-jcR8B .framer-uu9rty, .framer-jcR8B .framer-xuxvdp, .framer-jcR8B .framer-ubupa4, .framer-jcR8B .framer-1lbseaa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jcR8B .framer-1iokexm, .framer-jcR8B .framer-zn8c3r, .framer-jcR8B .framer-18t8g7k { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-jcR8B .framer-1obkekb, .framer-jcR8B .framer-100vu80, .framer-jcR8B .framer-n51wna, .framer-jcR8B .framer-57u6c6 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-jcR8B .framer-1o2527w { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-jcR8B .framer-58q621 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-jcR8B .framer-12iwn30 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-jcR8B .framer-806wrz { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 24px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 24px; }\",\".framer-jcR8B .framer-6tbree { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-jcR8B .framer-tp792l-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-jcR8B .framer-1icd3o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 75%; }\",\".framer-jcR8B .framer-dejrf0 { align-content: center; align-items: center; aspect-ratio: 5.583892617449664 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 161px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jcR8B.framer-zis0v3, .framer-jcR8B .framer-4a3cy9, .framer-jcR8B .framer-103kruw, .framer-jcR8B .framer-21fq8z, .framer-jcR8B .framer-1gsy45k, .framer-jcR8B .framer-vm7jh, .framer-jcR8B .framer-g4mzno, .framer-jcR8B .framer-85zmgc, .framer-jcR8B .framer-kaopfk, .framer-jcR8B .framer-uu9rty, .framer-jcR8B .framer-xuxvdp, .framer-jcR8B .framer-ubupa4, .framer-jcR8B .framer-1lbseaa, .framer-jcR8B .framer-1o2527w, .framer-jcR8B .framer-58q621, .framer-jcR8B .framer-12iwn30, .framer-jcR8B .framer-806wrz, .framer-jcR8B .framer-1icd3o, .framer-jcR8B .framer-dejrf0 { gap: 0px; } .framer-jcR8B.framer-zis0v3 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-jcR8B.framer-zis0v3 > :first-child, .framer-jcR8B .framer-4a3cy9 > :first-child, .framer-jcR8B .framer-21fq8z > :first-child, .framer-jcR8B .framer-1gsy45k > :first-child, .framer-jcR8B .framer-vm7jh > :first-child, .framer-jcR8B .framer-g4mzno > :first-child, .framer-jcR8B .framer-1o2527w > :first-child, .framer-jcR8B .framer-58q621 > :first-child, .framer-jcR8B .framer-1icd3o > :first-child { margin-top: 0px; } .framer-jcR8B.framer-zis0v3 > :last-child, .framer-jcR8B .framer-4a3cy9 > :last-child, .framer-jcR8B .framer-21fq8z > :last-child, .framer-jcR8B .framer-1gsy45k > :last-child, .framer-jcR8B .framer-vm7jh > :last-child, .framer-jcR8B .framer-g4mzno > :last-child, .framer-jcR8B .framer-1o2527w > :last-child, .framer-jcR8B .framer-58q621 > :last-child, .framer-jcR8B .framer-1icd3o > :last-child { margin-bottom: 0px; } .framer-jcR8B .framer-4a3cy9 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-jcR8B .framer-103kruw > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-jcR8B .framer-103kruw > :first-child, .framer-jcR8B .framer-85zmgc > :first-child, .framer-jcR8B .framer-kaopfk > :first-child, .framer-jcR8B .framer-uu9rty > :first-child, .framer-jcR8B .framer-xuxvdp > :first-child, .framer-jcR8B .framer-ubupa4 > :first-child, .framer-jcR8B .framer-1lbseaa > :first-child, .framer-jcR8B .framer-12iwn30 > :first-child, .framer-jcR8B .framer-806wrz > :first-child, .framer-jcR8B .framer-dejrf0 > :first-child { margin-left: 0px; } .framer-jcR8B .framer-103kruw > :last-child, .framer-jcR8B .framer-85zmgc > :last-child, .framer-jcR8B .framer-kaopfk > :last-child, .framer-jcR8B .framer-uu9rty > :last-child, .framer-jcR8B .framer-xuxvdp > :last-child, .framer-jcR8B .framer-ubupa4 > :last-child, .framer-jcR8B .framer-1lbseaa > :last-child, .framer-jcR8B .framer-12iwn30 > :last-child, .framer-jcR8B .framer-806wrz > :last-child, .framer-jcR8B .framer-dejrf0 > :last-child { margin-right: 0px; } .framer-jcR8B .framer-21fq8z > *, .framer-jcR8B .framer-vm7jh > *, .framer-jcR8B .framer-1o2527w > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-jcR8B .framer-1gsy45k > *, .framer-jcR8B .framer-g4mzno > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-jcR8B .framer-85zmgc > *, .framer-jcR8B .framer-kaopfk > *, .framer-jcR8B .framer-uu9rty > *, .framer-jcR8B .framer-xuxvdp > *, .framer-jcR8B .framer-ubupa4 > *, .framer-jcR8B .framer-1lbseaa > *, .framer-jcR8B .framer-806wrz > *, .framer-jcR8B .framer-dejrf0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-jcR8B .framer-58q621 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-jcR8B .framer-12iwn30 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-jcR8B .framer-1icd3o > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-jcR8B.framer-v-7u1e8x.framer-zis0v3 { padding: 0px 0px 40px 0px; width: 810px; }\",\".framer-jcR8B.framer-v-7u1e8x .framer-4a3cy9 { padding: 100px 0px 32px 0px; }\",\".framer-jcR8B.framer-v-7u1e8x .framer-103kruw { gap: 40px; }\",\".framer-jcR8B.framer-v-7u1e8x .framer-1gsy45k, .framer-jcR8B.framer-v-7u1e8x .framer-g4mzno { gap: 12px; }\",\".framer-jcR8B.framer-v-7u1e8x .framer-vm7jh { flex: 1 0 0px; width: 1px; }\",\".framer-jcR8B.framer-v-7u1e8x .framer-58q621 { gap: 16px; }\",\".framer-jcR8B.framer-v-7u1e8x .framer-806wrz { height: var(--framer-aspect-ratio-supported, 20px); width: 20px; }\",\".framer-jcR8B.framer-v-7u1e8x .framer-1icd3o { width: 80%; }\",\".framer-jcR8B.framer-v-7u1e8x .framer-dejrf0 { height: var(--framer-aspect-ratio-supported, 116px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jcR8B.framer-v-7u1e8x .framer-103kruw, .framer-jcR8B.framer-v-7u1e8x .framer-1gsy45k, .framer-jcR8B.framer-v-7u1e8x .framer-g4mzno, .framer-jcR8B.framer-v-7u1e8x .framer-58q621 { gap: 0px; } .framer-jcR8B.framer-v-7u1e8x .framer-103kruw > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-jcR8B.framer-v-7u1e8x .framer-103kruw > :first-child { margin-left: 0px; } .framer-jcR8B.framer-v-7u1e8x .framer-103kruw > :last-child { margin-right: 0px; } .framer-jcR8B.framer-v-7u1e8x .framer-1gsy45k > *, .framer-jcR8B.framer-v-7u1e8x .framer-g4mzno > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-jcR8B.framer-v-7u1e8x .framer-1gsy45k > :first-child, .framer-jcR8B.framer-v-7u1e8x .framer-g4mzno > :first-child, .framer-jcR8B.framer-v-7u1e8x .framer-58q621 > :first-child { margin-top: 0px; } .framer-jcR8B.framer-v-7u1e8x .framer-1gsy45k > :last-child, .framer-jcR8B.framer-v-7u1e8x .framer-g4mzno > :last-child, .framer-jcR8B.framer-v-7u1e8x .framer-58q621 > :last-child { margin-bottom: 0px; } .framer-jcR8B.framer-v-7u1e8x .framer-58q621 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-jcR8B.framer-v-y380tl.framer-zis0v3 { width: 390px; }\",\".framer-jcR8B.framer-v-y380tl .framer-4a3cy9 { align-content: flex-start; align-items: flex-start; gap: 64px; padding: 80px 20px 32px 20px; }\",\".framer-jcR8B.framer-v-y380tl .framer-103kruw { flex-direction: column; gap: 36px; width: 100%; }\",\".framer-jcR8B.framer-v-y380tl .framer-21fq8z { gap: 8px; width: 100%; }\",\".framer-jcR8B.framer-v-y380tl .framer-1gsy45k, .framer-jcR8B.framer-v-y380tl .framer-g4mzno { gap: 10px; }\",\".framer-jcR8B.framer-v-y380tl .framer-vm7jh { gap: 8px; width: 85%; }\",\".framer-jcR8B.framer-v-y380tl .framer-1iokexm, .framer-jcR8B.framer-v-y380tl .framer-zn8c3r { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-jcR8B.framer-v-y380tl .framer-1o2527w { flex: none; gap: 26px; width: 100%; }\",\".framer-jcR8B.framer-v-y380tl .framer-58q621 { gap: 16px; width: 85%; }\",\".framer-jcR8B.framer-v-y380tl .framer-1icd3o { padding: 0px 20px 0px 20px; width: 100%; }\",\".framer-jcR8B.framer-v-y380tl .framer-dejrf0 { height: var(--framer-aspect-ratio-supported, 63px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jcR8B.framer-v-y380tl .framer-4a3cy9, .framer-jcR8B.framer-v-y380tl .framer-103kruw, .framer-jcR8B.framer-v-y380tl .framer-21fq8z, .framer-jcR8B.framer-v-y380tl .framer-1gsy45k, .framer-jcR8B.framer-v-y380tl .framer-vm7jh, .framer-jcR8B.framer-v-y380tl .framer-g4mzno, .framer-jcR8B.framer-v-y380tl .framer-1o2527w, .framer-jcR8B.framer-v-y380tl .framer-58q621 { gap: 0px; } .framer-jcR8B.framer-v-y380tl .framer-4a3cy9 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-jcR8B.framer-v-y380tl .framer-4a3cy9 > :first-child, .framer-jcR8B.framer-v-y380tl .framer-103kruw > :first-child, .framer-jcR8B.framer-v-y380tl .framer-21fq8z > :first-child, .framer-jcR8B.framer-v-y380tl .framer-1gsy45k > :first-child, .framer-jcR8B.framer-v-y380tl .framer-vm7jh > :first-child, .framer-jcR8B.framer-v-y380tl .framer-g4mzno > :first-child, .framer-jcR8B.framer-v-y380tl .framer-1o2527w > :first-child, .framer-jcR8B.framer-v-y380tl .framer-58q621 > :first-child { margin-top: 0px; } .framer-jcR8B.framer-v-y380tl .framer-4a3cy9 > :last-child, .framer-jcR8B.framer-v-y380tl .framer-103kruw > :last-child, .framer-jcR8B.framer-v-y380tl .framer-21fq8z > :last-child, .framer-jcR8B.framer-v-y380tl .framer-1gsy45k > :last-child, .framer-jcR8B.framer-v-y380tl .framer-vm7jh > :last-child, .framer-jcR8B.framer-v-y380tl .framer-g4mzno > :last-child, .framer-jcR8B.framer-v-y380tl .framer-1o2527w > :last-child, .framer-jcR8B.framer-v-y380tl .framer-58q621 > :last-child { margin-bottom: 0px; } .framer-jcR8B.framer-v-y380tl .framer-103kruw > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-jcR8B.framer-v-y380tl .framer-21fq8z > *, .framer-jcR8B.framer-v-y380tl .framer-vm7jh > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-jcR8B.framer-v-y380tl .framer-1gsy45k > *, .framer-jcR8B.framer-v-y380tl .framer-g4mzno > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jcR8B.framer-v-y380tl .framer-1o2527w > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-jcR8B.framer-v-y380tl .framer-58q621 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 783\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jTqaxFJiI\":{\"layout\":[\"fixed\",\"auto\"]},\"f51qd8D6t\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSUKVFVPOh=withCSS(Component,css,\"framer-jcR8B\");export default FramerSUKVFVPOh;FramerSUKVFVPOh.displayName=\"Footer\";FramerSUKVFVPOh.defaultProps={height:783,width:1200};addPropertyControls(FramerSUKVFVPOh,{variant:{options:[\"RsawMhJzc\",\"jTqaxFJiI\",\"f51qd8D6t\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerSUKVFVPOh,[{explicitInter:true,fonts:[{family:\"Standerd Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/Dt7a9jHzRCzqBWQ2vXx6nvOFNc.woff2\"}]},...ImportantLinksFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSUKVFVPOh\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jTqaxFJiI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f51qd8D6t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"783\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SUKVFVPOh.map"],
  "mappings": "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",
  "names": ["containerStyles", "emptyStateStyle", "containerStyles", "NullState", "Y", "_", "ref", "p", "r", "s", "o", "n", "t", "e", "i", "l", "defaultEvents", "ControlType", "findByArray", "arr", "search", "a", "useIconSelection", "iconKeys", "selectByList", "iconSearch", "iconSelection", "lowercaseIconKeyPairs", "iconSearchResult", "se", "iconSearchTerm", "_iconSearchTerm", "findByArray", "iconKeys", "moduleBaseUrl", "uppercaseIconKeys", "name", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "s", "npm_react_18_2_exports", "importModule", "active", "module", "e", "ue", "emptyState", "RenderTarget", "p", "NullState", "addPropertyControls", "ControlType", "defaultEvents", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "FeatherFonts", "getFonts", "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", "fontSize", "gap", "height", "id", "linkSize", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "weEv0ux9e", "YmB9P_sKD", "WjPSo6EEt", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap16cc0ve", "args", "onMouseEnter1osrgji", "onTap1tvyo3m", "onMouseLeave6p640n", "onTap1jlpeth", "onTap1s6n015", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "Link", "css", "FramerYrHmLn2k8", "withCSS", "YrHmLn2k8_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ImportantLinksFooterFonts", "getFonts", "YrHmLn2k8_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", "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", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Link", "SVG", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "css", "FramerSUKVFVPOh", "withCSS", "SUKVFVPOh_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
