{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/Ugd5xs9hXWgXwRXbjiJM/yWRbqQzWmt0xfb9uy6yp/CustomUtils.js", "ssg:https://framerusercontent.com/modules/n6eNZno8l3OhY9NeSJJd/tM3rvPbVwUR1AvIGI9dp/WithUpdateURLSearchParams.js", "ssg:https://framerusercontent.com/modules/1PS0Cll47Gc8S1c4Iy71/AbAg5VP4y24P0rP10jDQ/cSkkRxUbG.js", "ssg:https://framerusercontent.com/modules/iAOKxecXr0EJ143gNt5Z/qWjFHpyMdJZ8gY0IVwuM/vpu5A22CJ.js", "ssg:https://framerusercontent.com/modules/CphlaykMzfKSh8kqQeum/g4kTN4kDpvo6Ij4fB87n/BpBeq2TBa.js", "ssg:https://framerusercontent.com/modules/NCQlkSWW37DToeVdA9Iv/k8JI41Yg5StT1YtAe0M9/LDjILnfTJ.js", "ssg:https://framerusercontent.com/modules/B43d0aYjHxx9AwaOWoMq/UUxhXPwUfZjrunXhI6Yk/BEAhkbnww.js", "ssg:https://framerusercontent.com/modules/Pfp4NQ3o67E6T4x1RHuS/bd30rHLumX0TyMLsLmea/fmdKFpi1v.js", "ssg:https://framerusercontent.com/modules/pz5sv83zEItVp7nO6R8t/9ndtITGDeBuUvGCaSulJ/iC7cWkvuf.js", "ssg:https://framerusercontent.com/modules/OiRyrYrSRgBkED7GbEBh/ZIzIp3D78CgKp6DjdQ3Z/lpRiOhBCf.js", "ssg:https://framerusercontent.com/modules/s73K5DPtiJTsON9wvHYU/KHLJmM3ZujIcbd0BEgy7/State_Dropdown_Center.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "/**\n * Updates the search parameters of a given URL with new parameters.\n *\n * @param {string} url - The original URL to be updated.\n * @param {string} newParams - The new search parameters to be added or updated in the URL.\n * @returns {string} - The updated URL with the new search parameters.\n */export function updateURLSearchParams(url,newParams){// If no new parameters are provided, return the original URL\nif(!newParams){return url;}try{// Create a URL object from the input URL string\nconst urlObj=new URL(url);// Create URLSearchParams objects from the existing and new search parameters\nconst urlParamsObj=new URLSearchParams(urlObj.search);const newUrlParamsObj=new URLSearchParams(newParams);// Iterate over the new search parameters and update or append them to the existing parameters\nfor(let[k,v]of newUrlParamsObj){urlParamsObj.has(k)?urlParamsObj.set(k,v):urlParamsObj.append(k,v);}// Set the updated search parameters back to the URL object\nurlObj.search=urlParamsObj.toString();// Return the updated URL as a string\nreturn urlObj.toString();}catch(error){// Log a warning message and the error if an exception occurs\nconsole.warn(\"Error updating URLSearchParams\");console.warn(error);// Return the original URL if an error occurs\nreturn url;}}\nexport const __FramerMetadata__ = {\"exports\":{\"updateURLSearchParams\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CustomUtils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";import{updateURLSearchParams}from\"https://framerusercontent.com/modules/Ugd5xs9hXWgXwRXbjiJM/yWRbqQzWmt0xfb9uy6yp/CustomUtils.js\";export function withUpdateURLSearchParams(Component){return props=>{const[link,setLink]=useState(props.link||null);const[href,setHref]=useState(props.href||null);const componentRef=useRef(null);useEffect(()=>{if(window?.location?.search){if(link&&typeof link===\"string\"){setLink(updateURLSearchParams(link,window.location.search));}else if(href&&typeof href===\"string\"){setHref(updateURLSearchParams(href,window.location.search));}else if(componentRef.current){const links=componentRef.current.querySelectorAll(\"a[href]\");links.forEach(link=>{link.href=updateURLSearchParams(link.href,window.location.search);});}}},[]);const newProps={ref:componentRef};if(link){newProps[\"link\"]=link;}if(href){newProps[\"href\"]=href;}return /*#__PURE__*/_jsx(Component,{...props,...newProps});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withUpdateURLSearchParams\":{\"type\":\"reactHoc\",\"name\":\"withUpdateURLSearchParams\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WithUpdateURLSearchParams.map", "// Generated by Framer (9045c1a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const enabledGestures={BLJY3nWnc:{hover:true,pressed:true},cOZns_LUw:{hover:true},E12ItoONH:{hover:true},EWRbAxFix:{hover:true,pressed:true},K5kZNxvM3:{hover:true,pressed:true},M81o1Sp0m:{hover:true,pressed:true},nMIBo1Y2r:{hover:true,pressed:true},ParpVvTni:{hover:true,pressed:true},tlQb7Fm4z:{hover:true,pressed:true},vFqTvpxsv:{hover:true,pressed:true},VJQ1KY_It:{hover:true,pressed:true},zAWUvT6Oz:{hover:true}};const cycleOrder=[\"BLJY3nWnc\",\"tlQb7Fm4z\",\"EWRbAxFix\",\"vFqTvpxsv\",\"VJQ1KY_It\",\"M81o1Sp0m\",\"K5kZNxvM3\",\"ParpVvTni\",\"nMIBo1Y2r\",\"E12ItoONH\",\"zAWUvT6Oz\",\"cOZns_LUw\"];const serializationHash=\"framer-Jf5Sd\";const variantClassNames={BLJY3nWnc:\"framer-v-fe2pcb\",cOZns_LUw:\"framer-v-ghjj3f\",E12ItoONH:\"framer-v-1o8cip1\",EWRbAxFix:\"framer-v-10gvp4m\",K5kZNxvM3:\"framer-v-qjcxke\",M81o1Sp0m:\"framer-v-bz3osc\",nMIBo1Y2r:\"framer-v-1h9c7o2\",ParpVvTni:\"framer-v-lzgjov\",tlQb7Fm4z:\"framer-v-27d56c\",vFqTvpxsv:\"framer-v-12klr2a\",VJQ1KY_It:\"framer-v-g7dbpn\",zAWUvT6Oz:\"framer-v-1agmtto\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const convertFromBoolean=(value,activeLocale)=>{if(value){return 10;}else{return 5;}};const toNumber=value=>{if(typeof value===\"number\"&&Number.isFinite(value))return value;if(typeof value!==\"string\")return 0;const parsedNumber=parseFloat(value);return typeof parsedNumber===\"number\"&&Number.isFinite(parsedNumber)?parsedNumber:0;};const convertFromBoolean1=(value,activeLocale)=>{if(value){return 9;}else{return 4;}};const convertFromBoolean2=(value,activeLocale)=>{if(value){return 8;}else{return 3;}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Button [Default]\":\"BLJY3nWnc\",\"Button [Line]\":\"tlQb7Fm4z\",\"Button [sm Line]\":\"vFqTvpxsv\",\"Button [sm]\":\"EWRbAxFix\",\"Button [xs Line]\":\"M81o1Sp0m\",\"Button [xs]\":\"VJQ1KY_It\",\"Icon [Default]\":\"E12ItoONH\",\"Icon [sm]\":\"zAWUvT6Oz\",\"Icon [xs]\":\"cOZns_LUw\",\"Link [Default]\":\"K5kZNxvM3\",\"Link [sm]\":\"ParpVvTni\",\"Link [xs]\":\"nMIBo1Y2r\"};const getProps=({border,border2,buttonColor,buttonText,buttonTextColor,height,iconAnimation,iconName,id,link,newTab,radius,shadow,showIcon,tap,width,...props})=>{return{...props,ApWhoO21o:border??props.ApWhoO21o??{borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderStyle:\"solid\",borderWidth:1},ey7w8muFX:newTab??props.ey7w8muFX,G77f5Yx_v:buttonText??props.G77f5Yx_v??\"Button Label\",HFfTjmBlq:buttonTextColor??props.HFfTjmBlq??\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",n9WP3fBIv:showIcon??props.n9WP3fBIv??true,nSQvgmbyz:tap??props.nSQvgmbyz,oV7zrnzuy:buttonColor??props.oV7zrnzuy??\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",SZQpZ3lk2:radius??props.SZQpZ3lk2??8,U1Kbkgydv:link??props.U1Kbkgydv,variant:humanReadableVariantMap[props.variant]??props.variant??\"BLJY3nWnc\",vfQAwnju6:border2??props.vfQAwnju6??{borderColor:\"rgb(230, 230, 232)\",borderStyle:\"solid\",borderWidth:1},VkxZQkMEC:shadow??props.VkxZQkMEC??\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(9, 9, 11, 0.10798), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(9, 9, 11, 0.09534), 0px 10px 10px -3.75px rgba(9, 9, 11, 0.0375)\",Vo_oxchYD:iconName??props.Vo_oxchYD??\"CaretRight\",WM2TpCryl:iconAnimation??props.WM2TpCryl};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,G77f5Yx_v,U1Kbkgydv,ey7w8muFX,oV7zrnzuy,HFfTjmBlq,VkxZQkMEC,n9WP3fBIv,Vo_oxchYD,ApWhoO21o,SZQpZ3lk2,WM2TpCryl,nSQvgmbyz,vfQAwnju6,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BLJY3nWnc\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1pc7sz3=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(nSQvgmbyz){const res=await nSQvgmbyz(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const gap=toNumber(convertFromBoolean(equals(WM2TpCryl,true),activeLocale));const gap1=toNumber(convertFromBoolean1(equals(WM2TpCryl,true),activeLocale));const gap2=toNumber(convertFromBoolean(WM2TpCryl,activeLocale));const gap3=toNumber(convertFromBoolean1(WM2TpCryl,activeLocale));const gap4=toNumber(convertFromBoolean2(WM2TpCryl,activeLocale));const isDisplayed=()=>{if([\"E12ItoONH-hover\",\"zAWUvT6Oz-hover\",\"cOZns_LUw-hover\"].includes(gestureVariant))return false;if([\"E12ItoONH\",\"zAWUvT6Oz\",\"cOZns_LUw\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"M81o1Sp0m-hover\",\"M81o1Sp0m-pressed\"].includes(gestureVariant))return false;if(baseVariant===\"M81o1Sp0m\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:U1Kbkgydv,motionChild:true,nodeId:\"BLJY3nWnc\",openInNewTab:ey7w8muFX,scopeId:\"cSkkRxUbG\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-fe2pcb\",className,classNames)} framer-r7nilv`,\"data-border\":true,\"data-framer-name\":\"Button [Default]\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"BLJY3nWnc\",onTap:onTap1pc7sz3,ref:refBinding,style:{\"--1vfcgch\":gap1,\"--2tdpnr\":gap3,\"--456cd3\":gap4,\"--border-bottom-width\":(ApWhoO21o.borderBottomWidth??ApWhoO21o.borderWidth)+\"px\",\"--border-color\":ApWhoO21o.borderColor,\"--border-left-width\":(ApWhoO21o.borderLeftWidth??ApWhoO21o.borderWidth)+\"px\",\"--border-right-width\":(ApWhoO21o.borderRightWidth??ApWhoO21o.borderWidth)+\"px\",\"--border-style\":ApWhoO21o.borderStyle,\"--border-top-width\":(ApWhoO21o.borderTopWidth??ApWhoO21o.borderWidth)+\"px\",\"--dofoan\":gap2,\"--lhlnjo\":VkxZQkMEC,\"--rmohyg\":gap,backgroundColor:oV7zrnzuy,borderBottomLeftRadius:radiusForCorner(SZQpZ3lk2,3),borderBottomRightRadius:radiusForCorner(SZQpZ3lk2,2),borderTopLeftRadius:radiusForCorner(SZQpZ3lk2,0),borderTopRightRadius:radiusForCorner(SZQpZ3lk2,1),boxShadow:\"var(--lhlnjo)\",opacity:1,...style},variants:{\"BLJY3nWnc-hover\":{opacity:.6},\"BLJY3nWnc-pressed\":{opacity:.4},\"cOZns_LUw-hover\":{opacity:.6},\"E12ItoONH-hover\":{opacity:.6},\"EWRbAxFix-hover\":{opacity:.6},\"EWRbAxFix-pressed\":{opacity:.4},\"K5kZNxvM3-hover\":{opacity:.6},\"K5kZNxvM3-pressed\":{opacity:.4},\"M81o1Sp0m-hover\":{opacity:.6},\"M81o1Sp0m-pressed\":{opacity:.6},\"nMIBo1Y2r-hover\":{opacity:.6},\"nMIBo1Y2r-pressed\":{opacity:.4},\"ParpVvTni-hover\":{opacity:.6},\"ParpVvTni-pressed\":{opacity:.4},\"tlQb7Fm4z-hover\":{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:.6},\"tlQb7Fm4z-pressed\":{opacity:.4},\"vFqTvpxsv-hover\":{opacity:.6},\"vFqTvpxsv-pressed\":{opacity:.4},\"VJQ1KY_It-hover\":{opacity:.6},\"VJQ1KY_It-pressed\":{opacity:.6},\"zAWUvT6Oz-hover\":{opacity:.6},K5kZNxvM3:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},nMIBo1Y2r:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},ParpVvTni:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},VJQ1KY_It:{\"--border-bottom-width\":(vfQAwnju6.borderBottomWidth??vfQAwnju6.borderWidth)+\"px\",\"--border-color\":vfQAwnju6.borderColor,\"--border-left-width\":(vfQAwnju6.borderLeftWidth??vfQAwnju6.borderWidth)+\"px\",\"--border-right-width\":(vfQAwnju6.borderRightWidth??vfQAwnju6.borderWidth)+\"px\",\"--border-style\":vfQAwnju6.borderStyle,\"--border-top-width\":(vfQAwnju6.borderTopWidth??vfQAwnju6.borderWidth)+\"px\"}},...addPropertyOverrides({\"BLJY3nWnc-hover\":{\"data-framer-name\":undefined},\"BLJY3nWnc-pressed\":{\"data-framer-name\":undefined},\"cOZns_LUw-hover\":{\"data-framer-name\":undefined},\"E12ItoONH-hover\":{\"data-framer-name\":undefined},\"EWRbAxFix-hover\":{\"data-framer-name\":undefined},\"EWRbAxFix-pressed\":{\"data-framer-name\":undefined},\"K5kZNxvM3-hover\":{\"data-framer-name\":undefined},\"K5kZNxvM3-pressed\":{\"data-framer-name\":undefined},\"M81o1Sp0m-hover\":{\"data-framer-name\":undefined},\"M81o1Sp0m-pressed\":{\"data-framer-name\":undefined},\"nMIBo1Y2r-hover\":{\"data-framer-name\":undefined},\"nMIBo1Y2r-pressed\":{\"data-framer-name\":undefined},\"ParpVvTni-hover\":{\"data-framer-name\":undefined},\"ParpVvTni-pressed\":{\"data-framer-name\":undefined},\"tlQb7Fm4z-hover\":{\"data-framer-name\":undefined},\"tlQb7Fm4z-pressed\":{\"data-framer-name\":undefined},\"vFqTvpxsv-hover\":{\"data-framer-name\":undefined},\"vFqTvpxsv-pressed\":{\"data-framer-name\":undefined},\"VJQ1KY_It-hover\":{\"data-framer-name\":undefined},\"VJQ1KY_It-pressed\":{\"data-framer-name\":undefined},\"zAWUvT6Oz-hover\":{\"data-framer-name\":undefined},cOZns_LUw:{\"data-framer-name\":\"Icon [xs]\"},E12ItoONH:{\"data-framer-name\":\"Icon [Default]\"},EWRbAxFix:{\"data-framer-name\":\"Button [sm]\"},K5kZNxvM3:{\"data-framer-name\":\"Link [Default]\"},M81o1Sp0m:{\"data-framer-name\":\"Button [xs Line]\"},nMIBo1Y2r:{\"data-framer-name\":\"Link [xs]\"},ParpVvTni:{\"data-framer-name\":\"Link [sm]\"},tlQb7Fm4z:{\"data-framer-name\":\"Button [Line]\"},vFqTvpxsv:{\"data-framer-name\":\"Button [sm Line]\"},VJQ1KY_It:{\"data-framer-name\":\"Button [xs]\"},zAWUvT6Oz:{\"data-framer-name\":\"Icon [sm]\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-HFfTjmBlq-cSkkRxUbG))\"},children:\"Button Label\"})}),className:\"framer-1qdy45s\",\"data-highlight\":true,fonts:[\"GF;Inter Tight-500\"],layoutDependency:layoutDependency,layoutId:\"sE0wedXai\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-HFfTjmBlq-cSkkRxUbG)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-HFfTjmBlq-cSkkRxUbG\":HFfTjmBlq},text:G77f5Yx_v,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({EWRbAxFix:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-HFfTjmBlq-cSkkRxUbG))\"},children:\"Button Label\"})}),fonts:[\"GF;Inter Tight-600\"]},M81o1Sp0m:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-HFfTjmBlq-cSkkRxUbG))\"},children:\"Button Label\"})}),fonts:[\"FR;InterDisplay-Medium\"]},nMIBo1Y2r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-HFfTjmBlq-cSkkRxUbG))\"},children:\"Button Label\"})})},ParpVvTni:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-HFfTjmBlq-cSkkRxUbG))\"},children:\"Button Label\"})})},vFqTvpxsv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-HFfTjmBlq-cSkkRxUbG))\"},children:\"Button Label\"})}),fonts:[\"GF;Inter Tight-600\"]},VJQ1KY_It:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-HFfTjmBlq-cSkkRxUbG))\"},children:\"Button Label\"})}),fonts:[\"GF;Inter Tight-600\"]}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-v1zh86\",layoutDependency:layoutDependency,layoutId:\"Us2BAI8Om\",children:n9WP3fBIv&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1i8f5q8-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"xrwb2YXMa-container\",nodeId:\"xrwb2YXMa\",rendersWithMotion:true,scopeId:\"cSkkRxUbG\",children:/*#__PURE__*/_jsx(Phosphor,{color:HFfTjmBlq,height:\"100%\",iconSearch:\"House\",iconSelection:Vo_oxchYD,id:\"xrwb2YXMa\",layoutId:\"xrwb2YXMa\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Jf5Sd.framer-r7nilv, .framer-Jf5Sd .framer-r7nilv { display: block; }\",\".framer-Jf5Sd.framer-fe2pcb { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 50px; justify-content: center; overflow: visible; padding: 14px 20px 14px 25px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Jf5Sd .framer-1qdy45s { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Jf5Sd .framer-v1zh86 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Jf5Sd .framer-1i8f5q8-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jf5Sd.framer-fe2pcb, .framer-Jf5Sd .framer-v1zh86 { gap: 0px; } .framer-Jf5Sd.framer-fe2pcb > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-Jf5Sd.framer-fe2pcb > :first-child { margin-left: 0px; } .framer-Jf5Sd.framer-fe2pcb > :last-child { margin-right: 0px; } .framer-Jf5Sd .framer-v1zh86 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Jf5Sd .framer-v1zh86 > :first-child { margin-top: 0px; } .framer-Jf5Sd .framer-v1zh86 > :last-child { margin-bottom: 0px; } }\",\".framer-Jf5Sd.framer-v-10gvp4m.framer-fe2pcb { gap: 4px; height: 40px; padding: 9px 12px 9px 16px; }\",\".framer-Jf5Sd.framer-v-10gvp4m .framer-1i8f5q8-container, .framer-Jf5Sd.framer-v-12klr2a .framer-1i8f5q8-container, .framer-Jf5Sd.framer-v-lzgjov .framer-1i8f5q8-container { height: var(--framer-aspect-ratio-supported, 17px); width: 14px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jf5Sd.framer-v-10gvp4m.framer-fe2pcb { gap: 0px; } .framer-Jf5Sd.framer-v-10gvp4m.framer-fe2pcb > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-Jf5Sd.framer-v-10gvp4m.framer-fe2pcb > :first-child { margin-left: 0px; } .framer-Jf5Sd.framer-v-10gvp4m.framer-fe2pcb > :last-child { margin-right: 0px; } }\",\".framer-Jf5Sd.framer-v-12klr2a.framer-fe2pcb { gap: 4px; height: 40px; padding: 10px 12px 10px 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jf5Sd.framer-v-12klr2a.framer-fe2pcb { gap: 0px; } .framer-Jf5Sd.framer-v-12klr2a.framer-fe2pcb > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-Jf5Sd.framer-v-12klr2a.framer-fe2pcb > :first-child { margin-left: 0px; } .framer-Jf5Sd.framer-v-12klr2a.framer-fe2pcb > :last-child { margin-right: 0px; } }\",\".framer-Jf5Sd.framer-v-g7dbpn.framer-fe2pcb { gap: 4px; height: 30px; padding: 5px 8px 5px 12px; }\",\".framer-Jf5Sd.framer-v-g7dbpn .framer-1i8f5q8-container { height: var(--framer-aspect-ratio-supported, 15px); width: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jf5Sd.framer-v-g7dbpn.framer-fe2pcb { gap: 0px; } .framer-Jf5Sd.framer-v-g7dbpn.framer-fe2pcb > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-Jf5Sd.framer-v-g7dbpn.framer-fe2pcb > :first-child { margin-left: 0px; } .framer-Jf5Sd.framer-v-g7dbpn.framer-fe2pcb > :last-child { margin-right: 0px; } }\",\".framer-Jf5Sd.framer-v-bz3osc.framer-fe2pcb { gap: 4px; height: min-content; padding: 10px 12px 10px 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jf5Sd.framer-v-bz3osc.framer-fe2pcb { gap: 0px; } .framer-Jf5Sd.framer-v-bz3osc.framer-fe2pcb > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-Jf5Sd.framer-v-bz3osc.framer-fe2pcb > :first-child { margin-left: 0px; } .framer-Jf5Sd.framer-v-bz3osc.framer-fe2pcb > :last-child { margin-right: 0px; } }\",\".framer-Jf5Sd.framer-v-qjcxke.framer-fe2pcb { height: min-content; justify-content: flex-start; padding: 0px; }\",\".framer-Jf5Sd.framer-v-lzgjov.framer-fe2pcb { gap: 4px; height: min-content; justify-content: flex-start; padding: 0px; width: 101px; }\",\".framer-Jf5Sd.framer-v-lzgjov .framer-1qdy45s { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jf5Sd.framer-v-lzgjov.framer-fe2pcb { gap: 0px; } .framer-Jf5Sd.framer-v-lzgjov.framer-fe2pcb > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-Jf5Sd.framer-v-lzgjov.framer-fe2pcb > :first-child { margin-left: 0px; } .framer-Jf5Sd.framer-v-lzgjov.framer-fe2pcb > :last-child { margin-right: 0px; } }\",\".framer-Jf5Sd.framer-v-1h9c7o2.framer-fe2pcb { gap: 3px; height: min-content; justify-content: flex-start; padding: 0px; }\",\".framer-Jf5Sd.framer-v-1h9c7o2 .framer-1i8f5q8-container { aspect-ratio: unset; height: 12px; width: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jf5Sd.framer-v-1h9c7o2.framer-fe2pcb { gap: 0px; } .framer-Jf5Sd.framer-v-1h9c7o2.framer-fe2pcb > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-Jf5Sd.framer-v-1h9c7o2.framer-fe2pcb > :first-child { margin-left: 0px; } .framer-Jf5Sd.framer-v-1h9c7o2.framer-fe2pcb > :last-child { margin-right: 0px; } }\",\".framer-Jf5Sd.framer-v-1o8cip1.framer-fe2pcb { height: min-content; padding: 15px; }\",\".framer-Jf5Sd.framer-v-1o8cip1 .framer-1i8f5q8-container, .framer-Jf5Sd.framer-v-1agmtto .framer-1i8f5q8-container { aspect-ratio: unset; height: 22px; width: 22px; }\",\".framer-Jf5Sd.framer-v-1agmtto.framer-fe2pcb { height: min-content; padding: 10px; }\",\".framer-Jf5Sd.framer-v-ghjj3f.framer-fe2pcb { height: min-content; padding: 8px; }\",\".framer-Jf5Sd.framer-v-ghjj3f .framer-1i8f5q8-container { aspect-ratio: unset; height: 18px; width: 18px; }\",\".framer-Jf5Sd.framer-v-fe2pcb.hover.framer-fe2pcb, .framer-Jf5Sd.framer-v-27d56c.hover.framer-fe2pcb { gap: calc(max(0, var(--rmohyg)) * 1px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jf5Sd.framer-v-fe2pcb.hover.framer-fe2pcb { gap: 0px; } .framer-Jf5Sd.framer-v-fe2pcb.hover.framer-fe2pcb > * { margin: 0px; margin-left: calc(calc(max(0, var(--rmohyg)) * 1px) / 2); margin-right: calc(calc(max(0, var(--rmohyg)) * 1px) / 2); } .framer-Jf5Sd.framer-v-fe2pcb.hover.framer-fe2pcb > :first-child { margin-left: 0px; } .framer-Jf5Sd.framer-v-fe2pcb.hover.framer-fe2pcb > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jf5Sd.framer-v-27d56c.hover.framer-fe2pcb { gap: 0px; } .framer-Jf5Sd.framer-v-27d56c.hover.framer-fe2pcb > * { margin: 0px; margin-left: calc(calc(max(0, var(--rmohyg)) * 1px) / 2); margin-right: calc(calc(max(0, var(--rmohyg)) * 1px) / 2); } .framer-Jf5Sd.framer-v-27d56c.hover.framer-fe2pcb > :first-child { margin-left: 0px; } .framer-Jf5Sd.framer-v-27d56c.hover.framer-fe2pcb > :last-child { margin-right: 0px; } }\",\".framer-Jf5Sd.framer-v-10gvp4m.hover.framer-fe2pcb, .framer-Jf5Sd.framer-v-12klr2a.hover.framer-fe2pcb, .framer-Jf5Sd.framer-v-g7dbpn.hover.framer-fe2pcb { gap: calc(max(0, var(--1vfcgch)) * 1px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jf5Sd.framer-v-10gvp4m.hover.framer-fe2pcb { gap: 0px; } .framer-Jf5Sd.framer-v-10gvp4m.hover.framer-fe2pcb > * { margin: 0px; margin-left: calc(calc(max(0, var(--1vfcgch)) * 1px) / 2); margin-right: calc(calc(max(0, var(--1vfcgch)) * 1px) / 2); } .framer-Jf5Sd.framer-v-10gvp4m.hover.framer-fe2pcb > :first-child { margin-left: 0px; } .framer-Jf5Sd.framer-v-10gvp4m.hover.framer-fe2pcb > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jf5Sd.framer-v-12klr2a.hover.framer-fe2pcb { gap: 0px; } .framer-Jf5Sd.framer-v-12klr2a.hover.framer-fe2pcb > * { margin: 0px; margin-left: calc(calc(max(0, var(--1vfcgch)) * 1px) / 2); margin-right: calc(calc(max(0, var(--1vfcgch)) * 1px) / 2); } .framer-Jf5Sd.framer-v-12klr2a.hover.framer-fe2pcb > :first-child { margin-left: 0px; } .framer-Jf5Sd.framer-v-12klr2a.hover.framer-fe2pcb > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jf5Sd.framer-v-g7dbpn.hover.framer-fe2pcb { gap: 0px; } .framer-Jf5Sd.framer-v-g7dbpn.hover.framer-fe2pcb > * { margin: 0px; margin-left: calc(calc(max(0, var(--1vfcgch)) * 1px) / 2); margin-right: calc(calc(max(0, var(--1vfcgch)) * 1px) / 2); } .framer-Jf5Sd.framer-v-g7dbpn.hover.framer-fe2pcb > :first-child { margin-left: 0px; } .framer-Jf5Sd.framer-v-g7dbpn.hover.framer-fe2pcb > :last-child { margin-right: 0px; } }\",\".framer-Jf5Sd.framer-v-qjcxke.hover.framer-fe2pcb { gap: calc(max(0, var(--dofoan)) * 1px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jf5Sd.framer-v-qjcxke.hover.framer-fe2pcb { gap: 0px; } .framer-Jf5Sd.framer-v-qjcxke.hover.framer-fe2pcb > * { margin: 0px; margin-left: calc(calc(max(0, var(--dofoan)) * 1px) / 2); margin-right: calc(calc(max(0, var(--dofoan)) * 1px) / 2); } .framer-Jf5Sd.framer-v-qjcxke.hover.framer-fe2pcb > :first-child { margin-left: 0px; } .framer-Jf5Sd.framer-v-qjcxke.hover.framer-fe2pcb > :last-child { margin-right: 0px; } }\",\".framer-Jf5Sd.framer-v-lzgjov.hover.framer-fe2pcb { gap: calc(max(0, var(--2tdpnr)) * 1px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jf5Sd.framer-v-lzgjov.hover.framer-fe2pcb { gap: 0px; } .framer-Jf5Sd.framer-v-lzgjov.hover.framer-fe2pcb > * { margin: 0px; margin-left: calc(calc(max(0, var(--2tdpnr)) * 1px) / 2); margin-right: calc(calc(max(0, var(--2tdpnr)) * 1px) / 2); } .framer-Jf5Sd.framer-v-lzgjov.hover.framer-fe2pcb > :first-child { margin-left: 0px; } .framer-Jf5Sd.framer-v-lzgjov.hover.framer-fe2pcb > :last-child { margin-right: 0px; } }\",\".framer-Jf5Sd.framer-v-1h9c7o2.hover.framer-fe2pcb { gap: calc(max(0, var(--456cd3)) * 1px); }\",\".framer-Jf5Sd.framer-v-1h9c7o2.hover .framer-1i8f5q8-container, .framer-Jf5Sd.framer-v-1h9c7o2.pressed .framer-1i8f5q8-container, .framer-Jf5Sd.framer-v-1o8cip1.hover .framer-1i8f5q8-container, .framer-Jf5Sd.framer-v-1agmtto.hover .framer-1i8f5q8-container, .framer-Jf5Sd.framer-v-ghjj3f.hover .framer-1i8f5q8-container { aspect-ratio: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jf5Sd.framer-v-1h9c7o2.hover.framer-fe2pcb { gap: 0px; } .framer-Jf5Sd.framer-v-1h9c7o2.hover.framer-fe2pcb > * { margin: 0px; margin-left: calc(calc(max(0, var(--456cd3)) * 1px) / 2); margin-right: calc(calc(max(0, var(--456cd3)) * 1px) / 2); } .framer-Jf5Sd.framer-v-1h9c7o2.hover.framer-fe2pcb > :first-child { margin-left: 0px; } .framer-Jf5Sd.framer-v-1h9c7o2.hover.framer-fe2pcb > :last-child { margin-right: 0px; } }\",'.framer-Jf5Sd[data-border=\"true\"]::after, .framer-Jf5Sd [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 160\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"tlQb7Fm4z\":{\"layout\":[\"auto\",\"fixed\"]},\"EWRbAxFix\":{\"layout\":[\"auto\",\"fixed\"]},\"vFqTvpxsv\":{\"layout\":[\"auto\",\"fixed\"]},\"VJQ1KY_It\":{\"layout\":[\"auto\",\"fixed\"]},\"M81o1Sp0m\":{\"layout\":[\"auto\",\"auto\"]},\"K5kZNxvM3\":{\"layout\":[\"auto\",\"auto\"]},\"ParpVvTni\":{\"layout\":[\"fixed\",\"auto\"]},\"nMIBo1Y2r\":{\"layout\":[\"auto\",\"auto\"]},\"E12ItoONH\":{\"layout\":[\"auto\",\"auto\"]},\"zAWUvT6Oz\":{\"layout\":[\"auto\",\"auto\"]},\"cOZns_LUw\":{\"layout\":[\"auto\",\"auto\"]},\"TrqCOE6oE\":{\"layout\":[\"auto\",\"fixed\"]},\"Gza79RpjZ\":{\"layout\":[\"auto\",\"fixed\"]},\"vaWcenZbS\":{\"layout\":[\"auto\",\"fixed\"]},\"qFlr5i_fm\":{\"layout\":[\"auto\",\"fixed\"]},\"ccyX86M9T\":{\"layout\":[\"auto\",\"fixed\"]},\"og0xMtjn7\":{\"layout\":[\"auto\",\"fixed\"]},\"rdLa8xJhp\":{\"layout\":[\"auto\",\"fixed\"]},\"R2sahfQKR\":{\"layout\":[\"auto\",\"fixed\"]},\"QSd11LdjQ\":{\"layout\":[\"auto\",\"fixed\"]},\"ZV7kbgVsL\":{\"layout\":[\"auto\",\"fixed\"]},\"wHzTczOfD\":{\"layout\":[\"auto\",\"auto\"]},\"oxqfJj3E3\":{\"layout\":[\"auto\",\"auto\"]},\"ONaBvrd3V\":{\"layout\":[\"auto\",\"auto\"]},\"tc8P37NsQ\":{\"layout\":[\"auto\",\"auto\"]},\"zubr7iJQJ\":{\"layout\":[\"fixed\",\"auto\"]},\"YqCgDBiRF\":{\"layout\":[\"fixed\",\"auto\"]},\"Vm2SczBU1\":{\"layout\":[\"auto\",\"auto\"]},\"AmhjL2KHD\":{\"layout\":[\"auto\",\"auto\"]},\"QuZFwU_l5\":{\"layout\":[\"auto\",\"auto\"]},\"MkjjCrWaq\":{\"layout\":[\"auto\",\"auto\"]},\"Ns6Xs0CQl\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"G77f5Yx_v\":\"buttonText\",\"U1Kbkgydv\":\"link\",\"ey7w8muFX\":\"newTab\",\"oV7zrnzuy\":\"buttonColor\",\"HFfTjmBlq\":\"buttonTextColor\",\"VkxZQkMEC\":\"shadow\",\"n9WP3fBIv\":\"showIcon\",\"Vo_oxchYD\":\"iconName\",\"ApWhoO21o\":\"border\",\"SZQpZ3lk2\":\"radius\",\"WM2TpCryl\":\"iconAnimation\",\"nSQvgmbyz\":\"tap\",\"vfQAwnju6\":\"border2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercSkkRxUbG=withCSS(Component,css,\"framer-Jf5Sd\");export default FramercSkkRxUbG;FramercSkkRxUbG.displayName=\"Button\";FramercSkkRxUbG.defaultProps={height:50,width:160};addPropertyControls(FramercSkkRxUbG,{variant:{options:[\"BLJY3nWnc\",\"tlQb7Fm4z\",\"EWRbAxFix\",\"vFqTvpxsv\",\"VJQ1KY_It\",\"M81o1Sp0m\",\"K5kZNxvM3\",\"ParpVvTni\",\"nMIBo1Y2r\",\"E12ItoONH\",\"zAWUvT6Oz\",\"cOZns_LUw\"],optionTitles:[\"Button [Default]\",\"Button [Line]\",\"Button [sm]\",\"Button [sm Line]\",\"Button [xs]\",\"Button [xs Line]\",\"Link [Default]\",\"Link [sm]\",\"Link [xs]\",\"Icon [Default]\",\"Icon [sm]\",\"Icon [xs]\"],title:\"Variant\",type:ControlType.Enum},G77f5Yx_v:{defaultValue:\"Button Label\",displayTextArea:false,placeholder:\"\",title:\"Button Text\",type:ControlType.String},U1Kbkgydv:{title:\"Link\",type:ControlType.Link},ey7w8muFX:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},oV7zrnzuy:{defaultValue:'var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255)) /* {\"name\":\"White/Gray 950 [Dynamic]\"} */',title:\"Button Color\",type:ControlType.Color},HFfTjmBlq:{defaultValue:'var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11)) /* {\"name\":\"Gray 950 [Dynamic]\"} */',title:\"Button Text Color\",type:ControlType.Color},VkxZQkMEC:{defaultValue:[{blur:3,color:\"rgba(9, 9, 11, 0.15)\",diffusion:.25,focus:.5,inset:false,spread:0,type:\"realistic\",x:0,y:10}],title:\"Shadow\",type:ControlType.BoxShadow},n9WP3fBIv:{defaultValue:true,title:\"Show Icon\",type:ControlType.Boolean},Vo_oxchYD:PhosphorControls?.[\"iconSelection\"]&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"CaretRight\",description:undefined,hidden:undefined,title:\"Icon Name\"},ApWhoO21o:{defaultValue:{borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderStyle:\"solid\",borderWidth:1},title:\"Border\",type:ControlType.Border},SZQpZ3lk2:{defaultValue:8,title:\"Radius\",type:ControlType.Number},WM2TpCryl:{defaultValue:false,title:\"Icon Animation\",type:ControlType.Boolean},nSQvgmbyz:{title:\"Tap\",type:ControlType.EventHandler},vfQAwnju6:{defaultValue:{borderColor:\"rgb(230, 230, 232)\",borderStyle:\"solid\",borderWidth:1},title:\"Border 2\",type:ControlType.Border}});addFonts(FramercSkkRxUbG,[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qWSRToK8EPg.woff2\",weight:\"500\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqWSRToK8EPg.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/ePuN3mCjzajIHnyCdvKBFiZkyY0.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/V3j1L0o5vPFKe26Sw4HcpXCfHo.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/F3kdpd2N0cToWV5huaZjjgM.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/0iDmxkizU9goZoclqIqsV5rvETU.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/r0mv3NegmA0akcQsNFotG32Las.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/8yoV9pUxquX7VD7ZXlNYKQmkmk.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/Ii21jnSJkulBKsHHXKlapi7fv9w.woff2\",weight:\"500\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercSkkRxUbG\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"50\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"tlQb7Fm4z\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"EWRbAxFix\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"vFqTvpxsv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"VJQ1KY_It\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"M81o1Sp0m\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"K5kZNxvM3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ParpVvTni\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nMIBo1Y2r\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"E12ItoONH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zAWUvT6Oz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cOZns_LUw\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"TrqCOE6oE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Gza79RpjZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"vaWcenZbS\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"qFlr5i_fm\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"ccyX86M9T\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"og0xMtjn7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"rdLa8xJhp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"R2sahfQKR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"QSd11LdjQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"ZV7kbgVsL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"wHzTczOfD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"oxqfJj3E3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ONaBvrd3V\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tc8P37NsQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zubr7iJQJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YqCgDBiRF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Vm2SczBU1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AmhjL2KHD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"QuZFwU_l5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"MkjjCrWaq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Ns6Xs0CQl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"G77f5Yx_v\\\":\\\"buttonText\\\",\\\"U1Kbkgydv\\\":\\\"link\\\",\\\"ey7w8muFX\\\":\\\"newTab\\\",\\\"oV7zrnzuy\\\":\\\"buttonColor\\\",\\\"HFfTjmBlq\\\":\\\"buttonTextColor\\\",\\\"VkxZQkMEC\\\":\\\"shadow\\\",\\\"n9WP3fBIv\\\":\\\"showIcon\\\",\\\"Vo_oxchYD\\\":\\\"iconName\\\",\\\"ApWhoO21o\\\":\\\"border\\\",\\\"SZQpZ3lk2\\\":\\\"radius\\\",\\\"WM2TpCryl\\\":\\\"iconAnimation\\\",\\\"nSQvgmbyz\\\":\\\"tap\\\",\\\"vfQAwnju6\\\":\\\"border2\\\"}\",\"framerIntrinsicWidth\":\"160\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cSkkRxUbG.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={M5knlVpZZ:{hover:true}};const cycleOrder=[\"M5knlVpZZ\",\"glYJEhi3Q\",\"lEn1c25T7\",\"mprbMP1S0\",\"Ee_ECe1lh\"];const serializationHash=\"framer-HXoan\";const variantClassNames={Ee_ECe1lh:\"framer-v-9510kj\",glYJEhi3Q:\"framer-v-32rzxn\",lEn1c25T7:\"framer-v-eiar2v\",M5knlVpZZ:\"framer-v-mwbc69\",mprbMP1S0:\"framer-v-1o8bv9a\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};const transition1={damping:60,delay:0,mass:.5,stiffness:500,type:\"spring\"};const transition2={damping:60,delay:0,mass:.5,stiffness:300,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableVariantMap={\"Dropdown Title Item\":\"mprbMP1S0\",\"Empty space\":\"Ee_ECe1lh\",\"Menu Item Dropdown [Open]\":\"lEn1c25T7\",\"Menu Item Dropdown\":\"glYJEhi3Q\",\"Menu Item Simple\":\"M5knlVpZZ\"};const getProps=({align,bGColor,bGHover,height,hover,id,link,name1,openInNewTab,radius,tap,textColor,width,...props})=>{return{...props,dqMpST25y:radius??props.dqMpST25y??10,i6eMpMhze:tap??props.i6eMpMhze,i8hVK17KP:bGHover??props.i8hVK17KP??\"rgba(113, 113, 122, 0.08)\",ku0K5iab7:name1??props.ku0K5iab7??\"Link\",PnQ813Qxg:hover??props.PnQ813Qxg,stziIHmv7:bGColor??props.stziIHmv7??\"rgba(113, 113, 122, 0)\",T3ktnO2nz:openInNewTab??props.T3ktnO2nz,variant:humanReadableVariantMap[props.variant]??props.variant??\"M5knlVpZZ\",wGRcFK04x:textColor??props.wGRcFK04x??\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",ycFa86gVJ:humanReadableEnumMap[align]??align??props.ycFa86gVJ??\"center\",ZpWw94nXT:link??props.ZpWw94nXT};};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,ku0K5iab7,ZpWw94nXT,T3ktnO2nz,wGRcFK04x,stziIHmv7,i8hVK17KP,ycFa86gVJ,i6eMpMhze,PnQ813Qxg,dqMpST25y,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"M5knlVpZZ\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1p982a=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(PnQ813Qxg){const res=await PnQ813Qxg(...args);if(res===false)return false;}if(i6eMpMhze){const res=await i6eMpMhze(...args);if(res===false)return false;}});const onTapdzo4y0=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"glYJEhi3Q\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Ee_ECe1lh\")return false;return true;};const isDisplayed1=()=>{if([\"glYJEhi3Q\",\"lEn1c25T7\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({lEn1c25T7:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:ZpWw94nXT,motionChild:true,nodeId:\"M5knlVpZZ\",openInNewTab:T3ktnO2nz,smoothScroll:true,...addPropertyOverrides({Ee_ECe1lh:{href:undefined},mprbMP1S0:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-mwbc69\",className,classNames)} framer-1b2n16o`,\"data-framer-name\":\"Menu Item Simple\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"M5knlVpZZ\",onMouseEnter:onMouseEnter1p982a,ref:ref??ref1,style:{\"--1rj8ghj\":ycFa86gVJ,backgroundColor:stziIHmv7,borderBottomLeftRadius:radiusForCorner(dqMpST25y,3),borderBottomRightRadius:radiusForCorner(dqMpST25y,2),borderTopLeftRadius:radiusForCorner(dqMpST25y,0),borderTopRightRadius:radiusForCorner(dqMpST25y,1),...style},variants:{\"M5knlVpZZ-hover\":{backgroundColor:i8hVK17KP},lEn1c25T7:{backgroundColor:\"rgba(9, 9, 11, 0.05)\"}},...addPropertyOverrides({\"M5knlVpZZ-hover\":{\"data-framer-name\":undefined},Ee_ECe1lh:{\"data-framer-name\":\"Empty space\"},glYJEhi3Q:{\"data-framer-name\":\"Menu Item Dropdown\",onTap:onTapdzo4y0},lEn1c25T7:{\"data-framer-name\":\"Menu Item Dropdown [Open]\"},mprbMP1S0:{\"data-framer-name\":\"Dropdown Title Item\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-wGRcFK04x-vpu5A22CJ))\"},children:\"Link\"})}),className:\"framer-14lxpcr\",fonts:[\"GF;Inter Tight-500\"],layoutDependency:layoutDependency,layoutId:\"MEZnPWVxy\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-wGRcFK04x-vpu5A22CJ)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-wGRcFK04x-vpu5A22CJ\":wGRcFK04x},text:ku0K5iab7,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mprbMP1S0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-wGRcFK04x-vpu5A22CJ))\"},children:\"Link\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-jag43x\",layoutDependency:layoutDependency,layoutId:\"ns1_PSx4T\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-upex79-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Pf1oo9B5x-container\",nodeId:\"Pf1oo9B5x\",rendersWithMotion:true,scopeId:\"vpu5A22CJ\",style:{opacity:.5,rotate:0},variants:{lEn1c25T7:{rotate:-180}},children:/*#__PURE__*/_jsx(Phosphor,{color:wGRcFK04x,height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretDown\",id:\"Pf1oo9B5x\",layoutId:\"Pf1oo9B5x\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\",...addPropertyOverrides({glYJEhi3Q:{color:\"rgb(9, 9, 11)\"}},baseVariant,gestureVariant)})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HXoan.framer-1b2n16o, .framer-HXoan .framer-1b2n16o { display: block; }\",\".framer-HXoan.framer-mwbc69 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: 17px; justify-content: var(--1rj8ghj); overflow: visible; padding: 18px 12px 18px 12px; position: relative; text-decoration: none; width: min-content; }\",\".framer-HXoan .framer-14lxpcr { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HXoan .framer-jag43x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 17px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-HXoan .framer-upex79-container { flex: none; height: 14px; position: relative; width: 14px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HXoan.framer-mwbc69, .framer-HXoan .framer-jag43x { gap: 0px; } .framer-HXoan.framer-mwbc69 > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-HXoan.framer-mwbc69 > :first-child, .framer-HXoan .framer-jag43x > :first-child { margin-left: 0px; } .framer-HXoan.framer-mwbc69 > :last-child, .framer-HXoan .framer-jag43x > :last-child { margin-right: 0px; } .framer-HXoan .framer-jag43x > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",\".framer-HXoan.framer-v-32rzxn.framer-mwbc69, .framer-HXoan.framer-v-mwbc69.hover.framer-mwbc69 { height: 36px; }\",\".framer-HXoan.framer-v-32rzxn .framer-jag43x { height: min-content; }\",\".framer-HXoan.framer-v-eiar2v.framer-mwbc69 { cursor: unset; height: 36px; }\",\".framer-HXoan.framer-v-1o8bv9a.framer-mwbc69 { cursor: unset; height: min-content; padding: 8px 12px 8px 12px; }\",\".framer-HXoan.framer-v-1o8bv9a .framer-14lxpcr { order: 0; }\",\".framer-HXoan.framer-v-9510kj.framer-mwbc69 { cursor: unset; height: min-content; min-height: 22px; min-width: 38px; padding: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 51\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"glYJEhi3Q\":{\"layout\":[\"auto\",\"fixed\"]},\"lEn1c25T7\":{\"layout\":[\"auto\",\"fixed\"]},\"mprbMP1S0\":{\"layout\":[\"auto\",\"auto\"]},\"Ee_ECe1lh\":{\"layout\":[\"auto\",\"auto\"]},\"pSSiS5ebq\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"ku0K5iab7\":\"name1\",\"ZpWw94nXT\":\"link\",\"T3ktnO2nz\":\"openInNewTab\",\"wGRcFK04x\":\"textColor\",\"stziIHmv7\":\"bGColor\",\"i8hVK17KP\":\"bGHover\",\"ycFa86gVJ\":\"align\",\"i6eMpMhze\":\"tap\",\"PnQ813Qxg\":\"hover\",\"dqMpST25y\":\"radius\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framervpu5A22CJ=withCSS(Component,css,\"framer-HXoan\");export default Framervpu5A22CJ;Framervpu5A22CJ.displayName=\"Menu/Item\";Framervpu5A22CJ.defaultProps={height:36,width:51};addPropertyControls(Framervpu5A22CJ,{variant:{options:[\"M5knlVpZZ\",\"glYJEhi3Q\",\"lEn1c25T7\",\"mprbMP1S0\",\"Ee_ECe1lh\"],optionTitles:[\"Menu Item Simple\",\"Menu Item Dropdown\",\"Menu Item Dropdown [Open]\",\"Dropdown Title Item\",\"Empty space\"],title:\"Variant\",type:ControlType.Enum},ku0K5iab7:{defaultValue:\"Link\",displayTextArea:false,title:\"Name\",type:ControlType.String},ZpWw94nXT:{title:\"Link\",type:ControlType.Link},T3ktnO2nz:{defaultValue:false,title:\"Open in New Tab\",type:ControlType.Boolean},wGRcFK04x:{defaultValue:'var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11)) /* {\"name\":\"Gray 950 [Dynamic]\"} */',title:\"Text Color\",type:ControlType.Color},stziIHmv7:{defaultValue:\"rgba(113, 113, 122, 0)\",title:\"BG Color\",type:ControlType.Color},i8hVK17KP:{defaultValue:\"rgba(113, 113, 122, 0.08)\",title:\"BG Hover\",type:ControlType.Color},ycFa86gVJ:{defaultValue:\"center\",options:[\"flex-start\",\"center\",\"flex-end\",\"space-between\",\"space-around\",\"space-evenly\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Space Between\",\"Space Around\",\"Space Evenly\"],title:\"Align\",type:ControlType.Enum},i6eMpMhze:{title:\"Tap\",type:ControlType.EventHandler},PnQ813Qxg:{title:\"Hover\",type:ControlType.EventHandler},dqMpST25y:{defaultValue:10,title:\"Radius\",type:ControlType.Number}});addFonts(Framervpu5A22CJ,[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qWSRToK8EPg.woff2\",weight:\"500\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framervpu5A22CJ\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"ku0K5iab7\\\":\\\"name1\\\",\\\"ZpWw94nXT\\\":\\\"link\\\",\\\"T3ktnO2nz\\\":\\\"openInNewTab\\\",\\\"wGRcFK04x\\\":\\\"textColor\\\",\\\"stziIHmv7\\\":\\\"bGColor\\\",\\\"i8hVK17KP\\\":\\\"bGHover\\\",\\\"ycFa86gVJ\\\":\\\"align\\\",\\\"i6eMpMhze\\\":\\\"tap\\\",\\\"PnQ813Qxg\\\":\\\"hover\\\",\\\"dqMpST25y\\\":\\\"radius\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"glYJEhi3Q\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"lEn1c25T7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"mprbMP1S0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Ee_ECe1lh\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pSSiS5ebq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"51\",\"framerIntrinsicHeight\":\"36\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vpu5A22CJ.map", "// Generated by Framer (9045c1a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,ResolveLinks,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withUpdateURLSearchParams}from\"https://framerusercontent.com/modules/n6eNZno8l3OhY9NeSJJd/tM3rvPbVwUR1AvIGI9dp/WithUpdateURLSearchParams.js\";import MenuItem,*as MenuItemInfo from\"https://framerusercontent.com/modules/iAOKxecXr0EJ143gNt5Z/qWjFHpyMdJZ8gY0IVwuM/vpu5A22CJ.js\";const MenuItemFonts=getFonts(MenuItem);const MenuItemWithUpdateURLSearchParamsr3z00eWithMappedReactProps39pur3=withMappedReactProps(withCodeBoundaryForOverrides(MenuItem,{inComponentSlot:true,nodeId:\"guA8dbkrB\",override:withUpdateURLSearchParams,scopeId:\"BpBeq2TBa\"}),MenuItemInfo);const MenuItemWithUpdateURLSearchParams1gmg1f3WithMappedReactProps39pur3=withMappedReactProps(withCodeBoundaryForOverrides(MenuItem,{inComponentSlot:true,nodeId:\"EGRzRo08L\",override:withUpdateURLSearchParams,scopeId:\"BpBeq2TBa\"}),MenuItemInfo);const MenuItemWithUpdateURLSearchParamsekkhceWithMappedReactProps39pur3=withMappedReactProps(withCodeBoundaryForOverrides(MenuItem,{inComponentSlot:true,nodeId:\"CIVnESETV\",override:withUpdateURLSearchParams,scopeId:\"BpBeq2TBa\"}),MenuItemInfo);const MotionDivWithFX=withFX(motion.div);const MenuItemWithUpdateURLSearchParamszkqh46WithMappedReactProps39pur3=withMappedReactProps(withCodeBoundaryForOverrides(MenuItem,{nodeId:\"ezD2rbXFK\",override:withUpdateURLSearchParams,scopeId:\"BpBeq2TBa\"}),MenuItemInfo);const MenuItemWithUpdateURLSearchParamsznxvyfWithMappedReactProps39pur3=withMappedReactProps(withCodeBoundaryForOverrides(MenuItem,{nodeId:\"jVIPvquew\",override:withUpdateURLSearchParams,scopeId:\"BpBeq2TBa\"}),MenuItemInfo);const serializationHash=\"framer-LuMSm\";const variantClassNames={nWvFYpKHJ:\"framer-v-111gfin\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const getProps=({align,bGBlur,dropdownBG,height,id,textColor,width,...props})=>{return{...props,ILT7xcLmk:dropdownBG??props.ILT7xcLmk??\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",odLrH8wIa:textColor??props.odLrH8wIa??\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",XWxsdOvDJ:bGBlur??props.XWxsdOvDJ??5,ZmT46usVX:humanReadableEnumMap[align]??align??props.ZmT46usVX??\"flex-start\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ZmT46usVX,odLrH8wIa,ILT7xcLmk,XWxsdOvDJ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"nWvFYpKHJ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const PnQ813Qxgtxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-111gfin\",className,classNames),\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"nWvFYpKHJ\",ref:refBinding,style:{\"--hkf6fz\":ZmT46usVX,...style},children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(0+((componentViewport?.height||36)-0-36)/2),children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-havkqc-container\",id:`${layoutId}-havkqc`,layoutDependency:layoutDependency,layoutId:\"c06jpt5Ij-container\",nodeId:\"c06jpt5Ij\",ref:ref1,rendersWithMotion:true,scopeId:\"BpBeq2TBa\",children:[/*#__PURE__*/_jsx(MenuItem,{dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.08)\",id:\"c06jpt5Ij\",ku0K5iab7:\"Divorce Services\",layoutId:\"c06jpt5Ij\",PnQ813Qxg:PnQ813Qxgtxyyif({overlay}),stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:overlay.visible?\"lEn1c25T7\":\"glYJEhi3Q\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"center\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-havkqc`,offsetX:-14.500000621192157,offsetY:5.500000290572643,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-kwakv6\",\"data-border\":true,exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"LHIdXxfBd\",ref:ref2,role:\"dialog\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(113, 113, 122, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:`blur(${XWxsdOvDJ}px)`,backgroundColor:ILT7xcLmk,borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 0.3010936508871964px 0.18065619053231788px -1.5px rgba(0, 0, 0, 0.04259), 0px 1.1442666516217286px 0.6865599909730372px -3px rgba(0, 0, 0, 0.03585), 0px 5px 3.0000000000000004px -4.5px rgba(0, 0, 0, 0.005), 0px 0.6021873017743928px 1.5656869846134214px -1px rgba(0, 0, 0, 0.0588), 0px 2.288533303243457px 5.950186588432988px -2px rgba(0, 0, 0, 0.05542), 0px 10px 26px -3px rgba(0, 0, 0, 0.04)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1orrkxz\",layoutDependency:layoutDependency,layoutId:\"X52v0JmK3\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sg2xc6\",layoutDependency:layoutDependency,layoutId:\"rvifvtkAL\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-c6jcak-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"iUJ5SappO-container\",nodeId:\"iUJ5SappO\",rendersWithMotion:true,scopeId:\"BpBeq2TBa\",children:/*#__PURE__*/_jsx(MenuItem,{dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.08)\",id:\"iUJ5SappO\",ku0K5iab7:\"Services\",layoutId:\"iUJ5SappO\",stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"M5knlVpZZ\",wGRcFK04x:\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",width:\"100%\",ycFa86gVJ:\"center\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UGJ65J2Lr\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"139px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hzsees-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"DDlyxbZ0G-container\",nodeId:\"DDlyxbZ0G\",rendersWithMotion:true,scopeId:\"BpBeq2TBa\",children:/*#__PURE__*/_jsx(MenuItem,{dqMpST25y:5,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"DDlyxbZ0G\",ku0K5iab7:\"How it works\",layoutId:\"DDlyxbZ0G\",style:{height:\"100%\",width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"M5knlVpZZ\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"space-between\",ZpWw94nXT:resolvedLinks[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LR5lZrV8u\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"139px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1y9lg31-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"KgcoZNbg1-container\",nodeId:\"KgcoZNbg1\",rendersWithMotion:true,scopeId:\"BpBeq2TBa\",children:/*#__PURE__*/_jsx(MenuItem,{dqMpST25y:5,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"KgcoZNbg1\",ku0K5iab7:\"Why Us?\",layoutId:\"KgcoZNbg1\",style:{height:\"100%\",width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"M5knlVpZZ\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"space-between\",ZpWw94nXT:resolvedLinks1[0]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"139px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-r3z00e-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"guA8dbkrB-container\",nodeId:\"guA8dbkrB\",rendersWithMotion:true,scopeId:\"BpBeq2TBa\",children:/*#__PURE__*/_jsx(MenuItemWithUpdateURLSearchParamsr3z00eWithMappedReactProps39pur3,{dqMpST25y:5,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"guA8dbkrB\",ku0K5iab7:\"About Us\",layoutId:\"guA8dbkrB\",style:{height:\"100%\",width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"M5knlVpZZ\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"space-between\",ZpWw94nXT:\"https://www.onlinedivorce.com/about_us/\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"139px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gmg1f3-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"EGRzRo08L-container\",nodeId:\"EGRzRo08L\",rendersWithMotion:true,scopeId:\"BpBeq2TBa\",children:/*#__PURE__*/_jsx(MenuItemWithUpdateURLSearchParams1gmg1f3WithMappedReactProps39pur3,{dqMpST25y:5,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"EGRzRo08L\",ku0K5iab7:\"Our Guarantee\",layoutId:\"EGRzRo08L\",style:{height:\"100%\",width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"M5knlVpZZ\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"space-between\",ZpWw94nXT:\"https://www.onlinedivorce.com/policies/\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"139px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ekkhce-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"CIVnESETV-container\",nodeId:\"CIVnESETV\",rendersWithMotion:true,scopeId:\"BpBeq2TBa\",children:/*#__PURE__*/_jsx(MenuItemWithUpdateURLSearchParamsekkhceWithMappedReactProps39pur3,{dqMpST25y:5,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"CIVnESETV\",ku0K5iab7:\"Partner Offers\",layoutId:\"CIVnESETV\",style:{height:\"100%\",width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"M5knlVpZZ\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"space-between\",ZpWw94nXT:\"https://www.onlinedivorce.com/offers-list/?nologin\"})})})]})})})})})]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zhc5BwGIU\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(0+((componentViewport?.height||36)-0-36)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jex0rh-container\",layoutDependency:layoutDependency,layoutId:\"hG3uTQ2b6-container\",nodeId:\"hG3uTQ2b6\",rendersWithMotion:true,scopeId:\"BpBeq2TBa\",children:/*#__PURE__*/_jsx(MenuItem,{dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.08)\",id:\"hG3uTQ2b6\",ku0K5iab7:\"Reviews\",layoutId:\"hG3uTQ2b6\",stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"M5knlVpZZ\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"center\",ZpWw94nXT:resolvedLinks2[0]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(0+((componentViewport?.height||36)-0-36)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zkqh46-container\",layoutDependency:layoutDependency,layoutId:\"ezD2rbXFK-container\",nodeId:\"ezD2rbXFK\",rendersWithMotion:true,scopeId:\"BpBeq2TBa\",children:/*#__PURE__*/_jsx(MenuItemWithUpdateURLSearchParamszkqh46WithMappedReactProps39pur3,{dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.08)\",id:\"ezD2rbXFK\",ku0K5iab7:\"FAQ\",layoutId:\"ezD2rbXFK\",stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"M5knlVpZZ\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"center\",ZpWw94nXT:\"https://www.onlinedivorce.com/frequently_asked_questions/\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(0+((componentViewport?.height||36)-0-36)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-znxvyf-container\",layoutDependency:layoutDependency,layoutId:\"jVIPvquew-container\",nodeId:\"jVIPvquew\",rendersWithMotion:true,scopeId:\"BpBeq2TBa\",children:/*#__PURE__*/_jsx(MenuItemWithUpdateURLSearchParamsznxvyfWithMappedReactProps39pur3,{dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.08)\",id:\"jVIPvquew\",ku0K5iab7:\"Blog\",layoutId:\"jVIPvquew\",stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"M5knlVpZZ\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"center\",ZpWw94nXT:\"https://www.onlinedivorce.com/blog/\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LuMSm.framer-1qxg4ot, .framer-LuMSm .framer-1qxg4ot { display: block; }\",\".framer-LuMSm.framer-111gfin { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: var(--hkf6fz); overflow: visible; padding: 0px 0px 0px 15px; position: relative; width: min-content; }\",\".framer-LuMSm .framer-havkqc-container, .framer-LuMSm .framer-znxvyf-container { cursor: pointer; flex: none; height: auto; position: relative; width: auto; }\",\".framer-LuMSm .framer-kwakv6 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-LuMSm .framer-1orrkxz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 15px; position: relative; width: min-content; }\",\".framer-LuMSm .framer-1sg2xc6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 139px; }\",\".framer-LuMSm .framer-c6jcak-container, .framer-LuMSm .framer-jex0rh-container, .framer-LuMSm .framer-zkqh46-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-LuMSm .framer-1hzsees-container, .framer-LuMSm .framer-1y9lg31-container, .framer-LuMSm .framer-r3z00e-container, .framer-LuMSm .framer-1gmg1f3-container, .framer-LuMSm .framer-ekkhce-container { flex: none; height: 36px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LuMSm.framer-111gfin, .framer-LuMSm .framer-kwakv6, .framer-LuMSm .framer-1orrkxz, .framer-LuMSm .framer-1sg2xc6 { gap: 0px; } .framer-LuMSm.framer-111gfin > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-LuMSm.framer-111gfin > :first-child, .framer-LuMSm .framer-kwakv6 > :first-child, .framer-LuMSm .framer-1orrkxz > :first-child { margin-left: 0px; } .framer-LuMSm.framer-111gfin > :last-child, .framer-LuMSm .framer-kwakv6 > :last-child, .framer-LuMSm .framer-1orrkxz > :last-child { margin-right: 0px; } .framer-LuMSm .framer-kwakv6 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-LuMSm .framer-1orrkxz > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-LuMSm .framer-1sg2xc6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-LuMSm .framer-1sg2xc6 > :first-child { margin-top: 0px; } .framer-LuMSm .framer-1sg2xc6 > :last-child { margin-bottom: 0px; } }\",'.framer-LuMSm[data-border=\"true\"]::after, .framer-LuMSm [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ZmT46usVX\":\"align\",\"odLrH8wIa\":\"textColor\",\"ILT7xcLmk\":\"dropdownBG\",\"XWxsdOvDJ\":\"bGBlur\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBpBeq2TBa=withCSS(Component,css,\"framer-LuMSm\");export default FramerBpBeq2TBa;FramerBpBeq2TBa.displayName=\"Menu/Menu\";FramerBpBeq2TBa.defaultProps={height:36,width:400};addPropertyControls(FramerBpBeq2TBa,{ZmT46usVX:{defaultValue:\"flex-start\",options:[\"flex-start\",\"center\",\"flex-end\",\"space-between\",\"space-around\",\"space-evenly\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Space Between\",\"Space Around\",\"Space Evenly\"],title:\"Align\",type:ControlType.Enum},odLrH8wIa:{defaultValue:'var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11)) /* {\"name\":\"Gray 950 [Dynamic]\"} */',title:\"Text Color\",type:ControlType.Color},ILT7xcLmk:{defaultValue:'var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255)) /* {\"name\":\"White [Dynamic]\"} */',title:\"Dropdown BG\",type:ControlType.Color},XWxsdOvDJ:{defaultValue:5,title:\"BG Blur\",type:ControlType.Number}});addFonts(FramerBpBeq2TBa,[{explicitInter:true,fonts:[]},...MenuItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBpBeq2TBa\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"36\",\"framerVariables\":\"{\\\"ZmT46usVX\\\":\\\"align\\\",\\\"odLrH8wIa\\\":\\\"textColor\\\",\\\"ILT7xcLmk\\\":\\\"dropdownBG\\\",\\\"XWxsdOvDJ\\\":\\\"bGBlur\\\"}\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2ca17d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"YeuyKfRYb\",\"rORwFCWei\"];const serializationHash=\"framer-lhD2f\";const variantClassNames={rORwFCWei:\"framer-v-1mpzo1d\",YeuyKfRYb:\"framer-v-1p5zrrn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Mobile Menu [Open]\":\"rORwFCWei\",\"Mobile Menu\":\"YeuyKfRYb\"};const getProps=({height,iconColor,id,tap,width,...props})=>{return{...props,E6NV4Gf2f:tap??props.E6NV4Gf2f,lYvpkC7IW:iconColor??props.lYvpkC7IW??\"var(--token-963ba7ff-1506-4ab8-a9bc-332b05614e66, rgb(9, 9, 11))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"YeuyKfRYb\"};};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,E6NV4Gf2f,lYvpkC7IW,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YeuyKfRYb\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap10p9z8c=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(E6NV4Gf2f){const res=await E6NV4Gf2f(...args);if(res===false)return false;}setVariant(\"rORwFCWei\");});const onTap1ie0rtz=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(E6NV4Gf2f){const res=await E6NV4Gf2f(...args);if(res===false)return false;}setVariant(\"YeuyKfRYb\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1p5zrrn\",className,classNames),\"data-framer-name\":\"Mobile Menu\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"YeuyKfRYb\",onTap:onTap10p9z8c,ref:ref??ref1,style:{...style},...addPropertyOverrides({rORwFCWei:{\"data-framer-name\":\"Mobile Menu [Open]\",onTap:onTap1ie0rtz}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pauspd\",layoutDependency:layoutDependency,layoutId:\"piO_8iLSB\",style:{backgroundColor:lYvpkC7IW,borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{rORwFCWei:{rotate:45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2l2k4j\",layoutDependency:layoutDependency,layoutId:\"YWukmEdtv\",style:{backgroundColor:lYvpkC7IW,borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{rORwFCWei:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7qxocz\",layoutDependency:layoutDependency,layoutId:\"v2KniyafO\",style:{backgroundColor:lYvpkC7IW,borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1,rotate:0},variants:{rORwFCWei:{opacity:0,rotate:-45}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lhD2f.framer-yjdb3m, .framer-lhD2f .framer-yjdb3m { display: block; }\",\".framer-lhD2f.framer-1p5zrrn { cursor: pointer; height: 48px; position: relative; width: 48px; }\",\".framer-lhD2f .framer-pauspd { flex: none; height: 3px; left: 11px; overflow: visible; position: absolute; top: 14px; width: 26px; }\",\".framer-lhD2f .framer-2l2k4j { flex: none; height: 3px; left: 11px; overflow: visible; position: absolute; top: 22px; width: 26px; }\",\".framer-lhD2f .framer-7qxocz { flex: none; height: 3px; left: 11px; overflow: visible; position: absolute; top: 30px; width: 19px; }\",\".framer-lhD2f.framer-v-1mpzo1d.framer-1p5zrrn { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 48px); }\",\".framer-lhD2f.framer-v-1mpzo1d .framer-pauspd { left: calc(50.00000000000002% - 26px / 2); top: 23px; }\",\".framer-lhD2f.framer-v-1mpzo1d .framer-2l2k4j { top: 23px; }\",\".framer-lhD2f.framer-v-1mpzo1d .framer-7qxocz { bottom: 18px; height: unset; left: 13px; width: 13px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 48\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"rORwFCWei\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"E6NV4Gf2f\":\"tap\",\"lYvpkC7IW\":\"iconColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerLDjILnfTJ=withCSS(Component,css,\"framer-lhD2f\");export default FramerLDjILnfTJ;FramerLDjILnfTJ.displayName=\"Menu/Hamburger Menu\";FramerLDjILnfTJ.defaultProps={height:48,width:48};addPropertyControls(FramerLDjILnfTJ,{variant:{options:[\"YeuyKfRYb\",\"rORwFCWei\"],optionTitles:[\"Mobile Menu\",\"Mobile Menu [Open]\"],title:\"Variant\",type:ControlType.Enum},E6NV4Gf2f:{title:\"Tap\",type:ControlType.EventHandler},lYvpkC7IW:{defaultValue:'var(--token-963ba7ff-1506-4ab8-a9bc-332b05614e66, rgb(9, 9, 11)) /* {\"name\":\"Gray 950\"} */',title:\"Icon Color\",type:ControlType.Color}});addFonts(FramerLDjILnfTJ,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLDjILnfTJ\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"48\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rORwFCWei\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"E6NV4Gf2f\\\":\\\"tap\\\",\\\"lYvpkC7IW\\\":\\\"iconColor\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"48\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LDjILnfTJ.map", "// Generated by Framer (06534cb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCodeBoundaryForOverrides,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withUpdateURLSearchParams}from\"https://framerusercontent.com/modules/n6eNZno8l3OhY9NeSJJd/tM3rvPbVwUR1AvIGI9dp/WithUpdateURLSearchParams.js\";import MenuMenu from\"https://framerusercontent.com/modules/CphlaykMzfKSh8kqQeum/g4kTN4kDpvo6Ij4fB87n/BpBeq2TBa.js\";import Button,*as ButtonInfo from\"https://framerusercontent.com/modules/1PS0Cll47Gc8S1c4Iy71/AbAg5VP4y24P0rP10jDQ/cSkkRxUbG.js\";import MenuHamburgerMenu from\"https://framerusercontent.com/modules/NCQlkSWW37DToeVdA9Iv/k8JI41Yg5StT1YtAe0M9/LDjILnfTJ.js\";import MenuItem,*as MenuItemInfo from\"https://framerusercontent.com/modules/iAOKxecXr0EJ143gNt5Z/qWjFHpyMdJZ8gY0IVwuM/vpu5A22CJ.js\";const MenuMenuFonts=getFonts(MenuMenu);const ButtonFonts=getFonts(Button);const ButtonWithUpdateURLSearchParamslte8jtWithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"ImuMfhVzP\",override:withUpdateURLSearchParams,scopeId:\"BEAhkbnww\"}),ButtonInfo);const MenuHamburgerMenuFonts=getFonts(MenuHamburgerMenu);const MenuItemFonts=getFonts(MenuItem);const MenuItemWithUpdateURLSearchParamsiwr3mrWithMappedReactProps39pur3=withMappedReactProps(withCodeBoundaryForOverrides(MenuItem,{nodeId:\"xPZaZESAZ\",override:withUpdateURLSearchParams,scopeId:\"BEAhkbnww\"}),MenuItemInfo);const MenuItemWithUpdateURLSearchParams1cpw32yWithMappedReactProps39pur3=withMappedReactProps(withCodeBoundaryForOverrides(MenuItem,{nodeId:\"wA7kcwA0W\",override:withUpdateURLSearchParams,scopeId:\"BEAhkbnww\"}),MenuItemInfo);const ButtonWithUpdateURLSearchParams16e3l9bWithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"NDf_j8PWH\",override:withUpdateURLSearchParams,scopeId:\"BEAhkbnww\"}),ButtonInfo);const cycleOrder=[\"ynUw7ecw3\",\"eH9SeRCY6\",\"PzSxrnS9h\",\"EBZ3MKNOz\",\"i6JBgYP5b\",\"vTARl2he4\"];const serializationHash=\"framer-w53N8\";const variantClassNames={EBZ3MKNOz:\"framer-v-9tntiw\",eH9SeRCY6:\"framer-v-lh3nj\",i6JBgYP5b:\"framer-v-1r5484y\",PzSxrnS9h:\"framer-v-161tesm\",vTARl2he4:\"framer-v-1qa98lt\",ynUw7ecw3:\"framer-v-1eogz2d\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const transition3={delay:.1,duration:.15,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop [Boxed Mini]\":\"EBZ3MKNOz\",\"Desktop [Boxed]\":\"PzSxrnS9h\",\"Desktop [Default]\":\"ynUw7ecw3\",\"Desktop [Full Width]\":\"eH9SeRCY6\",\"Mobile [Menu Opend]\":\"vTARl2he4\",Mobile:\"i6JBgYP5b\"};const getProps=({bGBlur,bgBorder,desktopBG,height,id,mobileBG,showMenu,textColor,width,...props})=>{return{...props,BeZsA273t:showMenu??props.BeZsA273t??true,Cof0RMUzO:textColor??props.Cof0RMUzO??\"var(--token-e6a1425f-5cc8-4e16-87a5-8615ab8b8fe1, rgb(82, 82, 91))\",EdKYuwXXP:mobileBG??props.EdKYuwXXP??\"var(--token-5cb9a68d-31cb-4baf-8414-1a3d9276de57, rgba(255, 255, 255, 0.9))\",FFcnuU4Ek:desktopBG??props.FFcnuU4Ek??\"var(--token-5cb9a68d-31cb-4baf-8414-1a3d9276de57, rgba(255, 255, 255, 0.95))\",ORnOR2pUN:bgBorder??props.ORnOR2pUN??{borderBottomWidth:1,borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},t4qtipNl7:bGBlur??props.t4qtipNl7??10,variant:humanReadableVariantMap[props.variant]??props.variant??\"ynUw7ecw3\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,Cof0RMUzO,ORnOR2pUN,BeZsA273t,FFcnuU4Ek,EdKYuwXXP,t4qtipNl7,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ynUw7ecw3\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1d9h6kx=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});await delay(()=>setVariant(\"i6JBgYP5b\"),100);});const E6NV4Gf2f4l1w7q=activeVariantCallback(async(...args)=>{setVariant(\"vTARl2he4\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"PzSxrnS9h\")return false;return true;};const isDisplayed1=value=>{if([\"i6JBgYP5b\",\"vTARl2he4\"].includes(baseVariant))return false;return value;};const isDisplayed2=()=>{if([\"i6JBgYP5b\",\"vTARl2he4\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"i6JBgYP5b\")return false;return true;};const isDisplayed4=()=>{if(baseVariant===\"vTARl2he4\")return false;return true;};const isDisplayed5=()=>{if(baseVariant===\"PzSxrnS9h\")return true;return false;};const isDisplayed6=()=>{if([\"i6JBgYP5b\",\"vTARl2he4\"].includes(baseVariant))return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"vTARl2he4\")return true;return false;};const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({i6JBgYP5b:{value:transition2},vTARl2he4:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1eogz2d\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop [Default]\",layoutDependency:layoutDependency,layoutId:\"ynUw7ecw3\",ref:refBinding,style:{\"--border-bottom-width\":(ORnOR2pUN.borderBottomWidth??ORnOR2pUN.borderWidth)+\"px\",\"--border-color\":ORnOR2pUN.borderColor,\"--border-left-width\":(ORnOR2pUN.borderLeftWidth??ORnOR2pUN.borderWidth)+\"px\",\"--border-right-width\":(ORnOR2pUN.borderRightWidth??ORnOR2pUN.borderWidth)+\"px\",\"--border-style\":ORnOR2pUN.borderStyle,\"--border-top-width\":(ORnOR2pUN.borderTopWidth??ORnOR2pUN.borderWidth)+\"px\",backdropFilter:`blur(${t4qtipNl7}px)`,backgroundColor:FFcnuU4Ek,...style},variants:{EBZ3MKNOz:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\"},i6JBgYP5b:{backgroundColor:EdKYuwXXP},PzSxrnS9h:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\"},vTARl2he4:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:EdKYuwXXP}},...addPropertyOverrides({EBZ3MKNOz:{\"data-framer-name\":\"Desktop [Boxed Mini]\"},eH9SeRCY6:{\"data-framer-name\":\"Desktop [Full Width]\"},i6JBgYP5b:{\"data-framer-name\":\"Mobile\"},PzSxrnS9h:{\"data-framer-name\":\"Desktop [Boxed]\"},vTARl2he4:{\"data-framer-name\":\"Mobile [Menu Opend]\",\"data-highlight\":true,onTap:onTap1d9h6kx}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mojgvw\",\"data-framer-name\":\"Main Area\",layoutDependency:layoutDependency,layoutId:\"fpHqqWxmj\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},variants:{EBZ3MKNOz:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(113, 113, 122, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:`blur(${t4qtipNl7}px)`,backgroundColor:FFcnuU4Ek,borderBottomLeftRadius:46,borderBottomRightRadius:46,borderTopLeftRadius:46,borderTopRightRadius:46,boxShadow:\"0px 0.24145061431045178px 0.24145061431045178px -1.25px rgba(0, 0, 0, 0.05), 0px 2px 2px -2.5px rgba(0, 0, 0, 0.05), 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(9, 9, 11, 0.07199), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(9, 9, 11, 0.06356), 0px 10px 10px -3.75px rgba(9, 9, 11, 0.025)\"},i6JBgYP5b:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},PzSxrnS9h:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(113, 113, 122, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:`blur(${t4qtipNl7}px)`,backgroundColor:FFcnuU4Ek,borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 0.24145061431045178px 0.24145061431045178px -1.25px rgba(0, 0, 0, 0.05), 0px 2px 2px -2.5px rgba(0, 0, 0, 0.05), 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(9, 9, 11, 0.07199), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(9, 9, 11, 0.06356), 0px 10px 10px -3.75px rgba(9, 9, 11, 0.025)\"},vTARl2he4:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...addPropertyOverrides({EBZ3MKNOz:{\"data-border\":true},PzSxrnS9h:{\"data-border\":true}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1g6ul65\",\"data-framer-name\":\"Type=Accent BG, Logotype=Yes, Company=18\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:146,layoutDependency:layoutDependency,layoutId:\"z_oza2hoj\",svg:'<svg width=\"146\" height=\"20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4.94 0H0l5.15 8.586h4.834L4.94 0Z\" fill=\"#0061EF\"/><path d=\"M10.452 0h4.94l-5.15 8.586H5.407L10.452 0Z\" fill=\"#0054CF\"/><path d=\"M7.696 19.895c4.25 0 7.697-3.469 7.697-7.748 0-4.28-3.446-7.749-7.697-7.749C3.446 4.398 0 7.868 0 12.147c0 4.28 3.446 7.748 7.696 7.748Z\" fill=\"#FFCC01\"/><path d=\"m5.548 15.706.597-2.633-1.986-1.77 2.616-.234L7.8 8.586l1.024 2.483 2.616.233-1.986 1.77.597 2.634L7.8 14.308l-2.252 1.398Z\" fill=\"#fff\"/><g clip-path=\"url(#a)\"><path d=\"M33.001 15.33c-1.435 1.412-3.18 2.118-5.238 2.118-2.058 0-3.804-.706-5.239-2.117-1.42-1.425-2.131-3.165-2.131-5.222 0-2.056.71-3.79 2.131-5.202 1.435-1.424 3.181-2.137 5.239-2.137 2.057 0 3.803.713 5.238 2.137 1.435 1.412 2.152 3.146 2.152 5.202s-.717 3.797-2.152 5.222Zm-8.507-1.894c.88.86 1.97 1.29 3.269 1.29 1.3 0 2.389-.43 3.268-1.29.88-.874 1.32-1.983 1.32-3.327 0-1.344-.44-2.453-1.32-3.327-.88-.873-1.969-1.31-3.268-1.31-1.3 0-2.39.437-3.27 1.31-.879.874-1.319 1.983-1.319 3.327 0 1.344.44 2.453 1.32 3.327Zm17.542-6.633c1.11 0 2.023.37 2.74 1.108.732.74 1.097 1.761 1.097 3.065v6.19h-2.619v-5.867c0-.672-.183-1.183-.548-1.533-.366-.363-.853-.544-1.462-.544-.677 0-1.218.208-1.624.625-.406.417-.61 1.042-.61 1.875v5.443h-2.618V7.085h2.619v1.129c.636-.941 1.644-1.411 3.025-1.411ZM47.5 17.165V2.448h2.62v14.717H47.5Zm5.707-11.29c-.433 0-.812-.154-1.137-.464a1.575 1.575 0 0 1-.467-1.129c0-.43.156-.806.467-1.129a1.564 1.564 0 0 1 1.137-.484c.447 0 .826.162 1.137.484.325.323.487.7.487 1.13 0 .43-.162.806-.487 1.128-.311.31-.69.464-1.137.464Zm-1.3 11.29V7.085h2.62v10.08h-2.62ZM61.96 6.803c1.11 0 2.024.37 2.741 1.108.731.74 1.096 1.761 1.096 3.065v6.19h-2.619v-5.867c0-.672-.182-1.183-.548-1.533-.365-.363-.852-.544-1.462-.544-.676 0-1.218.208-1.624.625-.406.417-.609 1.042-.609 1.875v5.443h-2.62V7.085h2.62v1.129c.636-.941 1.645-1.411 3.025-1.411Zm7.678 6.39c.352 1.264 1.306 1.896 2.862 1.896 1.002 0 1.76-.336 2.274-1.008l2.112 1.21c-1.002 1.438-2.477 2.157-4.426 2.157-1.678 0-3.025-.504-4.04-1.512-1.016-1.008-1.523-2.279-1.523-3.81 0-1.52.5-2.783 1.502-3.791 1.002-1.022 2.288-1.532 3.858-1.532 1.489 0 2.714.51 3.675 1.532.974 1.021 1.462 2.285 1.462 3.79 0 .336-.034.692-.102 1.069h-7.654Zm-.04-2.015h5.176c-.148-.686-.46-1.197-.933-1.533a2.615 2.615 0 0 0-1.584-.504c-.704 0-1.286.182-1.746.545-.46.349-.765.846-.914 1.492Z\" fill=\"#0061EF\"/><path d=\"M84.065 2.837c1.96 0 3.591.688 4.897 2.066 1.32 1.378 1.98 3.077 1.98 5.096s-.66 3.717-1.98 5.095c-1.306 1.378-2.938 2.067-4.897 2.067h-5.672V2.837h5.672Zm0 11.623c1.238 0 2.245-.41 3.02-1.228.776-.832 1.163-1.91 1.163-3.233 0-1.323-.387-2.394-1.163-3.213-.775-.832-1.782-1.248-3.02-1.248H81.21v8.922h2.856Zm9.444-8.759c-.434 0-.815-.156-1.142-.47a1.608 1.608 0 0 1-.469-1.146c0-.437.157-.819.47-1.146.326-.328.707-.491 1.141-.491.45 0 .83.163 1.144.49.326.328.49.71.49 1.147 0 .436-.164.818-.49 1.146-.314.314-.695.47-1.144.47Zm-1.305 11.46V6.93h2.632v10.232h-2.632ZM103.346 6.93h2.897l-3.877 10.232h-2.999L95.491 6.93h2.897l2.468 7.163 2.49-7.163Zm11.848 8.963c-1.048 1.037-2.327 1.556-3.836 1.556-1.51 0-2.788-.519-3.836-1.556-1.034-1.05-1.551-2.332-1.551-3.847 0-1.514.517-2.79 1.551-3.826 1.048-1.051 2.326-1.576 3.836-1.576 1.509 0 2.788.525 3.836 1.576 1.047 1.036 1.571 2.312 1.571 3.826 0 1.515-.524 2.797-1.571 3.847Zm-5.815-1.82c.531.531 1.19.797 1.979.797.788 0 1.448-.266 1.979-.798.53-.532.796-1.207.796-2.026 0-.818-.266-1.494-.796-2.026-.531-.532-1.191-.798-1.979-.798-.789 0-1.448.266-1.979.798-.517.532-.776 1.208-.776 2.026 0 .819.259 1.494.776 2.026Zm11.257-5.383c.245-.655.647-1.146 1.204-1.473a3.747 3.747 0 0 1 1.897-.491V9.67c-.802-.095-1.522.069-2.162.492-.626.422-.939 1.125-.939 2.107v4.891h-2.632V6.93h2.632v1.76Zm8.506 8.759c-1.536 0-2.822-.519-3.855-1.556-1.021-1.036-1.531-2.319-1.531-3.847s.51-2.81 1.531-3.847c1.033-1.037 2.319-1.555 3.855-1.555a5.28 5.28 0 0 1 2.714.716 4.76 4.76 0 0 1 1.857 1.924l-2.265 1.33a2.3 2.3 0 0 0-.938-1.003 2.64 2.64 0 0 0-1.388-.368c-.789 0-1.442.266-1.959.798-.516.518-.775 1.187-.775 2.005 0 .805.259 1.474.775 2.006.517.518 1.17.777 1.959.777.531 0 1-.116 1.408-.348.421-.245.734-.58.939-1.002l2.285 1.31a5.197 5.197 0 0 1-1.898 1.944 5.28 5.28 0 0 1-2.714.716Zm7.457-4.318c.353 1.282 1.312 1.923 2.876 1.923 1.007 0 1.769-.34 2.286-1.023l2.122 1.228c-1.007 1.46-2.49 2.19-4.449 2.19-1.686 0-3.04-.512-4.06-1.535-1.021-1.023-1.531-2.313-1.531-3.868 0-1.541.504-2.824 1.51-3.847 1.007-1.037 2.3-1.555 3.878-1.555 1.495 0 2.726.518 3.693 1.555.979 1.037 1.469 2.32 1.469 3.847 0 .341-.035.703-.103 1.085h-7.691Zm-.041-2.047h5.203c-.15-.695-.464-1.214-.939-1.555a2.612 2.612 0 0 0-1.591-.511c-.708 0-1.293.184-1.756.552-.462.355-.768.86-.917 1.514Z\" fill=\"#00183C\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(19.393 2.448)\" d=\"M0 0h126v15H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),isDisplayed1(BeZsA273t)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(10+((componentViewport?.height||200)-20-50)/2)+7,...addPropertyOverrides({EBZ3MKNOz:{y:(componentViewport?.y||0)+(20+((componentViewport?.height||200)-20-80)/2)+22},PzSxrnS9h:{y:(componentViewport?.y||0)+(20+((componentViewport?.height||200)-20-80)/2)+22}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2iuf3m-container\",\"data-framer-name\":\"Menu [Desktop]\",layoutDependency:layoutDependency,layoutId:\"kTUHDAi7T-container\",name:\"Menu [Desktop]\",nodeId:\"kTUHDAi7T\",rendersWithMotion:true,scopeId:\"BEAhkbnww\",children:/*#__PURE__*/_jsx(MenuMenu,{height:\"100%\",id:\"kTUHDAi7T\",ILT7xcLmk:FFcnuU4Ek,layoutId:\"kTUHDAi7T\",name:\"Menu [Desktop]\",odLrH8wIa:\"rgb(31, 41, 55)\",style:{width:\"100%\"},width:\"100%\",XWxsdOvDJ:t4qtipNl7,ZmT46usVX:\"flex-end\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-fzgfxq\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"ov0nS3F0Q\",style:{backgroundColor:\"rgb(229, 231, 235)\"}}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qztz87\",layoutDependency:layoutDependency,layoutId:\"Fb1wuvZYh\",children:isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1febbwa\",layoutDependency:layoutDependency,layoutId:\"ssGOfubSn\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"73px\",y:(componentViewport?.y||0)+(10+((componentViewport?.height||200)-20-50)/2)+0+0+0,...addPropertyOverrides({EBZ3MKNOz:{y:(componentViewport?.y||0)+(20+((componentViewport?.height||200)-20-80)/2)+15+0+0},PzSxrnS9h:{y:(componentViewport?.y||0)+(20+((componentViewport?.height||200)-20-80)/2)+15+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lte8jt-container\",layoutDependency:layoutDependency,layoutId:\"ImuMfhVzP-container\",nodeId:\"ImuMfhVzP\",rendersWithMotion:true,scopeId:\"BEAhkbnww\",children:/*#__PURE__*/_jsx(ButtonWithUpdateURLSearchParamslte8jtWithMappedReactProps1v1ipky,{ApWhoO21o:{borderColor:\"rgb(229, 231, 235)\",borderStyle:\"solid\",borderWidth:1},ey7w8muFX:false,G77f5Yx_v:\"Log In\",height:\"100%\",HFfTjmBlq:\"rgb(31, 41, 55)\",id:\"ImuMfhVzP\",layoutId:\"ImuMfhVzP\",n9WP3fBIv:false,oV7zrnzuy:\"var(--token-39f21bef-c13b-4787-87cf-dea232daddef, rgb(255, 255, 255))\",style:{width:\"100%\"},SZQpZ3lk2:8,U1Kbkgydv:\"https://www.onlinedivorce.com/login/\",variant:\"M81o1Sp0m\",vfQAwnju6:{borderColor:\"rgb(230, 230, 232)\",borderStyle:\"solid\",borderWidth:1},VkxZQkMEC:\"0px 0.48290122862090357px 0.48290122862090357px -1.875px rgba(9, 9, 11, 0.10345), 0px 4px 4px -3.75px rgba(9, 9, 11, 0.0375)\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false})})})})}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1afcaw3\",\"data-framer-name\":\"Type=Accent BG, Logotype=Yes, Company=18\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:146,layoutDependency:layoutDependency,layoutId:\"Ts2TVN7al\",svg:'<svg width=\"146\" height=\"20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4.94 0H0l5.15 8.586h4.834L4.94 0Z\" fill=\"#0061EF\"/><path d=\"M10.452 0h4.94l-5.15 8.586H5.407L10.452 0Z\" fill=\"#0054CF\"/><path d=\"M7.696 19.895c4.25 0 7.697-3.469 7.697-7.748 0-4.28-3.446-7.749-7.697-7.749C3.446 4.398 0 7.868 0 12.147c0 4.28 3.446 7.748 7.696 7.748Z\" fill=\"#FFCC01\"/><path d=\"m5.548 15.706.597-2.633-1.986-1.77 2.616-.234L7.8 8.586l1.024 2.483 2.616.233-1.986 1.77.597 2.634L7.8 14.308l-2.252 1.398Z\" fill=\"#fff\"/><g clip-path=\"url(#a)\"><path d=\"M33.001 15.33c-1.435 1.412-3.18 2.118-5.238 2.118-2.058 0-3.804-.706-5.239-2.117-1.42-1.425-2.131-3.165-2.131-5.222 0-2.056.71-3.79 2.131-5.202 1.435-1.424 3.181-2.137 5.239-2.137 2.057 0 3.803.713 5.238 2.137 1.435 1.412 2.152 3.146 2.152 5.202s-.717 3.797-2.152 5.222Zm-8.507-1.894c.88.86 1.97 1.29 3.269 1.29 1.3 0 2.389-.43 3.268-1.29.88-.874 1.32-1.983 1.32-3.327 0-1.344-.44-2.453-1.32-3.327-.88-.873-1.969-1.31-3.268-1.31-1.3 0-2.39.437-3.27 1.31-.879.874-1.319 1.983-1.319 3.327 0 1.344.44 2.453 1.32 3.327Zm17.542-6.633c1.11 0 2.023.37 2.74 1.108.732.74 1.097 1.761 1.097 3.065v6.19h-2.619v-5.867c0-.672-.183-1.183-.548-1.533-.366-.363-.853-.544-1.462-.544-.677 0-1.218.208-1.624.625-.406.417-.61 1.042-.61 1.875v5.443h-2.618V7.085h2.619v1.129c.636-.941 1.644-1.411 3.025-1.411ZM47.5 17.165V2.448h2.62v14.717H47.5Zm5.707-11.29c-.433 0-.812-.154-1.137-.464a1.575 1.575 0 0 1-.467-1.129c0-.43.156-.806.467-1.129a1.564 1.564 0 0 1 1.137-.484c.447 0 .826.162 1.137.484.325.323.487.7.487 1.13 0 .43-.162.806-.487 1.128-.311.31-.69.464-1.137.464Zm-1.3 11.29V7.085h2.62v10.08h-2.62ZM61.96 6.803c1.11 0 2.024.37 2.741 1.108.731.74 1.096 1.761 1.096 3.065v6.19h-2.619v-5.867c0-.672-.182-1.183-.548-1.533-.365-.363-.852-.544-1.462-.544-.676 0-1.218.208-1.624.625-.406.417-.609 1.042-.609 1.875v5.443h-2.62V7.085h2.62v1.129c.636-.941 1.645-1.411 3.025-1.411Zm7.678 6.39c.352 1.264 1.306 1.896 2.862 1.896 1.002 0 1.76-.336 2.274-1.008l2.112 1.21c-1.002 1.438-2.477 2.157-4.426 2.157-1.678 0-3.025-.504-4.04-1.512-1.016-1.008-1.523-2.279-1.523-3.81 0-1.52.5-2.783 1.502-3.791 1.002-1.022 2.288-1.532 3.858-1.532 1.489 0 2.714.51 3.675 1.532.974 1.021 1.462 2.285 1.462 3.79 0 .336-.034.692-.102 1.069h-7.654Zm-.04-2.015h5.176c-.148-.686-.46-1.197-.933-1.533a2.615 2.615 0 0 0-1.584-.504c-.704 0-1.286.182-1.746.545-.46.349-.765.846-.914 1.492Z\" fill=\"#0061EF\"/><path d=\"M84.065 2.837c1.96 0 3.591.688 4.897 2.066 1.32 1.378 1.98 3.077 1.98 5.096s-.66 3.717-1.98 5.095c-1.306 1.378-2.938 2.067-4.897 2.067h-5.672V2.837h5.672Zm0 11.623c1.238 0 2.245-.41 3.02-1.228.776-.832 1.163-1.91 1.163-3.233 0-1.323-.387-2.394-1.163-3.213-.775-.832-1.782-1.248-3.02-1.248H81.21v8.922h2.856Zm9.444-8.759c-.434 0-.815-.156-1.142-.47a1.608 1.608 0 0 1-.469-1.146c0-.437.157-.819.47-1.146.326-.328.707-.491 1.141-.491.45 0 .83.163 1.144.49.326.328.49.71.49 1.147 0 .436-.164.818-.49 1.146-.314.314-.695.47-1.144.47Zm-1.305 11.46V6.93h2.632v10.232h-2.632ZM103.346 6.93h2.897l-3.877 10.232h-2.999L95.491 6.93h2.897l2.468 7.163 2.49-7.163Zm11.848 8.963c-1.048 1.037-2.327 1.556-3.836 1.556-1.51 0-2.788-.519-3.836-1.556-1.034-1.05-1.551-2.332-1.551-3.847 0-1.514.517-2.79 1.551-3.826 1.048-1.051 2.326-1.576 3.836-1.576 1.509 0 2.788.525 3.836 1.576 1.047 1.036 1.571 2.312 1.571 3.826 0 1.515-.524 2.797-1.571 3.847Zm-5.815-1.82c.531.531 1.19.797 1.979.797.788 0 1.448-.266 1.979-.798.53-.532.796-1.207.796-2.026 0-.818-.266-1.494-.796-2.026-.531-.532-1.191-.798-1.979-.798-.789 0-1.448.266-1.979.798-.517.532-.776 1.208-.776 2.026 0 .819.259 1.494.776 2.026Zm11.257-5.383c.245-.655.647-1.146 1.204-1.473a3.747 3.747 0 0 1 1.897-.491V9.67c-.802-.095-1.522.069-2.162.492-.626.422-.939 1.125-.939 2.107v4.891h-2.632V6.93h2.632v1.76Zm8.506 8.759c-1.536 0-2.822-.519-3.855-1.556-1.021-1.036-1.531-2.319-1.531-3.847s.51-2.81 1.531-3.847c1.033-1.037 2.319-1.555 3.855-1.555a5.28 5.28 0 0 1 2.714.716 4.76 4.76 0 0 1 1.857 1.924l-2.265 1.33a2.3 2.3 0 0 0-.938-1.003 2.64 2.64 0 0 0-1.388-.368c-.789 0-1.442.266-1.959.798-.516.518-.775 1.187-.775 2.005 0 .805.259 1.474.775 2.006.517.518 1.17.777 1.959.777.531 0 1-.116 1.408-.348.421-.245.734-.58.939-1.002l2.285 1.31a5.197 5.197 0 0 1-1.898 1.944 5.28 5.28 0 0 1-2.714.716Zm7.457-4.318c.353 1.282 1.312 1.923 2.876 1.923 1.007 0 1.769-.34 2.286-1.023l2.122 1.228c-1.007 1.46-2.49 2.19-4.449 2.19-1.686 0-3.04-.512-4.06-1.535-1.021-1.023-1.531-2.313-1.531-3.868 0-1.541.504-2.824 1.51-3.847 1.007-1.037 2.3-1.555 3.878-1.555 1.495 0 2.726.518 3.693 1.555.979 1.037 1.469 2.32 1.469 3.847 0 .341-.035.703-.103 1.085h-7.691Zm-.041-2.047h5.203c-.15-.695-.464-1.214-.939-1.555a2.612 2.612 0 0 0-1.591-.511c-.708 0-1.293.184-1.756.552-.462.355-.768.86-.917 1.514Z\" fill=\"#00183C\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(19.393 2.448)\" d=\"M0 0h126v15H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({i6JBgYP5b:{height:48,width:\"48px\",y:(componentViewport?.y||0)+0+0+6},vTARl2he4:{height:48,width:\"48px\",y:(componentViewport?.y||0)+0+0+6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3rufsj-container\",layoutDependency:layoutDependency,layoutId:\"WjhjhEDOy-container\",nodeId:\"WjhjhEDOy\",rendersWithMotion:true,scopeId:\"BEAhkbnww\",children:/*#__PURE__*/_jsx(MenuHamburgerMenu,{E6NV4Gf2f:E6NV4Gf2f4l1w7q,height:\"100%\",id:\"WjhjhEDOy\",layoutId:\"WjhjhEDOy\",lYvpkC7IW:\"var(--token-963ba7ff-1506-4ab8-a9bc-332b05614e66, rgb(9, 9, 11))\",style:{height:\"100%\",width:\"100%\"},variant:\"YeuyKfRYb\",width:\"100%\",...addPropertyOverrides({vTARl2he4:{variant:\"rORwFCWei\"}},baseVariant,gestureVariant)})})})]}),isDisplayed7()&&/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c1fx80\",\"data-framer-name\":\"Mobile Dropdown\",layoutDependency:layoutDependency,layoutId:\"tjnzKyeoq\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"eARN8xyJx\"},implicitPathVariables:undefined},{href:{webPageId:\"eARN8xyJx\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,...addPropertyOverrides({vTARl2he4:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+60+15+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-f2rh2j-container\",layoutDependency:layoutDependency,layoutId:\"yiVNSqS3i-container\",nodeId:\"yiVNSqS3i\",rendersWithMotion:true,scopeId:\"BEAhkbnww\",children:/*#__PURE__*/_jsx(MenuItem,{dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(9, 9, 11, 0.05)\",id:\"yiVNSqS3i\",ku0K5iab7:\"Home\",layoutId:\"yiVNSqS3i\",style:{height:\"100%\",width:\"100%\"},stziIHmv7:\"rgba(255, 255, 255, 0)\",T3ktnO2nz:false,variant:\"M5knlVpZZ\",wGRcFK04x:Cof0RMUzO,width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks[0],...addPropertyOverrides({vTARl2he4:{ZpWw94nXT:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,...addPropertyOverrides({vTARl2he4:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+60+15+46}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ozvw7w-container\",layoutDependency:layoutDependency,layoutId:\"I5rb1isHw-container\",nodeId:\"I5rb1isHw\",rendersWithMotion:true,scopeId:\"BEAhkbnww\",children:/*#__PURE__*/_jsx(MenuItem,{dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(9, 9, 11, 0.05)\",id:\"I5rb1isHw\",ku0K5iab7:\"Divorce Services\",layoutId:\"I5rb1isHw\",style:{height:\"100%\",width:\"100%\"},stziIHmv7:\"rgba(255, 255, 255, 0)\",T3ktnO2nz:false,variant:\"glYJEhi3Q\",wGRcFK04x:Cof0RMUzO,width:\"100%\",ycFa86gVJ:\"flex-start\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zhc5BwGIU\"},implicitPathVariables:undefined},{href:{webPageId:\"zhc5BwGIU\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,...addPropertyOverrides({vTARl2he4:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+60+15+92}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tvsc1y-container\",layoutDependency:layoutDependency,layoutId:\"Lyg3PQsy_-container\",nodeId:\"Lyg3PQsy_\",rendersWithMotion:true,scopeId:\"BEAhkbnww\",children:/*#__PURE__*/_jsx(MenuItem,{dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(9, 9, 11, 0.05)\",id:\"Lyg3PQsy_\",ku0K5iab7:\"Reviews\",layoutId:\"Lyg3PQsy_\",style:{height:\"100%\",width:\"100%\"},stziIHmv7:\"rgba(255, 255, 255, 0)\",T3ktnO2nz:false,variant:\"M5knlVpZZ\",wGRcFK04x:Cof0RMUzO,width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks1[0],...addPropertyOverrides({vTARl2he4:{ZpWw94nXT:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,...addPropertyOverrides({vTARl2he4:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+60+15+138}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-iwr3mr-container\",layoutDependency:layoutDependency,layoutId:\"xPZaZESAZ-container\",nodeId:\"xPZaZESAZ\",rendersWithMotion:true,scopeId:\"BEAhkbnww\",children:/*#__PURE__*/_jsx(MenuItemWithUpdateURLSearchParamsiwr3mrWithMappedReactProps39pur3,{dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(9, 9, 11, 0.05)\",id:\"xPZaZESAZ\",ku0K5iab7:\"Blog\",layoutId:\"xPZaZESAZ\",style:{height:\"100%\",width:\"100%\"},stziIHmv7:\"rgba(255, 255, 255, 0)\",T3ktnO2nz:false,variant:\"M5knlVpZZ\",wGRcFK04x:Cof0RMUzO,width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:\"https://www.onlinedivorce.com/blog/\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,...addPropertyOverrides({vTARl2he4:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+60+15+184}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cpw32y-container\",layoutDependency:layoutDependency,layoutId:\"wA7kcwA0W-container\",nodeId:\"wA7kcwA0W\",rendersWithMotion:true,scopeId:\"BEAhkbnww\",children:/*#__PURE__*/_jsx(MenuItemWithUpdateURLSearchParams1cpw32yWithMappedReactProps39pur3,{dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(9, 9, 11, 0.05)\",id:\"wA7kcwA0W\",ku0K5iab7:\"FAQ\",layoutId:\"wA7kcwA0W\",style:{height:\"100%\",width:\"100%\"},stziIHmv7:\"rgba(255, 255, 255, 0)\",T3ktnO2nz:false,variant:\"M5knlVpZZ\",wGRcFK04x:Cof0RMUzO,width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:\"https://www.onlinedivorce.com/frequently_asked_questions/\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,...addPropertyOverrides({vTARl2he4:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+60+15+230}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16e3l9b-container\",layoutDependency:layoutDependency,layoutId:\"NDf_j8PWH-container\",nodeId:\"NDf_j8PWH\",rendersWithMotion:true,scopeId:\"BEAhkbnww\",children:/*#__PURE__*/_jsx(ButtonWithUpdateURLSearchParams16e3l9bWithMappedReactProps1v1ipky,{ApWhoO21o:{borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderStyle:\"solid\",borderWidth:1},ey7w8muFX:false,G77f5Yx_v:\"Log In\",height:\"100%\",HFfTjmBlq:\"var(--token-8191e31c-7b27-48a6-ab44-8a3d9e508351, rgb(9, 9, 11))\",id:\"NDf_j8PWH\",layoutId:\"NDf_j8PWH\",n9WP3fBIv:true,oV7zrnzuy:\"var(--token-39f21bef-c13b-4787-87cf-dea232daddef, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},SZQpZ3lk2:8,U1Kbkgydv:\"https://www.onlinedivorce.com/login/\",variant:\"vFqTvpxsv\",vfQAwnju6:{borderColor:\"rgb(230, 230, 232)\",borderStyle:\"solid\",borderWidth:1},VkxZQkMEC:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(9, 9, 11, 0.10798), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(9, 9, 11, 0.09534), 0px 10px 10px -3.75px rgba(9, 9, 11, 0.0375)\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false})})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-w53N8.framer-6976x3, .framer-w53N8 .framer-6976x3 { display: block; }\",\".framer-w53N8.framer-1eogz2d { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px 112px 10px 112px; position: relative; width: 1200px; }\",\".framer-w53N8 .framer-mojgvw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-w53N8 .framer-1g6ul65, .framer-w53N8 .framer-1afcaw3 { aspect-ratio: 7.3 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 146px; }\",\".framer-w53N8 .framer-2iuf3m-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 1; }\",\".framer-w53N8 .framer-fzgfxq { flex: none; height: 44px; position: relative; width: 1px; }\",\".framer-w53N8 .framer-1qztz87 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-w53N8 .framer-1febbwa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px 0px 0px 15px; position: relative; width: min-content; }\",\".framer-w53N8 .framer-lte8jt-container { flex: none; height: auto; position: relative; width: 73px; }\",\".framer-w53N8 .framer-3rufsj-container { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-w53N8 .framer-1c1fx80 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 15px; position: relative; width: 1px; }\",\".framer-w53N8 .framer-f2rh2j-container, .framer-w53N8 .framer-ozvw7w-container, .framer-w53N8 .framer-1tvsc1y-container, .framer-w53N8 .framer-iwr3mr-container, .framer-w53N8 .framer-1cpw32y-container { flex: none; height: 36px; position: relative; width: 100%; }\",\".framer-w53N8 .framer-16e3l9b-container { flex: none; height: 50px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-w53N8.framer-1eogz2d, .framer-w53N8 .framer-mojgvw, .framer-w53N8 .framer-1qztz87, .framer-w53N8 .framer-1febbwa, .framer-w53N8 .framer-1c1fx80 { gap: 0px; } .framer-w53N8.framer-1eogz2d > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-w53N8.framer-1eogz2d > :first-child, .framer-w53N8 .framer-mojgvw > :first-child, .framer-w53N8 .framer-1qztz87 > :first-child, .framer-w53N8 .framer-1febbwa > :first-child { margin-left: 0px; } .framer-w53N8.framer-1eogz2d > :last-child, .framer-w53N8 .framer-mojgvw > :last-child, .framer-w53N8 .framer-1qztz87 > :last-child, .framer-w53N8 .framer-1febbwa > :last-child { margin-right: 0px; } .framer-w53N8 .framer-mojgvw > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-w53N8 .framer-1qztz87 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-w53N8 .framer-1febbwa > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-w53N8 .framer-1c1fx80 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-w53N8 .framer-1c1fx80 > :first-child { margin-top: 0px; } .framer-w53N8 .framer-1c1fx80 > :last-child { margin-bottom: 0px; } }\",\".framer-w53N8.framer-v-lh3nj .framer-mojgvw { max-width: unset; }\",\".framer-w53N8.framer-v-161tesm.framer-1eogz2d { padding: 20px 15px 0px 15px; }\",\".framer-w53N8.framer-v-161tesm .framer-mojgvw { padding: 15px 20px 15px 20px; z-index: 10; }\",\".framer-w53N8.framer-v-161tesm .framer-2iuf3m-container, .framer-w53N8.framer-v-1qa98lt .framer-1tvsc1y-container { order: 2; }\",\".framer-w53N8.framer-v-161tesm .framer-fzgfxq, .framer-w53N8.framer-v-1qa98lt .framer-16e3l9b-container { order: 5; }\",\".framer-w53N8.framer-v-161tesm .framer-1qztz87, .framer-w53N8.framer-v-1qa98lt .framer-iwr3mr-container { order: 3; }\",\".framer-w53N8.framer-v-161tesm .framer-lte8jt-container, .framer-w53N8.framer-v-1qa98lt .framer-f2rh2j-container { order: 0; }\",\".framer-w53N8.framer-v-161tesm .framer-1afcaw3, .framer-w53N8.framer-v-1qa98lt .framer-1g6ul65, .framer-w53N8.framer-v-1qa98lt .framer-ozvw7w-container { order: 1; }\",\".framer-w53N8.framer-v-9tntiw.framer-1eogz2d { padding: 20px 15px 0px 15px; width: min-content; }\",\".framer-w53N8.framer-v-9tntiw .framer-mojgvw { flex: none; max-width: unset; padding: 15px 15px 15px 25px; width: min-content; z-index: 10; }\",\".framer-w53N8.framer-v-9tntiw .framer-2iuf3m-container { flex: none; width: auto; }\",\".framer-w53N8.framer-v-1r5484y.framer-1eogz2d { flex-direction: column; gap: 0px; justify-content: flex-start; padding: 0px; width: 390px; }\",\".framer-w53N8.framer-v-1r5484y .framer-mojgvw { flex: none; gap: unset; height: 60px; justify-content: space-between; padding: 15px 10px 15px 15px; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-w53N8.framer-v-1r5484y.framer-1eogz2d, .framer-w53N8.framer-v-1r5484y .framer-mojgvw { gap: 0px; } .framer-w53N8.framer-v-1r5484y.framer-1eogz2d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-w53N8.framer-v-1r5484y.framer-1eogz2d > :first-child { margin-top: 0px; } .framer-w53N8.framer-v-1r5484y.framer-1eogz2d > :last-child { margin-bottom: 0px; } .framer-w53N8.framer-v-1r5484y .framer-mojgvw > *, .framer-w53N8.framer-v-1r5484y .framer-mojgvw > :first-child, .framer-w53N8.framer-v-1r5484y .framer-mojgvw > :last-child { margin: 0px; } }\",\".framer-w53N8.framer-v-1qa98lt.framer-1eogz2d { cursor: pointer; flex-direction: column; gap: 0px; justify-content: flex-start; max-height: calc(var(--framer-viewport-height, 100vh) * 1); min-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: auto; padding: 0px; width: 390px; }\",\".framer-w53N8.framer-v-1qa98lt .framer-mojgvw { flex: none; gap: unset; height: 60px; justify-content: space-between; padding: 15px 10px 15px 15px; width: 100%; }\",\".framer-w53N8.framer-v-1qa98lt .framer-1qztz87 { gap: 10px; order: 2; }\",\".framer-w53N8.framer-v-1qa98lt .framer-3rufsj-container, .framer-w53N8.framer-v-1qa98lt .framer-1cpw32y-container { order: 4; }\",\".framer-w53N8.framer-v-1qa98lt .framer-1c1fx80 { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-w53N8.framer-v-1qa98lt.framer-1eogz2d, .framer-w53N8.framer-v-1qa98lt .framer-mojgvw, .framer-w53N8.framer-v-1qa98lt .framer-1qztz87 { gap: 0px; } .framer-w53N8.framer-v-1qa98lt.framer-1eogz2d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-w53N8.framer-v-1qa98lt.framer-1eogz2d > :first-child { margin-top: 0px; } .framer-w53N8.framer-v-1qa98lt.framer-1eogz2d > :last-child { margin-bottom: 0px; } .framer-w53N8.framer-v-1qa98lt .framer-mojgvw > *, .framer-w53N8.framer-v-1qa98lt .framer-mojgvw > :first-child, .framer-w53N8.framer-v-1qa98lt .framer-mojgvw > :last-child { margin: 0px; } .framer-w53N8.framer-v-1qa98lt .framer-1qztz87 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-w53N8.framer-v-1qa98lt .framer-1qztz87 > :first-child { margin-left: 0px; } .framer-w53N8.framer-v-1qa98lt .framer-1qztz87 > :last-child { margin-right: 0px; } }\",'.framer-w53N8[data-border=\"true\"]::after, .framer-w53N8 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"eH9SeRCY6\":{\"layout\":[\"fixed\",\"auto\"]},\"PzSxrnS9h\":{\"layout\":[\"fixed\",\"auto\"]},\"EBZ3MKNOz\":{\"layout\":[\"auto\",\"auto\"]},\"i6JBgYP5b\":{\"layout\":[\"fixed\",\"auto\"]},\"vTARl2he4\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",\"100vh\"]}}}\n * @framerVariables {\"Cof0RMUzO\":\"textColor\",\"ORnOR2pUN\":\"bgBorder\",\"BeZsA273t\":\"showMenu\",\"FFcnuU4Ek\":\"desktopBG\",\"EdKYuwXXP\":\"mobileBG\",\"t4qtipNl7\":\"bGBlur\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBEAhkbnww=withCSS(Component,css,\"framer-w53N8\");export default FramerBEAhkbnww;FramerBEAhkbnww.displayName=\"Header\";FramerBEAhkbnww.defaultProps={height:64,width:1200};addPropertyControls(FramerBEAhkbnww,{variant:{options:[\"ynUw7ecw3\",\"eH9SeRCY6\",\"PzSxrnS9h\",\"EBZ3MKNOz\",\"i6JBgYP5b\",\"vTARl2he4\"],optionTitles:[\"Desktop [Default]\",\"Desktop [Full Width]\",\"Desktop [Boxed]\",\"Desktop [Boxed Mini]\",\"Mobile\",\"Mobile [Menu Opend]\"],title:\"Variant\",type:ControlType.Enum},Cof0RMUzO:{defaultValue:'var(--token-e6a1425f-5cc8-4e16-87a5-8615ab8b8fe1, rgb(82, 82, 91)) /* {\"name\":\"Gray 600 [Dynamic]\"} */',title:\"Text Color\",type:ControlType.Color},ORnOR2pUN:{defaultValue:{borderBottomWidth:1,borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},title:\"Bg Border\",type:ControlType.Border},BeZsA273t:{defaultValue:true,title:\"Show Menu\",type:ControlType.Boolean},FFcnuU4Ek:{defaultValue:'var(--token-5cb9a68d-31cb-4baf-8414-1a3d9276de57, rgba(255, 255, 255, 0.95)) /* {\"name\":\"Header Background [Dynamic]\"} */',title:\"Desktop BG\",type:ControlType.Color},EdKYuwXXP:{defaultValue:'var(--token-5cb9a68d-31cb-4baf-8414-1a3d9276de57, rgba(255, 255, 255, 0.9)) /* {\"name\":\"Header Background\"} */',title:\"Mobile BG\",type:ControlType.Color},t4qtipNl7:{defaultValue:10,step:1,title:\"BG Blur\",type:ControlType.Number}});addFonts(FramerBEAhkbnww,[{explicitInter:true,fonts:[]},...MenuMenuFonts,...ButtonFonts,...MenuHamburgerMenuFonts,...MenuItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBEAhkbnww\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eH9SeRCY6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PzSxrnS9h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EBZ3MKNOz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"i6JBgYP5b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vTARl2he4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",\\\"100vh\\\"]}}}\",\"framerVariables\":\"{\\\"Cof0RMUzO\\\":\\\"textColor\\\",\\\"ORnOR2pUN\\\":\\\"bgBorder\\\",\\\"BeZsA273t\\\":\\\"showMenu\\\",\\\"FFcnuU4Ek\\\":\\\"desktopBG\\\",\\\"EdKYuwXXP\\\":\\\"mobileBG\\\",\\\"t4qtipNl7\\\":\\\"bGBlur\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"64\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BEAhkbnww.map", "// Generated by Framer (06534cb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withUpdateURLSearchParams}from\"https://framerusercontent.com/modules/n6eNZno8l3OhY9NeSJJd/tM3rvPbVwUR1AvIGI9dp/WithUpdateURLSearchParams.js\";import Button,*as ButtonInfo from\"https://framerusercontent.com/modules/1PS0Cll47Gc8S1c4Iy71/AbAg5VP4y24P0rP10jDQ/cSkkRxUbG.js\";const ButtonFonts=getFonts(Button);const ButtonWithUpdateURLSearchParams1agrajcWithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"wtHAIKsyG\",override:withUpdateURLSearchParams,scopeId:\"fmdKFpi1v\"}),ButtonInfo);const ButtonWithUpdateURLSearchParams18qjse2WithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"NwLPz0NQQ\",override:withUpdateURLSearchParams,scopeId:\"fmdKFpi1v\"}),ButtonInfo);const ButtonWithUpdateURLSearchParamsl12ojkWithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"pLtG0IEyp\",override:withUpdateURLSearchParams,scopeId:\"fmdKFpi1v\"}),ButtonInfo);const ButtonWithUpdateURLSearchParams1kmm0bfWithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"rvLtTiHel\",override:withUpdateURLSearchParams,scopeId:\"fmdKFpi1v\"}),ButtonInfo);const ButtonWithUpdateURLSearchParamsmc6iy1WithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"gxaQNQS71\",override:withUpdateURLSearchParams,scopeId:\"fmdKFpi1v\"}),ButtonInfo);const ButtonWithUpdateURLSearchParamswdfcg2WithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"HBN3jd5ey\",override:withUpdateURLSearchParams,scopeId:\"fmdKFpi1v\"}),ButtonInfo);const ButtonWithUpdateURLSearchParamsnnbqzyWithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"STC6X4lRu\",override:withUpdateURLSearchParams,scopeId:\"fmdKFpi1v\"}),ButtonInfo);const cycleOrder=[\"YEa2cNMuK\",\"s2NBpNiEU\",\"KezSv354s\"];const serializationHash=\"framer-CzWz7\";const variantClassNames={KezSv354s:\"framer-v-ia9wbl\",s2NBpNiEU:\"framer-v-i9itva\",YEa2cNMuK:\"framer-v-n7cjwx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};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??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Light [Desktop]\":\"YEa2cNMuK\",\"Light [Mobile]\":\"KezSv354s\",\"Light [Tablet]\":\"s2NBpNiEU\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"YEa2cNMuK\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YEa2cNMuK\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-n7cjwx\",className,classNames),\"data-framer-name\":\"Light [Desktop]\",layoutDependency:layoutDependency,layoutId:\"YEa2cNMuK\",ref:refBinding,style:{backgroundColor:\"var(--token-8c7bc642-2156-4fb7-bf79-f3d718423a93, rgb(30, 41, 55))\",...style},...addPropertyOverrides({KezSv354s:{\"data-framer-name\":\"Light [Mobile]\"},s2NBpNiEU:{\"data-framer-name\":\"Light [Tablet]\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3vdkbv\",layoutDependency:layoutDependency,layoutId:\"HUFQLZlOu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eggyjp\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"JjZSTF44z\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l2zush\",\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"x5FxMsPL7\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1szdmlb\",\"data-framer-name\":\"Type=Accent BG, Logotype=Yes, Company=18\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"rDTtOGPvc\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 146 20\"><path d=\"M 4.94 0 L 0 0 L 5.15 8.586 L 9.984 8.586 Z\" fill=\"rgb(0,97,239)\"></path><path d=\"M 10.452 0 L 15.392 0 L 10.242 8.586 L 5.407 8.586 Z\" fill=\"rgb(0,84,207)\"></path><path d=\"M 7.696 19.895 C 11.946 19.895 15.393 16.426 15.393 12.147 C 15.393 7.867 11.947 4.398 7.696 4.398 C 3.446 4.398 0 7.868 0 12.147 C 0 16.427 3.446 19.895 7.696 19.895 Z\" fill=\"rgb(255,204,1)\"></path><path d=\"M 5.548 15.706 L 6.145 13.073 L 4.159 11.303 L 6.775 11.069 L 7.8 8.586 L 8.824 11.069 L 11.44 11.302 L 9.454 13.072 L 10.051 15.706 L 7.8 14.308 Z\" fill=\"rgb(255,255,255)\"></path><g transform=\"translate(20.393 2.448)\" id=\"ss10614316546_5\"><path d=\"M 3 0 L 129 0 L 129 15 L 3 15 Z\" fill=\"transparent\"></path><path d=\"M 12.608 12.882 C 11.173 14.294 9.428 15 7.37 15 C 5.312 15 3.566 14.294 2.131 12.883 C 0.711 11.458 0 9.718 0 7.661 C 0 5.605 0.71 3.871 2.131 2.459 C 3.566 1.035 5.312 0.322 7.37 0.322 C 9.427 0.322 11.173 1.035 12.608 2.459 C 14.043 3.871 14.76 5.605 14.76 7.661 C 14.76 9.717 14.043 11.458 12.608 12.883 Z M 4.101 10.988 C 4.981 11.848 6.071 12.278 7.37 12.278 C 8.67 12.278 9.759 11.848 10.638 10.988 C 11.518 10.114 11.958 9.005 11.958 7.661 C 11.958 6.317 11.518 5.208 10.638 4.334 C 9.758 3.461 8.669 3.024 7.37 3.024 C 6.07 3.024 4.98 3.461 4.1 4.334 C 3.221 5.208 2.781 6.317 2.781 7.661 C 2.781 9.005 3.221 10.114 4.101 10.988 Z M 21.643 4.355 C 22.753 4.355 23.666 4.725 24.383 5.463 C 25.115 6.203 25.48 7.224 25.48 8.528 L 25.48 14.718 L 22.861 14.718 L 22.861 8.851 C 22.861 8.179 22.678 7.668 22.313 7.318 C 21.947 6.955 21.46 6.774 20.851 6.774 C 20.174 6.774 19.633 6.982 19.227 7.399 C 18.821 7.816 18.617 8.441 18.617 9.274 L 18.617 14.717 L 15.999 14.717 L 15.999 4.637 L 18.618 4.637 L 18.618 5.766 C 19.254 4.825 20.262 4.355 21.643 4.355 Z M 27.107 14.717 L 27.107 0 L 29.727 0 L 29.727 14.717 Z M 32.814 3.427 C 32.381 3.427 32.002 3.273 31.677 2.963 C 31.376 2.665 31.207 2.258 31.21 1.834 C 31.21 1.404 31.366 1.028 31.677 0.705 C 31.973 0.394 32.385 0.219 32.814 0.221 C 33.261 0.221 33.64 0.383 33.951 0.705 C 34.276 1.028 34.438 1.405 34.438 1.835 C 34.438 2.265 34.276 2.641 33.951 2.963 C 33.64 3.273 33.261 3.427 32.814 3.427 Z M 31.514 14.717 L 31.514 4.637 L 34.134 4.637 L 34.134 14.717 Z M 41.567 4.355 C 42.677 4.355 43.591 4.725 44.308 5.463 C 45.039 6.203 45.404 7.224 45.404 8.528 L 45.404 14.718 L 42.785 14.718 L 42.785 8.851 C 42.785 8.179 42.603 7.668 42.237 7.318 C 41.872 6.955 41.385 6.774 40.775 6.774 C 40.099 6.774 39.557 6.982 39.151 7.399 C 38.745 7.816 38.542 8.441 38.542 9.274 L 38.542 14.717 L 35.922 14.717 L 35.922 4.637 L 38.542 4.637 L 38.542 5.766 C 39.178 4.825 40.187 4.355 41.567 4.355 Z M 49.245 10.745 C 49.597 12.009 50.551 12.641 52.107 12.641 C 53.109 12.641 53.867 12.305 54.381 11.633 L 56.493 12.843 C 55.491 14.281 54.016 15 52.067 15 C 50.389 15 49.042 14.496 48.027 13.488 C 47.011 12.48 46.504 11.209 46.504 9.678 C 46.504 8.158 47.004 6.895 48.006 5.887 C 49.008 4.865 50.294 4.355 51.864 4.355 C 53.353 4.355 54.578 4.865 55.539 5.887 C 56.513 6.908 57.001 8.172 57.001 9.677 C 57.001 10.013 56.967 10.369 56.899 10.746 L 49.245 10.746 Z M 49.205 8.73 L 54.381 8.73 C 54.233 8.044 53.921 7.533 53.448 7.197 C 52.989 6.861 52.433 6.684 51.864 6.693 C 51.16 6.693 50.578 6.875 50.118 7.238 C 49.658 7.587 49.353 8.084 49.204 8.73 Z\" fill=\"rgb(0,97,239)\"></path><path d=\"M 63.672 0.389 C 65.632 0.389 67.263 1.077 68.569 2.455 C 69.889 3.833 70.549 5.532 70.549 7.551 C 70.549 9.57 69.889 11.268 68.569 12.646 C 67.263 14.024 65.631 14.713 63.672 14.713 L 58 14.713 L 58 0.389 Z M 63.672 12.012 C 64.91 12.012 65.917 11.602 66.692 10.784 C 67.468 9.952 67.855 8.874 67.855 7.551 C 67.855 6.228 67.468 5.157 66.692 4.338 C 65.917 3.506 64.91 3.09 63.672 3.09 L 60.817 3.09 L 60.817 12.012 L 63.673 12.012 Z M 73.116 3.253 C 72.682 3.253 72.301 3.097 71.974 2.783 C 71.671 2.479 71.502 2.066 71.505 1.637 C 71.505 1.2 71.662 0.818 71.975 0.491 C 72.301 0.163 72.682 0 73.116 0 C 73.566 0 73.946 0.163 74.26 0.49 C 74.586 0.818 74.75 1.2 74.75 1.637 C 74.75 2.073 74.586 2.455 74.26 2.783 C 73.946 3.097 73.565 3.253 73.116 3.253 Z M 71.811 14.713 L 71.811 4.482 L 74.443 4.482 L 74.443 14.714 L 71.811 14.714 Z M 82.953 4.482 L 85.85 4.482 L 81.973 14.714 L 78.974 14.714 L 75.098 4.482 L 77.995 4.482 L 80.463 11.645 Z M 94.801 13.445 C 93.753 14.482 92.474 15.001 90.965 15.001 C 89.455 15.001 88.177 14.482 87.129 13.445 C 86.095 12.395 85.578 11.113 85.578 9.598 C 85.578 8.084 86.095 6.808 87.129 5.772 C 88.177 4.721 89.455 4.196 90.965 4.196 C 92.474 4.196 93.753 4.721 94.801 5.772 C 95.848 6.808 96.372 8.084 96.372 9.598 C 96.372 11.113 95.848 12.395 94.801 13.445 Z M 88.986 11.625 C 89.517 12.156 90.176 12.422 90.965 12.422 C 91.753 12.422 92.413 12.156 92.944 11.624 C 93.474 11.092 93.74 10.417 93.74 9.598 C 93.74 8.78 93.474 8.104 92.944 7.572 C 92.413 7.04 91.753 6.774 90.965 6.774 C 90.176 6.774 89.517 7.04 88.986 7.572 C 88.469 8.104 88.21 8.78 88.21 9.598 C 88.21 10.417 88.469 11.092 88.986 11.624 Z M 100.243 6.242 C 100.488 5.587 100.89 5.096 101.447 4.769 C 102.025 4.44 102.679 4.271 103.344 4.278 L 103.344 7.222 C 102.542 7.127 101.822 7.291 101.182 7.714 C 100.556 8.136 100.243 8.839 100.243 9.821 L 100.243 14.712 L 97.611 14.712 L 97.611 4.482 L 100.243 4.482 Z M 108.749 15.001 C 107.213 15.001 105.927 14.482 104.894 13.445 C 103.873 12.409 103.363 11.126 103.363 9.598 C 103.363 8.07 103.873 6.788 104.894 5.751 C 105.927 4.714 107.213 4.196 108.749 4.196 C 109.702 4.185 110.64 4.433 111.463 4.912 C 112.253 5.363 112.898 6.03 113.32 6.836 L 111.055 8.166 C 110.852 7.744 110.525 7.394 110.117 7.163 C 109.697 6.914 109.217 6.787 108.729 6.795 C 107.94 6.795 107.287 7.061 106.77 7.593 C 106.254 8.111 105.995 8.78 105.995 9.598 C 105.995 10.403 106.254 11.072 106.77 11.604 C 107.287 12.122 107.94 12.381 108.729 12.381 C 109.26 12.381 109.729 12.265 110.137 12.033 C 110.558 11.788 110.871 11.453 111.076 11.031 L 113.361 12.341 C 112.912 13.146 112.257 13.817 111.463 14.285 C 110.64 14.764 109.702 15.012 108.749 15.001 Z M 116.206 10.683 C 116.559 11.965 117.518 12.606 119.082 12.606 C 120.089 12.606 120.851 12.266 121.368 11.583 L 123.49 12.811 C 122.483 14.271 121 15.001 119.041 15.001 C 117.355 15.001 116.001 14.489 114.981 13.466 C 113.96 12.443 113.45 11.153 113.45 9.598 C 113.45 8.057 113.954 6.774 114.96 5.751 C 115.967 4.714 117.26 4.196 118.838 4.196 C 120.333 4.196 121.564 4.714 122.531 5.751 C 123.51 6.788 124 8.071 124 9.598 C 124 9.939 123.965 10.301 123.897 10.683 Z M 116.165 8.636 L 121.368 8.636 C 121.218 7.941 120.904 7.422 120.429 7.081 C 119.969 6.741 119.41 6.562 118.838 6.57 C 118.13 6.57 117.545 6.754 117.082 7.122 C 116.62 7.477 116.314 7.982 116.165 8.636 Z\" fill=\"var(--token-39f21bef-c13b-4787-87cf-dea232daddef, rgb(255, 255, 255))\"></path></g></svg>',svgContentId:10614316546,withExternalLayout:true,...addPropertyOverrides({KezSv354s:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 146 20\"><path d=\"M 4.94 0 L 0 0 L 5.15 8.586 L 9.984 8.586 Z\" fill=\"rgb(0,97,239)\"></path><path d=\"M 10.452 0 L 15.392 0 L 10.242 8.586 L 5.407 8.586 Z\" fill=\"rgb(0,84,207)\"></path><path d=\"M 7.696 19.895 C 11.946 19.895 15.393 16.426 15.393 12.147 C 15.393 7.867 11.947 4.398 7.696 4.398 C 3.446 4.398 0 7.868 0 12.147 C 0 16.427 3.446 19.895 7.696 19.895 Z\" fill=\"rgb(255,204,1)\"></path><path d=\"M 5.548 15.706 L 6.145 13.073 L 4.159 11.303 L 6.775 11.069 L 7.8 8.586 L 8.824 11.069 L 11.44 11.302 L 9.454 13.072 L 10.051 15.706 L 7.8 14.308 Z\" fill=\"rgb(255,255,255)\"></path><g transform=\"translate(20.393 2.448)\" id=\"ss12180106191_5\"><path d=\"M 0 0 L 126 0 L 126 15 L 0 15 Z\" fill=\"transparent\"></path><path d=\"M 12.608 12.882 C 11.173 14.294 9.428 15 7.37 15 C 5.312 15 3.566 14.294 2.131 12.883 C 0.711 11.458 0 9.718 0 7.661 C 0 5.605 0.71 3.871 2.131 2.459 C 3.566 1.035 5.312 0.322 7.37 0.322 C 9.427 0.322 11.173 1.035 12.608 2.459 C 14.043 3.871 14.76 5.605 14.76 7.661 C 14.76 9.717 14.043 11.458 12.608 12.883 Z M 4.101 10.988 C 4.981 11.848 6.071 12.278 7.37 12.278 C 8.67 12.278 9.759 11.848 10.638 10.988 C 11.518 10.114 11.958 9.005 11.958 7.661 C 11.958 6.317 11.518 5.208 10.638 4.334 C 9.758 3.461 8.669 3.024 7.37 3.024 C 6.07 3.024 4.98 3.461 4.1 4.334 C 3.221 5.208 2.781 6.317 2.781 7.661 C 2.781 9.005 3.221 10.114 4.101 10.988 Z M 21.643 4.355 C 22.753 4.355 23.666 4.725 24.383 5.463 C 25.115 6.203 25.48 7.224 25.48 8.528 L 25.48 14.718 L 22.861 14.718 L 22.861 8.851 C 22.861 8.179 22.678 7.668 22.313 7.318 C 21.947 6.955 21.46 6.774 20.851 6.774 C 20.174 6.774 19.633 6.982 19.227 7.399 C 18.821 7.816 18.617 8.441 18.617 9.274 L 18.617 14.717 L 15.999 14.717 L 15.999 4.637 L 18.618 4.637 L 18.618 5.766 C 19.254 4.825 20.262 4.355 21.643 4.355 Z M 27.107 14.717 L 27.107 0 L 29.727 0 L 29.727 14.717 Z M 32.814 3.427 C 32.381 3.427 32.002 3.273 31.677 2.963 C 31.376 2.665 31.207 2.258 31.21 1.834 C 31.21 1.404 31.366 1.028 31.677 0.705 C 31.973 0.394 32.385 0.219 32.814 0.221 C 33.261 0.221 33.64 0.383 33.951 0.705 C 34.276 1.028 34.438 1.405 34.438 1.835 C 34.438 2.265 34.276 2.641 33.951 2.963 C 33.64 3.273 33.261 3.427 32.814 3.427 Z M 31.514 14.717 L 31.514 4.637 L 34.134 4.637 L 34.134 14.717 Z M 41.567 4.355 C 42.677 4.355 43.591 4.725 44.308 5.463 C 45.039 6.203 45.404 7.224 45.404 8.528 L 45.404 14.718 L 42.785 14.718 L 42.785 8.851 C 42.785 8.179 42.603 7.668 42.237 7.318 C 41.872 6.955 41.385 6.774 40.775 6.774 C 40.099 6.774 39.557 6.982 39.151 7.399 C 38.745 7.816 38.542 8.441 38.542 9.274 L 38.542 14.717 L 35.922 14.717 L 35.922 4.637 L 38.542 4.637 L 38.542 5.766 C 39.178 4.825 40.187 4.355 41.567 4.355 Z M 49.245 10.745 C 49.597 12.009 50.551 12.641 52.107 12.641 C 53.109 12.641 53.867 12.305 54.381 11.633 L 56.493 12.843 C 55.491 14.281 54.016 15 52.067 15 C 50.389 15 49.042 14.496 48.027 13.488 C 47.011 12.48 46.504 11.209 46.504 9.678 C 46.504 8.158 47.004 6.895 48.006 5.887 C 49.008 4.865 50.294 4.355 51.864 4.355 C 53.353 4.355 54.578 4.865 55.539 5.887 C 56.513 6.908 57.001 8.172 57.001 9.677 C 57.001 10.013 56.967 10.369 56.899 10.746 L 49.245 10.746 Z M 49.205 8.73 L 54.381 8.73 C 54.233 8.044 53.921 7.533 53.448 7.197 C 52.989 6.861 52.433 6.684 51.864 6.693 C 51.16 6.693 50.578 6.875 50.118 7.238 C 49.658 7.587 49.353 8.084 49.204 8.73 Z\" fill=\"rgb(0,97,239)\"></path><path d=\"M 63.672 0.389 C 65.632 0.389 67.263 1.077 68.569 2.455 C 69.889 3.833 70.549 5.532 70.549 7.551 C 70.549 9.57 69.889 11.268 68.569 12.646 C 67.263 14.024 65.631 14.713 63.672 14.713 L 58 14.713 L 58 0.389 Z M 63.672 12.012 C 64.91 12.012 65.917 11.602 66.692 10.784 C 67.468 9.952 67.855 8.874 67.855 7.551 C 67.855 6.228 67.468 5.157 66.692 4.338 C 65.917 3.506 64.91 3.09 63.672 3.09 L 60.817 3.09 L 60.817 12.012 L 63.673 12.012 Z M 73.116 3.253 C 72.682 3.253 72.301 3.097 71.974 2.783 C 71.671 2.479 71.502 2.066 71.505 1.637 C 71.505 1.2 71.662 0.818 71.975 0.491 C 72.301 0.163 72.682 0 73.116 0 C 73.566 0 73.946 0.163 74.26 0.49 C 74.586 0.818 74.75 1.2 74.75 1.637 C 74.75 2.073 74.586 2.455 74.26 2.783 C 73.946 3.097 73.565 3.253 73.116 3.253 Z M 71.811 14.713 L 71.811 4.482 L 74.443 4.482 L 74.443 14.714 L 71.811 14.714 Z M 82.953 4.482 L 85.85 4.482 L 81.973 14.714 L 78.974 14.714 L 75.098 4.482 L 77.995 4.482 L 80.463 11.645 Z M 94.801 13.445 C 93.753 14.482 92.474 15.001 90.965 15.001 C 89.455 15.001 88.177 14.482 87.129 13.445 C 86.095 12.395 85.578 11.113 85.578 9.598 C 85.578 8.084 86.095 6.808 87.129 5.772 C 88.177 4.721 89.455 4.196 90.965 4.196 C 92.474 4.196 93.753 4.721 94.801 5.772 C 95.848 6.808 96.372 8.084 96.372 9.598 C 96.372 11.113 95.848 12.395 94.801 13.445 Z M 88.986 11.625 C 89.517 12.156 90.176 12.422 90.965 12.422 C 91.753 12.422 92.413 12.156 92.944 11.624 C 93.474 11.092 93.74 10.417 93.74 9.598 C 93.74 8.78 93.474 8.104 92.944 7.572 C 92.413 7.04 91.753 6.774 90.965 6.774 C 90.176 6.774 89.517 7.04 88.986 7.572 C 88.469 8.104 88.21 8.78 88.21 9.598 C 88.21 10.417 88.469 11.092 88.986 11.624 Z M 100.243 6.242 C 100.488 5.587 100.89 5.096 101.447 4.769 C 102.025 4.44 102.679 4.271 103.344 4.278 L 103.344 7.222 C 102.542 7.127 101.822 7.291 101.182 7.714 C 100.556 8.136 100.243 8.839 100.243 9.821 L 100.243 14.712 L 97.611 14.712 L 97.611 4.482 L 100.243 4.482 Z M 108.749 15.001 C 107.213 15.001 105.927 14.482 104.894 13.445 C 103.873 12.409 103.363 11.126 103.363 9.598 C 103.363 8.07 103.873 6.788 104.894 5.751 C 105.927 4.714 107.213 4.196 108.749 4.196 C 109.702 4.185 110.64 4.433 111.463 4.912 C 112.253 5.363 112.898 6.03 113.32 6.836 L 111.055 8.166 C 110.852 7.744 110.525 7.394 110.117 7.163 C 109.697 6.914 109.217 6.787 108.729 6.795 C 107.94 6.795 107.287 7.061 106.77 7.593 C 106.254 8.111 105.995 8.78 105.995 9.598 C 105.995 10.403 106.254 11.072 106.77 11.604 C 107.287 12.122 107.94 12.381 108.729 12.381 C 109.26 12.381 109.729 12.265 110.137 12.033 C 110.558 11.788 110.871 11.453 111.076 11.031 L 113.361 12.341 C 112.912 13.146 112.257 13.817 111.463 14.285 C 110.64 14.764 109.702 15.012 108.749 15.001 Z M 116.206 10.683 C 116.559 11.965 117.518 12.606 119.082 12.606 C 120.089 12.606 120.851 12.266 121.368 11.583 L 123.49 12.811 C 122.483 14.271 121 15.001 119.041 15.001 C 117.355 15.001 116.001 14.489 114.981 13.466 C 113.96 12.443 113.45 11.153 113.45 9.598 C 113.45 8.057 113.954 6.774 114.96 5.751 C 115.967 4.714 117.26 4.196 118.838 4.196 C 120.333 4.196 121.564 4.714 122.531 5.751 C 123.51 6.788 124 8.071 124 9.598 C 124 9.939 123.965 10.301 123.897 10.683 Z M 116.165 8.636 L 121.368 8.636 C 121.218 7.941 120.904 7.422 120.429 7.081 C 119.969 6.741 119.41 6.562 118.838 6.57 C 118.13 6.57 117.545 6.754 117.082 7.122 C 116.62 7.477 116.314 7.982 116.165 8.636 Z\" fill=\"var(--token-39f21bef-c13b-4787-87cf-dea232daddef, rgb(255, 255, 255))\"></path></g></svg>',svgContentId:12180106191},s2NBpNiEU:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 146 20\"><path d=\"M 4.94 0 L 0 0 L 5.15 8.586 L 9.984 8.586 Z\" fill=\"rgb(0,97,239)\"></path><path d=\"M 10.452 0 L 15.392 0 L 10.242 8.586 L 5.407 8.586 Z\" fill=\"rgb(0,84,207)\"></path><path d=\"M 7.696 19.895 C 11.946 19.895 15.393 16.426 15.393 12.147 C 15.393 7.867 11.947 4.398 7.696 4.398 C 3.446 4.398 0 7.868 0 12.147 C 0 16.427 3.446 19.895 7.696 19.895 Z\" fill=\"rgb(255,204,1)\"></path><path d=\"M 5.548 15.706 L 6.145 13.073 L 4.159 11.303 L 6.775 11.069 L 7.8 8.586 L 8.824 11.069 L 11.44 11.302 L 9.454 13.072 L 10.051 15.706 L 7.8 14.308 Z\" fill=\"rgb(255,255,255)\"></path><g transform=\"translate(20.393 2.448)\" id=\"ss12180106191_5\"><path d=\"M 0 0 L 126 0 L 126 15 L 0 15 Z\" fill=\"transparent\"></path><path d=\"M 12.608 12.882 C 11.173 14.294 9.428 15 7.37 15 C 5.312 15 3.566 14.294 2.131 12.883 C 0.711 11.458 0 9.718 0 7.661 C 0 5.605 0.71 3.871 2.131 2.459 C 3.566 1.035 5.312 0.322 7.37 0.322 C 9.427 0.322 11.173 1.035 12.608 2.459 C 14.043 3.871 14.76 5.605 14.76 7.661 C 14.76 9.717 14.043 11.458 12.608 12.883 Z M 4.101 10.988 C 4.981 11.848 6.071 12.278 7.37 12.278 C 8.67 12.278 9.759 11.848 10.638 10.988 C 11.518 10.114 11.958 9.005 11.958 7.661 C 11.958 6.317 11.518 5.208 10.638 4.334 C 9.758 3.461 8.669 3.024 7.37 3.024 C 6.07 3.024 4.98 3.461 4.1 4.334 C 3.221 5.208 2.781 6.317 2.781 7.661 C 2.781 9.005 3.221 10.114 4.101 10.988 Z M 21.643 4.355 C 22.753 4.355 23.666 4.725 24.383 5.463 C 25.115 6.203 25.48 7.224 25.48 8.528 L 25.48 14.718 L 22.861 14.718 L 22.861 8.851 C 22.861 8.179 22.678 7.668 22.313 7.318 C 21.947 6.955 21.46 6.774 20.851 6.774 C 20.174 6.774 19.633 6.982 19.227 7.399 C 18.821 7.816 18.617 8.441 18.617 9.274 L 18.617 14.717 L 15.999 14.717 L 15.999 4.637 L 18.618 4.637 L 18.618 5.766 C 19.254 4.825 20.262 4.355 21.643 4.355 Z M 27.107 14.717 L 27.107 0 L 29.727 0 L 29.727 14.717 Z M 32.814 3.427 C 32.381 3.427 32.002 3.273 31.677 2.963 C 31.376 2.665 31.207 2.258 31.21 1.834 C 31.21 1.404 31.366 1.028 31.677 0.705 C 31.973 0.394 32.385 0.219 32.814 0.221 C 33.261 0.221 33.64 0.383 33.951 0.705 C 34.276 1.028 34.438 1.405 34.438 1.835 C 34.438 2.265 34.276 2.641 33.951 2.963 C 33.64 3.273 33.261 3.427 32.814 3.427 Z M 31.514 14.717 L 31.514 4.637 L 34.134 4.637 L 34.134 14.717 Z M 41.567 4.355 C 42.677 4.355 43.591 4.725 44.308 5.463 C 45.039 6.203 45.404 7.224 45.404 8.528 L 45.404 14.718 L 42.785 14.718 L 42.785 8.851 C 42.785 8.179 42.603 7.668 42.237 7.318 C 41.872 6.955 41.385 6.774 40.775 6.774 C 40.099 6.774 39.557 6.982 39.151 7.399 C 38.745 7.816 38.542 8.441 38.542 9.274 L 38.542 14.717 L 35.922 14.717 L 35.922 4.637 L 38.542 4.637 L 38.542 5.766 C 39.178 4.825 40.187 4.355 41.567 4.355 Z M 49.245 10.745 C 49.597 12.009 50.551 12.641 52.107 12.641 C 53.109 12.641 53.867 12.305 54.381 11.633 L 56.493 12.843 C 55.491 14.281 54.016 15 52.067 15 C 50.389 15 49.042 14.496 48.027 13.488 C 47.011 12.48 46.504 11.209 46.504 9.678 C 46.504 8.158 47.004 6.895 48.006 5.887 C 49.008 4.865 50.294 4.355 51.864 4.355 C 53.353 4.355 54.578 4.865 55.539 5.887 C 56.513 6.908 57.001 8.172 57.001 9.677 C 57.001 10.013 56.967 10.369 56.899 10.746 L 49.245 10.746 Z M 49.205 8.73 L 54.381 8.73 C 54.233 8.044 53.921 7.533 53.448 7.197 C 52.989 6.861 52.433 6.684 51.864 6.693 C 51.16 6.693 50.578 6.875 50.118 7.238 C 49.658 7.587 49.353 8.084 49.204 8.73 Z\" fill=\"rgb(0,97,239)\"></path><path d=\"M 63.672 0.389 C 65.632 0.389 67.263 1.077 68.569 2.455 C 69.889 3.833 70.549 5.532 70.549 7.551 C 70.549 9.57 69.889 11.268 68.569 12.646 C 67.263 14.024 65.631 14.713 63.672 14.713 L 58 14.713 L 58 0.389 Z M 63.672 12.012 C 64.91 12.012 65.917 11.602 66.692 10.784 C 67.468 9.952 67.855 8.874 67.855 7.551 C 67.855 6.228 67.468 5.157 66.692 4.338 C 65.917 3.506 64.91 3.09 63.672 3.09 L 60.817 3.09 L 60.817 12.012 L 63.673 12.012 Z M 73.116 3.253 C 72.682 3.253 72.301 3.097 71.974 2.783 C 71.671 2.479 71.502 2.066 71.505 1.637 C 71.505 1.2 71.662 0.818 71.975 0.491 C 72.301 0.163 72.682 0 73.116 0 C 73.566 0 73.946 0.163 74.26 0.49 C 74.586 0.818 74.75 1.2 74.75 1.637 C 74.75 2.073 74.586 2.455 74.26 2.783 C 73.946 3.097 73.565 3.253 73.116 3.253 Z M 71.811 14.713 L 71.811 4.482 L 74.443 4.482 L 74.443 14.714 L 71.811 14.714 Z M 82.953 4.482 L 85.85 4.482 L 81.973 14.714 L 78.974 14.714 L 75.098 4.482 L 77.995 4.482 L 80.463 11.645 Z M 94.801 13.445 C 93.753 14.482 92.474 15.001 90.965 15.001 C 89.455 15.001 88.177 14.482 87.129 13.445 C 86.095 12.395 85.578 11.113 85.578 9.598 C 85.578 8.084 86.095 6.808 87.129 5.772 C 88.177 4.721 89.455 4.196 90.965 4.196 C 92.474 4.196 93.753 4.721 94.801 5.772 C 95.848 6.808 96.372 8.084 96.372 9.598 C 96.372 11.113 95.848 12.395 94.801 13.445 Z M 88.986 11.625 C 89.517 12.156 90.176 12.422 90.965 12.422 C 91.753 12.422 92.413 12.156 92.944 11.624 C 93.474 11.092 93.74 10.417 93.74 9.598 C 93.74 8.78 93.474 8.104 92.944 7.572 C 92.413 7.04 91.753 6.774 90.965 6.774 C 90.176 6.774 89.517 7.04 88.986 7.572 C 88.469 8.104 88.21 8.78 88.21 9.598 C 88.21 10.417 88.469 11.092 88.986 11.624 Z M 100.243 6.242 C 100.488 5.587 100.89 5.096 101.447 4.769 C 102.025 4.44 102.679 4.271 103.344 4.278 L 103.344 7.222 C 102.542 7.127 101.822 7.291 101.182 7.714 C 100.556 8.136 100.243 8.839 100.243 9.821 L 100.243 14.712 L 97.611 14.712 L 97.611 4.482 L 100.243 4.482 Z M 108.749 15.001 C 107.213 15.001 105.927 14.482 104.894 13.445 C 103.873 12.409 103.363 11.126 103.363 9.598 C 103.363 8.07 103.873 6.788 104.894 5.751 C 105.927 4.714 107.213 4.196 108.749 4.196 C 109.702 4.185 110.64 4.433 111.463 4.912 C 112.253 5.363 112.898 6.03 113.32 6.836 L 111.055 8.166 C 110.852 7.744 110.525 7.394 110.117 7.163 C 109.697 6.914 109.217 6.787 108.729 6.795 C 107.94 6.795 107.287 7.061 106.77 7.593 C 106.254 8.111 105.995 8.78 105.995 9.598 C 105.995 10.403 106.254 11.072 106.77 11.604 C 107.287 12.122 107.94 12.381 108.729 12.381 C 109.26 12.381 109.729 12.265 110.137 12.033 C 110.558 11.788 110.871 11.453 111.076 11.031 L 113.361 12.341 C 112.912 13.146 112.257 13.817 111.463 14.285 C 110.64 14.764 109.702 15.012 108.749 15.001 Z M 116.206 10.683 C 116.559 11.965 117.518 12.606 119.082 12.606 C 120.089 12.606 120.851 12.266 121.368 11.583 L 123.49 12.811 C 122.483 14.271 121 15.001 119.041 15.001 C 117.355 15.001 116.001 14.489 114.981 13.466 C 113.96 12.443 113.45 11.153 113.45 9.598 C 113.45 8.057 113.954 6.774 114.96 5.751 C 115.967 4.714 117.26 4.196 118.838 4.196 C 120.333 4.196 121.564 4.714 122.531 5.751 C 123.51 6.788 124 8.071 124 9.598 C 124 9.939 123.965 10.301 123.897 10.683 Z M 116.165 8.636 L 121.368 8.636 C 121.218 7.941 120.904 7.422 120.429 7.081 C 119.969 6.741 119.41 6.562 118.838 6.57 C 118.13 6.57 117.545 6.754 117.082 7.122 C 116.62 7.477 116.314 7.982 116.165 8.636 Z\" fill=\"var(--token-39f21bef-c13b-4787-87cf-dea232daddef, rgb(255, 255, 255))\"></path></g></svg>',svgContentId:12180106191}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:[\"OnlineDivorce.com LLC, 200\",/*#__PURE__*/_jsx(motion.br,{}),\"Continental Drive, Suite 401,\",/*#__PURE__*/_jsx(motion.br,{}),\"Newark, DE 19713\"]})}),className:\"framer-2pbw1k\",fonts:[\"GF;Inter Tight-regular\"],layoutDependency:layoutDependency,layoutId:\"ilybU0apN\",style:{\"--extracted-r6o4lv\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vthxl0\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"EL_Q13hIk\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2hkg4f\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"lq39kOVfh\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gh11fs\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"dChaHz2UG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-39f21bef-c13b-4787-87cf-dea232daddef, rgb(255, 255, 255)))\"},children:\"Company\"})}),className:\"framer-7nsdt1\",fonts:[\"GF;Inter Tight-500\"],layoutDependency:layoutDependency,layoutId:\"CJmM790jS\",style:{\"--extracted-r6o4lv\":\"var(--token-39f21bef-c13b-4787-87cf-dea232daddef, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`max((max((min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) - 10px) / 1.5, 1px) - 20px) / 3, 1px)`,y:(componentViewport?.y||0)+80+(((componentViewport?.height||200)-80-542.8)/2+0+0)+0+0+0+0+164,...addPropertyOverrides({KezSv354s:{width:`max((min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-40-601.6)/2+0+0)+0+118.8+0+0+0+0+159},s2NBpNiEU:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) * 1, 1px) - 20px) / 3, 1px)`,y:(componentViewport?.y||0)+60+(((componentViewport?.height||200)-60-631.6)/2+0+0)+0+128.8+0+0+0+164}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1agrajc-container\",layoutDependency:layoutDependency,layoutId:\"wtHAIKsyG-container\",nodeId:\"wtHAIKsyG\",rendersWithMotion:true,scopeId:\"fmdKFpi1v\",children:/*#__PURE__*/_jsx(ButtonWithUpdateURLSearchParams1agrajcWithMappedReactProps1v1ipky,{ApWhoO21o:{borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderStyle:\"solid\",borderWidth:1},ey7w8muFX:false,G77f5Yx_v:\"About\",height:\"100%\",HFfTjmBlq:\"var(--token-f5dc93d9-b0a4-45ba-9b4f-5861468c4b1f, rgb(113, 113, 122))\",id:\"wtHAIKsyG\",layoutId:\"wtHAIKsyG\",n9WP3fBIv:false,oV7zrnzuy:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",style:{width:\"100%\"},SZQpZ3lk2:8,U1Kbkgydv:\"https://www.onlinedivorce.com/about_us/\",variant:\"ParpVvTni\",vfQAwnju6:{borderColor:\"rgb(230, 230, 232)\",borderStyle:\"solid\",borderWidth:1},VkxZQkMEC:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(9, 9, 11, 0.10798), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(9, 9, 11, 0.09534), 0px 10px 10px -3.75px rgba(9, 9, 11, 0.0375)\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`max((max((min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) - 10px) / 1.5, 1px) - 20px) / 3, 1px)`,y:(componentViewport?.y||0)+80+(((componentViewport?.height||200)-80-542.8)/2+0+0)+0+0+0+0+234,...addPropertyOverrides({KezSv354s:{width:`max((min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-40-601.6)/2+0+0)+0+118.8+0+0+0+0+224},s2NBpNiEU:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) * 1, 1px) - 20px) / 3, 1px)`,y:(componentViewport?.y||0)+60+(((componentViewport?.height||200)-60-631.6)/2+0+0)+0+128.8+0+0+0+234}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18qjse2-container\",layoutDependency:layoutDependency,layoutId:\"NwLPz0NQQ-container\",nodeId:\"NwLPz0NQQ\",rendersWithMotion:true,scopeId:\"fmdKFpi1v\",children:/*#__PURE__*/_jsx(ButtonWithUpdateURLSearchParams18qjse2WithMappedReactProps1v1ipky,{ApWhoO21o:{borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderStyle:\"solid\",borderWidth:1},ey7w8muFX:false,G77f5Yx_v:\"Blog\",height:\"100%\",HFfTjmBlq:\"var(--token-f5dc93d9-b0a4-45ba-9b4f-5861468c4b1f, rgb(113, 113, 122))\",id:\"NwLPz0NQQ\",layoutId:\"NwLPz0NQQ\",n9WP3fBIv:false,oV7zrnzuy:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",style:{width:\"100%\"},SZQpZ3lk2:8,U1Kbkgydv:\"https://www.onlinedivorce.com/blog/\",variant:\"ParpVvTni\",vfQAwnju6:{borderColor:\"rgb(230, 230, 232)\",borderStyle:\"solid\",borderWidth:1},VkxZQkMEC:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(9, 9, 11, 0.10798), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(9, 9, 11, 0.09534), 0px 10px 10px -3.75px rgba(9, 9, 11, 0.0375)\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7zzxry\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"Pos8a9eHZ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-39f21bef-c13b-4787-87cf-dea232daddef, rgb(255, 255, 255)))\"},children:\"Offers\"})}),className:\"framer-1p6y32j\",fonts:[\"GF;Inter Tight-500\"],layoutDependency:layoutDependency,layoutId:\"SIW33frVq\",style:{\"--extracted-r6o4lv\":\"var(--token-39f21bef-c13b-4787-87cf-dea232daddef, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`max((max((min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) - 10px) / 1.5, 1px) - 20px) / 3, 1px)`,y:(componentViewport?.y||0)+80+(((componentViewport?.height||200)-80-542.8)/2+0+0)+0+0+0+0+164,...addPropertyOverrides({KezSv354s:{width:`max((min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-40-601.6)/2+0+0)+0+118.8+0+0+0+0+164},s2NBpNiEU:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) * 1, 1px) - 20px) / 3, 1px)`,y:(componentViewport?.y||0)+60+(((componentViewport?.height||200)-60-631.6)/2+0+0)+0+128.8+0+0+0+164}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-l12ojk-container\",layoutDependency:layoutDependency,layoutId:\"pLtG0IEyp-container\",nodeId:\"pLtG0IEyp\",rendersWithMotion:true,scopeId:\"fmdKFpi1v\",children:/*#__PURE__*/_jsx(ButtonWithUpdateURLSearchParamsl12ojkWithMappedReactProps1v1ipky,{ApWhoO21o:{borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderStyle:\"solid\",borderWidth:1},ey7w8muFX:false,G77f5Yx_v:\"Offers\",height:\"100%\",HFfTjmBlq:\"var(--token-f5dc93d9-b0a4-45ba-9b4f-5861468c4b1f, rgb(113, 113, 122))\",id:\"pLtG0IEyp\",layoutId:\"pLtG0IEyp\",n9WP3fBIv:false,oV7zrnzuy:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",style:{width:\"100%\"},SZQpZ3lk2:8,U1Kbkgydv:\"https://www.onlinedivorce.com/offers-list/\",variant:\"ParpVvTni\",vfQAwnju6:{borderColor:\"rgb(230, 230, 232)\",borderStyle:\"solid\",borderWidth:1},VkxZQkMEC:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(9, 9, 11, 0.10798), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(9, 9, 11, 0.09534), 0px 10px 10px -3.75px rgba(9, 9, 11, 0.0375)\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`max((max((min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) - 10px) / 1.5, 1px) - 20px) / 3, 1px)`,y:(componentViewport?.y||0)+80+(((componentViewport?.height||200)-80-542.8)/2+0+0)+0+0+0+0+234,...addPropertyOverrides({KezSv354s:{width:`max((min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-40-601.6)/2+0+0)+0+118.8+0+0+0+0+234},s2NBpNiEU:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) * 1, 1px) - 20px) / 3, 1px)`,y:(componentViewport?.y||0)+60+(((componentViewport?.height||200)-60-631.6)/2+0+0)+0+128.8+0+0+0+234}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kmm0bf-container\",layoutDependency:layoutDependency,layoutId:\"rvLtTiHel-container\",nodeId:\"rvLtTiHel\",rendersWithMotion:true,scopeId:\"fmdKFpi1v\",children:/*#__PURE__*/_jsx(ButtonWithUpdateURLSearchParams1kmm0bfWithMappedReactProps1v1ipky,{ApWhoO21o:{borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderStyle:\"solid\",borderWidth:1},ey7w8muFX:false,G77f5Yx_v:\"Become an Affiliate\",height:\"100%\",HFfTjmBlq:\"var(--token-f5dc93d9-b0a4-45ba-9b4f-5861468c4b1f, rgb(113, 113, 122))\",id:\"rvLtTiHel\",layoutId:\"rvLtTiHel\",n9WP3fBIv:false,oV7zrnzuy:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",style:{width:\"100%\"},SZQpZ3lk2:8,U1Kbkgydv:\"https://www.onlinedivorce.com/affiliates/\",variant:\"ParpVvTni\",vfQAwnju6:{borderColor:\"rgb(230, 230, 232)\",borderStyle:\"solid\",borderWidth:1},VkxZQkMEC:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(9, 9, 11, 0.10798), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(9, 9, 11, 0.09534), 0px 10px 10px -3.75px rgba(9, 9, 11, 0.0375)\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wd71jx\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"Sx0d43X2a\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-39f21bef-c13b-4787-87cf-dea232daddef, rgb(255, 255, 255)))\"},children:\"Legal\"})}),className:\"framer-1unqbb9\",fonts:[\"GF;Inter Tight-500\"],layoutDependency:layoutDependency,layoutId:\"OzRfSHwNs\",style:{\"--extracted-r6o4lv\":\"var(--token-39f21bef-c13b-4787-87cf-dea232daddef, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`max((max((min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) - 10px) / 1.5, 1px) - 20px) / 3, 1px)`,y:(componentViewport?.y||0)+80+(((componentViewport?.height||200)-80-542.8)/2+0+0)+0+0+0+0+164,...addPropertyOverrides({KezSv354s:{width:`max((min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-40-601.6)/2+0+0)+0+118.8+0+0+0+0+164},s2NBpNiEU:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) * 1, 1px) - 20px) / 3, 1px)`,y:(componentViewport?.y||0)+60+(((componentViewport?.height||200)-60-631.6)/2+0+0)+0+128.8+0+0+0+164}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mc6iy1-container\",layoutDependency:layoutDependency,layoutId:\"gxaQNQS71-container\",nodeId:\"gxaQNQS71\",rendersWithMotion:true,scopeId:\"fmdKFpi1v\",children:/*#__PURE__*/_jsx(ButtonWithUpdateURLSearchParamsmc6iy1WithMappedReactProps1v1ipky,{ApWhoO21o:{borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderStyle:\"solid\",borderWidth:1},ey7w8muFX:false,G77f5Yx_v:\"Privacy Policy\",height:\"100%\",HFfTjmBlq:\"var(--token-f5dc93d9-b0a4-45ba-9b4f-5861468c4b1f, rgb(113, 113, 122))\",id:\"gxaQNQS71\",layoutId:\"gxaQNQS71\",n9WP3fBIv:false,oV7zrnzuy:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",style:{width:\"100%\"},SZQpZ3lk2:8,U1Kbkgydv:\"https://www.onlinedivorce.com/privacy-policy/\",variant:\"ParpVvTni\",vfQAwnju6:{borderColor:\"rgb(230, 230, 232)\",borderStyle:\"solid\",borderWidth:1},VkxZQkMEC:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(9, 9, 11, 0.10798), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(9, 9, 11, 0.09534), 0px 10px 10px -3.75px rgba(9, 9, 11, 0.0375)\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`max((max((min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) - 10px) / 1.5, 1px) - 20px) / 3, 1px)`,y:(componentViewport?.y||0)+80+(((componentViewport?.height||200)-80-542.8)/2+0+0)+0+0+0+0+234,...addPropertyOverrides({KezSv354s:{width:`max((min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-40-601.6)/2+0+0)+0+118.8+0+0+0+0+234},s2NBpNiEU:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) * 1, 1px) - 20px) / 3, 1px)`,y:(componentViewport?.y||0)+60+(((componentViewport?.height||200)-60-631.6)/2+0+0)+0+128.8+0+0+0+234}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wdfcg2-container\",layoutDependency:layoutDependency,layoutId:\"HBN3jd5ey-container\",nodeId:\"HBN3jd5ey\",rendersWithMotion:true,scopeId:\"fmdKFpi1v\",children:/*#__PURE__*/_jsx(ButtonWithUpdateURLSearchParamswdfcg2WithMappedReactProps1v1ipky,{ApWhoO21o:{borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderStyle:\"solid\",borderWidth:1},ey7w8muFX:false,G77f5Yx_v:\"Terms of Use\",height:\"100%\",HFfTjmBlq:\"var(--token-f5dc93d9-b0a4-45ba-9b4f-5861468c4b1f, rgb(113, 113, 122))\",id:\"HBN3jd5ey\",layoutId:\"HBN3jd5ey\",n9WP3fBIv:false,oV7zrnzuy:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",style:{width:\"100%\"},SZQpZ3lk2:8,U1Kbkgydv:\"https://www.onlinedivorce.com/terms_of_use/\",variant:\"ParpVvTni\",vfQAwnju6:{borderColor:\"rgb(230, 230, 232)\",borderStyle:\"solid\",borderWidth:1},VkxZQkMEC:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(9, 9, 11, 0.10798), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(9, 9, 11, 0.09534), 0px 10px 10px -3.75px rgba(9, 9, 11, 0.0375)\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`max((max((min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) - 10px) / 1.5, 1px) - 20px) / 3, 1px)`,y:(componentViewport?.y||0)+80+(((componentViewport?.height||200)-80-542.8)/2+0+0)+0+0+0+0+304,...addPropertyOverrides({KezSv354s:{width:`max((min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-40-601.6)/2+0+0)+0+118.8+0+0+0+0+304},s2NBpNiEU:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) * 1, 1px) - 20px) / 3, 1px)`,y:(componentViewport?.y||0)+60+(((componentViewport?.height||200)-60-631.6)/2+0+0)+0+128.8+0+0+0+304}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nnbqzy-container\",layoutDependency:layoutDependency,layoutId:\"STC6X4lRu-container\",nodeId:\"STC6X4lRu\",rendersWithMotion:true,scopeId:\"fmdKFpi1v\",children:/*#__PURE__*/_jsx(ButtonWithUpdateURLSearchParamsnnbqzyWithMappedReactProps1v1ipky,{ApWhoO21o:{borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderStyle:\"solid\",borderWidth:1},ey7w8muFX:false,G77f5Yx_v:\"Disclaimer\",height:\"100%\",HFfTjmBlq:\"var(--token-f5dc93d9-b0a4-45ba-9b4f-5861468c4b1f, rgb(113, 113, 122))\",id:\"STC6X4lRu\",layoutId:\"STC6X4lRu\",n9WP3fBIv:false,oV7zrnzuy:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",style:{width:\"100%\"},SZQpZ3lk2:8,U1Kbkgydv:\"https://www.onlinedivorce.com/disclaimer/\",variant:\"ParpVvTni\",vfQAwnju6:{borderColor:\"rgb(230, 230, 232)\",borderStyle:\"solid\",borderWidth:1},VkxZQkMEC:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(9, 9, 11, 0.10798), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(9, 9, 11, 0.09534), 0px 10px 10px -3.75px rgba(9, 9, 11, 0.0375)\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false})})})]})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8l49hy\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"S_ZfsQiLZ\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtMzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f5dc93d9-b0a4-45ba-9b4f-5861468c4b1f, rgb(113, 113, 122)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"OnlineDivorce \\xa9 All rights reserved\"})})}),className:\"framer-fapi6f\",fonts:[\"GF;Inter Tight-300\",\"GF;Inter Tight-regular\"],layoutDependency:layoutDependency,layoutId:\"Q950ozSeC\",style:{\"--extracted-r6o4lv\":\"var(--token-f5dc93d9-b0a4-45ba-9b4f-5861468c4b1f, rgb(113, 113, 122))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xy53ea\",layoutDependency:layoutDependency,layoutId:\"rWcPP90Dt\"})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CzWz7.framer-sivl92, .framer-CzWz7 .framer-sivl92 { display: block; }\",\".framer-CzWz7.framer-n7cjwx { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 80px 15px 0px 15px; position: relative; width: 1200px; }\",\".framer-CzWz7 .framer-3vdkbv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-CzWz7 .framer-1eggyjp { align-content: flex-start; align-items: flex-start; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-CzWz7 .framer-1l2zush { flex: none; height: 20px; overflow: hidden; position: relative; width: 146px; }\",\".framer-CzWz7 .framer-1szdmlb { flex: none; height: 20px; left: 0px; position: absolute; top: 0px; width: 146px; }\",\".framer-CzWz7 .framer-2pbw1k { flex: none; height: auto; max-width: 300px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-CzWz7 .framer-vthxl0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 4 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-CzWz7 .framer-2hkg4f { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-CzWz7 .framer-1gh11fs, .framer-CzWz7 .framer-7zzxry, .framer-CzWz7 .framer-wd71jx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-CzWz7 .framer-7nsdt1, .framer-CzWz7 .framer-1p6y32j, .framer-CzWz7 .framer-1unqbb9 { flex: none; height: auto; max-width: 600px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-CzWz7 .framer-1agrajc-container, .framer-CzWz7 .framer-18qjse2-container, .framer-CzWz7 .framer-l12ojk-container, .framer-CzWz7 .framer-1kmm0bf-container, .framer-CzWz7 .framer-mc6iy1-container, .framer-CzWz7 .framer-wdfcg2-container, .framer-CzWz7 .framer-nnbqzy-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-CzWz7 .framer-8l49hy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-CzWz7 .framer-fapi6f { flex: none; height: auto; max-width: 650px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-CzWz7 .framer-xy53ea { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 25px; min-width: 158px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CzWz7.framer-n7cjwx, .framer-CzWz7 .framer-3vdkbv, .framer-CzWz7 .framer-1eggyjp, .framer-CzWz7 .framer-vthxl0, .framer-CzWz7 .framer-2hkg4f, .framer-CzWz7 .framer-1gh11fs, .framer-CzWz7 .framer-7zzxry, .framer-CzWz7 .framer-wd71jx, .framer-CzWz7 .framer-xy53ea { gap: 0px; } .framer-CzWz7.framer-n7cjwx > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-CzWz7.framer-n7cjwx > :first-child, .framer-CzWz7 .framer-1eggyjp > :first-child, .framer-CzWz7 .framer-1gh11fs > :first-child, .framer-CzWz7 .framer-7zzxry > :first-child, .framer-CzWz7 .framer-wd71jx > :first-child { margin-top: 0px; } .framer-CzWz7.framer-n7cjwx > :last-child, .framer-CzWz7 .framer-1eggyjp > :last-child, .framer-CzWz7 .framer-1gh11fs > :last-child, .framer-CzWz7 .framer-7zzxry > :last-child, .framer-CzWz7 .framer-wd71jx > :last-child { margin-bottom: 0px; } .framer-CzWz7 .framer-3vdkbv > *, .framer-CzWz7 .framer-vthxl0 > *, .framer-CzWz7 .framer-2hkg4f > *, .framer-CzWz7 .framer-xy53ea > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-CzWz7 .framer-3vdkbv > :first-child, .framer-CzWz7 .framer-vthxl0 > :first-child, .framer-CzWz7 .framer-2hkg4f > :first-child, .framer-CzWz7 .framer-xy53ea > :first-child { margin-left: 0px; } .framer-CzWz7 .framer-3vdkbv > :last-child, .framer-CzWz7 .framer-vthxl0 > :last-child, .framer-CzWz7 .framer-2hkg4f > :last-child, .framer-CzWz7 .framer-xy53ea > :last-child { margin-right: 0px; } .framer-CzWz7 .framer-1eggyjp > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-CzWz7 .framer-1gh11fs > *, .framer-CzWz7 .framer-7zzxry > *, .framer-CzWz7 .framer-wd71jx > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-CzWz7.framer-v-i9itva.framer-n7cjwx { gap: 60px; padding: 60px 15px 0px 15px; width: 810px; }\",\".framer-CzWz7.framer-v-i9itva .framer-3vdkbv { flex-direction: column; gap: 60px; }\",\".framer-CzWz7.framer-v-i9itva .framer-1eggyjp { flex: none; flex-wrap: wrap; gap: 20px; max-width: unset; width: 100%; }\",\".framer-CzWz7.framer-v-i9itva .framer-2pbw1k { max-width: unset; white-space: pre; }\",\".framer-CzWz7.framer-v-i9itva .framer-vthxl0 { flex: none; width: 100%; }\",\".framer-CzWz7.framer-v-i9itva .framer-2hkg4f { flex: 2 0 0px; }\",\".framer-CzWz7.framer-v-i9itva .framer-8l49hy, .framer-CzWz7.framer-v-ia9wbl .framer-8l49hy { padding: 30px 0px 30px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CzWz7.framer-v-i9itva.framer-n7cjwx, .framer-CzWz7.framer-v-i9itva .framer-3vdkbv, .framer-CzWz7.framer-v-i9itva .framer-1eggyjp { gap: 0px; } .framer-CzWz7.framer-v-i9itva.framer-n7cjwx > *, .framer-CzWz7.framer-v-i9itva .framer-3vdkbv > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-CzWz7.framer-v-i9itva.framer-n7cjwx > :first-child, .framer-CzWz7.framer-v-i9itva .framer-3vdkbv > :first-child, .framer-CzWz7.framer-v-i9itva .framer-1eggyjp > :first-child { margin-top: 0px; } .framer-CzWz7.framer-v-i9itva.framer-n7cjwx > :last-child, .framer-CzWz7.framer-v-i9itva .framer-3vdkbv > :last-child, .framer-CzWz7.framer-v-i9itva .framer-1eggyjp > :last-child { margin-bottom: 0px; } .framer-CzWz7.framer-v-i9itva .framer-1eggyjp > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-CzWz7.framer-v-ia9wbl.framer-n7cjwx { gap: 40px; padding: 40px 15px 0px 15px; width: 390px; }\",\".framer-CzWz7.framer-v-ia9wbl .framer-3vdkbv { flex-direction: column; gap: 40px; }\",\".framer-CzWz7.framer-v-ia9wbl .framer-1eggyjp { flex: none; flex-wrap: wrap; max-width: unset; width: 100%; }\",\".framer-CzWz7.framer-v-ia9wbl .framer-vthxl0 { flex: none; flex-direction: column; gap: 40px; width: 100%; }\",\".framer-CzWz7.framer-v-ia9wbl .framer-2hkg4f { flex: none; gap: 20px; width: 100%; }\",\".framer-CzWz7.framer-v-ia9wbl .framer-1gh11fs { gap: 15px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CzWz7.framer-v-ia9wbl.framer-n7cjwx, .framer-CzWz7.framer-v-ia9wbl .framer-3vdkbv, .framer-CzWz7.framer-v-ia9wbl .framer-vthxl0, .framer-CzWz7.framer-v-ia9wbl .framer-2hkg4f, .framer-CzWz7.framer-v-ia9wbl .framer-1gh11fs { gap: 0px; } .framer-CzWz7.framer-v-ia9wbl.framer-n7cjwx > *, .framer-CzWz7.framer-v-ia9wbl .framer-3vdkbv > *, .framer-CzWz7.framer-v-ia9wbl .framer-vthxl0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-CzWz7.framer-v-ia9wbl.framer-n7cjwx > :first-child, .framer-CzWz7.framer-v-ia9wbl .framer-3vdkbv > :first-child, .framer-CzWz7.framer-v-ia9wbl .framer-vthxl0 > :first-child, .framer-CzWz7.framer-v-ia9wbl .framer-1gh11fs > :first-child { margin-top: 0px; } .framer-CzWz7.framer-v-ia9wbl.framer-n7cjwx > :last-child, .framer-CzWz7.framer-v-ia9wbl .framer-3vdkbv > :last-child, .framer-CzWz7.framer-v-ia9wbl .framer-vthxl0 > :last-child, .framer-CzWz7.framer-v-ia9wbl .framer-1gh11fs > :last-child { margin-bottom: 0px; } .framer-CzWz7.framer-v-ia9wbl .framer-2hkg4f > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-CzWz7.framer-v-ia9wbl .framer-2hkg4f > :first-child { margin-left: 0px; } .framer-CzWz7.framer-v-ia9wbl .framer-2hkg4f > :last-child { margin-right: 0px; } .framer-CzWz7.framer-v-ia9wbl .framer-1gh11fs > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }\",'.framer-CzWz7[data-border=\"true\"]::after, .framer-CzWz7 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 421\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"s2NBpNiEU\":{\"layout\":[\"fixed\",\"auto\"]},\"KezSv354s\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfmdKFpi1v=withCSS(Component,css,\"framer-CzWz7\");export default FramerfmdKFpi1v;FramerfmdKFpi1v.displayName=\"Footer\";FramerfmdKFpi1v.defaultProps={height:421,width:1200};addPropertyControls(FramerfmdKFpi1v,{variant:{options:[\"YEa2cNMuK\",\"s2NBpNiEU\",\"KezSv354s\"],optionTitles:[\"Light [Desktop]\",\"Light [Tablet]\",\"Light [Mobile]\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerfmdKFpi1v,[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qWSRToK8EPg.woff2\",weight:\"400\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qWSRToK8EPg.woff2\",weight:\"500\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjUQ-qWSRToK8EPg.woff2\",weight:\"300\"}]},...ButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfmdKFpi1v\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"s2NBpNiEU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KezSv354s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"421\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fmdKFpi1v.map", "// Generated by Framer (7e4cc89)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Plus Jakarta Sans-600\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNTxXUEKi4Rw.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-tUtQC .framer-styles-preset-1a12jdd:not(.rich-text-wrapper), .framer-tUtQC .framer-styles-preset-1a12jdd.rich-text-wrapper h1 { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.03em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-8191e31c-7b27-48a6-ab44-8a3d9e508351, #09090b); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-tUtQC .framer-styles-preset-1a12jdd:not(.rich-text-wrapper), .framer-tUtQC .framer-styles-preset-1a12jdd.rich-text-wrapper h1 { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.03em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-8191e31c-7b27-48a6-ab44-8a3d9e508351, #09090b); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-tUtQC .framer-styles-preset-1a12jdd:not(.rich-text-wrapper), .framer-tUtQC .framer-styles-preset-1a12jdd.rich-text-wrapper h1 { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.03em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-8191e31c-7b27-48a6-ab44-8a3d9e508351, #09090b); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-tUtQC\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (677c5d1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/pz5sv83zEItVp7nO6R8t/9ndtITGDeBuUvGCaSulJ/iC7cWkvuf.js\";import Button from\"https://framerusercontent.com/modules/1PS0Cll47Gc8S1c4Iy71/AbAg5VP4y24P0rP10jDQ/cSkkRxUbG.js\";const ButtonFonts=getFonts(Button);const cycleOrder=[\"axXGr8MtB\",\"EttxwlYYb\",\"DK95h6KVV\"];const serializationHash=\"framer-gwqdZ\";const variantClassNames={axXGr8MtB:\"framer-v-j5sh0m\",DK95h6KVV:\"framer-v-phx35b\",EttxwlYYb:\"framer-v-124qis3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};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??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Simple Light [Desktop]\":\"axXGr8MtB\",\"Simple Light [Mobile]\":\"DK95h6KVV\",\"Simple Light [Tablet]\":\"EttxwlYYb\"};const getProps=({background,height,id,link,text,textColor,title,width,...props})=>{return{...props,ACpMpFr3L:background??props.ACpMpFr3L??\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",eG2qRWVuY:text??props.eG2qRWVuY??\"Lorem ipsum\",izv65hphi:textColor??props.izv65hphi??\"var(--token-fd54a91d-2c97-4609-acbc-244da5b6b983, rgb(113, 113, 122))\",TPfgUMKvU:title??props.TPfgUMKvU??\"Call To Action\",variant:humanReadableVariantMap[props.variant]??props.variant??\"axXGr8MtB\",w3EFGvBAB:link??props.w3EFGvBAB};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,TPfgUMKvU,eG2qRWVuY,izv65hphi,w3EFGvBAB,ACpMpFr3L,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"axXGr8MtB\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.section,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-j5sh0m\",className,classNames),\"data-framer-name\":\"Simple Light [Desktop]\",layoutDependency:layoutDependency,layoutId:\"axXGr8MtB\",ref:refBinding,style:{...style},...addPropertyOverrides({DK95h6KVV:{\"data-framer-name\":\"Simple Light [Mobile]\"},EttxwlYYb:{\"data-framer-name\":\"Simple Light [Tablet]\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sqhwwl\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"w8xrnTcYz\",style:{backgroundColor:ACpMpFr3L,borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1plwhja\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"I4dkxIi3F\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.02) 100%)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.85,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(15+((componentViewport?.height||470)-30-440)/2)+440-285+0),pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/c0EZxtMucSR6UOSZk2TBnWsqr4.svg\"},className:\"framer-1eofmdw\",\"data-framer-name\":\"pattern\",layoutDependency:layoutDependency,layoutId:\"PWpz7Tz0j\",style:{mask:\"linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%) add\",opacity:.075,rotateX:39,transformPerspective:1200,WebkitMask:\"linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%) add\",z:80},...addPropertyOverrides({DK95h6KVV:{background:{alt:\"\",backgroundSize:.85,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(15+((componentViewport?.height||200)-30-360)/2)+360-285+0),pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/c0EZxtMucSR6UOSZk2TBnWsqr4.svg\"}},EttxwlYYb:{background:{alt:\"\",backgroundSize:.85,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(15+((componentViewport?.height||390)-30-360)/2)+360-285+0),pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/c0EZxtMucSR6UOSZk2TBnWsqr4.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1a12jdd\",\"data-styles-preset\":\"iC7cWkvuf\",style:{\"--framer-text-alignment\":\"center\"},children:\"Call To Action\"})}),className:\"framer-1vlzrnr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nkRvowflj\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:TPfgUMKvU,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-izv65hphi-lpRiOhBCf))\"},children:\"Lorem ipsum\"})}),className:\"framer-1cuuwes\",fonts:[\"GF;Inter Tight-regular\"],layoutDependency:layoutDependency,layoutId:\"T_EeEwf5l\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-izv65hphi-lpRiOhBCf)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-izv65hphi-lpRiOhBCf\":izv65hphi},text:eG2qRWVuY,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l3chyt\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"UmSU6LbuQ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+(15+((componentViewport?.height||470)-30-440)/2)+80+178+10,...addPropertyOverrides({DK95h6KVV:{y:(componentViewport?.y||0)+(15+((componentViewport?.height||200)-30-360)/2)+40+168+10},EttxwlYYb:{y:(componentViewport?.y||0)+(15+((componentViewport?.height||390)-30-360)/2)+60+158+10}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-k2snqe-container\",layoutDependency:layoutDependency,layoutId:\"xeS9YS_8G-container\",nodeId:\"xeS9YS_8G\",rendersWithMotion:true,scopeId:\"lpRiOhBCf\",children:/*#__PURE__*/_jsx(Button,{ApWhoO21o:{borderColor:\"rgb(5, 66, 153)\",borderStyle:\"solid\",borderWidth:1},ey7w8muFX:false,G77f5Yx_v:\"Get started\",height:\"100%\",HFfTjmBlq:\"var(--token-39f21bef-c13b-4787-87cf-dea232daddef, rgb(255, 255, 255))\",id:\"xeS9YS_8G\",layoutId:\"xeS9YS_8G\",n9WP3fBIv:true,oV7zrnzuy:\"var(--token-672c2e72-36f8-42d6-bf09-12ad18e9e014, rgb(0, 99, 237))\",style:{height:\"100%\"},SZQpZ3lk2:8,U1Kbkgydv:w3EFGvBAB,variant:\"BLJY3nWnc\",vfQAwnju6:{borderColor:\"rgb(230, 230, 232)\",borderStyle:\"solid\",borderWidth:1},VkxZQkMEC:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(9, 9, 11, 0.10798), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(9, 9, 11, 0.09534), 0px 10px 10px -3.75px rgba(9, 9, 11, 0.0375)\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gwqdZ.framer-ixi0zd, .framer-gwqdZ .framer-ixi0zd { display: block; }\",\".framer-gwqdZ.framer-j5sh0m { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 15px; position: relative; width: 1200px; }\",\".framer-gwqdZ .framer-sqhwwl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; min-height: 440px; overflow: hidden; padding: 80px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gwqdZ .framer-1plwhja { bottom: -15px; flex: none; height: 300px; left: -15px; overflow: visible; position: absolute; right: -15px; z-index: 0; }\",\".framer-gwqdZ .framer-1eofmdw { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-gwqdZ .framer-1vlzrnr { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-gwqdZ .framer-1cuuwes { flex: none; height: auto; max-width: 650px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-gwqdZ .framer-l3chyt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 0px 0px; position: relative; width: min-content; z-index: 0; }\",\".framer-gwqdZ .framer-k2snqe-container { flex: none; height: 50px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gwqdZ.framer-j5sh0m, .framer-gwqdZ .framer-sqhwwl, .framer-gwqdZ .framer-l3chyt { gap: 0px; } .framer-gwqdZ.framer-j5sh0m > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-gwqdZ.framer-j5sh0m > :first-child, .framer-gwqdZ .framer-l3chyt > :first-child { margin-left: 0px; } .framer-gwqdZ.framer-j5sh0m > :last-child, .framer-gwqdZ .framer-l3chyt > :last-child { margin-right: 0px; } .framer-gwqdZ .framer-sqhwwl > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-gwqdZ .framer-sqhwwl > :first-child { margin-top: 0px; } .framer-gwqdZ .framer-sqhwwl > :last-child { margin-bottom: 0px; } .framer-gwqdZ .framer-l3chyt > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",\".framer-gwqdZ.framer-v-124qis3.framer-j5sh0m { width: 810px; }\",\".framer-gwqdZ.framer-v-124qis3 .framer-sqhwwl { min-height: 360px; padding: 60px; }\",\".framer-gwqdZ.framer-v-phx35b.framer-j5sh0m { width: 390px; }\",\".framer-gwqdZ.framer-v-phx35b .framer-sqhwwl { gap: 10px; min-height: 360px; padding: 40px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gwqdZ.framer-v-phx35b .framer-sqhwwl { gap: 0px; } .framer-gwqdZ.framer-v-phx35b .framer-sqhwwl > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-gwqdZ.framer-v-phx35b .framer-sqhwwl > :first-child { margin-top: 0px; } .framer-gwqdZ.framer-v-phx35b .framer-sqhwwl > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 470\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"EttxwlYYb\":{\"layout\":[\"fixed\",\"auto\"]},\"DK95h6KVV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"TPfgUMKvU\":\"title\",\"eG2qRWVuY\":\"text\",\"izv65hphi\":\"textColor\",\"w3EFGvBAB\":\"link\",\"ACpMpFr3L\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerlpRiOhBCf=withCSS(Component,css,\"framer-gwqdZ\");export default FramerlpRiOhBCf;FramerlpRiOhBCf.displayName=\"Call To Action\";FramerlpRiOhBCf.defaultProps={height:470,width:1200};addPropertyControls(FramerlpRiOhBCf,{variant:{options:[\"axXGr8MtB\",\"EttxwlYYb\",\"DK95h6KVV\"],optionTitles:[\"Simple Light [Desktop]\",\"Simple Light [Tablet]\",\"Simple Light [Mobile]\"],title:\"Variant\",type:ControlType.Enum},TPfgUMKvU:{defaultValue:\"Call To Action\",displayTextArea:true,title:\"Title\",type:ControlType.String},eG2qRWVuY:{defaultValue:\"Lorem ipsum\",displayTextArea:false,title:\"Text\",type:ControlType.String},izv65hphi:{defaultValue:'var(--token-fd54a91d-2c97-4609-acbc-244da5b6b983, rgb(113, 113, 122)) /* {\"name\":\"Gray 500 [Dynamic]\"} */',title:\"Text Color\",type:ControlType.Color},w3EFGvBAB:{title:\"Link\",type:ControlType.Link},ACpMpFr3L:{defaultValue:'var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250)) /* {\"name\":\"Gray 50 [Dynamic]\"} */',title:\"Background\",type:ControlType.Color}});addFonts(FramerlpRiOhBCf,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qWSRToK8EPg.woff2\",weight:\"400\"}]},...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlpRiOhBCf\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EttxwlYYb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DK95h6KVV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"470\",\"framerVariables\":\"{\\\"TPfgUMKvU\\\":\\\"title\\\",\\\"eG2qRWVuY\\\":\\\"text\\\",\\\"izv65hphi\\\":\\\"textColor\\\",\\\"w3EFGvBAB\\\":\\\"link\\\",\\\"ACpMpFr3L\\\":\\\"background\\\"}\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState}from\"react\";import{updateURLSearchParams}from\"https://framerusercontent.com/modules/Ugd5xs9hXWgXwRXbjiJM/yWRbqQzWmt0xfb9uy6yp/CustomUtils.js\";export default function StateDropdown(){const[selectedState,setSelectedState]=useState(\"\");const[isHovering,setIsHovering]=useState(false);const[error,setError]=useState(false);const handleStateSelect=e=>{setSelectedState(e.target.value);// Clear error when user makes a selection\nif(e.target.value){setError(false);}};const handleContinue=()=>{if(selectedState){const redirectUrl=`https://www.onlinedivorce.com/case_details/${selectedState}/1/`;window.location.href=window?.location?.search?updateURLSearchParams(redirectUrl,window.location.search):redirectUrl;}else{// Show error when no state is selected\nsetError(true);}};return /*#__PURE__*/_jsxs(\"div\",{style:{fontFamily:\"'Inter Tight', system-ui, sans-serif\",width:\"100%\",maxWidth:\"500px\",margin:\"0 auto\",boxSizing:\"border-box\",padding:\"0\"},children:[/*#__PURE__*/_jsx(\"label\",{style:{display:\"block\",marginBottom:\"8px\",fontWeight:600,color:\"#333\"},children:\"Select Your State to Begin:\"}),/*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\"},children:[/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",right:\"12px\",top:\"16px\"/* Fixed pixel value */,pointerEvents:\"none\",zIndex:1},children:/*#__PURE__*/_jsx(\"svg\",{width:\"12\",height:\"8\",viewBox:\"0 0 12 8\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M1 1.5L6 6.5L11 1.5\",stroke:\"#555\",strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})})}),/*#__PURE__*/_jsxs(\"select\",{value:selectedState,onChange:handleStateSelect,style:{width:\"100%\",padding:\"12px 12px\",paddingRight:\"40px\",border:`1px solid ${error?\"#E53935\":\"#ccc\"}`,borderRadius:\"4px\",fontSize:\"16px\",marginBottom:error?\"8px\":\"15px\",backgroundColor:\"white\",appearance:\"none\",WebkitAppearance:\"none\",MozAppearance:\"none\",outline:error?\"none\":\"\"},children:[/*#__PURE__*/_jsx(\"option\",{value:\"\",children:\"Please select\"}),/*#__PURE__*/_jsxs(\"optgroup\",{label:\"United States\",children:[/*#__PURE__*/_jsx(\"option\",{value:\"alabama\",children:\"Alabama\"}),/*#__PURE__*/_jsx(\"option\",{value:\"alaska\",children:\"Alaska\"}),/*#__PURE__*/_jsx(\"option\",{value:\"arizona\",children:\"Arizona\"}),/*#__PURE__*/_jsx(\"option\",{value:\"arkansas\",children:\"Arkansas\"}),/*#__PURE__*/_jsx(\"option\",{value:\"california\",children:\"California\"}),/*#__PURE__*/_jsx(\"option\",{value:\"colorado\",children:\"Colorado\"}),/*#__PURE__*/_jsx(\"option\",{value:\"connecticut\",children:\"Connecticut\"}),/*#__PURE__*/_jsx(\"option\",{value:\"delaware\",children:\"Delaware\"}),/*#__PURE__*/_jsx(\"option\",{value:\"florida\",children:\"Florida\"}),/*#__PURE__*/_jsx(\"option\",{value:\"georgia\",children:\"Georgia\"}),/*#__PURE__*/_jsx(\"option\",{value:\"hawaii\",children:\"Hawaii\"}),/*#__PURE__*/_jsx(\"option\",{value:\"idaho\",children:\"Idaho\"}),/*#__PURE__*/_jsx(\"option\",{value:\"illinois\",children:\"Illinois\"}),/*#__PURE__*/_jsx(\"option\",{value:\"indiana\",children:\"Indiana\"}),/*#__PURE__*/_jsx(\"option\",{value:\"iowa\",children:\"Iowa\"}),/*#__PURE__*/_jsx(\"option\",{value:\"kansas\",children:\"Kansas\"}),/*#__PURE__*/_jsx(\"option\",{value:\"kentucky\",children:\"Kentucky\"}),/*#__PURE__*/_jsx(\"option\",{value:\"louisiana\",children:\"Louisiana\"}),/*#__PURE__*/_jsx(\"option\",{value:\"maine\",children:\"Maine\"}),/*#__PURE__*/_jsx(\"option\",{value:\"maryland\",children:\"Maryland\"}),/*#__PURE__*/_jsx(\"option\",{value:\"massachusetts\",children:\"Massachusetts\"}),/*#__PURE__*/_jsx(\"option\",{value:\"michigan\",children:\"Michigan\"}),/*#__PURE__*/_jsx(\"option\",{value:\"minnesota\",children:\"Minnesota\"}),/*#__PURE__*/_jsx(\"option\",{value:\"mississippi\",children:\"Mississippi\"}),/*#__PURE__*/_jsx(\"option\",{value:\"missouri\",children:\"Missouri\"}),/*#__PURE__*/_jsx(\"option\",{value:\"montana\",children:\"Montana\"}),/*#__PURE__*/_jsx(\"option\",{value:\"nebraska\",children:\"Nebraska\"}),/*#__PURE__*/_jsx(\"option\",{value:\"nevada\",children:\"Nevada\"}),/*#__PURE__*/_jsx(\"option\",{value:\"new-hampshire\",children:\"New Hampshire\"}),/*#__PURE__*/_jsx(\"option\",{value:\"new-jersey\",children:\"New Jersey\"}),/*#__PURE__*/_jsx(\"option\",{value:\"new-mexico\",children:\"New Mexico\"}),/*#__PURE__*/_jsx(\"option\",{value:\"new-york\",children:\"New York\"}),/*#__PURE__*/_jsx(\"option\",{value:\"north-carolina\",children:\"North Carolina\"}),/*#__PURE__*/_jsx(\"option\",{value:\"north-dakota\",children:\"North Dakota\"}),/*#__PURE__*/_jsx(\"option\",{value:\"ohio\",children:\"Ohio\"}),/*#__PURE__*/_jsx(\"option\",{value:\"oklahoma\",children:\"Oklahoma\"}),/*#__PURE__*/_jsx(\"option\",{value:\"oregon\",children:\"Oregon\"}),/*#__PURE__*/_jsx(\"option\",{value:\"pennsylvania\",children:\"Pennsylvania\"}),/*#__PURE__*/_jsx(\"option\",{value:\"rhode-island\",children:\"Rhode Island\"}),/*#__PURE__*/_jsx(\"option\",{value:\"south-carolina\",children:\"South Carolina\"}),/*#__PURE__*/_jsx(\"option\",{value:\"south-dakota\",children:\"South Dakota\"}),/*#__PURE__*/_jsx(\"option\",{value:\"tennessee\",children:\"Tennessee\"}),/*#__PURE__*/_jsx(\"option\",{value:\"texas\",children:\"Texas\"}),/*#__PURE__*/_jsx(\"option\",{value:\"utah\",children:\"Utah\"}),/*#__PURE__*/_jsx(\"option\",{value:\"vermont\",children:\"Vermont\"}),/*#__PURE__*/_jsx(\"option\",{value:\"virginia\",children:\"Virginia\"}),/*#__PURE__*/_jsx(\"option\",{value:\"washington\",children:\"Washington\"}),/*#__PURE__*/_jsx(\"option\",{value:\"west-virginia\",children:\"West Virginia\"}),/*#__PURE__*/_jsx(\"option\",{value:\"wisconsin\",children:\"Wisconsin\"}),/*#__PURE__*/_jsx(\"option\",{value:\"wyoming\",children:\"Wyoming\"})]}),/*#__PURE__*/_jsxs(\"optgroup\",{label:\"Canada\",children:[/*#__PURE__*/_jsx(\"option\",{value:\"alberta\",children:\"Alberta\"}),/*#__PURE__*/_jsx(\"option\",{value:\"british-columbia\",children:\"British Columbia\"}),/*#__PURE__*/_jsx(\"option\",{value:\"manitoba\",children:\"Manitoba\"}),/*#__PURE__*/_jsx(\"option\",{value:\"new-brunswick\",children:\"New Brunswick\"}),/*#__PURE__*/_jsx(\"option\",{value:\"ontario\",children:\"Ontario\"})]})]})]}),error&&/*#__PURE__*/_jsx(\"div\",{style:{color:\"#E53935\",fontSize:\"14px\",marginBottom:\"8px\"},children:\"Please select a state or province to continue\"}),/*#__PURE__*/_jsx(\"button\",{onClick:handleContinue,onMouseEnter:()=>setIsHovering(true),onMouseLeave:()=>setIsHovering(false),style:{width:\"100%\",padding:\"12px 0\",backgroundColor:isHovering?\"#0049B4\":\"#0063ED\",color:\"white\",border:\"1px solid #004DB8\",borderRadius:\"4px\",fontSize:\"16px\",fontWeight:500,cursor:\"pointer\",transition:\"background-color 0.2s ease\"},children:\"See if you qualify\"})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"StateDropdown\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./State_Dropdown_Center.map"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "updateURLSearchParams", "url", "newParams", "urlObj", "urlParamsObj", "newUrlParamsObj", "k", "v", "error", "withUpdateURLSearchParams", "Component", "props", "link", "setLink", "ye", "href", "setHref", "componentRef", "pe", "ue", "window", "updateURLSearchParams", "newProps", "p", "cSkkRxUbG_exports", "__export", "__FramerMetadata__", "cSkkRxUbG_default", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "radiusForCorner", "value", "cornerIndex", "segments", "transition1", "equals", "a", "b", "convertFromBoolean", "activeLocale", "toNumber", "parsedNumber", "convertFromBoolean1", "convertFromBoolean2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "border", "border2", "buttonColor", "buttonText", "buttonTextColor", "height", "iconAnimation", "iconName", "id", "link", "newTab", "radius", "shadow", "showIcon", "tap", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "G77f5Yx_v", "U1Kbkgydv", "ey7w8muFX", "oV7zrnzuy", "HFfTjmBlq", "VkxZQkMEC", "n9WP3fBIv", "Vo_oxchYD", "ApWhoO21o", "SZQpZ3lk2", "WM2TpCryl", "nSQvgmbyz", "vfQAwnju6", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1pc7sz3", "args", "scopingClassNames", "cx", "gap", "gap1", "gap2", "gap3", "gap4", "isDisplayed", "isDisplayed1", "LayoutGroup", "Link", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramercSkkRxUbG", "withCSS", "cSkkRxUbG_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "vpu5A22CJ_exports", "__export", "__FramerMetadata__", "vpu5A22CJ_default", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "radiusForCorner", "value", "cornerIndex", "segments", "transition1", "transition2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "align", "bGColor", "bGHover", "height", "hover", "id", "link", "name1", "openInNewTab", "radius", "tap", "textColor", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ku0K5iab7", "ZpWw94nXT", "T3ktnO2nz", "wGRcFK04x", "stziIHmv7", "i8hVK17KP", "ycFa86gVJ", "i6eMpMhze", "PnQ813Qxg", "dqMpST25y", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1p982a", "args", "onTapdzo4y0", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Framervpu5A22CJ", "withCSS", "vpu5A22CJ_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "MenuItemFonts", "getFonts", "vpu5A22CJ_default", "MenuItemWithUpdateURLSearchParamsr3z00eWithMappedReactProps39pur3", "withMappedReactProps", "withCodeBoundaryForOverrides", "withUpdateURLSearchParams", "vpu5A22CJ_exports", "MenuItemWithUpdateURLSearchParams1gmg1f3WithMappedReactProps39pur3", "MenuItemWithUpdateURLSearchParamsekkhceWithMappedReactProps39pur3", "MotionDivWithFX", "withFX", "motion", "MenuItemWithUpdateURLSearchParamszkqh46WithMappedReactProps39pur3", "MenuItemWithUpdateURLSearchParamsznxvyfWithMappedReactProps39pur3", "serializationHash", "variantClassNames", "transition1", "transition2", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "align", "bGBlur", "dropdownBG", "height", "id", "textColor", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "ZmT46usVX", "odLrH8wIa", "ILT7xcLmk", "XWxsdOvDJ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "PnQ813Qxgtxyyif", "overlay", "loadMore", "args", "scopingClassNames", "cx", "serializationHash", "ref1", "ref2", "router", "useRouter", "LayoutGroup", "u", "l", "ComponentViewportProvider", "SmartComponentScopedContainer", "vpu5A22CJ_default", "AnimatePresence", "Floating", "MotionDivWithFX", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "MenuItemWithUpdateURLSearchParamsr3z00eWithMappedReactProps39pur3", "MenuItemWithUpdateURLSearchParams1gmg1f3WithMappedReactProps39pur3", "MenuItemWithUpdateURLSearchParamsekkhceWithMappedReactProps39pur3", "resolvedLinks2", "MenuItemWithUpdateURLSearchParamszkqh46WithMappedReactProps39pur3", "MenuItemWithUpdateURLSearchParamsznxvyfWithMappedReactProps39pur3", "css", "FramerBpBeq2TBa", "withCSS", "BpBeq2TBa_default", "addPropertyControls", "ControlType", "addFonts", "MenuItemFonts", "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", "iconColor", "id", "tap", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "E6NV4Gf2f", "lYvpkC7IW", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap10p9z8c", "args", "onTap1ie0rtz", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "css", "FramerLDjILnfTJ", "withCSS", "LDjILnfTJ_default", "addPropertyControls", "ControlType", "addFonts", "MenuMenuFonts", "getFonts", "BpBeq2TBa_default", "ButtonFonts", "cSkkRxUbG_default", "ButtonWithUpdateURLSearchParamslte8jtWithMappedReactProps1v1ipky", "withMappedReactProps", "withCodeBoundaryForOverrides", "withUpdateURLSearchParams", "cSkkRxUbG_exports", "MenuHamburgerMenuFonts", "LDjILnfTJ_default", "MenuItemFonts", "vpu5A22CJ_default", "MenuItemWithUpdateURLSearchParamsiwr3mrWithMappedReactProps39pur3", "vpu5A22CJ_exports", "MenuItemWithUpdateURLSearchParams1cpw32yWithMappedReactProps39pur3", "ButtonWithUpdateURLSearchParams16e3l9bWithMappedReactProps1v1ipky", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "bGBlur", "bgBorder", "desktopBG", "height", "id", "mobileBG", "showMenu", "textColor", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Cof0RMUzO", "ORnOR2pUN", "BeZsA273t", "FFcnuU4Ek", "EdKYuwXXP", "t4qtipNl7", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1d9h6kx", "args", "E6NV4Gf2f4l1w7q", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "router", "useRouter", "LayoutGroup", "u", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "FramerBEAhkbnww", "withCSS", "BEAhkbnww_default", "addPropertyControls", "ControlType", "addFonts", "ButtonFonts", "getFonts", "cSkkRxUbG_default", "ButtonWithUpdateURLSearchParams1agrajcWithMappedReactProps1v1ipky", "withMappedReactProps", "withCodeBoundaryForOverrides", "withUpdateURLSearchParams", "cSkkRxUbG_exports", "ButtonWithUpdateURLSearchParams18qjse2WithMappedReactProps1v1ipky", "ButtonWithUpdateURLSearchParamsl12ojkWithMappedReactProps1v1ipky", "ButtonWithUpdateURLSearchParams1kmm0bfWithMappedReactProps1v1ipky", "ButtonWithUpdateURLSearchParamsmc6iy1WithMappedReactProps1v1ipky", "ButtonWithUpdateURLSearchParamswdfcg2WithMappedReactProps1v1ipky", "ButtonWithUpdateURLSearchParamsnnbqzyWithMappedReactProps1v1ipky", "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", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "SVG", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerfmdKFpi1v", "withCSS", "fmdKFpi1v_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "ButtonFonts", "getFonts", "cSkkRxUbG_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", "background", "height", "id", "link", "text", "textColor", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "TPfgUMKvU", "eG2qRWVuY", "izv65hphi", "w3EFGvBAB", "ACpMpFr3L", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerlpRiOhBCf", "withCSS", "lpRiOhBCf_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "StateDropdown", "selectedState", "setSelectedState", "ye", "isHovering", "setIsHovering", "error", "setError", "u", "p", "e", "redirectUrl", "window", "updateURLSearchParams"]
}
