{
  "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/jiDTN3xzMXqDBvQYNh6m/xBo8zJl1G0069fCMUBLj/uIVWSsgAz.js", "ssg:https://framerusercontent.com/modules/5dTvrlcW0BUcehLTW3uA/LYfMxH4YTynMwUPOekm1/TflO6IJOQ.js", "ssg:https://framerusercontent.com/modules/sGI5QB1SitL0Igt0LqAu/yZTrHFRDclEqzKeqatt4/A18CBMI3a.js", "ssg:https://framerusercontent.com/modules/mEF186TMRdzVxLS6CmuD/6p2Wtpytge25VMBfys1A/kaGK67hRO.js", "ssg:https://framerusercontent.com/modules/nR73ZMy7J96sIJ86tOvO/shP47C0XYwS5Y7YZRCkr/fgqvcxZEy.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 (a1e8cb2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Link,RichText,useActiveVariantCallback,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\";const FeatherFonts=getFonts(Feather);const enabledGestures={aiMM2_7v4:{hover:true},dVSrtjX5g:{hover:true},E03Dikpyj:{hover:true},ePWrt3viK:{hover:true},O3VFZRe3a:{hover:true}};const cycleOrder=[\"O3VFZRe3a\",\"ePWrt3viK\",\"E03Dikpyj\",\"aiMM2_7v4\",\"dVSrtjX5g\"];const variantClassNames={aiMM2_7v4:\"framer-v-26czut\",dVSrtjX5g:\"framer-v-4ywfoh\",E03Dikpyj:\"framer-v-1ah6ezp\",ePWrt3viK:\"framer-v-1uss1g0\",O3VFZRe3a:\"framer-v-899e2i\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={aiMM2_7v4:{duration:0,type:\"tween\"},default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},E03Dikpyj:{duration:0,type:\"tween\"}};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 humanReadableVariantMap={\"Button Fill SM\":\"ePWrt3viK\",\"Button Fill\":\"O3VFZRe3a\",\"Button Link\":\"dVSrtjX5g\",\"Button Outline \":\"E03Dikpyj\",\"Button Outline SM\":\"aiMM2_7v4\"};const getProps=({height,id,link,postAJob,tap,width,...props})=>{var ref,_variant,ref1;return{...props,MZ2eVjz3h:(ref=postAJob!==null&&postAJob!==void 0?postAJob:props.MZ2eVjz3h)!==null&&ref!==void 0?ref:\"Apply For This Job\\n\",oO5xubxvV:tap!==null&&tap!==void 0?tap:props.oO5xubxvV,variant:(ref1=(_variant=humanReadableVariantMap[props.variant])!==null&&_variant!==void 0?_variant:props.variant)!==null&&ref1!==void 0?ref1:\"O3VFZRe3a\",YvZE4tquw:link!==null&&link!==void 0?link:props.YvZE4tquw};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,MZ2eVjz3h,YvZE4tquw,oO5xubxvV,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"O3VFZRe3a\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1lerku8=activeVariantCallback(async(...args)=>{if(oO5xubxvV){const res=await oO5xubxvV(...args);if(res===false)return false;}});const isDisplayed=()=>{if(gestureVariant===\"dVSrtjX5g-hover\")return true;if(baseVariant===\"dVSrtjX5g\")return true;return false;};const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-KZUm9\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsx(Link,{href:YvZE4tquw,openInNewTab:false,children:/*#__PURE__*/ _jsxs(motion.a,{...restProps,className:`${cx(\"framer-899e2i\",className)} framer-reh2fx`,\"data-framer-name\":\"Button Fill\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"O3VFZRe3a\",onTap:onTap1lerku8,ref:ref,style:{backgroundColor:\"var(--token-ff9b7dab-71d7-42af-9fd7-1968abd48bc3, rgb(189, 208, 147))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"none\",...style},variants:{\"aiMM2_7v4-hover\":{backgroundColor:\"var(--token-ff9b7dab-71d7-42af-9fd7-1968abd48bc3, rgb(0, 0, 0))\"},\"dVSrtjX5g-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},\"E03Dikpyj-hover\":{backgroundColor:\"var(--token-ff9b7dab-71d7-42af-9fd7-1968abd48bc3, rgb(0, 0, 0))\"},\"ePWrt3viK-hover\":{boxShadow:\"0px 0px 5px 14px rgba(0, 0, 0, 0.05)\"},\"O3VFZRe3a-hover\":{boxShadow:\"0px 1px 8px 0px rgba(0, 0, 0, 0.3)\"},aiMM2_7v4:{backgroundColor:\"var(--token-b509272c-aa41-4afc-a4c4-5d5f01608a83, rgb(255, 255, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},dVSrtjX5g:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},E03Dikpyj:{backgroundColor:\"var(--token-b509272c-aa41-4afc-a4c4-5d5f01608a83, rgb(255, 255, 255))\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32}},...addPropertyOverrides({\"aiMM2_7v4-hover\":{\"data-framer-name\":undefined},\"dVSrtjX5g-hover\":{\"data-framer-name\":undefined},\"E03Dikpyj-hover\":{\"data-framer-name\":undefined},\"ePWrt3viK-hover\":{\"data-framer-name\":undefined},\"O3VFZRe3a-hover\":{\"data-framer-name\":undefined},aiMM2_7v4:{\"data-framer-name\":\"Button Outline SM\"},dVSrtjX5g:{\"data-framer-name\":\"Button Link\"},E03Dikpyj:{\"data-framer-name\":\"Button Outline \"},ePWrt3viK:{\"data-framer-name\":\"Button Fill SM\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b509272c-aa41-4afc-a4c4-5d5f01608a83, rgb(255, 255, 255)))\"},children:\"Apply For This Job \"})}),className:\"framer-95kbnp\",\"data-framer-name\":\"Button\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"LiF6sF3ZC\",style:{\"--extracted-r6o4lv\":\"var(--token-b509272c-aa41-4afc-a4c4-5d5f01608a83, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:MZ2eVjz3h,variants:{\"aiMM2_7v4-hover\":{\"--extracted-r6o4lv\":\"var(--token-b509272c-aa41-4afc-a4c4-5d5f01608a83, rgb(255, 255, 255))\"},\"E03Dikpyj-hover\":{\"--extracted-r6o4lv\":\"var(--token-b509272c-aa41-4afc-a4c4-5d5f01608a83, rgb(255, 255, 255))\"},aiMM2_7v4:{\"--extracted-r6o4lv\":\"var(--token-b75b9b1b-4f83-448a-b390-340de8d4bea4, rgb(38, 42, 29))\"},dVSrtjX5g:{\"--extracted-r6o4lv\":\"var(--token-e699cc6b-990f-48be-b355-ebda3beb031a, rgb(102, 102, 102))\"},E03Dikpyj:{\"--extracted-r6o4lv\":\"var(--token-b75b9b1b-4f83-448a-b390-340de8d4bea4, rgb(38, 42, 29))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"aiMM2_7v4-hover\":{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b509272c-aa41-4afc-a4c4-5d5f01608a83, rgb(255, 255, 255)))\"},children:\"Apply For This Job \"})}),fonts:[\"GF;Inter-500\"]},\"E03Dikpyj-hover\":{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b509272c-aa41-4afc-a4c4-5d5f01608a83, rgb(255, 255, 255)))\"},children:\"Apply For This Job \"})})},aiMM2_7v4:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b75b9b1b-4f83-448a-b390-340de8d4bea4, rgb(38, 42, 29)))\"},children:\"Apply For This Job \"})})},dVSrtjX5g:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e699cc6b-990f-48be-b355-ebda3beb031a, rgb(102, 102, 102)))\"},children:\"Apply For This Job \"})})},E03Dikpyj:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b75b9b1b-4f83-448a-b390-340de8d4bea4, rgb(38, 42, 29)))\"},children:\"Apply For This Job \"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1c6gxrg-container\",layoutDependency:layoutDependency,layoutId:\"z5iwT_3MM-container\",children:/*#__PURE__*/ _jsx(Feather,{color:'var(--token-e699cc6b-990f-48be-b355-ebda3beb031a, rgb(102, 102, 102)) /* {\"name\":\"Body color\"} */',height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-right\",id:\"z5iwT_3MM\",layoutId:\"z5iwT_3MM\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})}),isDisplayed()&&/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1v6sqcc\",layoutDependency:layoutDependency,layoutId:\"ZY94qgius\",style:{backgroundColor:\"var(--token-b75b9b1b-4f83-448a-b390-340de8d4bea4, rgb(19, 21, 24))\"},variants:{\"dVSrtjX5g-hover\":{backgroundColor:\"var(--token-e699cc6b-990f-48be-b355-ebda3beb031a, rgb(102, 102, 102))\"}}})]})})})})});});const css=['.framer-KZUm9 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KZUm9 .framer-reh2fx { display: block; }\",\".framer-KZUm9 .framer-899e2i { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 14px 20px 14px 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-KZUm9 .framer-95kbnp { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KZUm9 .framer-1c6gxrg-container { flex: none; height: 16px; position: relative; width: 16px; z-index: 1; }\",\".framer-KZUm9 .framer-1v6sqcc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 2px; justify-content: center; left: 0px; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: calc(96.29629629629632% - 2px / 2); width: 0%; z-index: 1; }\",\".framer-KZUm9 .framer-v-4ywfoh .framer-899e2i, .framer-KZUm9 .framer-v-899e2i .framer-899e2i, .framer-KZUm9 .framer-v-1uss1g0 .framer-899e2i, .framer-KZUm9 .framer-v-1ah6ezp .framer-899e2i, .framer-KZUm9 .framer-v-26czut .framer-899e2i { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KZUm9 .framer-899e2i, .framer-KZUm9 .framer-1v6sqcc { gap: 0px; } .framer-KZUm9 .framer-899e2i > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-KZUm9 .framer-899e2i > :first-child { margin-left: 0px; } .framer-KZUm9 .framer-899e2i > :last-child { margin-right: 0px; } .framer-KZUm9 .framer-1v6sqcc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-KZUm9 .framer-1v6sqcc > :first-child { margin-top: 0px; } .framer-KZUm9 .framer-1v6sqcc > :last-child { margin-bottom: 0px; } }\",\".framer-KZUm9.framer-v-1uss1g0 .framer-899e2i { padding: 12px 16px 12px 16px; }\",\".framer-KZUm9.framer-v-1ah6ezp .framer-899e2i { padding: 12px 20px 12px 20px; }\",\".framer-KZUm9.framer-v-26czut .framer-899e2i { gap: 0px; padding: 12px 16px 12px 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KZUm9.framer-v-26czut .framer-899e2i { gap: 0px; } .framer-KZUm9.framer-v-26czut .framer-899e2i > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-KZUm9.framer-v-26czut .framer-899e2i > :first-child { margin-left: 0px; } .framer-KZUm9.framer-v-26czut .framer-899e2i > :last-child { margin-right: 0px; } }\",\".framer-KZUm9.framer-v-4ywfoh .framer-899e2i { padding: 0px 0px 3px 0px; }\",\".framer-KZUm9.framer-v-4ywfoh.hover .framer-1v6sqcc { gap: 0px; top: calc(92.59259259259261% - 2px / 2); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KZUm9.framer-v-4ywfoh.hover .framer-1v6sqcc { gap: 0px; } .framer-KZUm9.framer-v-4ywfoh.hover .framer-1v6sqcc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-KZUm9.framer-v-4ywfoh.hover .framer-1v6sqcc > :first-child { margin-top: 0px; } .framer-KZUm9.framer-v-4ywfoh.hover .framer-1v6sqcc > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 49\n * @framerIntrinsicWidth 166\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"ePWrt3viK\":{\"layout\":[\"auto\",\"auto\"]},\"E03Dikpyj\":{\"layout\":[\"auto\",\"auto\"]},\"aiMM2_7v4\":{\"layout\":[\"auto\",\"auto\"]},\"dVSrtjX5g\":{\"layout\":[\"auto\",\"auto\"]},\"TtnDvMcWw\":{\"layout\":[\"auto\",\"auto\"]},\"w4jxwd8gL\":{\"layout\":[\"auto\",\"auto\"]},\"hYqoJdtkm\":{\"layout\":[\"auto\",\"auto\"]},\"WKq2iLCji\":{\"layout\":[\"auto\",\"auto\"]},\"fFByLJLs0\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"MZ2eVjz3h\":\"postAJob\",\"YvZE4tquw\":\"link\",\"oO5xubxvV\":\"tap\"}\n * @framerImmutableVariables false\n */ const FrameruIVWSsgAz=withCSS(Component,css,\"framer-KZUm9\");export default FrameruIVWSsgAz;FrameruIVWSsgAz.displayName=\"Button\";FrameruIVWSsgAz.defaultProps={height:49,width:166};addPropertyControls(FrameruIVWSsgAz,{variant:{options:[\"O3VFZRe3a\",\"ePWrt3viK\",\"E03Dikpyj\",\"aiMM2_7v4\",\"dVSrtjX5g\"],optionTitles:[\"Button Fill\",\"Button Fill SM\",\"Button Outline \",\"Button Outline SM\",\"Button Link\"],title:\"Variant\",type:ControlType.Enum},MZ2eVjz3h:{defaultValue:\"Apply For This Job\\n\",displayTextArea:true,placeholder:\"\",title:\"Post a Job\",type:ControlType.String},YvZE4tquw:{title:\"Link \",type:ControlType.Link},oO5xubxvV:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FrameruIVWSsgAz,[{family:\"Inter\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/uIVWSsgAz:default\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\",weight:\"600\"},{family:\"Inter\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/uIVWSsgAz:default\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf\",weight:\"500\"},...FeatherFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruIVWSsgAz\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"MZ2eVjz3h\\\":\\\"postAJob\\\",\\\"YvZE4tquw\\\":\\\"link\\\",\\\"oO5xubxvV\\\":\\\"tap\\\"}\",\"framerIntrinsicHeight\":\"49\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ePWrt3viK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"E03Dikpyj\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"aiMM2_7v4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dVSrtjX5g\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"TtnDvMcWw\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"w4jxwd8gL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hYqoJdtkm\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"WKq2iLCji\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fFByLJLs0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"166\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uIVWSsgAz.map", "// Generated by Framer (a2c2d6f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"SK5kefoV0\",\"e6wx4vjQN\"];const variantClassNames={e6wx4vjQN:\"framer-v-nbn5zs\",SK5kefoV0:\"framer-v-1x7lk7p\"};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 humanReadableVariantMap={Burger:\"SK5kefoV0\",X:\"e6wx4vjQN\"};const transitions={default:{damping:30,delay:0,duration:5,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"SK5kefoV0\",tap:TBgHLr7MW,color:iWF8EWIN1=\"rgb(136, 136, 136)\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"SK5kefoV0\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapcmpkqa=activeVariantCallback(async(...args)=>{if(TBgHLr7MW){const res=await TBgHLr7MW(...args);if(res===false)return false;}setVariant(\"e6wx4vjQN\");});const onTapehverb=activeVariantCallback(async(...args)=>{if(TBgHLr7MW){const res=await TBgHLr7MW(...args);if(res===false)return false;}setVariant(\"SK5kefoV0\");});const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-yJiNG\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-1x7lk7p\",className),\"data-framer-name\":\"Burger\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"SK5kefoV0\",onTap:onTapcmpkqa,ref:ref,style:{...style},transition:transition,...addPropertyOverrides({e6wx4vjQN:{\"data-framer-name\":\"X\",onTap:onTapehverb}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-3x925t\",layoutDependency:layoutDependency,layoutId:\"oHAdimI4D\",transition:transition,children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1q7cz5t\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"b4Q8YOAZV\",style:{backgroundColor:iWF8EWIN1,rotate:0},transition:transition,variants:{e6wx4vjQN:{rotate:-45}}}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-fvpxjx\",\"data-framer-name\":\"Mid\",layoutDependency:layoutDependency,layoutId:\"M9hx3LUa2\",style:{backgroundColor:iWF8EWIN1,opacity:1},transition:transition,variants:{e6wx4vjQN:{opacity:0}}}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-rf0n2k\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"R8OWg8lW8\",style:{backgroundColor:iWF8EWIN1,rotate:0},transition:transition,variants:{e6wx4vjQN:{rotate:45}}})]})})})});});const css=['.framer-yJiNG [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yJiNG .framer-1l3btrg { display: block; }\",\".framer-yJiNG .framer-1x7lk7p { cursor: pointer; height: 32px; overflow: hidden; position: relative; width: 32px; }\",\".framer-yJiNG .framer-3x925t { flex: none; height: 18px; left: calc(50.00000000000002% - 24px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 18px / 2); width: 24px; }\",\".framer-yJiNG .framer-1q7cz5t { bottom: 0px; flex: none; height: 2px; left: 0px; overflow: hidden; position: absolute; right: 0px; }\",\".framer-yJiNG .framer-fvpxjx { flex: none; height: 2px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: calc(50.00000000000002% - 2px / 2); }\",\".framer-yJiNG .framer-rf0n2k { flex: none; height: 2px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-yJiNG.framer-v-nbn5zs .framer-1q7cz5t { bottom: unset; top: calc(50.00000000000002% - 2px / 2); }\",\".framer-yJiNG.framer-v-nbn5zs .framer-fvpxjx { left: unset; width: 2px; }\",\".framer-yJiNG.framer-v-nbn5zs .framer-rf0n2k { left: unset; right: -1px; top: calc(50.00000000000002% - 2px / 2); width: 26px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 32\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"e6wx4vjQN\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"TBgHLr7MW\":\"tap\",\"iWF8EWIN1\":\"color\"}\n */ const FramerTflO6IJOQ=withCSS(Component,css,\"framer-yJiNG\");export default FramerTflO6IJOQ;FramerTflO6IJOQ.displayName=\"Menu Icon\";FramerTflO6IJOQ.defaultProps={height:32,width:32};addPropertyControls(FramerTflO6IJOQ,{variant:{options:[\"SK5kefoV0\",\"e6wx4vjQN\"],optionTitles:[\"Burger\",\"X\"],title:\"Variant\",type:ControlType.Enum},TBgHLr7MW:{title:\"Tap\",type:ControlType.EventHandler},iWF8EWIN1:{defaultValue:\"rgb(136, 136, 136)\",title:\"Color\",type:ControlType.Color}});addFonts(FramerTflO6IJOQ,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTflO6IJOQ\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"32\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"e6wx4vjQN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"32\",\"framerVariables\":\"{\\\"TBgHLr7MW\\\":\\\"tap\\\",\\\"iWF8EWIN1\\\":\\\"color\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TflO6IJOQ.map", "// Generated by Framer (69c895f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Link,resolveLink,RichText,SVG,useActiveVariantCallback,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import MenuIcon from\"https://framerusercontent.com/modules/5dTvrlcW0BUcehLTW3uA/LYfMxH4YTynMwUPOekm1/TflO6IJOQ.js\";import Button from\"https://framerusercontent.com/modules/jiDTN3xzMXqDBvQYNh6m/xBo8zJl1G0069fCMUBLj/uIVWSsgAz.js\";const MenuIconFonts=getFonts(MenuIcon);const ButtonFonts=getFonts(Button);const cycleOrder=[\"zQJyXTJbe\",\"PxSxoCny9\",\"j5NQdGI9H\",\"BySA85S21\",\"GDWMc1Gt3\"];const variantClassNames={BySA85S21:\"framer-v-x5gt92\",GDWMc1Gt3:\"framer-v-bnuo7u\",j5NQdGI9H:\"framer-v-nva4oz\",PxSxoCny9:\"framer-v-1pakwig\",zQJyXTJbe:\"framer-v-1ux2brg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={BySA85S21:{delay:0,duration:.3,ease:[0,1.01,.5,1],type:\"tween\"},default:{damping:40,delay:0,mass:1,stiffness:120,type:\"spring\"},GDWMc1Gt3:{damping:60,delay:0,mass:1,stiffness:200,type:\"spring\"},PxSxoCny9:{delay:0,duration:.3,ease:[0,1.01,.5,1],type:\"tween\"}};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 humanReadableVariantMap={\"Dropdown Open\":\"j5NQdGI9H\",\"Phone Open - Dropdown Open\":\"BySA85S21\",Default:\"zQJyXTJbe\",Phone:\"PxSxoCny9\",Tablet:\"GDWMc1Gt3\"};const getProps=({height,id,width,...props})=>{var _variant,ref;return{...props,variant:(ref=(_variant=humanReadableVariantMap[props.variant])!==null&&_variant!==void 0?_variant:props.variant)!==null&&ref!==void 0?ref:\"zQJyXTJbe\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"zQJyXTJbe\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap4vd7em=activeVariantCallback(async(...args)=>{setVariant(\"BySA85S21\");});const onTapi5asr4=activeVariantCallback(async(...args)=>{setVariant(\"PxSxoCny9\");});const isDisplayed=()=>{if([\"PxSxoCny9\",\"BySA85S21\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"BySA85S21\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"PxSxoCny9\")return true;return false;};const isDisplayed3=()=>{if([\"PxSxoCny9\",\"BySA85S21\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"PxSxoCny9\")return false;return true;};const router=useRouter();const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-DmFpt\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-1ux2brg\",className),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"zQJyXTJbe\",ref:ref,style:{backdropFilter:\"blur(0px)\",WebkitBackdropFilter:\"blur(0px)\",...style},...addPropertyOverrides({BySA85S21:{\"data-framer-name\":\"Phone Open - Dropdown Open\"},GDWMc1Gt3:{\"data-framer-name\":\"Tablet\"},j5NQdGI9H:{\"data-framer-name\":\"Dropdown Open\"},PxSxoCny9:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-1uvi7fd\",layoutDependency:layoutDependency,layoutId:\"yglN4dkro\",style:{backgroundColor:\"var(--token-b509272c-aa41-4afc-a4c4-5d5f01608a83, rgb(255, 255, 255))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 0.3010936508871964px 0.3010936508871964px -1.25px rgba(0, 0, 0, 0.17997), 0px 1.1442666516217286px 1.1442666516217286px -2.5px rgba(0, 0, 0, 0.15889), 0px 5px 5px -3.75px rgba(0, 0, 0, 0.0625)\"},children:[/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-rwmbmt\",\"data-framer-name\":\"Brand Logo Block\",layoutDependency:layoutDependency,layoutId:\"z6Q2G4SfD\",children:[/*#__PURE__*/ _jsx(Link,{href:{webPageId:\"MQcEY9Zve\"},openInNewTab:false,children:/*#__PURE__*/ _jsxs(motion.a,{className:\"framer-da5a80 framer-17ht4cq\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"Cyq3Mgcxq\",children:[isDisplayed()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-xxb51l\",\"data-framer-name\":\"Group_2TTD_V_logo_1_\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"E6TaiNjLi\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 157 21\"><path d=\"M 1.674 8.292 L 1.674 3.944 L 5.641 3.944 L 5.641 8.292 L 8.064 8.292 L 8.064 11.37 L 5.641 11.37 L 5.641 15.08 C 5.641 16.158 5.939 16.697 6.537 16.697 C 6.687 16.697 6.844 16.667 7.007 16.607 C 7.173 16.545 7.301 16.483 7.389 16.423 L 7.526 16.333 L 8.51 19.587 C 7.658 20.074 6.687 20.318 5.597 20.318 C 4.849 20.318 4.206 20.184 3.668 19.917 C 3.131 19.651 2.724 19.295 2.446 18.848 C 2.17 18.399 1.972 17.928 1.851 17.436 C 1.733 16.944 1.674 16.415 1.674 15.852 L 1.674 11.37 L 0.015 11.37 L 0.015 8.292 L 1.674 8.292 Z M 8.737 19.975 L 8.737 0.393 L 12.703 0.393 L 12.703 9.525 L 12.747 9.525 C 13.778 8.478 14.877 7.953 16.043 7.953 C 16.611 7.953 17.174 8.03 17.735 8.182 C 18.294 8.332 18.832 8.567 19.346 8.888 C 19.863 9.206 20.283 9.658 20.604 10.243 C 20.926 10.826 21.087 11.504 21.087 12.28 L 21.087 19.975 L 17.12 19.975 L 17.12 13.37 C 17.12 12.764 16.928 12.233 16.545 11.778 C 16.164 11.324 15.669 11.096 15.058 11.096 C 14.46 11.096 13.918 11.332 13.431 11.802 C 12.945 12.271 12.703 12.793 12.703 13.37 L 12.703 19.975 Z M 34.067 14.692 L 25.728 14.692 C 25.728 15.512 25.989 16.119 26.512 16.513 C 27.034 16.908 27.602 17.105 28.216 17.105 C 28.859 17.105 29.366 17.018 29.739 16.844 C 30.114 16.67 30.54 16.324 31.017 15.807 L 33.887 17.264 C 32.691 19.3 30.704 20.317 27.923 20.317 C 26.188 20.317 24.701 19.715 23.462 18.509 C 22.221 17.301 21.601 15.847 21.601 14.145 C 21.601 12.445 22.221 10.988 23.462 9.774 C 24.701 8.56 26.188 7.953 27.923 7.953 C 29.747 7.953 31.23 8.488 32.371 9.557 C 33.515 10.627 34.087 12.156 34.087 14.145 C 34.087 14.418 34.08 14.601 34.067 14.692 Z M 25.841 12.459 L 30.209 12.459 C 30.121 11.853 29.885 11.386 29.502 11.059 C 29.121 10.733 28.632 10.569 28.035 10.569 C 27.378 10.569 26.856 10.745 26.468 11.096 C 26.079 11.445 25.87 11.899 25.841 12.459 Z\" fill=\"rgb(0,0,0)\"></path><g transform=\"translate(36.623 3.944)\" id=\"ss2253870504_2\"><path d=\"M 1.66 4.347 L 1.66 0 L 5.626 0 L 5.626 4.347 L 8.05 4.347 L 8.05 7.425 L 5.626 7.425 L 5.626 11.136 C 5.626 12.213 5.925 12.752 6.523 12.752 C 6.672 12.752 6.829 12.723 6.993 12.663 C 7.159 12.6 7.286 12.539 7.375 12.479 L 7.511 12.389 L 8.496 15.642 C 7.644 16.129 6.672 16.373 5.582 16.373 C 4.835 16.373 4.192 16.239 3.653 15.973 C 3.117 15.707 2.71 15.351 2.431 14.904 C 2.155 14.454 1.957 13.984 1.837 13.491 C 1.718 12.999 1.66 12.471 1.66 11.907 L 1.66 7.425 L 0 7.425 L 0 4.347 Z\" fill=\"var(--token-d19e0349-3380-429b-b7e7-fc20a14dd7ef, rgb(31, 91, 244)) /* {&quot;name&quot;:&quot;TTD Blue&quot;} */\"></path></g><g transform=\"translate(44.513 7.953)\" id=\"ss2253870504_4\"><path d=\"M 1.616 10.577 C 0.539 9.385 -0 7.923 -0 6.192 C -0 4.462 0.539 2.998 1.616 1.8 C 2.693 0.6 4.06 -0 5.719 -0 C 7.243 -0 8.498 0.486 9.485 1.457 L 9.485 0.339 L 13.451 0.339 L 13.451 12.022 L 9.529 12.022 L 9.529 10.699 L 9.485 10.699 C 8.498 11.809 7.243 12.364 5.719 12.364 C 4.06 12.364 2.693 11.769 1.616 10.577 Z M 4.987 4.213 C 4.473 4.727 4.216 5.387 4.216 6.192 C 4.216 6.999 4.462 7.656 4.955 8.164 C 5.448 8.67 6.098 8.923 6.904 8.923 C 7.681 8.923 8.32 8.666 8.821 8.152 C 9.322 7.635 9.573 6.982 9.573 6.192 C 9.573 5.387 9.314 4.727 8.797 4.213 C 8.283 3.696 7.652 3.437 6.904 3.437 C 6.143 3.437 5.504 3.696 4.987 4.213 Z\" fill=\"var(--token-d19e0349-3380-429b-b7e7-fc20a14dd7ef, rgb(31, 91, 244)) /* {&quot;name&quot;:&quot;TTD Blue&quot;} */\"></path></g><g transform=\"translate(59.535 0.393)\" id=\"ss2253870504_6\"><path d=\"M -0 19.582 L -0 0 L 3.967 0 L 3.967 19.582 Z\" fill=\"var(--token-d19e0349-3380-429b-b7e7-fc20a14dd7ef, rgb(31, 91, 244)) /* {&quot;name&quot;:&quot;TTD Blue&quot;} */\"></path></g><g transform=\"translate(64.239 7.953)\" id=\"ss2253870504_8\"><path d=\"M 12.466 6.739 L 4.127 6.739 C 4.127 7.559 4.389 8.166 4.911 8.56 C 5.433 8.955 6.001 9.152 6.615 9.152 C 7.258 9.152 7.765 9.065 8.138 8.891 C 8.513 8.717 8.939 8.371 9.416 7.854 L 12.286 9.311 C 11.09 11.347 9.103 12.364 6.322 12.364 C 4.588 12.364 3.101 11.762 1.861 10.556 C 0.62 9.348 0 7.894 0 6.192 C 0 4.492 0.62 3.035 1.861 1.821 C 3.101 0.607 4.588 -0 6.322 -0 C 8.146 -0 9.629 0.535 10.771 1.604 C 11.914 2.674 12.487 4.204 12.487 6.192 C 12.487 6.465 12.48 6.648 12.466 6.739 Z M 4.24 4.507 L 8.608 4.507 C 8.52 3.9 8.284 3.433 7.901 3.106 C 7.52 2.78 7.031 2.617 6.434 2.617 C 5.777 2.617 5.255 2.792 4.867 3.143 C 4.478 3.492 4.269 3.946 4.24 4.507 Z\" fill=\"var(--token-d19e0349-3380-429b-b7e7-fc20a14dd7ef, rgb(31, 91, 244)) /* {&quot;name&quot;:&quot;TTD Blue&quot;} */\"></path></g><g transform=\"translate(77.467 7.953)\" id=\"ss2253870504_10\"><path d=\"M 0 12.022 L 0 0.339 L 3.967 0.339 L 3.967 1.572 L 4.011 1.572 C 5.042 0.525 6.141 -0 7.306 -0 C 7.874 -0 8.438 0.077 8.998 0.229 C 9.558 0.379 10.096 0.614 10.61 0.935 C 11.126 1.253 11.546 1.705 11.868 2.29 C 12.189 2.873 12.35 3.551 12.35 4.327 L 12.35 12.022 L 8.384 12.022 L 8.384 5.417 C 8.384 4.811 8.191 4.28 7.808 3.825 C 7.428 3.371 6.932 3.143 6.322 3.143 C 5.724 3.143 5.181 3.379 4.694 3.849 C 4.209 4.318 3.967 4.84 3.967 5.417 L 3.967 12.022 Z\" fill=\"var(--token-d19e0349-3380-429b-b7e7-fc20a14dd7ef, rgb(31, 91, 244)) /* {&quot;name&quot;:&quot;TTD Blue&quot;} */\"></path></g><g transform=\"translate(90.175 3.944)\" id=\"ss2253870504_12\"><path d=\"M 1.66 4.347 L 1.66 0 L 5.627 0 L 5.627 4.347 L 8.049 4.347 L 8.049 7.425 L 5.627 7.425 L 5.627 11.136 C 5.627 12.213 5.925 12.752 6.522 12.752 C 6.673 12.752 6.829 12.723 6.993 12.663 C 7.159 12.6 7.286 12.539 7.374 12.479 L 7.512 12.389 L 8.496 15.642 C 7.644 16.129 6.673 16.373 5.582 16.373 C 4.834 16.373 4.192 16.239 3.653 15.973 C 3.117 15.707 2.71 15.351 2.432 14.904 C 2.156 14.454 1.957 13.984 1.837 13.491 C 1.718 12.999 1.66 12.471 1.66 11.907 L 1.66 7.425 L 0 7.425 L 0 4.347 Z\" fill=\"var(--token-d19e0349-3380-429b-b7e7-fc20a14dd7ef, rgb(31, 91, 244)) /* {&quot;name&quot;:&quot;TTD Blue&quot;} */\"></path></g><path d=\"M 102.79 18.15 C 101.712 16.958 101.174 15.497 101.174 13.766 C 101.174 12.035 101.712 10.572 102.79 9.374 C 103.866 8.174 105.234 7.574 106.892 7.574 C 108.417 7.574 109.671 8.059 110.658 9.031 L 110.658 0.014 L 114.625 0.014 L 114.625 19.595 L 110.703 19.595 L 110.703 18.273 L 110.658 18.273 C 109.671 19.383 108.417 19.938 106.892 19.938 C 105.234 19.938 103.866 19.342 102.79 18.15 Z M 106.162 11.786 C 105.647 12.301 105.389 12.961 105.389 13.766 C 105.389 14.572 105.636 15.229 106.129 15.738 C 106.621 16.244 107.271 16.497 108.078 16.497 C 108.855 16.497 109.494 16.24 109.995 15.725 C 110.496 15.209 110.747 14.556 110.747 13.766 C 110.747 12.961 110.488 12.301 109.971 11.786 C 109.457 11.27 108.826 11.011 108.078 11.011 C 107.316 11.011 106.678 11.27 106.162 11.786 Z M 127.83 14.313 L 119.49 14.313 C 119.49 15.132 119.752 15.74 120.275 16.134 C 120.796 16.528 121.364 16.725 121.979 16.725 C 122.622 16.725 123.129 16.639 123.501 16.464 C 123.877 16.291 124.302 15.945 124.779 15.427 L 127.649 16.885 C 126.454 18.921 124.466 19.938 121.685 19.938 C 119.951 19.938 118.464 19.336 117.224 18.13 C 115.983 16.921 115.364 15.467 115.364 13.766 C 115.364 12.066 115.983 10.609 117.224 9.394 C 118.464 8.181 119.951 7.574 121.685 7.574 C 123.509 7.574 124.993 8.108 126.134 9.178 C 127.277 10.247 127.85 11.777 127.85 13.766 C 127.85 14.038 127.843 14.221 127.83 14.313 Z M 119.603 12.08 L 123.972 12.08 C 123.883 11.474 123.647 11.007 123.264 10.68 C 122.883 10.353 122.395 10.19 121.798 10.19 C 121.14 10.19 120.618 10.366 120.23 10.717 C 119.841 11.066 119.633 11.52 119.603 12.08 Z\" fill=\"var(--token-57c0c0c2-cb69-450a-a61a-7319130e455e, rgb(238, 99, 221)) /* {&quot;name&quot;:&quot;TTD Pink&quot;} */\"></path><path d=\"M 134.708 10.876 C 133.962 10.876 133.322 11.156 132.783 11.717 C 132.244 12.278 131.975 12.953 131.975 13.741 C 131.975 14.548 132.244 15.231 132.783 15.795 C 133.322 16.356 133.962 16.636 134.708 16.636 C 135.067 16.636 135.407 16.591 135.728 16.501 C 136.051 16.409 136.286 16.316 136.436 16.223 L 136.637 16.089 L 137.983 18.889 C 137.879 18.965 137.732 19.06 137.545 19.175 C 137.357 19.289 136.932 19.444 136.267 19.64 C 135.602 19.838 134.888 19.938 134.125 19.938 C 132.437 19.938 130.954 19.336 129.676 18.13 C 128.398 16.921 127.76 15.475 127.76 13.79 C 127.76 12.09 128.398 10.629 129.676 9.406 C 130.954 8.185 132.437 7.574 134.125 7.574 C 134.888 7.574 135.592 7.665 136.235 7.847 C 136.878 8.03 137.333 8.212 137.601 8.394 L 137.983 8.668 L 136.637 11.419 C 136.143 11.058 135.501 10.876 134.708 10.876 Z M 151.61 7.912 L 146.141 13.493 L 152.149 19.595 L 147.036 19.595 L 142.444 14.929 L 142.444 19.595 L 138.477 19.595 L 138.477 0.014 L 142.444 0.014 L 142.444 11.99 L 146.454 7.912 Z\" fill=\"var(--token-57c0c0c2-cb69-450a-a61a-7319130e455e, rgb(238, 99, 221)) /* {&quot;name&quot;:&quot;TTD Pink&quot;} */\"></path><path d=\"M 154.392 14.721 C 155.108 14.721 155.716 14.976 156.217 15.485 C 156.717 15.994 156.969 16.613 156.969 17.342 C 156.969 18.055 156.717 18.666 156.217 19.175 C 155.716 19.683 155.108 19.938 154.392 19.938 C 153.687 19.938 153.085 19.683 152.584 19.175 C 152.086 18.666 151.837 18.055 151.837 17.342 C 151.837 16.613 152.086 15.994 152.584 15.485 C 153.085 14.976 153.687 14.721 154.392 14.721 Z\" fill=\"var(--token-57c0c0c2-cb69-450a-a61a-7319130e455e, rgb(238, 99, 221)) /* {&quot;name&quot;:&quot;TTD Pink&quot;} */\"></path></svg>',svgContentId:2253870504,withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-cetyt\",\"data-framer-name\":\"Talent_deck_logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Lzz2sQ_bM\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 56 56\"><path d=\"M -16.5 -19.5 L 85.5 -19.5 L 85.5 82.5 L -16.5 82.5 Z\" fill=\"transparent\"></path><path d=\"M -16.5 -19.5 L 85.5 -19.5 L 85.5 82.5 L -16.5 82.5 Z\" fill=\"transparent\"></path><path d=\"M -16.5 -19.5 L 85.5 -19.5 L 85.5 82.5 L -16.5 82.5 Z\" fill=\"transparent\"></path><path d=\"M 2.278 8.104 L 2.278 4.332 L 5.774 4.332 L 5.774 8.104 L 7.909 8.104 L 7.909 10.774 L 5.774 10.774 L 5.774 13.994 C 5.774 14.929 6.037 15.396 6.563 15.396 C 6.695 15.396 6.833 15.37 6.978 15.318 C 7.124 15.264 7.236 15.211 7.314 15.159 L 7.434 15.081 L 8.302 17.904 C 7.551 18.326 6.695 18.537 5.735 18.537 C 5.076 18.537 4.509 18.422 4.035 18.191 C 3.562 17.959 3.203 17.65 2.958 17.262 C 2.719 16.884 2.542 16.471 2.434 16.037 C 2.329 15.61 2.278 15.152 2.278 14.663 L 2.278 10.774 L 0.815 10.774 L 0.815 8.104 Z M 8.502 18.24 L 8.502 1.251 L 11.997 1.251 L 11.997 9.173 L 12.036 9.173 C 12.945 8.265 13.913 7.81 14.94 7.81 C 15.441 7.81 15.937 7.876 16.431 8.008 C 16.932 8.142 17.411 8.348 17.852 8.621 C 18.307 8.897 18.677 9.289 18.96 9.797 C 19.244 10.302 19.385 10.891 19.385 11.564 L 19.385 18.24 L 15.89 18.24 L 15.89 12.51 C 15.89 11.984 15.72 11.523 15.383 11.128 C 15.048 10.734 14.611 10.537 14.073 10.537 C 13.546 10.537 13.068 10.741 12.638 11.15 C 12.211 11.556 11.997 12.009 11.997 12.51 L 11.997 18.24 Z M 30.825 13.657 L 23.476 13.657 C 23.476 14.368 23.706 14.895 24.166 15.237 C 24.627 15.579 25.127 15.75 25.668 15.75 C 26.235 15.75 26.682 15.675 27.01 15.524 C 27.341 15.373 27.716 15.073 28.137 14.624 L 30.665 15.888 C 29.612 17.655 27.86 18.537 25.41 18.537 C 23.881 18.537 22.571 18.015 21.478 16.969 C 20.385 15.92 19.839 14.658 19.839 13.182 C 19.839 11.707 20.385 10.443 21.478 9.389 C 22.571 8.337 23.881 7.81 25.41 7.81 C 27.018 7.81 28.324 8.274 29.33 9.202 C 30.338 10.13 30.843 11.457 30.843 13.182 C 30.843 13.419 30.836 13.577 30.825 13.657 Z M 23.575 11.72 L 27.425 11.72 C 27.347 11.194 27.139 10.788 26.801 10.505 C 26.466 10.222 26.035 10.08 25.509 10.08 C 24.93 10.08 24.469 10.232 24.128 10.537 C 23.785 10.84 23.601 11.234 23.575 11.72 Z M 23.575 11.72\" fill=\"rgb(0,0,0)\"></path><path d=\"M 2.278 26.804 L 2.278 23.032 L 5.774 23.032 L 5.774 26.804 L 7.909 26.804 L 7.909 29.474 L 5.774 29.474 L 5.774 32.694 C 5.774 33.629 6.037 34.096 6.563 34.096 C 6.695 34.096 6.833 34.07 6.978 34.018 C 7.124 33.964 7.236 33.911 7.314 33.859 L 7.434 33.781 L 8.302 36.604 C 7.551 37.026 6.695 37.237 5.735 37.237 C 5.076 37.237 4.509 37.122 4.035 36.891 C 3.562 36.659 3.203 36.35 2.958 35.962 C 2.719 35.584 2.542 35.171 2.434 34.737 C 2.329 34.31 2.278 33.852 2.278 33.363 L 2.278 29.474 L 0.815 29.474 L 0.815 26.804 Z M 2.278 26.804\" fill=\"var(--token-d19e0349-3380-429b-b7e7-fc20a14dd7ef, rgb(31, 91, 244)) /* {&quot;name&quot;:&quot;TTD Blue&quot;} */\"></path><path d=\"M 9.192 35.686 C 8.243 34.652 7.769 33.384 7.769 31.882 C 7.769 30.381 8.243 29.111 9.192 28.072 C 10.141 27.03 11.346 26.51 12.808 26.51 C 14.151 26.51 15.257 26.931 16.127 27.774 L 16.127 26.804 L 19.623 26.804 L 19.623 36.94 L 16.166 36.94 L 16.166 35.792 L 16.127 35.792 C 15.257 36.756 14.151 37.237 12.808 37.237 C 11.346 37.237 10.141 36.721 9.192 35.686 Z M 12.164 30.165 C 11.71 30.611 11.484 31.184 11.484 31.882 C 11.484 32.582 11.701 33.152 12.135 33.593 C 12.569 34.032 13.142 34.252 13.853 34.252 C 14.538 34.252 15.101 34.029 15.543 33.582 C 15.983 33.134 16.205 32.568 16.205 31.882 C 16.205 31.184 15.976 30.611 15.521 30.165 C 15.068 29.717 14.512 29.492 13.853 29.492 C 13.182 29.492 12.619 29.717 12.164 30.165 Z M 21.006 36.94 L 21.006 19.951 L 24.502 19.951 L 24.502 36.94 Z M 36.139 32.357 L 28.79 32.357 C 28.79 33.068 29.02 33.595 29.48 33.937 C 29.941 34.279 30.441 34.45 30.982 34.45 C 31.549 34.45 31.996 34.375 32.324 34.224 C 32.654 34.073 33.03 33.773 33.451 33.324 L 35.979 34.588 C 34.926 36.355 33.174 37.237 30.724 37.237 C 29.195 37.237 27.885 36.715 26.792 35.669 C 25.699 34.62 25.152 33.358 25.152 31.882 C 25.152 30.407 25.699 29.143 26.792 28.089 C 27.885 27.037 29.195 26.51 30.724 26.51 C 32.331 26.51 33.638 26.974 34.644 27.902 C 35.652 28.83 36.156 30.157 36.156 31.882 C 36.156 32.119 36.15 32.277 36.139 32.357 Z M 28.889 30.42 L 32.739 30.42 C 32.661 29.894 32.453 29.488 32.115 29.205 C 31.78 28.922 31.348 28.78 30.823 28.78 C 30.243 28.78 29.783 28.932 29.441 29.237 C 29.099 29.54 28.914 29.934 28.889 30.42 Z M 36.81 36.94 L 36.81 26.804 L 40.305 26.804 L 40.305 27.873 L 40.344 27.873 C 41.253 26.965 42.221 26.51 43.248 26.51 C 43.749 26.51 44.245 26.576 44.739 26.708 C 45.24 26.842 45.719 27.048 46.16 27.321 C 46.615 27.597 46.985 27.989 47.268 28.497 C 47.551 29.002 47.693 29.591 47.693 30.264 L 47.693 36.94 L 44.197 36.94 L 44.197 31.21 C 44.197 30.684 44.028 30.223 43.691 29.828 C 43.356 29.434 42.919 29.237 42.381 29.237 C 41.854 29.237 41.376 29.441 40.946 29.85 C 40.519 30.256 40.305 30.709 40.305 31.21 L 40.305 36.94 Z M 49.471 26.804 L 49.471 23.032 L 52.967 23.032 L 52.967 26.804 L 55.102 26.804 L 55.102 29.474 L 52.967 29.474 L 52.967 32.694 C 52.967 33.629 53.23 34.096 53.756 34.096 C 53.888 34.096 54.026 34.07 54.171 34.018 C 54.317 33.964 54.429 33.911 54.507 33.859 L 54.628 33.781 L 55.495 36.604 C 54.745 37.026 53.888 37.237 52.928 37.237 C 52.269 37.237 51.702 37.122 51.228 36.891 C 50.755 36.659 50.396 36.35 50.151 35.962 C 49.913 35.584 49.736 35.171 49.627 34.737 C 49.523 34.31 49.471 33.852 49.471 33.363 L 49.471 29.474 L 48.008 29.474 L 48.008 26.804 Z M 49.471 26.804\" fill=\"var(--token-d19e0349-3380-429b-b7e7-fc20a14dd7ef, rgb(31, 91, 244)) /* {&quot;name&quot;:&quot;TTD Blue&quot;} */\"></path><path d=\"M 2.377 54.386 C 1.428 53.352 0.953 52.084 0.953 50.582 C 0.953 49.081 1.428 47.811 2.377 46.772 C 3.326 45.73 4.531 45.21 5.993 45.21 C 7.336 45.21 8.442 45.631 9.312 46.474 L 9.312 38.651 L 12.807 38.651 L 12.807 55.64 L 9.351 55.64 L 9.351 54.492 L 9.312 54.492 C 8.442 55.456 7.336 55.937 5.993 55.937 C 4.531 55.937 3.326 55.421 2.377 54.386 Z M 5.349 48.865 C 4.895 49.311 4.669 49.884 4.669 50.582 C 4.669 51.282 4.886 51.852 5.32 52.293 C 5.754 52.732 6.327 52.952 7.038 52.952 C 7.723 52.952 8.286 52.729 8.727 52.282 C 9.168 51.834 9.39 51.268 9.39 50.582 C 9.39 49.884 9.161 49.311 8.706 48.865 C 8.253 48.417 7.697 48.192 7.038 48.192 C 6.367 48.192 5.804 48.417 5.349 48.865 Z M 24.444 51.057 L 17.095 51.057 C 17.095 51.768 17.325 52.295 17.786 52.637 C 18.246 52.979 18.746 53.15 19.287 53.15 C 19.854 53.15 20.301 53.075 20.63 52.924 C 20.96 52.773 21.335 52.473 21.756 52.024 L 24.285 53.288 C 23.231 55.055 21.48 55.937 19.029 55.937 C 17.501 55.937 16.19 55.415 15.098 54.369 C 14.004 53.32 13.458 52.058 13.458 50.582 C 13.458 49.107 14.004 47.843 15.098 46.789 C 16.19 45.737 17.501 45.21 19.029 45.21 C 20.637 45.21 21.944 45.674 22.95 46.602 C 23.957 47.53 24.462 48.857 24.462 50.582 C 24.462 50.819 24.456 50.977 24.444 51.057 Z M 17.194 49.12 L 21.044 49.12 C 20.966 48.594 20.758 48.188 20.421 47.905 C 20.085 47.622 19.654 47.48 19.128 47.48 C 18.549 47.48 18.089 47.632 17.747 47.937 C 17.404 48.24 17.22 48.634 17.194 49.12 Z M 17.194 49.12\" fill=\"var(--token-57c0c0c2-cb69-450a-a61a-7319130e455e, rgb(238, 99, 221)) /* {&quot;name&quot;:&quot;TTD Pink&quot;} */\"></path><path d=\"M 30.506 48.075 C 29.849 48.075 29.284 48.318 28.809 48.805 C 28.334 49.292 28.097 49.877 28.097 50.561 C 28.097 51.261 28.334 51.854 28.809 52.343 C 29.284 52.83 29.849 53.072 30.506 53.072 C 30.809 53.074 31.112 53.035 31.405 52.955 C 31.688 52.876 31.896 52.795 32.028 52.715 L 32.206 52.598 L 33.392 55.027 C 33.267 55.115 33.138 55.198 33.006 55.275 C 32.841 55.374 32.465 55.509 31.88 55.679 C 31.294 55.851 30.665 55.937 29.992 55.937 C 28.504 55.937 27.198 55.415 26.071 54.369 C 24.945 53.32 24.382 52.066 24.382 50.604 C 24.382 49.129 24.945 47.861 26.071 46.8 C 27.198 45.74 28.504 45.21 29.992 45.21 C 30.665 45.21 31.285 45.289 31.851 45.447 C 32.418 45.606 32.819 45.764 33.056 45.922 L 33.392 46.159 L 32.206 48.546 C 31.771 48.233 31.204 48.075 30.506 48.075 Z M 45.401 45.504 L 40.581 50.345 L 45.876 55.64 L 41.37 55.64 L 37.322 51.592 L 37.322 55.64 L 33.827 55.64 L 33.827 38.651 L 37.322 38.651 L 37.322 49.042 L 40.857 45.504 Z M 45.401 45.504\" fill=\"var(--token-57c0c0c2-cb69-450a-a61a-7319130e455e, rgb(238, 99, 221)) /* {&quot;name&quot;:&quot;TTD Pink&quot;} */\"></path><path d=\"M 47.853 51.411 C 48.483 51.411 49.019 51.633 49.461 52.074 C 49.902 52.515 50.123 53.053 50.123 53.685 C 50.123 54.304 49.902 54.834 49.461 55.275 C 49.019 55.716 48.483 55.937 47.853 55.937 C 47.231 55.937 46.7 55.716 46.259 55.275 C 45.82 54.834 45.601 54.304 45.601 53.685 C 45.601 53.053 45.82 52.515 46.259 52.073 C 46.7 51.633 47.231 51.411 47.853 51.411 Z M 47.853 51.411\" fill=\"var(--token-57c0c0c2-cb69-450a-a61a-7319130e455e, rgb(238, 99, 221)) /* {&quot;name&quot;:&quot;TTD Pink&quot;} */\"></path></svg>',svgContentId:3463534209,withExternalLayout:true,...addPropertyOverrides({BySA85S21:{svgContentId:3339918045}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-ikz31m\",\"data-framer-name\":\"Talent_deck_logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"hhlRxjpMe\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 56 56\"><path d=\"M -16.5 -19.5 L 85.5 -19.5 L 85.5 82.5 L -16.5 82.5 Z\" fill=\"transparent\"></path><path d=\"M -16.5 -19.5 L 85.5 -19.5 L 85.5 82.5 L -16.5 82.5 Z\" fill=\"transparent\"></path><path d=\"M -16.5 -19.5 L 85.5 -19.5 L 85.5 82.5 L -16.5 82.5 Z\" fill=\"transparent\"></path><path d=\"M 2.278 8.104 L 2.278 4.332 L 5.774 4.332 L 5.774 8.104 L 7.909 8.104 L 7.909 10.774 L 5.774 10.774 L 5.774 13.994 C 5.774 14.929 6.037 15.396 6.563 15.396 C 6.695 15.396 6.833 15.37 6.978 15.318 C 7.124 15.264 7.236 15.211 7.314 15.159 L 7.434 15.081 L 8.302 17.904 C 7.551 18.326 6.695 18.537 5.735 18.537 C 5.076 18.537 4.509 18.422 4.035 18.191 C 3.562 17.959 3.203 17.65 2.958 17.262 C 2.719 16.884 2.542 16.471 2.434 16.037 C 2.329 15.61 2.278 15.152 2.278 14.663 L 2.278 10.774 L 0.815 10.774 L 0.815 8.104 Z M 8.502 18.24 L 8.502 1.251 L 11.997 1.251 L 11.997 9.173 L 12.036 9.173 C 12.945 8.265 13.913 7.81 14.94 7.81 C 15.441 7.81 15.937 7.876 16.431 8.008 C 16.932 8.142 17.411 8.348 17.852 8.621 C 18.307 8.897 18.677 9.289 18.96 9.797 C 19.244 10.302 19.385 10.891 19.385 11.564 L 19.385 18.24 L 15.89 18.24 L 15.89 12.51 C 15.89 11.984 15.72 11.523 15.383 11.128 C 15.048 10.734 14.611 10.537 14.073 10.537 C 13.546 10.537 13.068 10.741 12.638 11.15 C 12.211 11.556 11.997 12.009 11.997 12.51 L 11.997 18.24 Z M 30.825 13.657 L 23.476 13.657 C 23.476 14.368 23.706 14.895 24.166 15.237 C 24.627 15.579 25.127 15.75 25.668 15.75 C 26.235 15.75 26.682 15.675 27.01 15.524 C 27.341 15.373 27.716 15.073 28.137 14.624 L 30.665 15.888 C 29.612 17.655 27.86 18.537 25.41 18.537 C 23.881 18.537 22.571 18.015 21.478 16.969 C 20.385 15.92 19.839 14.658 19.839 13.182 C 19.839 11.707 20.385 10.443 21.478 9.389 C 22.571 8.337 23.881 7.81 25.41 7.81 C 27.018 7.81 28.324 8.274 29.33 9.202 C 30.338 10.13 30.843 11.457 30.843 13.182 C 30.843 13.419 30.836 13.577 30.825 13.657 Z M 23.575 11.72 L 27.425 11.72 C 27.347 11.194 27.139 10.788 26.801 10.505 C 26.466 10.222 26.035 10.08 25.509 10.08 C 24.93 10.08 24.469 10.232 24.128 10.537 C 23.785 10.84 23.601 11.234 23.575 11.72 Z M 23.575 11.72\" fill=\"rgb(0,0,0)\"></path><path d=\"M 2.278 26.804 L 2.278 23.032 L 5.774 23.032 L 5.774 26.804 L 7.909 26.804 L 7.909 29.474 L 5.774 29.474 L 5.774 32.694 C 5.774 33.629 6.037 34.096 6.563 34.096 C 6.695 34.096 6.833 34.07 6.978 34.018 C 7.124 33.964 7.236 33.911 7.314 33.859 L 7.434 33.781 L 8.302 36.604 C 7.551 37.026 6.695 37.237 5.735 37.237 C 5.076 37.237 4.509 37.122 4.035 36.891 C 3.562 36.659 3.203 36.35 2.958 35.962 C 2.719 35.584 2.542 35.171 2.434 34.737 C 2.329 34.31 2.278 33.852 2.278 33.363 L 2.278 29.474 L 0.815 29.474 L 0.815 26.804 Z M 2.278 26.804\" fill=\"var(--token-d19e0349-3380-429b-b7e7-fc20a14dd7ef, rgb(31, 91, 244)) /* {&quot;name&quot;:&quot;TTD Blue&quot;} */\"></path><path d=\"M 9.192 35.686 C 8.243 34.652 7.769 33.384 7.769 31.882 C 7.769 30.381 8.243 29.111 9.192 28.072 C 10.141 27.03 11.346 26.51 12.808 26.51 C 14.151 26.51 15.257 26.931 16.127 27.774 L 16.127 26.804 L 19.623 26.804 L 19.623 36.94 L 16.166 36.94 L 16.166 35.792 L 16.127 35.792 C 15.257 36.756 14.151 37.237 12.808 37.237 C 11.346 37.237 10.141 36.721 9.192 35.686 Z M 12.164 30.165 C 11.71 30.611 11.484 31.184 11.484 31.882 C 11.484 32.582 11.701 33.152 12.135 33.593 C 12.569 34.032 13.142 34.252 13.853 34.252 C 14.538 34.252 15.101 34.029 15.543 33.582 C 15.983 33.134 16.205 32.568 16.205 31.882 C 16.205 31.184 15.976 30.611 15.521 30.165 C 15.068 29.717 14.512 29.492 13.853 29.492 C 13.182 29.492 12.619 29.717 12.164 30.165 Z M 21.006 36.94 L 21.006 19.951 L 24.502 19.951 L 24.502 36.94 Z M 36.139 32.357 L 28.79 32.357 C 28.79 33.068 29.02 33.595 29.48 33.937 C 29.941 34.279 30.441 34.45 30.982 34.45 C 31.549 34.45 31.996 34.375 32.324 34.224 C 32.654 34.073 33.03 33.773 33.451 33.324 L 35.979 34.588 C 34.926 36.355 33.174 37.237 30.724 37.237 C 29.195 37.237 27.885 36.715 26.792 35.669 C 25.699 34.62 25.152 33.358 25.152 31.882 C 25.152 30.407 25.699 29.143 26.792 28.089 C 27.885 27.037 29.195 26.51 30.724 26.51 C 32.331 26.51 33.638 26.974 34.644 27.902 C 35.652 28.83 36.156 30.157 36.156 31.882 C 36.156 32.119 36.15 32.277 36.139 32.357 Z M 28.889 30.42 L 32.739 30.42 C 32.661 29.894 32.453 29.488 32.115 29.205 C 31.78 28.922 31.348 28.78 30.823 28.78 C 30.243 28.78 29.783 28.932 29.441 29.237 C 29.099 29.54 28.914 29.934 28.889 30.42 Z M 36.81 36.94 L 36.81 26.804 L 40.305 26.804 L 40.305 27.873 L 40.344 27.873 C 41.253 26.965 42.221 26.51 43.248 26.51 C 43.749 26.51 44.245 26.576 44.739 26.708 C 45.24 26.842 45.719 27.048 46.16 27.321 C 46.615 27.597 46.985 27.989 47.268 28.497 C 47.551 29.002 47.693 29.591 47.693 30.264 L 47.693 36.94 L 44.197 36.94 L 44.197 31.21 C 44.197 30.684 44.028 30.223 43.691 29.828 C 43.356 29.434 42.919 29.237 42.381 29.237 C 41.854 29.237 41.376 29.441 40.946 29.85 C 40.519 30.256 40.305 30.709 40.305 31.21 L 40.305 36.94 Z M 49.471 26.804 L 49.471 23.032 L 52.967 23.032 L 52.967 26.804 L 55.102 26.804 L 55.102 29.474 L 52.967 29.474 L 52.967 32.694 C 52.967 33.629 53.23 34.096 53.756 34.096 C 53.888 34.096 54.026 34.07 54.171 34.018 C 54.317 33.964 54.429 33.911 54.507 33.859 L 54.628 33.781 L 55.495 36.604 C 54.745 37.026 53.888 37.237 52.928 37.237 C 52.269 37.237 51.702 37.122 51.228 36.891 C 50.755 36.659 50.396 36.35 50.151 35.962 C 49.913 35.584 49.736 35.171 49.627 34.737 C 49.523 34.31 49.471 33.852 49.471 33.363 L 49.471 29.474 L 48.008 29.474 L 48.008 26.804 Z M 49.471 26.804\" fill=\"var(--token-d19e0349-3380-429b-b7e7-fc20a14dd7ef, rgb(31, 91, 244)) /* {&quot;name&quot;:&quot;TTD Blue&quot;} */\"></path><path d=\"M 2.377 54.386 C 1.428 53.352 0.953 52.084 0.953 50.582 C 0.953 49.081 1.428 47.811 2.377 46.772 C 3.326 45.73 4.531 45.21 5.993 45.21 C 7.336 45.21 8.442 45.631 9.312 46.474 L 9.312 38.651 L 12.807 38.651 L 12.807 55.64 L 9.351 55.64 L 9.351 54.492 L 9.312 54.492 C 8.442 55.456 7.336 55.937 5.993 55.937 C 4.531 55.937 3.326 55.421 2.377 54.386 Z M 5.349 48.865 C 4.895 49.311 4.669 49.884 4.669 50.582 C 4.669 51.282 4.886 51.852 5.32 52.293 C 5.754 52.732 6.327 52.952 7.038 52.952 C 7.723 52.952 8.286 52.729 8.727 52.282 C 9.168 51.834 9.39 51.268 9.39 50.582 C 9.39 49.884 9.161 49.311 8.706 48.865 C 8.253 48.417 7.697 48.192 7.038 48.192 C 6.367 48.192 5.804 48.417 5.349 48.865 Z M 24.444 51.057 L 17.095 51.057 C 17.095 51.768 17.325 52.295 17.786 52.637 C 18.246 52.979 18.746 53.15 19.287 53.15 C 19.854 53.15 20.301 53.075 20.63 52.924 C 20.96 52.773 21.335 52.473 21.756 52.024 L 24.285 53.288 C 23.231 55.055 21.48 55.937 19.029 55.937 C 17.501 55.937 16.19 55.415 15.098 54.369 C 14.004 53.32 13.458 52.058 13.458 50.582 C 13.458 49.107 14.004 47.843 15.098 46.789 C 16.19 45.737 17.501 45.21 19.029 45.21 C 20.637 45.21 21.944 45.674 22.95 46.602 C 23.957 47.53 24.462 48.857 24.462 50.582 C 24.462 50.819 24.456 50.977 24.444 51.057 Z M 17.194 49.12 L 21.044 49.12 C 20.966 48.594 20.758 48.188 20.421 47.905 C 20.085 47.622 19.654 47.48 19.128 47.48 C 18.549 47.48 18.089 47.632 17.747 47.937 C 17.404 48.24 17.22 48.634 17.194 49.12 Z M 17.194 49.12\" fill=\"var(--token-57c0c0c2-cb69-450a-a61a-7319130e455e, rgb(238, 99, 221)) /* {&quot;name&quot;:&quot;TTD Pink&quot;} */\"></path><path d=\"M 30.506 48.075 C 29.849 48.075 29.284 48.318 28.809 48.805 C 28.334 49.292 28.097 49.877 28.097 50.561 C 28.097 51.261 28.334 51.854 28.809 52.343 C 29.284 52.83 29.849 53.072 30.506 53.072 C 30.809 53.074 31.112 53.035 31.405 52.955 C 31.688 52.876 31.896 52.795 32.028 52.715 L 32.206 52.598 L 33.392 55.027 C 33.267 55.115 33.138 55.198 33.006 55.275 C 32.841 55.374 32.465 55.509 31.88 55.679 C 31.294 55.851 30.665 55.937 29.992 55.937 C 28.504 55.937 27.198 55.415 26.071 54.369 C 24.945 53.32 24.382 52.066 24.382 50.604 C 24.382 49.129 24.945 47.861 26.071 46.8 C 27.198 45.74 28.504 45.21 29.992 45.21 C 30.665 45.21 31.285 45.289 31.851 45.447 C 32.418 45.606 32.819 45.764 33.056 45.922 L 33.392 46.159 L 32.206 48.546 C 31.771 48.233 31.204 48.075 30.506 48.075 Z M 45.401 45.504 L 40.581 50.345 L 45.876 55.64 L 41.37 55.64 L 37.322 51.592 L 37.322 55.64 L 33.827 55.64 L 33.827 38.651 L 37.322 38.651 L 37.322 49.042 L 40.857 45.504 Z M 45.401 45.504\" fill=\"var(--token-57c0c0c2-cb69-450a-a61a-7319130e455e, rgb(238, 99, 221)) /* {&quot;name&quot;:&quot;TTD Pink&quot;} */\"></path><path d=\"M 47.853 51.411 C 48.483 51.411 49.019 51.633 49.461 52.074 C 49.902 52.515 50.123 53.053 50.123 53.685 C 50.123 54.304 49.902 54.834 49.461 55.275 C 49.019 55.716 48.483 55.937 47.853 55.937 C 47.231 55.937 46.7 55.716 46.259 55.275 C 45.82 54.834 45.601 54.304 45.601 53.685 C 45.601 53.053 45.82 52.515 46.259 52.073 C 46.7 51.633 47.231 51.411 47.853 51.411 Z M 47.853 51.411\" fill=\"var(--token-57c0c0c2-cb69-450a-a61a-7319130e455e, rgb(238, 99, 221)) /* {&quot;name&quot;:&quot;TTD Pink&quot;} */\"></path></svg>',svgContentId:3463534209,withExternalLayout:true,...addPropertyOverrides({PxSxoCny9:{svgContentId:3339918045}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-15ali2g\",layoutDependency:layoutDependency,layoutId:\"xtM7gia68\",children:isDisplayed3()&&/*#__PURE__*/ _jsx(motion.div,{className:\"framer-q1bn8\",\"data-border\":true,\"data-framer-name\":\"Hamburger\",layoutDependency:layoutDependency,layoutId:\"IuAL0oHTn\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-34bd0493-0e29-415c-a96a-db1395c61590, rgb(8, 14, 19))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3},variants:{BySA85S21:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},PxSxoCny9:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({BySA85S21:{\"data-highlight\":true,onTap:onTapi5asr4},PxSxoCny9:{\"data-highlight\":true,onTap:onTap4vd7em}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1dr3w3k-container\",layoutDependency:layoutDependency,layoutId:\"VSH3Gr956-container\",children:/*#__PURE__*/ _jsx(MenuIcon,{color:'var(--token-34bd0493-0e29-415c-a96a-db1395c61590, rgb(8, 14, 19)) /* {\"name\":\"Neutral 07\"} */',height:\"100%\",id:\"VSH3Gr956\",layoutId:\"VSH3Gr956\",style:{height:\"100%\",width:\"100%\"},variant:\"SK5kefoV0\",width:\"100%\",...addPropertyOverrides({BySA85S21:{color:'var(--token-2ca50030-546e-467a-9807-ff678753401c, rgb(95, 106, 118)) /* {\"name\":\"Neutral 5\"} */',variant:\"e6wx4vjQN\"},PxSxoCny9:{color:'var(--token-2ca50030-546e-467a-9807-ff678753401c, rgb(95, 106, 118)) /* {\"name\":\"Neutral 5\"} */'}},baseVariant,gestureVariant)})})})})]}),isDisplayed4()&&/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-5dewac\",\"data-framer-name\":\"Header Button\",layoutDependency:layoutDependency,layoutId:\"ESD9d2X4O\",children:[/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-8kgzyp\",layoutDependency:layoutDependency,layoutId:\"Ej7bCoUuy\",children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1s6nl6s-container\",layoutDependency:layoutDependency,layoutId:\"vjlZVFuqE-container\",children:/*#__PURE__*/ _jsx(Button,{height:\"100%\",id:\"vjlZVFuqE\",layoutId:\"vjlZVFuqE\",MZ2eVjz3h:\"Jobs\",style:{height:\"100%\"},variant:\"E03Dikpyj\",width:\"100%\",YvZE4tquw:resolveLink({webPageId:\"MUr3hviKO\"},router)})}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1h6w3km-container\",layoutDependency:layoutDependency,layoutId:\"o0GFFQJ8Y-container\",children:/*#__PURE__*/ _jsx(Button,{height:\"100%\",id:\"o0GFFQJ8Y\",layoutId:\"o0GFFQJ8Y\",MZ2eVjz3h:\"Partners\",style:{height:\"100%\"},variant:\"E03Dikpyj\",width:\"100%\",YvZE4tquw:resolveLink({webPageId:\"IYA_Aobtp\"},router)})}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-197rf8d-container\",layoutDependency:layoutDependency,layoutId:\"wUAxvjlPG-container\",children:/*#__PURE__*/ _jsx(Button,{height:\"100%\",id:\"wUAxvjlPG\",layoutId:\"wUAxvjlPG\",MZ2eVjz3h:\"Events\",style:{height:\"100%\"},variant:\"E03Dikpyj\",width:\"100%\",YvZE4tquw:resolveLink({webPageId:\"RpbGj5zgS\"},router)})})]}),/*#__PURE__*/ _jsx(Link,{href:{webPageId:\"mjzvkaM4F\"},openInNewTab:false,children:/*#__PURE__*/ _jsx(motion.a,{className:\"framer-e0soum framer-17ht4cq\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"yNyxQKn58\",style:{backgroundColor:\"var(--token-ff9b7dab-71d7-42af-9fd7-1968abd48bc3, rgb(0, 0, 0))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Apply for Community Access\"})}),className:\"framer-175ztwd\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"F6UBaQqhf\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})})})});});const css=['.framer-DmFpt [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DmFpt .framer-17ht4cq { display: block; }\",\".framer-DmFpt .framer-1ux2brg { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; padding: 10px 24px 0px 24px; position: relative; width: 1140px; }\",\".framer-DmFpt .framer-1uvi7fd { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 4px 24px 4px 24px; position: relative; width: 1px; }\",\".framer-DmFpt .framer-rwmbmt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 64px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-DmFpt .framer-da5a80 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-DmFpt .framer-xxb51l { flex: none; height: 21px; position: relative; width: 157px; }\",\".framer-DmFpt .framer-cetyt, .framer-DmFpt .framer-ikz31m { flex: none; height: 56px; position: relative; width: 56px; }\",\".framer-DmFpt .framer-15ali2g { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 54px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-DmFpt .framer-q1bn8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 42px; }\",\".framer-DmFpt .framer-1dr3w3k-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-DmFpt .framer-5dewac { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 64px; justify-content: flex-end; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 793px; }\",\".framer-DmFpt .framer-8kgzyp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 413px; }\",\".framer-DmFpt .framer-1s6nl6s-container, .framer-DmFpt .framer-1h6w3km-container, .framer-DmFpt .framer-197rf8d-container { flex: none; height: 42px; position: relative; width: auto; }\",\".framer-DmFpt .framer-e0soum { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; padding: 14px 16px 14px 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-DmFpt .framer-175ztwd { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DmFpt .framer-1uvi7fd, .framer-DmFpt .framer-rwmbmt, .framer-DmFpt .framer-da5a80, .framer-DmFpt .framer-15ali2g, .framer-DmFpt .framer-q1bn8, .framer-DmFpt .framer-5dewac, .framer-DmFpt .framer-8kgzyp, .framer-DmFpt .framer-e0soum { gap: 0px; } .framer-DmFpt .framer-1uvi7fd > *, .framer-DmFpt .framer-15ali2g > *, .framer-DmFpt .framer-8kgzyp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-DmFpt .framer-1uvi7fd > :first-child, .framer-DmFpt .framer-rwmbmt > :first-child, .framer-DmFpt .framer-da5a80 > :first-child, .framer-DmFpt .framer-15ali2g > :first-child, .framer-DmFpt .framer-5dewac > :first-child, .framer-DmFpt .framer-8kgzyp > :first-child, .framer-DmFpt .framer-e0soum > :first-child { margin-left: 0px; } .framer-DmFpt .framer-1uvi7fd > :last-child, .framer-DmFpt .framer-rwmbmt > :last-child, .framer-DmFpt .framer-da5a80 > :last-child, .framer-DmFpt .framer-15ali2g > :last-child, .framer-DmFpt .framer-5dewac > :last-child, .framer-DmFpt .framer-8kgzyp > :last-child, .framer-DmFpt .framer-e0soum > :last-child { margin-right: 0px; } .framer-DmFpt .framer-rwmbmt > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-DmFpt .framer-da5a80 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-DmFpt .framer-q1bn8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-DmFpt .framer-q1bn8 > :first-child { margin-top: 0px; } .framer-DmFpt .framer-q1bn8 > :last-child { margin-bottom: 0px; } .framer-DmFpt .framer-5dewac > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-DmFpt .framer-e0soum > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-DmFpt.framer-v-1pakwig .framer-1ux2brg, .framer-DmFpt.framer-v-x5gt92 .framer-1ux2brg { padding: 10px 24px 10px 24px; width: 370px; }\",\".framer-DmFpt.framer-v-1pakwig .framer-rwmbmt { gap: unset; justify-content: space-between; }\",\".framer-DmFpt.framer-v-1pakwig .framer-da5a80, .framer-DmFpt.framer-v-x5gt92 .framer-da5a80 { height: 59px; width: 145px; }\",\".framer-DmFpt.framer-v-1pakwig .framer-15ali2g { flex: none; gap: 0px; height: min-content; justify-content: center; width: min-content; }\",\".framer-DmFpt.framer-v-1pakwig .framer-q1bn8, .framer-DmFpt.framer-v-x5gt92 .framer-q1bn8 { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DmFpt.framer-v-1pakwig .framer-rwmbmt, .framer-DmFpt.framer-v-1pakwig .framer-15ali2g { gap: 0px; } .framer-DmFpt.framer-v-1pakwig .framer-rwmbmt > *, .framer-DmFpt.framer-v-1pakwig .framer-rwmbmt > :first-child, .framer-DmFpt.framer-v-1pakwig .framer-rwmbmt > :last-child { margin: 0px; } .framer-DmFpt.framer-v-1pakwig .framer-15ali2g > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-DmFpt.framer-v-1pakwig .framer-15ali2g > :first-child { margin-left: 0px; } .framer-DmFpt.framer-v-1pakwig .framer-15ali2g > :last-child { margin-right: 0px; } }\",\".framer-DmFpt.framer-v-nva4oz .framer-5dewac { padding: 0px 24px 0px 0px; }\",\".framer-DmFpt.framer-v-x5gt92 .framer-1uvi7fd { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; }\",\".framer-DmFpt.framer-v-x5gt92 .framer-rwmbmt { flex: none; gap: unset; justify-content: space-between; width: 100%; }\",\".framer-DmFpt.framer-v-x5gt92 .framer-15ali2g { flex: none; gap: 0px; width: min-content; }\",\".framer-DmFpt.framer-v-x5gt92 .framer-5dewac { flex-direction: column; gap: 25px; height: min-content; padding: 0px 0px 24px 0px; width: 100%; }\",\".framer-DmFpt.framer-v-x5gt92 .framer-8kgzyp { flex-direction: column; height: min-content; order: 0; width: 100%; }\",\".framer-DmFpt.framer-v-x5gt92 .framer-e0soum { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DmFpt.framer-v-x5gt92 .framer-1uvi7fd, .framer-DmFpt.framer-v-x5gt92 .framer-rwmbmt, .framer-DmFpt.framer-v-x5gt92 .framer-15ali2g, .framer-DmFpt.framer-v-x5gt92 .framer-5dewac, .framer-DmFpt.framer-v-x5gt92 .framer-8kgzyp { gap: 0px; } .framer-DmFpt.framer-v-x5gt92 .framer-1uvi7fd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-DmFpt.framer-v-x5gt92 .framer-1uvi7fd > :first-child, .framer-DmFpt.framer-v-x5gt92 .framer-5dewac > :first-child, .framer-DmFpt.framer-v-x5gt92 .framer-8kgzyp > :first-child { margin-top: 0px; } .framer-DmFpt.framer-v-x5gt92 .framer-1uvi7fd > :last-child, .framer-DmFpt.framer-v-x5gt92 .framer-5dewac > :last-child, .framer-DmFpt.framer-v-x5gt92 .framer-8kgzyp > :last-child { margin-bottom: 0px; } .framer-DmFpt.framer-v-x5gt92 .framer-rwmbmt > *, .framer-DmFpt.framer-v-x5gt92 .framer-rwmbmt > :first-child, .framer-DmFpt.framer-v-x5gt92 .framer-rwmbmt > :last-child { margin: 0px; } .framer-DmFpt.framer-v-x5gt92 .framer-15ali2g > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-DmFpt.framer-v-x5gt92 .framer-15ali2g > :first-child { margin-left: 0px; } .framer-DmFpt.framer-v-x5gt92 .framer-15ali2g > :last-child { margin-right: 0px; } .framer-DmFpt.framer-v-x5gt92 .framer-5dewac > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-DmFpt.framer-v-x5gt92 .framer-8kgzyp > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-DmFpt.framer-v-bnuo7u .framer-1ux2brg { gap: 0px; justify-content: center; width: 817px; }\",\".framer-DmFpt.framer-v-bnuo7u .framer-1uvi7fd { flex: none; width: 787px; }\",\".framer-DmFpt.framer-v-bnuo7u .framer-rwmbmt { flex: none; gap: 0px; height: min-content; width: 167px; }\",\".framer-DmFpt.framer-v-bnuo7u .framer-15ali2g { height: min-content; min-height: 54px; }\",\".framer-DmFpt.framer-v-bnuo7u .framer-5dewac { gap: 8px; width: 590px; }\",\".framer-DmFpt.framer-v-bnuo7u .framer-8kgzyp { gap: 4px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DmFpt.framer-v-bnuo7u .framer-1ux2brg, .framer-DmFpt.framer-v-bnuo7u .framer-rwmbmt, .framer-DmFpt.framer-v-bnuo7u .framer-5dewac, .framer-DmFpt.framer-v-bnuo7u .framer-8kgzyp { gap: 0px; } .framer-DmFpt.framer-v-bnuo7u .framer-1ux2brg > *, .framer-DmFpt.framer-v-bnuo7u .framer-rwmbmt > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-DmFpt.framer-v-bnuo7u .framer-1ux2brg > :first-child, .framer-DmFpt.framer-v-bnuo7u .framer-rwmbmt > :first-child, .framer-DmFpt.framer-v-bnuo7u .framer-5dewac > :first-child, .framer-DmFpt.framer-v-bnuo7u .framer-8kgzyp > :first-child { margin-left: 0px; } .framer-DmFpt.framer-v-bnuo7u .framer-1ux2brg > :last-child, .framer-DmFpt.framer-v-bnuo7u .framer-rwmbmt > :last-child, .framer-DmFpt.framer-v-bnuo7u .framer-5dewac > :last-child, .framer-DmFpt.framer-v-bnuo7u .framer-8kgzyp > :last-child { margin-right: 0px; } .framer-DmFpt.framer-v-bnuo7u .framer-5dewac > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-DmFpt.framer-v-bnuo7u .framer-8kgzyp > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 82\n * @framerIntrinsicWidth 1140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"PxSxoCny9\":{\"layout\":[\"fixed\",\"auto\"]},\"j5NQdGI9H\":{\"layout\":[\"fixed\",\"auto\"]},\"BySA85S21\":{\"layout\":[\"fixed\",\"auto\"]},\"GDWMc1Gt3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables false\n */ const FramerA18CBMI3a=withCSS(Component,css,\"framer-DmFpt\");export default FramerA18CBMI3a;FramerA18CBMI3a.displayName=\"Navbar\";FramerA18CBMI3a.defaultProps={height:82,width:1140};addPropertyControls(FramerA18CBMI3a,{variant:{options:[\"zQJyXTJbe\",\"PxSxoCny9\",\"j5NQdGI9H\",\"BySA85S21\",\"GDWMc1Gt3\"],optionTitles:[\"Default\",\"Phone\",\"Dropdown Open\",\"Phone Open - Dropdown Open\",\"Tablet\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerA18CBMI3a,[{family:\"Inter\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/A18CBMI3a:default\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf\",weight:\"500\"},...MenuIconFonts,...ButtonFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerA18CBMI3a\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1140\",\"framerImmutableVariables\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PxSxoCny9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"j5NQdGI9H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BySA85S21\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GDWMc1Gt3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"82\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./A18CBMI3a.map", "// Generated by Framer (92f3d02)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Navbar from\"https://framerusercontent.com/modules/sGI5QB1SitL0Igt0LqAu/yZTrHFRDclEqzKeqatt4/A18CBMI3a.js\";const NavbarFonts=getFonts(Navbar);const cycleOrder=[\"GYYukXGK4\",\"BsZbiiBrr\",\"xhSUYYFvV\",\"Yaz0A0Umw\",\"h3L0mKuqn\",\"B9vcJJXZA\"];const serializationHash=\"framer-6AETu\";const variantClassNames={B9vcJJXZA:\"framer-v-42kdfn\",BsZbiiBrr:\"framer-v-1wrb1ps\",GYYukXGK4:\"framer-v-5c7usc\",h3L0mKuqn:\"framer-v-jv7fdp\",xhSUYYFvV:\"framer-v-1gwd8eo\",Yaz0A0Umw:\"framer-v-15eyk48\"};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(React.Fragment);const humanReadableVariantMap={\"Variant 4\":\"Yaz0A0Umw\",\"Variant 5\":\"h3L0mKuqn\",\"Variant 6\":\"B9vcJJXZA\",Default:\"GYYukXGK4\",Phone:\"xhSUYYFvV\",Tablet:\"BsZbiiBrr\"};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:\"GYYukXGK4\"};};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:\"GYYukXGK4\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-5c7usc\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"GYYukXGK4\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{B9vcJJXZA:{backgroundColor:\"var(--token-875db6a9-e245-4a64-9abf-131139521f15, rgb(239, 242, 243))\"},h3L0mKuqn:{backgroundColor:\"var(--token-875db6a9-e245-4a64-9abf-131139521f15, rgb(239, 242, 243))\"},Yaz0A0Umw:{backgroundColor:\"var(--token-875db6a9-e245-4a64-9abf-131139521f15, rgb(239, 242, 243))\"}},...addPropertyOverrides({B9vcJJXZA:{\"data-framer-name\":\"Variant 6\"},BsZbiiBrr:{\"data-framer-name\":\"Tablet\"},h3L0mKuqn:{\"data-framer-name\":\"Variant 5\"},xhSUYYFvV:{\"data-framer-name\":\"Phone\"},Yaz0A0Umw:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pzuqhx-container\",layoutDependency:layoutDependency,layoutId:\"QMccPs2kI-container\",children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"QMccPs2kI\",layoutId:\"QMccPs2kI\",style:{width:\"100%\"},variant:\"zQJyXTJbe\",width:\"100%\",...addPropertyOverrides({B9vcJJXZA:{variant:\"PxSxoCny9\"},BsZbiiBrr:{variant:\"GDWMc1Gt3\"},xhSUYYFvV:{variant:\"PxSxoCny9\"}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6AETu.framer-strd6q, .framer-6AETu .framer-strd6q { display: block; }\",\".framer-6AETu.framer-5c7usc { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 12px 0px 8px 0px; position: relative; width: 1400px; }\",\".framer-6AETu .framer-1pzuqhx-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6AETu.framer-5c7usc { gap: 0px; } .framer-6AETu.framer-5c7usc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-6AETu.framer-5c7usc > :first-child { margin-top: 0px; } .framer-6AETu.framer-5c7usc > :last-child { margin-bottom: 0px; } }\",\".framer-6AETu.framer-v-1wrb1ps.framer-5c7usc, .framer-6AETu.framer-v-jv7fdp.framer-5c7usc { width: 856px; }\",\".framer-6AETu.framer-v-1wrb1ps .framer-1pzuqhx-container { width: auto; }\",\".framer-6AETu.framer-v-1gwd8eo.framer-5c7usc { width: 400px; }\",\".framer-6AETu.framer-v-42kdfn.framer-5c7usc { padding: 0px; width: 400px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 102\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"BsZbiiBrr\":{\"layout\":[\"fixed\",\"auto\"]},\"xhSUYYFvV\":{\"layout\":[\"fixed\",\"auto\"]},\"Yaz0A0Umw\":{\"layout\":[\"fixed\",\"auto\"]},\"h3L0mKuqn\":{\"layout\":[\"fixed\",\"auto\"]},\"B9vcJJXZA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkaGK67hRO=withCSS(Component,css,\"framer-6AETu\");export default FramerkaGK67hRO;FramerkaGK67hRO.displayName=\"Header\";FramerkaGK67hRO.defaultProps={height:102,width:1400};addPropertyControls(FramerkaGK67hRO,{variant:{options:[\"GYYukXGK4\",\"BsZbiiBrr\",\"xhSUYYFvV\",\"Yaz0A0Umw\",\"h3L0mKuqn\",\"B9vcJJXZA\"],optionTitles:[\"Default\",\"Tablet\",\"Phone\",\"Variant 4\",\"Variant 5\",\"Variant 6\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerkaGK67hRO,[{explicitInter:true,fonts:[]},...NavbarFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkaGK67hRO\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"102\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BsZbiiBrr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xhSUYYFvV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Yaz0A0Umw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"h3L0mKuqn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"B9vcJJXZA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kaGK67hRO.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=['.framer-1rawx .framer-styles-preset-1wxxn4b:not(.rich-text-wrapper), .framer-1rawx .framer-styles-preset-1wxxn4b.rich-text-wrapper a { --framer-link-current-text-color: var(--token-b509272c-aa41-4afc-a4c4-5d5f01608a83, #ffffff) /* {\"name\":\"Neutral 1\"} */; --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: var(--token-b509272c-aa41-4afc-a4c4-5d5f01608a83, #ffffff); --framer-link-text-decoration: none; }'];export const className=\"framer-1rawx\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["containerStyles", "emptyStateStyle", "containerStyles", "NullState", "Y", "_", "ref", "p", "r", "s", "o", "n", "t", "e", "l", "defaultEvents", "ControlType", "findByArray", "arr", "search", "getIconSelection", "iconKeys", "selectByList", "iconSearch", "iconSelection", "lowercaseIconKeyPairs", "iconSearchTerm", "_iconSearchTerm", "useIconSelection", "iconSearchResult", "se", "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", "emptyState", "RenderTarget", "p", "NullState", "addPropertyControls", "ControlType", "defaultEvents", "FeatherFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "link", "postAJob", "tap", "width", "props", "ref", "_variant", "ref1", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "MZ2eVjz3h", "YvZE4tquw", "oO5xubxvV", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1lerku8", "args", "isDisplayed", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "Link", "u", "RichText2", "x", "css", "FrameruIVWSsgAz", "withCSS", "uIVWSsgAz_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "TBgHLr7MW", "iWF8EWIN1", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapcmpkqa", "args", "onTapehverb", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "css", "FramerTflO6IJOQ", "withCSS", "TflO6IJOQ_default", "addPropertyControls", "ControlType", "addFonts", "MenuIconFonts", "getFonts", "TflO6IJOQ_default", "ButtonFonts", "uIVWSsgAz_default", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_variant", "ref", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap4vd7em", "args", "onTapi5asr4", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "router", "useRouter", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "Link", "SVG", "resolveLink", "RichText2", "x", "css", "FramerA18CBMI3a", "withCSS", "A18CBMI3a_default", "addPropertyControls", "ControlType", "addFonts", "NavbarFonts", "getFonts", "A18CBMI3a_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", "cx", "ComponentViewportProvider", "css", "FramerkaGK67hRO", "withCSS", "kaGK67hRO_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className"]
}
