{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js", "ssg:https://framerusercontent.com/modules/lhK5daazRzwyFYhqUXsE/3vwlSoxoDQcB7dXSYFPK/dTK61ocSv.js", "ssg:https://framerusercontent.com/modules/0CAfEtfmY7vOK0mwOtz6/Bty3HIfRzeSPprmGNwcb/fCgjxcT7S.js", "ssg:https://framerusercontent.com/modules/Q8MwwoV4cRaWC8O6gVL6/Up9rDpZ2NXwCQ8xuzYaq/UlNhbdPWs.js", "ssg:https://framerusercontent.com/modules/10QotiSPgIUP1Z5ErArv/3ajMbklmGYAKzXX5t6yE/X5e0ShL3I.js", "ssg:https://framerusercontent.com/modules/uwyu4vYw8RS7rQUhLJJA/E8u0mgVIMofXnhd9f7J9/Ca7RHixYm.js", "ssg:https://framerusercontent.com/modules/4JDqUsrXqXKNq9OHHGvo/DzFnQwDFoO90m6Bp84zU/HUTRH8Z_1.js", "ssg:https://framerusercontent.com/modules/t8iBiu7i7rTHz5irB3r0/41P9IOCoya8TUJfwqaRJ/IuuSrraef.js", "ssg:https://framerusercontent.com/modules/bi1u4ajfmUXMh6vzuf20/2g3y92UbCjOnKRYUOSm4/scHqXtur6.js", "ssg:https://framerusercontent.com/modules/J9MKfYqExiEhZmx70tdZ/SeXpcNCAOycvDHWZZuFD/PxZzdIagw.js", "ssg:https://framerusercontent.com/modules/oh4gYtV7TsXJcSaQGx5e/IKLmfC9YGcpqooymeLYh/UDoq9v1is.js", "ssg:https://framerusercontent.com/modules/qQby1PN4UAOQFGha3ciB/H9S4xdpAZrkGs51DDlz3/LF2m5WD71.js", "ssg:https://framerusercontent.com/modules/cv2Fk7Q2gy1evBSDadoW/31PIsSnmoXq0rYUDBFdE/WY5aOtDwT.js", "ssg:https://framerusercontent.com/modules/56108duRrOmzBSPDk0nT/rNNUQ87GphqsUK55wBcI/mqgYvC1DN.js", "ssg:https://framerusercontent.com/modules/gN9J5uHdGVt3o08MCD4v/BNA7NjDjrryQultVZ6a8/OCpvDLuMU.js", "ssg:https://framerusercontent.com/modules/13HRALkQpta1Li1vZyB1/TQmlKRtxYcz8A19XOwKH/ofUXyTNWr.js", "ssg:https://framerusercontent.com/modules/y8rwNYsl6jeTQO4ScP8V/CLh2k3ByJnENYBKFgEF5/CLz0k4TPe.js", "ssg:https://framerusercontent.com/modules/Y2xWRo3LvgFKYpDWIXMR/ZDDBh3toU5il2ChpDW6V/OsaGYrHeE.js", "ssg:https://framerusercontent.com/modules/oXh6lV8Xt6tZX9I7FQ78/N7bkGtSEDj4Eh6GWWHKR/Vt96hDzhl.js", "ssg:https://framerusercontent.com/modules/a5Kzq0bwJLWULKKlfce9/udMrDTpldIpiuludNRfM/XZZPCL_vI.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 MAX_AREA=5e6;const CSS_VAR_NAME=\"--ticker-offset\";const supportsWaapi=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";let supportsRegisterProperty=true;if(typeof window!==\"undefined\"){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){supportsRegisterProperty=false;}}/**\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 axis=isHorizontal?\"X\":\"Y\";const minus=direction===\"left\"||direction===\"top\"?\"-\":\"\";const transform=useTransform(()=>`translate${axis}(${minus}${offset.get()}px)`);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null,childrenArea: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;}const fullChildrenArea=size.childrenArea===null?null:size.childrenArea*(duplicateBy+1);const isLayerTooBig=fullChildrenArea===null?null:fullChildrenArea>MAX_AREA;/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const[firstChild,lastChild]=childrenRef;const childrenLeft=firstChild.current?firstChild.current.offsetLeft:0;const childrenRight=lastChild.current?lastChild.current.offsetLeft+lastChild.current.offsetWidth:0;const childrenTop=firstChild.current?firstChild.current.offsetTop:0;const childrenBottom=lastChild.current?lastChild.current.offsetTop+lastChild.current.offsetHeight:0;const childrenWidth=childrenRight-childrenLeft;const childrenHeight=childrenBottom-childrenTop;const childrenArea=childrenWidth*childrenHeight;const childrenLength=(isHorizontal?childrenWidth:childrenHeight)+gap;setSize({parent:parentLength,children:childrenLength,childrenArea});}},[]);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)})},index+\"-original\");});}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:isLayerTooBig===true?\"auto\":\"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(supportsWaapi&&(!isLayerTooBig||isLayerTooBig&&supportsRegisterProperty)){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed||isLayerTooBig===null){return;}if(isLayerTooBig){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){}}/**\n                 * If the layer is too big we want to animate a CSS variable instead of the transform\n                 * to avoid promoting the layer to the GPU.\n                 */const keyframes=isLayerTooBig?{[CSS_VAR_NAME]:[\"0px\",`${minus}${animateToValue}px`]}:{transform:[`translate${axis}(0px)`,`translate${axis}(${minus}${animateToValue}px)`]};animationRef.current=listRef.current.animate(keyframes,{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed,isLayerTooBig]);// 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||supportsWaapi){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||isLayerTooBig?\"auto\":\"transform\",transform:supportsWaapi?isLayerTooBig?`translate${axis}(var(${CSS_VAR_NAME}))`:\"none\":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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (ff6f0b6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{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\"},{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/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{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/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-VLLWZ .framer-styles-preset-1rzwp5c:not(.rich-text-wrapper), .framer-VLLWZ .framer-styles-preset-1rzwp5c.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --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: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 21px; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-a27ef4b0-be56-4fd0-b770-08543d90da70, #484848); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-VLLWZ\";\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 (ff6f0b6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{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-5tmPd .framer-styles-preset-8jii7:not(.rich-text-wrapper), .framer-5tmPd .framer-styles-preset-8jii7.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter 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: 20px; --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: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-5tmPd\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-n7MvL .framer-styles-preset-18tmnbn:not(.rich-text-wrapper), .framer-n7MvL .framer-styles-preset-18tmnbn.rich-text-wrapper a { --framer-link-current-text-color: var(--token-8a8a1fe2-fab5-4a1e-bc5a-63e1eb08ca15, #2897bf) /* {\"name\":\"primary/click\"} */; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-0656fa3e-cc2d-4499-9dbb-47d856e1a30a, #3ab0db) /* {\"name\":\"primary/Tufts-Blue\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-0656fa3e-cc2d-4499-9dbb-47d856e1a30a, #3ab0db); --framer-link-text-decoration: none; }'];export const className=\"framer-n7MvL\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ff6f0b6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{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\"},{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/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{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/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-j82rw .framer-styles-preset-1kj7r8g:not(.rich-text-wrapper), .framer-j82rw .framer-styles-preset-1kj7r8g.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --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: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 23px; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-a27ef4b0-be56-4fd0-b770-08543d90da70, #484848); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-j82rw\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ff6f0b6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lhK5daazRzwyFYhqUXsE/3vwlSoxoDQcB7dXSYFPK/dTK61ocSv.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/0CAfEtfmY7vOK0mwOtz6/Bty3HIfRzeSPprmGNwcb/fCgjxcT7S.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/Q8MwwoV4cRaWC8O6gVL6/Up9rDpZ2NXwCQ8xuzYaq/UlNhbdPWs.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/10QotiSPgIUP1Z5ErArv/3ajMbklmGYAKzXX5t6yE/X5e0ShL3I.js\";const cycleOrder=[\"NyYaP4ZXJ\",\"GJCPP5Gxm\",\"GpFg0Zlxr\"];const serializationHash=\"framer-BX6Mi\";const variantClassNames={GJCPP5Gxm:\"framer-v-1oc7rub\",GpFg0Zlxr:\"framer-v-17hj0mw\",NyYaP4ZXJ:\"framer-v-t1em2y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"phone-330\":\"GpFg0Zlxr\",\"phone-360\":\"GJCPP5Gxm\",\"phone-390\":\"NyYaP4ZXJ\"};const getProps=({height,id,subcategory1,subcategory2,subcategory3,subcategory4,subcategory5,text,title,width,...props})=>{return{...props,CWV7ggmof:title??props.CWV7ggmof??\"International Immersion Learning\",Fbvag8xLi:text??props.Fbvag8xLi??\"Explore diverse cultures through immersive fieldwork & deepen cultural competence.\",GWAj3_dir:subcategory2??props.GWAj3_dir??\"Cultural Engagement\",iWVSsfXQA:subcategory4??props.iWVSsfXQA??\"Personal Growth & Mentorship\",LiBMNFaGu:subcategory3??props.LiBMNFaGu??\"Global Entrepreneurial Mentorship\",Q1BrPynak:subcategory5??props.Q1BrPynak??\"Professional & Educational Development\",variant:humanReadableVariantMap[props.variant]??props.variant??\"NyYaP4ZXJ\",YJb10goDA:subcategory1??props.YJb10goDA??\"Overview\"};};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,CWV7ggmof,Fbvag8xLi,YJb10goDA,GWAj3_dir,LiBMNFaGu,iWVSsfXQA,Q1BrPynak,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NyYaP4ZXJ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-t1em2y\",className,classNames),\"data-framer-name\":\"phone-390\",layoutDependency:layoutDependency,layoutId:\"NyYaP4ZXJ\",ref:ref??ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({GJCPP5Gxm:{\"data-framer-name\":\"phone-360\"},GpFg0Zlxr:{\"data-framer-name\":\"phone-330\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ix5avs\",\"data-framer-name\":\"Frame 23\",layoutDependency:layoutDependency,layoutId:\"RgfVkaQQS\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-8jii7\",\"data-styles-preset\":\"fCgjxcT7S\",style:{\"--framer-text-alignment\":\"center\"},children:\"International Immersion Learning\"})}),className:\"framer-1jgefrt\",\"data-framer-name\":\"Global Bridge Builders\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BY6J6zNrY\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:CWV7ggmof,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1rzwp5c\",\"data-styles-preset\":\"dTK61ocSv\",style:{\"--framer-text-alignment\":\"center\"},children:\"Explore diverse cultures through immersive fieldwork & deepen cultural competence.\"})}),className:\"framer-1grc0fy\",\"data-framer-name\":\"Empowering companies to connect with diverse audiences worldwide through targeted strategies.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DFskEdNA0\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:Fbvag8xLi,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kj7r8g\",\"data-styles-preset\":\"X5e0ShL3I\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"YoQP2QM2c\"},nodeId:\"uHua3LJCQ\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18tmnbn\",\"data-styles-preset\":\"UlNhbdPWs\",children:\"Overview\"})})})}),className:\"framer-1ojq6e3\",\"data-framer-name\":\"Overview\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uHua3LJCQ\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:YJb10goDA,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kj7r8g\",\"data-styles-preset\":\"X5e0ShL3I\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"KNxFF6Ilo\"},nodeId:\"tgdmLLA_t\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18tmnbn\",\"data-styles-preset\":\"UlNhbdPWs\",children:\"Cultural Engagement\"})})})}),className:\"framer-1ot1wl4\",\"data-framer-name\":\"AI Digitalization\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tgdmLLA_t\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:GWAj3_dir,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kj7r8g\",\"data-styles-preset\":\"X5e0ShL3I\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xLt1DuCSb\"},nodeId:\"zL0kLUaUc\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18tmnbn\",\"data-styles-preset\":\"UlNhbdPWs\",children:\"Global Entrepreneurial Mentorship\"})})})}),className:\"framer-qjktu9\",\"data-framer-name\":\"Overview\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zL0kLUaUc\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:LiBMNFaGu,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kj7r8g\",\"data-styles-preset\":\"X5e0ShL3I\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ffj13pmNK\"},nodeId:\"MnFqH5jD_\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18tmnbn\",\"data-styles-preset\":\"UlNhbdPWs\",children:\"Personal Growth & Mentorship\"})})})}),className:\"framer-10jhwf1\",\"data-framer-name\":\"Overview\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MnFqH5jD_\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:iWVSsfXQA,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kj7r8g\",\"data-styles-preset\":\"X5e0ShL3I\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"T2GtjnB4Q\"},nodeId:\"kSZqP1B2d\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18tmnbn\",\"data-styles-preset\":\"UlNhbdPWs\",children:\"Professional & Educational Development\"})})})}),className:\"framer-1cxt5rx\",\"data-framer-name\":\"Overview\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kSZqP1B2d\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:Q1BrPynak,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BX6Mi.framer-1llvscw, .framer-BX6Mi .framer-1llvscw { display: block; }\",\".framer-BX6Mi.framer-t1em2y { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: min-content; }\",\".framer-BX6Mi .framer-1ix5avs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 350px; }\",\".framer-BX6Mi .framer-1jgefrt, .framer-BX6Mi .framer-1grc0fy, .framer-BX6Mi .framer-1ojq6e3, .framer-BX6Mi .framer-1ot1wl4, .framer-BX6Mi .framer-qjktu9, .framer-BX6Mi .framer-10jhwf1, .framer-BX6Mi .framer-1cxt5rx { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BX6Mi.framer-t1em2y, .framer-BX6Mi .framer-1ix5avs { gap: 0px; } .framer-BX6Mi.framer-t1em2y > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BX6Mi.framer-t1em2y > :first-child, .framer-BX6Mi .framer-1ix5avs > :first-child { margin-top: 0px; } .framer-BX6Mi.framer-t1em2y > :last-child, .framer-BX6Mi .framer-1ix5avs > :last-child { margin-bottom: 0px; } .framer-BX6Mi .framer-1ix5avs > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } }\",\".framer-BX6Mi.framer-v-1oc7rub.framer-t1em2y { width: 360px; }\",\".framer-BX6Mi.framer-v-17hj0mw.framer-t1em2y { width: 330px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 237\n * @framerIntrinsicWidth 390\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"GJCPP5Gxm\":{\"layout\":[\"fixed\",\"auto\"]},\"GpFg0Zlxr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"CWV7ggmof\":\"title\",\"Fbvag8xLi\":\"text\",\"YJb10goDA\":\"subcategory1\",\"GWAj3_dir\":\"subcategory2\",\"LiBMNFaGu\":\"subcategory3\",\"iWVSsfXQA\":\"subcategory4\",\"Q1BrPynak\":\"subcategory5\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCa7RHixYm=withCSS(Component,css,\"framer-BX6Mi\");export default FramerCa7RHixYm;FramerCa7RHixYm.displayName=\"services 2 phone -390\";FramerCa7RHixYm.defaultProps={height:237,width:390};addPropertyControls(FramerCa7RHixYm,{variant:{options:[\"NyYaP4ZXJ\",\"GJCPP5Gxm\",\"GpFg0Zlxr\"],optionTitles:[\"phone-390\",\"phone-360\",\"phone-330\"],title:\"Variant\",type:ControlType.Enum},CWV7ggmof:{defaultValue:\"International Immersion Learning\",displayTextArea:false,title:\"Title\",type:ControlType.String},Fbvag8xLi:{defaultValue:\"Explore diverse cultures through immersive fieldwork & deepen cultural competence.\",displayTextArea:false,title:\"Text\",type:ControlType.String},YJb10goDA:{defaultValue:\"Overview\",displayTextArea:false,title:\"Subcategory 1\",type:ControlType.String},GWAj3_dir:{defaultValue:\"Cultural Engagement\",displayTextArea:false,title:\"Subcategory 2\",type:ControlType.String},LiBMNFaGu:{defaultValue:\"Global Entrepreneurial Mentorship\",displayTextArea:false,title:\"Subcategory  3\",type:ControlType.String},iWVSsfXQA:{defaultValue:\"Personal Growth & Mentorship\",displayTextArea:false,title:\"Subcategory  4\",type:ControlType.String},Q1BrPynak:{defaultValue:\"Professional & Educational Development\",displayTextArea:false,title:\"Subcategory  5\",type:ControlType.String}});addFonts(FramerCa7RHixYm,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCa7RHixYm\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"390\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"CWV7ggmof\\\":\\\"title\\\",\\\"Fbvag8xLi\\\":\\\"text\\\",\\\"YJb10goDA\\\":\\\"subcategory1\\\",\\\"GWAj3_dir\\\":\\\"subcategory2\\\",\\\"LiBMNFaGu\\\":\\\"subcategory3\\\",\\\"iWVSsfXQA\\\":\\\"subcategory4\\\",\\\"Q1BrPynak\\\":\\\"subcategory5\\\"}\",\"framerIntrinsicHeight\":\"237\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"GJCPP5Gxm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GpFg0Zlxr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ca7RHixYm.map", "// Generated by Framer (f7ce5cf)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,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 sharedStyle11 from\"https://framerusercontent.com/modules/ynIITM4f7cJEgE33KFU4/2Q7zHcid11Zf4nvZknkS/CppQKS3Wq.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/bKj86ZGsdgp2cEbUOvUJ/PuSZyV5IgU28mY8xUtH0/CrKAKDEs9.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/ctCrOGmp0bAyTwIV20BP/OYi4FXbZZkELyDnwYUd9/IYPDbaQ4A.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/w6vOuNO7ux2Xcdi6y1AI/YvgRnXegSAggaZNXiU8f/KlOtoZHS5.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/o3OsPjQP1PKjvoYKXLgI/2UGcSypJZc14bbuNGejR/OVkDXpOOQ.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/lfQ7WAzv7LMU4XZaBoX4/GOVwb777GLMe7L1UsG2t/pk_659TDz.js\";import*as sharedStyle10 from\"https://framerusercontent.com/modules/esOznD1wiX8RV5ItYr0W/nURzhysnKRwGRIWJipuZ/qVlCkqo3F.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/8rruyMqV5IDBY89cSX8j/dYDzmMNjYf5MhEkRmM9O/UlNhbdPWs.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/qdmRfiFPOSau2LFFSr93/GdUSFlrL2VgoJRZz53oz/vgpibg7S8.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/OQbhzW9DJQ0tyi2gCitF/WzQ0f62V9aOfPkDF2Fmb/vNw6w40oO.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lRTA1AObX42cMdD7Lc69/2zMSUB5N2ai7YifCgOB5/wIiL9DsZh.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/cIzcexv2nWdisCgSIsPK/aRY1AMgmPFSZm41lClKO/WY5aOtDwT.js\";import PreHeader from\"https://framerusercontent.com/modules/zVJvEiSyUoPhxjKeHOUw/7B5dtv34RFYtvHCg6XDE/KHVixQDlP.js\";import BadgeIcon from\"https://framerusercontent.com/modules/e8yj6y1Ol8t7fSJQ6MIN/aFU3jRKsI1jex9NkTxjq/OFwrVi5P7.js\";import FounderPortrait from\"https://framerusercontent.com/modules/sNQs2IZzEGnPVDsXvOhM/g3mqeUao3bFYAza11LPO/RqnO0iLhF.js\";const PreHeaderFonts=getFonts(PreHeader);const FounderPortraitFonts=getFonts(FounderPortrait);const BadgeIconFonts=getFonts(BadgeIcon);const cycleOrder=[\"Apx86DUcJ\",\"KLo9rFWJ0\",\"GkVct44bl\",\"wOnK9GTF_\",\"k_4MZRxNS\",\"SMq1P3RyA\"];const serializationHash=\"framer-TCQMX\";const variantClassNames={Apx86DUcJ:\"framer-v-qonwny\",GkVct44bl:\"framer-v-1l9fi3s\",k_4MZRxNS:\"framer-v-glkurz\",KLo9rFWJ0:\"framer-v-f67e9q\",SMq1P3RyA:\"framer-v-1cwx5n4\",wOnK9GTF_:\"framer-v-1w5qvf2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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-1200\":\"KLo9rFWJ0\",\"desktop-1440\":\"Apx86DUcJ\",\"phone-360\":\"SMq1P3RyA\",\"phone-390\":\"k_4MZRxNS\",\"phone-428\":\"wOnK9GTF_\",\"tablet-810\":\"GkVct44bl\"};const getProps=({content,height,id,width,...props})=>{return{...props,b6K62NUhZ:content??props.b6K62NUhZ??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{children:'\"Throughout my professional journey, I have had the privilege of guiding both domestic and global companies in developing customer growth strategies across various business domains such as change management, AI digitalization, and global go-to-market strategies for mainstream and niche markets \u2013 including multicultural segments. My experience spans diverse industries like media & entertainment, sustainability, renewable energy, decarbonization, and data analytics. I have collaborated with major consumer and B2B brands to drive revenue growth and provided strategic counsel to startup founders and stakeholders in realizing their entrepreneurial visions. I also continue to teach and advise our future university leaders on the intricacies of doing business abroad.'}),/*#__PURE__*/_jsx(motion.p,{children:'An integral aspect of my career satisfaction lies in fostering business expansion for organizations and entrepreneurs, alongside imparting knowledge and mentoring fellow professionals and graduates on effective innovative methodologies that yield tangible outcomes. In the backdrop of evolving technologies like artificial intelligence, embracing responsible and ethical AI applications represents an unprecedented opportunity for companies to thrive. It is imperative for businesses to adapt swiftly to this dynamic landscape to stay competitive and relevant\u2026\"'})]}),variant:humanReadableVariantMap[props.variant]??props.variant??\"Apx86DUcJ\"};};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,b6K62NUhZ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Apx86DUcJ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-qonwny\",className,classNames),\"data-framer-name\":\"desktop-1440\",layoutDependency:layoutDependency,layoutId:\"Apx86DUcJ\",ref:refBinding,style:{backgroundColor:\"var(--token-c8a9ebaf-3e65-4a53-83d3-9146567dd84d, rgb(245, 249, 250))\",...style},...addPropertyOverrides({GkVct44bl:{\"data-framer-name\":\"tablet-810\"},k_4MZRxNS:{\"data-framer-name\":\"phone-390\"},KLo9rFWJ0:{\"data-framer-name\":\"desktop-1200\"},SMq1P3RyA:{\"data-framer-name\":\"phone-360\"},wOnK9GTF_:{\"data-framer-name\":\"phone-428\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+(((componentViewport?.height||673)-30-1255)/2+0+0),...addPropertyOverrides({GkVct44bl:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-30-571.8)/2+0+0)},k_4MZRxNS:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-30-941.8)/2+0+0)},KLo9rFWJ0:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||677)-30-1255)/2+0+0)},SMq1P3RyA:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-30-890.8)/2+0+0)},wOnK9GTF_:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-30-941.8)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-snebdo-container\",layoutDependency:layoutDependency,layoutId:\"HU7m_0zrs-container\",nodeId:\"HU7m_0zrs\",rendersWithMotion:true,scopeId:\"HUTRH8Z_1\",children:/*#__PURE__*/_jsx(PreHeader,{height:\"100%\",id:\"HU7m_0zrs\",layoutId:\"HU7m_0zrs\",rVVwoX9LS:20,variant:\"hzUtOz97K\",vDfiEneJh:\"meet jgs\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ygfnh7\",layoutDependency:layoutDependency,layoutId:\"n7fvdzaRY\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14mwn4s\",layoutDependency:layoutDependency,layoutId:\"nQjJHaJ5E\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:327,width:\"345px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||673)-30-1255)/2+24+20)+20+0+0,...addPropertyOverrides({GkVct44bl:{height:217,width:\"234px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-30-571.8)/2+24+20)+20+0+0},k_4MZRxNS:{height:364,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-30-941.8)/2+24+20)+20+0+0+0},KLo9rFWJ0:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||677)-30-1255)/2+24+20)+20+0+0},SMq1P3RyA:{height:313,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-30-890.8)/2+24+20)+20+0+0+0},wOnK9GTF_:{height:364,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-30-941.8)/2+24+20)+20+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1soyiix-container\",layoutDependency:layoutDependency,layoutId:\"e_RdxJSNW-container\",nodeId:\"e_RdxJSNW\",rendersWithMotion:true,scopeId:\"HUTRH8Z_1\",children:/*#__PURE__*/_jsx(FounderPortrait,{height:\"100%\",id:\"e_RdxJSNW\",layoutId:\"e_RdxJSNW\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6bnad3\",layoutDependency:layoutDependency,layoutId:\"rknKMDBmQ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yd3wuw\",layoutDependency:layoutDependency,layoutId:\"JvrZ3Cce7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a27ef4b0-be56-4fd0-b770-08543d90da70, rgb(72, 72, 72)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"JGS International Consulting\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(161, 161, 161))\"},children:\"Julianna Garibay-Sparacio\"}),/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(161, 161, 161))\"},children:[\"Strategy Consultant, \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OAAnda2k8\"},motionChild:true,nodeId:\"HOQanLL5j\",openInNewTab:false,scopeId:\"HUTRH8Z_1\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18tmnbn\",\"data-styles-preset\":\"UlNhbdPWs\",children:\"BIO\"})})]}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-14qxiz, rgb(161, 161, 161))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:info@jgsinternational.com\",motionChild:true,nodeId:\"HOQanLL5j\",openInNewTab:false,scopeId:\"HUTRH8Z_1\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18tmnbn\",\"data-styles-preset\":\"UlNhbdPWs\",children:\"info@jgsinternational.com\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-ydz9fi, rgb(161, 161, 161))\"},children:\"805.262.7846\"})]}),className:\"framer-algxaj\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"HOQanLL5j\",style:{\"--extracted-14qxiz\":\"rgb(161, 161, 161)\",\"--extracted-1iakedh\":\"rgb(161, 161, 161)\",\"--extracted-2gxw0f\":\"rgb(161, 161, 161)\",\"--extracted-r6o4lv\":\"var(--token-a27ef4b0-be56-4fd0-b770-08543d90da70, rgb(72, 72, 72))\",\"--extracted-ydz9fi\":\"rgb(161, 161, 161)\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bx3prw\",layoutDependency:layoutDependency,layoutId:\"aEyr9_rfs\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-itz4py\",layoutDependency:layoutDependency,layoutId:\"qE8ChSx5z\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||673)-30-1255)/2+24+20)+20+0+356+0+775+0+0,...addPropertyOverrides({GkVct44bl:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-30-571.8)/2+24+20)+20+0+7+0+163+0+0},k_4MZRxNS:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-30-941.8)/2+24+20)+20+0+0+384+0+163+0+0},KLo9rFWJ0:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||677)-30-1255)/2+24+20)+20+0+356+0+775+0+0},SMq1P3RyA:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-30-890.8)/2+24+20)+20+0+0+333+0+163+0+0},wOnK9GTF_:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-30-941.8)/2+24+20)+20+0+0+384+0+163+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pjkp2t-container\",layoutDependency:layoutDependency,layoutId:\"IDTU1GmWp-container\",nodeId:\"IDTU1GmWp\",rendersWithMotion:true,scopeId:\"HUTRH8Z_1\",children:/*#__PURE__*/_jsx(BadgeIcon,{height:\"100%\",id:\"IDTU1GmWp\",KqWpa_0AO:\"https://www.linkedin.com/company/jgs-international/about/?viewAsMember=true\",layoutId:\"IDTU1GmWp\",style:{height:\"100%\",width:\"100%\"},variant:\"Scjx1PGpe\",width:\"100%\",Zc2l9lnHj:\"LinkedinLogo\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||673)-30-1255)/2+24+20)+20+0+356+0+775+0+0,...addPropertyOverrides({GkVct44bl:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-30-571.8)/2+24+20)+20+0+7+0+163+0+0},k_4MZRxNS:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-30-941.8)/2+24+20)+20+0+0+384+0+163+0+0},KLo9rFWJ0:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||677)-30-1255)/2+24+20)+20+0+356+0+775+0+0},SMq1P3RyA:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-30-890.8)/2+24+20)+20+0+0+333+0+163+0+0},wOnK9GTF_:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-30-941.8)/2+24+20)+20+0+0+384+0+163+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-okx32-container\",layoutDependency:layoutDependency,layoutId:\"L0j04DxIW-container\",nodeId:\"L0j04DxIW\",rendersWithMotion:true,scopeId:\"HUTRH8Z_1\",children:/*#__PURE__*/_jsx(BadgeIcon,{height:\"100%\",id:\"L0j04DxIW\",KqWpa_0AO:\"https://x.com/i/flow/login?redirect_after_login=%2FJGS_Inc\",layoutId:\"L0j04DxIW\",style:{height:\"100%\",width:\"100%\"},variant:\"Scjx1PGpe\",width:\"100%\",Zc2l9lnHj:\"X\"})})})]})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bkt8xf\",layoutDependency:layoutDependency,layoutId:\"xFEP5V8HO\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zdeqhx\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"rW809pQHn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:b6K62NUhZ,className:\"framer-hdnuce\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FV9q3M_6p\",style:{\"--framer-paragraph-spacing\":\"0px\"},stylesPresetsClassNames:{a:\"framer-styles-preset-18tmnbn\",code:\"framer-styles-preset-96m9py\",h1:\"framer-styles-preset-hy8o3m\",h2:\"framer-styles-preset-sr78we\",h3:\"framer-styles-preset-1hn5qvb\",h4:\"framer-styles-preset-vr8gxw\",h5:\"framer-styles-preset-qncbjf\",h6:\"framer-styles-preset-14ocgqm\",img:\"framer-styles-preset-uo6lr5\",p:\"framer-styles-preset-cml872\"},variants:{k_4MZRxNS:{\"--extracted-r6o4lv\":\"rgb(0, 0, 0)\"},SMq1P3RyA:{\"--extracted-r6o4lv\":\"rgb(0, 0, 0)\"},wOnK9GTF_:{\"--extracted-r6o4lv\":\"rgb(0, 0, 0)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({k_4MZRxNS:{stylesPresetsClassNames:{a:\"framer-styles-preset-18tmnbn\",code:\"framer-styles-preset-96m9py\",h1:\"framer-styles-preset-hy8o3m\",h2:\"framer-styles-preset-sr78we\",h3:\"framer-styles-preset-1hn5qvb\",h4:\"framer-styles-preset-vr8gxw\",h5:\"framer-styles-preset-qncbjf\",h6:\"framer-styles-preset-14ocgqm\",img:\"framer-styles-preset-uo6lr5\",p:\"framer-styles-preset-aldt3p\"}},SMq1P3RyA:{stylesPresetsClassNames:{a:\"framer-styles-preset-18tmnbn\",code:\"framer-styles-preset-96m9py\",h1:\"framer-styles-preset-hy8o3m\",h2:\"framer-styles-preset-sr78we\",h3:\"framer-styles-preset-1hn5qvb\",h4:\"framer-styles-preset-vr8gxw\",h5:\"framer-styles-preset-qncbjf\",h6:\"framer-styles-preset-14ocgqm\",img:\"framer-styles-preset-uo6lr5\",p:\"framer-styles-preset-aldt3p\"}},wOnK9GTF_:{stylesPresetsClassNames:{a:\"framer-styles-preset-18tmnbn\",code:\"framer-styles-preset-96m9py\",h1:\"framer-styles-preset-hy8o3m\",h2:\"framer-styles-preset-sr78we\",h3:\"framer-styles-preset-1hn5qvb\",h4:\"framer-styles-preset-vr8gxw\",h5:\"framer-styles-preset-qncbjf\",h6:\"framer-styles-preset-14ocgqm\",img:\"framer-styles-preset-uo6lr5\",p:\"framer-styles-preset-aldt3p\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hj4q77\",layoutDependency:layoutDependency,layoutId:\"y0KXMQyWv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16zmdml\",\"data-styles-preset\":\"CppQKS3Wq\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mydVWXB4p\"},motionChild:true,nodeId:\"bnL4RgGNr\",openInNewTab:false,scopeId:\"HUTRH8Z_1\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18tmnbn\",\"data-styles-preset\":\"UlNhbdPWs\",children:\"Learn More \u203A\"})})})}),className:\"framer-1ylv1fv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bnL4RgGNr\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TCQMX.framer-1eor1rx, .framer-TCQMX .framer-1eor1rx { display: block; }\",\".framer-TCQMX.framer-qonwny { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 90px 30px 90px; position: relative; width: 1440px; }\",\".framer-TCQMX .framer-snebdo-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-TCQMX .framer-1ygfnh7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 1308px; }\",\".framer-TCQMX .framer-14mwn4s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 29px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-TCQMX .framer-1soyiix-container { flex: none; height: 327px; position: relative; width: 345px; }\",\".framer-TCQMX .framer-6bnad3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-TCQMX .framer-1yd3wuw { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-TCQMX .framer-algxaj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 345px; word-break: break-word; word-wrap: break-word; }\",\".framer-TCQMX .framer-bx3prw { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-TCQMX .framer-itz4py { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-TCQMX .framer-1pjkp2t-container, .framer-TCQMX .framer-okx32-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-TCQMX .framer-bkt8xf { 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: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-TCQMX .framer-zdeqhx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 100%; }\",\".framer-TCQMX .framer-hdnuce { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TCQMX .framer-1hj4q77 { 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-TCQMX .framer-1ylv1fv { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TCQMX.framer-qonwny, .framer-TCQMX .framer-1ygfnh7, .framer-TCQMX .framer-14mwn4s, .framer-TCQMX .framer-6bnad3, .framer-TCQMX .framer-1yd3wuw, .framer-TCQMX .framer-bx3prw, .framer-TCQMX .framer-itz4py, .framer-TCQMX .framer-bkt8xf, .framer-TCQMX .framer-zdeqhx, .framer-TCQMX .framer-1hj4q77 { gap: 0px; } .framer-TCQMX.framer-qonwny > *, .framer-TCQMX .framer-bkt8xf > *, .framer-TCQMX .framer-zdeqhx > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-TCQMX.framer-qonwny > :first-child, .framer-TCQMX .framer-14mwn4s > :first-child, .framer-TCQMX .framer-6bnad3 > :first-child, .framer-TCQMX .framer-bkt8xf > :first-child, .framer-TCQMX .framer-zdeqhx > :first-child { margin-top: 0px; } .framer-TCQMX.framer-qonwny > :last-child, .framer-TCQMX .framer-14mwn4s > :last-child, .framer-TCQMX .framer-6bnad3 > :last-child, .framer-TCQMX .framer-bkt8xf > :last-child, .framer-TCQMX .framer-zdeqhx > :last-child { margin-bottom: 0px; } .framer-TCQMX .framer-1ygfnh7 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-TCQMX .framer-1ygfnh7 > :first-child, .framer-TCQMX .framer-1yd3wuw > :first-child, .framer-TCQMX .framer-bx3prw > :first-child, .framer-TCQMX .framer-itz4py > :first-child, .framer-TCQMX .framer-1hj4q77 > :first-child { margin-left: 0px; } .framer-TCQMX .framer-1ygfnh7 > :last-child, .framer-TCQMX .framer-1yd3wuw > :last-child, .framer-TCQMX .framer-bx3prw > :last-child, .framer-TCQMX .framer-itz4py > :last-child, .framer-TCQMX .framer-1hj4q77 > :last-child { margin-right: 0px; } .framer-TCQMX .framer-14mwn4s > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-TCQMX .framer-6bnad3 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-TCQMX .framer-1yd3wuw > *, .framer-TCQMX .framer-bx3prw > *, .framer-TCQMX .framer-itz4py > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-TCQMX .framer-1hj4q77 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } }\",\".framer-TCQMX.framer-v-f67e9q.framer-qonwny { width: 1200px; }\",\".framer-TCQMX.framer-v-f67e9q .framer-1ygfnh7 { width: 1097px; }\",\".framer-TCQMX.framer-v-1l9fi3s.framer-qonwny { padding: 0px 40px 30px 40px; width: 810px; }\",\".framer-TCQMX.framer-v-1l9fi3s .framer-1ygfnh7 { flex-direction: column; padding: 20px 0px 20px 0px; width: 710px; }\",\".framer-TCQMX.framer-v-1l9fi3s .framer-14mwn4s { align-content: center; align-items: center; flex-direction: row; }\",\".framer-TCQMX.framer-v-1l9fi3s .framer-1soyiix-container { height: 217px; width: 234px; }\",\".framer-TCQMX.framer-v-1l9fi3s .framer-algxaj, .framer-TCQMX.framer-v-1w5qvf2 .framer-algxaj, .framer-TCQMX.framer-v-glkurz .framer-algxaj, .framer-TCQMX.framer-v-1cwx5n4 .framer-algxaj { white-space: pre; width: auto; }\",\".framer-TCQMX.framer-v-1l9fi3s .framer-bkt8xf, .framer-TCQMX.framer-v-1w5qvf2 .framer-bkt8xf, .framer-TCQMX.framer-v-glkurz .framer-bkt8xf, .framer-TCQMX.framer-v-1cwx5n4 .framer-bkt8xf { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TCQMX.framer-v-1l9fi3s .framer-1ygfnh7, .framer-TCQMX.framer-v-1l9fi3s .framer-14mwn4s { gap: 0px; } .framer-TCQMX.framer-v-1l9fi3s .framer-1ygfnh7 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-TCQMX.framer-v-1l9fi3s .framer-1ygfnh7 > :first-child { margin-top: 0px; } .framer-TCQMX.framer-v-1l9fi3s .framer-1ygfnh7 > :last-child { margin-bottom: 0px; } .framer-TCQMX.framer-v-1l9fi3s .framer-14mwn4s > * { margin: 0px; margin-left: calc(29px / 2); margin-right: calc(29px / 2); } .framer-TCQMX.framer-v-1l9fi3s .framer-14mwn4s > :first-child { margin-left: 0px; } .framer-TCQMX.framer-v-1l9fi3s .framer-14mwn4s > :last-child { margin-right: 0px; } }\",\".framer-TCQMX.framer-v-1w5qvf2.framer-qonwny { padding: 0px 20px 30px 20px; width: 428px; }\",\".framer-TCQMX.framer-v-1w5qvf2 .framer-1ygfnh7, .framer-TCQMX.framer-v-glkurz .framer-1ygfnh7, .framer-TCQMX.framer-v-1cwx5n4 .framer-1ygfnh7 { flex-direction: column; padding: 20px 0px 20px 0px; width: 100%; }\",\".framer-TCQMX.framer-v-1w5qvf2 .framer-14mwn4s, .framer-TCQMX.framer-v-glkurz .framer-14mwn4s, .framer-TCQMX.framer-v-1cwx5n4 .framer-14mwn4s { gap: 20px; width: 100%; }\",\".framer-TCQMX.framer-v-1w5qvf2 .framer-1soyiix-container, .framer-TCQMX.framer-v-glkurz .framer-1soyiix-container { height: 364px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TCQMX.framer-v-1w5qvf2 .framer-1ygfnh7, .framer-TCQMX.framer-v-1w5qvf2 .framer-14mwn4s { gap: 0px; } .framer-TCQMX.framer-v-1w5qvf2 .framer-1ygfnh7 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-TCQMX.framer-v-1w5qvf2 .framer-1ygfnh7 > :first-child, .framer-TCQMX.framer-v-1w5qvf2 .framer-14mwn4s > :first-child { margin-top: 0px; } .framer-TCQMX.framer-v-1w5qvf2 .framer-1ygfnh7 > :last-child, .framer-TCQMX.framer-v-1w5qvf2 .framer-14mwn4s > :last-child { margin-bottom: 0px; } .framer-TCQMX.framer-v-1w5qvf2 .framer-14mwn4s > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-TCQMX.framer-v-glkurz.framer-qonwny { padding: 0px 20px 30px 20px; width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TCQMX.framer-v-glkurz .framer-1ygfnh7, .framer-TCQMX.framer-v-glkurz .framer-14mwn4s { gap: 0px; } .framer-TCQMX.framer-v-glkurz .framer-1ygfnh7 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-TCQMX.framer-v-glkurz .framer-1ygfnh7 > :first-child, .framer-TCQMX.framer-v-glkurz .framer-14mwn4s > :first-child { margin-top: 0px; } .framer-TCQMX.framer-v-glkurz .framer-1ygfnh7 > :last-child, .framer-TCQMX.framer-v-glkurz .framer-14mwn4s > :last-child { margin-bottom: 0px; } .framer-TCQMX.framer-v-glkurz .framer-14mwn4s > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-TCQMX.framer-v-1cwx5n4.framer-qonwny { padding: 0px 20px 30px 20px; width: 360px; }\",\".framer-TCQMX.framer-v-1cwx5n4 .framer-1soyiix-container { height: 313px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TCQMX.framer-v-1cwx5n4 .framer-1ygfnh7, .framer-TCQMX.framer-v-1cwx5n4 .framer-14mwn4s { gap: 0px; } .framer-TCQMX.framer-v-1cwx5n4 .framer-1ygfnh7 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-TCQMX.framer-v-1cwx5n4 .framer-1ygfnh7 > :first-child, .framer-TCQMX.framer-v-1cwx5n4 .framer-14mwn4s > :first-child { margin-top: 0px; } .framer-TCQMX.framer-v-1cwx5n4 .framer-1ygfnh7 > :last-child, .framer-TCQMX.framer-v-1cwx5n4 .framer-14mwn4s > :last-child { margin-bottom: 0px; } .framer-TCQMX.framer-v-1cwx5n4 .framer-14mwn4s > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 673\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KLo9rFWJ0\":{\"layout\":[\"fixed\",\"auto\"]},\"GkVct44bl\":{\"layout\":[\"fixed\",\"auto\"]},\"wOnK9GTF_\":{\"layout\":[\"fixed\",\"auto\"]},\"k_4MZRxNS\":{\"layout\":[\"fixed\",\"auto\"]},\"SMq1P3RyA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"b6K62NUhZ\":\"content\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerHUTRH8Z_1=withCSS(Component,css,\"framer-TCQMX\");export default FramerHUTRH8Z_1;FramerHUTRH8Z_1.displayName=\"meet-jgs-home\";FramerHUTRH8Z_1.defaultProps={height:673,width:1440};addPropertyControls(FramerHUTRH8Z_1,{variant:{options:[\"Apx86DUcJ\",\"KLo9rFWJ0\",\"GkVct44bl\",\"wOnK9GTF_\",\"k_4MZRxNS\",\"SMq1P3RyA\"],optionTitles:[\"desktop-1440\",\"desktop-1200\",\"tablet-810\",\"phone-428\",\"phone-390\",\"phone-360\"],title:\"Variant\",type:ControlType.Enum},b6K62NUhZ:{defaultValue:'<p>\"Throughout my professional journey, I have had the privilege of guiding both domestic and global companies in developing customer growth strategies across various business domains such as change management, AI digitalization, and global go-to-market strategies for mainstream and niche markets \u2013 including multicultural segments. My experience spans diverse industries like media &amp; entertainment, sustainability, renewable energy, decarbonization, and data analytics. I have collaborated with major consumer and B2B brands to drive revenue growth and provided strategic counsel to startup founders and stakeholders in realizing their entrepreneurial visions. I also continue to teach and advise our future university leaders on the intricacies of doing business abroad.</p><p>An integral aspect of my career satisfaction lies in fostering business expansion for organizations and entrepreneurs, alongside imparting knowledge and mentoring fellow professionals and graduates on effective innovative methodologies that yield tangible outcomes. In the backdrop of evolving technologies like artificial intelligence, embracing responsible and ethical AI applications represents an unprecedented opportunity for companies to thrive. It is imperative for businesses to adapt swiftly to this dynamic landscape to stay competitive and relevant\u2026\"</p>',title:\"Content\",type:ControlType.RichText}});addFonts(FramerHUTRH8Z_1,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...PreHeaderFonts,...FounderPortraitFonts,...BadgeIconFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHUTRH8Z_1\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KLo9rFWJ0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GkVct44bl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wOnK9GTF_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"k_4MZRxNS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SMq1P3RyA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\",\"framerVariables\":\"{\\\"b6K62NUhZ\\\":\\\"content\\\"}\",\"framerIntrinsicHeight\":\"673\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HUTRH8Z_1.map", "// Generated by Framer (ff6f0b6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lhK5daazRzwyFYhqUXsE/3vwlSoxoDQcB7dXSYFPK/dTK61ocSv.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/0CAfEtfmY7vOK0mwOtz6/Bty3HIfRzeSPprmGNwcb/fCgjxcT7S.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/Q8MwwoV4cRaWC8O6gVL6/Up9rDpZ2NXwCQ8xuzYaq/UlNhbdPWs.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/10QotiSPgIUP1Z5ErArv/3ajMbklmGYAKzXX5t6yE/X5e0ShL3I.js\";const cycleOrder=[\"LmSIqe29I\",\"e41SH_GB2\",\"Nf9bkgSgO\"];const serializationHash=\"framer-xgzS9\";const variantClassNames={e41SH_GB2:\"framer-v-kd4yf\",LmSIqe29I:\"framer-v-ine6h\",Nf9bkgSgO:\"framer-v-1i6c4y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"phone-330\":\"Nf9bkgSgO\",\"phone-360\":\"e41SH_GB2\",\"phone-390\":\"LmSIqe29I\"};const getProps=({height,id,subcategory1,subcategory2,subcategory3,text,title,width,...props})=>{return{...props,jBmlZ0tQ4:subcategory2??props.jBmlZ0tQ4??\"AI Digitalization\",jLDpZf3DH:subcategory3??props.jLDpZf3DH??\"Change Management Employee Training on AI\",L3tSBbZ99:title??props.L3tSBbZ99??\"AI & Change Management\",MxASgu2WD:text??props.MxASgu2WD??\"Unlock the potential of AI to transform your organization with Change Management.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"LmSIqe29I\",WRhcjpFGt:subcategory1??props.WRhcjpFGt??\"Overview\"};};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,L3tSBbZ99,MxASgu2WD,WRhcjpFGt,jBmlZ0tQ4,jLDpZf3DH,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LmSIqe29I\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ine6h\",className,classNames),\"data-framer-name\":\"phone-390\",layoutDependency:layoutDependency,layoutId:\"LmSIqe29I\",ref:ref??ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({e41SH_GB2:{\"data-framer-name\":\"phone-360\"},Nf9bkgSgO:{\"data-framer-name\":\"phone-330\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jczs4q\",\"data-framer-name\":\"Frame 23\",layoutDependency:layoutDependency,layoutId:\"Df7YSjrf9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-8jii7\",\"data-styles-preset\":\"fCgjxcT7S\",style:{\"--framer-text-alignment\":\"center\"},children:\"AI & Change Management\"})}),className:\"framer-8dty38\",\"data-framer-name\":\"Global Bridge Builders\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hVcZxkEFy\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:L3tSBbZ99,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1rzwp5c\",\"data-styles-preset\":\"dTK61ocSv\",children:\"Unlock the potential of AI to transform your organization with Change Management.\"})}),className:\"framer-1ti0bi4\",\"data-framer-name\":\"Empowering companies to connect with diverse audiences worldwide through targeted strategies.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WicXsxZB2\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:MxASgu2WD,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kj7r8g\",\"data-styles-preset\":\"X5e0ShL3I\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yMCHDv5ic\"},nodeId:\"ldINsw1X4\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18tmnbn\",\"data-styles-preset\":\"UlNhbdPWs\",children:\"Overview\"})})})}),className:\"framer-ywvdtl\",\"data-framer-name\":\"Overview\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ldINsw1X4\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:WRhcjpFGt,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kj7r8g\",\"data-styles-preset\":\"X5e0ShL3I\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nfHdhc_UI\"},nodeId:\"Fd5XwFUli\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18tmnbn\",\"data-styles-preset\":\"UlNhbdPWs\",children:\"AI Digitalization\"})})})}),className:\"framer-1a94e3o\",\"data-framer-name\":\"AI Digitalization\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Fd5XwFUli\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:jBmlZ0tQ4,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kj7r8g\",\"data-styles-preset\":\"X5e0ShL3I\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cTr5gaxDu\"},nodeId:\"ErsonoaET\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18tmnbn\",\"data-styles-preset\":\"UlNhbdPWs\",children:\"Change Management Employee Training on AI\"})})})}),className:\"framer-1mlmmy8\",\"data-framer-name\":\"Overview\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ErsonoaET\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:jLDpZf3DH,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xgzS9.framer-1n8y7pd, .framer-xgzS9 .framer-1n8y7pd { display: block; }\",\".framer-xgzS9.framer-ine6h { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 390px; }\",\".framer-xgzS9 .framer-jczs4q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-xgzS9 .framer-8dty38, .framer-xgzS9 .framer-1ti0bi4, .framer-xgzS9 .framer-ywvdtl, .framer-xgzS9 .framer-1a94e3o { align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-xgzS9 .framer-1mlmmy8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xgzS9.framer-ine6h, .framer-xgzS9 .framer-jczs4q { gap: 0px; } .framer-xgzS9.framer-ine6h > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-xgzS9.framer-ine6h > :first-child, .framer-xgzS9 .framer-jczs4q > :first-child { margin-top: 0px; } .framer-xgzS9.framer-ine6h > :last-child, .framer-xgzS9 .framer-jczs4q > :last-child { margin-bottom: 0px; } .framer-xgzS9 .framer-jczs4q > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } }\",\".framer-xgzS9.framer-v-kd4yf.framer-ine6h { width: 360px; }\",\".framer-xgzS9.framer-v-1i6c4y.framer-ine6h { width: 330px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 187\n * @framerIntrinsicWidth 390\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"e41SH_GB2\":{\"layout\":[\"fixed\",\"auto\"]},\"Nf9bkgSgO\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"L3tSBbZ99\":\"title\",\"MxASgu2WD\":\"text\",\"WRhcjpFGt\":\"subcategory1\",\"jBmlZ0tQ4\":\"subcategory2\",\"jLDpZf3DH\":\"subcategory3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIuuSrraef=withCSS(Component,css,\"framer-xgzS9\");export default FramerIuuSrraef;FramerIuuSrraef.displayName=\"services 1 phone -390\";FramerIuuSrraef.defaultProps={height:187,width:390};addPropertyControls(FramerIuuSrraef,{variant:{options:[\"LmSIqe29I\",\"e41SH_GB2\",\"Nf9bkgSgO\"],optionTitles:[\"phone-390\",\"phone-360\",\"phone-330\"],title:\"Variant\",type:ControlType.Enum},L3tSBbZ99:{defaultValue:\"AI & Change Management\",displayTextArea:false,title:\"Title\",type:ControlType.String},MxASgu2WD:{defaultValue:\"Unlock the potential of AI to transform your organization with Change Management.\",displayTextArea:false,title:\"Text\",type:ControlType.String},WRhcjpFGt:{defaultValue:\"Overview\",displayTextArea:false,title:\"Subcategory 1\",type:ControlType.String},jBmlZ0tQ4:{defaultValue:\"AI Digitalization\",displayTextArea:false,title:\"Subcategory 2\",type:ControlType.String},jLDpZf3DH:{defaultValue:\"Change Management Employee Training on AI\",displayTextArea:false,title:\"Subcategory  3\",type:ControlType.String}});addFonts(FramerIuuSrraef,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIuuSrraef\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"L3tSBbZ99\\\":\\\"title\\\",\\\"MxASgu2WD\\\":\\\"text\\\",\\\"WRhcjpFGt\\\":\\\"subcategory1\\\",\\\"jBmlZ0tQ4\\\":\\\"subcategory2\\\",\\\"jLDpZf3DH\\\":\\\"subcategory3\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"187\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"390\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"e41SH_GB2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Nf9bkgSgO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IuuSrraef.map", "// Generated by Framer (ff6f0b6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{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\"},{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/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{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/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-LYtYQ .framer-styles-preset-1b7ggxz:not(.rich-text-wrapper), .framer-LYtYQ .framer-styles-preset-1b7ggxz.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 26px; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-a27ef4b0-be56-4fd0-b770-08543d90da70, #484848); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-LYtYQ\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ff6f0b6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-7CJYP .framer-styles-preset-1yg98lv:not(.rich-text-wrapper), .framer-7CJYP .framer-styles-preset-1yg98lv.rich-text-wrapper a { --framer-link-current-text-color: var(--token-c8a9ebaf-3e65-4a53-83d3-9146567dd84d, #f5f9fa) /* {\"name\":\"primary/light-blue-50\"} */; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #ffffff; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #ffffff; --framer-link-text-decoration: none; }'];export const className=\"framer-7CJYP\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c126521)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/g9mzyNfYkFVMsF4HPObU/q4ntiWEgrwUHlI5xwF8t/CppQKS3Wq.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/J9MKfYqExiEhZmx70tdZ/SeXpcNCAOycvDHWZZuFD/PxZzdIagw.js\";const enabledGestures={\"I430:774;40:107;40:36\":{hover:true,pressed:true}};const serializationHash=\"framer-AG8K9\";const variantClassNames={\"I430:774;40:107;40:36\":\"framer-v-x1q558\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,link,title,width,...props})=>{return{...props,Mg6i2mxOX:title??props.Mg6i2mxOX??\"Read more\",qa0X8mguq:link??props.qa0X8mguq};};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,Mg6i2mxOX,qa0X8mguq,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"I430:774;40:107;40:36\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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__*/_jsx(motion.button,{...restProps,...gestureHandlers,\"aria-label\":\"button\",className:cx(scopingClassNames,\"framer-x1q558\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"I430:774;40:107;40:36\",ref:ref??ref1,style:{backgroundColor:\"rgb(58, 176, 219)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"I430:774;40:107;40:36-hover\":{backgroundColor:\"var(--token-3a8a4aab-10c7-4660-aea3-050a3d0195d2, rgb(138, 186, 205))\"}},...addPropertyOverrides({\"I430:774;40:107;40:36-hover\":{\"data-framer-name\":undefined},\"I430:774;40:107;40:36-pressed\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16zmdml\",\"data-styles-preset\":\"CppQKS3Wq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:qa0X8mguq,nodeId:\"I430:774;40:107;40:36;40:34\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1yg98lv\",\"data-styles-preset\":\"PxZzdIagw\",children:\"Read more\"})})})}),className:\"framer-5pfaxx\",\"data-framer-name\":\"BUTTON\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I430:774;40:107;40:36;40:34\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:Mg6i2mxOX,verticalAlignment:\"center\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AG8K9.framer-11s94x7, .framer-AG8K9 .framer-11s94x7 { display: block; }\",\".framer-AG8K9.framer-x1q558 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 50px; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 156px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AG8K9 .framer-5pfaxx { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AG8K9.framer-x1q558 { gap: 0px; } .framer-AG8K9.framer-x1q558 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-AG8K9.framer-x1q558 > :first-child { margin-left: 0px; } .framer-AG8K9.framer-x1q558 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 156\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"i4Yn0gA_l\":{\"layout\":[\"fixed\",\"fixed\"]},\"ywSuLDHWp\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Mg6i2mxOX\":\"title\",\"qa0X8mguq\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUDoq9v1is=withCSS(Component,css,\"framer-AG8K9\");export default FramerUDoq9v1is;FramerUDoq9v1is.displayName=\"buttons\";FramerUDoq9v1is.defaultProps={height:50,width:156};addPropertyControls(FramerUDoq9v1is,{Mg6i2mxOX:{defaultValue:\"Read more\",displayTextArea:false,title:\"Title\",type:ControlType.String},qa0X8mguq:{title:\"Link\",type:ControlType.Link}});addFonts(FramerUDoq9v1is,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUDoq9v1is\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"156\",\"framerIntrinsicHeight\":\"50\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"i4Yn0gA_l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ywSuLDHWp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"Mg6i2mxOX\\\":\\\"title\\\",\\\"qa0X8mguq\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/hEXcKqycMpRjDlKwqImZ/oHZ4vwaIJbJIfgs5TBRB/fCgjxcT7S.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/d0AB8wMPCg56RC6Kb6kg/D8Bd60ee9zYnBwQMoiBB/MUtu2cPvT.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/bi1u4ajfmUXMh6vzuf20/2g3y92UbCjOnKRYUOSm4/scHqXtur6.js\";import Buttons from\"https://framerusercontent.com/modules/oh4gYtV7TsXJcSaQGx5e/IKLmfC9YGcpqooymeLYh/UDoq9v1is.js\";const ButtonsFonts=getFonts(Buttons);const cycleOrder=[\"I430:774;40:107\",\"DLEVD4pyT\"];const serializationHash=\"framer-K8WP9\";const variantClassNames={\"I430:774;40:107\":\"framer-v-1r8qnob\",DLEVD4pyT:\"framer-v-w3es7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"I430:774;40:107\",\"Variant 2\":\"DLEVD4pyT\"};const getProps=({buttonLink,height,id,shadow,text,title,width,...props})=>{return{...props,DsKIjpOC3:buttonLink??props.DsKIjpOC3,e6gSI0gHU:title??props.e6gSI0gHU??\"AI & Change Management\",IhVKz3fJQ:text??props.IhVKz3fJQ??\"Unlock the potential of AI to transform your organization with Change Management.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"I430:774;40:107\",WXivF6qGL:shadow??props.WXivF6qGL??\"0px 4px 24px 4px rgba(0, 0, 0, 0.17)\"};};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,e6gSI0gHU,DsKIjpOC3,IhVKz3fJQ,WXivF6qGL,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"I430:774;40:107\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];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-1r8qnob\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"I430:774;40:107\",ref:ref??ref1,style:{\"--1r7xsti\":WXivF6qGL,backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"var(--1r7xsti)\",...style},...addPropertyOverrides({DLEVD4pyT:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q58qp8\",\"data-framer-name\":\"Frame 23\",layoutDependency:layoutDependency,layoutId:\"I430:774;40:107;40:91\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-7cyk1x\",\"data-styles-preset\":\"MUtu2cPvT\",children:\"AI & Change Management\"})}),className:\"framer-1pnvtvg\",\"data-framer-name\":\"Global Bridge Builders\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I430:774;40:107;40:24\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:e6gSI0gHU,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({DLEVD4pyT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-8jii7\",\"data-styles-preset\":\"fCgjxcT7S\",style:{\"--framer-text-alignment\":\"center\"},children:\"AI & Change Management\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b7ggxz\",\"data-styles-preset\":\"scHqXtur6\",children:\"Unlock the potential of AI to transform your organization with Change Management.\"})}),className:\"framer-1mepuhv\",\"data-framer-name\":\"Empowering companies to connect with diverse audiences worldwide through targeted strategies.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I430:774;40:107;40:28\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:IhVKz3fJQ,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"156px\",y:(componentViewport?.y||0)+30+(((componentViewport?.height||212)-70-240)/2+175+15),...addPropertyOverrides({DLEVD4pyT:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||212)-70-228)/2+163+15)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2knh7a-container\",layoutDependency:layoutDependency,layoutId:\"n4trHGH5j-container\",nodeId:\"n4trHGH5j\",rendersWithMotion:true,scopeId:\"LF2m5WD71\",children:/*#__PURE__*/_jsx(Buttons,{height:\"100%\",id:\"n4trHGH5j\",layoutId:\"n4trHGH5j\",Mg6i2mxOX:\"Read more\",qa0X8mguq:DsKIjpOC3,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-K8WP9.framer-1cmkz39, .framer-K8WP9 .framer-1cmkz39 { display: block; }\",\".framer-K8WP9.framer-1r8qnob { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 212px; justify-content: center; overflow: visible; padding: 30px 20px 40px 20px; position: relative; width: 410px; }\",\".framer-K8WP9 .framer-1q58qp8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-K8WP9 .framer-1pnvtvg { flex: none; height: 40px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-K8WP9 .framer-1mepuhv { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 331px; word-break: break-word; word-wrap: break-word; }\",\".framer-K8WP9 .framer-2knh7a-container { flex: none; height: 50px; position: relative; width: 156px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-K8WP9.framer-1r8qnob, .framer-K8WP9 .framer-1q58qp8 { gap: 0px; } .framer-K8WP9.framer-1r8qnob > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-K8WP9.framer-1r8qnob > :first-child, .framer-K8WP9 .framer-1q58qp8 > :first-child { margin-top: 0px; } .framer-K8WP9.framer-1r8qnob > :last-child, .framer-K8WP9 .framer-1q58qp8 > :last-child { margin-bottom: 0px; } .framer-K8WP9 .framer-1q58qp8 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }\",\".framer-K8WP9.framer-v-w3es7.framer-1r8qnob { width: 350px; }\",\".framer-K8WP9.framer-v-w3es7 .framer-1pnvtvg { height: auto; }\",\".framer-K8WP9.framer-v-w3es7 .framer-1mepuhv { width: 79%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 212\n * @framerIntrinsicWidth 410\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"DLEVD4pyT\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"e6gSI0gHU\":\"title\",\"DsKIjpOC3\":\"buttonLink\",\"IhVKz3fJQ\":\"text\",\"WXivF6qGL\":\"shadow\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerLF2m5WD71=withCSS(Component,css,\"framer-K8WP9\");export default FramerLF2m5WD71;FramerLF2m5WD71.displayName=\"services-card\";FramerLF2m5WD71.defaultProps={height:212,width:410};addPropertyControls(FramerLF2m5WD71,{variant:{options:[\"I430:774;40:107\",\"DLEVD4pyT\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},e6gSI0gHU:{defaultValue:\"AI & Change Management\",displayTextArea:false,title:\"Title\",type:ControlType.String},DsKIjpOC3:{title:\"Button Link\",type:ControlType.Link},IhVKz3fJQ:{defaultValue:\"Unlock the potential of AI to transform your organization with Change Management.\",displayTextArea:false,title:\"Text\",type:ControlType.String},WXivF6qGL:{defaultValue:[{blur:24,color:\"rgba(0, 0, 0, 0.17)\",diffusion:.5,focus:.5,inset:false,spread:4,type:\"box\",x:0,y:4}],title:\"Shadow\",type:ControlType.BoxShadow}});addFonts(FramerLF2m5WD71,[{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\"}]},...ButtonsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLF2m5WD71\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DLEVD4pyT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"410\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"212\",\"framerVariables\":\"{\\\"e6gSI0gHU\\\":\\\"title\\\",\\\"DsKIjpOC3\\\":\\\"buttonLink\\\",\\\"IhVKz3fJQ\\\":\\\"text\\\",\\\"WXivF6qGL\\\":\\\"shadow\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LF2m5WD71.map", "// Generated by Framer (ff6f0b6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{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-9YJio .framer-styles-preset-1hn5qvb:not(.rich-text-wrapper), .framer-9YJio .framer-styles-preset-1hn5qvb.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter 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: 18px; --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: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-9YJio\";\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 (ff6f0b6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lhK5daazRzwyFYhqUXsE/3vwlSoxoDQcB7dXSYFPK/dTK61ocSv.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/cv2Fk7Q2gy1evBSDadoW/31PIsSnmoXq0rYUDBFdE/WY5aOtDwT.js\";const serializationHash=\"framer-qGMI9\";const variantClassNames={wxW62TcXc:\"framer-v-1b5t639\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({buttonLink,height,id,text,title,width,...props})=>{return{...props,eIEJAhPfl:buttonLink??props.eIEJAhPfl,HHUKHVhNa:title??props.HHUKHVhNa??\"AI & Change Management\",i90mMSvAY:text??props.i90mMSvAY??\"Discover exponential customer growth with a strategic approach.\"};};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,HHUKHVhNa,i90mMSvAY,eIEJAhPfl,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"wxW62TcXc\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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__*/_jsx(Link,{href:eIEJAhPfl,nodeId:\"wxW62TcXc\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1b5t639\",className,classNames)} framer-d76hw9`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"wxW62TcXc\",ref:ref??ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"0px 4px 24px 4px rgba(0, 0, 0, 0.17)\",...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12inoba\",\"data-framer-name\":\"Frame 23\",layoutDependency:layoutDependency,layoutId:\"vytTeFDd9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1hn5qvb\",\"data-styles-preset\":\"WY5aOtDwT\",style:{\"--framer-text-alignment\":\"center\"},children:\"AI & Change Management\"})}),className:\"framer-1ahkiht\",\"data-framer-name\":\"Global Bridge Builders\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Kqw7tz8ja\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:HHUKHVhNa,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1rzwp5c\",\"data-styles-preset\":\"dTK61ocSv\",children:\"Discover exponential customer growth with a strategic approach.\"})}),className:\"framer-1d0spu9\",\"data-framer-name\":\"Empowering companies to connect with diverse audiences worldwide through targeted strategies.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"z7taxuvEx\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:i90mMSvAY,verticalAlignment:\"top\",withExternalLayout:true})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qGMI9.framer-d76hw9, .framer-qGMI9 .framer-d76hw9 { display: block; }\",\".framer-qGMI9.framer-1b5t639 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; overflow: visible; padding: 20px 10px 20px 10px; position: relative; text-decoration: none; width: 243px; }\",\".framer-qGMI9 .framer-12inoba { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qGMI9 .framer-1ahkiht, .framer-qGMI9 .framer-1d0spu9 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qGMI9.framer-1b5t639, .framer-qGMI9 .framer-12inoba { gap: 0px; } .framer-qGMI9.framer-1b5t639 > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-qGMI9.framer-1b5t639 > :first-child, .framer-qGMI9 .framer-12inoba > :first-child { margin-top: 0px; } .framer-qGMI9.framer-1b5t639 > :last-child, .framer-qGMI9 .framer-12inoba > :last-child { margin-bottom: 0px; } .framer-qGMI9 .framer-12inoba > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 115\n * @framerIntrinsicWidth 243\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"HHUKHVhNa\":\"title\",\"i90mMSvAY\":\"text\",\"eIEJAhPfl\":\"buttonLink\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermqgYvC1DN=withCSS(Component,css,\"framer-qGMI9\");export default FramermqgYvC1DN;FramermqgYvC1DN.displayName=\"tablet\";FramermqgYvC1DN.defaultProps={height:115,width:243};addPropertyControls(FramermqgYvC1DN,{HHUKHVhNa:{defaultValue:\"AI & Change Management\",displayTextArea:false,title:\"Title\",type:ControlType.String},i90mMSvAY:{defaultValue:\"Discover exponential customer growth with a strategic approach.\",displayTextArea:false,title:\"Text\",type:ControlType.String},eIEJAhPfl:{title:\"Button Link\",type:ControlType.Link}});addFonts(FramermqgYvC1DN,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermqgYvC1DN\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"HHUKHVhNa\\\":\\\"title\\\",\\\"i90mMSvAY\\\":\\\"text\\\",\\\"eIEJAhPfl\\\":\\\"buttonLink\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"243\",\"framerIntrinsicHeight\":\"115\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mqgYvC1DN.map", "// Generated by Framer (fd7a51d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lhK5daazRzwyFYhqUXsE/3vwlSoxoDQcB7dXSYFPK/dTK61ocSv.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/0CAfEtfmY7vOK0mwOtz6/Bty3HIfRzeSPprmGNwcb/fCgjxcT7S.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/Q8MwwoV4cRaWC8O6gVL6/Up9rDpZ2NXwCQ8xuzYaq/UlNhbdPWs.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/10QotiSPgIUP1Z5ErArv/3ajMbklmGYAKzXX5t6yE/X5e0ShL3I.js\";const cycleOrder=[\"WYIRcwt6_\",\"rKSJRGFh2\",\"xgXSG_DUj\"];const serializationHash=\"framer-UJRzL\";const variantClassNames={rKSJRGFh2:\"framer-v-ox4ejx\",WYIRcwt6_:\"framer-v-1g83nfq\",xgXSG_DUj:\"framer-v-1cr9q1n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"phone-330\":\"xgXSG_DUj\",\"phone-360\":\"rKSJRGFh2\",\"phone-390\":\"WYIRcwt6_\"};const getProps=({height,id,subcategory1,subcategory2,subcategory3,subcategory4,subcategory5,text,title,width,...props})=>{return{...props,AGZNHgngG:subcategory2??props.AGZNHgngG??\"Building Customer Growth\",AubV4OO2f:text??props.AubV4OO2f??\"Discover exponential customer growth with a strategic approach.\",bpxKUKADi:subcategory3??props.bpxKUKADi??\"Multicultural Cognizance & Customer Experience\",JtWhCr6La:subcategory1??props.JtWhCr6La??\"Overview\",Q1Y8_X9LP:subcategory5??props.Q1Y8_X9LP??\"Product Portfolio Growth\",Rf7TmK231:subcategory4??props.Rf7TmK231??\"Optimized Solutions with AI Data\",variant:humanReadableVariantMap[props.variant]??props.variant??\"WYIRcwt6_\",zcuhIoovA:title??props.zcuhIoovA??\"Strategy & Customer Growth\"};};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,zcuhIoovA,AubV4OO2f,JtWhCr6La,AGZNHgngG,bpxKUKADi,Rf7TmK231,Q1Y8_X9LP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WYIRcwt6_\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1g83nfq\",className,classNames),\"data-framer-name\":\"phone-390\",layoutDependency:layoutDependency,layoutId:\"WYIRcwt6_\",ref:ref??ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({rKSJRGFh2:{\"data-framer-name\":\"phone-360\"},xgXSG_DUj:{\"data-framer-name\":\"phone-330\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qa7j5b\",\"data-framer-name\":\"Frame 23\",layoutDependency:layoutDependency,layoutId:\"o6QKJzFTi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-8jii7\",\"data-styles-preset\":\"fCgjxcT7S\",style:{\"--framer-text-alignment\":\"center\"},children:\"Strategy & Customer Growth\"})}),className:\"framer-1qo344l\",\"data-framer-name\":\"Global Bridge Builders\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RfU8yl6jc\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:zcuhIoovA,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1rzwp5c\",\"data-styles-preset\":\"dTK61ocSv\",style:{\"--framer-text-alignment\":\"center\"},children:\"Discover exponential customer growth with a strategic approach.\"})}),className:\"framer-zcbcli\",\"data-framer-name\":\"Empowering companies to connect with diverse audiences worldwide through targeted strategies.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZzU5rQ0qc\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:AubV4OO2f,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kj7r8g\",\"data-styles-preset\":\"X5e0ShL3I\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tI6nXCTKc\"},nodeId:\"yegDAPJ6l\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18tmnbn\",\"data-styles-preset\":\"UlNhbdPWs\",children:\"Overview\"})})})}),className:\"framer-ge6znq\",\"data-framer-name\":\"Overview\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yegDAPJ6l\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:JtWhCr6La,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kj7r8g\",\"data-styles-preset\":\"X5e0ShL3I\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eD2Lne4Zd\"},nodeId:\"sfzTKCYW6\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18tmnbn\",\"data-styles-preset\":\"UlNhbdPWs\",children:\"Building Customer Growth\"})})})}),className:\"framer-jg6jyl\",\"data-framer-name\":\"AI Digitalization\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sfzTKCYW6\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:AGZNHgngG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kj7r8g\",\"data-styles-preset\":\"X5e0ShL3I\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"X0VWu1jIg\"},nodeId:\"XiYr4fSw9\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18tmnbn\",\"data-styles-preset\":\"UlNhbdPWs\",children:\"Multicultural Cognizance & Customer Experience\"})})})}),className:\"framer-1d68lxy\",\"data-framer-name\":\"Overview\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XiYr4fSw9\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:bpxKUKADi,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kj7r8g\",\"data-styles-preset\":\"X5e0ShL3I\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"YMX3_Qcxk\"},nodeId:\"eiKuISqsG\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18tmnbn\",\"data-styles-preset\":\"UlNhbdPWs\",children:\"Optimized Solutions with AI Data\"})})})}),className:\"framer-1mie3fl\",\"data-framer-name\":\"Overview\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eiKuISqsG\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:Rf7TmK231,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kj7r8g\",\"data-styles-preset\":\"X5e0ShL3I\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"n7mTQ74RD\"},nodeId:\"ziJZnT0kI\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18tmnbn\",\"data-styles-preset\":\"UlNhbdPWs\",children:\"Product Portfolio Growth\"})})})}),className:\"framer-1aanom2\",\"data-framer-name\":\"Overview\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ziJZnT0kI\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:Q1Y8_X9LP,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UJRzL.framer-ziqktl, .framer-UJRzL .framer-ziqktl { display: block; }\",\".framer-UJRzL.framer-1g83nfq { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: min-content; }\",\".framer-UJRzL .framer-1qa7j5b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 350px; }\",\".framer-UJRzL .framer-1qo344l, .framer-UJRzL .framer-zcbcli, .framer-UJRzL .framer-ge6znq, .framer-UJRzL .framer-jg6jyl, .framer-UJRzL .framer-1d68lxy, .framer-UJRzL .framer-1mie3fl, .framer-UJRzL .framer-1aanom2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UJRzL.framer-1g83nfq, .framer-UJRzL .framer-1qa7j5b { gap: 0px; } .framer-UJRzL.framer-1g83nfq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-UJRzL.framer-1g83nfq > :first-child, .framer-UJRzL .framer-1qa7j5b > :first-child { margin-top: 0px; } .framer-UJRzL.framer-1g83nfq > :last-child, .framer-UJRzL .framer-1qa7j5b > :last-child { margin-bottom: 0px; } .framer-UJRzL .framer-1qa7j5b > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } }\",\".framer-UJRzL.framer-v-ox4ejx.framer-1g83nfq { width: 360px; }\",\".framer-UJRzL.framer-v-1cr9q1n.framer-1g83nfq { padding: 20px 10px 20px 10px; width: 330px; }\",\".framer-UJRzL.framer-v-1cr9q1n .framer-1qa7j5b { width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 237\n * @framerIntrinsicWidth 390\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"rKSJRGFh2\":{\"layout\":[\"fixed\",\"auto\"]},\"xgXSG_DUj\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"zcuhIoovA\":\"title\",\"AubV4OO2f\":\"text\",\"JtWhCr6La\":\"subcategory1\",\"AGZNHgngG\":\"subcategory2\",\"bpxKUKADi\":\"subcategory3\",\"Rf7TmK231\":\"subcategory4\",\"Q1Y8_X9LP\":\"subcategory5\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOCpvDLuMU=withCSS(Component,css,\"framer-UJRzL\");export default FramerOCpvDLuMU;FramerOCpvDLuMU.displayName=\"phone-390-Strategy\";FramerOCpvDLuMU.defaultProps={height:237,width:390};addPropertyControls(FramerOCpvDLuMU,{variant:{options:[\"WYIRcwt6_\",\"rKSJRGFh2\",\"xgXSG_DUj\"],optionTitles:[\"phone-390\",\"phone-360\",\"phone-330\"],title:\"Variant\",type:ControlType.Enum},zcuhIoovA:{defaultValue:\"Strategy & Customer Growth\",displayTextArea:false,title:\"Title\",type:ControlType.String},AubV4OO2f:{defaultValue:\"Discover exponential customer growth with a strategic approach.\",displayTextArea:false,title:\"Text\",type:ControlType.String},JtWhCr6La:{defaultValue:\"Overview\",displayTextArea:false,title:\"Subcategory 1\",type:ControlType.String},AGZNHgngG:{defaultValue:\"Building Customer Growth\",displayTextArea:false,title:\"Subcategory 2\",type:ControlType.String},bpxKUKADi:{defaultValue:\"Multicultural Cognizance & Customer Experience\",displayTextArea:false,title:\"Subcategory  3\",type:ControlType.String},Rf7TmK231:{defaultValue:\"Optimized Solutions with AI Data\",displayTextArea:false,title:\"Subcategory  4\",type:ControlType.String},Q1Y8_X9LP:{defaultValue:\"Product Portfolio Growth\",displayTextArea:false,title:\"Subcategory  5\",type:ControlType.String}});addFonts(FramerOCpvDLuMU,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOCpvDLuMU\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"237\",\"framerVariables\":\"{\\\"zcuhIoovA\\\":\\\"title\\\",\\\"AubV4OO2f\\\":\\\"text\\\",\\\"JtWhCr6La\\\":\\\"subcategory1\\\",\\\"AGZNHgngG\\\":\\\"subcategory2\\\",\\\"bpxKUKADi\\\":\\\"subcategory3\\\",\\\"Rf7TmK231\\\":\\\"subcategory4\\\",\\\"Q1Y8_X9LP\\\":\\\"subcategory5\\\"}\",\"framerIntrinsicWidth\":\"390\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"rKSJRGFh2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xgXSG_DUj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OCpvDLuMU.map", "// Generated by Framer (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{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\"},{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/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{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/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-FrOub .framer-styles-preset-jft29r:not(.rich-text-wrapper), .framer-FrOub .framer-styles-preset-jft29r.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", 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: 20px; --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: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #666666; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-FrOub\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/dBTyr3mpCvAzdVZ2ZIAV/JlyRboouQFcDV3U9olsf/jSCew3eaX.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/91DQQmXKKdgSPh97bIHj/jBezVSt2pQ4BjkcMthUh/PMUxEGinR.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/qdmRfiFPOSau2LFFSr93/GdUSFlrL2VgoJRZz53oz/vgpibg7S8.js\";const enabledGestures={roFhPUiCl:{hover:true}};const cycleOrder=[\"FioM6GT1y\",\"roFhPUiCl\",\"n9_ryzlA_\",\"WkVaXlfJb\",\"RuYplmQnt\",\"MisuNbyZ1\"];const serializationHash=\"framer-X40tx\";const variantClassNames={FioM6GT1y:\"framer-v-j3ph4n\",MisuNbyZ1:\"framer-v-paqhul\",n9_ryzlA_:\"framer-v-ce0vy\",roFhPUiCl:\"framer-v-dzt3ow\",RuYplmQnt:\"framer-v-1m1z4aw\",WkVaXlfJb:\"framer-v-v3qu8i\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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={\"phone-330\":\"RuYplmQnt\",\"phone-388\":\"MisuNbyZ1\",desktop:\"roFhPUiCl\",horizontal:\"FioM6GT1y\",phone:\"n9_ryzlA_\",tablet:\"WkVaXlfJb\"};const getProps=({height,id,image,link,snippet,title,width,...props})=>{return{...props,IHWzn5rNb:link??props.IHWzn5rNb,Mu9z01hS7:image??props.Mu9z01hS7,pMW3egH93:snippet??props.pMW3egH93??\"I am a cultural digital expert who has a fierce passion for worldwide cultural differences and continually seek to\\xa0educate brands...\",variant:humanReadableVariantMap[props.variant]??props.variant??\"FioM6GT1y\",vN0sOTcUz:title??props.vN0sOTcUz??\"About Julianna Garibay-Sparacio\"};};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,IHWzn5rNb,Mu9z01hS7,vN0sOTcUz,pMW3egH93,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FioM6GT1y\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.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(Link,{motionChild:true,nodeId:\"FioM6GT1y\",scopeId:\"CLz0k4TPe\",...addPropertyOverrides({MisuNbyZ1:{href:IHWzn5rNb,openInNewTab:false},n9_ryzlA_:{href:IHWzn5rNb,openInNewTab:false},roFhPUiCl:{href:IHWzn5rNb,openInNewTab:false},RuYplmQnt:{href:IHWzn5rNb,openInNewTab:false},WkVaXlfJb:{href:IHWzn5rNb,openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-j3ph4n\",className,classNames)} framer-1o3f9u5`,\"data-framer-name\":\"horizontal\",layoutDependency:layoutDependency,layoutId:\"FioM6GT1y\",ref:refBinding,style:{backgroundColor:\"var(--token-c8a9ebaf-3e65-4a53-83d3-9146567dd84d, rgb(245, 249, 250))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"none\",...style},variants:{\"roFhPUiCl-hover\":{boxShadow:\"0px 3px 10px 6px rgba(0, 0, 0, 0.07)\"},MisuNbyZ1:{borderBottomLeftRadius:0,borderBottomRightRadius:0},n9_ryzlA_:{borderBottomLeftRadius:0,borderBottomRightRadius:0},roFhPUiCl:{borderBottomLeftRadius:0,borderBottomRightRadius:0},RuYplmQnt:{borderBottomLeftRadius:0,borderBottomRightRadius:0}},...addPropertyOverrides({\"roFhPUiCl-hover\":{\"data-framer-name\":undefined},MisuNbyZ1:{\"data-framer-name\":\"phone-388\"},n9_ryzlA_:{\"data-framer-name\":\"phone\"},roFhPUiCl:{\"data-framer-name\":\"desktop\"},RuYplmQnt:{\"data-framer-name\":\"phone-330\"},WkVaXlfJb:{\"data-framer-name\":\"tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`min(370px, ${componentViewport?.width||\"100vw\"})`,...toResponsiveImage(Mu9z01hS7)},className:\"framer-ijvoii\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"SGaPrp5Xv\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.06)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:16,borderTopLeftRadius:16,borderTopRightRadius:0},variants:{MisuNbyZ1:{borderBottomLeftRadius:0,borderTopRightRadius:16},n9_ryzlA_:{borderBottomLeftRadius:0,borderTopRightRadius:16},roFhPUiCl:{borderBottomLeftRadius:0,borderTopRightRadius:16},RuYplmQnt:{borderBottomLeftRadius:0,borderTopRightRadius:16},WkVaXlfJb:{borderTopRightRadius:0}},...addPropertyOverrides({MisuNbyZ1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(Mu9z01hS7)}},n9_ryzlA_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(Mu9z01hS7)}},roFhPUiCl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(Mu9z01hS7)}},RuYplmQnt:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(Mu9z01hS7)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ats40g\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"MLQBc3hqv\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12tkx2o\",layoutDependency:layoutDependency,layoutId:\"PNGweJtOz\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f3rb3u\",layoutDependency:layoutDependency,layoutId:\"ZBZUnLsDF\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-102voa6\",layoutDependency:layoutDependency,layoutId:\"C0WWnwbBE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-9xecyl\",\"data-styles-preset\":\"PMUxEGinR\",style:{\"--framer-text-alignment\":\"left\"},children:\"About Julianna Garibay-Sparacio\"})}),className:\"framer-ye9k9p\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wTjhJDxow\",text:vN0sOTcUz,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({MisuNbyZ1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-vr8gxw\",\"data-styles-preset\":\"vgpibg7S8\",style:{\"--framer-text-alignment\":\"left\"},children:\"About Julianna Garibay-Sparacio\"})})},n9_ryzlA_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-vr8gxw\",\"data-styles-preset\":\"vgpibg7S8\",style:{\"--framer-text-alignment\":\"left\"},children:\"About Julianna Garibay-Sparacio\"})})},roFhPUiCl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-vr8gxw\",\"data-styles-preset\":\"vgpibg7S8\",style:{\"--framer-text-alignment\":\"left\"},children:\"About Julianna Garibay-Sparacio\"})})},RuYplmQnt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-vr8gxw\",\"data-styles-preset\":\"vgpibg7S8\",style:{\"--framer-text-alignment\":\"left\"},children:\"About Julianna Garibay-Sparacio\"})})},WkVaXlfJb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-vr8gxw\",\"data-styles-preset\":\"vgpibg7S8\",style:{\"--framer-text-alignment\":\"left\"},children:\"About Julianna Garibay-Sparacio\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1u4n3c7\",\"data-styles-preset\":\"jSCew3eaX\",style:{\"--framer-text-alignment\":\"left\"},children:\"I am a cultural digital expert who has a fierce passion for worldwide cultural differences and continually seek to\\xa0educate brands...\"})}),className:\"framer-tn29fw\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SGMXH4NNs\",text:pMW3egH93,verticalAlignment:\"top\",withExternalLayout:true})]})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-X40tx.framer-1o3f9u5, .framer-X40tx .framer-1o3f9u5 { display: block; }\",\".framer-X40tx.framer-j3ph4n { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 30px; height: min-content; justify-content: flex-start; padding: 0px 20px 0px 0px; position: relative; width: 1000px; }\",\".framer-X40tx .framer-ijvoii { flex: none; height: 380px; max-width: 100%; position: relative; width: 370px; }\",\".framer-X40tx .framer-1ats40g { 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: flex-start; padding: 0px 20px 0px 0px; position: relative; width: 1px; }\",\".framer-X40tx .framer-12tkx2o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-X40tx .framer-1f3rb3u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-X40tx .framer-102voa6 { 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: 100%; }\",\".framer-X40tx .framer-ye9k9p, .framer-X40tx .framer-tn29fw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-X40tx.framer-j3ph4n, .framer-X40tx .framer-1ats40g, .framer-X40tx .framer-12tkx2o, .framer-X40tx .framer-1f3rb3u, .framer-X40tx .framer-102voa6 { gap: 0px; } .framer-X40tx.framer-j3ph4n > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-X40tx.framer-j3ph4n > :first-child { margin-left: 0px; } .framer-X40tx.framer-j3ph4n > :last-child { margin-right: 0px; } .framer-X40tx .framer-1ats40g > *, .framer-X40tx .framer-1f3rb3u > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-X40tx .framer-1ats40g > :first-child, .framer-X40tx .framer-12tkx2o > :first-child, .framer-X40tx .framer-1f3rb3u > :first-child, .framer-X40tx .framer-102voa6 > :first-child { margin-top: 0px; } .framer-X40tx .framer-1ats40g > :last-child, .framer-X40tx .framer-12tkx2o > :last-child, .framer-X40tx .framer-1f3rb3u > :last-child, .framer-X40tx .framer-102voa6 > :last-child { margin-bottom: 0px; } .framer-X40tx .framer-12tkx2o > *, .framer-X40tx .framer-102voa6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-X40tx.framer-v-dzt3ow.framer-j3ph4n { cursor: pointer; flex-direction: column; gap: 20px; padding: 0px 0px 20px 0px; text-decoration: none; width: 400px; }\",\".framer-X40tx.framer-v-dzt3ow .framer-ijvoii { height: 370px; width: 100%; }\",\".framer-X40tx.framer-v-dzt3ow .framer-1ats40g, .framer-X40tx.framer-v-ce0vy .framer-1ats40g, .framer-X40tx.framer-v-1m1z4aw .framer-1ats40g, .framer-X40tx.framer-v-paqhul .framer-1ats40g { flex: none; padding: 0px 20px 0px 20px; width: 100%; }\",\".framer-X40tx.framer-v-dzt3ow .framer-102voa6 { padding: 0px 0px 10px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-X40tx.framer-v-dzt3ow.framer-j3ph4n { gap: 0px; } .framer-X40tx.framer-v-dzt3ow.framer-j3ph4n > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-X40tx.framer-v-dzt3ow.framer-j3ph4n > :first-child { margin-top: 0px; } .framer-X40tx.framer-v-dzt3ow.framer-j3ph4n > :last-child { margin-bottom: 0px; } }\",\".framer-X40tx.framer-v-ce0vy.framer-j3ph4n { flex-direction: column; gap: 20px; height: 594px; padding: 0px 0px 20px 0px; text-decoration: none; width: 350px; }\",\".framer-X40tx.framer-v-ce0vy .framer-ijvoii, .framer-X40tx.framer-v-1m1z4aw .framer-ijvoii, .framer-X40tx.framer-v-paqhul .framer-ijvoii { height: 324px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-X40tx.framer-v-ce0vy.framer-j3ph4n { gap: 0px; } .framer-X40tx.framer-v-ce0vy.framer-j3ph4n > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-X40tx.framer-v-ce0vy.framer-j3ph4n > :first-child { margin-top: 0px; } .framer-X40tx.framer-v-ce0vy.framer-j3ph4n > :last-child { margin-bottom: 0px; } }\",\".framer-X40tx.framer-v-v3qu8i.framer-j3ph4n { gap: 20px; height: 300px; text-decoration: none; width: 790px; }\",\".framer-X40tx.framer-v-v3qu8i .framer-ijvoii { height: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-X40tx.framer-v-v3qu8i.framer-j3ph4n { gap: 0px; } .framer-X40tx.framer-v-v3qu8i.framer-j3ph4n > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-X40tx.framer-v-v3qu8i.framer-j3ph4n > :first-child { margin-left: 0px; } .framer-X40tx.framer-v-v3qu8i.framer-j3ph4n > :last-child { margin-right: 0px; } }\",\".framer-X40tx.framer-v-1m1z4aw.framer-j3ph4n { flex-direction: column; gap: 20px; height: 594px; padding: 0px 0px 20px 0px; text-decoration: none; width: 330px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-X40tx.framer-v-1m1z4aw.framer-j3ph4n { gap: 0px; } .framer-X40tx.framer-v-1m1z4aw.framer-j3ph4n > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-X40tx.framer-v-1m1z4aw.framer-j3ph4n > :first-child { margin-top: 0px; } .framer-X40tx.framer-v-1m1z4aw.framer-j3ph4n > :last-child { margin-bottom: 0px; } }\",\".framer-X40tx.framer-v-paqhul.framer-j3ph4n { flex-direction: column; gap: 20px; height: 594px; padding: 0px 0px 20px 0px; text-decoration: none; width: 388px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-X40tx.framer-v-paqhul.framer-j3ph4n { gap: 0px; } .framer-X40tx.framer-v-paqhul.framer-j3ph4n > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-X40tx.framer-v-paqhul.framer-j3ph4n > :first-child { margin-top: 0px; } .framer-X40tx.framer-v-paqhul.framer-j3ph4n > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-X40tx[data-border=\"true\"]::after, .framer-X40tx [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 380\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"roFhPUiCl\":{\"layout\":[\"fixed\",\"auto\"]},\"n9_ryzlA_\":{\"layout\":[\"fixed\",\"fixed\"]},\"WkVaXlfJb\":{\"layout\":[\"fixed\",\"fixed\"]},\"RuYplmQnt\":{\"layout\":[\"fixed\",\"fixed\"]},\"MisuNbyZ1\":{\"layout\":[\"fixed\",\"fixed\"]},\"m5vC9lAEb\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"IHWzn5rNb\":\"link\",\"Mu9z01hS7\":\"image\",\"vN0sOTcUz\":\"title\",\"pMW3egH93\":\"snippet\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCLz0k4TPe=withCSS(Component,css,\"framer-X40tx\");export default FramerCLz0k4TPe;FramerCLz0k4TPe.displayName=\"blog-card\";FramerCLz0k4TPe.defaultProps={height:380,width:1e3};addPropertyControls(FramerCLz0k4TPe,{variant:{options:[\"FioM6GT1y\",\"roFhPUiCl\",\"n9_ryzlA_\",\"WkVaXlfJb\",\"RuYplmQnt\",\"MisuNbyZ1\"],optionTitles:[\"horizontal\",\"desktop\",\"phone\",\"tablet\",\"phone-330\",\"phone-388\"],title:\"Variant\",type:ControlType.Enum},IHWzn5rNb:{title:\"Link\",type:ControlType.Link},Mu9z01hS7:{title:\"Image\",type:ControlType.ResponsiveImage},vN0sOTcUz:{defaultValue:\"About Julianna Garibay-Sparacio\",title:\"Title\",type:ControlType.String},pMW3egH93:{defaultValue:\"I am a cultural digital expert who has a fierce passion for worldwide cultural differences and continually seek to\\xa0educate brands...\",displayTextArea:true,placeholder:\"\",title:\"Snippet\",type:ControlType.String}});addFonts(FramerCLz0k4TPe,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCLz0k4TPe\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"380\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"IHWzn5rNb\\\":\\\"link\\\",\\\"Mu9z01hS7\\\":\\\"image\\\",\\\"vN0sOTcUz\\\":\\\"title\\\",\\\"pMW3egH93\\\":\\\"snippet\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"roFhPUiCl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"n9_ryzlA_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WkVaXlfJb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RuYplmQnt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MisuNbyZ1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"m5vC9lAEb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1000\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CLz0k4TPe.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,PathVariablesContext,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Articles from\"https://framerusercontent.com/modules/nrTxkTDoOAuSrWfgrbVh/ZRI1z3Wxz0sqbwStnk5g/H7nsnwDwu.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/13HRALkQpta1Li1vZyB1/TQmlKRtxYcz8A19XOwKH/ofUXyTNWr.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/8rruyMqV5IDBY89cSX8j/dYDzmMNjYf5MhEkRmM9O/UlNhbdPWs.js\";import BlogCard from\"https://framerusercontent.com/modules/y8rwNYsl6jeTQO4ScP8V/CLh2k3ByJnENYBKFgEF5/CLz0k4TPe.js\";import PreHeader from\"https://framerusercontent.com/modules/zVJvEiSyUoPhxjKeHOUw/7B5dtv34RFYtvHCg6XDE/KHVixQDlP.js\";const PreHeaderFonts=getFonts(PreHeader);const BlogCardFonts=getFonts(BlogCard);const cycleOrder=[\"jlZJz2oPS\",\"BSg4U_tDl\",\"cT23aXbKX\",\"TFWXgjMEb\",\"dBhuXMuv6\",\"eMcQnmnVr\"];const serializationHash=\"framer-PapXR\";const variantClassNames={BSg4U_tDl:\"framer-v-44ins1\",cT23aXbKX:\"framer-v-116iqdh\",dBhuXMuv6:\"framer-v-fudffk\",eMcQnmnVr:\"framer-v-jxv4op\",jlZJz2oPS:\"framer-v-19k0eym\",TFWXgjMEb:\"framer-v-qvu31y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query=prequery=>prequery({from:{alias:\"OfYxwAYDQ\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"OfYxwAYDQ\",name:\"ONtAvcn1L\",type:\"Identifier\"},{collection:\"OfYxwAYDQ\",name:\"bPTTuTTFC\",type:\"Identifier\"},{collection:\"OfYxwAYDQ\",name:\"lhVfNSo58\",type:\"Identifier\"},{collection:\"OfYxwAYDQ\",name:\"KNBGc0rWT\",type:\"Identifier\"},{collection:\"OfYxwAYDQ\",name:\"id\",type:\"Identifier\"}]});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};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-1200\":\"BSg4U_tDl\",\"desktop-1440\":\"jlZJz2oPS\",\"phone-360\":\"eMcQnmnVr\",\"phone-390\":\"TFWXgjMEb\",\"phone-428\":\"dBhuXMuv6\",\"tablet-810\":\"cT23aXbKX\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"jlZJz2oPS\"};};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,ONtAvcn1LOfYxwAYDQ,bPTTuTTFCOfYxwAYDQ,lhVfNSo58OfYxwAYDQ,KNBGc0rWTOfYxwAYDQ,idOfYxwAYDQ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jlZJz2oPS\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);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-19k0eym\",className,classNames),\"data-framer-name\":\"desktop-1440\",layoutDependency:layoutDependency,layoutId:\"jlZJz2oPS\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({BSg4U_tDl:{\"data-framer-name\":\"desktop-1200\"},cT23aXbKX:{\"data-framer-name\":\"tablet-810\"},dBhuXMuv6:{\"data-framer-name\":\"phone-428\"},eMcQnmnVr:{\"data-framer-name\":\"phone-360\"},TFWXgjMEb:{\"data-framer-name\":\"phone-390\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+70+(((componentViewport?.height||852)-140-1318)/2+0+0),...addPropertyOverrides({BSg4U_tDl:{y:(componentViewport?.y||0)+70+(((componentViewport?.height||832)-120-1318)/2+0+0)},cT23aXbKX:{y:(componentViewport?.y||0)+70+(((componentViewport?.height||200)-110-373)/2+0+0)},dBhuXMuv6:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-70-496)/2+0+0)},eMcQnmnVr:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-70-496)/2+0+0)},TFWXgjMEb:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-70-496)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ovbeab-container\",layoutDependency:layoutDependency,layoutId:\"t1kkTIhB5-container\",nodeId:\"t1kkTIhB5\",rendersWithMotion:true,scopeId:\"OsaGYrHeE\",children:/*#__PURE__*/_jsx(PreHeader,{height:\"100%\",id:\"t1kkTIhB5\",layoutId:\"t1kkTIhB5\",rVVwoX9LS:20,variant:\"hzUtOz97K\",vDfiEneJh:\"JGS Blog\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8m968c\",layoutDependency:layoutDependency,layoutId:\"OfYxwAYDQ\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"OfYxwAYDQ\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"OfYxwAYDQ\",name:\"ONtAvcn1L\",type:\"Identifier\"},{collection:\"OfYxwAYDQ\",name:\"bPTTuTTFC\",type:\"Identifier\"},{collection:\"OfYxwAYDQ\",name:\"lhVfNSo58\",type:\"Identifier\"},{collection:\"OfYxwAYDQ\",name:\"KNBGc0rWT\",type:\"Identifier\"},{collection:\"OfYxwAYDQ\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({bPTTuTTFC:bPTTuTTFCOfYxwAYDQ,id:idOfYxwAYDQ,KNBGc0rWT:KNBGc0rWTOfYxwAYDQ,lhVfNSo58:lhVfNSo58OfYxwAYDQ,ONtAvcn1L:ONtAvcn1LOfYxwAYDQ},index)=>{ONtAvcn1LOfYxwAYDQ??=\"\";lhVfNSo58OfYxwAYDQ??=\"\";KNBGc0rWTOfYxwAYDQ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`OfYxwAYDQ-${idOfYxwAYDQ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ONtAvcn1L:ONtAvcn1LOfYxwAYDQ},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ONtAvcn1L:ONtAvcn1LOfYxwAYDQ},webPageId:\"FNGBSKbIw\"},implicitPathVariables:undefined},{href:{pathVariables:{ONtAvcn1L:ONtAvcn1LOfYxwAYDQ},webPageId:\"FNGBSKbIw\"},implicitPathVariables:undefined},{href:{pathVariables:{ONtAvcn1L:ONtAvcn1LOfYxwAYDQ},webPageId:\"FNGBSKbIw\"},implicitPathVariables:undefined},{href:{pathVariables:{ONtAvcn1L:ONtAvcn1LOfYxwAYDQ},webPageId:\"FNGBSKbIw\"},implicitPathVariables:undefined},{href:{pathVariables:{ONtAvcn1L:ONtAvcn1LOfYxwAYDQ},webPageId:\"FNGBSKbIw\"},implicitPathVariables:undefined},{href:{pathVariables:{ONtAvcn1L:ONtAvcn1LOfYxwAYDQ},webPageId:\"FNGBSKbIw\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:576,width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 50px)`,y:(componentViewport?.y||0)+70+(((componentViewport?.height||852)-140-1318)/2+24+40)+0+0,...addPropertyOverrides({BSg4U_tDl:{width:\"351px\",y:(componentViewport?.y||0)+70+(((componentViewport?.height||832)-120-1318)/2+24+40)+0+0},cT23aXbKX:{height:237,width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+70+(((componentViewport?.height||200)-110-373)/2+24+40)+0+0},dBhuXMuv6:{height:380,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-70-496)/2+24+30)+0+0},eMcQnmnVr:{height:380,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-70-496)/2+24+30)+0+0},TFWXgjMEb:{height:380,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-70-496)/2+24+30)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1257w3-container\",layoutDependency:layoutDependency,layoutId:\"nP8Ut79ph-container\",nodeId:\"nP8Ut79ph\",rendersWithMotion:true,scopeId:\"OsaGYrHeE\",children:/*#__PURE__*/_jsx(BlogCard,{height:\"100%\",id:\"nP8Ut79ph\",IHWzn5rNb:resolvedLinks[0],layoutId:\"nP8Ut79ph\",Mu9z01hS7:toResponsiveImage(bPTTuTTFCOfYxwAYDQ),pMW3egH93:KNBGc0rWTOfYxwAYDQ,style:{height:\"100%\",width:\"100%\"},variant:\"roFhPUiCl\",vN0sOTcUz:lhVfNSo58OfYxwAYDQ,width:\"100%\",...addPropertyOverrides({BSg4U_tDl:{IHWzn5rNb:resolvedLinks[1],variant:\"n9_ryzlA_\"},cT23aXbKX:{IHWzn5rNb:resolvedLinks[2],variant:\"WkVaXlfJb\"},dBhuXMuv6:{IHWzn5rNb:resolvedLinks[4],style:{width:\"100%\"},variant:\"MisuNbyZ1\"},eMcQnmnVr:{IHWzn5rNb:resolvedLinks[5],style:{width:\"100%\"},variant:\"RuYplmQnt\"},TFWXgjMEb:{IHWzn5rNb:resolvedLinks[3],style:{width:\"100%\"},variant:\"n9_ryzlA_\"}},baseVariant,gestureVariant)})})})})})},idOfYxwAYDQ);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5adgwm\",layoutDependency:layoutDependency,layoutId:\"dEiFW0zpa\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jft29r\",\"data-styles-preset\":\"ofUXyTNWr\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PSFCtCt8i\"},motionChild:true,nodeId:\"VSMTK2Tz5\",openInNewTab:false,scopeId:\"OsaGYrHeE\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18tmnbn\",\"data-styles-preset\":\"UlNhbdPWs\",children:\"More Blogs \u203A\"})})})}),className:\"framer-1ldsbnd\",\"data-framer-name\":\"Next\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VSMTK2Tz5\",verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PapXR.framer-43uw05, .framer-PapXR .framer-43uw05 { display: block; }\",\".framer-PapXR.framer-19k0eym { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 70px 40px 70px 40px; position: relative; width: 1440px; }\",\".framer-PapXR .framer-ovbeab-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-PapXR .framer-8m968c { display: grid; flex: none; gap: 30px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-PapXR .framer-1257w3-container { align-self: start; flex: none; height: 576px; justify-self: start; position: relative; width: 100%; }\",\".framer-PapXR .framer-5adgwm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PapXR .framer-1ldsbnd { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PapXR.framer-19k0eym, .framer-PapXR .framer-5adgwm { gap: 0px; } .framer-PapXR.framer-19k0eym > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-PapXR.framer-19k0eym > :first-child { margin-top: 0px; } .framer-PapXR.framer-19k0eym > :last-child { margin-bottom: 0px; } .framer-PapXR .framer-5adgwm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PapXR .framer-5adgwm > :first-child { margin-left: 0px; } .framer-PapXR .framer-5adgwm > :last-child { margin-right: 0px; } }\",\".framer-PapXR.framer-v-44ins1.framer-19k0eym { padding: 70px 40px 50px 40px; width: 1200px; }\",\".framer-PapXR.framer-v-44ins1 .framer-1257w3-container { width: 351px; }\",\".framer-PapXR.framer-v-116iqdh.framer-19k0eym { padding: 70px 40px 40px 40px; width: 810px; }\",\".framer-PapXR.framer-v-116iqdh .framer-8m968c, .framer-PapXR.framer-v-qvu31y .framer-8m968c, .framer-PapXR.framer-v-fudffk .framer-8m968c, .framer-PapXR.framer-v-jxv4op .framer-8m968c { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; }\",\".framer-PapXR.framer-v-116iqdh .framer-1257w3-container { align-self: unset; height: 237px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PapXR.framer-v-116iqdh .framer-8m968c { gap: 0px; } .framer-PapXR.framer-v-116iqdh .framer-8m968c > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-PapXR.framer-v-116iqdh .framer-8m968c > :first-child { margin-top: 0px; } .framer-PapXR.framer-v-116iqdh .framer-8m968c > :last-child { margin-bottom: 0px; } }\",\".framer-PapXR.framer-v-qvu31y.framer-19k0eym, .framer-PapXR.framer-v-jxv4op.framer-19k0eym { gap: 30px; padding: 40px 20px 30px 20px; width: 390px; }\",\".framer-PapXR.framer-v-qvu31y .framer-1257w3-container, .framer-PapXR.framer-v-fudffk .framer-1257w3-container, .framer-PapXR.framer-v-jxv4op .framer-1257w3-container { align-self: unset; height: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PapXR.framer-v-qvu31y.framer-19k0eym, .framer-PapXR.framer-v-qvu31y .framer-8m968c { gap: 0px; } .framer-PapXR.framer-v-qvu31y.framer-19k0eym > *, .framer-PapXR.framer-v-qvu31y .framer-8m968c > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-PapXR.framer-v-qvu31y.framer-19k0eym > :first-child, .framer-PapXR.framer-v-qvu31y .framer-8m968c > :first-child { margin-top: 0px; } .framer-PapXR.framer-v-qvu31y.framer-19k0eym > :last-child, .framer-PapXR.framer-v-qvu31y .framer-8m968c > :last-child { margin-bottom: 0px; } }\",\".framer-PapXR.framer-v-fudffk.framer-19k0eym { gap: 30px; padding: 40px 20px 30px 20px; width: 428px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PapXR.framer-v-fudffk.framer-19k0eym, .framer-PapXR.framer-v-fudffk .framer-8m968c { gap: 0px; } .framer-PapXR.framer-v-fudffk.framer-19k0eym > *, .framer-PapXR.framer-v-fudffk .framer-8m968c > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-PapXR.framer-v-fudffk.framer-19k0eym > :first-child, .framer-PapXR.framer-v-fudffk .framer-8m968c > :first-child { margin-top: 0px; } .framer-PapXR.framer-v-fudffk.framer-19k0eym > :last-child, .framer-PapXR.framer-v-fudffk .framer-8m968c > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PapXR.framer-v-jxv4op.framer-19k0eym, .framer-PapXR.framer-v-jxv4op .framer-8m968c { gap: 0px; } .framer-PapXR.framer-v-jxv4op.framer-19k0eym > *, .framer-PapXR.framer-v-jxv4op .framer-8m968c > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-PapXR.framer-v-jxv4op.framer-19k0eym > :first-child, .framer-PapXR.framer-v-jxv4op .framer-8m968c > :first-child { margin-top: 0px; } .framer-PapXR.framer-v-jxv4op.framer-19k0eym > :last-child, .framer-PapXR.framer-v-jxv4op .framer-8m968c > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 852\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"BSg4U_tDl\":{\"layout\":[\"fixed\",\"auto\"]},\"cT23aXbKX\":{\"layout\":[\"fixed\",\"auto\"]},\"TFWXgjMEb\":{\"layout\":[\"fixed\",\"auto\"]},\"dBhuXMuv6\":{\"layout\":[\"fixed\",\"auto\"]},\"eMcQnmnVr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOsaGYrHeE=withCSS(Component,css,\"framer-PapXR\");export default FramerOsaGYrHeE;FramerOsaGYrHeE.displayName=\"Blog-1440\";FramerOsaGYrHeE.defaultProps={height:852,width:1440};addPropertyControls(FramerOsaGYrHeE,{variant:{options:[\"jlZJz2oPS\",\"BSg4U_tDl\",\"cT23aXbKX\",\"TFWXgjMEb\",\"dBhuXMuv6\",\"eMcQnmnVr\"],optionTitles:[\"desktop-1440\",\"desktop-1200\",\"tablet-810\",\"phone-390\",\"phone-428\",\"phone-360\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerOsaGYrHeE,[{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\"}]},...PreHeaderFonts,...BlogCardFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOsaGYrHeE\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BSg4U_tDl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cT23aXbKX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TFWXgjMEb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dBhuXMuv6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eMcQnmnVr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"852\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OsaGYrHeE.map", "// Generated by Framer (f7ce5cf)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import BannerText from\"https://framerusercontent.com/modules/EjCx14lF2oG0zGiEwtj9/2PEBHWOfpIi181YOJGRk/gjk27KW8p.js\";const BannerTextFonts=getFonts(BannerText);const cycleOrder=[\"GRqUKp4_R\",\"BswvWaUj1\",\"fyuFmTnuE\",\"KxCXnJ6V5\",\"uwtUxkSr_\"];const serializationHash=\"framer-oIKrS\";const variantClassNames={BswvWaUj1:\"framer-v-4xlvrl\",fyuFmTnuE:\"framer-v-1hsmbfe\",GRqUKp4_R:\"framer-v-1feggnm\",KxCXnJ6V5:\"framer-v-76vamo\",uwtUxkSr_:\"framer-v-1ru3vsu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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={\"phone-360\":\"uwtUxkSr_\",\"phone-390\":\"KxCXnJ6V5\",\"phone-428\":\"fyuFmTnuE\",desktop:\"GRqUKp4_R\",tablet:\"BswvWaUj1\"};const getProps=({height,id,image,subText,title,width,...props})=>{return{...props,F5hdNiCbD:subText??props.F5hdNiCbD??\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. \",QMrbOCEOE:image??props.QMrbOCEOE??{alt:\"Confident businesswoman giving a professional presentation to a group of attentive individuals seated on sofas in a modern office setting.\",pixelHeight:1414,pixelWidth:2121,src:\"https://framerusercontent.com/images/OXyuP0fsg8u8YtnsmfowziRuqAc.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/OXyuP0fsg8u8YtnsmfowziRuqAc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OXyuP0fsg8u8YtnsmfowziRuqAc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OXyuP0fsg8u8YtnsmfowziRuqAc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OXyuP0fsg8u8YtnsmfowziRuqAc.jpg 2121w\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"GRqUKp4_R\",ywG2B82QZ:title??props.ywG2B82QZ??\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod\"};};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,QMrbOCEOE,ywG2B82QZ,F5hdNiCbD,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"GRqUKp4_R\",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__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1414,pixelWidth:2121,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(QMrbOCEOE)},className:cx(scopingClassNames,\"framer-1feggnm\",className,classNames),\"data-framer-name\":\"desktop\",layoutDependency:layoutDependency,layoutId:\"GRqUKp4_R\",ref:refBinding,style:{...style},...addPropertyOverrides({BswvWaUj1:{\"data-framer-name\":\"tablet\"},fyuFmTnuE:{\"data-framer-name\":\"phone-428\"},KxCXnJ6V5:{\"data-framer-name\":\"phone-390\"},uwtUxkSr_:{\"data-framer-name\":\"phone-360\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:126,width:\"1055px\",y:(componentViewport?.y||0)+((componentViewport?.height||714)*.5000000000000002-63),...addPropertyOverrides({BswvWaUj1:{width:undefined,y:(componentViewport?.y||0)+((componentViewport?.height||521)*.5000000000000002-63)},fyuFmTnuE:{width:undefined,y:(componentViewport?.y||0)+((componentViewport?.height||436)*.5000000000000002-63)},KxCXnJ6V5:{width:undefined,y:(componentViewport?.y||0)+((componentViewport?.height||436)*.5000000000000002-63)},uwtUxkSr_:{width:undefined,y:(componentViewport?.y||0)+((componentViewport?.height||436)*.5000000000000002-63)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-in0u7-container\",layoutDependency:layoutDependency,layoutId:\"ZEZ3HvQJu-container\",nodeId:\"ZEZ3HvQJu\",rendersWithMotion:true,scopeId:\"Vt96hDzhl\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(BannerText,{height:\"100%\",id:\"ZEZ3HvQJu\",layoutId:\"ZEZ3HvQJu\",LhD5e1ELj:F5hdNiCbD,style:{width:\"100%\"},variant:\"FNpgklO3y\",width:\"100%\",Z6bv5R99b:ywG2B82QZ,...addPropertyOverrides({BswvWaUj1:{variant:\"CcLAwiFnU\"},fyuFmTnuE:{variant:\"fvGq3iWlu\"},KxCXnJ6V5:{variant:\"q2yGUsKoE\"},uwtUxkSr_:{variant:\"ElIrWlJ72\"}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oIKrS.framer-1a9mgdc, .framer-oIKrS .framer-1a9mgdc { display: block; }\",\".framer-oIKrS.framer-1feggnm { height: 714px; overflow: visible; position: relative; width: 1440px; }\",\".framer-oIKrS .framer-in0u7-container { flex: none; height: auto; left: 50%; position: absolute; top: 50%; width: 1055px; }\",\".framer-oIKrS.framer-v-4xlvrl.framer-1feggnm { height: 521px; width: 810px; }\",\".framer-oIKrS.framer-v-4xlvrl .framer-in0u7-container, .framer-oIKrS.framer-v-1hsmbfe .framer-in0u7-container, .framer-oIKrS.framer-v-76vamo .framer-in0u7-container, .framer-oIKrS.framer-v-1ru3vsu .framer-in0u7-container { width: auto; }\",\".framer-oIKrS.framer-v-1hsmbfe.framer-1feggnm { height: 436px; width: 428px; }\",\".framer-oIKrS.framer-v-76vamo.framer-1feggnm { height: 436px; width: 390px; }\",\".framer-oIKrS.framer-v-1ru3vsu.framer-1feggnm { height: 436px; width: 360px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 714\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"BswvWaUj1\":{\"layout\":[\"fixed\",\"fixed\"]},\"fyuFmTnuE\":{\"layout\":[\"fixed\",\"fixed\"]},\"KxCXnJ6V5\":{\"layout\":[\"fixed\",\"fixed\"]},\"uwtUxkSr_\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"QMrbOCEOE\":\"image\",\"ywG2B82QZ\":\"title\",\"F5hdNiCbD\":\"subText\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerVt96hDzhl=withCSS(Component,css,\"framer-oIKrS\");export default FramerVt96hDzhl;FramerVt96hDzhl.displayName=\"banner-home\";FramerVt96hDzhl.defaultProps={height:714,width:1440};addPropertyControls(FramerVt96hDzhl,{variant:{options:[\"GRqUKp4_R\",\"BswvWaUj1\",\"fyuFmTnuE\",\"KxCXnJ6V5\",\"uwtUxkSr_\"],optionTitles:[\"desktop\",\"tablet\",\"phone-428\",\"phone-390\",\"phone-360\"],title:\"Variant\",type:ControlType.Enum},QMrbOCEOE:{__defaultAssetReference:\"data:framer/asset-reference,OXyuP0fsg8u8YtnsmfowziRuqAc.jpg?originalFilename=Redhaired+woman+for+Homepage_iStock-1314036366.jpg&preferredSize=auto\",__vekterDefault:{alt:\"Confident businesswoman giving a professional presentation to a group of attentive individuals seated on sofas in a modern office setting.\",assetReference:\"data:framer/asset-reference,OXyuP0fsg8u8YtnsmfowziRuqAc.jpg?originalFilename=Redhaired+woman+for+Homepage_iStock-1314036366.jpg&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage},ywG2B82QZ:{defaultValue:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod\",displayTextArea:false,title:\"Title\",type:ControlType.String},F5hdNiCbD:{defaultValue:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. \",displayTextArea:false,title:\"Sub Text\",type:ControlType.String}});addFonts(FramerVt96hDzhl,[{explicitInter:true,fonts:[]},...BannerTextFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVt96hDzhl\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BswvWaUj1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fyuFmTnuE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KxCXnJ6V5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uwtUxkSr_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"QMrbOCEOE\\\":\\\"image\\\",\\\"ywG2B82QZ\\\":\\\"title\\\",\\\"F5hdNiCbD\\\":\\\"subText\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"714\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Vt96hDzhl.map", "// Generated by Framer (259a342)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,PropertyOverrides,ResolveLinks,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import Services2Phone390 from\"#framer/local/canvasComponent/Ca7RHixYm/Ca7RHixYm.js\";import TopNav from\"#framer/local/canvasComponent/CUeruyNQ_/CUeruyNQ_.js\";import MeetJgsHome from\"#framer/local/canvasComponent/HUTRH8Z_1/HUTRH8Z_1.js\";import Services1Phone390 from\"#framer/local/canvasComponent/IuuSrraef/IuuSrraef.js\";import PreHeader from\"#framer/local/canvasComponent/KHVixQDlP/KHVixQDlP.js\";import Footer from\"#framer/local/canvasComponent/ldOqW2mP0/ldOqW2mP0.js\";import ServicesCard from\"#framer/local/canvasComponent/LF2m5WD71/LF2m5WD71.js\";import Tablet from\"#framer/local/canvasComponent/mqgYvC1DN/mqgYvC1DN.js\";import Phone390Strategy from\"#framer/local/canvasComponent/OCpvDLuMU/OCpvDLuMU.js\";import Blog1440 from\"#framer/local/canvasComponent/OsaGYrHeE/OsaGYrHeE.js\";import BannerHome from\"#framer/local/canvasComponent/Vt96hDzhl/Vt96hDzhl.js\";import metadataProvider from\"#framer/local/webPageMetadata/XZZPCL_vI/XZZPCL_vI.js\";const TopNavFonts=getFonts(TopNav);const BannerHomeFonts=getFonts(BannerHome);const ServicesCardFonts=getFonts(ServicesCard);const TabletFonts=getFonts(Tablet);const Phone390StrategyFonts=getFonts(Phone390Strategy);const Services1Phone390Fonts=getFonts(Services1Phone390);const Services2Phone390Fonts=getFonts(Services2Phone390);const MeetJgsHomeFonts=getFonts(MeetJgsHome);const PreHeaderFonts=getFonts(PreHeader);const TickerFonts=getFonts(Ticker);const Blog1440Fonts=getFonts(Blog1440);const FooterFonts=getFonts(Footer);const breakpoints={d2x_0gPX3:\"(min-width: 1200px) and (max-width: 1439px)\",KaccGHxhE:\"(max-width: 389px)\",L8KAwymnf:\"(min-width: 390px) and (max-width: 427px)\",MLf3TPNic:\"(min-width: 1440px)\",NTWgQMLbj:\"(min-width: 810px) and (max-width: 1199px)\",W90MJYqLi:\"(min-width: 428px) and (max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Wd1xP\";const variantClassNames={d2x_0gPX3:\"framer-v-s5fl2s\",KaccGHxhE:\"framer-v-1met3p3\",L8KAwymnf:\"framer-v-esuznr\",MLf3TPNic:\"framer-v-in0a2s\",NTWgQMLbj:\"framer-v-1wjtz28\",W90MJYqLi:\"framer-v-19j74e1\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"desktop-1200\":\"d2x_0gPX3\",\"iphone 12 pro max\":\"W90MJYqLi\",Desktop:\"MLf3TPNic\",Phone:\"L8KAwymnf\",samsung:\"KaccGHxhE\",Tablet:\"NTWgQMLbj\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"MLf3TPNic\"};};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);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"NTWgQMLbj\",\"L8KAwymnf\",\"KaccGHxhE\",\"W90MJYqLi\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"NTWgQMLbj\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"W90MJYqLi\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"KaccGHxhE\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"L8KAwymnf\")return true;return false;};const elementId=useRouteElementId(\"qHPryT51S\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"YSFkbEEWr\");const ref2=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"MLf3TPNic\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-in0a2s\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:183,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dptsm5-container\",nodeId:\"pg_YkH0ui\",scopeId:\"XZZPCL_vI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KaccGHxhE:{variant:\"kHxP_gB_5\"},L8KAwymnf:{variant:\"BSh2oxaKw\"},NTWgQMLbj:{variant:\"OMRx8hbE7\"},W90MJYqLi:{variant:\"MBN9RbHdD\"}},children:/*#__PURE__*/_jsx(TopNav,{a1WENiouC:\"Transforming Traditional Practices with AI\",bqOnKsfTC:\"Organizational Culture & Change Management\",CpdiyFMFP:\"AI Translations & Cultural Adaptations\",GBnB3SpNN:\"Overview\",gFwMsLawC:\"Contact Us\",HAaMcH8E9:\"Building Customer Growth\",height:\"100%\",id:\"pg_YkH0ui\",j97k95F81:\"Strategic Partnerships\",kV_V1Bhpe:\"Culturally Diverse Consumers\",layoutId:\"pg_YkH0ui\",npxxwQB05:\"AI Digitalization\",nqc_PCwPa:\"Blog\",pRuSxXywI:\"Multicultural Cognizance & Customer Experience\",PSV4g1oUi:\"International Immersion & Learning\",Qs8nZrIYU:\"AI & Change Management\",S4ISHWN6F:\"About JGS\",style:{height:\"100%\",width:\"100%\"},TH4RzmyWm:\"Product Portfolio Growth\",variant:\"ePQYJZG1D\",width:\"100%\",Y56jOq65r:\"Cross Cultural Training\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ds1i6f\",\"data-framer-name\":\"content wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d2x_0gPX3:{width:\"1200px\"},KaccGHxhE:{height:436,width:\"360px\",y:(componentViewport?.y||0)+0+0+183+0},L8KAwymnf:{height:436,width:\"390px\",y:(componentViewport?.y||0)+0+0+183+0},NTWgQMLbj:{height:521,width:\"810px\",y:(componentViewport?.y||0)+0+0+183+0},W90MJYqLi:{height:436,width:\"428px\",y:(componentViewport?.y||0)+0+0+183+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:714,width:\"1440px\",y:(componentViewport?.y||0)+0+0+136+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-khnxbf-container\",nodeId:\"MzaktBkn2\",scopeId:\"XZZPCL_vI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KaccGHxhE:{variant:\"uwtUxkSr_\"},L8KAwymnf:{variant:\"KxCXnJ6V5\"},NTWgQMLbj:{variant:\"BswvWaUj1\"},W90MJYqLi:{variant:\"fyuFmTnuE\"}},children:/*#__PURE__*/_jsx(BannerHome,{F5hdNiCbD:\"JGS advises companies, entrepreneurs, and business professionals on navigating dynamic landscapes with strategies for sustained business success.\",height:\"100%\",id:\"MzaktBkn2\",layoutId:\"MzaktBkn2\",style:{height:\"100%\",width:\"100%\"},variant:\"GRqUKp4_R\",width:\"100%\",ywG2B82QZ:\"Guiding Companies to Transition in Today\u2019s Evolving Business Environments\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zkt6ef\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yMCHDv5ic\"},implicitPathVariables:undefined},{href:{webPageId:\"yMCHDv5ic\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d2x_0gPX3:{width:\"350px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:258,width:\"410px\",y:(componentViewport?.y||0)+0+0+136+714+-37,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xllo5f-container hidden-1wjtz28 hidden-esuznr hidden-1met3p3 hidden-19j74e1\",nodeId:\"sf0XLSGkR\",scopeId:\"XZZPCL_vI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d2x_0gPX3:{DsKIjpOC3:resolvedLinks[1],variant:\"DLEVD4pyT\"}},children:/*#__PURE__*/_jsx(ServicesCard,{DsKIjpOC3:resolvedLinks[0],e6gSI0gHU:\"AI & Change Management\",height:\"100%\",id:\"sf0XLSGkR\",IhVKz3fJQ:\"Unlock the potential of AI to transform your organization with Change Management.\",layoutId:\"sf0XLSGkR\",style:{height:\"100%\",width:\"100%\"},variant:\"I430:774;40:107\",width:\"100%\",WXivF6qGL:\"0px 4px 24px 4px rgba(0, 0, 0, 0.17)\"})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yMCHDv5ic\"},implicitPathVariables:undefined},{href:{webPageId:\"yMCHDv5ic\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NTWgQMLbj:{height:115,width:\"243px\",y:(componentViewport?.y||0)+0+0+183+521+-6.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q3fu0o-container hidden-in0a2s hidden-esuznr hidden-1met3p3 hidden-19j74e1 hidden-s5fl2s\",nodeId:\"qJBn22tfY\",scopeId:\"XZZPCL_vI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NTWgQMLbj:{eIEJAhPfl:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Tablet,{eIEJAhPfl:resolvedLinks1[0],height:\"100%\",HHUKHVhNa:\"AI & Change Management\",i90mMSvAY:\"Unlock the potential of AI to transform your organization with Change Management. \",id:\"qJBn22tfY\",layoutId:\"qJBn22tfY\",style:{width:\"100%\"},width:\"100%\"})})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{W90MJYqLi:{height:237,y:(componentViewport?.y||0)+0+0+183+436+30+464}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-flulyv-container hidden-in0a2s hidden-1wjtz28 hidden-esuznr hidden-1met3p3 hidden-s5fl2s\",nodeId:\"XXiUDZFA_\",scopeId:\"XZZPCL_vI\",children:/*#__PURE__*/_jsx(Phone390Strategy,{AGZNHgngG:\"Building Customer Growth\",AubV4OO2f:\"Discover exponential customer growth with a strategic approach.\",bpxKUKADi:\"Multicultural Cognizance & Customer Experience\",height:\"100%\",id:\"XXiUDZFA_\",JtWhCr6La:\"Overview\",layoutId:\"XXiUDZFA_\",Q1Y8_X9LP:\"Product Portfolio Growth\",Rf7TmK231:\"Optimized Solutions with AI Data\",variant:\"WYIRcwt6_\",width:\"100%\",zcuhIoovA:\"Strategy & Customer Growth\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YoQP2QM2c\"},implicitPathVariables:undefined},{href:{webPageId:\"YoQP2QM2c\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NTWgQMLbj:{height:115,width:\"263px\",y:(componentViewport?.y||0)+0+0+183+521+-6.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14tment-container hidden-in0a2s hidden-esuznr hidden-1met3p3 hidden-19j74e1 hidden-s5fl2s\",nodeId:\"Tc6l5Di3t\",scopeId:\"XZZPCL_vI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NTWgQMLbj:{eIEJAhPfl:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Tablet,{eIEJAhPfl:resolvedLinks2[0],height:\"100%\",HHUKHVhNa:\"International Immersion Learning\",i90mMSvAY:\"Explore diverse cultures through immersive fieldwork & deepen cultural competence.\",id:\"Tc6l5Di3t\",layoutId:\"Tc6l5Di3t\",style:{width:\"100%\"},width:\"100%\"})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tI6nXCTKc\"},implicitPathVariables:undefined},{href:{webPageId:\"tI6nXCTKc\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NTWgQMLbj:{height:115,width:\"243px\",y:(componentViewport?.y||0)+0+0+183+521+-6.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u1n6mn-container hidden-in0a2s hidden-esuznr hidden-1met3p3 hidden-19j74e1 hidden-s5fl2s\",nodeId:\"PadgM3mi1\",scopeId:\"XZZPCL_vI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NTWgQMLbj:{eIEJAhPfl:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Tablet,{eIEJAhPfl:resolvedLinks3[0],height:\"100%\",HHUKHVhNa:\"Strategy & Customer Growth\",i90mMSvAY:\"Discover exponential customer growth with a strategic approach.\",id:\"PadgM3mi1\",layoutId:\"PadgM3mi1\",style:{width:\"100%\"},width:\"100%\"})})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{W90MJYqLi:{height:187,width:\"390px\",y:(componentViewport?.y||0)+0+0+183+436+30+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lewhiy-container hidden-in0a2s hidden-1wjtz28 hidden-esuznr hidden-1met3p3 hidden-s5fl2s\",nodeId:\"quxbqTUN8\",scopeId:\"XZZPCL_vI\",children:/*#__PURE__*/_jsx(Services1Phone390,{height:\"100%\",id:\"quxbqTUN8\",jBmlZ0tQ4:\"AI Digitalization\",jLDpZf3DH:\"Change Management Employee Training on AI\",L3tSBbZ99:\"AI & Change Management\",layoutId:\"quxbqTUN8\",MxASgu2WD:\"Unlock the potential of AI to transform your organization with Change Management.\",style:{width:\"100%\"},variant:\"LmSIqe29I\",width:\"100%\",WRhcjpFGt:\"Overview\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KaccGHxhE:{height:187,y:(componentViewport?.y||0)+0+0+183+436+30+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6z87h1-container hidden-in0a2s hidden-1wjtz28 hidden-esuznr hidden-19j74e1 hidden-s5fl2s\",nodeId:\"OePubxcyr\",scopeId:\"XZZPCL_vI\",children:/*#__PURE__*/_jsx(Services1Phone390,{height:\"100%\",id:\"OePubxcyr\",jBmlZ0tQ4:\"AI Digitalization\",jLDpZf3DH:\"Change Management Employee Training on AI\",L3tSBbZ99:\"AI & Change Management\",layoutId:\"OePubxcyr\",MxASgu2WD:\"Unlock the potential of AI to transform your organization with Change Management.\",variant:\"Nf9bkgSgO\",width:\"100%\",WRhcjpFGt:\"Overview\"})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L8KAwymnf:{height:187,y:(componentViewport?.y||0)+0+0+183+436+30+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12zoclj-container hidden-in0a2s hidden-1wjtz28 hidden-1met3p3 hidden-19j74e1 hidden-s5fl2s\",nodeId:\"fTdV4EyGn\",scopeId:\"XZZPCL_vI\",children:/*#__PURE__*/_jsx(Services1Phone390,{height:\"100%\",id:\"fTdV4EyGn\",jBmlZ0tQ4:\"AI Digitalization\",jLDpZf3DH:\"Change Management Employee Training on AI\",L3tSBbZ99:\"AI & Change Management\",layoutId:\"fTdV4EyGn\",MxASgu2WD:\"Unlock the potential of AI to transform your organization with Change Management.\",variant:\"e41SH_GB2\",width:\"100%\",WRhcjpFGt:\"Overview\"})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L8KAwymnf:{height:237,y:(componentViewport?.y||0)+0+0+183+436+30+207}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uszb5u-container hidden-in0a2s hidden-1wjtz28 hidden-1met3p3 hidden-19j74e1 hidden-s5fl2s\",nodeId:\"dUrV1ZVSH\",scopeId:\"XZZPCL_vI\",children:/*#__PURE__*/_jsx(Services2Phone390,{CWV7ggmof:\"International Immersion Learning\",Fbvag8xLi:\"Explore diverse cultures through immersive fieldwork & deepen cultural competence.\",GWAj3_dir:\"Cultural Engagement\",height:\"100%\",id:\"dUrV1ZVSH\",iWVSsfXQA:\"Personal Growth & Mentorship\",layoutId:\"dUrV1ZVSH\",LiBMNFaGu:\"Global Entrepreneurial Mentorship\",Q1BrPynak:\"Professional & Educational Development\",variant:\"GJCPP5Gxm\",width:\"100%\",YJb10goDA:\"Overview\"})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L8KAwymnf:{height:237,y:(componentViewport?.y||0)+0+0+183+436+30+464}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1psz8sr-container hidden-in0a2s hidden-1wjtz28 hidden-1met3p3 hidden-19j74e1 hidden-s5fl2s\",nodeId:\"AQkJaGfl1\",scopeId:\"XZZPCL_vI\",children:/*#__PURE__*/_jsx(Phone390Strategy,{AGZNHgngG:\"Building Customer Growth\",AubV4OO2f:\"Discover exponential customer growth with a strategic approach.\",bpxKUKADi:\"Multicultural Cognizance & Customer Experience\",height:\"100%\",id:\"AQkJaGfl1\",JtWhCr6La:\"Overview\",layoutId:\"AQkJaGfl1\",Q1Y8_X9LP:\"Product Portfolio Growth\",Rf7TmK231:\"Optimized Solutions with AI Data\",variant:\"rKSJRGFh2\",width:\"100%\",zcuhIoovA:\"Strategy & Customer Growth\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{W90MJYqLi:{height:237,y:(componentViewport?.y||0)+0+0+183+436+30+207}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8phj45-container hidden-in0a2s hidden-1wjtz28 hidden-esuznr hidden-1met3p3 hidden-s5fl2s\",nodeId:\"c6tQg_3DE\",scopeId:\"XZZPCL_vI\",children:/*#__PURE__*/_jsx(Services2Phone390,{CWV7ggmof:\"International Immersion Learning\",Fbvag8xLi:\"Explore diverse cultures through immersive fieldwork & deepen cultural competence.\",GWAj3_dir:\"Cultural Engagement\",height:\"100%\",id:\"c6tQg_3DE\",iWVSsfXQA:\"Personal Growth & Mentorship\",layoutId:\"c6tQg_3DE\",LiBMNFaGu:\"Global Entrepreneurial Mentorship\",Q1BrPynak:\"Professional & Educational Development\",variant:\"NyYaP4ZXJ\",width:\"100%\",YJb10goDA:\"Overview\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YoQP2QM2c\"},implicitPathVariables:undefined},{href:{webPageId:\"YoQP2QM2c\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d2x_0gPX3:{width:\"350px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:258,width:\"458px\",y:(componentViewport?.y||0)+0+0+136+714+-37,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r66ydl-container hidden-1wjtz28 hidden-esuznr hidden-1met3p3 hidden-19j74e1\",nodeId:\"gaHwj6OyQ\",scopeId:\"XZZPCL_vI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d2x_0gPX3:{DsKIjpOC3:resolvedLinks4[1],variant:\"DLEVD4pyT\"}},children:/*#__PURE__*/_jsx(ServicesCard,{DsKIjpOC3:resolvedLinks4[0],e6gSI0gHU:\"International Immersion, Learning\",height:\"100%\",id:\"gaHwj6OyQ\",IhVKz3fJQ:\"Explore diverse cultures through immersive fieldwork & deepen cultural competence.\",layoutId:\"gaHwj6OyQ\",style:{height:\"100%\",width:\"100%\"},variant:\"I430:774;40:107\",width:\"100%\",WXivF6qGL:\"0px 4px 24px 4px rgba(0, 0, 0, 0.17)\"})})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KaccGHxhE:{height:237,y:(componentViewport?.y||0)+0+0+183+436+30+207}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ja3icv-container hidden-in0a2s hidden-1wjtz28 hidden-esuznr hidden-19j74e1 hidden-s5fl2s\",nodeId:\"HXlEL2DyJ\",scopeId:\"XZZPCL_vI\",children:/*#__PURE__*/_jsx(Services2Phone390,{CWV7ggmof:\"International Immersion Learning\",Fbvag8xLi:\"Explore diverse cultures through immersive fieldwork & deepen cultural competence.\",GWAj3_dir:\"Cultural Engagement\",height:\"100%\",id:\"HXlEL2DyJ\",iWVSsfXQA:\"Personal Growth & Mentorship\",layoutId:\"HXlEL2DyJ\",LiBMNFaGu:\"Global Entrepreneurial Mentorship\",Q1BrPynak:\"Professional & Educational Development\",variant:\"GpFg0Zlxr\",width:\"100%\",YJb10goDA:\"Overview\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KaccGHxhE:{height:237,y:(componentViewport?.y||0)+0+0+183+436+30+464}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uy5zyy-container hidden-in0a2s hidden-1wjtz28 hidden-esuznr hidden-19j74e1 hidden-s5fl2s\",nodeId:\"iOVmxLMuj\",scopeId:\"XZZPCL_vI\",children:/*#__PURE__*/_jsx(Phone390Strategy,{AGZNHgngG:\"Building Customer Growth\",AubV4OO2f:\"Discover exponential customer growth with a strategic approach.\",bpxKUKADi:\"Multicultural Cognizance & Customer Experience\",height:\"100%\",id:\"iOVmxLMuj\",JtWhCr6La:\"Overview\",layoutId:\"iOVmxLMuj\",Q1Y8_X9LP:\"Product Portfolio Growth\",Rf7TmK231:\"Optimized Solutions with AI Data\",variant:\"xgXSG_DUj\",width:\"100%\",zcuhIoovA:\"Strategy & Customer Growth\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tI6nXCTKc\"},implicitPathVariables:undefined},{href:{webPageId:\"tI6nXCTKc\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d2x_0gPX3:{width:\"350px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:258,width:\"410px\",y:(componentViewport?.y||0)+0+0+136+714+-37,children:/*#__PURE__*/_jsx(Container,{className:\"framer-sq2cjr-container hidden-1wjtz28 hidden-esuznr hidden-1met3p3 hidden-19j74e1\",nodeId:\"NtT3_mHds\",scopeId:\"XZZPCL_vI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d2x_0gPX3:{DsKIjpOC3:resolvedLinks5[1],variant:\"DLEVD4pyT\"}},children:/*#__PURE__*/_jsx(ServicesCard,{DsKIjpOC3:resolvedLinks5[0],e6gSI0gHU:\"Strategy & Customer Growth\",height:\"100%\",id:\"NtT3_mHds\",IhVKz3fJQ:\"Discover exponential customer growth with a strategic approach.\",layoutId:\"NtT3_mHds\",style:{height:\"100%\",width:\"100%\"},variant:\"I430:774;40:107\",width:\"100%\",WXivF6qGL:\"0px 4px 24px 4px rgba(0, 0, 0, 0.17)\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d2x_0gPX3:{width:\"1200px\"},KaccGHxhE:{width:\"360px\",y:(componentViewport?.y||0)+0+0+183+1187},L8KAwymnf:{width:\"390px\",y:(componentViewport?.y||0)+0+0+183+1197},NTWgQMLbj:{width:\"810px\",y:(componentViewport?.y||0)+0+0+183+683},W90MJYqLi:{width:\"428px\",y:(componentViewport?.y||0)+0+0+183+1197}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:673,width:\"1440px\",y:(componentViewport?.y||0)+0+0+136+997,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hc9gt6-container\",nodeId:\"Y8jUMauxU\",scopeId:\"XZZPCL_vI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d2x_0gPX3:{variant:\"KLo9rFWJ0\"},KaccGHxhE:{variant:\"SMq1P3RyA\"},L8KAwymnf:{variant:\"k_4MZRxNS\"},NTWgQMLbj:{variant:\"GkVct44bl\"},W90MJYqLi:{variant:\"wOnK9GTF_\"}},children:/*#__PURE__*/_jsx(MeetJgsHome,{b6K62NUhZ:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:'\"Throughout my professional journey, I have had the privilege of guiding both domestic and global companies in developing customer growth strategies across various business domains such as change management, AI digitalization, and global go-to-market strategies for mainstream and niche markets \u2013 including multicultural segments. My experience spans diverse industries like media & entertainment, sustainability, renewable energy, decarbonization, and data analytics. I have collaborated with major consumer and B2B brands to drive revenue growth and provided strategic counsel to startup founders and stakeholders in realizing their entrepreneurial visions. I also continue to teach and advise our future university leaders on the intricacies of doing business abroad.'}),/*#__PURE__*/_jsx(\"p\",{children:'An integral aspect of my career satisfaction lies in fostering business expansion for organizations and entrepreneurs, alongside imparting knowledge and mentoring fellow professionals and graduates on effective innovative methodologies that yield tangible outcomes. In the backdrop of evolving technologies like artificial intelligence, embracing responsible and ethical AI applications represents an unprecedented opportunity for companies to thrive. It is imperative for businesses to adapt swiftly to this dynamic landscape to stay competitive and relevant\u2026\"'})]}),height:\"100%\",id:\"Y8jUMauxU\",layoutId:\"Y8jUMauxU\",style:{width:\"100%\"},variant:\"Apx86DUcJ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b2vzhg\",\"data-border\":true,\"data-framer-name\":\"Logo Tickers\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KaccGHxhE:{y:(componentViewport?.y||0)+0+0+183+1860+40+0},L8KAwymnf:{y:(componentViewport?.y||0)+0+0+183+1870+40+0},NTWgQMLbj:{y:(componentViewport?.y||0)+0+0+183+1356+40+0},W90MJYqLi:{y:(componentViewport?.y||0)+0+0+183+1870+40+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+0+136+1670+40+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hug7o-container\",nodeId:\"NGgq32lZ4\",scopeId:\"XZZPCL_vI\",children:/*#__PURE__*/_jsx(PreHeader,{height:\"100%\",id:\"NGgq32lZ4\",layoutId:\"NGgq32lZ4\",rVVwoX9LS:20,variant:\"hzUtOz97K\",vDfiEneJh:\"industry expertise\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-iamn3s-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"o2WvEYjqA\",scopeId:\"XZZPCL_vI\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"o2WvEYjqA\",layoutId:\"o2WvEYjqA\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rwb1lp\",\"data-border\":true,\"data-framer-name\":\"6ix-0ero-5ive\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2314,intrinsicWidth:2543,pixelHeight:4628,pixelWidth:5086,sizes:\"110px\",src:\"https://framerusercontent.com/images/85PLHcZxg8jbMv0FYdIPevdQGbA.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/85PLHcZxg8jbMv0FYdIPevdQGbA.png?scale-down-to=512 512w,https://framerusercontent.com/images/85PLHcZxg8jbMv0FYdIPevdQGbA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/85PLHcZxg8jbMv0FYdIPevdQGbA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/85PLHcZxg8jbMv0FYdIPevdQGbA.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/85PLHcZxg8jbMv0FYdIPevdQGbA.png 5086w\"},className:\"framer-1p9upa5\",\"data-framer-name\":\"BLACK LOGOS-01\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dx9a0e\",\"data-border\":true,\"data-framer-name\":\"adt\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-te80rf\",\"data-framer-name\":\"adt\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:90,intrinsicWidth:90,svg:'<svg width=\"90\" height=\"90\" viewBox=\"0 0 90 90\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M26.37 0L0 26.352V63.648L26.37 90H63.63L90 63.648V26.352L63.63 0H26.37Z\" fill=\"#0061AA\"/>\\n<path d=\"M46.1701 59.562H36.2881V30.42H46.1701C54.5221 30.42 60.8041 36.612 60.8041 44.964C60.8041 53.316 54.5221 59.562 46.1701 59.562ZM46.1701 36.774H42.6421V53.172H46.1701C51.0121 53.172 54.4501 49.86 54.4501 44.982C54.4501 40.104 50.9941 36.774 46.1701 36.774Z\" fill=\"white\"/>\\n<path d=\"M61.596 60.138V37.314H53.01V29.934H77.76V37.314H69.084V60.138H61.596Z\" fill=\"white\"/>\\n<path d=\"M77.1841 30.51V36.738H68.5261V59.562H62.1721V36.738H53.5861V30.51H77.1841ZM78.3181 29.376H52.4341V37.872H61.0201V60.696H69.6421V37.872H78.3001L78.3181 29.376Z\" fill=\"#0061AA\"/>\\n<path d=\"M35.2619 60.138L33.7499 57.15H21.5639L20.0159 60.138H11.8799L27.6659 29.25L43.3979 60.138H35.2619ZM30.0779 49.986L27.6659 45.252L25.2179 49.986H30.0779Z\" fill=\"white\"/>\\n<path d=\"M27.6661 30.4921L42.4801 59.5621H35.6041L34.0921 56.5741H21.2401L19.6921 59.5621H12.8161L27.6661 30.4921ZM24.3001 50.5621H31.0141L27.6841 44.0101L24.3001 50.5621ZM27.6661 28.0081L26.6581 29.9881L11.8081 59.0581L10.9441 60.7141H20.3401L20.6641 60.1021L21.8881 57.7261H33.3721L34.5601 60.0841L34.8841 60.7141H44.2801L43.4341 59.0581L28.6381 29.9881L27.6661 28.0081ZM26.1541 49.4101L27.6661 46.4941L29.1601 49.4101H26.1541Z\" fill=\"#0061AA\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dbfapb\",\"data-border\":true,\"data-framer-name\":\"altice\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:128.5,intrinsicWidth:114.5,pixelHeight:257,pixelWidth:229,src:\"https://framerusercontent.com/images/cNKR67SfvjmW3dpSJbAZx18.png\"},className:\"framer-1gubqh2\",\"data-framer-name\":\"Logo altice_black\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18cgn0f\",\"data-border\":true,\"data-framer-name\":\"american-express\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1023.5,intrinsicWidth:1026,pixelHeight:2047,pixelWidth:2052,sizes:\"100px\",src:\"https://framerusercontent.com/images/pzBXr9Ii1kqJWqIZcqRzsoM5Jk.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/pzBXr9Ii1kqJWqIZcqRzsoM5Jk.png?scale-down-to=512 512w,https://framerusercontent.com/images/pzBXr9Ii1kqJWqIZcqRzsoM5Jk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pzBXr9Ii1kqJWqIZcqRzsoM5Jk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pzBXr9Ii1kqJWqIZcqRzsoM5Jk.png 2052w\"},className:\"framer-jiyk90\",\"data-framer-name\":\"American Express_logo_(2018).svg\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bffrve\",\"data-border\":true,\"data-framer-name\":\"asr\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"The logo of ASR Group, a prominent cane sugar refining company, showcasing its corporate brand name adopted in 2013. The company boasts a production capacity of 6.5 million tons of sugar and offers a diverse range of consumer, industrial, food service, and specialty sweetener products.\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:200,pixelHeight:217,pixelWidth:300,src:\"https://framerusercontent.com/images/oapoE6Z1ZZrO3ItTbKW7De5T6yk.png\"},className:\"framer-3x81wn\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mua76u\",\"data-border\":true,\"data-framer-name\":\"aurum-rose-beauty\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:800,pixelWidth:800,sizes:\"122px\",src:\"https://framerusercontent.com/images/47GRVGF9DW5QB6S0vlWDLmKY4U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/47GRVGF9DW5QB6S0vlWDLmKY4U.png?scale-down-to=512 512w,https://framerusercontent.com/images/47GRVGF9DW5QB6S0vlWDLmKY4U.png 800w\"},className:\"framer-pnpk0w\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yusnpp\",\"data-border\":true,\"data-framer-name\":\"bioventus\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\\\"Logo of Bioventus: A leading global innovator in active healing and surgical orthobiologics, offering a diverse portfolio of clinically proven and cost-effective solutions for patients, physicians, and payers. The image showcases Bioventus' commitment to advanced healthcare solutions through a focus on innovation and efficacy in healing practices.\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:150,pixelHeight:100,pixelWidth:300,src:\"https://framerusercontent.com/images/ua0BUykUHQcJ8itAnSXbtNmdB8.png\"},className:\"framer-10nbcgi\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8g5u8s\",\"data-border\":true,\"data-framer-name\":\"cablevision\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:118.5,intrinsicWidth:1165.5,pixelHeight:237,pixelWidth:2331,sizes:\"256px\",src:\"https://framerusercontent.com/images/QtIQCwEAqEwCi7q7jEWbw0Q7YM.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/QtIQCwEAqEwCi7q7jEWbw0Q7YM.png?scale-down-to=512 512w,https://framerusercontent.com/images/QtIQCwEAqEwCi7q7jEWbw0Q7YM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QtIQCwEAqEwCi7q7jEWbw0Q7YM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/QtIQCwEAqEwCi7q7jEWbw0Q7YM.png 2331w\"},className:\"framer-db3kqz\",\"data-framer-name\":\"418-4189926 cablevision-logo-png-transparent-electric-blue-clipart\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-j1aup9\",\"data-border\":true,\"data-framer-name\":\"casablanca-records\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7zay4c\",\"data-framer-name\":\"casablanca-records\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:907,intrinsicWidth:2427,svg:'<svg width=\"2427\" height=\"907\" viewBox=\"0 0 2427 907\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2291.85 359.068C2202.74 301.43 1969.49 193.976 1917.08 183.47C1864.64 173.004 1565.88 83.8755 1466.27 86.5213C1366.69 89.1412 1337.85 128.44 1426.99 136.299C1516.08 144.159 1862.03 220.175 1945.91 251.614C2029.78 283.052 2257.79 374.8 2276.13 408.872C2294.47 442.931 2323.3 534.653 2244.69 576.597C2166.04 618.515 2192.26 621.161 2155.58 608.062C2118.87 594.936 2129.37 566.143 2137.24 550.385C2145.09 534.653 2173.94 495.367 2173.94 495.367C2173.94 495.367 2184.41 419.351 2121.51 463.903C2058.58 508.467 2000.95 560.903 1987.83 524.186C1974.7 487.469 2014.04 463.903 2027.14 463.903C2040.24 463.903 2108.38 474.421 2116.25 442.931C2124.1 411.479 2058.58 398.392 2021.92 416.732C1985.22 435.058 1961.64 466.497 1927.54 474.408C1893.5 482.255 1814.85 492.747 1841.06 424.591C1867.27 356.448 1885.63 385.28 1893.5 393.153C1901.34 400.999 1867.29 424.591 1880.37 440.324C1893.5 456.043 1927.54 469.168 1953.76 416.745C1979.97 364.321 1932.78 343.349 1909.19 343.349C1885.6 343.349 1835.81 330.262 1812.22 364.321C1788.64 398.405 1778.14 461.296 1762.44 442.943C1746.71 424.604 1799.12 332.882 1767.65 309.29C1736.21 285.711 1702.14 332.869 1681.17 319.77C1660.2 306.683 1689.02 283.065 1670.7 275.206C1652.34 267.346 1526.54 361.714 1516.05 351.208C1505.56 340.729 1544.88 248.994 1505.56 241.134C1466.23 233.274 1426.95 406.265 1366.67 364.321C1324.72 340.729 1377.13 301.417 1387.64 296.178C1398.1 290.925 1463.6 290.925 1455.76 259.473C1447.88 228.021 1405.95 217.555 1385.01 228.022C1364.03 238.527 1337.81 254.246 1324.72 288.305C1311.62 322.39 1324.72 372.168 1295.89 369.561C1267.06 366.915 1248.69 335.476 1272.29 301.417C1295.89 267.333 1403.34 128.427 1340.43 86.5084C1277.55 44.5641 1219.9 149.399 1212.04 272.586C1180.56 238.527 1136.04 191.33 1109.81 225.415C1122.93 73.3959 1065.25 76.0158 1065.25 76.0158C1065.25 76.0158 1015.47 83.8755 1007.6 128.44C999.738 173.004 968.3 267.346 1002.35 361.714C989.233 377.433 955.174 416.745 963.034 353.854C970.894 290.925 981.373 243.767 942.062 243.767C902.751 243.767 900.144 353.854 881.778 377.446C863.439 401.025 797.916 429.87 818.888 353.867C839.86 277.864 889.638 332.895 889.638 275.231C889.638 217.581 821.495 256.892 805.776 283.078C761.211 348.614 779.577 374.813 758.605 374.813C737.632 374.813 740.278 390.559 724.546 366.954C708.827 343.375 703.574 288.331 677.388 290.951C651.163 293.584 603.979 445.602 577.767 448.209C551.568 450.829 577.767 332.895 530.596 343.375C483.425 353.88 509.65 469.207 486.032 498.026C462.44 526.832 412.662 568.776 428.381 487.508C444.101 406.291 501.777 458.676 488.665 395.785C475.552 332.882 404.789 385.306 399.537 401.025C394.284 416.757 357.618 448.196 378.564 534.666C341.899 574.003 326.167 613.314 263.25 610.681C200.36 608.075 142.683 597.582 134.824 532.059C126.977 466.523 158.442 422.01 179.388 403.645C179.388 403.645 216.092 560.916 307.827 474.434C399.55 387.926 318.294 335.502 318.294 335.502C318.294 335.502 679.995 170.41 900.144 152.032C934.202 152.032 989.233 154.677 986.626 117.973C984.019 81.2816 905.37 91.7611 905.37 91.7611C905.37 91.7611 538.456 154.69 234.431 319.783C216.092 325.022 126.977 340.755 106.031 395.785C85.0587 450.829 43.1015 676.231 239.684 665.764C370.731 655.246 368.111 623.82 407.422 581.889C407.422 581.889 451.986 608.088 486.045 579.23C520.129 550.398 525.382 521.605 525.382 521.605C525.382 521.605 554.188 571.383 593.525 529.452C632.837 487.508 669.502 395.785 669.502 395.785C669.502 395.785 714.066 419.364 703.587 437.73C693.12 456.069 656.416 437.73 656.416 469.181C656.416 500.62 679.995 516.352 727.166 490.153C774.35 463.916 766.477 429.857 766.477 429.857C766.477 429.857 795.322 471.788 847.733 461.296C900.157 450.803 923.749 408.872 923.749 408.872C923.749 408.872 931.608 466.51 989.246 435.071C1021.62 417.432 1028.95 406.576 1029.36 400.26C1036.66 413.372 1056.26 439.156 1094.09 427.211C1143.91 411.492 1175.35 366.928 1191.08 319.757C1212.05 374.787 1227.77 408.872 1248.72 419.351C1269.69 429.857 1316.86 408.872 1316.86 408.872C1316.86 408.872 1331.73 437.717 1364.06 429.844C1396.38 421.984 1442.68 398.392 1442.68 398.392C1442.68 398.392 1429.58 440.311 1468.88 435.058C1508.19 429.844 1592.07 372.167 1592.07 372.167C1592.07 372.167 1555.39 466.497 1594.7 461.283C1634.01 456.043 1707.38 366.915 1707.38 366.915C1707.38 366.915 1670.73 474.408 1725.75 487.469C1780.79 500.594 1796.5 495.341 1796.5 495.341C1796.5 495.341 1801.76 524.173 1835.81 526.78C1869.91 529.413 1927.53 532.02 1927.53 532.02C1927.53 532.02 1930.16 581.85 1972.09 587.063C2014.04 592.303 2050.72 579.191 2050.72 579.191C2050.72 579.191 2048.11 631.628 2097.91 644.753C2147.69 657.852 2265.67 691.924 2302.32 602.809C2339.02 513.732 2380.97 416.745 2291.85 359.068ZM1298.55 125.82C1322.13 144.159 1264.45 225.415 1264.45 225.415C1264.45 225.415 1274.94 107.468 1298.55 125.82ZM252.81 387.9C252.81 387.9 279.009 364.321 292.121 395.759C305.233 427.198 286.868 437.704 286.868 437.704C286.868 437.704 260.669 463.89 247.557 435.058C234.444 406.265 252.81 387.9 252.81 387.9ZM1044.33 277.838C1044.33 262.119 1028.61 138.945 1057.41 152.019C1086.23 165.131 1044.33 277.838 1044.33 277.838ZM1078.39 366.928C1078.39 366.928 1067.91 269.966 1117.69 293.558C1167.5 317.15 1099.36 398.405 1078.39 366.928Z\" fill=\"#CA0088\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M894.916 175.611C834.633 186.116 624.977 214.948 412.675 311.897C386.45 327.616 365.517 335.476 365.517 351.208C365.517 386.875 375.983 377.42 425.787 361.714C475.565 345.994 596.132 293.558 653.783 275.205C711.446 256.866 834.62 233.287 873.944 228.021C913.243 222.808 976.172 222.808 968.312 196.583C960.453 170.384 955.2 165.131 894.916 175.611ZM1170.11 152.019C1143.91 157.271 1138.66 173.004 1138.66 173.004C1138.66 173.004 1149.14 204.442 1175.36 204.442C1201.56 204.442 1204.19 204.442 1204.19 175.611C1204.19 146.805 1170.11 152.019 1170.11 152.019ZM1196.31 125.82C1243.5 123.213 1238.27 112.707 1238.27 94.368C1238.27 76.0028 1225.14 76.0028 1177.98 73.3958C1130.81 70.7889 1136.06 99.5948 1136.06 99.5948C1136.06 99.5948 1149.14 128.427 1196.31 125.82ZM1411.26 201.835C1411.26 201.835 1657.6 243.754 1783.4 275.205C1909.19 306.683 2139.83 408.885 2166.03 416.745C2192.24 424.604 2200.13 435.071 2218.47 421.997C2236.81 408.885 2202.74 390.546 2187 380.053C1846.31 212.315 1425.11 151.396 1413.86 154.677C1314.25 183.47 1411.26 201.835 1411.26 201.835Z\" fill=\"#CA0088\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2275.46 255.31C2270.32 252.781 1751.32 0 1261.84 0C889.002 0 537.716 81.7873 187.974 250.057C-23.8875 351.96 0.236284 493.953 1.36465 499.958C1.87047 505.354 17.6676 655.09 125.874 718.11C193.213 757.292 280.552 753.504 385.477 706.761C644.834 591.253 806.152 533.693 877.187 531.267C874.567 537.882 872.245 545.028 870.495 553.173C860.235 601.382 867.045 681.38 894.774 688.928C902.88 691.159 910.493 689.187 916.161 683.403C929.598 669.746 929.598 635.039 924.63 598.516C929.131 600.954 933.852 603.146 938.547 604.845C939.987 605.325 941.439 605.455 942.853 605.753C944.098 610.668 945.823 616.362 946.873 620.772C953.657 649.163 959.519 673.714 987.676 670.9C995.679 670.096 1006.87 663.001 1018.52 653.144C1030.22 664.195 1044.94 667.813 1060.72 662.573C1075.16 657.736 1084.47 648.384 1091.03 637.192C1094.56 644.947 1099.19 651.173 1105.1 654.117C1125.27 664.195 1143.81 666.763 1158.72 661.536C1167.02 658.618 1173.6 652.639 1179.33 645.272C1180.17 646.543 1180.55 648.19 1181.55 649.279C1186.8 655.284 1196.74 661.588 1214.32 657.593C1254.39 648.501 1276.77 614.78 1278.2 586.181C1278.3 583.73 1277.72 581.616 1277.59 579.295C1286.38 574.703 1295.07 566.454 1302.47 552.797C1305.31 547.532 1307.12 543.628 1309.25 539.27L1318.82 548.867C1304.2 569.645 1276.77 612.575 1284.19 633.962C1286.45 640.525 1291.47 645.129 1298.35 647.01C1316.21 651.873 1333.46 641.381 1346.64 629.072C1347.94 634.513 1350.6 639.535 1354.36 643.672C1358.13 647.809 1362.88 650.925 1368.17 652.729C1382.07 657.723 1399.21 655.544 1414.65 647.84C1417.13 651.718 1419.84 655.064 1423.08 657.243C1428.25 660.745 1434.17 661.756 1440.13 660.135C1463.84 653.65 1505.13 608.762 1528 582.187C1532.07 611.926 1531.34 645.388 1517.48 650.706C1493.19 660.057 1484.09 646.348 1483.13 644.779L1464.92 655.09C1470.98 666.036 1491.34 683.208 1525.04 670.264C1565.57 654.688 1548.4 572.226 1544.57 555.871L1539.68 535.094L1526.21 551.656C1500.75 583.017 1453.49 634.572 1434.78 639.811C1433.88 639.383 1432.81 638.398 1431.59 636.491C1473.72 598.944 1482.23 540.048 1484 516.469C1707.36 515.73 1931.91 636.867 2028.58 689.148C2046.31 698.746 2059.08 705.659 2067.33 709.342C2107.65 727.526 2206.5 751.948 2291.72 714.414C2348.57 689.356 2388.97 641.433 2411.85 572.019C2482.07 358.757 2277.55 256.308 2275.46 255.31ZM957.34 578.711L956.03 574.587L952.23 572.615C934.851 563.394 924.89 561.318 918.314 561.669C915.369 547.676 911.922 533.793 907.977 520.049C916.148 512.072 924.034 513.11 927.406 513.59C949.934 517.066 958.741 530.684 962.152 541.475C966.821 556.092 963.488 571.344 957.561 579.58L957.34 578.711ZM901.025 668.838L900.61 668.76C890.831 662.599 879.716 595.857 893.697 548.18C911.038 618.476 908.418 664.182 901.025 668.838ZM1022.73 576.506C1027.17 567.31 1034.04 563.056 1043.81 563.484C1052.73 563.886 1052.78 566.519 1052.86 568.62C1053.19 581.266 1038.48 602.822 1022.36 620.629C1017.4 606.298 1016.96 588.633 1022.73 576.506ZM1257.28 585.144C1256.24 605.844 1239.58 630.356 1209.72 637.153C1200.63 639.202 1198.16 636.362 1197.32 635.454C1193.55 631.148 1192.57 622.134 1193.25 611.083C1193.51 609.086 1193.64 607.05 1193.78 605.027C1195.62 587.751 1200.81 567.103 1206.45 550.385C1212.74 550.385 1218.2 550.333 1222.48 550.203C1220 561.63 1230.33 574.392 1242.9 580.241C1247.25 582.316 1252.14 583.639 1257.23 583.964C1257.24 584.327 1257.28 584.807 1257.28 585.144ZM1427.95 609.644C1424.15 589.359 1420.75 548.777 1437.44 528.842C1443.4 521.748 1452.33 518.661 1462.9 517.494C1461.07 537.389 1453.78 578.879 1427.95 609.644ZM1375.28 632.963C1370.01 631.083 1366.99 627.84 1366.24 623.288C1365.65 619.592 1366.13 608.645 1381.23 590.76L1396.46 576.467C1398.87 595.442 1401.75 613.885 1406.34 628.748C1394.58 634.974 1382.75 635.648 1375.28 632.963ZM2391.94 565.482C2371.07 629.008 2334.48 672.664 2283.32 695.205C2201.96 731.054 2106.1 703.765 2076.01 690.238C2068.43 686.814 2055.28 679.719 2038.62 670.705C1939.06 616.907 1705.99 490.854 1473.93 495.354L1463.64 495.562V495.691C1445.91 496.807 1431.57 503.188 1421.36 515.405C1415.91 521.916 1412.42 529.724 1409.74 537.869L1409.23 535.768L1398.65 545.729C1398.09 546.001 1397.79 546.585 1397.26 547L1396.33 547.882C1383.31 558.141 1373.66 567.518 1366.19 576.156L1354.25 587.323L1353.32 588.231L1352.61 589.372C1343.68 603.431 1320.1 631.018 1304.05 626.79C1301.1 618.71 1318.51 584.431 1341.04 554.042L1346.43 546.766L1340.05 540.359L1317.96 518.272C1320.73 508.389 1319.72 502.189 1314.72 498.104C1308.37 492.89 1299.3 494.628 1289.24 503.045L1280.39 510.386L1288.55 518.492L1293.67 523.615C1291.52 528.453 1288.7 534.276 1284.13 542.798C1281.09 548.375 1276.84 554.276 1271.69 558.296C1266.69 549.858 1258.79 543.521 1249.47 540.463C1246.76 539.555 1244.91 539.633 1242.71 539.322V539.192C1243.01 528.375 1234.91 527.921 1215.3 526.832C1209.15 526.458 1202.99 527.346 1197.2 529.439C1197.2 529.439 1189.07 532.733 1186.4 535.522C1174.04 547.13 1173.78 566.727 1173.6 585.702C1173.53 591.473 1173.33 597.232 1172.92 602.874C1172.75 604.465 1172.61 606.061 1172.51 607.659C1171.82 613.872 1170.73 619.799 1168.49 624.611C1164.32 633.703 1158.88 639.332 1151.85 641.757C1139.93 645.959 1124.99 640.59 1114.56 635.376C1110.67 633.43 1104.88 618.632 1104.17 600.137L1106.51 588.633C1109.42 573.536 1111.95 563.731 1115.17 557.298C1119.09 552.512 1124.2 548.816 1131.45 547.869C1143.59 548.673 1149.36 551.643 1150.47 554.029C1150.81 554.743 1150.24 556.053 1150.17 557.09C1149.2 561.097 1147.63 564.932 1145.51 568.465L1162.73 580.397C1162.78 580.267 1163.17 579.71 1163.27 579.541H1163.3L1163.39 579.359C1165.41 576.597 1171.76 566.519 1171.3 554.834C1171.63 549.464 1171.13 544.017 1168.06 539.049C1161.72 528.972 1148.86 524.835 1129.72 526.884C1129.58 526.884 1129.46 526.962 1129.32 526.962C1112.85 526.832 1103.13 535.249 1096.96 547.078C1090.79 555.74 1086.63 565.677 1084.81 576.156C1083.61 583.176 1083.06 590.292 1083.17 597.413C1078.58 618.359 1072.28 636.582 1054.11 642.652C1046.3 645.233 1039.83 643.313 1033.99 638.372C1055.35 615.83 1074.33 586.752 1073.83 568.05C1073.69 562.356 1071.14 543.731 1044.81 542.512C1026.49 541.708 1011.94 550.541 1003.86 567.414C994.33 587.297 996.301 615.389 1006.64 636.271C997.922 644.053 990.063 649.617 985.601 650.032C976.989 650.914 974.603 646.413 967.327 615.882C966.302 611.654 965.135 606.985 963.955 602.277C966.069 600.98 968.118 599.566 970.012 597.738C984.201 584.028 989.311 557.713 982.151 535.12C974.758 511.839 956.458 496.82 930.583 492.838C913.995 490.283 899.884 496.612 889.028 510.192C842.882 507.533 732.872 529.063 376.956 687.592C278.593 731.391 197.688 735.541 136.523 700.004C37.6022 642.496 22.2589 498.363 22.0903 496.95L22.0385 496.016L21.7661 495.108C21.0138 490.724 0.52161 363.478 197.078 268.915C543.916 102.098 892.232 20.9721 1261.84 20.9721C1746.38 20.9721 2261.1 271.587 2266.26 274.116C2274.07 277.955 2456.36 369.729 2391.94 565.482ZM2310.35 798.263H2329.32C2332.43 798.263 2335.01 798.587 2337.56 799.936C2338.98 800.762 2340.16 801.954 2340.97 803.388C2341.78 804.822 2342.19 806.447 2342.16 808.094C2342.16 809.428 2341.89 810.748 2341.37 811.976C2340.85 813.204 2340.09 814.314 2339.13 815.241C2336.52 817.718 2331.76 818.107 2328.59 818.107H2310.36V798.263H2310.35ZM2302.4 851.802H2310.35V825.253H2319.52C2326.16 825.253 2328.92 825.837 2337.48 839.39L2345.33 851.802H2355.31L2344.82 835.409C2340.16 828.12 2336.51 825.915 2333.52 824.488V824.306C2343.76 822.958 2350.34 817.692 2350.34 808.068C2350.34 801.765 2347.1 795.552 2340.99 793.244C2337.04 791.752 2333.19 791.674 2328.98 791.674H2302.38V851.802H2302.4Z\" fill=\"#CA0088\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2323.29 755.19C2281.57 755.19 2247.62 789.106 2247.62 830.83C2247.62 872.554 2281.57 906.496 2323.29 906.496C2364.99 906.496 2398.98 872.554 2398.98 830.83C2398.98 789.106 2364.99 755.19 2323.29 755.19ZM2388.46 830.83C2388.46 866.769 2359.23 896.003 2323.29 896.003C2287.35 896.003 2258.09 866.769 2258.09 830.83C2258.09 794.904 2287.35 765.657 2323.29 765.657C2359.23 765.657 2388.46 794.917 2388.46 830.83Z\" fill=\"#CA0088\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-e3ss41\",\"data-border\":true,\"data-framer-name\":\"cirrus\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1wgn2ar\",\"data-framer-name\":\"Cirrus 1992_logo\",fill:\"black\",intrinsicHeight:245,intrinsicWidth:408,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"408.248\" height=\"244.949\" viewBox=\"0 0 575 345\" xml:space=\"preserve\"><path transform=\"translate(-4.58 -6.48)\" style=\"fill:#0084c5\" d=\"m355.226 14.853-7.978 2.702-7.808 3.089-7.634 3.431-7.377 3.818-7.206 4.16-6.992 4.461-6.735 4.76-6.476 5.105-6.262 5.405-5.962 5.705-5.662 5.962-5.405 6.219-5.104 6.477-4.804 6.734-4.461 6.992-4.117 7.163-3.818 7.42-3.432 7.592-3.045 7.764-2.702 7.978-2.316 8.106-1.93 8.321-1.501 8.408-1.073 8.578-.686 8.707-.215 8.793.215 8.879.686 8.75 1.073 8.622 1.501 8.45 1.93 8.363 2.316 8.15 2.702 8.021 3.045 7.807 3.432 7.634 3.818 7.421 4.117 7.206 4.461 6.991 4.804 6.735 5.104 6.519 5.405 6.262 5.662 5.963 5.962 5.704 6.262 5.404 6.476 5.148 6.735 4.762 6.992 4.502 7.206 4.161 7.377 3.775 7.634 3.474 7.808 3.046 7.978 2.745 8.192 2.315 8.321 1.889 8.493 1.543 8.579 1.072 8.75.686 8.877.214 8.879-.214 8.707-.686 8.622-1.072 8.494-1.543 8.321-1.889 8.192-2.315 7.979-2.745 7.806-3.046 7.634-3.474 7.421-3.775 7.206-4.161 6.991-4.502 6.778-4.762 6.475-5.148 6.264-5.404 5.962-5.704 5.704-5.963 5.404-6.262 5.148-6.519 4.804-6.735 4.46-6.991 4.162-7.206 3.773-7.421 3.476-7.634 3.045-7.807 2.745-8.021 2.316-8.15 1.888-8.363 1.543-8.45 1.073-8.622.686-8.75.214-8.879-.214-8.793-.686-8.707-1.073-8.578-1.543-8.408-1.888-8.321-2.316-8.106-2.745-7.978-3.045-7.764-3.476-7.592-3.773-7.42-4.162-7.163-4.46-6.992-4.804-6.734-5.148-6.477-5.404-6.219-5.704-5.962-5.962-5.705-6.264-5.405-6.475-5.105-6.778-4.76-6.991-4.461-7.206-4.16-7.421-3.818-7.634-3.431-7.806-3.089-7.979-2.702-8.192-2.316-8.321-1.887-8.494-1.545-8.622-1.072-8.707-.686-8.879-.215-8.877.215-8.75.686-8.579 1.072-8.493 1.545-8.321 1.887z\"/><path transform=\"translate(-4.58 -6.48)\" style=\"fill:#30549b\" d=\"m127.165 14.853-7.978 2.702-7.849 3.089-7.592 3.431-7.464 3.818-7.205 4.16-6.992 4.461-6.734 4.76-6.52 5.105-6.219 5.405-6.005 5.705-5.705 5.962-5.404 6.219-5.104 6.477-4.805 6.734-4.504 6.992-4.117 7.163-3.818 7.42-3.431 7.592-3.088 7.764-2.702 7.978-2.36 8.106-1.887 8.321-1.544 8.408-1.072 8.578-.687 8.707-.213 8.793.213 8.879.687 8.75 1.072 8.622 1.544 8.45 1.887 8.363 2.36 8.15 2.702 8.021 3.088 7.807 3.431 7.634 3.818 7.421 4.117 7.206 4.504 6.991 4.805 6.735 5.104 6.519 5.404 6.262 5.705 5.963 6.005 5.704 6.219 5.404 6.52 5.148 6.734 4.762 6.992 4.502 7.205 4.161 7.464 3.775 7.592 3.474 7.849 3.046 7.978 2.745 8.192 2.315 8.322 1.889 8.492 1.543 8.622 1.072 8.708.686 8.878.214 8.879-.214 8.75-.686 8.579-1.072 8.492-1.543 8.321-1.889 8.193-2.315 7.977-2.745 7.807-3.046 7.635-3.474 7.378-3.775 7.206-4.161 6.991-4.502 6.734-4.762 6.477-5.148 6.262-5.404 5.962-5.704 5.663-5.963 5.404-6.262 5.104-6.519 4.804-6.735 4.461-6.991 4.118-7.206 3.817-7.421 3.431-7.634 3.046-7.807 2.702-8.021 2.317-8.15 1.929-8.363 1.501-8.45 1.073-8.622.686-8.75.215-8.879-.215-8.793-.686-8.707-1.073-8.578-1.501-8.408-1.929-8.321-2.317-8.106-2.702-7.978-3.046-7.764-3.431-7.592-3.817-7.42-4.118-7.163-4.461-6.992-4.804-6.734-5.104-6.477-5.404-6.219-5.663-5.962-5.962-5.705-6.262-5.405-6.477-5.105-6.734-4.76-6.991-4.461-7.206-4.16-7.378-3.818-7.635-3.431-7.807-3.089-7.977-2.702-8.193-2.316-8.321-1.887-8.492-1.545-8.579-1.072-8.75-.686-8.879-.215-8.878.215-8.708.686-8.622 1.072-8.492 1.545-8.322 1.887z\"/><path transform=\"translate(-4.58 -6.48)\" style=\"fill:#0084c5\" d=\"M358.399 62.979h-78.751l-8.449 9.608h87.2zm0 20.374h-94.75l-6.133 9.607h100.883zm0 20.631H251.983l-4.632 9.608h111.048zm0 20.374H243.576l-2.917 9.608h117.74zm0 20.374H238.043l-1.759 9.608h122.115zm0 20.331H235.126l-.601 9.608h123.874zm0 20.331H234.525l.901 9.607h122.973zm0 20.375H236.584l1.759 9.607h120.056zm0 20.374H241.217l2.917 9.565h114.265zm0 20.331H248.208l4.676 9.608h105.515zm0 20.373h-99.725l6.391 9.908h93.334zm0 20.675h-85.184l8.45 9.564h76.734z\"/><path transform=\"translate(-4.58 -6.48)\" style=\"fill:#fff\" d=\"m526.925 218.25-.901 1.629-1.03 1.545-1.072 1.415-1.157 1.33-1.202 1.245-1.287 1.201-1.329 1.071-1.416.987-1.416.944-1.501.815-1.544.773-1.544.728-1.588.643-1.629.558-1.586.514-1.674.473-1.63.385-1.672.344-1.63.3-1.63.258-1.631.172-1.629.17-1.587.129-1.587.086-1.501.042h-5.576l-1.888-.042h-1.801l-1.716-.043-1.673-.043-1.544-.044-1.501-.042-1.458-.085-1.373-.086-1.287-.042-1.244-.087-1.201-.128-1.158-.086-1.072-.129-1.073-.128-.985-.13-.987-.129-.944-.171-.901-.172-.9-.17-.858-.172-.858-.171-.816-.215-.814-.215-.816-.215-.814-.257-.815-.214-.772-.257-.815-.3-.815-.258-.858-.301 4.376-21.274.385.129.472.171.515.172.557.171.644.215.686.172.773.214.771.214.858.215.9.214.988.214.986.215 1.029.215 1.072.214 1.116.214 1.159.215 1.157.172 1.201.213 1.244.172 1.287.172 1.287.128 1.329.13 1.33.128 1.33.086 1.372.086 1.415.086h1.373l1.416.042h1.414l1.416-.042 1.416-.086 1.416-.086 1.415-.172 1.243-.214 1.16-.344 1.028-.427.901-.473.773-.558.728-.599.601-.645.557-.686.429-.73.386-.728.344-.773.299-.728.214-.772.215-.729.172-.73.172-1.501-.043-1.33-.301-1.201-.556-1.115-.73-1.029-.944-.944-1.116-.857-1.243-.773-1.373-.772-1.544-.686-1.63-.686-1.715-.687-1.758-.686-1.845-.729-1.845-.729-1.887-.772-1.887-.816-1.888-.901-1.845-.986-1.757-1.029-1.716-1.202-1.63-1.243-1.544-1.416-1.415-1.586-1.244-1.716-1.115-1.845-.988-2.059-.729-2.273-.557-2.444-.344-2.66-.085-2.917.172-3.13.214-1.931.257-1.888.343-1.801.344-1.758.472-1.673.471-1.63.559-1.544.642-1.502.687-1.458.729-1.372.858-1.33.901-1.244.986-1.2 1.072-1.116 1.116-1.073 1.244-1.029 1.286-.944 1.416-.9 1.501-.815 1.587-.772 1.673-.729 1.759-.644 1.844-.558 1.973-.514 2.101-.472 2.188-.386 2.273-.343 2.402-.3 2.488-.215 2.616-.129 2.745-.086 2.874-.043h3.561l1.63.043 1.587.043 1.501.043 1.416.043 1.372.043 1.287.043 1.243.086 1.159.086 1.115.043 1.029.086.987.086.943.085.858.129.858.085.772.086.772.086.687.085.642.129.644.086.601.086.557.086.515.128.471.086.473.086.471.086.43.086.386.043.386.086.386.086.343.042-4.933 21.532-1.372-.085-1.287-.129-1.201-.13-1.201-.171-1.159-.171-1.201-.215-1.243-.172-1.286-.213-1.373-.172-1.501-.129-1.674-.086-1.801-.085h-4.16l-2.446.128-2.703.172-1.928.3-1.845.385-1.631.559-1.501.642-1.329.73-1.158.815-.987.944-.772.986-.601 1.029-.386 1.116-.171 1.158v1.201l.258 1.201.514 1.244.686 1.286.987 1.245.901.943 1.029.815 1.072.772 1.201.685 1.286.645 1.331.601 1.415.513 1.459.559 1.501.514 1.543.472 1.545.515 1.544.514 1.544.558 1.587.601 1.502.643 1.543.687 1.459.772 1.415.858 1.373.9 1.329 1.072 1.202 1.115 1.158 1.288 1.072 1.414.943 1.545.817 1.672.728 1.888.558 2.017.429 2.229.3 2.403.128 2.616-.086 2.831-.214 3.088-.3 2.273-.429 2.146-.515 2.015-.643 1.93-.729 1.845z\"/><path style=\"fill:none;stroke:#fff;stroke-width:.215\" d=\"m531.214 155.198-1.372-.085-1.287-.129-1.201-.13-1.201-.171-1.159-.171-1.201-.215-1.243-.172-1.286-.213-1.373-.172-1.501-.129-1.674-.086-1.801-.085h-4.16l-2.446.128-2.703.172-1.928.3-1.845.385-1.631.559-1.501.642-1.329.73-1.158.815-.987.944-.772.986-.601 1.029-.386 1.116-.171 1.158v1.201l.258 1.201.514 1.244.686 1.286.987 1.245.901.943 1.029.815 1.072.772 1.201.685 1.286.645 1.331.601 1.415.513 1.459.559 1.501.514 1.543.472 1.545.515 1.544.514 1.544.558 1.587.601 1.502.643 1.543.687 1.459.772 1.415.858 1.373.9 1.329 1.072 1.202 1.115 1.158 1.288 1.072 1.414.943 1.545.817 1.672.728 1.888.558 2.017.429 2.229.3 2.403.128 2.616-.086 2.831-.214 3.088-.3 2.273-.429 2.146-.515 2.015-.643 1.93-.729 1.845-.815 1.715-.901 1.629-1.03 1.545-1.072 1.415-1.157 1.33-1.202 1.245-1.287 1.201-1.329 1.071-1.416.987-1.416.944-1.501.815-1.544.773-1.544.728-1.588.643-1.629.558-1.586.514-1.674.473-1.63.385-1.672.344-1.63.3-1.63.258-1.631.172-1.629.17-1.587.129-1.587.086-1.501.042h-5.576l-1.888-.042h-1.801l-1.716-.043-1.673-.043-1.544-.044-1.501-.042-1.458-.085-1.373-.086-1.287-.042-1.244-.087-1.201-.128-1.158-.086-1.072-.129-1.073-.128-.985-.13-.987-.129-.944-.171-.901-.172-.9-.17-.858-.172-.858-.171-.816-.215-.814-.215-.816-.215-.814-.257-.815-.214-.772-.257-.815-.3-.815-.258-.858-.301 4.376-21.274.385.129.472.171.515.172.557.171.644.215.686.172.773.214.771.214.858.215.9.214.988.214.986.215 1.029.215 1.072.214 1.116.214 1.159.215 1.157.172 1.201.213 1.244.172 1.287.172 1.287.128 1.329.13 1.33.128 1.33.086 1.372.086 1.415.086h1.373l1.416.042h1.414l1.416-.042 1.416-.086 1.416-.086 1.415-.172 1.243-.214 1.16-.344 1.028-.427.901-.473.773-.558.728-.599.601-.645.557-.686.429-.73.386-.728.344-.773.299-.728.214-.772.215-.729.172-.73.172-1.501-.043-1.33-.301-1.201-.556-1.115-.73-1.029-.944-.944-1.116-.857-1.243-.773-1.373-.772-1.544-.686-1.63-.686-1.715-.687-1.758-.686-1.845-.729-1.845-.729-1.887-.772-1.887-.816-1.888-.901-1.845-.986-1.757-1.029-1.716-1.202-1.63-1.243-1.544-1.416-1.415-1.586-1.244-1.716-1.115-1.845-.988-2.059-.729-2.273-.557-2.444-.344-2.66-.085-2.917.172-3.13.214-1.931.257-1.888.343-1.801.344-1.758.472-1.673.471-1.63.559-1.544.642-1.502.687-1.458.729-1.372.858-1.33.901-1.244.986-1.2 1.072-1.116 1.116-1.073 1.244-1.029 1.286-.944 1.416-.9 1.501-.815 1.587-.772 1.673-.729 1.759-.644 1.844-.558 1.973-.514 2.101-.472 2.188-.386 2.273-.343 2.402-.3 2.488-.215 2.616-.129 2.745-.086 2.874-.043h3.561l1.63.043 1.587.043 1.501.043 1.416.043 1.372.043 1.287.043 1.243.086 1.159.086 1.115.043 1.029.086.987.086.943.085.858.129.858.085.772.086.772.086.687.085.642.129.644.086.601.086.557.086.515.128.471.086.473.086.471.086.43.086.386.043.386.086.386.086.343.042-4.933 21.532\" transform=\"translate(-4.58 -6.48)\"/><path transform=\"translate(-4.58 -6.48)\" style=\"fill:#fff\" d=\"m87.061 190.67.857 2.916 1.116 2.746 1.415 2.617 1.673 2.401 1.973 2.231 2.273 2.016 2.574 1.758 2.873 1.502 3.218 1.243 3.559.901.558.129.686.086.686.128.773.087.858.127.901.087.9.085.986.043 1.03.086 1.072.043h3.389l1.158-.043 1.201-.086 1.201-.128 1.244-.129 1.201-.172 1.244-.214 1.201-.257 1.244-.3 1.201-.301 1.201-.386 1.201-.428 1.158-.473 1.115-.558 1.115-.599 1.072-.644 1.03-.686.987-.773.943-.813.901-.902-4.375 25.607-.258.215-.3.213-.3.258-.343.257-.386.301-.386.3-.387.3-.471.3-.515.344-.557.3-.601.343-.643.343-.729.343-.816.301-.857.3-.944.3-.987.301-1.115.299-1.201.258-1.286.257-1.373.215-1.458.17-1.587.172-1.673.172-1.845.086-1.929.086-2.017.042h-4.503l-2.445-.085-2.574-.129-2.745-.172-2.188-.172-2.187-.255-2.188-.43-2.187-.514-2.23-.644-2.188-.73-2.145-.857-2.188-1.03-2.101-1.072-2.102-1.244-2.015-1.329-1.974-1.502-1.93-1.587-1.844-1.716-1.802-1.801-1.673-1.973-1.629-2.059-1.502-2.23-1.372-2.317-1.287-2.445-1.201-2.573-1.029-2.702-.901-2.831-.772-2.916-.601-3.089-.472-3.217-.3-3.303-.129-3.474.086-3.56.215-3.732.428-3.817.644-3.99.729-3.988.858-3.861.901-3.732.986-3.56 1.03-3.474 1.158-3.303 1.244-3.174 1.287-3.045 1.415-2.917 1.458-2.788 1.587-2.659 1.63-2.53 1.759-2.403 1.801-2.273 1.93-2.145 2.017-2.015 2.101-1.931 2.188-1.759 2.273-1.63 2.359-1.543 2.488-1.373 2.574-1.287 2.659-1.158 2.745-1.072 2.873-.901 2.96-.814 3.088-.687 3.132-.558 3.26-.428 3.388-.344 3.474-.214 3.561-.129h1.544l1.544.086 1.501.043 1.502.128 1.458.129 1.458.172 1.416.172 1.415.171 1.373.214 1.372.258 1.287.215 1.287.256 1.286.301 1.201.257 1.159.3 1.158.258 1.072.3 1.072.3 1.03.258.943.3.944.257.858.257.815.258.772.257.686.215.644.214.6.215.558.171.472.129.385.128.344.086.3.086-4.675 26.765-.601-.343-.644-.301-.643-.342-.643-.343-.643-.301-.687-.343-.729-.301-.729-.342-.729-.3-.772-.301-.773-.301-.772-.299-.815-.3-.815-.258-.857-.257-.858-.301-.901-.215-.901-.256-.943-.215-.944-.214-.987-.172-.986-.214-.986-.129-1.073-.172-1.029-.129-1.073-.084-1.115-.129-1.115-.043-1.158-.086h-4.761l-1.201.043-1.244.043-1.287.129-1.244.127-1.33.172-1.286.215-1.33.257-1.33.343-1.329.43-1.33.471-1.373.558-1.329.643-1.33.687-1.286.814-1.33.944-1.286.986-1.245 1.115-1.244 1.244-1.243 1.373-1.201 1.458-1.159 1.63-1.115 1.759-1.115 1.887-1.072 2.016-1.03 2.188-.943 2.359-.944 2.488-.858 2.659-.858 2.874-.728 3.002-.73 3.218-.644 3.302-.428 3.302-.172 3.261.043 3.174.343 3.13z\"/><path style=\"fill:none;stroke:#fff;stroke-width:.215\" d=\"m153.373 140.357-.601-.343-.644-.301-.643-.342-.643-.343-.643-.301-.687-.343-.729-.301-.729-.342-.729-.3-.772-.301-.773-.301-.772-.299-.815-.3-.815-.258-.857-.257-.858-.301-.901-.215-.901-.256-.943-.215-.944-.214-.987-.172-.986-.214-.986-.129-1.073-.172-1.029-.129-1.073-.084-1.115-.129-1.115-.043-1.158-.086h-4.761l-1.201.043-1.244.043-1.287.129-1.244.127-1.33.172-1.286.215-1.33.257-1.33.343-1.329.43-1.33.471-1.373.558-1.329.643-1.33.687-1.286.814-1.33.944-1.286.986-1.245 1.115-1.244 1.244-1.243 1.373-1.201 1.458-1.159 1.63-1.115 1.759-1.115 1.887-1.072 2.016-1.03 2.188-.943 2.359-.944 2.488-.858 2.659-.858 2.874-.728 3.002-.73 3.218-.644 3.302-.428 3.302-.172 3.261.043 3.174.343 3.13.558 3.003.857 2.916 1.116 2.746 1.415 2.617 1.673 2.401 1.973 2.231 2.273 2.016 2.574 1.758 2.873 1.502 3.218 1.243 3.559.901.558.129.686.086.686.128.773.087.858.127.901.087.9.085.986.043 1.03.086 1.072.043h3.389l1.158-.043 1.201-.086 1.201-.128 1.244-.129 1.201-.172 1.244-.214 1.201-.257 1.244-.3 1.201-.301 1.201-.386 1.201-.428 1.158-.473 1.115-.558 1.115-.599 1.072-.644 1.03-.686.987-.773.943-.813.901-.902-4.375 25.607-.258.215-.3.213-.3.258-.343.257-.386.301-.386.3-.387.3-.471.3-.515.344-.557.3-.601.343-.643.343-.729.343-.816.301-.857.3-.944.3-.987.301-1.115.299-1.201.258-1.286.257-1.373.215-1.458.17-1.587.172-1.673.172-1.845.086-1.929.086-2.017.042h-4.503l-2.445-.085-2.574-.129-2.745-.172-2.188-.172-2.187-.255-2.188-.43-2.187-.514-2.23-.644-2.188-.73-2.145-.857-2.188-1.03-2.101-1.072-2.102-1.244-2.015-1.329-1.974-1.502-1.93-1.587-1.844-1.716-1.802-1.801-1.673-1.973-1.629-2.059-1.502-2.23-1.372-2.317-1.287-2.445-1.201-2.573-1.029-2.702-.901-2.831-.772-2.916-.601-3.089-.472-3.217-.3-3.303-.129-3.474.086-3.56.215-3.732.428-3.817.644-3.99.729-3.988.858-3.861.901-3.732.986-3.56 1.03-3.474 1.158-3.303 1.244-3.174 1.287-3.045 1.415-2.917 1.458-2.788 1.587-2.659 1.63-2.53 1.759-2.403 1.801-2.273 1.93-2.145 2.017-2.015 2.101-1.931 2.188-1.759 2.273-1.63 2.359-1.543 2.488-1.373 2.574-1.287 2.659-1.158 2.745-1.072 2.873-.901 2.96-.814 3.088-.687 3.132-.558 3.26-.428 3.388-.344 3.474-.214 3.561-.129h1.544l1.544.086 1.501.043 1.502.128 1.458.129 1.458.172 1.416.172 1.415.171 1.373.214 1.372.258 1.287.215 1.287.256 1.286.301 1.201.257 1.159.3 1.158.258 1.072.3 1.072.3 1.03.258.943.3.944.257.858.257.815.258.772.257.686.215.644.214.6.215.558.171.472.129.385.128.344.086.3.086-4.675 26.765\" transform=\"translate(-4.58 -6.48)\"/><path transform=\"translate(-4.58 -6.48)\" style=\"fill:#fff\" d=\"M169.071 135.424 152.515 235.45h31.397l16.6-100.026z\"/><path style=\"fill:none;stroke:#fff;stroke-width:.215\" d=\"m183.912 235.45 16.6-100.026h-31.441L152.515 235.45h31.397\" transform=\"translate(-4.58 -6.48)\"/><path transform=\"translate(-4.58 -6.48)\" style=\"fill:#fff\" d=\"M221.443 134.266 203.686 235.45h31.998l11.667-60.779.686-1.672.815-1.544.857-1.416.944-1.244 1.03-1.201 1.072-1.03 1.115-.943 1.158-.815 1.159-.772 1.158-.644 1.201-.557 1.2-.515 1.158-.429 1.116-.343 1.115-.3 1.072-.257.472-.086h1.201l.729.086.729.085.729.129.773.129.729.171.729.172.686.171.601.129.558.172.428.128.343.086.215.043.086.043 8.45-29.081-1.502-.043-1.415-.043h-1.459l-1.372.043-1.373.043-1.329.129-1.287.129-1.244.17-1.244.215-1.244.214-1.158.301-1.158.3-1.115.343-1.116.343-1.072.429-1.072.429-.986.471-1.03.473-.943.558-.987.557-.901.601-.901.6-.901.686-.857.686-.815.73-.815.729-.815.771-.772.859-.729.815-.73.9-.728.902-.687.943 1.158-13.383z\"/><path style=\"fill:none;stroke:#fff;stroke-width:.215\" d=\"M203.686 235.45h31.998l11.667-60.779.686-1.672.815-1.544.857-1.416.944-1.244 1.03-1.201 1.072-1.03 1.115-.943 1.158-.815 1.159-.772 1.158-.644 1.201-.557 1.2-.515 1.158-.429 1.116-.343 1.115-.3 1.072-.257.472-.086h1.201l.729.086.729.085.729.129.773.129.729.171.729.172.686.171.601.129.558.172.428.128.343.086.215.043.086.043 8.45-29.081-1.502-.043-1.415-.043h-1.459l-1.372.043-1.373.043-1.329.129-1.287.129-1.244.17-1.244.215-1.244.214-1.158.301-1.158.3-1.115.343-1.116.343-1.072.429-1.072.429-.986.471-1.03.473-.943.558-.987.557-.901.601-.901.6-.901.686-.857.686-.815.73-.815.729-.815.771-.772.859-.729.815-.73.9-.728.902-.687.943 1.158-13.383h-27.623L203.686 235.45\" transform=\"translate(-4.58 -6.48)\"/><path transform=\"translate(-4.58 -6.48)\" style=\"fill:#fff\" d=\"m379.889 189.041-.129 2.272.043 2.145.258 1.973.385 1.759.516 1.63.685 1.458.815 1.287.901 1.158 1.03.944 1.072.814 1.201.686 1.243.516 1.287.343 1.33.215 1.33.085 1.672-.043 1.759-.214 1.802-.3 1.801-.472 1.845-.601 1.801-.729 1.802-.944 1.715-1.072 1.673-1.287 1.545-1.458 1.458-1.673 1.287-1.844 1.158-2.103.943-2.315.773-2.531.556-2.745 7.85-50.571h30.84l-15.141 100.284h-30.84l2.317-14.798-.73.815-.729.815-.687.815-.685.772-.73.772-.685.728-.731.687-.686.686-.729.686-.772.645-.772.642-.815.558-.815.601-.858.557-.9.516-.944.47-.987.473-1.071.472-1.074.385-1.158.387-1.2.386-1.287.3-1.372.299-1.416.301-1.501.214-1.587.215-1.673.172-1.717.171-1.887.086-1.93.086-2.058.086h-2.144l-1.502-.043-1.501-.172-1.502-.257-1.415-.344-1.415-.428-1.415-.515-1.33-.644-1.331-.729-1.287-.772-1.243-.9-1.201-.987-1.115-1.029-1.115-1.158-1.074-1.201-.985-1.287-.943-1.373-.859-1.458-.858-1.501-.729-1.587-.729-1.63-.6-1.716-.557-1.802-.516-1.844-.386-1.887-.343-1.974-.257-2.015-.172-2.059-.086-2.145v-2.187l.086-2.231.215-2.273.256-2.316 9.309-58.119h30.84l-8.15 51.427z\"/><path style=\"fill:none;stroke:#fff;stroke-width:.215\" d=\"M438.995 235.708h-30.84l2.317-14.798-.73.815-.729.815-.687.815-.685.772-.73.772-.685.728-.731.687-.686.686-.729.686-.772.645-.772.642-.815.558-.815.601-.858.557-.9.516-.944.47-.987.473-1.071.472-1.074.385-1.158.387-1.2.386-1.287.3-1.372.299-1.416.301-1.501.214-1.587.215-1.673.172-1.717.171-1.887.086-1.93.086-2.058.086h-2.144l-1.502-.043-1.501-.172-1.502-.257-1.415-.344-1.415-.428-1.415-.515-1.33-.644-1.331-.729-1.287-.772-1.243-.9-1.201-.987-1.115-1.029-1.115-1.158-1.074-1.201-.985-1.287-.943-1.373-.859-1.458-.858-1.501-.729-1.587-.729-1.63-.6-1.716-.557-1.802-.516-1.844-.386-1.887-.343-1.974-.257-2.015-.172-2.059-.086-2.145v-2.187l.086-2.231.215-2.273.256-2.316 9.309-58.119h30.84l-8.15 51.427-.343 2.489-.129 2.272.043 2.145.258 1.973.385 1.759.516 1.63.685 1.458.815 1.287.901 1.158 1.03.944 1.072.814 1.201.686 1.243.516 1.287.343 1.33.215 1.33.085 1.672-.043 1.759-.214 1.802-.3 1.801-.472 1.845-.601 1.801-.729 1.802-.944 1.715-1.072 1.673-1.287 1.545-1.458 1.458-1.673 1.287-1.844 1.158-2.103.943-2.315.773-2.531.556-2.745 7.85-50.571h30.84l-15.141 100.284\" transform=\"translate(-4.58 -6.48)\"/><path transform=\"translate(-4.58 -6.48)\" style=\"fill:#fff\" d=\"M290.372 134.266 272.657 235.45h31.355l11.924-60.779.729-1.672.772-1.544.9-1.416.944-1.244 1.03-1.201 1.072-1.03 1.115-.943 1.115-.815 1.201-.772 1.16-.644 1.2-.557 1.2-.515 1.159-.429 1.114-.343 1.116-.3 1.072-.257.473-.086h1.201l.728.086.73.085.729.129.772.129.729.171.73.172.685.171.601.129.558.172.428.128.343.086.215.043.086.043 8.45-29.081-1.502-.043-1.414-.043h-1.459l-1.372.043-1.374.043-1.329.129-1.286.129-1.287.17-1.245.215-1.201.214-1.157.301-1.158.3-1.158.343-1.074.343-1.114.429-1.03.429-1.029.471-.987.473-.986.558-.944.557-.944.601-.901.6-.858.686-.857.686-.858.73-.815.729-.771.771-.773.859-.728.815-.731.9-.728.902-.687.943 1.158-13.383z\"/><path style=\"fill:none;stroke:#fff;stroke-width:.215\" d=\"M272.657 235.45h31.355l11.924-60.779.729-1.672.772-1.544.9-1.416.944-1.244 1.03-1.201 1.072-1.03 1.115-.943 1.115-.815 1.201-.772 1.16-.644 1.2-.557 1.2-.515 1.159-.429 1.114-.343 1.116-.3 1.072-.257.473-.086h1.201l.728.086.73.085.729.129.772.129.729.171.73.172.685.171.601.129.558.172.428.128.343.086.215.043.086.043 8.45-29.081-1.502-.043-1.414-.043h-1.459l-1.372.043-1.374.043-1.329.129-1.286.129-1.287.17-1.245.215-1.201.214-1.157.301-1.158.3-1.158.343-1.074.343-1.114.429-1.03.429-1.029.471-.987.473-.986.558-.944.557-.944.601-.901.6-.858.686-.857.686-.858.73-.815.729-.771.771-.773.859-.728.815-.731.9-.728.902-.687.943 1.158-13.383h-27.322L272.657 235.45\" transform=\"translate(-4.58 -6.48)\"/><path d=\"M217.957 131.606h27.923z\" style=\"fill:#fff\" transform=\"translate(-1.095 -3.82)\"/><path style=\"fill:none;stroke:#fff;stroke-width:.215\" d=\"M221.443 134.266h27.923\" transform=\"translate(-4.58 -6.48)\"/><path d=\"M286.886 131.606h27.622z\" style=\"fill:#fff\" transform=\"translate(-1.095 -3.82)\"/><path style=\"fill:none;stroke:#fff;stroke-width:.215\" d=\"M290.372 134.266h27.622\" transform=\"translate(-4.58 -6.48)\"/><path d=\"M541.462 217.836q2.065 0 4.032 1.09 1.967 1.078 3.064 3.1 1.098 2.012 1.098 4.202 0 2.167-1.087 4.168-1.076 2-3.032 3.112-1.945 1.1-4.075 1.1t-4.086-1.1q-1.945-1.111-3.032-3.112-1.087-2-1.087-4.168 0-2.19 1.098-4.201 1.108-2.023 3.075-3.101 1.967-1.09 4.032-1.09zm0 1.39q-1.728 0-3.369.911-1.63.9-2.554 2.59-.923 1.678-.923 3.501 0 1.812.902 3.479.913 1.656 2.543 2.59 1.63.922 3.401.922t3.402-.922q1.63-.934 2.532-2.59.902-1.667.902-3.479 0-1.823-.924-3.501-.913-1.69-2.554-2.59-1.64-.911-3.358-.911zm-3.597 11.637v-9.025h3.032q1.554 0 2.25.255.695.245 1.108.867.413.623.413 1.323 0 .99-.696 1.723-.684.733-1.825.822.467.2.75.478.532.534 1.304 1.79l1.076 1.767h-1.74l-.782-1.423q-.923-1.678-1.488-2.1-.392-.312-1.142-.312h-.836v3.835zm1.424-5.08h1.728q1.238 0 1.684-.377.456-.378.456-1 0-.4-.217-.712-.217-.322-.608-.478-.38-.156-1.424-.156h-1.62z\" style=\"font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0;word-spacing:0;fill:#fff;fill-opacity:1;stroke:none;stroke-width:1\" transform=\"translate(-1.095 -3.82)\"/><path d=\"M538.277 302.567q2.065 0 4.032 1.09 1.967 1.078 3.064 3.1 1.098 2.012 1.098 4.202 0 2.167-1.087 4.168-1.076 2-3.032 3.112-1.945 1.1-4.075 1.1t-4.086-1.1q-1.945-1.111-3.032-3.112-1.087-2-1.087-4.168 0-2.19 1.098-4.201 1.108-2.023 3.075-3.101 1.967-1.09 4.032-1.09zm0 1.39q-1.728 0-3.369.911-1.63.9-2.554 2.59-.923 1.678-.923 3.501 0 1.812.902 3.479.913 1.656 2.543 2.59 1.63.922 3.401.922t3.402-.922q1.63-.934 2.532-2.59.902-1.667.902-3.479 0-1.823-.924-3.501-.913-1.69-2.554-2.59-1.64-.911-3.358-.911zm-3.597 11.637v-9.025h3.032q1.554 0 2.25.255.695.245 1.108.867.413.623.413 1.323 0 .99-.696 1.723-.684.733-1.825.822.467.2.75.478.532.534 1.304 1.79l1.076 1.767h-1.74l-.782-1.423q-.923-1.678-1.488-2.1-.392-.312-1.142-.312h-.836v3.835zm1.424-5.08h1.728q1.238 0 1.684-.377.456-.378.456-1 0-.4-.217-.712-.217-.322-.608-.478-.38-.156-1.424-.156h-1.62z\" style=\"font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0;word-spacing:0;fill:#0084c5;fill-opacity:1;stroke:none;stroke-width:1\" transform=\"translate(-1.095 -3.82)\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9arhab\",\"data-border\":true,\"data-framer-name\":\"crimson-hexagon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-omkji8\",\"data-framer-name\":\"crimson-hexagon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:222,intrinsicWidth:1243,svg:'<svg width=\"1243\" height=\"222\" viewBox=\"0 0 1243 222\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_67_179\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"114\" width=\"79\" height=\"70\">\\n<path d=\"M78.784 114.827H0.706055V183.106H78.784V114.827Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_67_179)\">\\n<path d=\"M0.39917 148.51C4.38017 142.691 7.44217 136.873 10.8102 131.057C13.5652 126.158 16.3212 121.259 19.3822 116.361C19.6892 115.442 20.3022 114.828 21.5272 114.828C33.7752 115.136 45.7152 115.136 57.6562 114.828C58.8812 114.828 59.4942 115.442 59.8012 116.361C65.9242 126.769 72.0472 137.179 78.1722 147.897C78.4782 148.51 78.4782 149.123 78.1722 150.04C72.0472 160.757 65.9242 171.168 59.8012 181.577C59.4942 182.498 58.8812 182.802 57.9632 182.802C45.7152 182.802 33.4682 182.802 21.5272 182.802C19.9962 182.802 19.6892 182.192 19.0782 181.273C13.5662 171.475 7.74817 161.677 1.93117 151.879C1.62417 150.959 1.32017 150.04 0.400169 149.733C0.399169 149.429 0.39917 148.814 0.39917 148.51Z\" fill=\"#C12736\"/>\\n</g>\\n<mask id=\"mask1_67_179\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"37\" width=\"79\" height=\"70\">\\n<path d=\"M78.784 37.975H0.706055V106.561H78.784V37.975Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask1_67_179)\">\\n<path d=\"M0.39917 71.961C6.21817 62.164 12.0342 52.672 17.2402 42.874C19.0782 39.2 21.2202 37.975 25.2012 38.281C35.9162 38.588 46.6342 38.281 57.3502 38.281C58.5762 38.281 59.4942 38.588 60.1062 39.811C65.9232 50.222 72.0462 60.326 77.8662 70.737C78.4772 71.656 78.4772 72.573 77.8662 73.798C72.0472 83.902 65.9242 94.314 60.1062 104.418C59.4942 105.642 58.5762 106.254 57.3502 106.254C45.4092 106.254 33.7742 106.254 21.8322 106.254C20.6072 106.254 19.6882 105.642 19.0782 104.723C13.2592 94.314 7.44317 84.209 1.62317 74.105C1.31917 73.493 1.01217 72.88 0.39917 72.574C0.39917 72.574 0.39917 72.269 0.39917 71.961Z\" fill=\"#C12736\"/>\\n</g>\\n<path d=\"M86.132 221.38C83.376 215.566 80.008 210.359 76.945 204.848C73.884 199.336 70.822 194.131 67.76 188.926C67.148 188.005 67.148 187.089 67.76 186.17C73.577 175.759 79.702 165.348 85.52 154.939C86.132 154.021 86.744 153.714 87.97 153.714C99.91 153.714 112.158 153.714 124.098 153.714C125.324 153.714 125.935 154.021 126.548 154.939C132.366 165.348 138.49 175.759 144.307 186.17C145.227 187.089 144.92 188.005 144.307 188.926C138.491 199.03 132.673 209.134 126.855 219.238C126.548 219.851 125.936 220.465 125.936 221.381C112.77 221.38 99.604 221.38 86.132 221.38Z\" fill=\"#C12736\"/>\\n<path d=\"M125.936 0.619995C125.936 1.538 126.548 1.845 126.855 2.457C132.673 12.561 138.491 22.664 144.307 33.075C144.92 33.995 144.92 34.913 144.307 36.138C138.184 46.242 132.366 56.653 126.548 66.757C125.936 67.982 125.324 68.288 123.794 68.288C112.159 68.288 100.217 68.288 88.274 68.288C86.744 68.288 86.132 67.981 85.52 66.757C79.702 56.653 73.884 46.242 67.76 36.138C67.148 34.913 67.148 33.995 67.76 32.77C73.577 22.971 79.395 12.868 85.213 2.764C85.52 2.152 86.132 1.538 86.132 0.619995C99.604 0.619995 112.77 0.619995 125.936 0.619995Z\" fill=\"#C12736\"/>\\n<path d=\"M1242.29 150.651C1240.15 150.651 1237.7 150.344 1235.25 150.651C1233.72 150.651 1233.42 150.344 1233.42 148.814C1233.42 138.711 1233.42 128.3 1233.42 118.196C1233.42 115.748 1233.11 113.604 1232.5 111.153C1230.66 106.56 1226.68 103.805 1221.47 103.805C1212.59 103.805 1206.47 109.01 1205.25 118.196C1204.63 121.87 1204.63 125.85 1204.63 129.524C1204.63 135.955 1204.63 142.383 1204.63 148.814C1204.63 150.344 1204.33 150.651 1203.1 150.651C1201.27 150.651 1199.12 150.344 1197.29 150.651C1196.06 150.651 1195.76 150.344 1195.76 148.814C1195.76 136.568 1195.76 124.625 1195.76 112.684C1195.76 108.091 1195.45 103.192 1195.14 98.5989C1195.14 97.3749 1195.45 96.7609 1196.98 96.7609C1198.51 97.0679 1200.35 97.0679 1201.88 96.7609C1203.41 96.7609 1203.72 97.3749 1203.72 98.5989C1203.72 100.743 1203.72 102.886 1203.72 105.641C1204.94 104.112 1205.55 103.192 1206.47 101.967C1213.21 94.9249 1225.76 93.0869 1234.03 98.5989C1238.93 101.662 1241.07 106.253 1241.99 111.459C1241.99 112.071 1241.99 112.684 1242.3 112.99C1242.29 125.545 1242.29 138.099 1242.29 150.651Z\" fill=\"#494949\"/>\\n<path d=\"M172.477 38.281C178.295 38.281 184.112 38.281 190.236 38.281C191.46 38.281 192.074 38.588 192.687 39.811C198.503 49.915 204.626 60.326 210.445 70.43C211.363 71.656 211.056 72.573 210.445 73.797C204.626 84.208 198.503 94.313 192.687 104.722C192.074 105.641 191.46 106.253 190.236 106.253C178.295 106.253 166.354 106.253 154.413 106.253C153.187 106.253 152.575 105.641 151.658 104.722C145.839 94.313 140.022 83.902 133.899 73.492C133.286 72.573 133.286 71.961 133.899 70.737C140.022 60.326 145.839 49.916 151.962 39.811C152.575 38.587 153.188 38.281 154.413 38.281C160.229 38.281 166.354 38.281 172.477 38.281Z\" fill=\"#C12736\"/>\\n<path d=\"M172.171 182.801C166.047 182.801 160.229 182.801 154.106 182.801C153.187 182.801 152.575 182.497 151.961 181.576C145.838 171.167 140.021 160.756 133.898 150.345C133.285 149.429 133.285 148.51 133.898 147.589C140.021 137.179 146.145 126.769 151.961 116.36C152.574 115.134 153.187 114.827 154.412 114.827C166.353 115.135 178.294 115.135 190.235 114.827C191.459 114.827 192.073 115.441 192.686 116.36C198.502 126.768 204.625 137.178 210.75 147.896C211.362 148.814 211.362 149.428 210.75 150.344C204.625 160.755 198.502 171.166 192.686 181.575C192.073 182.496 191.459 182.8 190.235 182.8C184.419 182.801 178.294 182.801 172.171 182.801Z\" fill=\"#C12736\"/>\\n<path d=\"M1094.1 123.709C1094.41 112.379 1086.44 104.112 1075.42 103.806C1064.71 103.499 1056.44 111.766 1056.13 122.482C1055.83 134.119 1063.79 142.691 1074.51 142.998C1085.53 143.304 1093.8 135.343 1094.1 123.709ZM1094.1 141.468C1086.75 151.572 1075.73 153.102 1065.63 150.039C1054.6 146.673 1048.17 139.018 1046.64 127.687C1045.42 118.809 1047.25 110.847 1053.38 104.112C1061.03 95.232 1076.65 92.783 1086.75 98.599C1089.51 100.437 1091.96 102.58 1093.8 105.641C1094.1 103.192 1094.1 101.049 1094.1 98.906C1093.8 97.376 1094.1 96.761 1095.94 96.761C1098.08 97.068 1101.45 95.844 1102.67 97.375C1103.9 98.599 1102.98 101.661 1102.98 103.805C1102.98 119.726 1103.29 135.648 1102.98 151.264C1102.67 160.755 1099.3 169.023 1090.73 173.921C1085.22 177.29 1079.1 178.207 1072.97 178.207C1063.79 178.207 1055.52 175.451 1048.48 169.022C1047.56 168.103 1047.25 167.49 1048.48 166.573C1050.01 165.04 1051.23 163.205 1052.77 161.675C1053.68 160.755 1053.99 160.448 1054.91 161.675C1061.64 168.716 1069.91 171.166 1079.71 169.329C1086.14 167.797 1090.73 164.124 1092.57 157.386C1094.41 152.488 1094.1 147.282 1094.1 141.468Z\" fill=\"#494949\"/>\\n<path d=\"M832.004 109.929C832.004 122.789 832.004 135.649 832.311 148.51C832.311 150.345 831.698 150.652 829.861 150.652C828.025 150.345 826.186 150.345 824.349 150.652C822.513 150.652 822.206 150.04 822.206 148.51C822.513 137.486 822.206 126.157 822.513 115.135C822.513 113.298 821.9 112.685 820.064 112.685C807.204 112.685 794.344 112.685 781.484 112.685C779.648 112.685 779.034 112.992 779.034 115.135C779.342 126.157 779.342 137.486 779.342 148.51C779.342 150.039 779.034 150.652 777.198 150.652C775.359 150.345 773.217 150.345 771.38 150.652C769.851 150.652 769.544 150.04 769.544 148.815C769.544 141.775 769.544 134.73 769.544 127.688C769.544 109.011 769.544 90.3331 769.544 71.6571C769.544 69.8201 769.851 69.2071 771.688 69.2071C773.524 69.5141 775.36 69.5141 777.199 69.2071C778.728 69.2071 779.343 69.5141 779.343 71.3511C779.035 81.4551 779.343 91.5581 779.035 101.969C779.035 103.5 779.649 103.807 781.179 103.807C794.346 103.807 807.205 103.807 820.372 103.807C822.208 103.807 822.515 103.194 822.515 101.663C822.208 91.5581 822.515 81.4541 822.208 71.3501C822.208 69.8201 822.82 69.2061 824.351 69.2061C826.188 69.5131 828.333 69.5131 830.169 69.2061C831.699 69.2061 832.313 69.8191 832.313 71.3501C832.004 84.2091 832.004 97.0681 832.004 109.929Z\" fill=\"#494949\"/>\\n<path d=\"M447.434 104.723C454.476 92.784 476.214 91.864 482.033 105.337C483.564 103.192 485.094 101.05 487.239 99.212C493.973 94.008 506.834 94.314 513.264 99.824C517.551 103.499 518.775 108.397 519.081 113.604C519.693 120.033 519.387 126.768 519.387 133.199C519.387 138.405 519.387 143.303 519.387 148.51C519.694 150.345 519.081 150.652 517.243 150.652C515.712 150.345 513.875 150.652 512.038 150.652C510.813 150.652 510.203 150.345 510.203 148.815C510.507 138.712 510.203 128.608 510.203 118.503C510.203 117.583 510.203 116.664 510.203 115.748C509.589 109.317 506.222 105.03 500.709 104.112C493.668 102.886 488.156 105.641 485.094 111.765C483.87 114.52 483.564 117.277 483.564 120.033C483.564 129.524 483.564 139.017 483.564 148.51C483.564 150.345 483.257 150.652 481.419 150.652C479.888 150.345 478.051 150.345 476.52 150.652C474.683 150.652 474.377 150.04 474.377 148.51C474.683 139.018 474.683 129.525 474.377 120.033C474.377 116.664 474.377 113.604 473.458 110.542C471.928 105.948 469.173 103.806 464.274 103.806C455.394 103.806 448.964 109.622 448.044 119.42C447.127 126.769 447.74 134.423 447.74 142.077C447.74 144.527 447.74 146.979 447.74 149.429C447.74 150.345 447.433 150.652 446.514 150.652C444.677 150.652 442.84 150.345 440.696 150.652C439.165 150.652 438.553 150.345 438.553 148.51C438.553 135.343 438.553 122.177 438.553 109.011C438.553 105.642 438.246 101.968 438.246 98.6C437.94 97.376 438.553 96.762 439.778 96.762C441.92 97.069 444.676 96.152 446.208 97.069C447.739 98.294 446.514 101.05 446.819 103.193C447.127 103.806 446.82 104.418 447.434 104.723Z\" fill=\"#494949\"/>\\n<path d=\"M312.404 152.795C290.052 152.795 272.907 137.179 270.762 115.135C269.538 101.968 272.6 90.3319 281.479 80.2279C289.134 71.9609 298.625 67.6749 309.955 67.3689C319.446 67.0629 328.326 68.8999 335.673 75.0229C341.185 79.6179 341.185 79.6179 335.673 83.5969C334.756 84.5159 333.53 85.7409 332.305 85.7409C331.081 86.0479 330.469 84.2099 329.55 83.2909C320.67 75.0229 306.893 74.1049 296.175 80.8429C276.886 93.0889 275.661 124.017 294.033 137.793C306.28 146.981 324.039 145.142 334.143 133.507C335.062 132.587 335.673 132.28 336.593 133.2C338.124 134.73 339.961 136.263 341.492 137.486C342.409 138.099 342.409 138.713 341.797 139.629C335.979 146.981 328.325 150.652 319.138 152.183C316.691 152.488 314.548 152.795 312.404 152.795Z\" fill=\"#494949\"/>\\n<path d=\"M877.932 118.81C882.831 118.81 887.73 118.81 892.629 118.81C894.468 118.81 894.774 118.197 894.468 116.664C893.24 109.011 888.649 104.723 880.074 103.806C871.196 103.193 863.541 108.092 861.399 117.278C861.092 118.81 861.706 118.81 862.928 118.81C867.828 118.81 873.033 118.81 877.932 118.81ZM882.831 126.464C876.096 126.464 869.664 126.464 862.929 126.464C861.706 126.464 861.093 126.769 861.4 128.301C862.929 135.343 866.605 140.854 873.646 142.691C880.688 144.835 887.423 143.611 893.241 138.406C895.998 135.649 895.998 135.649 898.754 137.793C899.061 138.1 899.367 138.406 899.673 138.713C902.733 140.855 902.733 140.855 900.284 143.611C893.549 150.652 885.28 152.489 876.403 151.879C860.48 150.959 850.682 137.793 851.602 121.871C852.211 111.767 856.5 103.5 865.685 98.5999C875.789 93.3949 888.649 94.621 896.304 101.968C902.122 107.173 903.958 113.909 904.571 121.259C904.878 126.464 904.878 126.464 899.367 126.464C893.854 126.464 888.342 126.464 882.831 126.464Z\" fill=\"#494949\"/>\\n<path d=\"M1167.59 124.016C1167.89 110.848 1158.09 102.275 1145.23 104.113C1136.35 105.338 1130.23 112.992 1129.92 123.096C1129.31 136.873 1140.33 146.06 1153.5 142.997C1162.07 141.16 1167.59 133.506 1167.59 124.016ZM1177.38 123.709C1177.38 140.242 1165.44 151.878 1148.6 151.878C1132.07 151.878 1119.82 140.242 1119.82 123.709C1119.82 107.173 1132.07 95.538 1148.91 95.538C1165.44 95.538 1177.38 107.173 1177.38 123.709Z\" fill=\"#494949\"/>\\n<path d=\"M620.735 143.61C631.757 143.61 639.718 135.342 639.718 123.709C639.718 112.072 631.757 103.806 620.735 103.806C609.713 103.806 601.752 112.073 601.752 123.709C601.752 135.343 609.713 143.61 620.735 143.61ZM620.735 95.538C635.431 95.538 646.455 104.112 648.904 118.196C652.579 137.485 639.107 153.101 618.591 151.878C608.181 151.265 599.913 146.673 595.015 137.179C586.749 119.727 595.321 95.845 620.735 95.538Z\" fill=\"#494949\"/>\\n<path d=\"M1012.96 124.932C1011.43 124.932 1009.9 124.932 1008.68 124.932C1004.39 125.239 1000.1 125.545 996.427 127.688C993.365 129.832 991.835 132.893 992.447 136.569C992.754 140.243 994.895 142.384 998.264 143.611C1009.29 146.674 1019.7 140.854 1019.7 127.995C1019.7 124.932 1019.7 124.932 1016.94 124.932C1015.41 124.932 1014.19 124.932 1012.96 124.932ZM1020.31 142.997C1012.35 151.878 1002.55 154.327 992.447 150.039C986.63 147.589 982.956 143.61 982.649 137.179C982.036 130.75 984.485 125.545 989.997 122.177C995.509 118.81 1001.33 117.89 1007.76 117.583C1011.12 117.277 1014.49 117.277 1017.86 117.277C1019.7 117.277 1020.01 116.664 1019.7 115.134C1019.7 108.091 1015.11 104.112 1007.15 103.805C1001.63 103.805 996.428 105.336 991.836 108.703C990.917 109.621 990.304 109.316 989.387 108.396C988.467 107.171 987.241 106.252 986.019 105.029C985.098 104.111 985.098 103.498 986.324 102.58C991.224 97.985 997.346 96.15 1004.08 95.537C1007.15 95.231 1010.51 95.537 1013.88 96.15C1022.46 97.985 1027.35 103.191 1028.58 112.071C1028.58 113.908 1028.88 116.052 1028.88 118.195C1028.88 127.686 1028.27 137.484 1029.19 147.281C1029.5 150.65 1029.5 150.65 1026.13 150.65C1025.82 150.65 1025.52 150.65 1025.21 150.65C1020.62 150.65 1020.62 150.65 1020.62 145.752C1020.62 144.834 1020.62 143.916 1020.31 142.997Z\" fill=\"#494949\"/>\\n<path d=\"M676.154 105.337C683.502 96.457 692.076 93.395 701.874 96.457C709.223 98.906 714.121 105.03 714.733 113.604C715.346 125.544 714.733 137.485 714.733 149.428C715.04 150.344 714.427 150.651 713.51 150.651C711.364 150.651 709.222 150.344 707.385 150.651C705.549 150.651 705.549 149.732 705.549 148.509C705.856 138.405 705.856 128.3 705.856 117.889C705.856 115.747 705.549 113.297 704.63 111.153C702.793 106.254 699.117 103.805 693.606 103.805C684.728 103.498 678.603 109.317 677.379 119.114C676.46 125.238 677.073 131.67 677.073 138.098C676.766 141.774 676.766 145.446 677.073 149.121C677.073 150.344 676.46 150.65 675.237 150.65C673.397 150.65 671.561 150.343 669.418 150.65C668.192 150.65 667.888 150.038 667.888 148.813C667.888 137.484 667.888 125.849 667.888 114.519C667.888 109.316 667.888 103.804 667.581 98.598C667.276 97.067 667.888 96.76 669.111 96.76C670.641 97.067 672.173 97.067 673.703 96.76C675.847 96.76 676.46 97.374 676.153 99.517C676.154 101.355 676.154 103.192 676.154 105.337Z\" fill=\"#494949\"/>\\n<path d=\"M967.646 96.762C965.809 99.519 963.97 101.968 962.133 104.418C958.154 109.622 954.172 114.827 950.194 120.033C949.274 121.259 949.274 121.87 950.194 123.096C956.928 131.67 963.36 139.935 969.789 148.51C970.095 149.122 970.708 149.733 971.321 150.652C967.34 150.652 963.666 150.652 959.992 150.652C959.071 150.652 958.767 149.733 958.155 149.123C952.95 142.078 947.744 135.037 942.539 127.688C941.62 128.608 941.007 129.525 940.396 130.751C935.803 136.874 931.208 142.998 926.923 149.123C926.002 150.346 925.393 150.652 924.166 150.652C921.103 150.652 918.041 150.652 914.675 150.652C918.654 145.141 922.636 139.629 926.616 134.423C929.678 130.75 932.433 126.769 935.497 123.096C936.413 121.87 936.106 121.259 935.19 120.033C929.677 112.991 924.166 105.948 918.654 98.599C918.347 98.292 918.041 97.682 917.431 96.761C921.41 96.761 924.779 96.761 928.452 96.761C929.371 96.761 929.678 97.682 930.291 98.292C933.963 103.498 937.945 109.01 941.926 114.215C942.232 114.826 942.538 115.441 943.458 115.747C947.437 109.928 951.416 104.417 955.397 98.599C956.315 97.375 957.234 96.761 958.766 96.761C961.521 97.068 964.276 96.762 967.646 96.762Z\" fill=\"#494949\"/>\\n<path d=\"M557.966 95.538C564.703 95.538 570.826 97.683 575.114 103.806C575.725 104.723 576.031 105.642 574.5 106.254C572.969 107.173 571.439 108.398 569.908 109.317C568.683 110.235 568.377 110.235 567.458 109.01C563.479 103.805 556.435 102.274 550.619 105.336C549.394 105.947 548.169 106.865 547.556 108.091C545.72 110.847 546.33 113.297 548.781 115.134C551.843 117.277 555.211 117.889 558.58 118.809C561.948 119.419 565.315 120.033 568.684 121.563C574.194 124.015 577.256 127.687 577.563 133.813C577.87 140.546 575.421 145.752 569.602 148.814C564.091 151.877 557.966 152.181 551.843 151.877C545.413 151.264 540.208 148.509 536.228 143.303C535.309 142.383 535.309 141.774 536.534 140.853C538.065 139.934 539.597 138.711 541.127 137.178C542.046 136.568 542.658 136.568 543.576 137.485C548.782 143.303 555.211 145.14 561.948 142.69C564.703 141.774 566.846 140.242 567.765 137.178C568.684 133.505 566.846 130.749 563.172 128.913C559.804 127.38 556.13 127.074 552.761 126.156C550.619 125.544 548.475 124.93 546.331 124.317C541.432 122.175 538.064 118.808 537.453 113.296C537.147 107.783 538.984 103.191 543.576 99.822C547.862 96.762 552.456 95.538 557.966 95.538Z\" fill=\"#494949\"/>\\n<path d=\"M368.437 105.03C372.724 98.906 378.541 95.844 385.889 95.538C385.889 95.538 386.196 95.538 386.502 95.538C390.177 95.538 390.482 95.538 390.177 99.212C390.177 101.05 390.482 103.499 389.563 104.723C388.646 105.949 386.502 104.418 384.971 104.418C376.398 104.723 371.192 109.622 369.661 118.196C369.049 122.481 369.356 126.464 369.356 130.75C369.356 136.873 369.356 142.69 369.356 148.814C369.356 150.039 369.049 150.651 367.518 150.651C365.682 150.651 363.844 150.651 362.007 150.651C360.476 150.651 360.17 150.344 360.17 149.122C360.17 142.077 360.17 135.036 360.17 127.994C360.17 118.196 360.477 108.704 359.863 98.906C359.559 97.068 360.17 96.761 361.701 96.761C363.539 97.068 365.069 97.068 366.907 96.761C367.825 96.761 368.438 97.068 368.438 98.292C368.437 100.438 368.437 102.887 368.437 105.03Z\" fill=\"#494949\"/>\\n<path d=\"M406.711 123.709C406.711 115.441 406.711 107.173 406.404 98.906C406.404 97.068 407.017 96.761 408.853 96.761C410.384 97.068 411.916 97.068 413.446 96.761C414.977 96.761 415.589 97.375 415.589 98.906C415.589 109.317 415.589 120.033 415.589 130.444C415.589 136.568 415.589 142.69 415.589 148.814C415.589 150.039 415.284 150.651 413.751 150.651C411.916 150.651 410.383 150.344 408.547 150.651C407.017 150.651 406.404 150.344 406.404 148.509C406.711 140.242 406.711 131.974 406.711 123.709Z\" fill=\"#494949\"/>\\n<path d=\"M410.996 69.5129C414.672 69.5129 417.733 72.2689 417.733 75.9429C417.733 79.9239 414.977 82.3729 410.996 82.6779C407.322 82.6779 404.566 79.9239 404.566 75.9429C404.566 72.2689 407.322 69.5129 410.996 69.5129Z\" fill=\"#494949\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p7wdkn\",\"data-border\":true,\"data-framer-name\":\"deare-2\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo of Deare | 2 Marketing, a full-service strategic marketing and consulting agency dedicated to achieving exceptional client results. Specializing in strategic marketing communications planning, digital advertising, social media, direct marketing, loyalty programs, and media planning/buying. Offers expertise in integrating online and offline communication strategies to engage audiences and elevate brand presence.\",fit:\"fill\",intrinsicHeight:55.5,intrinsicWidth:181,pixelHeight:111,pixelWidth:362,src:\"https://framerusercontent.com/images/VNjvChkU4qysqd0qbh3oMEJbeA.png\"},className:\"framer-1ejjrkn\",\"data-framer-name\":\"Snip20250130 4\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iqh5zu\",\"data-border\":true,\"data-framer-name\":\"direct-tv\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1plh4z1\",\"data-framer-name\":\"direct-tv\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1473,intrinsicWidth:2375,svg:'<svg width=\"2375\" height=\"1473\" viewBox=\"0 0 2375 1473\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.65225 0.250488H0.634277V1102.93H6.65225C685.671 1102.93 1151.39 997.781 1349.68 799.486C1421.81 724.352 1457.85 640.231 1457.85 544.086C1457.85 171.516 998.152 0.250488 6.65225 0.250488Z\" fill=\"#2360A5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2326.16 0.250488H1815.4C1893.49 30.2885 1962.61 78.3674 2013.7 129.442C2067.78 180.517 2103.82 240.606 2118.84 306.713C2148.88 423.882 2106.83 547.082 2004.67 643.227C1869.45 772.418 1659.14 880.586 1382.73 961.725C1151.38 1027.82 874.952 1078.88 577.503 1105.94H2326.16V0.250488Z\" fill=\"#2360A5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.64285 1229.12H108.802C195.933 1229.12 234.985 1280.2 234.985 1349.3C234.985 1394.37 210.939 1466.48 111.798 1466.48H3.62988L3.64285 1229.12ZM54.7178 1427.42H102.797C168.904 1427.42 183.923 1376.34 183.923 1346.28C183.923 1292.19 147.867 1268.19 102.797 1268.19H54.7178V1427.42ZM379.208 1229.12H430.283V1466.48H379.208V1229.12ZM1148.38 1268.19H1019.18V1322.27H1145.37V1361.34H1019.18V1427.42H1154.39V1466.48H971.109V1229.12H1148.38V1268.19ZM1481.88 1304.23C1481.88 1274.19 1448.82 1262.16 1421.8 1262.16C1391.73 1262.16 1346.66 1280.2 1346.66 1346.28C1346.66 1412.4 1391.73 1433.42 1421.8 1433.42C1463.84 1433.42 1481.88 1409.38 1484.87 1391.37H1538.95C1532.95 1454.45 1475.88 1472.49 1418.77 1472.49C1343.67 1472.49 1295.59 1430.44 1295.59 1346.29C1295.59 1268.2 1343.67 1223.13 1421.78 1223.13C1469.84 1223.13 1532.93 1241.15 1535.96 1304.24H1481.88V1304.23ZM1737.29 1286.2H1662.15V1229.12H1905.53V1286.2H1830.42V1466.48H1737.29V1286.2ZM2004.68 1229.12H2109.83L2166.93 1379.34L2224 1229.12H2323.14L2221.01 1466.48H2106.85L2004.68 1229.12ZM757.796 1361.34L775.811 1355.31C799.857 1343.3 811.867 1325.27 811.867 1292.21C811.867 1247.14 775.811 1229.14 727.745 1229.14H592.522V1463.47H643.597V1370.32H709.704L763.788 1463.47H820.868L757.796 1361.34ZM706.708 1334.28H643.61V1268.19H709.717C736.759 1268.19 760.792 1271.17 760.792 1301.22C760.792 1328.28 736.746 1334.28 706.708 1334.28ZM2278.09 1418.4C2278.09 1394.36 2299.14 1373.33 2326.16 1373.33C2353.19 1373.33 2374.24 1394.36 2374.24 1418.4C2374.24 1445.46 2353.19 1466.48 2326.16 1466.48C2299.14 1466.48 2278.09 1445.46 2278.09 1418.4ZM2368.21 1418.4C2368.21 1397.38 2350.2 1379.34 2326.16 1379.34C2302.13 1379.34 2284.12 1397.38 2284.12 1418.4C2284.12 1442.45 2302.13 1460.48 2326.16 1460.48C2350.2 1460.48 2368.21 1442.45 2368.21 1418.4ZM2350.2 1445.46H2341.18L2326.16 1421.41H2314.15V1445.46H2308.12V1394.37H2332.17C2335.18 1394.37 2341.18 1394.37 2344.21 1397.38C2347.19 1397.38 2350.21 1403.38 2350.21 1406.39C2350.21 1418.4 2344.21 1421.41 2335.19 1421.41L2350.2 1445.46ZM2326.16 1415.42C2332.17 1415.42 2344.21 1418.4 2344.21 1406.41C2344.21 1400.38 2338.17 1397.39 2329.19 1397.39H2314.17V1415.43H2326.16V1415.42Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qkhtaf\",\"data-border\":true,\"data-framer-name\":\"dish\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-14je5xg\",\"data-framer-name\":\"Dish Network_idKlJnhVjd_0 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:39,intrinsicWidth:90,svg:'<svg width=\"90\" height=\"39\" viewBox=\"0 0 90 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M48.7288 15.8351C48.7288 14.8541 50.1068 14.1421 52.2198 14.1421C54.6298 14.1421 56.8938 14.9971 58.3028 16.1991C58.5648 16.4221 58.9648 16.3521 59.1358 16.0531L60.8558 12.6331C60.9888 12.4021 60.9268 12.1101 60.7148 11.9501C58.5898 10.3531 55.7298 9.20605 52.1738 9.20605C46.3408 9.20605 43.0808 12.4671 43.0808 16.1871C43.0808 24.8731 56.2618 21.8671 56.2618 25.6861C56.2618 26.7311 55.0678 27.6161 52.5418 27.6161C50.0318 27.6161 47.0658 26.6261 45.3418 25.2571C45.0848 25.0531 44.7058 25.1221 44.5328 25.4021L42.5798 28.6691C42.4428 28.8901 42.4878 29.1791 42.6878 29.3471C45.0408 31.3241 48.5908 32.4911 52.2668 32.4911C58.4208 32.4911 61.8658 29.4601 61.8658 25.3731C61.8628 16.6201 48.7288 19.3241 48.7288 15.8351Z\" fill=\"#EC1944\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.154 1.02698H17.023C16.817 1.02698 16.649 1.19398 16.649 1.40098V12.231C14.93 10.353 12.624 9.20898 10.029 9.20898C4.49 9.20898 0 14.421 0 20.85C0 27.279 4.49 32.491 10.028 32.491C12.623 32.491 14.93 31.347 16.648 29.469V31.566C16.648 31.772 16.815 31.94 17.022 31.94H22.153C22.359 31.94 22.527 31.773 22.527 31.566V1.39998C22.527 1.19398 22.36 1.02698 22.154 1.02698ZM11.26 27.602C8.283 27.602 5.871 24.578 5.871 20.847C5.871 17.116 8.284 14.092 11.26 14.092C14.223 14.092 16.627 17.09 16.648 20.797V20.896C16.628 24.605 14.224 27.602 11.26 27.602Z\" fill=\"#EC1944\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M77.0132 9.207C74.3022 9.207 72.2172 10.346 70.8482 12.205V1.4C70.8482 1.194 70.6812 1.026 70.4742 1.026H65.3432C65.1372 1.026 64.9692 1.193 64.9692 1.4V31.566C64.9692 31.772 65.1362 31.94 65.3432 31.94H70.4742C70.6802 31.94 70.8482 31.773 70.8482 31.566V18.666C70.8522 15.746 72.9382 14.118 75.4572 14.118C77.9792 14.118 79.9592 15.668 79.9592 19.474L79.9642 31.566C79.9642 31.772 80.1312 31.94 80.3382 31.94H85.4692C85.6752 31.94 85.8432 31.773 85.8432 31.566V19.116C85.8442 12.271 81.9152 9.207 77.0132 9.207Z\" fill=\"#EC1944\"/>\\n<path d=\"M29.194 3.474C29.194 1.554 30.794 0 32.668 0C34.588 0 36.142 1.554 36.142 3.474C36.142 5.394 34.588 6.948 32.668 6.948C30.794 6.948 29.194 5.394 29.194 3.474ZM39.318 26.295C36.97 27.659 34.452 28.019 32.718 28.022C30.984 28.019 28.465 27.66 26.118 26.295C25.733 26.08 25.528 26.456 25.608 26.784C26.405 30.059 29.274 32.488 32.697 32.508H32.739C36.162 32.488 39.031 30.06 39.828 26.784C39.908 26.455 39.703 26.079 39.318 26.295ZM37.929 18.024C36.075 19.101 34.087 19.385 32.718 19.387C31.349 19.385 29.36 19.101 27.507 18.024C27.203 17.854 27.041 18.151 27.104 18.41C27.733 20.996 29.998 22.914 32.701 22.929H32.734C35.437 22.913 37.702 20.996 38.331 18.41C38.395 18.151 38.233 17.854 37.929 18.024ZM36.45 10.975C35.123 11.746 33.698 11.95 32.718 11.951C31.738 11.949 30.313 11.746 28.986 10.975C28.768 10.853 28.653 11.066 28.698 11.251C29.149 13.103 30.771 14.476 32.706 14.487H32.73C34.666 14.476 36.288 13.103 36.738 11.251C36.783 11.066 36.667 10.854 36.45 10.975Z\" fill=\"#EC1944\"/>\\n<path d=\"M88.3231 30.595V30.812H87.9041V31.906H87.6441V30.812H87.2251V30.595H88.3231ZM89.7401 31.906L89.6921 31.135C89.6871 31.034 89.6871 30.908 89.6821 30.769H89.6681C89.6341 30.885 89.5961 31.039 89.5571 31.159L89.3211 31.887H89.0511L88.8151 31.14C88.7911 31.039 88.7521 30.885 88.7231 30.769H88.7091C88.7091 30.89 88.7041 31.015 88.6991 31.135L88.6511 31.906H88.4001L88.4961 30.595H88.8861L89.1131 31.236C89.1421 31.337 89.1661 31.434 89.2001 31.569H89.2051C89.2391 31.448 89.2681 31.338 89.2971 31.241L89.5241 30.595H89.9001L90.0001 31.906H89.7401Z\" fill=\"#EC1944\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14srr2r\",\"data-border\":true,\"data-framer-name\":\"electric-vehicle-association\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:498,pixelWidth:1698,sizes:\"212px\",src:\"https://framerusercontent.com/images/DyKi7gjBLDAF0guICErNW1IWMo.png\",srcSet:\"https://framerusercontent.com/images/DyKi7gjBLDAF0guICErNW1IWMo.png?scale-down-to=512 512w,https://framerusercontent.com/images/DyKi7gjBLDAF0guICErNW1IWMo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DyKi7gjBLDAF0guICErNW1IWMo.png 1698w\"},className:\"framer-vmrw57\",\"data-framer-name\":\"image 2\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jq35nm\",\"data-border\":true,\"data-framer-name\":\"encore-marketiing-group\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:240,intrinsicWidth:240,pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/OAgdp6BSYO5QNJho0IkXdW1GvU.jpg\"},className:\"framer-1tccgty\",\"data-framer-name\":\"Encore marketing logo\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nlkinz\",\"data-border\":true,\"data-framer-name\":\"evfy\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1182,intrinsicWidth:1182.6666666666667,pixelHeight:1773,pixelWidth:1774,sizes:\"88px\",src:\"https://framerusercontent.com/images/FXJJlrXLNe2YQfExiy7Fl8QRDM.jpg\",srcSet:\"https://framerusercontent.com/images/FXJJlrXLNe2YQfExiy7Fl8QRDM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FXJJlrXLNe2YQfExiy7Fl8QRDM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FXJJlrXLNe2YQfExiy7Fl8QRDM.jpg 1774w\"},className:\"framer-1vbqkgn\",\"data-framer-name\":\"EVFY logos-Black_green_green_border_RGB_HR\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ikxeau\",\"data-border\":true,\"data-framer-name\":\"global-works\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:99.5,intrinsicWidth:100,pixelHeight:199,pixelWidth:200,src:\"https://framerusercontent.com/images/1NCo7CZIQNQpXPsXCUexFepSW4.png\"},className:\"framer-1r480oe\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o9zm9q\",\"data-border\":true,\"data-framer-name\":\"go-green-auto-centers\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:170.66666666666666,intrinsicWidth:170.66666666666666,pixelHeight:256,pixelWidth:256,src:\"https://framerusercontent.com/images/P6vUb10vIHXGQJpNoUWIIhI7Y.png\"},className:\"framer-kjzz1s\",\"data-framer-name\":\"Gogreenautocenter\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gu3x11\",\"data-border\":true,\"data-framer-name\":\"HallmarkEnEspanol_logo\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:306,intrinsicWidth:563,pixelHeight:612,pixelWidth:1126,sizes:\"165px\",src:\"https://framerusercontent.com/images/sE7dK04RT150gKpWbjaYDb18oIE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sE7dK04RT150gKpWbjaYDb18oIE.png?scale-down-to=512 512w,https://framerusercontent.com/images/sE7dK04RT150gKpWbjaYDb18oIE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sE7dK04RT150gKpWbjaYDb18oIE.png 1126w\"},className:\"framer-k72zv1\",\"data-framer-name\":\"HallmarkEnEspanol logo_color\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gxh0a4\",\"data-border\":true,\"data-framer-name\":\"momentum\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:167.33333333333334,intrinsicWidth:262,pixelHeight:251,pixelWidth:393,src:\"https://framerusercontent.com/images/i0ZlXCXTLL15MtqjKdjZLxThrm8.png\"},className:\"framer-1mksyz3\",\"data-framer-name\":\"Momentum11\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y9r7wl\",\"data-border\":true,\"data-framer-name\":\"nestle-waters\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-gmwpnc\",\"data-framer-name\":\"Nestle-waters\",fill:\"black\",intrinsicHeight:1461,intrinsicWidth:2280,svg:'<svg width=\"2280\" height=\"1461\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2122.58 360.559c51.56 55.615 91 114.562 117.44 176.817a489.256 489.256 0 0 1 39.39 193.003c0 67.443-13.4 131.786-39.39 193.016-26.44 62.268-65.88 121.215-117.44 176.815-50.89 54.86-110.48 104.16-178.84 147.79-67.94 43.35-144.69 81.14-230.32 113.31-86.66 32.58-178.6 57.7-275.88 74.57-94.3 16.34-193.58 24.9-297.83 24.9-104.26 0-203.539-8.56-297.842-24.9-97.26-16.87-189.216-41.99-275.88-74.57-85.613-32.17-162.368-69.98-230.304-113.31-68.364-43.61-127.96-92.91-178.84-147.79-51.568-55.6-90.996-114.547-117.428-176.815A489.344 489.344 0 0 1 0 730.379c0-67.442 13.411-131.785 39.416-193.003 26.432-62.255 65.873-121.215 117.428-176.817 50.88-54.875 110.476-104.173 178.84-147.777C403.62 169.45 480.375 131.63 565.988 99.465c86.677-32.567 178.633-57.715 275.88-74.563C936.171 8.56 1035.45 0 1139.71 0c104.25 0 203.52 8.573 297.83 24.902 97.28 16.848 189.23 41.996 275.88 74.563 85.63 32.165 162.38 69.985 230.32 113.317 68.38 43.604 127.95 92.902 178.84 147.777Zm101.66 183.523c-25.64-60.414-64-117.701-114.2-171.863-49.81-53.695-108.3-102.046-175.57-144.95-67.08-42.8-142.77-80.101-227.08-111.773-85.62-32.165-176.5-57.015-272.71-73.695-93.29-16.16-191.61-24.629-294.97-24.629-103.36 0-201.671 8.47-294.963 24.63-96.222 16.679-187.128 41.529-272.741 73.694-84.304 31.672-159.982 68.973-227.088 111.773-67.261 42.904-125.755 91.268-175.545 144.95-50.206 54.162-88.571 111.449-114.212 171.863a472.056 472.056 0 0 0-38.002 186.297c0 65.16 12.931 127.273 38.002 186.298 25.654 60.413 64.006 117.713 114.212 171.853 49.79 53.7 108.297 102.06 175.545 144.97 67.106 42.79 142.784 80.1 227.088 111.76 85.613 32.17 176.519 57.02 272.741 73.7 93.279 16.16 191.603 24.64 294.963 24.64 103.36 0 201.68-8.48 294.97-24.64 96.21-16.67 187.1-41.52 272.71-73.7 84.31-31.66 160-68.97 227.08-111.76 67.28-42.91 125.76-91.27 175.57-144.97 50.2-54.14 88.56-111.44 114.2-171.853a472.065 472.065 0 0 0 38-186.298 472.063 472.063 0 0 0-38-186.297Z\" fill=\"#336AAA\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2134.84 318.317c.68-13.735 4.81-25.408 13.73-34.331 8.94-8.923 20.62-13.048 33.67-13.735 13.74.687 25.41 4.812 34.32 13.735 8.94 8.923 13.07 20.596 13.76 34.331-.69 13.048-4.81 24.72-13.76 33.657-8.92 8.923-20.6 13.047-34.32 13.735-13.05-.688-24.72-4.812-33.67-13.735-8.91-8.937-13.05-20.609-13.73-33.657Zm47.4 54.94c15.79-.687 29.53-5.499 39.82-15.797 10.31-10.298 15.12-23.346 15.81-39.143-.69-15.797-5.5-29.532-15.81-39.83-10.29-10.298-24.05-15.11-39.82-15.797-15.81.687-28.86 5.499-39.17 15.797-10.28 10.298-15.09 24.046-15.78 39.83.69 15.797 5.5 28.845 15.78 39.143 10.31 10.298 23.36 15.11 39.17 15.797Z\" fill=\"#336AAA\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2193.91 305.957c2.08 6.238-8.26 6.342-11.67 6.861h-8.23v-13.735h8.23c4.97.765 11.67.052 11.67 6.874Zm-13.74 19.221 13.07 23.358h15.78l-16.48-26.782c9.62-.688 14.43-5.499 15.12-15.11 1.36-12.412-10.71-17.846-21.31-17.846h-26.09v59.751h13.76v-23.358l6.15-.013ZM1141.08 1022.26c48.09 0 90.04-10.84 125.68-28.854 35.11-17.704 75.59-35.589 120.88-53.552 44.68-17.756 105.75-29.234 181.97-28.858 58.42.299 109.9 14.41 155.21 36.406 45.35 21.958 90.71 41.776 136.69 59.048 45.37 17.07 97.83 19.83 155.9 4.82 21.66-5.61 40.37-18.694 57.67-35.723 21.16-20.752 41.37-51.425 60.44-93.396 18.69-41.14 30.22-92.681 30.22-153.834 0-99.582-32.27-187.491-92.7-264.402-60.44-76.923-140.79-141.487-240.37-194.364-99.58-52.878-209.54-93.071-329.64-120.191-120.27-27.146-240.37-41.205-361.95-41.205-121.55 0-241.665 14.059-361.934 41.205-120.113 27.107-230.071 67.3-329.652 120.191-99.582 52.877-179.943 117.441-240.369 194.364-60.439 76.911-92.708 164.82-92.708 264.402 0 61.153 11.517 112.694 30.22 153.834 19.065 41.971 39.48 72.45 60.439 93.396 16.821 16.847 35.394 29.983 57.689 35.723 58.092 14.88 109.88 12.36 155.897-4.82 46.016-17.142 91.346-37.077 136.675-59.048 45.329-21.983 96.806-36.095 155.209-36.406 76.25-.376 137.35 10.999 181.992 28.858 44.642 17.859 85.224 35.563 120.882 53.552 35.08 17.734 76.88 28.854 125.66 28.854Z\" fill=\"#336AAA\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1934.32 1049.72c-36.4-.69-74.2-10.26-113.33-27.46l-118.8-52.199c-40.53-17.146-81.03-26.77-121.56-28.145-85.85 1.362-150.4 10.999-193.67 28.858-43.27 17.146-81.75 35.006-114.7 52.866-32.96 17.86-76.23 27.48-130.49 28.17h-1.36c-54.27-.69-97.54-10.31-130.49-28.17-32.959-17.86-71.427-35.72-114.694-52.866-43.267-17.859-107.818-27.483-193.678-28.858-40.517 1.362-81.035 10.999-121.552 28.145L461.18 1022.26c-39.143 17.18-76.924 26.77-113.317 27.46l-72.8-4.78h-13.047c-3.437.68-4.124 2.73-.687 6.18 15.797 17.15 37.08 36.41 63.876 58.37a664.415 664.415 0 0 0 83.097 59.75c28.845 17.17 54.265 26.09 76.236 26.77 23.346-3.43 45.33-10.31 65.238-19.91 19.922-10.31 44.642-19.22 72.799-28.17 28.158-8.93 65.926-13.05 114.005-13.74 65.25 1.36 119.503 11 162.77 29.54 43.955 17.85 84.472 35.71 120.88 54.26 36.4 17.86 76.92 27.46 120.86 28.83 43.96-1.36 84.49-10.97 120.87-28.83 36.4-18.55 76.94-36.41 120.2-54.26 43.96-18.55 98.21-28.18 163.47-29.54 47.37.69 85.82 4.81 113.99 13.74 28.18 8.93 52.9 17.86 72.8 28.17 19.91 9.6 41.9 16.48 64.55 19.91 22.68-.69 48.08-9.6 76.94-26.77 28.15-17.17 55.63-37.08 82.41-59.08 26.77-22.65 48.77-41.89 64.58-59.05 3.42-3.45 2.73-5.5-.69-6.19h-13.76l-72.13 4.8Z\" fill=\"#66BFF1\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m1680.19 301.832-43.26 4.125-81.04 8.236-46.69 4.811c-6.19 1.375-9.62 4.812-9.62 10.298v13.048c.68 5.499 3.45 8.249 8.92 8.936h171.69c8.94-.687 13.77-5.499 14.44-13.748v-21.296c-.69-8.923-5.5-13.722-14.44-14.41Zm-294.63 84.472h-37.77v-63.876c-.69-10.298-6.18-15.797-16.47-16.484h-24.05c-10.31.687-15.81 6.186-16.48 16.484v63.876h-11.67c-7.55.688-11.68 4.125-12.36 11.673v17.159c.68 7.562 4.81 10.999 12.36 11.673h11.67v104.394c.69 18.547 6.86 35.031 19.22 48.079 12.36 13.047 29.53 19.921 50.82 20.609h22.67c7.55-.688 11.67-5.5 12.36-13.048v-18.547c-.69-8.236-4.81-12.36-12.36-13.047h-3.43c-21.31-1.375-31.62-11.673-32.29-31.595v-96.832h37.77c7.57-.687 11-4.111 11.67-11.673V397.99c-.66-7.561-4.09-10.998-11.66-11.686Zm-141.45-77.598H794.943c-11.673.688-17.859 6.861-18.547 18.534l1.375 176.506-25.408-45.33-47.391-87.221-28.845-51.503c-4.812-9.611-14.422-15.11-28.845-15.797h-37.08c-11.673.687-17.86 6.874-18.547 18.546v258.916c.687 10.985 6.874 17.172 18.547 18.547h23.345c11.673-1.375 17.86-7.562 18.547-18.547l-1.375-182.005 25.408 46.704 48.079 86.534 28.157 50.816c6.187 10.298 15.798 15.797 29.52 16.485h33.656c11.673-1.375 17.847-7.562 18.547-18.547V352.648H1244.1c7.55-.687 12.36-4.812 13.05-12.36v-19.221c-.68-7.562-5.49-11.686-13.04-12.361Zm381.84 127.052c9.6 7.562 15.1 17.86 16.48 30.22h-98.9c4.81-26.783 21.31-40.531 49.44-42.58 13.05.674 24.05 4.812 32.98 12.36Zm-32.98-57.002c-35.03 1.375-61.12 13.048-79.67 34.344-18.55 21.283-28.14 47.379-28.14 76.911.68 30.907 10.28 57.689 28.83 79.673 19.22 21.296 45.34 32.969 78.98 34.331 24.05-.687 45.35-6.187 63.89-17.172 18.52-10.985 30.91-26.783 35.69-46.704.69-6.874-2.73-10.985-10.28-12.36h-32.3c-6.18.687-10.97 2.749-13.73 7.561-8.92 13.735-23.36 20.596-43.27 20.596-14.41-.687-26.09-5.486-35.03-14.422-8.92-8.924-14.41-19.922-15.1-32.969h138.74c13.05-.688 19.22-6.861 18.52-18.547.72-28.845-8.23-54.253-25.4-76.224-17.15-21.97-44.63-33.643-81.73-35.018Zm-598.863 57.002c9.613 7.562 15.113 17.86 16.483 30.22h-98.893c4.812-26.783 20.596-40.531 48.753-42.58 13.048.674 24.734 4.812 33.657 12.36Zm-33.657-57.002c-34.331 1.375-61.113 13.048-79.66 34.344-18.547 21.283-27.47 47.379-28.157 76.911.687 30.907 10.311 57.689 29.532 79.673 18.547 21.296 45.329 32.969 78.973 34.331 23.358-.687 44.642-6.187 63.192-17.172 18.54-10.985 30.9-26.783 35.72-46.704.68-6.874-2.07-10.985-9.62-12.36h-32.96c-6.19.687-10.3 2.749-13.05 7.561-8.925 13.735-23.361 20.596-43.269 20.596-14.423-.687-26.783-5.486-35.706-14.422-8.923-8.936-13.735-19.922-14.422-32.969h138.727c12.36-.688 18.53-6.861 18.53-18.547 0-28.845-8.92-54.253-26.09-76.224-17.18-21.97-44.646-33.643-81.74-35.018Zm490.36-72.799h-24.72c-10.31.687-16.48 6.186-17.17 16.484v260.291c.69 10.298 6.86 15.797 17.17 17.172h24.72c10.31-1.375 15.81-6.874 16.49-17.172V322.428c-.68-10.298-6.18-15.784-16.49-16.471Zm-265.09 160.021-23.36-6.187c-14.41-2.062-21.97-7.561-24.03-17.859 2.06-14.423 13.06-21.296 32.97-20.596 20.6 0 33.64 6.186 39.82 19.221 2.07 4.812 6.86 7.561 13.73 6.874h27.48c4.82 0 8.24-3.437 8.93-9.611-.69-15.797-8.93-29.532-25.41-41.205-15.78-11.672-37.77-17.172-64.55-17.859-27.48.687-49.45 6.874-65.25 18.547-15.8 11.673-24.05 27.47-24.72 48.766.69 15.797 6.19 28.845 16.48 38.455 10.3 9.611 23.35 16.485 39.16 19.922l25.39 6.861 24.05 6.187c14.43 2.062 21.98 8.248 24.05 17.859-.69 8.236-4.13 14.422-11.68 17.846-7.55 3.424-15.78 4.812-26.09 4.812-20.6-.687-34.35-7.548-41.89-21.283-3.44-6.861-8.93-9.624-16.49-8.923h-27.47c-6.19.687-9.62 4.111-10.3 10.298v3.437c.69 15.797 9.61 30.219 27.47 42.579 17.17 12.361 40.52 18.547 68.68 19.222 21.28.687 42.58-4.112 62.49-14.423 19.9-10.311 30.9-28.845 32.95-54.94-1.36-31.594-19.22-51.516-54.24-60.439l-28.17-7.561Zm497.24 287.747c11.67 7.574 17.14 19.247 17.86 35.719-1.3 45.549-40.64 65.199-81.75 63.889-25.03-1.362-52.62-7.25-69.36-24.721-7.07-7.366-12.21-16.821-14.41-28.857-1.39-7.549 1.35-10.999 8.92-10.999h37.77c0 10.999 3.45 19.222 11 24.046 7.54 4.825 16.48 7.549 26.77 6.861 14.31 1.297 32.8-6.744 32.29-23.358-.4-13.1-19.91-21.958-56.31-28.145-14.44-2.762-27.75-7.172-39.17-14.435-11.25-7.146-17.86-18.521-17.86-34.331 0-44.811 39.92-59.064 78.3-59.064 19.93 0 37.76 3.437 52.89 12.36 15.09 8.923 24.04 24.046 26.09 46.017h-33.67c-6.86-.688-11.62-4.799-15.45-11.673-.83-1.492-1.19-2.594-4.46-6.187-3.59-3.969-12.33-6.524-26.77-6.861-11.67-.272-27.48 2.244-27.48 17.172 0 8.949 6.08 14.76 17.17 17.847a656.745 656.745 0 0 0 38.46 9.623c15.02 3.191 28.17 7.549 39.17 15.097Zm-422.39-16.472c1.52-25.848 19.11-38.663 41.89-39.155 23.36-.506 36.41 13.735 39.82 39.155h-81.71Zm43.27-76.923c-28.17 0-50.82 9.61-67.99 27.47-17.17 17.846-26.09 41.192-26.09 69.362 0 28.858 9.09 52.035 25.4 69.362 16.64 17.704 39.15 28.119 68.68 27.483 33.72-.739 55.35-12.412 67.3-27.483 8.99-11.322 14.13-21.478 15.12-26.769.96-5.24 0-7.549-7.57-7.549h-33.65c-4.81 13.048-17.8 22.14-39.84 23.333-28.12 1.543-43.27-15.097-44.63-46.004h121.57c6.86-.687 10.31-4.812 10.31-10.998 0-28.806-10.05-54.577-24.72-72.8-12.6-15.615-33.67-25.407-63.89-25.407Zm-111.26 4.811h-26.09v-31.594c0-6.9-4.76-10.985-11-10.985h-28.85c-6.21 0-10.98 4.085-10.98 10.985v31.594h-19.23c-6.9 0-10.3 4.125-10.99 10.986V687.8c.69 6.861 4.09 10.985 10.99 10.985h19.23v97.52c0 39.817 20.15 55.679 58.36 54.265l18.55-.687c6.21-.234 11-4.76 11-11.673v-17.859c0-6.213-4.13-9.598-10.31-9.598h-5.5c-8.26 0-13.66-2.127-15.79-4.812-5.79-7.367-5.5-18.235-5.5-27.483v-79.66h26.1c6.91 0 11-4.085 11-10.985V676.14c.01-6.913-4.07-10.999-10.99-10.999Zm-304.229-33.656h-31.594c-6.9 0-12.256 3.969-13.748 10.298l-27.47 117.428-2.75 10.998-3.437-10.998-28.844-117.428c-1.557-6.329-6.835-10.298-13.735-10.298h-48.754c-6.212 0-12.1 3.748-13.748 10.298l-28.844 115.379-3.437 10.311-2.75-10.311-26.782-115.379a13.1 13.1 0 0 0-13.048-10.298h-32.969c-6.213 0-9.844 4.293-8.249 10.298l52.19 196.414c1.674 6.303 6.835 10.311 13.735 10.311h34.331c6.9 0 12.192-3.982 13.748-10.311l37.081-151.772 2.736-10.298 3.438 10.298 37.78 151.772c1.57 6.329 6.148 10.311 13.048 10.311h33.657c6.899 0 12.048-4.034 13.735-10.311l52.89-196.414c1.647-6.005-1.997-10.298-8.21-10.298Zm632.509 28.845c-19.22.194-33.14 5.317-41.19 13.735-7.76 8.08-11.67 13.047-11.67 14.422-3.45 5.499-5.5 8.923-6.19 10.985v-23.345c-.69-6.861-4.12-10.298-11-10.986h-26.09c-6.87.688-10.32 4.125-11 10.986v161.396c0 6.887 4.07 10.998 11 10.998h28.85c6.22 0 10.29-4.098 10.29-10.998v-71.438c0-16.471 3.98-30.323 11.67-41.879 7.39-11.089 19.91-16.563 38.46-17.172 2.53-.078 5.04-.195 7.55 0 6.21.493 10.07-2.711 10.31-8.923.45-12.127 0-24.267 0-36.394-3.65-.479-7.29-1.426-10.99-1.387Zm-499.28 106.468v16.109c0 25.486-16.64 34.603-40.521 36.756-18.585 1.673-30.907-6.057-30.907-23.358 0-16.589 12.36-25.408 29.532-26.77 17.172-1.362 31.596-4.812 41.896-10.998v8.261Zm-59.742-24.045c-15.68 2.308-30.22 6.186-42.58 13.735-12.36 7.548-19.221 21.957-19.921 41.892 1.349 36.354 27.56 55.627 62.501 55.627 24.033.688 44.632-7.548 61.812-23.358.83 9.169 3.52 16.64 14.42 17.859h40.52a56.262 56.262 0 0 1-4.81-17.859c-.45-11.219-1.92-22.114-1.37-33.67v-85.146c0-21.297-9.55-35.187-26.79-42.58-16.42-7.03-34.32-8.923-54.25-8.923-21.296 0-40.595 3.294-57.689 12.36-16.563 8.78-26.108 25.408-28.158 48.766h39.143c6.225 0 10.194-4.539 13.748-10.298l5.499-8.923c3.554-5.785 13.048-7.95 25.408-8.236 20.039-.493 32.259 5.473 32.269 24.721.01 9.636-6.12 16.121-17.85 17.859l-41.902 6.174Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-le6uuf\",\"data-border\":true,\"data-framer-name\":\"rice-business\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:72,intrinsicWidth:288,pixelHeight:72,pixelWidth:288,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7grOR4lO0yBgRwbi8TGc1iUjMzQ.svg\"},className:\"framer-8uizhx\",\"data-framer-name\":\"RiceBusiness_JGSB_1c_shield-Blue 1\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nmpnat\",\"data-border\":true,\"data-framer-name\":\"she-leads\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:69,intrinsicWidth:152,pixelHeight:641,pixelWidth:940,positionX:\"center\",positionY:\"center\",sizes:\"193.8551px\",src:\"https://framerusercontent.com/images/frIUZmydk5lmi3SMtj90TLDbauw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/frIUZmydk5lmi3SMtj90TLDbauw.png?scale-down-to=512 512w,https://framerusercontent.com/images/frIUZmydk5lmi3SMtj90TLDbauw.png 940w\"},className:\"framer-1mezayj\",\"data-framer-name\":\"Idbcv9 mfU_logos\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16mkep8\",\"data-border\":true,\"data-framer-name\":\"siemens\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1uybt9v\",\"data-framer-name\":\"siemens\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:366,intrinsicWidth:2312,svg:'<svg width=\"2312\" height=\"366\" viewBox=\"0 0 2312 366\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M248.259 13.1479V80.5907C216.185 69.3719 181.063 62.8221 153.061 62.8221C118.497 62.8221 99.2626 73.3536 99.2626 92.2765C99.2626 104.351 107.68 112.354 131.83 123.209L196.782 152.352C248.739 175.698 274.925 209.757 274.925 254.009C274.925 322.308 215.809 365.394 122.102 365.394C87.9271 365.394 48.3952 360.504 6.51583 351.036V281.324C48.032 292.62 86.0594 298.651 115.643 298.651C154.384 298.651 175.136 287.861 175.136 267.744C175.136 255.657 167.03 246.772 148.47 238.485L77.3826 206.825C24.6865 183.324 0.368164 151.665 0.368164 106.53C0.368164 41.8501 57.3443 0.606201 146.732 0.606201C178.028 0.606201 216.548 5.36604 248.259 13.1479ZM325.507 7.6747H430.549V358.325H325.507V7.6747ZM772.082 7.6747V71.914H613.501V151.004H752.031V209.108H613.501V291.103H774.131V358.325H511.429V7.6747H772.082ZM1268.33 7.6747V358.325H1166.7V127.528L1067.14 361.062H1002.89L904.011 127.528V358.325H833.831V7.6747H962.102L1052.79 220.962L1143 7.6747H1268.33ZM1610.14 7.6747V71.914H1451.32V151.004H1589.81V209.108H1451.32V291.103H1611.93V358.325H1348.99V7.6747H1610.14ZM1980.12 7.6747V358.325H1868.03L1741.81 133.43V358.325H1671.61V7.6747H1786.67L1910.18 229.6V7.6747H1980.12ZM2284.97 13.1479V80.5907C2253.13 69.4497 2217.78 62.8221 2190.3 62.8221C2155.19 62.8221 2135.97 73.185 2135.97 92.1727C2135.97 104.546 2143.82 111.939 2168.8 123.222L2233.46 152.365C2285.8 175.957 2311.66 209.718 2311.66 254.489C2311.66 322.425 2252.49 365.42 2158.99 365.42C2124.76 365.42 2085.08 360.504 2043.25 351.062V281.35C2084.71 292.62 2122.66 298.677 2152.05 298.677C2190.53 298.677 2211.86 287.886 2211.86 268.406C2211.86 255.514 2204.39 247.2 2184.93 238.511L2114.13 206.851C2061.11 183.169 2037.08 151.873 2037.08 106.569C2037.08 41.9278 2094.08 0.658052 2183.26 0.658052C2214.64 0.619142 2253.32 5.36604 2284.97 13.1479Z\" fill=\"#00A0B0\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-49qw4m\",\"data-border\":true,\"data-framer-name\":\"stony-brook-university-college-of-business\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lz0jfy\",\"data-framer-name\":\"g8\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:83,intrinsicWidth:380,svg:'<svg width=\"380\" height=\"83\" viewBox=\"0 0 380 83\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M68.3074 42.2459H67.187L67.0271 32.9651H68.3391C69.2995 38.2453 71.9875 40.9979 76.0839 40.9979C79.5724 40.9979 81.4922 39.2375 81.4922 36.4208C81.4922 35.0776 80.9807 34.0213 80.0839 33.3812C78.964 32.5812 77.1719 32.2609 74.836 31.6208C69.7156 30.2448 67.2516 28.9645 67.2516 24.7401C67.2516 20.7719 69.9079 18.212 74.0678 18.212C76.4042 18.212 78.4527 18.9796 80.0522 20.4515L81.3 18.5317H82.4844L82.8364 26.8525H81.5886C80.3724 22.0839 77.8443 19.6844 74.0678 19.6844C71.2516 19.6844 69.6516 21.0921 69.6516 23.5568C69.6516 26.6287 72.0516 26.9801 76.3079 28.0369C78.612 28.6125 80.5323 29.0927 82.0047 30.4369C83.2527 31.5891 83.9563 33.3172 83.9563 35.3651C83.9563 39.8135 81.1407 42.438 76.0203 42.438C73.5235 42.438 71.1875 41.5416 69.6516 40.0375L68.3074 42.2459Z\" fill=\"#211C1D\"/>\\n<path d=\"M84.2754 28.4531V27.1724C86.8989 26.9801 88.4035 24.7083 88.563 20.5479H89.9078V27.0448H94.5161V28.4531H89.7473V37.7015C89.7473 39.526 90.0994 40.4219 91.6354 40.4219C93.3958 40.4219 94.1958 39.0135 94.2917 36.0697H95.4759C95.4759 36.1973 95.4759 36.3572 95.4759 36.4853C95.4759 40.3577 93.7161 42.4062 90.4838 42.4062C87.6035 42.4062 86.8354 40.9978 86.8354 37.9896V28.4531H84.2754Z\" fill=\"#211C1D\"/>\\n<path d=\"M103.508 41.0621C106.325 41.0621 107.444 38.9818 107.444 34.4693C107.444 29.9569 106.325 27.8449 103.54 27.8449C100.756 27.8449 99.6355 29.9569 99.6355 34.4693C99.6355 38.9501 100.788 41.0621 103.508 41.0621ZM103.54 26.5324C107.764 26.5324 110.708 29.7012 110.708 34.4693C110.708 39.2376 107.732 42.3745 103.54 42.3745C99.3474 42.3745 96.3391 39.2376 96.3391 34.4693C96.3391 29.7012 99.3156 26.5324 103.54 26.5324Z\" fill=\"#211C1D\"/>\\n<path d=\"M111.475 40.518L112.851 40.4539C113.747 40.4222 113.907 40.1982 113.907 39.2695V29.5414C113.907 28.4851 113.524 28.2612 112.147 28.2612C111.859 28.2612 111.539 28.293 111.187 28.293V27.0451L116.659 26.6612V29.7331C118.1 27.6206 119.7 26.6612 121.908 26.6612C124.948 26.6612 126.74 28.4851 126.74 31.7815V39.2695C126.74 40.1982 126.932 40.4222 127.796 40.4539L129.172 40.518V41.8623H121.428V40.518L122.804 40.4539C123.636 40.4222 123.86 40.1982 123.86 39.2695V31.6534C123.86 29.7331 122.804 28.6446 120.916 28.6446C118.228 28.6446 116.82 30.4372 116.82 33.9899V39.2695C116.82 40.1664 116.947 40.4222 117.876 40.4539L119.219 40.518V41.8623H111.475V40.518Z\" fill=\"#211C1D\"/>\\n<path d=\"M130.738 29.7649C130.514 29.2852 130.258 28.9014 130.003 28.7409C129.619 28.4852 129.042 28.3889 128.274 28.3889V27.0452H135.731V28.3889C135.411 28.3889 135.155 28.3889 134.931 28.3889C134.003 28.3889 133.651 28.4852 133.651 29.0608C133.651 29.2529 133.779 29.5733 133.971 30.0529L137.363 37.8618L140.563 30.181C140.627 29.9894 140.723 29.7972 140.723 29.4774C140.723 28.581 140.084 28.4206 138.483 28.3889V27.0452H144.66V28.3889C143.475 28.3889 142.772 28.9332 142.259 30.1176L136.851 42.6941C135.187 46.5665 133.427 48.519 130.643 48.519C128.755 48.519 127.698 47.5586 127.698 46.054C127.698 44.9982 128.498 44.1665 129.619 44.1665C130.643 44.1665 131.282 44.7742 131.282 45.7348C131.282 46.279 131.026 46.5348 131.026 46.6624C131.026 46.8868 131.219 47.0144 131.602 47.0144C132.626 47.0144 134.227 45.3185 135.603 41.9905L135.827 41.478L130.738 29.7649Z\" fill=\"#211C1D\"/>\\n<path d=\"M157.201 38.8539C157.201 40.0378 157.523 40.358 158.963 40.358H161.235C165.043 40.358 166.707 39.0138 166.707 35.5575C166.707 31.9091 164.691 30.5971 160.083 30.5971H157.201V38.8539ZM157.201 29.1888H159.763C163.891 29.1888 165.715 28.229 165.715 24.6763C165.715 21.444 164.275 20.1962 160.819 20.1962H158.803C157.491 20.1962 157.201 20.5164 157.201 21.6044V29.1888ZM150.417 40.358H152.081C153.361 40.358 153.777 40.07 153.777 38.8216V21.7966C153.777 20.5482 153.361 20.2607 152.081 20.2607H150.417V18.756H162.515C167.059 18.756 169.427 20.7404 169.427 24.3888C169.427 27.1408 167.635 28.9648 164.051 29.7331C168.467 30.3096 170.611 32.2612 170.611 35.6539C170.611 39.5263 167.603 41.8623 162.131 41.8623H150.417V40.358Z\" fill=\"#211C1D\"/>\\n<path d=\"M178.033 40.4539L179.987 40.518V41.8623H171.569V40.518L173.073 40.4539C173.969 40.4222 174.129 40.1664 174.129 39.2695V29.5414C174.129 28.4206 173.713 28.293 172.209 28.293C171.921 28.293 171.601 28.293 171.249 28.293V27.0451L176.817 26.6612V31.1732C177.809 28.1331 179.443 26.5648 181.491 26.5648C183.219 26.5648 184.403 27.7487 184.403 29.2851C184.403 30.469 183.603 31.269 182.547 31.269C181.363 31.269 180.659 30.5336 180.659 29.4451C180.659 28.8695 180.883 28.3571 181.299 28.069C181.235 28.069 181.171 28.069 181.107 28.069C179.089 28.069 176.977 31.1091 176.977 35.8462V39.2695C176.977 40.1664 177.139 40.4222 178.033 40.4539Z\" fill=\"#211C1D\"/>\\n<path d=\"M191.953 41.0621C194.771 41.0621 195.889 38.9818 195.889 34.4693C195.889 29.9569 194.771 27.8449 191.985 27.8449C189.201 27.8449 188.081 29.9569 188.081 34.4693C188.081 38.9501 189.233 41.0621 191.953 41.0621ZM191.985 26.5324C196.211 26.5324 199.155 29.7012 199.155 34.4693C199.155 39.2376 196.179 42.3745 191.985 42.3745C187.793 42.3745 184.785 39.2376 184.785 34.4693C184.785 29.7012 187.761 26.5324 191.985 26.5324Z\" fill=\"#211C1D\"/>\\n<path d=\"M207.761 41.0621C210.577 41.0621 211.697 38.9818 211.697 34.4693C211.697 29.9569 210.577 27.8449 207.793 27.8449C205.009 27.8449 203.889 29.9569 203.889 34.4693C203.889 38.9501 205.041 41.0621 207.761 41.0621ZM207.793 26.5324C212.017 26.5324 214.961 29.7012 214.961 34.4693C214.961 39.2376 211.985 42.3745 207.793 42.3745C203.601 42.3745 200.592 39.2376 200.592 34.4693C200.592 29.7012 203.569 26.5324 207.793 26.5324Z\" fill=\"#211C1D\"/>\\n<path d=\"M215.025 40.518L216.465 40.4539C217.361 40.4222 217.553 40.1664 217.553 39.2695V21.0602C217.553 20.0039 217.169 19.7799 215.793 19.7799C215.537 19.7799 215.217 19.8123 214.864 19.8123V18.5638L220.465 18.1799V34.0216L225.393 29.5091C225.617 29.2851 225.777 28.9648 225.777 28.805C225.777 28.3888 225.265 28.2612 224.145 28.2612H223.121V27.0451H231.315V28.2612C231.251 28.2612 231.187 28.2612 231.123 28.2612C229.043 28.2612 227.795 29.2528 226.163 30.7575L224.529 32.2612L229.555 38.9503C230.355 40.0378 231.251 40.4539 232.723 40.518V41.8623H224.465V40.518L225.425 40.4539C226.163 40.4222 226.545 40.358 226.545 39.9742C226.545 39.7184 226.417 39.558 226.257 39.3342L222.417 34.1492L220.465 35.8779V39.2695C220.465 40.1982 220.657 40.4222 221.553 40.4539L222.961 40.518V41.8623H215.025V40.518Z\" fill=\"#211C1D\"/>\\n<path d=\"M248.273 18.7557V20.2604H246.609C245.329 20.2604 244.913 20.5801 244.913 21.7963V34.7249C244.913 38.7896 246.929 40.6458 251.313 40.6458C254.193 40.6458 256.113 39.6219 257.009 37.6697C257.425 36.7735 257.489 35.3015 257.489 33.2213V23.1405C257.489 21.188 257.073 20.2604 255.185 20.2604H253.777V18.7557H262.579V20.2604H261.393C259.569 20.2604 259.057 21.0921 259.057 23.1405V33.3489C259.057 39.6219 256.753 42.4062 250.193 42.4062C244.4 42.4062 241.456 39.8135 241.456 34.6932V21.7963C241.456 20.5801 241.104 20.2604 239.76 20.2604H237.904V18.7557H248.273Z\" fill=\"#211C1D\"/>\\n<path d=\"M261.04 40.518L262.416 40.4539C263.312 40.4222 263.472 40.1982 263.472 39.2695V29.5414C263.472 28.4851 263.088 28.2612 261.712 28.2612C261.424 28.2612 261.104 28.293 260.751 28.293V27.0451L266.224 26.6612V29.7331C267.664 27.6206 269.264 26.6612 271.472 26.6612C274.512 26.6612 276.305 28.4851 276.305 31.7815V39.2695C276.305 40.1982 276.497 40.4222 277.361 40.4539L278.737 40.518V41.8623H270.992V40.518L272.368 40.4539C273.2 40.4222 273.424 40.1982 273.424 39.2695V31.6534C273.424 29.7331 272.368 28.6446 270.48 28.6446C267.792 28.6446 266.384 30.4372 266.384 33.9899V39.2695C266.384 40.1664 266.512 40.4222 267.44 40.4539L268.784 40.518V41.8623H261.04V40.518Z\" fill=\"#211C1D\"/>\\n<path d=\"M285.232 20.6123C285.232 21.668 284.368 22.5003 283.312 22.5003C282.256 22.5003 281.424 21.6044 281.424 20.6123C281.424 19.5878 282.288 18.7242 283.312 18.7242C284.336 18.7242 285.232 19.556 285.232 20.6123ZM279.311 40.518L280.848 40.4539C281.744 40.4222 281.936 40.1664 281.936 39.2695V29.5414C281.936 28.4851 281.552 28.2612 280.176 28.2612C279.919 28.2612 279.6 28.293 279.248 28.293V27.0451L284.848 26.6612V39.2695C284.848 40.1982 285.04 40.4222 285.936 40.4539L287.344 40.518V41.8623H279.311V40.518Z\" fill=\"#211C1D\"/>\\n<path d=\"M294.608 42.3745L289.071 29.6688C288.655 28.6772 288.207 28.3886 286.991 28.3886C286.895 28.3886 286.831 28.3886 286.767 28.3886V27.0449H293.936V28.3886C292.591 28.4204 292.016 28.5168 292.016 29.125C292.016 29.3173 292.143 29.6365 292.367 30.149L295.824 38.1178L298.672 30.7573C298.864 30.2449 298.992 29.8288 298.992 29.4772C298.992 28.8048 298.384 28.3886 297.232 28.3886C297.136 28.3886 297.008 28.3886 296.88 28.3886V27.0449H303.088V28.3886C301.648 28.4204 300.976 29.125 300.368 30.6288L295.6 42.3745H294.608Z\" fill=\"#211C1D\"/>\\n<path d=\"M312.016 33.3173C312.848 33.3173 313.136 33.125 313.136 32.2928C313.136 29.3808 311.92 27.8126 309.744 27.8126C307.311 27.8126 306.128 29.6365 306.063 33.3173H312.016ZM306 35.3334C306 38.7261 307.727 40.6777 310.256 40.6777C312.464 40.6777 314.16 39.5261 315.344 37.2214L316.464 37.8616C315.056 40.8698 312.784 42.3745 309.712 42.3745C305.679 42.3745 302.767 39.2693 302.767 34.4693C302.767 29.7012 305.647 26.5324 309.712 26.5324C313.84 26.5324 316.464 29.3808 316.464 34.1173C316.464 34.3094 316.464 34.5012 316.464 34.6933H306.031C306.031 34.9173 306 35.1094 306 35.3334Z\" fill=\"#211C1D\"/>\\n<path d=\"M323.664 40.4539L325.616 40.518V41.8623H317.199V40.518L318.703 40.4539C319.599 40.4222 319.759 40.1664 319.759 39.2695V29.5414C319.759 28.4206 319.343 28.293 317.839 28.293C317.551 28.293 317.231 28.293 316.879 28.293V27.0451L322.447 26.6612V31.1732C323.44 28.1331 325.072 26.5648 327.12 26.5648C328.848 26.5648 330.032 27.7487 330.032 29.2851C330.032 30.469 329.232 31.269 328.176 31.269C326.992 31.269 326.288 30.5336 326.288 29.4451C326.288 28.8695 326.512 28.3571 326.928 28.069C326.864 28.069 326.8 28.069 326.736 28.069C324.72 28.069 322.608 31.1091 322.608 35.8462V39.2695C322.608 40.1664 322.768 40.4222 323.664 40.4539Z\" fill=\"#211C1D\"/>\\n<path d=\"M332.111 36.0052C332.911 39.3015 334.799 41.0296 337.359 41.0296C339.407 41.0296 340.72 39.9739 340.72 38.3735C340.72 36.6776 339.44 36.3255 337.359 35.9093C333.488 35.1093 331.151 34.4375 331.151 30.8848C331.151 28.2287 332.944 26.5645 335.6 26.5645C337.135 26.5645 338.319 26.8525 339.631 27.8125L340.559 26.6927H341.552V32.0052H340.559C339.664 29.2203 338.063 27.8125 335.791 27.8125C333.999 27.8125 332.879 28.8047 332.879 30.0208C332.879 31.9088 334.255 32.1333 336.879 32.6453C340.656 33.3812 342.608 34.2453 342.608 37.4453C342.608 40.5177 340.592 42.438 337.264 42.438C335.759 42.438 334.415 41.9577 333.071 40.8697L332.013 42.3416H330.959V36.0052H332.111Z\" fill=\"#211C1D\"/>\\n<path d=\"M349.581 20.6123C349.581 21.668 348.719 22.5003 347.663 22.5003C346.607 22.5003 345.775 21.6044 345.775 20.6123C345.775 19.5878 346.639 18.7242 347.663 18.7242C348.685 18.7242 349.581 19.556 349.581 20.6123ZM343.663 40.518L345.199 40.4539C346.095 40.4222 346.285 40.1664 346.285 39.2695V29.5414C346.285 28.4851 345.901 28.2612 344.527 28.2612C344.269 28.2612 343.949 28.293 343.597 28.293V27.0451L349.199 26.6612V39.2695C349.199 40.1982 349.389 40.4222 350.287 40.4539L351.695 40.518V41.8623H343.663V40.518Z\" fill=\"#211C1D\"/>\\n<path d=\"M351.373 28.4531V27.1724C353.999 26.9801 355.501 24.7083 355.663 20.5479H357.005V27.0448H361.613V28.4531H356.845V37.7015C356.845 39.526 357.197 40.4219 358.733 40.4219C360.495 40.4219 361.293 39.0135 361.389 36.0697H362.575C362.575 36.1973 362.575 36.3572 362.575 36.4853C362.575 40.3577 360.815 42.4062 357.581 42.4062C354.701 42.4062 353.933 40.9978 353.933 37.9896V28.4531H351.373Z\" fill=\"#211C1D\"/>\\n<path d=\"M365.101 29.7649C364.877 29.2852 364.62 28.9014 364.365 28.7409C363.981 28.4852 363.404 28.3889 362.637 28.3889V27.0452H370.093V28.3889C369.773 28.3889 369.517 28.3889 369.293 28.3889C368.365 28.3889 368.013 28.4852 368.013 29.0608C368.013 29.2529 368.141 29.5733 368.333 30.0529L371.725 37.8618L374.927 30.181C374.991 29.9894 375.085 29.7972 375.085 29.4774C375.085 28.581 374.445 28.4206 372.845 28.3889V27.0452H379.023V28.3889C377.837 28.3889 377.133 28.9332 376.621 30.1176L371.215 42.6941C369.549 46.5665 367.789 48.519 365.004 48.519C363.116 48.519 362.06 47.5586 362.06 46.054C362.06 44.9982 362.861 44.1665 363.981 44.1665C365.004 44.1665 365.645 44.7742 365.645 45.7348C365.645 46.279 365.389 46.5348 365.389 46.6624C365.389 46.8868 365.581 47.0144 365.965 47.0144C366.989 47.0144 368.589 45.3185 369.965 41.9905L370.189 41.478L365.101 29.7649Z\" fill=\"#211C1D\"/>\\n<path d=\"M85.8228 67.2903C85.1192 72.6673 81.6947 75.8032 76.7977 75.8032C74.3655 75.8032 72.2535 75.0673 70.5572 73.6595C67.6452 71.259 66.1733 67.8985 66.1733 63.6428C66.1733 60.41 67.1015 57.5939 68.9249 55.2897C70.9416 52.7611 73.4379 51.5777 76.6061 51.5777C78.8144 51.5777 80.7025 52.2813 82.3665 53.6897L83.5827 51.7053H84.7988L85.2144 61.0183L83.9665 61.0819C83.0067 55.7376 80.5103 52.9855 77.0223 52.9855C72.5416 52.9855 70.3332 56.5376 70.3332 63.6428C70.3332 70.7787 72.4457 74.235 77.2139 74.235C80.8624 74.235 83.3587 71.8027 84.3192 67.098L85.8228 67.2903Z\" fill=\"#A61930\"/>\\n<path d=\"M94.4298 74.3955C97.2465 74.3955 98.3657 72.3153 98.3657 67.8028C98.3657 63.2904 97.2465 61.1784 94.4615 61.1784C91.6777 61.1784 90.5574 63.2904 90.5574 67.8028C90.5574 72.2835 91.7094 74.3955 94.4298 74.3955ZM94.4615 59.8658C98.6861 59.8658 101.63 63.0346 101.63 67.8028C101.63 72.571 98.6542 75.708 94.4615 75.708C90.2694 75.708 87.261 72.571 87.261 67.8028C87.261 63.0346 90.2375 59.8658 94.4615 59.8658Z\" fill=\"#A61930\"/>\\n<path d=\"M101.981 73.851L103.517 73.787C104.413 73.7552 104.605 73.4995 104.605 72.6026V54.3932C104.605 53.337 104.221 53.113 102.845 53.113C102.589 53.113 102.269 53.1454 101.917 53.1454V51.8968L107.517 51.513V72.6026C107.517 73.5313 107.709 73.7552 108.606 73.787L110.014 73.851V75.1953H101.981V73.851Z\" fill=\"#A61930\"/>\\n<path d=\"M110.973 73.851L112.509 73.787C113.405 73.7552 113.597 73.4995 113.597 72.6026V54.3932C113.597 53.337 113.213 53.113 111.837 53.113C111.581 53.113 111.261 53.1454 110.909 53.1454V51.8968L116.509 51.513V72.6026C116.509 73.5313 116.701 73.7552 117.597 73.787L119.006 73.851V75.1953H110.973V73.851Z\" fill=\"#A61930\"/>\\n<path d=\"M128.413 66.6508C129.245 66.6508 129.533 66.4585 129.533 65.6262C129.533 62.7142 128.317 61.1461 126.141 61.1461C123.708 61.1461 122.525 62.97 122.46 66.6508H128.413ZM122.396 68.6669C122.396 72.0596 124.125 74.0111 126.653 74.0111C128.862 74.0111 130.557 72.8596 131.742 70.5549L132.862 71.195C131.453 74.2033 129.181 75.708 126.109 75.708C122.076 75.708 119.164 72.6028 119.164 67.8028C119.164 63.0346 122.044 59.8658 126.109 59.8658C130.237 59.8658 132.862 62.7142 132.862 67.4508C132.862 67.6429 132.862 67.8346 132.862 68.0268H122.429C122.429 68.2508 122.396 68.4429 122.396 68.6669Z\" fill=\"#A61930\"/>\\n<path d=\"M141.021 69.1146C143.293 69.1146 144.317 67.8667 144.317 65.1463C144.317 62.4583 143.293 61.1459 141.053 61.1459C138.812 61.1459 137.788 62.4583 137.788 65.1463C137.788 67.8345 138.812 69.1146 141.021 69.1146ZM136.413 78.1719C136.413 79.6756 137.821 80.4438 140.573 80.4438C144.445 80.4438 146.333 79.5474 146.333 77.6276C146.333 76.0594 145.213 75.5157 142.941 75.5157H138.941C137.372 75.8032 136.413 76.8594 136.413 78.1719ZM134.941 65.0182C134.941 62.0422 137.372 59.8657 141.053 59.8657C142.685 59.8657 143.997 60.2182 145.149 61.0818L145.597 60.6979C146.589 59.8657 147.453 59.3542 148.477 59.3542C149.725 59.3542 150.397 60.0578 150.397 61.3381C150.397 62.1381 149.789 62.7141 148.957 62.7141C147.325 62.7141 147.613 60.9865 147.229 60.9865C147.101 60.9865 146.941 61.1141 146.685 61.3381L146.013 61.8501C146.813 62.7141 147.165 63.7063 147.165 65.0182C147.165 68.187 144.605 70.2667 140.157 70.2667C137.885 70.2667 136.637 70.4271 136.637 71.7068C136.637 72.6349 137.372 72.8912 138.941 72.8912C139.037 72.8912 139.133 72.8912 139.228 72.8912L141.821 72.8266C142.109 72.8266 142.365 72.8266 142.589 72.8266C143.037 72.8266 143.325 72.8266 143.485 72.8266C146.941 72.8266 148.573 73.9151 148.573 76.7636C148.573 79.9953 145.757 81.8198 140.349 81.8198C135.997 81.8198 133.756 80.5078 133.756 78.4917C133.756 77.1151 134.908 75.9313 136.989 75.4828C135.26 75.0672 134.492 74.2032 134.492 72.6349C134.492 70.9386 135.676 69.7224 137.661 69.4032C135.836 68.5709 134.941 67.1307 134.941 65.0182Z\" fill=\"#A61930\"/>\\n<path d=\"M159.292 66.6508C160.124 66.6508 160.413 66.4585 160.413 65.6262C160.413 62.7142 159.196 61.1461 157.02 61.1461C154.588 61.1461 153.404 62.97 153.34 66.6508H159.292ZM153.276 68.6669C153.276 72.0596 155.004 74.0111 157.532 74.0111C159.74 74.0111 161.437 72.8596 162.621 70.5549L163.741 71.195C162.333 74.2033 160.06 75.708 156.988 75.708C152.956 75.708 150.044 72.6028 150.044 67.8028C150.044 63.0346 152.924 59.8658 156.988 59.8658C161.116 59.8658 163.741 62.7142 163.741 67.4508C163.741 67.6429 163.741 67.8346 163.741 68.0268H153.308C153.308 68.2508 153.276 68.4429 153.276 68.6669Z\" fill=\"#A61930\"/>\\n<path d=\"M177.183 74.4292C174.787 74.4292 174.284 72.5625 174.284 70.9958C174.284 68.0506 175.579 59.9651 179.749 59.9651C182.145 59.9651 182.648 61.8682 182.648 63.4646C182.648 66.3927 181.353 74.4292 177.183 74.4292ZM185.715 65.9974C185.715 62.4594 183.669 58.699 179.883 58.699C174.776 58.699 171.217 63.8448 171.217 68.4635C171.217 71.9693 173.261 75.6953 177.049 75.6953C182.156 75.6953 185.715 70.5844 185.715 65.9974Z\" fill=\"#A61930\"/>\\n<path d=\"M198.715 50.5012C194.776 50.5012 192.139 55.0679 191.056 59.0324H187.553L187.14 60.7658H190.601C189.887 63.4907 189.368 66.233 188.867 68.8866C188.593 70.3376 188.321 71.7767 188.021 73.1949C187.973 73.422 187.921 73.6991 187.861 74.0137C187.408 76.4199 186.463 81.4272 184.019 81.4272C183.685 81.4272 183.685 81.3439 183.685 81.2934C183.685 81.2225 183.751 81.0819 183.813 80.9465C183.935 80.6887 184.085 80.3673 184.085 79.9944C184.085 79.2559 183.543 78.4611 182.352 78.4611C181.519 78.4611 180.619 79.1105 180.619 80.1611C180.619 81.9012 182.105 82.6934 183.485 82.6934C186.973 82.6934 189.621 78.41 191.58 69.5991L193.517 60.7658H197.184L197.555 59.0324H193.852C194.413 56.2278 195.715 51.7679 198.315 51.7679C199.015 51.7679 199.015 51.8642 199.015 51.9346C199.015 52.0428 198.944 52.148 198.844 52.2939C198.677 52.5398 198.448 52.8762 198.448 53.4674C198.448 54.5204 199.399 55.0002 200.281 55.0002C201.408 55.0002 201.915 53.9674 201.915 53.234C201.915 51.2168 200.191 50.5012 198.715 50.5012Z\" fill=\"#A61930\"/>\\n<path d=\"M213.068 72.187C213.068 73.3708 213.388 73.6912 214.828 73.6912H217.1C220.909 73.6912 222.573 72.3469 222.573 68.8906C222.573 65.2422 220.556 63.9302 215.948 63.9302H213.068V72.187ZM213.068 62.5219H215.628C219.756 62.5219 221.581 61.562 221.581 58.0094C221.581 54.7771 220.14 53.5292 216.684 53.5292H214.668C213.356 53.5292 213.068 53.8495 213.068 54.9375V62.5219ZM206.283 73.6912H207.947C209.228 73.6912 209.644 73.4031 209.644 72.1547V55.1296C209.644 53.8812 209.228 53.5938 207.947 53.5938H206.283V52.0891H218.38C222.925 52.0891 225.293 54.0735 225.293 57.7219C225.293 60.4739 223.5 62.2979 219.917 63.0662C224.333 63.6427 226.477 65.5943 226.477 68.987C226.477 72.8594 223.469 75.1953 217.997 75.1953H206.283V73.6912Z\" fill=\"#A61930\"/>\\n<path d=\"M238.988 75.5793V72.6351C237.548 74.7475 235.948 75.7397 233.74 75.7397C230.699 75.7397 228.907 73.9153 228.907 70.6194V62.8746C228.907 61.8183 228.523 61.5945 227.147 61.5945C226.859 61.5945 226.539 61.6262 226.187 61.6262V60.3783L231.787 59.9945V70.747C231.787 72.6673 232.844 73.7554 234.732 73.7554C237.356 73.7554 238.828 72.0272 238.828 68.6669V62.8746C238.828 61.8183 238.444 61.5945 237.036 61.5945C236.748 61.5945 236.428 61.6262 236.076 61.6262V60.3783L241.74 59.9945V72.6991C241.74 73.7554 242.124 73.9793 243.5 73.9793C243.788 73.9793 244.109 73.9475 244.46 73.9475V75.1955L238.988 75.5793Z\" fill=\"#A61930\"/>\\n<path d=\"M246.667 69.3387C247.468 72.635 249.356 74.3632 251.916 74.3632C253.964 74.3632 255.276 73.3074 255.276 71.7069C255.276 70.0111 253.996 69.659 251.916 69.2428C248.044 68.4428 245.707 67.771 245.707 64.2183C245.707 61.5622 247.5 59.898 250.156 59.898C251.692 59.898 252.876 60.186 254.188 61.146L255.116 60.0262H256.108V65.3387H255.116C254.22 62.5538 252.62 61.146 250.348 61.146C248.556 61.146 247.436 62.1382 247.436 63.3543C247.436 65.2423 248.811 65.4668 251.436 65.9788C255.212 66.7147 257.164 67.5788 257.164 70.7788C257.164 73.8512 255.148 75.7715 251.82 75.7715C250.316 75.7715 248.972 75.2913 247.627 74.2033L246.571 75.6751H245.515V69.3387H246.667Z\" fill=\"#A61930\"/>\\n<path d=\"M264.139 53.9454C264.139 55.0011 263.275 55.8334 262.219 55.8334C261.163 55.8334 260.331 54.9375 260.331 53.9454C260.331 52.9214 261.195 52.0572 262.219 52.0572C263.243 52.0572 264.139 52.8891 264.139 53.9454ZM258.219 73.851L259.755 73.787C260.651 73.7552 260.843 73.4995 260.843 72.6026V62.8744C260.843 61.8182 260.459 61.5943 259.083 61.5943C258.827 61.5943 258.507 61.626 258.155 61.626V60.3782L263.755 59.9943V72.6026C263.755 73.5313 263.947 73.7552 264.843 73.787L266.251 73.851V75.1953H258.219V73.851Z\" fill=\"#A61930\"/>\\n<path d=\"M267.307 73.851L268.683 73.787C269.579 73.7552 269.739 73.5313 269.739 72.6026V62.8744C269.739 61.8182 269.355 61.5943 267.979 61.5943C267.691 61.5943 267.371 61.626 267.019 61.626V60.3782L272.491 59.9943V63.0662C273.931 60.9536 275.531 59.9943 277.74 59.9943C280.779 59.9943 282.572 61.8182 282.572 65.1146V72.6026C282.572 73.5313 282.764 73.7552 283.628 73.787L285.004 73.851V75.1953H277.259V73.851L278.636 73.787C279.468 73.7552 279.692 73.5313 279.692 72.6026V64.9864C279.692 63.0662 278.636 61.9776 276.748 61.9776C274.059 61.9776 272.651 63.7703 272.651 67.323V72.6026C272.651 73.4995 272.779 73.7552 273.707 73.787L275.051 73.851V75.1953H267.307V73.851Z\" fill=\"#A61930\"/>\\n<path d=\"M294.412 66.6508C295.244 66.6508 295.532 66.4585 295.532 65.6262C295.532 62.7142 294.316 61.1461 292.139 61.1461C289.707 61.1461 288.524 62.97 288.459 66.6508H294.412ZM288.395 68.6669C288.395 72.0596 290.123 74.0111 292.652 74.0111C294.86 74.0111 296.556 72.8596 297.74 70.5549L298.86 71.195C297.452 74.2033 295.18 75.708 292.108 75.708C288.075 75.708 285.163 72.6028 285.163 67.8028C285.163 63.0346 288.043 59.8658 292.108 59.8658C296.236 59.8658 298.86 62.7142 298.86 67.4508C298.86 67.6429 298.86 67.8346 298.86 68.0268H288.427C288.427 68.2508 288.395 68.4429 288.395 68.6669Z\" fill=\"#A61930\"/>\\n<path d=\"M301.707 69.3387C302.507 72.635 304.395 74.3632 306.955 74.3632C309.003 74.3632 310.316 73.3074 310.316 71.7069C310.316 70.0111 309.036 69.659 306.955 69.2428C303.084 68.4428 300.747 67.771 300.747 64.2183C300.747 61.5622 302.539 59.898 305.195 59.898C306.731 59.898 307.916 60.186 309.228 61.146L310.156 60.0262H311.148V65.3387H310.156C309.26 62.5538 307.66 61.146 305.388 61.146C303.595 61.146 302.475 62.1382 302.475 63.3543C302.475 65.2423 303.851 65.4668 306.475 65.9788C310.252 66.7147 312.204 67.5788 312.204 70.7788C312.204 73.8512 310.188 75.7715 306.86 75.7715C305.356 75.7715 304.011 75.2913 302.667 74.2033L301.611 75.6751H300.555V69.3387H301.707Z\" fill=\"#A61930\"/>\\n<path d=\"M314.987 69.3387C315.787 72.635 317.675 74.3632 320.235 74.3632C322.283 74.3632 323.595 73.3074 323.595 71.7069C323.595 70.0111 322.315 69.659 320.235 69.2428C316.363 68.4428 314.027 67.771 314.027 64.2183C314.027 61.5622 315.819 59.898 318.475 59.898C320.011 59.898 321.195 60.186 322.507 61.146L323.435 60.0262H324.427V65.3387H323.435C322.539 62.5538 320.939 61.146 318.667 61.146C316.875 61.146 315.755 62.1382 315.755 63.3543C315.755 65.2423 317.131 65.4668 319.755 65.9788C323.531 66.7147 325.483 67.5788 325.483 70.7788C325.483 73.8512 323.467 75.7715 320.139 75.7715C318.635 75.7715 317.291 75.2913 315.945 74.2033L314.889 75.6751H313.833V69.3387H314.987Z\" fill=\"#A61930\"/>\\n<path d=\"M54.0084 6.68302C38.9536 -2.50711 15.2312 -1.95605 0.00316965 6.68302V30.7809C-0.179122 43.7596 8.17765 55.8461 19.4823 61.4304C21.9719 62.656 24.2755 63.506 27.0084 64.1465C29.7391 63.506 32.0422 62.656 34.5307 61.4304C45.8312 55.8497 54.1922 43.7596 54.0058 30.7809L54.0084 6.68302Z\" fill=\"white\"/>\\n<path d=\"M45.2687 53.1796L33.9015 0.32905C33.425 0.28105 32.9447 0.252385 32.4666 0.214385L42.016 56.4019C43.1671 55.4009 44.253 54.3228 45.2687 53.1796Z\" fill=\"#A61930\"/>\\n<path d=\"M53.9535 32.7065L40.8311 1.47733C40.3286 1.3628 39.8207 1.26533 39.313 1.16479L53.2218 38.0361C53.6218 36.294 53.8625 34.5112 53.9535 32.7065Z\" fill=\"#A61930\"/>\\n<path d=\"M34.5306 61.4276C35.3885 61.0031 36.2234 60.5292 37.0463 60.0333L30.5306 0.0681556C30.0177 0.0448222 29.503 0.0473568 28.9863 0.0344235L32.9379 62.1646C33.4655 61.9312 33.9917 61.6932 34.5306 61.4276Z\" fill=\"#A61930\"/>\\n<path d=\"M51.1349 44.1716L37.3067 0.78721C36.8234 0.70801 36.3363 0.646542 35.8521 0.578942L48.9578 48.2456C49.7728 46.9372 50.5021 45.5763 51.1349 44.1716Z\" fill=\"#A61930\"/>\\n<path d=\"M54.0097 6.68008C50.6879 4.65408 46.9327 3.12808 42.9551 2.03168L54.0056 25.1812L54.0097 6.68008Z\" fill=\"#A61930\"/>\\n<path d=\"M16.6931 28.7039L18.2026 33.3378L14.2608 30.4738L10.3275 33.3378L11.8337 28.7039L7.91447 25.8498H12.7598L14.2608 21.243L15.7712 25.8498H20.6098L16.6931 28.7039ZM0.00300832 6.68044V30.7784C-0.181887 43.7575 8.17644 55.8462 19.4811 61.4279C21.9692 62.6544 24.2753 63.5034 27.0056 64.144V-0.00435409C17.3119 0.0737792 7.59936 2.36951 0.00300832 6.68044Z\" fill=\"#A61930\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zmaur5\",\"data-border\":true,\"data-framer-name\":\"united-way-of-long-island\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:328,intrinsicWidth:601,pixelHeight:656,pixelWidth:1202,sizes:\"165px\",src:\"https://framerusercontent.com/images/UkZmyOceCkGePbNWIcsnlnlEY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/UkZmyOceCkGePbNWIcsnlnlEY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UkZmyOceCkGePbNWIcsnlnlEY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UkZmyOceCkGePbNWIcsnlnlEY.jpg 1202w\"},className:\"framer-1jyf9fr\",\"data-framer-name\":\"UWLI\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-182c3jh\",\"data-border\":true,\"data-framer-name\":\"verizon-wireless\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:482.5,intrinsicWidth:1280,pixelHeight:965,pixelWidth:2560,sizes:\"221px\",src:\"https://framerusercontent.com/images/JqtUnXNmrxXnfsVaOTsbWh0ZSBM.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/JqtUnXNmrxXnfsVaOTsbWh0ZSBM.png?scale-down-to=512 512w,https://framerusercontent.com/images/JqtUnXNmrxXnfsVaOTsbWh0ZSBM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JqtUnXNmrxXnfsVaOTsbWh0ZSBM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JqtUnXNmrxXnfsVaOTsbWh0ZSBM.png 2560w\"},className:\"framer-m44ked\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hm386p\",\"data-border\":true,\"data-framer-name\":\"women-in-cleantech-and-sustainability\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:1e3,pixelWidth:1e3,sizes:\"337px\",src:\"https://framerusercontent.com/images/9mbfc0kq8aXI9rzgzLYdzPyDIic.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/9mbfc0kq8aXI9rzgzLYdzPyDIic.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9mbfc0kq8aXI9rzgzLYdzPyDIic.jpg 1000w\"},className:\"framer-1xk6py0\",\"data-framer-name\":\"WOMEN-IN-CLEANTECH-AND-SUSTAINABILITY-1x1-1\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rtyz2\",\"data-border\":true,\"data-framer-name\":\"world-view-television\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:600,pixelHeight:600,pixelWidth:900,sizes:\"162px\",src:\"https://framerusercontent.com/images/FCWVhSlvuivIUlCoSzyZrszN8.png\",srcSet:\"https://framerusercontent.com/images/FCWVhSlvuivIUlCoSzyZrszN8.png?scale-down-to=512 512w,https://framerusercontent.com/images/FCWVhSlvuivIUlCoSzyZrszN8.png 900w\"},className:\"framer-adcf18\",\"data-framer-name\":\"WVT-LOGO\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5ljkkf\",\"data-border\":true,\"data-framer-name\":\"yip\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1234.5,intrinsicWidth:1350,pixelHeight:2469,pixelWidth:2700,sizes:\"99px\",src:\"https://framerusercontent.com/images/mFDveFWifXubmLoLxXdG6Y7vyIM.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/mFDveFWifXubmLoLxXdG6Y7vyIM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/mFDveFWifXubmLoLxXdG6Y7vyIM.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mFDveFWifXubmLoLxXdG6Y7vyIM.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mFDveFWifXubmLoLxXdG6Y7vyIM.jpeg 2700w\"},className:\"framer-1sh80mv\",\"data-framer-name\":\"Yiptv\"})})],speed:65,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d2x_0gPX3:{width:\"1200px\"},KaccGHxhE:{width:\"360px\",y:(componentViewport?.y||0)+0+0+183+2164},L8KAwymnf:{width:\"390px\",y:(componentViewport?.y||0)+0+0+183+2174},NTWgQMLbj:{width:\"810px\",y:(componentViewport?.y||0)+0+0+183+1660},W90MJYqLi:{width:\"428px\",y:(componentViewport?.y||0)+0+0+183+2174}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:852,width:\"1440px\",y:(componentViewport?.y||0)+0+0+136+1974,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lq0mgz-container\",id:elementId1,nodeId:\"YSFkbEEWr\",ref:ref2,scopeId:\"XZZPCL_vI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d2x_0gPX3:{variant:\"BSg4U_tDl\"},KaccGHxhE:{variant:\"eMcQnmnVr\"},L8KAwymnf:{variant:\"TFWXgjMEb\"},NTWgQMLbj:{variant:\"cT23aXbKX\"},W90MJYqLi:{variant:\"dBhuXMuv6\"}},children:/*#__PURE__*/_jsx(Blog1440,{height:\"100%\",id:\"YSFkbEEWr\",layoutId:\"YSFkbEEWr\",style:{width:\"100%\"},variant:\"jlZJz2oPS\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KaccGHxhE:{y:(componentViewport?.y||0)+0+3199},L8KAwymnf:{y:(componentViewport?.y||0)+0+3209},NTWgQMLbj:{y:(componentViewport?.y||0)+0+2695},W90MJYqLi:{y:(componentViewport?.y||0)+0+3209}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:306,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2962,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nwlwjo-container\",nodeId:\"qd31ZwQy_\",scopeId:\"XZZPCL_vI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d2x_0gPX3:{variant:\"NCUJbybJM\"},KaccGHxhE:{variant:\"FGn7yAC1C\"},L8KAwymnf:{variant:\"FGn7yAC1C\"},NTWgQMLbj:{variant:\"pjLAcbTXu\"},W90MJYqLi:{variant:\"FGn7yAC1C\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"qd31ZwQy_\",layoutId:\"qd31ZwQy_\",style:{width:\"100%\"},variant:\"BKCxhtGrV\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Wd1xP.framer-hgbd3f, .framer-Wd1xP .framer-hgbd3f { display: block; }\",\".framer-Wd1xP.framer-in0a2s { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-Wd1xP .framer-dptsm5-container { flex: none; height: 183px; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; z-index: 5; }\",\".framer-Wd1xP .framer-1ds1i6f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 136px 0px 0px 0px; position: relative; width: 1440px; }\",\".framer-Wd1xP .framer-khnxbf-container { flex: none; height: 714px; position: relative; width: 100%; z-index: 0; }\",\".framer-Wd1xP .framer-zkt6ef { align-content: center; align-items: center; background-color: var(--token-c8a9ebaf-3e65-4a53-83d3-9146567dd84d, #f5f9fa); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: 283px; justify-content: center; overflow: visible; padding: 0px 0px 99px 0px; position: relative; width: 1440px; z-index: 8; }\",\".framer-Wd1xP .framer-1xllo5f-container, .framer-Wd1xP .framer-sq2cjr-container { flex: none; height: 258px; position: relative; width: 410px; }\",\".framer-Wd1xP .framer-1q3fu0o-container, .framer-Wd1xP .framer-1u1n6mn-container { flex: none; height: auto; position: relative; width: 243px; }\",\".framer-Wd1xP .framer-flulyv-container, .framer-Wd1xP .framer-6z87h1-container, .framer-Wd1xP .framer-12zoclj-container, .framer-Wd1xP .framer-1uszb5u-container, .framer-Wd1xP .framer-1psz8sr-container, .framer-Wd1xP .framer-8phj45-container, .framer-Wd1xP .framer-ja3icv-container, .framer-Wd1xP .framer-1uy5zyy-container, .framer-Wd1xP .framer-hug7o-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Wd1xP .framer-14tment-container { flex: none; height: auto; position: relative; width: 263px; }\",\".framer-Wd1xP .framer-lewhiy-container { flex: none; height: auto; position: relative; width: 390px; }\",\".framer-Wd1xP .framer-1r66ydl-container { flex: none; height: 258px; position: relative; width: 458px; }\",\".framer-Wd1xP .framer-1hc9gt6-container, .framer-Wd1xP .framer-lq0mgz-container, .framer-Wd1xP .framer-1nwlwjo-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Wd1xP .framer-1b2vzhg { --border-bottom-width: 1px; --border-color: rgba(20, 20, 20, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-Wd1xP .framer-iamn3s-container { flex: none; height: 160px; position: relative; width: 100%; }\",\".framer-Wd1xP .framer-1rwb1lp, .framer-Wd1xP .framer-dbfapb, .framer-Wd1xP .framer-18cgn0f, .framer-Wd1xP .framer-mua76u, .framer-Wd1xP .framer-8g5u8s, .framer-Wd1xP .framer-e3ss41, .framer-Wd1xP .framer-9arhab, .framer-Wd1xP .framer-14srr2r, .framer-Wd1xP .framer-jq35nm, .framer-Wd1xP .framer-ikxeau, .framer-Wd1xP .framer-le6uuf, .framer-Wd1xP .framer-49qw4m, .framer-Wd1xP .framer-182c3jh, .framer-Wd1xP .framer-1hm386p, .framer-Wd1xP .framer-1rtyz2 { --border-bottom-width: 1px; --border-color: rgba(20, 20, 20, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 160px; justify-content: center; padding: 0px; position: relative; width: 339px; }\",\".framer-Wd1xP .framer-1p9upa5 { aspect-ratio: 1.098962834917891 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 100px); overflow: visible; position: relative; width: 110px; }\",\".framer-Wd1xP .framer-dx9a0e, .framer-Wd1xP .framer-1bffrve, .framer-Wd1xP .framer-yusnpp, .framer-Wd1xP .framer-j1aup9, .framer-Wd1xP .framer-p7wdkn, .framer-Wd1xP .framer-1iqh5zu, .framer-Wd1xP .framer-1qkhtaf, .framer-Wd1xP .framer-nlkinz, .framer-Wd1xP .framer-1o9zm9q, .framer-Wd1xP .framer-gu3x11, .framer-Wd1xP .framer-gxh0a4, .framer-Wd1xP .framer-1y9r7wl, .framer-Wd1xP .framer-1nmpnat, .framer-Wd1xP .framer-16mkep8, .framer-Wd1xP .framer-zmaur5, .framer-Wd1xP .framer-5ljkkf { --border-bottom-width: 1px; --border-color: rgba(20, 20, 20, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 160px; justify-content: center; padding: 0px; position: relative; width: 260px; }\",\".framer-Wd1xP .framer-te80rf { -webkit-filter: grayscale(0); aspect-ratio: 1 / 1; filter: grayscale(0); flex: none; height: var(--framer-aspect-ratio-supported, 85px); position: relative; width: 85px; }\",\".framer-Wd1xP .framer-1gubqh2 { aspect-ratio: 0.8910505836575876 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 107px); overflow: visible; position: relative; width: 95px; }\",\".framer-Wd1xP .framer-jiyk90 { aspect-ratio: 1.0024425989252566 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 100px); overflow: visible; position: relative; width: 100px; }\",\".framer-Wd1xP .framer-3x81wn { -webkit-filter: grayscale(0); aspect-ratio: 2 / 1; filter: grayscale(0); flex: none; height: var(--framer-aspect-ratio-supported, 75px); overflow: visible; position: relative; width: 150px; }\",\".framer-Wd1xP .framer-pnpk0w { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 122px); overflow: visible; position: relative; width: 122px; }\",\".framer-Wd1xP .framer-10nbcgi { -webkit-filter: grayscale(0); aspect-ratio: 3 / 1; filter: grayscale(0); flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; width: 180px; }\",\".framer-Wd1xP .framer-db3kqz { aspect-ratio: 9.835443037974683 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); overflow: visible; position: relative; width: 256px; }\",\".framer-Wd1xP .framer-7zay4c { -webkit-filter: grayscale(0); aspect-ratio: 2.6758544652701213 / 1; filter: grayscale(0); flex: none; height: var(--framer-aspect-ratio-supported, 65px); position: relative; width: 174px; }\",\".framer-Wd1xP .framer-1wgn2ar { aspect-ratio: 1.6653061224489796 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 81px); position: relative; width: 135px; }\",\".framer-Wd1xP .framer-omkji8 { -webkit-filter: grayscale(0); filter: grayscale(0); flex: none; height: 44px; position: relative; width: 246px; }\",\".framer-Wd1xP .framer-1ejjrkn { aspect-ratio: 3.2612612612612613 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); overflow: visible; position: relative; width: 181px; }\",\".framer-Wd1xP .framer-1plh4z1 { -webkit-filter: grayscale(0); aspect-ratio: 1.611764705882353 / 1; filter: grayscale(0); flex: none; height: var(--framer-aspect-ratio-supported, 75px); position: relative; width: 121px; }\",\".framer-Wd1xP .framer-14je5xg { -webkit-filter: grayscale(0); aspect-ratio: 2.3076923076923075 / 1; filter: grayscale(0); flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 115px; }\",\".framer-Wd1xP .framer-vmrw57 { aspect-ratio: 3.4096385108100042 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 62px); position: relative; width: 212px; }\",\".framer-Wd1xP .framer-1tccgty { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 138px); overflow: visible; position: relative; width: 138px; }\",\".framer-Wd1xP .framer-1vbqkgn { aspect-ratio: 1.0005640157924423 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 88px); overflow: visible; position: relative; width: 88px; }\",\".framer-Wd1xP .framer-1r480oe { aspect-ratio: 1.0050251256281406 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 100px); overflow: visible; position: relative; width: 100px; }\",\".framer-Wd1xP .framer-kjzz1s { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 152px); overflow: visible; position: relative; width: 152px; }\",\".framer-Wd1xP .framer-k72zv1 { aspect-ratio: 1.8398692810457515 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 90px); overflow: visible; position: relative; width: 165px; }\",\".framer-Wd1xP .framer-1mksyz3 { aspect-ratio: 1.5657370517928286 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); overflow: visible; position: relative; width: 124px; }\",\".framer-Wd1xP .framer-gmwpnc { -webkit-filter: grayscale(0); aspect-ratio: 1.5605749486652978 / 1; filter: grayscale(0); flex: none; height: var(--framer-aspect-ratio-supported, 90px); position: relative; width: 140px; }\",\".framer-Wd1xP .framer-8uizhx { aspect-ratio: 4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 62px); position: relative; width: 248px; }\",\".framer-Wd1xP .framer-1mezayj { -webkit-filter: grayscale(0); aspect-ratio: 2.2028985507246377 / 1; filter: grayscale(0); flex: none; height: var(--framer-aspect-ratio-supported, 88px); overflow: visible; position: relative; width: 194px; }\",\".framer-Wd1xP .framer-1uybt9v { aspect-ratio: 6.316939890710382 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 158px; }\",\".framer-Wd1xP .framer-1lz0jfy { aspect-ratio: 4.604166666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 62px); position: relative; width: 285px; }\",\".framer-Wd1xP .framer-1jyf9fr { aspect-ratio: 1.8323170731707317 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 90px); overflow: visible; position: relative; width: 165px; }\",\".framer-Wd1xP .framer-m44ked { aspect-ratio: 2.6528497409326426 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 83px); overflow: visible; position: relative; width: 221px; }\",\".framer-Wd1xP .framer-1xk6py0 { aspect-ratio: 1 / 1; flex: none; height: 337px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 337px); }\",\".framer-Wd1xP .framer-adcf18 { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 108px); overflow: visible; position: relative; width: 162px; }\",\".framer-Wd1xP .framer-1sh80mv { aspect-ratio: 1.0935601458080195 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 91px); overflow: visible; position: relative; width: 99px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Wd1xP.framer-in0a2s, .framer-Wd1xP .framer-1ds1i6f, .framer-Wd1xP .framer-zkt6ef, .framer-Wd1xP .framer-1b2vzhg, .framer-Wd1xP .framer-1rwb1lp, .framer-Wd1xP .framer-dx9a0e, .framer-Wd1xP .framer-dbfapb, .framer-Wd1xP .framer-18cgn0f, .framer-Wd1xP .framer-1bffrve, .framer-Wd1xP .framer-mua76u, .framer-Wd1xP .framer-yusnpp, .framer-Wd1xP .framer-8g5u8s, .framer-Wd1xP .framer-j1aup9, .framer-Wd1xP .framer-e3ss41, .framer-Wd1xP .framer-9arhab, .framer-Wd1xP .framer-p7wdkn, .framer-Wd1xP .framer-1iqh5zu, .framer-Wd1xP .framer-1qkhtaf, .framer-Wd1xP .framer-14srr2r, .framer-Wd1xP .framer-jq35nm, .framer-Wd1xP .framer-nlkinz, .framer-Wd1xP .framer-ikxeau, .framer-Wd1xP .framer-1o9zm9q, .framer-Wd1xP .framer-gu3x11, .framer-Wd1xP .framer-gxh0a4, .framer-Wd1xP .framer-1y9r7wl, .framer-Wd1xP .framer-le6uuf, .framer-Wd1xP .framer-1nmpnat, .framer-Wd1xP .framer-16mkep8, .framer-Wd1xP .framer-49qw4m, .framer-Wd1xP .framer-zmaur5, .framer-Wd1xP .framer-182c3jh, .framer-Wd1xP .framer-1hm386p, .framer-Wd1xP .framer-1rtyz2, .framer-Wd1xP .framer-5ljkkf { gap: 0px; } .framer-Wd1xP.framer-in0a2s > *, .framer-Wd1xP .framer-1ds1i6f > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Wd1xP.framer-in0a2s > :first-child, .framer-Wd1xP .framer-1ds1i6f > :first-child, .framer-Wd1xP .framer-1b2vzhg > :first-child { margin-top: 0px; } .framer-Wd1xP.framer-in0a2s > :last-child, .framer-Wd1xP .framer-1ds1i6f > :last-child, .framer-Wd1xP .framer-1b2vzhg > :last-child { margin-bottom: 0px; } .framer-Wd1xP .framer-zkt6ef > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-Wd1xP .framer-zkt6ef > :first-child, .framer-Wd1xP .framer-1rwb1lp > :first-child, .framer-Wd1xP .framer-dx9a0e > :first-child, .framer-Wd1xP .framer-dbfapb > :first-child, .framer-Wd1xP .framer-18cgn0f > :first-child, .framer-Wd1xP .framer-1bffrve > :first-child, .framer-Wd1xP .framer-mua76u > :first-child, .framer-Wd1xP .framer-yusnpp > :first-child, .framer-Wd1xP .framer-8g5u8s > :first-child, .framer-Wd1xP .framer-j1aup9 > :first-child, .framer-Wd1xP .framer-e3ss41 > :first-child, .framer-Wd1xP .framer-9arhab > :first-child, .framer-Wd1xP .framer-p7wdkn > :first-child, .framer-Wd1xP .framer-1iqh5zu > :first-child, .framer-Wd1xP .framer-1qkhtaf > :first-child, .framer-Wd1xP .framer-14srr2r > :first-child, .framer-Wd1xP .framer-jq35nm > :first-child, .framer-Wd1xP .framer-nlkinz > :first-child, .framer-Wd1xP .framer-ikxeau > :first-child, .framer-Wd1xP .framer-1o9zm9q > :first-child, .framer-Wd1xP .framer-gu3x11 > :first-child, .framer-Wd1xP .framer-gxh0a4 > :first-child, .framer-Wd1xP .framer-1y9r7wl > :first-child, .framer-Wd1xP .framer-le6uuf > :first-child, .framer-Wd1xP .framer-1nmpnat > :first-child, .framer-Wd1xP .framer-16mkep8 > :first-child, .framer-Wd1xP .framer-49qw4m > :first-child, .framer-Wd1xP .framer-zmaur5 > :first-child, .framer-Wd1xP .framer-182c3jh > :first-child, .framer-Wd1xP .framer-1hm386p > :first-child, .framer-Wd1xP .framer-1rtyz2 > :first-child, .framer-Wd1xP .framer-5ljkkf > :first-child { margin-left: 0px; } .framer-Wd1xP .framer-zkt6ef > :last-child, .framer-Wd1xP .framer-1rwb1lp > :last-child, .framer-Wd1xP .framer-dx9a0e > :last-child, .framer-Wd1xP .framer-dbfapb > :last-child, .framer-Wd1xP .framer-18cgn0f > :last-child, .framer-Wd1xP .framer-1bffrve > :last-child, .framer-Wd1xP .framer-mua76u > :last-child, .framer-Wd1xP .framer-yusnpp > :last-child, .framer-Wd1xP .framer-8g5u8s > :last-child, .framer-Wd1xP .framer-j1aup9 > :last-child, .framer-Wd1xP .framer-e3ss41 > :last-child, .framer-Wd1xP .framer-9arhab > :last-child, .framer-Wd1xP .framer-p7wdkn > :last-child, .framer-Wd1xP .framer-1iqh5zu > :last-child, .framer-Wd1xP .framer-1qkhtaf > :last-child, .framer-Wd1xP .framer-14srr2r > :last-child, .framer-Wd1xP .framer-jq35nm > :last-child, .framer-Wd1xP .framer-nlkinz > :last-child, .framer-Wd1xP .framer-ikxeau > :last-child, .framer-Wd1xP .framer-1o9zm9q > :last-child, .framer-Wd1xP .framer-gu3x11 > :last-child, .framer-Wd1xP .framer-gxh0a4 > :last-child, .framer-Wd1xP .framer-1y9r7wl > :last-child, .framer-Wd1xP .framer-le6uuf > :last-child, .framer-Wd1xP .framer-1nmpnat > :last-child, .framer-Wd1xP .framer-16mkep8 > :last-child, .framer-Wd1xP .framer-49qw4m > :last-child, .framer-Wd1xP .framer-zmaur5 > :last-child, .framer-Wd1xP .framer-182c3jh > :last-child, .framer-Wd1xP .framer-1hm386p > :last-child, .framer-Wd1xP .framer-1rtyz2 > :last-child, .framer-Wd1xP .framer-5ljkkf > :last-child { margin-right: 0px; } .framer-Wd1xP .framer-1b2vzhg > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Wd1xP .framer-1rwb1lp > *, .framer-Wd1xP .framer-dx9a0e > *, .framer-Wd1xP .framer-dbfapb > *, .framer-Wd1xP .framer-18cgn0f > *, .framer-Wd1xP .framer-1bffrve > *, .framer-Wd1xP .framer-mua76u > *, .framer-Wd1xP .framer-yusnpp > *, .framer-Wd1xP .framer-8g5u8s > *, .framer-Wd1xP .framer-j1aup9 > *, .framer-Wd1xP .framer-e3ss41 > *, .framer-Wd1xP .framer-9arhab > *, .framer-Wd1xP .framer-p7wdkn > *, .framer-Wd1xP .framer-1iqh5zu > *, .framer-Wd1xP .framer-1qkhtaf > *, .framer-Wd1xP .framer-14srr2r > *, .framer-Wd1xP .framer-jq35nm > *, .framer-Wd1xP .framer-nlkinz > *, .framer-Wd1xP .framer-ikxeau > *, .framer-Wd1xP .framer-1o9zm9q > *, .framer-Wd1xP .framer-gu3x11 > *, .framer-Wd1xP .framer-gxh0a4 > *, .framer-Wd1xP .framer-1y9r7wl > *, .framer-Wd1xP .framer-le6uuf > *, .framer-Wd1xP .framer-1nmpnat > *, .framer-Wd1xP .framer-16mkep8 > *, .framer-Wd1xP .framer-49qw4m > *, .framer-Wd1xP .framer-zmaur5 > *, .framer-Wd1xP .framer-182c3jh > *, .framer-Wd1xP .framer-1hm386p > *, .framer-Wd1xP .framer-1rtyz2 > *, .framer-Wd1xP .framer-5ljkkf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",'.framer-Wd1xP[data-border=\"true\"]::after, .framer-Wd1xP [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; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-Wd1xP.framer-in0a2s { width: 810px; } .framer-Wd1xP .framer-1ds1i6f { padding: 183px 0px 0px 0px; width: 810px; } .framer-Wd1xP .framer-khnxbf-container { height: 521px; } .framer-Wd1xP .framer-zkt6ef { gap: unset; height: 162px; justify-content: space-between; padding: 0px 20px 60px 20px; width: 810px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Wd1xP .framer-zkt6ef { gap: 0px; } .framer-Wd1xP .framer-zkt6ef > *, .framer-Wd1xP .framer-zkt6ef > :first-child, .framer-Wd1xP .framer-zkt6ef > :last-child { margin: 0px; } }}\",\"@media (min-width: 390px) and (max-width: 427px) { .framer-Wd1xP.framer-in0a2s { width: 390px; } .framer-Wd1xP .framer-1ds1i6f { padding: 183px 0px 0px 0px; width: 390px; } .framer-Wd1xP .framer-khnxbf-container { height: 436px; } .framer-Wd1xP .framer-zkt6ef { flex-direction: column; gap: 20px; height: min-content; padding: 30px 20px 30px 20px; width: 390px; } .framer-Wd1xP .framer-12zoclj-container { order: 7; } .framer-Wd1xP .framer-1uszb5u-container { order: 8; } .framer-Wd1xP .framer-1psz8sr-container { order: 9; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Wd1xP .framer-zkt6ef { gap: 0px; } .framer-Wd1xP .framer-zkt6ef > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Wd1xP .framer-zkt6ef > :first-child { margin-top: 0px; } .framer-Wd1xP .framer-zkt6ef > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 389px) { .framer-Wd1xP.framer-in0a2s { width: 360px; } .framer-Wd1xP .framer-1ds1i6f { padding: 183px 0px 0px 0px; width: 360px; } .framer-Wd1xP .framer-khnxbf-container { height: 436px; } .framer-Wd1xP .framer-zkt6ef { flex-direction: column; gap: 20px; height: min-content; padding: 30px 20px 20px 20px; width: 360px; } .framer-Wd1xP .framer-6z87h1-container { order: 6; } .framer-Wd1xP .framer-ja3icv-container { order: 12; } .framer-Wd1xP .framer-1uy5zyy-container { order: 13; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Wd1xP .framer-zkt6ef { gap: 0px; } .framer-Wd1xP .framer-zkt6ef > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Wd1xP .framer-zkt6ef > :first-child { margin-top: 0px; } .framer-Wd1xP .framer-zkt6ef > :last-child { margin-bottom: 0px; } }}\",\"@media (min-width: 428px) and (max-width: 809px) { .framer-Wd1xP.framer-in0a2s { width: 428px; } .framer-Wd1xP .framer-1ds1i6f { padding: 183px 0px 0px 0px; width: 428px; } .framer-Wd1xP .framer-khnxbf-container { height: 436px; } .framer-Wd1xP .framer-zkt6ef { flex-direction: column; gap: 20px; height: min-content; padding: 30px 20px 30px 20px; width: 100%; } .framer-Wd1xP .framer-flulyv-container { order: 8; } .framer-Wd1xP .framer-lewhiy-container { order: 4; } .framer-Wd1xP .framer-8phj45-container { order: 7; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Wd1xP .framer-zkt6ef { gap: 0px; } .framer-Wd1xP .framer-zkt6ef > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Wd1xP .framer-zkt6ef > :first-child { margin-top: 0px; } .framer-Wd1xP .framer-zkt6ef > :last-child { margin-bottom: 0px; } }}\",\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-Wd1xP.framer-in0a2s, .framer-Wd1xP .framer-1ds1i6f { width: 1200px; } .framer-Wd1xP .framer-zkt6ef { gap: 25px; width: 1200px; } .framer-Wd1xP .framer-1xllo5f-container, .framer-Wd1xP .framer-1r66ydl-container, .framer-Wd1xP .framer-sq2cjr-container { width: 350px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Wd1xP .framer-zkt6ef { gap: 0px; } .framer-Wd1xP .framer-zkt6ef > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-Wd1xP .framer-zkt6ef > :first-child { margin-left: 0px; } .framer-Wd1xP .framer-zkt6ef > :last-child { margin-right: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3268\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NTWgQMLbj\":{\"layout\":[\"fixed\",\"auto\"]},\"L8KAwymnf\":{\"layout\":[\"fixed\",\"auto\"]},\"KaccGHxhE\":{\"layout\":[\"fixed\",\"auto\"]},\"W90MJYqLi\":{\"layout\":[\"fixed\",\"auto\"]},\"d2x_0gPX3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"qHPryT51S\":{\"pattern\":\":qHPryT51S\",\"name\":\"clients-logos\"},\"YSFkbEEWr\":{\"pattern\":\":YSFkbEEWr\",\"name\":\"blog\"}}\n * @framerResponsiveScreen\n */const FramerXZZPCL_vI=withCSS(Component,css,\"framer-Wd1xP\");export default FramerXZZPCL_vI;FramerXZZPCL_vI.displayName=\"Home\";FramerXZZPCL_vI.defaultProps={height:3268,width:1440};addFonts(FramerXZZPCL_vI,[{explicitInter:true,fonts:[]},...TopNavFonts,...BannerHomeFonts,...ServicesCardFonts,...TabletFonts,...Phone390StrategyFonts,...Services1Phone390Fonts,...Services2Phone390Fonts,...MeetJgsHomeFonts,...PreHeaderFonts,...TickerFonts,...Blog1440Fonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXZZPCL_vI\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NTWgQMLbj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"L8KAwymnf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KaccGHxhE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"W90MJYqLi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"d2x_0gPX3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"3268\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"qHPryT51S\\\":{\\\"pattern\\\":\\\":qHPryT51S\\\",\\\"name\\\":\\\"clients-logos\\\"},\\\"YSFkbEEWr\\\":{\\\"pattern\\\":\\\":YSFkbEEWr\\\",\\\"name\\\":\\\"blog\\\"}}\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "MAX_AREA", "CSS_VAR_NAME", "supportsWaapi", "supportsRegisterProperty", "window", "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", "offset", "useMotionValue", "axis", "minus", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "fullChildrenArea", "isLayerTooBig", "measure", "te", "parentLength", "firstChild", "lastChild", "childrenLeft", "childrenRight", "childrenTop", "childrenBottom", "childrenWidth", "childrenHeight", "childrenArea", "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", "keyframes", "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", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "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", "subcategory1", "subcategory2", "subcategory3", "subcategory4", "subcategory5", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "CWV7ggmof", "Fbvag8xLi", "YJb10goDA", "GWAj3_dir", "LiBMNFaGu", "iWVSsfXQA", "Q1BrPynak", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "Link", "css", "FramerCa7RHixYm", "withCSS", "Ca7RHixYm_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PreHeaderFonts", "getFonts", "KHVixQDlP_default", "FounderPortraitFonts", "RqnO0iLhF_default", "BadgeIconFonts", "OFwrVi5P7_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", "content", "height", "id", "width", "props", "u", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "b6K62NUhZ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "Link", "css", "FramerHUTRH8Z_1", "withCSS", "HUTRH8Z_1_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "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", "subcategory1", "subcategory2", "subcategory3", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "L3tSBbZ99", "MxASgu2WD", "WRhcjpFGt", "jBmlZ0tQ4", "jLDpZf3DH", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "Link", "css", "FramerIuuSrraef", "withCSS", "IuuSrraef_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Mg6i2mxOX", "qa0X8mguq", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "RichText2", "Link", "css", "FramerUDoq9v1is", "withCSS", "UDoq9v1is_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ButtonsFonts", "getFonts", "UDoq9v1is_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", "buttonLink", "height", "id", "shadow", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "e6gSI0gHU", "DsKIjpOC3", "IhVKz3fJQ", "WXivF6qGL", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerLF2m5WD71", "withCSS", "LF2m5WD71_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "buttonLink", "height", "id", "text", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "HHUKHVhNa", "i90mMSvAY", "eIEJAhPfl", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "css", "FramermqgYvC1DN", "withCSS", "mqgYvC1DN_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "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", "subcategory1", "subcategory2", "subcategory3", "subcategory4", "subcategory5", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "zcuhIoovA", "AubV4OO2f", "JtWhCr6La", "AGZNHgngG", "bpxKUKADi", "Rf7TmK231", "Q1Y8_X9LP", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "Link", "css", "FramerOCpvDLuMU", "withCSS", "OCpvDLuMU_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "link", "snippet", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "IHWzn5rNb", "Mu9z01hS7", "vN0sOTcUz", "pMW3egH93", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerCLz0k4TPe", "withCSS", "CLz0k4TPe_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PreHeaderFonts", "getFonts", "KHVixQDlP_default", "BlogCardFonts", "CLz0k4TPe_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "ONtAvcn1LOfYxwAYDQ", "bPTTuTTFCOfYxwAYDQ", "lhVfNSo58OfYxwAYDQ", "KNBGc0rWTOfYxwAYDQ", "idOfYxwAYDQ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "router", "useRouter", "LayoutGroup", "transition1", "u", "addPropertyOverrides", "ComponentViewportProvider", "SmartComponentScopedContainer", "KHVixQDlP_default", "ChildrenCanSuspend", "H7nsnwDwu_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "CLz0k4TPe_default", "toResponsiveImage", "RichText2", "Link", "css", "FramerOsaGYrHeE", "withCSS", "OsaGYrHeE_default", "addPropertyControls", "ControlType", "addFonts", "PreHeaderFonts", "BlogCardFonts", "getFontsFromSharedStyle", "fonts", "BannerTextFonts", "getFonts", "gjk27KW8p_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "toResponsiveImage", "value", "transition1", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "subText", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "QMrbOCEOE", "ywG2B82QZ", "F5hdNiCbD", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerVt96hDzhl", "withCSS", "Vt96hDzhl_default", "addPropertyControls", "ControlType", "addFonts", "TopNavFonts", "getFonts", "CUeruyNQ_default", "BannerHomeFonts", "Vt96hDzhl_default", "ServicesCardFonts", "LF2m5WD71_default", "TabletFonts", "mqgYvC1DN_default", "Phone390StrategyFonts", "OCpvDLuMU_default", "Services1Phone390Fonts", "IuuSrraef_default", "Services2Phone390Fonts", "Ca7RHixYm_default", "MeetJgsHomeFonts", "HUTRH8Z_1_default", "PreHeaderFonts", "KHVixQDlP_default", "TickerFonts", "Ticker", "Blog1440Fonts", "OsaGYrHeE_default", "FooterFonts", "ldOqW2mP0_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "x", "Image2", "SVG", "css", "FramerXZZPCL_vI", "withCSS", "XZZPCL_vI_default", "addFonts", "__FramerMetadata__"]
}
