{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/GSYp9PoorWUnbyoRlsSj/JUtWZ9gQ38Mv89vQZdTP/AqgpErrn3.js", "ssg:https://framerusercontent.com/modules/x1RaOtJuSrEmCf1tQ40T/qb2FyQEu7nBaricoNnc8/S0FfLEY9l.js", "ssg:https://framerusercontent.com/modules/f34SY2Yz2Oai2GowagXV/RAg5QHbYksjMfyoFHBZx/FmblT_uJA.js", "ssg:https://framerusercontent.com/modules/8sDI4YqsK4RHFo3cf9Ut/qAnNRSeWhkqFxLhtfxSg/Dlf9Qrn8s.js", "ssg:https://framerusercontent.com/modules/2wy9o1MR3cm5T0flymUL/UClLwoDavEopgDRaJ9wG/Ly9BHqbI3.js", "ssg:https://framerusercontent.com/modules/3C790IuyozUnAT3mm8j4/9cBk0dgUMcKxb7jtVIjk/XZVboaAOj.js", "ssg:https://framerusercontent.com/modules/dEtOziRTtzvKz9eob8l4/JkAl56S01BYkZI2Xed0d/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (a2fb474)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"ho6lp3vqo\",\"B1OvQBkeP\",\"ZC7TaufcJ\",\"Mi6xnvoSF\",\"hkenVLBHC\",\"ErEhpNFbQ\"];const serializationHash=\"framer-yviTX\";const variantClassNames={B1OvQBkeP:\"framer-v-c3t61w\",ErEhpNFbQ:\"framer-v-1yffgs9\",hkenVLBHC:\"framer-v-suuaiw\",ho6lp3vqo:\"framer-v-1ukglcb\",Mi6xnvoSF:\"framer-v-1fgzlik\",ZC7TaufcJ:\"framer-v-rp5mb9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[0,0,1,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Governance tablet\":\"hkenVLBHC\",\"Justice tablet\":\"ErEhpNFbQ\",\"Security tablet\":\"Mi6xnvoSF\",Governance:\"B1OvQBkeP\",Justice:\"ZC7TaufcJ\",Security:\"ho6lp3vqo\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ho6lp3vqo\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ho6lp3vqo\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"Mi6xnvoSF\",\"hkenVLBHC\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"Mi6xnvoSF\",\"ErEhpNFbQ\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"hkenVLBHC\",\"ErEhpNFbQ\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vUGCsl4VX\"},nodeId:\"ho6lp3vqo\",openInNewTab:false,...addPropertyOverrides({B1OvQBkeP:{href:{webPageId:\"cg3vKoe_R\"}},ZC7TaufcJ:{href:{webPageId:\"cg3vKoe_R\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1ukglcb\",className,classNames)} framer-s9pfaz`,\"data-framer-name\":\"Security\",layoutDependency:layoutDependency,layoutId:\"ho6lp3vqo\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{filter:\"blur(0px)\",WebkitFilter:\"blur(0px)\",...style},variants:{B1OvQBkeP:{filter:\"none\",WebkitFilter:\"none\"},ZC7TaufcJ:{filter:\"none\",WebkitFilter:\"none\"}},...addPropertyOverrides({B1OvQBkeP:{\"data-framer-name\":\"Governance\"},ErEhpNFbQ:{\"data-framer-name\":\"Justice tablet\"},hkenVLBHC:{\"data-framer-name\":\"Governance tablet\"},Mi6xnvoSF:{\"data-framer-name\":\"Security tablet\"},ZC7TaufcJ:{\"data-framer-name\":\"Justice\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fuiz2m\",layoutDependency:layoutDependency,layoutId:\"pHJXopU1Y\",style:{borderBottomLeftRadius:23,borderBottomRightRadius:23,borderTopLeftRadius:23,borderTopRightRadius:23},children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:562.5,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||663)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||663)-0)*.8)/2)+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||663)-0)*.8*.5007541478129716-((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||663)-0)*.8-0)*1/2)),pixelHeight:1125,pixelWidth:2e3,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/w36Da6gLhnK7aoiQEuCp0cMco.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/w36Da6gLhnK7aoiQEuCp0cMco.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/w36Da6gLhnK7aoiQEuCp0cMco.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/w36Da6gLhnK7aoiQEuCp0cMco.jpg 2000w\"},className:\"framer-yq8deo\",\"data-framer-name\":\"Justice\",layoutDependency:layoutDependency,layoutId:\"K55TNj3iw\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:0},variants:{ErEhpNFbQ:{opacity:1},ZC7TaufcJ:{opacity:1}},...addPropertyOverrides({ErEhpNFbQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:562.5,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||400)-0-400)/2)+0+0),pixelHeight:1125,pixelWidth:2e3,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/w36Da6gLhnK7aoiQEuCp0cMco.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/w36Da6gLhnK7aoiQEuCp0cMco.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/w36Da6gLhnK7aoiQEuCp0cMco.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/w36Da6gLhnK7aoiQEuCp0cMco.jpg 2000w\"}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:666.5,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||663)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||663)-0)*.8)/2)+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||663)-0)*.8*.5007541478129716-((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||663)-0)*.8-0)*1/2)),pixelHeight:1333,pixelWidth:2e3,positionX:\"44.3%\",positionY:\"62.2%\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/GkITcqrznn5pUNDoN3qYcVvSs.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/GkITcqrznn5pUNDoN3qYcVvSs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GkITcqrznn5pUNDoN3qYcVvSs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GkITcqrznn5pUNDoN3qYcVvSs.jpg 2000w\"},className:\"framer-1j2m6u3\",\"data-framer-name\":\"Jordan Elections\",layoutDependency:layoutDependency,layoutId:\"cIaiJgw7M\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:0},variants:{B1OvQBkeP:{opacity:1},hkenVLBHC:{opacity:1}},...addPropertyOverrides({hkenVLBHC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:666.5,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||400)-0-400)/2)+0+0),pixelHeight:1333,pixelWidth:2e3,positionX:\"44.3%\",positionY:\"62.2%\",sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/GkITcqrznn5pUNDoN3qYcVvSs.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/GkITcqrznn5pUNDoN3qYcVvSs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GkITcqrznn5pUNDoN3qYcVvSs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GkITcqrznn5pUNDoN3qYcVvSs.jpg 2000w\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||663)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||663)-0)*.8)/2)+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||663)-0)*.8*.5007541478129716-((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||663)-0)*.8-0)*1/2)),pixelHeight:1336,pixelWidth:2e3,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/JccaOxA87zq6Ix7QgCIimaC0hg4.jpg\",srcSet:\"https://framerusercontent.com/images/JccaOxA87zq6Ix7QgCIimaC0hg4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JccaOxA87zq6Ix7QgCIimaC0hg4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JccaOxA87zq6Ix7QgCIimaC0hg4.jpg 2000w\"},className:\"framer-mcn12v\",\"data-framer-name\":\"Security\",layoutDependency:layoutDependency,layoutId:\"qFPii3Qvw\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:1},variants:{B1OvQBkeP:{opacity:0},ZC7TaufcJ:{opacity:0}},...addPropertyOverrides({Mi6xnvoSF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||400)-0-400)/2)+0+0),pixelHeight:1336,pixelWidth:2e3,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/JccaOxA87zq6Ix7QgCIimaC0hg4.jpg\",srcSet:\"https://framerusercontent.com/images/JccaOxA87zq6Ix7QgCIimaC0hg4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JccaOxA87zq6Ix7QgCIimaC0hg4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JccaOxA87zq6Ix7QgCIimaC0hg4.jpg 2000w\"}}},baseVariant,gestureVariant)})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yviTX.framer-s9pfaz, .framer-yviTX .framer-s9pfaz { display: block; }\",\".framer-yviTX.framer-1ukglcb { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 663px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 681px; }\",\".framer-yviTX .framer-1fuiz2m { flex: none; height: 80%; overflow: visible; position: relative; width: 100%; }\",\".framer-yviTX .framer-yq8deo, .framer-yviTX .framer-1j2m6u3 { flex: none; height: 100%; left: calc(49.92657856093982% - 100% / 2); overflow: visible; position: absolute; top: calc(50.075414781297155% - 100% / 2); width: 100%; }\",\".framer-yviTX .framer-mcn12v { flex: none; height: 100%; left: calc(50.073421439060226% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.075414781297155% - 100% / 2); width: 100%; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yviTX.framer-1ukglcb { gap: 0px; } .framer-yviTX.framer-1ukglcb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-yviTX.framer-1ukglcb > :first-child { margin-left: 0px; } .framer-yviTX.framer-1ukglcb > :last-child { margin-right: 0px; } }\",\".framer-yviTX.framer-v-rp5mb9 .framer-1fuiz2m { order: 0; }\",\".framer-yviTX.framer-v-1fgzlik.framer-1ukglcb, .framer-yviTX.framer-v-suuaiw.framer-1ukglcb, .framer-yviTX.framer-v-1yffgs9.framer-1ukglcb { height: min-content; width: 340px; }\",\".framer-yviTX.framer-v-1fgzlik .framer-1fuiz2m, .framer-yviTX.framer-v-suuaiw .framer-1fuiz2m, .framer-yviTX.framer-v-1yffgs9 .framer-1fuiz2m { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 1px; }\",\".framer-yviTX.framer-v-1fgzlik .framer-mcn12v, .framer-yviTX.framer-v-suuaiw .framer-1j2m6u3, .framer-yviTX.framer-v-1yffgs9 .framer-yq8deo { height: 400px; left: unset; position: relative; top: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yviTX.framer-v-1fgzlik .framer-1fuiz2m { gap: 0px; } .framer-yviTX.framer-v-1fgzlik .framer-1fuiz2m > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-yviTX.framer-v-1fgzlik .framer-1fuiz2m > :first-child { margin-top: 0px; } .framer-yviTX.framer-v-1fgzlik .framer-1fuiz2m > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yviTX.framer-v-suuaiw .framer-1fuiz2m { gap: 0px; } .framer-yviTX.framer-v-suuaiw .framer-1fuiz2m > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-yviTX.framer-v-suuaiw .framer-1fuiz2m > :first-child { margin-top: 0px; } .framer-yviTX.framer-v-suuaiw .framer-1fuiz2m > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yviTX.framer-v-1yffgs9 .framer-1fuiz2m { gap: 0px; } .framer-yviTX.framer-v-1yffgs9 .framer-1fuiz2m > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-yviTX.framer-v-1yffgs9 .framer-1fuiz2m > :first-child { margin-top: 0px; } .framer-yviTX.framer-v-1yffgs9 .framer-1fuiz2m > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 663\n * @framerIntrinsicWidth 681\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"B1OvQBkeP\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZC7TaufcJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"Mi6xnvoSF\":{\"layout\":[\"fixed\",\"auto\"]},\"hkenVLBHC\":{\"layout\":[\"fixed\",\"auto\"]},\"ErEhpNFbQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAqgpErrn3=withCSS(Component,css,\"framer-yviTX\");export default FramerAqgpErrn3;FramerAqgpErrn3.displayName=\"Sector images\";FramerAqgpErrn3.defaultProps={height:663,width:681};addPropertyControls(FramerAqgpErrn3,{variant:{options:[\"ho6lp3vqo\",\"B1OvQBkeP\",\"ZC7TaufcJ\",\"Mi6xnvoSF\",\"hkenVLBHC\",\"ErEhpNFbQ\"],optionTitles:[\"Security\",\"Governance\",\"Justice\",\"Security tablet\",\"Governance tablet\",\"Justice tablet\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerAqgpErrn3,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAqgpErrn3\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"B1OvQBkeP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZC7TaufcJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Mi6xnvoSF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hkenVLBHC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ErEhpNFbQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"681\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"663\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AqgpErrn3.map", "// Generated by Framer (a2fb474)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Raleway-bold\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Raleway\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/ZOIWAQVAVASXBR56BLYIAEYYR6JRABLJ/EEQDABDVRH2J6DA7SWMJNSBXSSKN5XD2/Z44HTHVYVEXDW67RPEV7ZLLGGIA6RIPD.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/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-KrbRM .framer-styles-preset-1m8vn1g:not(.rich-text-wrapper), .framer-KrbRM .framer-styles-preset-1m8vn1g.rich-text-wrapper p { --framer-font-family: \"Raleway\", \"Raleway Placeholder\", 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: 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: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: rgba(196, 14, 59, 0.4); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-KrbRM .framer-styles-preset-1m8vn1g:not(.rich-text-wrapper), .framer-KrbRM .framer-styles-preset-1m8vn1g.rich-text-wrapper p { --framer-font-family: \"Raleway\", \"Raleway Placeholder\", 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: 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: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: rgba(196, 14, 59, 0.4); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-KrbRM .framer-styles-preset-1m8vn1g:not(.rich-text-wrapper), .framer-KrbRM .framer-styles-preset-1m8vn1g.rich-text-wrapper p { --framer-font-family: \"Raleway\", \"Raleway Placeholder\", 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: 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: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: rgba(196, 14, 59, 0.4); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-KrbRM\";\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 (a2fb474)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,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/fx9bNHfWQC3HOULXEGA7/IhRpyDI4OG2B7GUGazux/bsrf58ZIy.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/wwWDNMGKINTq9QoPnEQz/43ApIDW8NDBYJi6jBuPq/f1gF_yaZY.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/x1RaOtJuSrEmCf1tQ40T/qb2FyQEu7nBaricoNnc8/S0FfLEY9l.js\";const cycleOrder=[\"uKR4iA6vO\",\"fPp90tTpc\",\"xYnlRfcx3\",\"f1JeaRBkk\",\"i6Yl905mf\",\"CLnARi5vF\",\"JCfM6VghA\",\"I2ROZcVVc\",\"NuM4GZuK6\"];const serializationHash=\"framer-fgoA8\";const variantClassNames={CLnARi5vF:\"framer-v-o7c6r5\",f1JeaRBkk:\"framer-v-mzvjmr\",fPp90tTpc:\"framer-v-19ph40y\",I2ROZcVVc:\"framer-v-1p1p60j\",i6Yl905mf:\"framer-v-1skdkuk\",JCfM6VghA:\"framer-v-gwm3gg\",NuM4GZuK6:\"framer-v-3n1yb2\",uKR4iA6vO:\"framer-v-1o168py\",xYnlRfcx3:\"framer-v-apvueg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const transition2={damping:57,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"never miss a beat\":\"xYnlRfcx3\",\"See the full picture\":\"fPp90tTpc\",\"Variant 1\":\"uKR4iA6vO\",p1:\"f1JeaRBkk\",p2:\"i6Yl905mf\",p3:\"CLnARi5vF\",T1:\"JCfM6VghA\",T2:\"I2ROZcVVc\",T3:\"NuM4GZuK6\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"uKR4iA6vO\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"uKR4iA6vO\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1cugwmx=activeVariantCallback(async(...args)=>{setVariant(\"uKR4iA6vO\");});const onTapounibe=activeVariantCallback(async(...args)=>{setVariant(\"f1JeaRBkk\");});const onTap1ydz0a3=activeVariantCallback(async(...args)=>{setVariant(\"JCfM6VghA\");});const onTap3w4pb1=activeVariantCallback(async(...args)=>{setVariant(\"fPp90tTpc\");});const onTap1p747nv=activeVariantCallback(async(...args)=>{setVariant(\"i6Yl905mf\");});const onTap1udxrau=activeVariantCallback(async(...args)=>{setVariant(\"I2ROZcVVc\");});const onTap14bnjs2=activeVariantCallback(async(...args)=>{setVariant(\"xYnlRfcx3\");});const onTapt23gyw=activeVariantCallback(async(...args)=>{setVariant(\"CLnARi5vF\");});const onTap10im4qu=activeVariantCallback(async(...args)=>{setVariant(\"NuM4GZuK6\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"fPp90tTpc\",\"xYnlRfcx3\",\"i6Yl905mf\",\"CLnARi5vF\",\"I2ROZcVVc\",\"NuM4GZuK6\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"fPp90tTpc\",\"xYnlRfcx3\",\"i6Yl905mf\",\"CLnARi5vF\",\"I2ROZcVVc\",\"NuM4GZuK6\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"fPp90tTpc\",\"i6Yl905mf\",\"I2ROZcVVc\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"fPp90tTpc\",\"i6Yl905mf\",\"I2ROZcVVc\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if([\"xYnlRfcx3\",\"CLnARi5vF\",\"NuM4GZuK6\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if([\"xYnlRfcx3\",\"CLnARi5vF\",\"NuM4GZuK6\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if([\"f1JeaRBkk\",\"i6Yl905mf\",\"CLnARi5vF\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({CLnARi5vF:{value:transition2},i6Yl905mf:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1o168py\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"uKR4iA6vO\",ref:ref??ref1,style:{...style},...addPropertyOverrides({CLnARi5vF:{\"data-framer-name\":\"p3\"},f1JeaRBkk:{\"data-framer-name\":\"p1\"},fPp90tTpc:{\"data-framer-name\":\"See the full picture\"},I2ROZcVVc:{\"data-framer-name\":\"T2\"},i6Yl905mf:{\"data-framer-name\":\"p2\"},JCfM6VghA:{\"data-framer-name\":\"T1\"},NuM4GZuK6:{\"data-framer-name\":\"T3\"},xYnlRfcx3:{\"data-framer-name\":\"never miss a beat\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x51muc\",layoutDependency:layoutDependency,layoutId:\"IUhmRdUdT\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rzusuy\",layoutDependency:layoutDependency,layoutId:\"nPQrJrNFu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ar5bvy\",\"data-framer-name\":\"take charge of change\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"t8V4fbHvQ\",onTap:onTap1cugwmx,...addPropertyOverrides({CLnARi5vF:{onTap:onTapounibe},f1JeaRBkk:{onTap:onTapounibe},I2ROZcVVc:{onTap:onTap1ydz0a3},i6Yl905mf:{onTap:onTapounibe},JCfM6VghA:{onTap:onTap1ydz0a3},NuM4GZuK6:{onTap:onTap1ydz0a3}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-xmi9ke\",layoutDependency:layoutDependency,layoutId:\"Gleafz7Hj\",style:{backgroundColor:\"var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, rgb(196, 13, 60))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50}}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:150,pixelWidth:36,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IoXtivHcbnwO3sbtpfnevo6JDI.svg\"},className:\"framer-16o1g2g\",layoutDependency:layoutDependency,layoutId:\"xLnxyDXSN\",style:{opacity:.4},...addPropertyOverrides({CLnARi5vF:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+0),pixelHeight:150,pixelWidth:37,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/z3j8dO0TZXKuHHIMRYIPBnbsb0.svg\"}},fPp90tTpc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||392)-0-490)/2+0+0)+95.5+0+0+0),pixelHeight:150,pixelWidth:37,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/z3j8dO0TZXKuHHIMRYIPBnbsb0.svg\"}},I2ROZcVVc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||252)-0-299)/2+0+0)+0+0+0+0),pixelHeight:150,pixelWidth:37,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/z3j8dO0TZXKuHHIMRYIPBnbsb0.svg\"}},i6Yl905mf:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+0),pixelHeight:150,pixelWidth:37,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/z3j8dO0TZXKuHHIMRYIPBnbsb0.svg\"}},NuM4GZuK6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||276)-0-299)/2+0+0)+0+0+0+0),pixelHeight:150,pixelWidth:37,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/z3j8dO0TZXKuHHIMRYIPBnbsb0.svg\"}},xYnlRfcx3:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||392)-0-490)/2+0+0)+95.5+0+0+0),pixelHeight:150,pixelWidth:37,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/z3j8dO0TZXKuHHIMRYIPBnbsb0.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ajo226\",\"data-framer-name\":\"text\",layoutDependency:layoutDependency,layoutId:\"rFthLrYXN\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-f2bx3i\",\"data-styles-preset\":\"bsrf58ZIy\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Take charge of change\"})})}),className:\"framer-k7u26g\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"nMEclQL7Y\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CLnARi5vF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m8vn1g\",\"data-styles-preset\":\"S0FfLEY9l\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Take charge of change\"})})})},fPp90tTpc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m8vn1g\",\"data-styles-preset\":\"S0FfLEY9l\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Take charge of change\"})})})},I2ROZcVVc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m8vn1g\",\"data-styles-preset\":\"S0FfLEY9l\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Take charge of change\"})})})},i6Yl905mf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m8vn1g\",\"data-styles-preset\":\"S0FfLEY9l\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Take charge of change\"})})})},NuM4GZuK6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m8vn1g\",\"data-styles-preset\":\"S0FfLEY9l\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Take charge of change\"})})})},xYnlRfcx3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m8vn1g\",\"data-styles-preset\":\"S0FfLEY9l\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Take charge of change\"})})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-eqoby\",\"data-styles-preset\":\"f1gF_yaZY\",children:\"Build custom solutions tailored to needs, and skills to tackle future challenges confidently.\"})}),className:\"framer-mj8guq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aFR4pthur\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c6mudc\",\"data-framer-name\":\"See the full picture\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"MrPskftlq\",onTap:onTap3w4pb1,...addPropertyOverrides({CLnARi5vF:{onTap:onTap1p747nv},f1JeaRBkk:{onTap:onTap1p747nv},I2ROZcVVc:{onTap:onTap1udxrau},i6Yl905mf:{onTap:onTap1p747nv},JCfM6VghA:{onTap:onTap1udxrau},NuM4GZuK6:{onTap:onTap1udxrau}},baseVariant,gestureVariant),children:[isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-yg190c\",layoutDependency:layoutDependency,layoutId:\"dZ21WW8PG\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},variants:{fPp90tTpc:{backgroundColor:\"var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, rgb(196, 13, 60))\"},I2ROZcVVc:{backgroundColor:\"var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, rgb(196, 13, 60))\"},i6Yl905mf:{backgroundColor:\"var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, rgb(196, 13, 60))\"}}}),isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||392)-0-490)/2+0+0)+95.5+0+193+0),pixelHeight:150,pixelWidth:37,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/z3j8dO0TZXKuHHIMRYIPBnbsb0.svg\"},className:\"framer-anu8rw\",layoutDependency:layoutDependency,layoutId:\"qtLgVRfR7\",style:{opacity:.4},...addPropertyOverrides({CLnARi5vF:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+63+0),pixelHeight:150,pixelWidth:37,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/z3j8dO0TZXKuHHIMRYIPBnbsb0.svg\"}},f1JeaRBkk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+183+0),pixelHeight:150,pixelWidth:37,src:\"https://framerusercontent.com/images/z3j8dO0TZXKuHHIMRYIPBnbsb0.svg\"}},JCfM6VghA:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||252)-0-299)/2+0+0)+0+0+193+0),pixelHeight:150,pixelWidth:37,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/z3j8dO0TZXKuHHIMRYIPBnbsb0.svg\"}},NuM4GZuK6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||276)-0-299)/2+0+0)+0+0+73+0),pixelHeight:150,pixelWidth:37,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/z3j8dO0TZXKuHHIMRYIPBnbsb0.svg\"}},xYnlRfcx3:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||392)-0-490)/2+0+0)+95.5+0+73+0),pixelHeight:150,pixelWidth:37,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/z3j8dO0TZXKuHHIMRYIPBnbsb0.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i44jql\",\"data-framer-name\":\"text\",layoutDependency:layoutDependency,layoutId:\"MvOjXRZDJ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m8vn1g\",\"data-styles-preset\":\"S0FfLEY9l\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"See the full picture\"})})}),className:\"framer-17gl9uw\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"jpRt2QSSZ\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fPp90tTpc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-f2bx3i\",\"data-styles-preset\":\"bsrf58ZIy\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"See the full picture\"})})})},I2ROZcVVc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-f2bx3i\",\"data-styles-preset\":\"bsrf58ZIy\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"See the full picture\"})})})},i6Yl905mf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-f2bx3i\",\"data-styles-preset\":\"bsrf58ZIy\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"See the full picture\"})})})}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-eqoby\",\"data-styles-preset\":\"f1gF_yaZY\",children:\"Transform systems, strategies, and stakeholder relationships to create meaningful, sustainable change.\\xa0\"})}),className:\"framer-1xefvys\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VBQ0l61mz\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6fxi7\",\"data-framer-name\":\"Never miss a beat\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"CHItPJYua\",onTap:onTap14bnjs2,...addPropertyOverrides({CLnARi5vF:{onTap:onTapt23gyw},f1JeaRBkk:{onTap:onTapt23gyw},I2ROZcVVc:{onTap:onTap10im4qu},i6Yl905mf:{onTap:onTapt23gyw},JCfM6VghA:{onTap:onTap10im4qu},NuM4GZuK6:{onTap:onTap10im4qu}},baseVariant,gestureVariant),children:[isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ohisl8\",layoutDependency:layoutDependency,layoutId:\"pv9NGIVYF\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},variants:{CLnARi5vF:{backgroundColor:\"var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, rgb(196, 13, 60))\"},NuM4GZuK6:{backgroundColor:\"var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, rgb(196, 13, 60))\"},xYnlRfcx3:{backgroundColor:\"var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, rgb(196, 13, 60))\"}}}),isDisplayed5()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||392)-0-490)/2+0+0)+95.5+0+266+0),pixelHeight:150,pixelWidth:37,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/z3j8dO0TZXKuHHIMRYIPBnbsb0.svg\"},className:\"framer-15dsp0\",layoutDependency:layoutDependency,layoutId:\"iA8kZ2zT4\",style:{opacity:.4},...addPropertyOverrides({f1JeaRBkk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+246+0),pixelHeight:150,pixelWidth:37,src:\"https://framerusercontent.com/images/z3j8dO0TZXKuHHIMRYIPBnbsb0.svg\"}},I2ROZcVVc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||252)-0-299)/2+0+0)+0+0+266+0),pixelHeight:150,pixelWidth:37,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/z3j8dO0TZXKuHHIMRYIPBnbsb0.svg\"}},i6Yl905mf:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+246+0),pixelHeight:150,pixelWidth:37,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/z3j8dO0TZXKuHHIMRYIPBnbsb0.svg\"}},JCfM6VghA:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||252)-0-299)/2+0+0)+0+0+266+0),pixelHeight:150,pixelWidth:37,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/z3j8dO0TZXKuHHIMRYIPBnbsb0.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j3ovlp\",\"data-framer-name\":\"text\",layoutDependency:layoutDependency,layoutId:\"wu3GBwfPW\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m8vn1g\",\"data-styles-preset\":\"S0FfLEY9l\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Never miss a beat\"})})}),className:\"framer-rndace\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"M1aW3SgdC\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CLnARi5vF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-f2bx3i\",\"data-styles-preset\":\"bsrf58ZIy\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Never miss a beat\"})})})},NuM4GZuK6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-f2bx3i\",\"data-styles-preset\":\"bsrf58ZIy\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Never miss a beat\"})})})},xYnlRfcx3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-f2bx3i\",\"data-styles-preset\":\"bsrf58ZIy\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Never miss a beat\"})})})}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-eqoby\",\"data-styles-preset\":\"f1gF_yaZY\",children:\"Lead with confidence amid uncertainty, with an approach informed by cutting-edge insights and data.\"})}),className:\"framer-z9qtks\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Rfm0UfJ23\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed6()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-mt9zzc\",layoutDependency:layoutDependency,layoutId:\"wleYfkKTR\"}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:666.5,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||392)-0-490)/2+0+0)+0),pixelHeight:1333,pixelWidth:2e3,sizes:`calc(${componentViewport?.width||\"100vw\"} / 2)`,src:\"https://framerusercontent.com/images/4YrAelZfSwcC3nBfOtd5CFns8w.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4YrAelZfSwcC3nBfOtd5CFns8w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4YrAelZfSwcC3nBfOtd5CFns8w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4YrAelZfSwcC3nBfOtd5CFns8w.jpg 2000w\"},className:\"framer-bn8fgm\",\"data-framer-name\":\"DSC 0211\",layoutDependency:layoutDependency,layoutId:\"pAfxsOYVu\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({f1JeaRBkk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:666.5,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+319),pixelHeight:1333,pixelWidth:2e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/4YrAelZfSwcC3nBfOtd5CFns8w.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4YrAelZfSwcC3nBfOtd5CFns8w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4YrAelZfSwcC3nBfOtd5CFns8w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4YrAelZfSwcC3nBfOtd5CFns8w.jpg 2000w\"}},JCfM6VghA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:666.5,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||252)-0-299)/2+0+0)+0),pixelHeight:1333,pixelWidth:2e3,sizes:`calc(${componentViewport?.width||\"100vw\"} / 2)`,src:\"https://framerusercontent.com/images/4YrAelZfSwcC3nBfOtd5CFns8w.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4YrAelZfSwcC3nBfOtd5CFns8w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4YrAelZfSwcC3nBfOtd5CFns8w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4YrAelZfSwcC3nBfOtd5CFns8w.jpg 2000w\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:666.5,intrinsicWidth:1e3,pixelHeight:1333,pixelWidth:2e3,src:\"https://framerusercontent.com/images/7nRDA5Y3AJgAF2YSQs6gYU78.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/7nRDA5Y3AJgAF2YSQs6gYU78.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7nRDA5Y3AJgAF2YSQs6gYU78.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7nRDA5Y3AJgAF2YSQs6gYU78.jpg 2000w\"},className:\"framer-2egko9\",\"data-framer-name\":\"DSCF7679\",layoutDependency:layoutDependency,layoutId:\"oSf9xiKga\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({fPp90tTpc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:666.5,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||392)-0-490)/2+0+0)+0),pixelHeight:1333,pixelWidth:2e3,sizes:`calc(${componentViewport?.width||\"100vw\"} / 2)`,src:\"https://framerusercontent.com/images/7nRDA5Y3AJgAF2YSQs6gYU78.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/7nRDA5Y3AJgAF2YSQs6gYU78.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7nRDA5Y3AJgAF2YSQs6gYU78.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7nRDA5Y3AJgAF2YSQs6gYU78.jpg 2000w\"}},I2ROZcVVc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:666.5,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||252)-0-299)/2+0+0)+0),pixelHeight:1333,pixelWidth:2e3,sizes:`calc(${componentViewport?.width||\"100vw\"} / 2)`,src:\"https://framerusercontent.com/images/7nRDA5Y3AJgAF2YSQs6gYU78.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/7nRDA5Y3AJgAF2YSQs6gYU78.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7nRDA5Y3AJgAF2YSQs6gYU78.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7nRDA5Y3AJgAF2YSQs6gYU78.jpg 2000w\"}},i6Yl905mf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:666.5,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+319),pixelHeight:1333,pixelWidth:2e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/7nRDA5Y3AJgAF2YSQs6gYU78.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/7nRDA5Y3AJgAF2YSQs6gYU78.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7nRDA5Y3AJgAF2YSQs6gYU78.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7nRDA5Y3AJgAF2YSQs6gYU78.jpg 2000w\"}}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:333.5,intrinsicWidth:500,pixelHeight:667,pixelWidth:1e3,src:\"https://framerusercontent.com/images/Te2vJHhENea2r1rtuqVG5Qnb8.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Te2vJHhENea2r1rtuqVG5Qnb8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Te2vJHhENea2r1rtuqVG5Qnb8.jpg 1000w\"},className:\"framer-451unc\",\"data-framer-name\":\"Shutterstock 2440357647 (2)\",layoutDependency:layoutDependency,layoutId:\"uaynRRckw\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({CLnARi5vF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:333.5,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+319),pixelHeight:667,pixelWidth:1e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Te2vJHhENea2r1rtuqVG5Qnb8.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Te2vJHhENea2r1rtuqVG5Qnb8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Te2vJHhENea2r1rtuqVG5Qnb8.jpg 1000w\"}},NuM4GZuK6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:333.5,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||276)-0-299)/2+0+0)+0),pixelHeight:667,pixelWidth:1e3,sizes:`calc(${componentViewport?.width||\"100vw\"} / 2)`,src:\"https://framerusercontent.com/images/Te2vJHhENea2r1rtuqVG5Qnb8.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Te2vJHhENea2r1rtuqVG5Qnb8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Te2vJHhENea2r1rtuqVG5Qnb8.jpg 1000w\"}},xYnlRfcx3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:333.5,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||392)-0-490)/2+0+0)+0),pixelHeight:667,pixelWidth:1e3,sizes:`calc(${componentViewport?.width||\"100vw\"} / 2)`,src:\"https://framerusercontent.com/images/Te2vJHhENea2r1rtuqVG5Qnb8.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Te2vJHhENea2r1rtuqVG5Qnb8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Te2vJHhENea2r1rtuqVG5Qnb8.jpg 1000w\"}}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fgoA8.framer-fg5x00, .framer-fgoA8 .framer-fg5x00 { display: block; }\",\".framer-fgoA8.framer-1o168py { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 1081px; }\",\".framer-fgoA8 .framer-x51muc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fgoA8 .framer-1rzusuy { 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: visible; padding: 0px; position: relative; width: 45%; }\",\".framer-fgoA8 .framer-1ar5bvy { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fgoA8 .framer-xmi9ke { align-self: stretch; flex: none; height: auto; overflow: visible; position: relative; width: 8px; }\",\".framer-fgoA8 .framer-16o1g2g { align-self: stretch; flex: none; height: auto; position: relative; width: 8px; }\",\".framer-fgoA8 .framer-ajo226, .framer-fgoA8 .framer-1i44jql, .framer-fgoA8 .framer-j3ovlp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-fgoA8 .framer-k7u26g, .framer-fgoA8 .framer-mj8guq, .framer-fgoA8 .framer-17gl9uw, .framer-fgoA8 .framer-1xefvys, .framer-fgoA8 .framer-rndace, .framer-fgoA8 .framer-z9qtks { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fgoA8 .framer-c6mudc, .framer-fgoA8 .framer-6fxi7 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 33px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fgoA8 .framer-yg190c, .framer-fgoA8 .framer-1ohisl8 { flex: none; height: 100%; overflow: visible; position: relative; width: 8px; }\",\".framer-fgoA8 .framer-anu8rw, .framer-fgoA8 .framer-15dsp0 { flex: none; height: 100%; position: relative; width: 8px; }\",\".framer-fgoA8 .framer-mt9zzc { flex: 1 0 0px; height: calc(var(--framer-viewport-height, 100vh) * 0.49); overflow: visible; position: relative; width: 1px; }\",\".framer-fgoA8 .framer-bn8fgm { align-self: stretch; flex: none; height: auto; overflow: visible; position: relative; width: 50%; }\",\".framer-fgoA8 .framer-2egko9, .framer-fgoA8 .framer-451unc { flex: none; height: calc(var(--framer-viewport-height, 100vh) * 0.49); overflow: visible; position: relative; width: 50%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fgoA8.framer-1o168py, .framer-fgoA8 .framer-x51muc, .framer-fgoA8 .framer-1rzusuy, .framer-fgoA8 .framer-1ar5bvy, .framer-fgoA8 .framer-ajo226, .framer-fgoA8 .framer-c6mudc, .framer-fgoA8 .framer-1i44jql, .framer-fgoA8 .framer-6fxi7, .framer-fgoA8 .framer-j3ovlp { gap: 0px; } .framer-fgoA8.framer-1o168py > *, .framer-fgoA8 .framer-ajo226 > *, .framer-fgoA8 .framer-1i44jql > *, .framer-fgoA8 .framer-j3ovlp > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fgoA8.framer-1o168py > :first-child, .framer-fgoA8 .framer-1rzusuy > :first-child, .framer-fgoA8 .framer-ajo226 > :first-child, .framer-fgoA8 .framer-1i44jql > :first-child, .framer-fgoA8 .framer-j3ovlp > :first-child { margin-top: 0px; } .framer-fgoA8.framer-1o168py > :last-child, .framer-fgoA8 .framer-1rzusuy > :last-child, .framer-fgoA8 .framer-ajo226 > :last-child, .framer-fgoA8 .framer-1i44jql > :last-child, .framer-fgoA8 .framer-j3ovlp > :last-child { margin-bottom: 0px; } .framer-fgoA8 .framer-x51muc > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-fgoA8 .framer-x51muc > :first-child, .framer-fgoA8 .framer-1ar5bvy > :first-child, .framer-fgoA8 .framer-c6mudc > :first-child, .framer-fgoA8 .framer-6fxi7 > :first-child { margin-left: 0px; } .framer-fgoA8 .framer-x51muc > :last-child, .framer-fgoA8 .framer-1ar5bvy > :last-child, .framer-fgoA8 .framer-c6mudc > :last-child, .framer-fgoA8 .framer-6fxi7 > :last-child { margin-right: 0px; } .framer-fgoA8 .framer-1rzusuy > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-fgoA8 .framer-1ar5bvy > *, .framer-fgoA8 .framer-c6mudc > *, .framer-fgoA8 .framer-6fxi7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-fgoA8.framer-v-19ph40y .framer-1ar5bvy, .framer-fgoA8.framer-v-apvueg .framer-1ar5bvy, .framer-fgoA8.framer-v-1skdkuk .framer-1ar5bvy, .framer-fgoA8.framer-v-o7c6r5 .framer-1ar5bvy, .framer-fgoA8.framer-v-1p1p60j .framer-1ar5bvy, .framer-fgoA8.framer-v-3n1yb2 .framer-1ar5bvy { height: 33px; }\",\".framer-fgoA8.framer-v-19ph40y .framer-16o1g2g, .framer-fgoA8.framer-v-apvueg .framer-16o1g2g, .framer-fgoA8.framer-v-1skdkuk .framer-16o1g2g, .framer-fgoA8.framer-v-o7c6r5 .framer-16o1g2g, .framer-fgoA8.framer-v-1p1p60j .framer-16o1g2g, .framer-fgoA8.framer-v-3n1yb2 .framer-16o1g2g { align-self: unset; height: 100%; order: 1; }\",\".framer-fgoA8.framer-v-19ph40y .framer-ajo226, .framer-fgoA8.framer-v-19ph40y .framer-j3ovlp, .framer-fgoA8.framer-v-apvueg .framer-ajo226, .framer-fgoA8.framer-v-apvueg .framer-1i44jql, .framer-fgoA8.framer-v-mzvjmr .framer-j3ovlp, .framer-fgoA8.framer-v-1skdkuk .framer-ajo226, .framer-fgoA8.framer-v-1skdkuk .framer-j3ovlp, .framer-fgoA8.framer-v-o7c6r5 .framer-ajo226, .framer-fgoA8.framer-v-o7c6r5 .framer-1i44jql, .framer-fgoA8.framer-v-1p1p60j .framer-ajo226, .framer-fgoA8.framer-v-1p1p60j .framer-j3ovlp, .framer-fgoA8.framer-v-3n1yb2 .framer-ajo226, .framer-fgoA8.framer-v-3n1yb2 .framer-1i44jql { order: 2; }\",\".framer-fgoA8.framer-v-19ph40y .framer-c6mudc, .framer-fgoA8.framer-v-apvueg .framer-6fxi7, .framer-fgoA8.framer-v-1skdkuk .framer-c6mudc, .framer-fgoA8.framer-v-o7c6r5 .framer-6fxi7, .framer-fgoA8.framer-v-1p1p60j .framer-c6mudc, .framer-fgoA8.framer-v-3n1yb2 .framer-6fxi7 { height: min-content; }\",\".framer-fgoA8.framer-v-19ph40y .framer-yg190c, .framer-fgoA8.framer-v-apvueg .framer-1ohisl8, .framer-fgoA8.framer-v-1skdkuk .framer-yg190c, .framer-fgoA8.framer-v-o7c6r5 .framer-1ohisl8, .framer-fgoA8.framer-v-gwm3gg .framer-mt9zzc, .framer-fgoA8.framer-v-1p1p60j .framer-yg190c, .framer-fgoA8.framer-v-1p1p60j .framer-mt9zzc, .framer-fgoA8.framer-v-1p1p60j .framer-2egko9, .framer-fgoA8.framer-v-3n1yb2 .framer-1ohisl8 { align-self: stretch; height: auto; }\",\".framer-fgoA8.framer-v-19ph40y .framer-15dsp0, .framer-fgoA8.framer-v-apvueg .framer-1rzusuy, .framer-fgoA8.framer-v-1p1p60j .framer-15dsp0, .framer-fgoA8.framer-v-3n1yb2 .framer-1rzusuy { order: 0; }\",\".framer-fgoA8.framer-v-apvueg .framer-anu8rw, .framer-fgoA8.framer-v-apvueg .framer-mt9zzc, .framer-fgoA8.framer-v-mzvjmr .framer-15dsp0, .framer-fgoA8.framer-v-1skdkuk .framer-15dsp0, .framer-fgoA8.framer-v-o7c6r5 .framer-anu8rw, .framer-fgoA8.framer-v-3n1yb2 .framer-anu8rw { order: 1; }\",\".framer-fgoA8.framer-v-apvueg .framer-451unc { order: 3; }\",\".framer-fgoA8.framer-v-mzvjmr.framer-1o168py { align-content: flex-start; align-items: flex-start; gap: 0px; justify-content: flex-start; max-width: unset; width: 330px; }\",\".framer-fgoA8.framer-v-mzvjmr .framer-x51muc { flex-direction: column; gap: 40px; }\",\".framer-fgoA8.framer-v-mzvjmr .framer-1rzusuy, .framer-fgoA8.framer-v-1skdkuk .framer-1rzusuy { gap: 30px; width: 100%; }\",\".framer-fgoA8.framer-v-mzvjmr .framer-bn8fgm { align-self: unset; height: 300px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fgoA8.framer-v-mzvjmr.framer-1o168py, .framer-fgoA8.framer-v-mzvjmr .framer-x51muc, .framer-fgoA8.framer-v-mzvjmr .framer-1rzusuy { gap: 0px; } .framer-fgoA8.framer-v-mzvjmr.framer-1o168py > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-fgoA8.framer-v-mzvjmr.framer-1o168py > :first-child, .framer-fgoA8.framer-v-mzvjmr .framer-x51muc > :first-child, .framer-fgoA8.framer-v-mzvjmr .framer-1rzusuy > :first-child { margin-top: 0px; } .framer-fgoA8.framer-v-mzvjmr.framer-1o168py > :last-child, .framer-fgoA8.framer-v-mzvjmr .framer-x51muc > :last-child, .framer-fgoA8.framer-v-mzvjmr .framer-1rzusuy > :last-child { margin-bottom: 0px; } .framer-fgoA8.framer-v-mzvjmr .framer-x51muc > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-fgoA8.framer-v-mzvjmr .framer-1rzusuy > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\".framer-fgoA8.framer-v-1skdkuk.framer-1o168py, .framer-fgoA8.framer-v-o7c6r5.framer-1o168py { justify-content: flex-start; max-width: unset; width: 330px; }\",\".framer-fgoA8.framer-v-1skdkuk .framer-x51muc, .framer-fgoA8.framer-v-o7c6r5 .framer-x51muc { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 40px; }\",\".framer-fgoA8.framer-v-1skdkuk .framer-2egko9 { height: 300px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fgoA8.framer-v-1skdkuk .framer-x51muc, .framer-fgoA8.framer-v-1skdkuk .framer-1rzusuy { gap: 0px; } .framer-fgoA8.framer-v-1skdkuk .framer-x51muc > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-fgoA8.framer-v-1skdkuk .framer-x51muc > :first-child, .framer-fgoA8.framer-v-1skdkuk .framer-1rzusuy > :first-child { margin-top: 0px; } .framer-fgoA8.framer-v-1skdkuk .framer-x51muc > :last-child, .framer-fgoA8.framer-v-1skdkuk .framer-1rzusuy > :last-child { margin-bottom: 0px; } .framer-fgoA8.framer-v-1skdkuk .framer-1rzusuy > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\".framer-fgoA8.framer-v-o7c6r5 .framer-1rzusuy { gap: 30px; order: 0; width: 100%; }\",\".framer-fgoA8.framer-v-o7c6r5 .framer-451unc { height: 300px; order: 3; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fgoA8.framer-v-o7c6r5 .framer-x51muc, .framer-fgoA8.framer-v-o7c6r5 .framer-1rzusuy { gap: 0px; } .framer-fgoA8.framer-v-o7c6r5 .framer-x51muc > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-fgoA8.framer-v-o7c6r5 .framer-x51muc > :first-child, .framer-fgoA8.framer-v-o7c6r5 .framer-1rzusuy > :first-child { margin-top: 0px; } .framer-fgoA8.framer-v-o7c6r5 .framer-x51muc > :last-child, .framer-fgoA8.framer-v-o7c6r5 .framer-1rzusuy > :last-child { margin-bottom: 0px; } .framer-fgoA8.framer-v-o7c6r5 .framer-1rzusuy > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\".framer-fgoA8.framer-v-gwm3gg.framer-1o168py, .framer-fgoA8.framer-v-1p1p60j.framer-1o168py, .framer-fgoA8.framer-v-3n1yb2.framer-1o168py { width: 730px; }\",\".framer-fgoA8.framer-v-3n1yb2 .framer-mt9zzc { align-self: stretch; height: auto; order: 1; }\",\".framer-fgoA8.framer-v-3n1yb2 .framer-451unc { align-self: stretch; height: auto; order: 3; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 392\n * @framerIntrinsicWidth 1081\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1280px\",null,null]},\"fPp90tTpc\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1280px\",null,null]},\"xYnlRfcx3\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1280px\",null,null]},\"f1JeaRBkk\":{\"layout\":[\"fixed\",\"auto\"]},\"i6Yl905mf\":{\"layout\":[\"fixed\",\"auto\"]},\"CLnARi5vF\":{\"layout\":[\"fixed\",\"auto\"]},\"JCfM6VghA\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1280px\",null,null]},\"I2ROZcVVc\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1280px\",null,null]},\"NuM4GZuK6\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1280px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFmblT_uJA=withCSS(Component,css,\"framer-fgoA8\");export default FramerFmblT_uJA;FramerFmblT_uJA.displayName=\"Foundations for a brighter future\";FramerFmblT_uJA.defaultProps={height:392,width:1081};addPropertyControls(FramerFmblT_uJA,{variant:{options:[\"uKR4iA6vO\",\"fPp90tTpc\",\"xYnlRfcx3\",\"f1JeaRBkk\",\"i6Yl905mf\",\"CLnARi5vF\",\"JCfM6VghA\",\"I2ROZcVVc\",\"NuM4GZuK6\"],optionTitles:[\"Variant 1\",\"See the full picture\",\"never miss a beat\",\"p1\",\"p2\",\"p3\",\"T1\",\"T2\",\"T3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerFmblT_uJA,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFmblT_uJA\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1081\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1280px\\\",null,null]},\\\"fPp90tTpc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1280px\\\",null,null]},\\\"xYnlRfcx3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1280px\\\",null,null]},\\\"f1JeaRBkk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i6Yl905mf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CLnARi5vF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JCfM6VghA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1280px\\\",null,null]},\\\"I2ROZcVVc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1280px\\\",null,null]},\\\"NuM4GZuK6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1280px\\\",null,null]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"392\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a2fb474)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Raleway-bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Raleway\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/ZOIWAQVAVASXBR56BLYIAEYYR6JRABLJ/EEQDABDVRH2J6DA7SWMJNSBXSSKN5XD2/Z44HTHVYVEXDW67RPEV7ZLLGGIA6RIPD.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-b6s9G .framer-styles-preset-pl3s1i:not(.rich-text-wrapper), .framer-b6s9G .framer-styles-preset-pl3s1i.rich-text-wrapper h3 { --framer-font-family: \"Raleway\", \"Raleway 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: normal; --framer-font-size: 30px; --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: 0px; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, #c40d3c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-b6s9G .framer-styles-preset-pl3s1i:not(.rich-text-wrapper), .framer-b6s9G .framer-styles-preset-pl3s1i.rich-text-wrapper h3 { --framer-font-family: \"Raleway\", \"Raleway 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: normal; --framer-font-size: 28px; --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: 0px; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, #c40d3c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-b6s9G .framer-styles-preset-pl3s1i:not(.rich-text-wrapper), .framer-b6s9G .framer-styles-preset-pl3s1i.rich-text-wrapper h3 { --framer-font-family: \"Raleway\", \"Raleway 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: normal; --framer-font-size: 21px; --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: 0px; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, #c40d3c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-b6s9G\";\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 (a2fb474)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Raleway-bold\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Raleway\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/ZOIWAQVAVASXBR56BLYIAEYYR6JRABLJ/EEQDABDVRH2J6DA7SWMJNSBXSSKN5XD2/Z44HTHVYVEXDW67RPEV7ZLLGGIA6RIPD.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/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-G97Z2 .framer-styles-preset-hhhdt1:not(.rich-text-wrapper), .framer-G97Z2 .framer-styles-preset-hhhdt1.rich-text-wrapper p { --framer-font-family: \"Raleway\", \"Raleway Placeholder\", 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: 30px; --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: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, #c40d3c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-G97Z2 .framer-styles-preset-hhhdt1:not(.rich-text-wrapper), .framer-G97Z2 .framer-styles-preset-hhhdt1.rich-text-wrapper p { --framer-font-family: \"Raleway\", \"Raleway Placeholder\", 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: 30px; --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: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, #c40d3c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-G97Z2 .framer-styles-preset-hhhdt1:not(.rich-text-wrapper), .framer-G97Z2 .framer-styles-preset-hhhdt1.rich-text-wrapper p { --framer-font-family: \"Raleway\", \"Raleway Placeholder\", 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: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, #c40d3c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-G97Z2\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d5ca742)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Raleway-regular\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Raleway\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2YCK276JNUIIHMRWISQCDGWXNOKAXSCG/6OIJIEVI2ZSNHVU6RZ6WV47LHUN2T4MN/ZYCN4M673NULYB4BOICEICFLQAPDYBRK.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-bPbak .framer-styles-preset-6wlalu:not(.rich-text-wrapper), .framer-bPbak .framer-styles-preset-6wlalu.rich-text-wrapper p { --framer-font-family: \"Raleway\", \"Raleway Placeholder\", 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: 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: 1.2em; --framer-paragraph-spacing: 20px; --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-bPbak\";\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 (55cf326)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}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/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import SectorImages from\"#framer/local/canvasComponent/AqgpErrn3/AqgpErrn3.js\";import NavBar from\"#framer/local/canvasComponent/EeWuxTxfm/EeWuxTxfm.js\";import FoundationsForABrighterFuture from\"#framer/local/canvasComponent/FmblT_uJA/FmblT_uJA.js\";import Button from\"#framer/local/canvasComponent/QFCuS7UTd/QFCuS7UTd.js\";import CaseStudySlider from\"#framer/local/canvasComponent/RRfCto63t/RRfCto63t.js\";import Footer from\"#framer/local/canvasComponent/XSLOnMj2l/XSLOnMj2l.js\";import Content from\"#framer/local/collection/gD7e29ik5/gD7e29ik5.js\";import*as sharedStyle4 from\"#framer/local/css/bsrf58ZIy/bsrf58ZIy.js\";import*as sharedStyle8 from\"#framer/local/css/Dlf9Qrn8s/Dlf9Qrn8s.js\";import*as sharedStyle9 from\"#framer/local/css/EG5DAfYbk/EG5DAfYbk.js\";import*as sharedStyle6 from\"#framer/local/css/f1gF_yaZY/f1gF_yaZY.js\";import*as sharedStyle5 from\"#framer/local/css/Ly9BHqbI3/Ly9BHqbI3.js\";import*as sharedStyle7 from\"#framer/local/css/NGcM2ln9s/NGcM2ln9s.js\";import*as sharedStyle3 from\"#framer/local/css/obGZbzSZn/obGZbzSZn.js\";import*as sharedStyle from\"#framer/local/css/PiWJ9vt9V/PiWJ9vt9V.js\";import*as sharedStyle2 from\"#framer/local/css/QvjLhFEHz/QvjLhFEHz.js\";import*as sharedStyle1 from\"#framer/local/css/wYHRH_3UU/wYHRH_3UU.js\";import*as sharedStyle10 from\"#framer/local/css/XZVboaAOj/XZVboaAOj.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavBarFonts=getFonts(NavBar);const TickerFonts=getFonts(Ticker);const FoundationsForABrighterFutureFonts=getFonts(FoundationsForABrighterFuture);const ButtonFonts=getFonts(Button);const MotionDivWithFX=withFX(motion.div);const IconoirFonts=getFonts(Iconoir);const SectorImagesFonts=getFonts(SectorImages);const SectorImagesWithVariantAppearEffect=withVariantAppearEffect(SectorImages);const CaseStudySliderFonts=getFonts(CaseStudySlider);const CarouselFonts=getFonts(Carousel);const FooterFonts=getFonts(Footer);const breakpoints={I_lu0l3mt:\"(max-width: 809px)\",NuMPYNaqX:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-77fus\";const variantClassNames={I_lu0l3mt:\"framer-v-1mw2lfs\",NuMPYNaqX:\"framer-v-1jqlyc5\",WQLkyLRf1:\"framer-v-72rtr7\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;try{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"I_lu0l3mt\",Tablet:\"NuMPYNaqX\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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,KZRnRUokksfi2SDBv5,L68LsXkDtsfi2SDBv5,n7a9m1FAlsfi2SDBv5,xMmBaux2Lsfi2SDBv5,idsfi2SDBv5,KZRnRUokkmniQKKDUc,L68LsXkDtmniQKKDUc,z5W1tKGHkmniQKKDUc,xMmBaux2LmniQKKDUc,idmniQKKDUc,KZRnRUokkGXs5UWBuD,L68LsXkDtGXs5UWBuD,z5W1tKGHkGXs5UWBuD,xMmBaux2LGXs5UWBuD,idGXs5UWBuD,KZRnRUokkjIPnUl6bi,L68LsXkDtjIPnUl6bi,z5W1tKGHkjIPnUl6bi,xMmBaux2LjIPnUl6bi,idjIPnUl6bi,KZRnRUokkvLWVfAoKA,L68LsXkDtvLWVfAoKA,z5W1tKGHkvLWVfAoKA,xMmBaux2LvLWVfAoKA,idvLWVfAoKA,KZRnRUokkscNTVRgLe,L68LsXkDtscNTVRgLe,n7a9m1FAlscNTVRgLe,xMmBaux2LscNTVRgLe,idscNTVRgLe,KZRnRUokkI2HwVMFBd,L68LsXkDtI2HwVMFBd,n7a9m1FAlI2HwVMFBd,xMmBaux2LI2HwVMFBd,idI2HwVMFBd,KZRnRUokkAAkg0RrdJ,L68LsXkDtAAkg0RrdJ,n7a9m1FAlAAkg0RrdJ,xMmBaux2LAAkg0RrdJ,idAAkg0RrdJ,KZRnRUokkzq3G8rtTT,L68LsXkDtzq3G8rtTT,n7a9m1FAlzq3G8rtTT,xMmBaux2Lzq3G8rtTT,idzq3G8rtTT,KZRnRUokkTyPV68u2N,L68LsXkDtTyPV68u2N,n7a9m1FAlTyPV68u2N,xMmBaux2LTyPV68u2N,idTyPV68u2N,KZRnRUokkkUrqvMBcy,L68LsXkDtkUrqvMBcy,n7a9m1FAlkUrqvMBcy,xMmBaux2LkUrqvMBcy,idkUrqvMBcy,KZRnRUokkQblpFiqJQ,L68LsXkDtQblpFiqJQ,n7a9m1FAlQblpFiqJQ,xMmBaux2LQblpFiqJQ,idQblpFiqJQ,KZRnRUokkpBPf6x0wW,L68LsXkDtpBPf6x0wW,z5W1tKGHkpBPf6x0wW,idpBPf6x0wW,KZRnRUokkYDCUK5A8Z,z5W1tKGHkYDCUK5A8Z,HLJLG0_VlYDCUK5A8Z,idYDCUK5A8Z,...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=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"uoavmGCQU\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"NuMPYNaqX\",\"I_lu0l3mt\"].includes(baseVariant))return false;return true;};const router=useRouter();const elementId1=useRouteElementId(\"o01dxMurI\");const ref2=React.useRef(null);const ref3=React.useRef(null);const elementId2=useRouteElementId(\"YUbup61Z2\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"R1VlQxNPn\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"pPwYORvd0\");const elementId5=useRouteElementId(\"Pr3TJEw27\");const ref6=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"NuMPYNaqX\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"NuMPYNaqX\")return false;return true;};const elementId6=useRouteElementId(\"VFSLxssKr\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"pSDAsUdZF\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"yiGBRQfdD\");const ref9=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"I_lu0l3mt\")return false;return true;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"I_lu0l3mt\")return true;return false;};const activeLocaleCode=useLocaleCode();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-71cb407b-71eb-41c1-9e19-622c71e5287f, rgb(31, 22, 70)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1il1cmm-container\",id:elementId,layoutScroll:true,nodeId:\"uoavmGCQU\",ref:ref1,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I_lu0l3mt:{variant:\"KNGRL6o_s\"},NuMPYNaqX:{variant:\"IjlkfBwqQ\"}},children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"uoavmGCQU\",layoutId:\"uoavmGCQU\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"NE2_NEtMf\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I_lu0l3mt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,pixelHeight:654,pixelWidth:1500,positionX:\"52.9%\",positionY:\"50.3%\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xTOiEiScgc0WmMVDtpdbhOnJcU.jpg\",srcSet:\"https://framerusercontent.com/images/xTOiEiScgc0WmMVDtpdbhOnJcU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xTOiEiScgc0WmMVDtpdbhOnJcU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xTOiEiScgc0WmMVDtpdbhOnJcU.jpg 1500w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,pixelHeight:654,pixelWidth:1500,positionX:\"11.9%\",positionY:\"47.8%\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xTOiEiScgc0WmMVDtpdbhOnJcU.jpg\",srcSet:\"https://framerusercontent.com/images/xTOiEiScgc0WmMVDtpdbhOnJcU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xTOiEiScgc0WmMVDtpdbhOnJcU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xTOiEiScgc0WmMVDtpdbhOnJcU.jpg 1500w\"},className:\"framer-18p1tsc\",\"data-framer-name\":\"Header \",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wmw5aw\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tqtxf5\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s1mm95\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1qrxmx8\",\"data-styles-preset\":\"PiWJ9vt9V\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Stronger institutions, \"}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"strong\",{children:\"thriving communities.\"})]})}),className:\"framer-cnk1ug\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19clrst\",\"data-styles-preset\":\"wYHRH_3UU\",children:\"Research, change management and digital innovation for more responsive, efficient and impactful organisations.\"})}),className:\"framer-bqicmj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f47kym\",\"data-framer-name\":\"Overlay\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rdhc2h\",\"data-framer-name\":\"partners\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ea2shm\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yfuwda\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-janr04-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"f1x4VzzNc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I_lu0l3mt:{gap:60}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:71,height:\"100%\",hoverFactor:1,id:\"f1x4VzzNc\",layoutId:\"f1x4VzzNc\",padding:10,paddingBottom:10,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:42,pixelWidth:176,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2PWrQql6RyHR6PHQ8ahIEl1lYkg.png\"},className:\"framer-mu16id\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:620,pixelWidth:936,positionX:\"center\",positionY:\"center\",sizes:\"73px\",src:\"https://framerusercontent.com/images/BbVv4OMB9DpUYDQHrBmA48k0.png\",srcSet:\"https://framerusercontent.com/images/BbVv4OMB9DpUYDQHrBmA48k0.png?scale-down-to=512 512w,https://framerusercontent.com/images/BbVv4OMB9DpUYDQHrBmA48k0.png 936w\"},className:\"framer-hf8dus\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:2e3,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:\"70px\",src:\"https://framerusercontent.com/images/S9wcm1ZdC0fzfrYXRRG1bjbbZD8.png\",srcSet:\"https://framerusercontent.com/images/S9wcm1ZdC0fzfrYXRRG1bjbbZD8.png?scale-down-to=512 512w,https://framerusercontent.com/images/S9wcm1ZdC0fzfrYXRRG1bjbbZD8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/S9wcm1ZdC0fzfrYXRRG1bjbbZD8.png 2000w\"},className:\"framer-3uqo8q\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:130,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"163px\",src:\"https://framerusercontent.com/images/PHtPrATdufbiB5PmbCLsQHaGBxs.png\",srcSet:\"https://framerusercontent.com/images/PHtPrATdufbiB5PmbCLsQHaGBxs.png?scale-down-to=512 512w,https://framerusercontent.com/images/PHtPrATdufbiB5PmbCLsQHaGBxs.png 800w\"},className:\"framer-wm47ev\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1471,pixelWidth:1995,positionX:\"center\",positionY:\"center\",sizes:\"101px\",src:\"https://framerusercontent.com/images/a5W4v6cmofJkWle6lVSSPiGB4.png\",srcSet:\"https://framerusercontent.com/images/a5W4v6cmofJkWle6lVSSPiGB4.png?scale-down-to=512 512w,https://framerusercontent.com/images/a5W4v6cmofJkWle6lVSSPiGB4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a5W4v6cmofJkWle6lVSSPiGB4.png 1995w\"},className:\"framer-1dqwgpn\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:763,pixelWidth:2091,positionX:\"center\",positionY:\"center\",sizes:\"107px\",src:\"https://framerusercontent.com/images/a2zUqOZRDxj8rbnOPMTv29KZDcU.png\",srcSet:\"https://framerusercontent.com/images/a2zUqOZRDxj8rbnOPMTv29KZDcU.png?scale-down-to=512 512w,https://framerusercontent.com/images/a2zUqOZRDxj8rbnOPMTv29KZDcU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a2zUqOZRDxj8rbnOPMTv29KZDcU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/a2zUqOZRDxj8rbnOPMTv29KZDcU.png 2091w\"},className:\"framer-1xal9u\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:2010,pixelWidth:989,positionX:\"center\",positionY:\"center\",sizes:\"93px\",src:\"https://framerusercontent.com/images/l1ljoT55hqjK3LgrRQWyrg1bOI.png\",srcSet:\"https://framerusercontent.com/images/l1ljoT55hqjK3LgrRQWyrg1bOI.png 989w\"},className:\"framer-1bbos5h\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1832,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"109px\",src:\"https://framerusercontent.com/images/Gb3JMZfW2tgQKjeV7zhJvMHtk.png\",srcSet:\"https://framerusercontent.com/images/Gb3JMZfW2tgQKjeV7zhJvMHtk.png?scale-down-to=1024 670w,https://framerusercontent.com/images/Gb3JMZfW2tgQKjeV7zhJvMHtk.png 1200w\"},className:\"framer-1ygl3g7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1445,pixelWidth:3300,positionX:\"center\",positionY:\"center\",sizes:\"170px\",src:\"https://framerusercontent.com/images/0Nfl7jWrYNNs9R3vEOy2aForlmA.png\",srcSet:\"https://framerusercontent.com/images/0Nfl7jWrYNNs9R3vEOy2aForlmA.png?scale-down-to=512 512w,https://framerusercontent.com/images/0Nfl7jWrYNNs9R3vEOy2aForlmA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0Nfl7jWrYNNs9R3vEOy2aForlmA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0Nfl7jWrYNNs9R3vEOy2aForlmA.png 3300w\"},className:\"framer-vfl30u\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:320,intrinsicWidth:480,pixelHeight:229,pixelWidth:803,positionX:\"center\",positionY:\"center\",sizes:\"151px\",src:\"https://framerusercontent.com/images/5dNKAknVV1pQpweVLGkXda141c.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5dNKAknVV1pQpweVLGkXda141c.png?scale-down-to=512 512w,https://framerusercontent.com/images/5dNKAknVV1pQpweVLGkXda141c.png 803w\"},className:\"framer-1xjgu0p\",\"data-framer-name\":\"UK devt\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g1ruea\",\"data-framer-name\":\"Intro and KPIs\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zgg4sw\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h5qjtj\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-t6xf3n\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13fyavu\",\"data-styles-preset\":\"QvjLhFEHz\",children:\"Siren Associates helps organisations remove barriers to safety, justice and freedom. We work across the security, public and social sectors, supporting our partners to better serve their communities.\"})}),className:\"framer-kn23oz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i5q5fc\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I_lu0l3mt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1tZWRpdW0=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1leHRyYWJvbGQ=\",\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, rgb(196, 13, 60))\"},children:\"15+\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1zZW1pYm9sZA==\",\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\"years\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1zZW1pYm9sZA==\",\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\"driving sustainable change\"})]})})},NuMPYNaqX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1tZWRpdW0=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1leHRyYWJvbGQ=\",\"--framer-font-size\":\"70px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, rgb(196, 13, 60))\"},children:\"15+\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1zZW1pYm9sZA==\",\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"years\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1zZW1pYm9sZA==\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"driving sustainable change\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1tZWRpdW0=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1leHRyYWJvbGQ=\",\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, rgb(196, 13, 60))\"},children:\"15+\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1zZW1pYm9sZA==\",\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\"},children:\" \"}),\"years\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1zZW1pYm9sZA==\",\"--framer-font-weight\":\"600\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"driving sustainable change\"]})}),className:\"framer-jc9c5x\",fonts:[\"FS;Raleway-medium\",\"FS;Raleway-extrabold\",\"FS;Raleway-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jj60rm hidden-1jqlyc5 hidden-1mw2lfs\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I_lu0l3mt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1tZWRpdW0=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1leHRyYWJvbGQ=\",\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, rgb(196, 13, 60))\"},children:\"20+\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1zZW1pYm9sZA==\",\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1zZW1pYm9sZA==\",\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\"security and government partners served\"})]})})},NuMPYNaqX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1tZWRpdW0=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1leHRyYWJvbGQ=\",\"--framer-font-size\":\"70px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, rgb(196, 13, 60))\"},children:\"20+\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1zZW1pYm9sZA==\",\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1zZW1pYm9sZA==\",\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"security and government partners served\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1tZWRpdW0=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1leHRyYWJvbGQ=\",\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, rgb(196, 13, 60))\"},children:\"20+\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1zZW1pYm9sZA==\",\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1zZW1pYm9sZA==\",\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"security and government partners served\"]})}),className:\"framer-1xdekh5\",fonts:[\"FS;Raleway-medium\",\"FS;Raleway-extrabold\",\"FS;Raleway-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-n6kle2 hidden-1jqlyc5 hidden-1mw2lfs\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I_lu0l3mt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1tZWRpdW0=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1leHRyYWJvbGQ=\",\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, rgb(196, 13, 60))\"},children:\"30+\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1zZW1pYm9sZA==\",\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1zZW1pYm9sZA==\",\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\"projects in past five years\"})]})})},NuMPYNaqX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1tZWRpdW0=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1leHRyYWJvbGQ=\",\"--framer-font-size\":\"70px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, rgb(196, 13, 60))\"},children:\"30+\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1zZW1pYm9sZA==\",\"--framer-font-size\":\"70px\",\"--framer-font-weight\":\"600\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1zZW1pYm9sZA==\",\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"projects in past five years\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1tZWRpdW0=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1leHRyYWJvbGQ=\",\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, rgb(196, 13, 60))\"},children:\"30+\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1zZW1pYm9sZA==\",\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UmFsZXdheS1zZW1pYm9sZA==\",\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"projects in past five years\"]})}),className:\"framer-1k3ks33\",fonts:[\"FS;Raleway-medium\",\"FS;Raleway-extrabold\",\"FS;Raleway-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1s5l0km\",\"data-framer-name\":\"Approach\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uk3ton\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lgzvgc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1g9zidd\",\"data-styles-preset\":\"obGZbzSZn\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Our guarantee\"})})}),className:\"framer-vrqgqb\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-f2bx3i\",\"data-styles-preset\":\"bsrf58ZIy\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"We ensure that our partners: \"})}),className:\"framer-1dsyqbf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I_lu0l3mt:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1280px)`},NuMPYNaqX:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1280px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:392,width:`min(${componentViewport?.width||\"100vw\"} - 120px, 1280px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10k66mb-container\",nodeId:\"RVTbsIhbz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I_lu0l3mt:{variant:\"f1JeaRBkk\"},NuMPYNaqX:{variant:\"JCfM6VghA\"}},children:/*#__PURE__*/_jsx(FoundationsForABrighterFuture,{height:\"100%\",id:\"RVTbsIhbz\",layoutId:\"RVTbsIhbz\",style:{width:\"100%\"},variant:\"uKR4iA6vO\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hc7ffy\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"s8nZJgUSr\"},implicitPathVariables:undefined},{href:{webPageId:\"s8nZJgUSr\"},implicitPathVariables:undefined},{href:{webPageId:\"s8nZJgUSr\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,children:/*#__PURE__*/_jsx(Container,{className:\"framer-buy3v9-container\",nodeId:\"FzNvQNB_6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I_lu0l3mt:{ScQAllLDp:resolvedLinks[2]},NuMPYNaqX:{ScQAllLDp:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{DzhCNxD2v:false,height:\"100%\",id:\"FzNvQNB_6\",IfbQFaSFV:true,layoutId:\"FzNvQNB_6\",q5xvmw_T_:\"More about us\",ScQAllLDp:resolvedLinks[0],variant:\"DJTAX6SGe\",width:\"100%\",zaeQf7AHX:\"var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, rgb(196, 13, 60))\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-zofurs\",\"data-framer-name\":\"Services\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{bounce:.2,damping:60,delay:0,duration:.1,durationBasedSpring:false,ease:[.44,0,.56,1],mass:1,stiffness:879,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref3,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-167cui4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1g9zidd\",\"data-styles-preset\":\"obGZbzSZn\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Our toolkit\"})})}),className:\"framer-8hli4u\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-f2bx3i\",\"data-styles-preset\":\"bsrf58ZIy\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We support our partners through: \"})}),className:\"framer-1c95gp1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1391pvr\",id:elementId2,ref:ref4,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-84pqvd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NuMPYNaqX:{__framer__transformViewportThreshold:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:700,y:0}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-2500,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1072apu\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19zmuye\",\"data-framer-name\":\"research\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:188,pixelWidth:175,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Qfrun0dsuXxT5iytyKrugUwdFA.svg\"},className:\"framer-kr0lat\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10hdoxv\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hhhdt1\",\"data-styles-preset\":\"Ly9BHqbI3\",children:\"Research\"})}),className:\"framer-1duajdu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eqoby\",\"data-styles-preset\":\"f1gF_yaZY\",style:{\"--framer-text-alignment\":\"left\"},children:\"Identify stakeholder perceptions and needs; and use research to design inclusive, conflict-sensitive projects.\"})}),className:\"framer-1jlj1ht\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-atkoy8\",\"data-framer-name\":\"strategy\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:185,pixelWidth:148,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dBHMCbAvBzMpotFXJLymUoFTVU.svg\"},className:\"framer-vinbu1\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ssny2o\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hhhdt1\",\"data-styles-preset\":\"Ly9BHqbI3\",children:\"Strategy\"})}),className:\"framer-1dzqc9l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eqoby\",\"data-styles-preset\":\"f1gF_yaZY\",style:{\"--framer-text-alignment\":\"left\"},children:\"Take a system-wide look at current realities, articulate a vision, identify barriers and how to eliminate them.\"})}),className:\"framer-1bcybbq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13uijbn\",\"data-framer-name\":\"change management\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:186,pixelWidth:182,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/pgdg023KL3c4KdNL0IOeMRNBWPY.svg\"},className:\"framer-wy12rs\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j3b37s\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hhhdt1\",\"data-styles-preset\":\"Ly9BHqbI3\",children:\"Change management\"})}),className:\"framer-1s8qkoz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eqoby\",\"data-styles-preset\":\"f1gF_yaZY\",style:{\"--framer-text-alignment\":\"left\"},children:\"Smoothly adopt new tech, processes and ways of working, and embed these practices within culture.\"})}),className:\"framer-6b90fj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15c7wqo\",\"data-framer-name\":\"process optimisation\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:188,pixelWidth:196,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/I8B2OXnf0K8aju7fVCcOgyxKCic.svg\"},className:\"framer-1wa2ras\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xmvyu7\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hhhdt1\",\"data-styles-preset\":\"Ly9BHqbI3\",children:\"Process optimisation\"})}),className:\"framer-q274tg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eqoby\",\"data-styles-preset\":\"f1gF_yaZY\",style:{\"--framer-text-alignment\":\"left\"},children:\"Streamline and enhance processes to deliver services more efficiently and effectively.\"})}),className:\"framer-iophps\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ssxsth\",\"data-framer-name\":\"HR opt\",id:elementId3,ref:ref5,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:183,pixelWidth:189,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/59btPygW76euXsMjMHzTsTMBTfQ.svg\"},className:\"framer-1cy7btj\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1onas0w\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hhhdt1\",\"data-styles-preset\":\"Ly9BHqbI3\",children:\"HR optimisation\"})}),className:\"framer-1cv0ov2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eqoby\",\"data-styles-preset\":\"f1gF_yaZY\",style:{\"--framer-text-alignment\":\"left\"},children:\"Deploy resources effectively, upskill workforces and build fit-for-purpose teams.\"})}),className:\"framer-10qjgiz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q42z6v\",\"data-framer-name\":\"built infrastructure\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:188,pixelWidth:184,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/N5fHT86UKNHd63cc0Xn7SLbf7zk.svg\"},className:\"framer-1sqkkfc\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ridiog\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hhhdt1\",\"data-styles-preset\":\"Ly9BHqbI3\",children:\"Infrastructure\"})}),className:\"framer-fx44pr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eqoby\",\"data-styles-preset\":\"f1gF_yaZY\",style:{\"--framer-text-alignment\":\"left\"},children:\"Build and renovate facilities that enable teams to work to their full potential.\"})}),className:\"framer-8quog7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mvkl4j\",\"data-framer-name\":\"digital and data\",id:elementId4,ref:ref3,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:189,pixelWidth:187,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/QZNOpWVP6JaiXvjAgmtQP6IS8.svg\"},className:\"framer-14r2rjp\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p4aik5\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hhhdt1\",\"data-styles-preset\":\"Ly9BHqbI3\",children:\"Digital and data\"})}),className:\"framer-e302pt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-eqoby\",\"data-styles-preset\":\"f1gF_yaZY\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Custom software, data analytics and AI to augment capabilities and drive efficiency. With \",/*#__PURE__*/_jsx(Link,{href:\"www.sirenanalytics.com\",motionChild:true,nodeId:\"kBgxBXxYd\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-tix28v\",\"data-styles-preset\":\"NGcM2ln9s\",children:\"Siren Analytics\"})}),\".\"]})}),className:\"framer-17jo5vd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-bpsjxf\",\"data-framer-name\":\"Sectors\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1g9zidd\",\"data-styles-preset\":\"obGZbzSZn\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"What we do\"})})}),className:\"framer-1l1fp77\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17ny0s0 hidden-72rtr7 hidden-1mw2lfs\",\"data-framer-name\":\"sst\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x8mzab\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pl3s1i\",\"data-styles-preset\":\"Dlf9Qrn8s\",children:\"SECURITY SECTOR TRANSFORMATION\"})}),className:\"framer-jysh4e hidden-72rtr7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5zxzte hidden-72rtr7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-13fyavu\",\"data-styles-preset\":\"QvjLhFEHz\",children:[\"Helping security institutions become more responsive, \",/*#__PURE__*/_jsx(\"br\",{}),\"effective and accountable.\"]})}),className:\"framer-xpbj1e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hi098m-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ny8epkSwY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-cee8035a-bcaa-4514-b5ba-8ae0728a3078, rgb(161, 156, 155))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"ny8epkSwY\",layoutId:\"ny8epkSwY\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NuMPYNaqX:{background:{alt:\"\",fit:\"fill\",pixelHeight:1336,pixelWidth:2e3,sizes:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,src:\"https://framerusercontent.com/images/JccaOxA87zq6Ix7QgCIimaC0hg4.jpg\",srcSet:\"https://framerusercontent.com/images/JccaOxA87zq6Ix7QgCIimaC0hg4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JccaOxA87zq6Ix7QgCIimaC0hg4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JccaOxA87zq6Ix7QgCIimaC0hg4.jpg 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1336,pixelWidth:2e3,src:\"https://framerusercontent.com/images/JccaOxA87zq6Ix7QgCIimaC0hg4.jpg\",srcSet:\"https://framerusercontent.com/images/JccaOxA87zq6Ix7QgCIimaC0hg4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JccaOxA87zq6Ix7QgCIimaC0hg4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JccaOxA87zq6Ix7QgCIimaC0hg4.jpg 2000w\"},className:\"framer-mod2x4\",\"data-framer-name\":\"Security\"})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-unnegq hidden-1jqlyc5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3q7v52\",\"data-framer-name\":\"text column\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vUGCsl4VX\"},motionChild:true,nodeId:\"VFSLxssKr\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1xiw05n framer-lux5qc\",\"data-framer-name\":\"SST\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pl3s1i\",\"data-styles-preset\":\"Dlf9Qrn8s\",children:\"SECURITY SECTOR TRANSFORMATION\"})}),className:\"framer-vugp33\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1js9ik7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-13fyavu\",\"data-styles-preset\":\"QvjLhFEHz\",children:[\"Helping security institutions become more responsive, \",/*#__PURE__*/_jsx(\"br\",{}),\"effective and accountable.\"]})}),className:\"framer-1e4viz1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yd8mu6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RGVJ7n64D\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-cee8035a-bcaa-4514-b5ba-8ae0728a3078, rgb(161, 156, 155))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"RGVJ7n64D\",layoutId:\"RGVJ7n64D\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cg3vKoe_R\"},motionChild:true,nodeId:\"pSDAsUdZF\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1qob0kt framer-lux5qc\",\"data-framer-name\":\"Gov\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pl3s1i\",\"data-styles-preset\":\"Dlf9Qrn8s\",children:\"GOVERNANCE\"})}),className:\"framer-1yi4g45\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iljqq8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13fyavu\",\"data-styles-preset\":\"QvjLhFEHz\",children:\"Enabling government and civil society to deliver inclusive, impactful services.\\xa0\"})}),className:\"framer-1ofid8d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lsksom-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"oTATkjQ6q\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-cee8035a-bcaa-4514-b5ba-8ae0728a3078, rgb(161, 156, 155))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"oTATkjQ6q\",layoutId:\"oTATkjQ6q\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"oYweW9y2P\"},motionChild:true,nodeId:\"yiGBRQfdD\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-zeth36 framer-lux5qc\",\"data-framer-name\":\"Just\",id:elementId8,ref:ref9,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pl3s1i\",\"data-styles-preset\":\"Dlf9Qrn8s\",children:\"JUSTICE AND RIGHTS\"})}),className:\"framer-pp1ycj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rdqmac\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13fyavu\",\"data-styles-preset\":\"QvjLhFEHz\",children:\"Partnering with civil society and public institutions to create fair, impartial and human rights-compliant justice systems.\"})}),className:\"framer-1je8obj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-51gd9i-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ymBPSfbU4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-cee8035a-bcaa-4514-b5ba-8ae0728a3078, rgb(161, 156, 155))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"ymBPSfbU4\",layoutId:\"ymBPSfbU4\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:`calc(min(${componentViewport?.width||\"100vw\"} - 120px, 1280px) / 2)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r6u8qa-container hidden-1mw2lfs\",nodeId:\"xJhMQW1ac\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SectorImagesWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref7,target:\"ho6lp3vqo\"},{ref:ref8,target:\"B1OvQBkeP\"},{ref:ref9,target:\"ZC7TaufcJ\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"xJhMQW1ac\",layoutId:\"xJhMQW1ac\",style:{height:\"100%\",width:\"100%\"},variant:\"ho6lp3vqo\",width:\"100%\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l4tdwu hidden-72rtr7 hidden-1mw2lfs\",\"data-framer-name\":\"Governance\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15tlbrq\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pl3s1i\",\"data-styles-preset\":\"Dlf9Qrn8s\",children:\"GOVERNANCE\"})}),className:\"framer-1ybgu68 hidden-72rtr7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5yezqt hidden-72rtr7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13fyavu\",\"data-styles-preset\":\"QvjLhFEHz\",children:\"Enabling government and civil society to deliver inclusive, impactful services.\\xa0\"})}),className:\"framer-xjp2l0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1njpx2t-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Z0YpbNBfr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-cee8035a-bcaa-4514-b5ba-8ae0728a3078, rgb(161, 156, 155))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"Z0YpbNBfr\",layoutId:\"Z0YpbNBfr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NuMPYNaqX:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:666.5,intrinsicWidth:1e3,pixelHeight:1333,pixelWidth:2e3,positionX:\"44.3%\",positionY:\"62.2%\",sizes:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,src:\"https://framerusercontent.com/images/GkITcqrznn5pUNDoN3qYcVvSs.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/GkITcqrznn5pUNDoN3qYcVvSs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GkITcqrznn5pUNDoN3qYcVvSs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GkITcqrznn5pUNDoN3qYcVvSs.jpg 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:666.5,intrinsicWidth:1e3,pixelHeight:1333,pixelWidth:2e3,positionX:\"44.3%\",positionY:\"62.2%\",src:\"https://framerusercontent.com/images/GkITcqrznn5pUNDoN3qYcVvSs.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/GkITcqrznn5pUNDoN3qYcVvSs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GkITcqrznn5pUNDoN3qYcVvSs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GkITcqrznn5pUNDoN3qYcVvSs.jpg 2000w\"},className:\"framer-1w48v7a\",\"data-framer-name\":\"Jordan Elections\"})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s8wusa hidden-72rtr7 hidden-1mw2lfs\",\"data-framer-name\":\"justice\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vv3yw7\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pl3s1i\",\"data-styles-preset\":\"Dlf9Qrn8s\",children:\"JUSTICE AND RIGHTS\"})}),className:\"framer-1r4lfc3 hidden-72rtr7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k7bizw hidden-72rtr7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13fyavu\",\"data-styles-preset\":\"QvjLhFEHz\",children:\"Partnering with civil society and public institutions to create fair, impartial and human rights-compliant justice systems.\"})}),className:\"framer-13ys3ud\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-97kwgv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gUTLu0nlu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-cee8035a-bcaa-4514-b5ba-8ae0728a3078, rgb(161, 156, 155))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"gUTLu0nlu\",layoutId:\"gUTLu0nlu\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NuMPYNaqX:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:562.5,intrinsicWidth:1e3,pixelHeight:1125,pixelWidth:2e3,sizes:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,src:\"https://framerusercontent.com/images/w36Da6gLhnK7aoiQEuCp0cMco.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/w36Da6gLhnK7aoiQEuCp0cMco.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/w36Da6gLhnK7aoiQEuCp0cMco.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/w36Da6gLhnK7aoiQEuCp0cMco.jpg 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:562.5,intrinsicWidth:1e3,pixelHeight:1125,pixelWidth:2e3,src:\"https://framerusercontent.com/images/w36Da6gLhnK7aoiQEuCp0cMco.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/w36Da6gLhnK7aoiQEuCp0cMco.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/w36Da6gLhnK7aoiQEuCp0cMco.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/w36Da6gLhnK7aoiQEuCp0cMco.jpg 2000w\"},className:\"framer-1l06xeo\",\"data-framer-name\":\"Justice\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-178pteq\",\"data-framer-name\":\"Case studies\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12wcy4m-container hidden-1jqlyc5 hidden-1mw2lfs\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"WIEhwUYeB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-cee8035a-bcaa-4514-b5ba-8ae0728a3078, rgb(161, 156, 155))\",arrowPadding:40,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:8},gap:7,height:\"100%\",id:\"WIEhwUYeB\",layoutId:\"WIEhwUYeB\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:5,dotsInset:6,dotSize:8,dotsOpacity:.5,dotsPadding:7,dotsRadius:49,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"stretch\",widthColumns:2,widthInset:89,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ufigtu\",\"data-framer-name\":\"CS1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"sfi2SDBv5\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"sfi2SDBv5\",name:\"KZRnRUokk\",type:\"Identifier\"},{collection:\"sfi2SDBv5\",name:\"L68LsXkDt\",type:\"Identifier\"},{collection:\"sfi2SDBv5\",name:\"n7a9m1FAl\",type:\"Identifier\"},{collection:\"sfi2SDBv5\",name:\"xMmBaux2L\",type:\"Identifier\"},{collection:\"sfi2SDBv5\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"sfi2SDBv5\",name:\"pW0DhCl1H\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"nwgii2QsQ\"},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"sfi2SDBv5\",name:\"FR7OCKHCi\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idsfi2SDBv5,KZRnRUokk:KZRnRUokksfi2SDBv5,L68LsXkDt:L68LsXkDtsfi2SDBv5,n7a9m1FAl:n7a9m1FAlsfi2SDBv5,xMmBaux2L:xMmBaux2Lsfi2SDBv5},index)=>{KZRnRUokksfi2SDBv5??=\"\";n7a9m1FAlsfi2SDBv5??=\"\";xMmBaux2Lsfi2SDBv5??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`sfi2SDBv5-${idsfi2SDBv5}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{KZRnRUokk:KZRnRUokksfi2SDBv5},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{KZRnRUokk:KZRnRUokksfi2SDBv5},webPageId:\"mlzntNu5a\"},motionChild:true,nodeId:\"lecc1AfI9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-10s2vzk framer-lux5qc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:413,width:\"1200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cudcks-container\",inComponentSlot:true,nodeId:\"dnYXjMRHf\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CaseStudySlider,{EiOzJ02C9:xMmBaux2Lsfi2SDBv5,eK_Vvbv3o:\"rgb(255, 255, 255)\",height:\"100%\",hwJVMGjOU:\"FEATURED CASE STUDY\",id:\"dnYXjMRHf\",layoutId:\"dnYXjMRHf\",mNIZhYAe7:n7a9m1FAlsfi2SDBv5,rCfWklPl_:\"rgb(255, 255, 255)\",rLSyGOc6P:\"rgba(255, 255, 255, 0.51)\",sDVoB6ICT:toResponsiveImage(L68LsXkDtsfi2SDBv5),style:{width:\"100%\"},tYmpDGiGR:\"rgb(255, 255, 255)\",variant:\"kv282wCnn\",width:\"100%\"})})})})})})},idsfi2SDBv5);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-j780wk\",\"data-framer-name\":\"CS2\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"mniQKKDUc\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"mniQKKDUc\",name:\"KZRnRUokk\",type:\"Identifier\"},{collection:\"mniQKKDUc\",name:\"L68LsXkDt\",type:\"Identifier\"},{collection:\"mniQKKDUc\",name:\"z5W1tKGHk\",type:\"Identifier\"},{collection:\"mniQKKDUc\",name:\"xMmBaux2L\",type:\"Identifier\"},{collection:\"mniQKKDUc\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"mniQKKDUc\",name:\"pW0DhCl1H\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"nwgii2QsQ\"},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"mniQKKDUc\",name:\"FR7OCKHCi\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idmniQKKDUc,KZRnRUokk:KZRnRUokkmniQKKDUc,L68LsXkDt:L68LsXkDtmniQKKDUc,xMmBaux2L:xMmBaux2LmniQKKDUc,z5W1tKGHk:z5W1tKGHkmniQKKDUc},index1)=>{KZRnRUokkmniQKKDUc??=\"\";z5W1tKGHkmniQKKDUc??=\"\";xMmBaux2LmniQKKDUc??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`mniQKKDUc-${idmniQKKDUc}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{KZRnRUokk:KZRnRUokkmniQKKDUc},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{KZRnRUokk:KZRnRUokkmniQKKDUc},webPageId:\"mlzntNu5a\"},motionChild:true,nodeId:\"yS1fziuE7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-10i7dbg framer-lux5qc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:413,width:\"1200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fua4en-container\",inComponentSlot:true,nodeId:\"VtZx_LF17\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CaseStudySlider,{EiOzJ02C9:xMmBaux2LmniQKKDUc,eK_Vvbv3o:\"rgb(255, 255, 255)\",height:\"100%\",hwJVMGjOU:\"FEATURED CASE STUDY\",id:\"VtZx_LF17\",layoutId:\"VtZx_LF17\",mNIZhYAe7:z5W1tKGHkmniQKKDUc,rCfWklPl_:\"rgb(255, 255, 255)\",rLSyGOc6P:\"rgba(255, 255, 255, 0.51)\",sDVoB6ICT:toResponsiveImage(L68LsXkDtmniQKKDUc),style:{width:\"100%\"},tYmpDGiGR:\"rgb(255, 255, 255)\",variant:\"kv282wCnn\",width:\"100%\"})})})})})})},idmniQKKDUc);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-i320lg\",\"data-framer-name\":\"CS3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"GXs5UWBuD\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"GXs5UWBuD\",name:\"KZRnRUokk\",type:\"Identifier\"},{collection:\"GXs5UWBuD\",name:\"L68LsXkDt\",type:\"Identifier\"},{collection:\"GXs5UWBuD\",name:\"z5W1tKGHk\",type:\"Identifier\"},{collection:\"GXs5UWBuD\",name:\"xMmBaux2L\",type:\"Identifier\"},{collection:\"GXs5UWBuD\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"GXs5UWBuD\",name:\"pW0DhCl1H\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"nwgii2QsQ\"},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"GXs5UWBuD\",name:\"FR7OCKHCi\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idGXs5UWBuD,KZRnRUokk:KZRnRUokkGXs5UWBuD,L68LsXkDt:L68LsXkDtGXs5UWBuD,xMmBaux2L:xMmBaux2LGXs5UWBuD,z5W1tKGHk:z5W1tKGHkGXs5UWBuD},index2)=>{KZRnRUokkGXs5UWBuD??=\"\";z5W1tKGHkGXs5UWBuD??=\"\";xMmBaux2LGXs5UWBuD??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`GXs5UWBuD-${idGXs5UWBuD}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{KZRnRUokk:KZRnRUokkGXs5UWBuD},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{KZRnRUokk:KZRnRUokkGXs5UWBuD},webPageId:\"mlzntNu5a\"},motionChild:true,nodeId:\"XlVkmorAW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1tb5xc9 framer-lux5qc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:413,width:\"1200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rzh0sl-container\",inComponentSlot:true,nodeId:\"t6JDnlb6Y\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CaseStudySlider,{EiOzJ02C9:xMmBaux2LGXs5UWBuD,eK_Vvbv3o:\"rgb(255, 255, 255)\",height:\"100%\",hwJVMGjOU:\"FEATURED CASE STUDY\",id:\"t6JDnlb6Y\",layoutId:\"t6JDnlb6Y\",mNIZhYAe7:z5W1tKGHkGXs5UWBuD,rCfWklPl_:\"rgb(255, 255, 255)\",rLSyGOc6P:\"rgba(255, 255, 255, 0.51)\",sDVoB6ICT:toResponsiveImage(L68LsXkDtGXs5UWBuD),style:{width:\"100%\"},tYmpDGiGR:\"rgb(255, 255, 255)\",variant:\"kv282wCnn\",width:\"100%\"})})})})})})},idGXs5UWBuD);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u4aczj\",\"data-framer-name\":\"CS4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"jIPnUl6bi\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"jIPnUl6bi\",name:\"KZRnRUokk\",type:\"Identifier\"},{collection:\"jIPnUl6bi\",name:\"L68LsXkDt\",type:\"Identifier\"},{collection:\"jIPnUl6bi\",name:\"z5W1tKGHk\",type:\"Identifier\"},{collection:\"jIPnUl6bi\",name:\"xMmBaux2L\",type:\"Identifier\"},{collection:\"jIPnUl6bi\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"jIPnUl6bi\",name:\"pW0DhCl1H\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"nwgii2QsQ\"},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"jIPnUl6bi\",name:\"FR7OCKHCi\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({id:idjIPnUl6bi,KZRnRUokk:KZRnRUokkjIPnUl6bi,L68LsXkDt:L68LsXkDtjIPnUl6bi,xMmBaux2L:xMmBaux2LjIPnUl6bi,z5W1tKGHk:z5W1tKGHkjIPnUl6bi},index3)=>{KZRnRUokkjIPnUl6bi??=\"\";z5W1tKGHkjIPnUl6bi??=\"\";xMmBaux2LjIPnUl6bi??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`jIPnUl6bi-${idjIPnUl6bi}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{KZRnRUokk:KZRnRUokkjIPnUl6bi},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{KZRnRUokk:KZRnRUokkjIPnUl6bi},webPageId:\"mlzntNu5a\"},motionChild:true,nodeId:\"j98OReBP6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1hkaf9i framer-lux5qc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:413,width:\"1200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tjbbxg-container\",inComponentSlot:true,nodeId:\"Y2Zafnvrk\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CaseStudySlider,{EiOzJ02C9:xMmBaux2LjIPnUl6bi,eK_Vvbv3o:\"rgb(255, 255, 255)\",height:\"100%\",hwJVMGjOU:\"FEATURED CASE STUDY\",id:\"Y2Zafnvrk\",layoutId:\"Y2Zafnvrk\",mNIZhYAe7:z5W1tKGHkjIPnUl6bi,rCfWklPl_:\"rgb(255, 255, 255)\",rLSyGOc6P:\"rgba(255, 255, 255, 0.5)\",sDVoB6ICT:toResponsiveImage(L68LsXkDtjIPnUl6bi),style:{width:\"100%\"},tYmpDGiGR:\"rgb(255, 255, 255)\",variant:\"kv282wCnn\",width:\"100%\"})})})})})})},idjIPnUl6bi);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13mh6w5\",\"data-framer-name\":\"CS5\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"vLWVfAoKA\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"vLWVfAoKA\",name:\"KZRnRUokk\",type:\"Identifier\"},{collection:\"vLWVfAoKA\",name:\"L68LsXkDt\",type:\"Identifier\"},{collection:\"vLWVfAoKA\",name:\"z5W1tKGHk\",type:\"Identifier\"},{collection:\"vLWVfAoKA\",name:\"xMmBaux2L\",type:\"Identifier\"},{collection:\"vLWVfAoKA\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"vLWVfAoKA\",name:\"pW0DhCl1H\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"nwgii2QsQ\"},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"vLWVfAoKA\",name:\"FR7OCKHCi\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({id:idvLWVfAoKA,KZRnRUokk:KZRnRUokkvLWVfAoKA,L68LsXkDt:L68LsXkDtvLWVfAoKA,xMmBaux2L:xMmBaux2LvLWVfAoKA,z5W1tKGHk:z5W1tKGHkvLWVfAoKA},index4)=>{KZRnRUokkvLWVfAoKA??=\"\";z5W1tKGHkvLWVfAoKA??=\"\";xMmBaux2LvLWVfAoKA??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`vLWVfAoKA-${idvLWVfAoKA}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{KZRnRUokk:KZRnRUokkvLWVfAoKA},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{KZRnRUokk:KZRnRUokkvLWVfAoKA},webPageId:\"mlzntNu5a\"},motionChild:true,nodeId:\"JZTIdXoR_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-cznrbc framer-lux5qc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:413,width:\"1200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-80gd53-container\",inComponentSlot:true,nodeId:\"dOV4GJV5y\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CaseStudySlider,{EiOzJ02C9:xMmBaux2LvLWVfAoKA,eK_Vvbv3o:\"rgb(255, 255, 255)\",height:\"100%\",hwJVMGjOU:\"FEATURED CASE STUDY\",id:\"dOV4GJV5y\",layoutId:\"dOV4GJV5y\",mNIZhYAe7:z5W1tKGHkvLWVfAoKA,rCfWklPl_:\"rgb(255, 255, 255)\",rLSyGOc6P:\"rgba(255, 255, 255, 0.5)\",sDVoB6ICT:toResponsiveImage(L68LsXkDtvLWVfAoKA),style:{width:\"100%\"},tYmpDGiGR:\"rgb(255, 255, 255)\",variant:\"kv282wCnn\",width:\"100%\"})})})})})})},idvLWVfAoKA);})})})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w9z1ax hidden-72rtr7 hidden-1mw2lfs\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hbgxv1 hidden-72rtr7\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k40n9m hidden-72rtr7\",\"data-framer-name\":\"CS1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"scNTVRgLe\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"scNTVRgLe\",name:\"KZRnRUokk\",type:\"Identifier\"},{collection:\"scNTVRgLe\",name:\"L68LsXkDt\",type:\"Identifier\"},{collection:\"scNTVRgLe\",name:\"n7a9m1FAl\",type:\"Identifier\"},{collection:\"scNTVRgLe\",name:\"xMmBaux2L\",type:\"Identifier\"},{collection:\"scNTVRgLe\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"scNTVRgLe\",name:\"pW0DhCl1H\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"nwgii2QsQ\"},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"scNTVRgLe\",name:\"FR7OCKHCi\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({id:idscNTVRgLe,KZRnRUokk:KZRnRUokkscNTVRgLe,L68LsXkDt:L68LsXkDtscNTVRgLe,n7a9m1FAl:n7a9m1FAlscNTVRgLe,xMmBaux2L:xMmBaux2LscNTVRgLe},index5)=>{KZRnRUokkscNTVRgLe??=\"\";n7a9m1FAlscNTVRgLe??=\"\";xMmBaux2LscNTVRgLe??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`scNTVRgLe-${idscNTVRgLe}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{KZRnRUokk:KZRnRUokkscNTVRgLe},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{KZRnRUokk:KZRnRUokkscNTVRgLe},webPageId:\"mlzntNu5a\"},motionChild:true,nodeId:\"O3LIEWdhR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-17k80ia framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NuMPYNaqX:{width:`max((${componentViewport?.width||\"100vw\"} - 105px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:413,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ikk4oa-container\",nodeId:\"Cdfh9zBFy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CaseStudySlider,{EiOzJ02C9:xMmBaux2LscNTVRgLe,eK_Vvbv3o:\"rgb(255, 255, 255)\",height:\"100%\",hwJVMGjOU:\"FEATURED CASE STUDY\",id:\"Cdfh9zBFy\",layoutId:\"Cdfh9zBFy\",mNIZhYAe7:n7a9m1FAlscNTVRgLe,rCfWklPl_:\"rgb(255, 255, 255)\",rLSyGOc6P:\"rgba(255, 255, 255, 0.51)\",sDVoB6ICT:toResponsiveImage(L68LsXkDtscNTVRgLe),style:{width:\"100%\"},tYmpDGiGR:\"rgb(255, 255, 255)\",variant:\"S9745Qugj\",width:\"100%\"})})})})})})})},idscNTVRgLe);})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-17kfej0 hidden-72rtr7\",\"data-framer-name\":\"CS1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"I2HwVMFBd\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"I2HwVMFBd\",name:\"KZRnRUokk\",type:\"Identifier\"},{collection:\"I2HwVMFBd\",name:\"L68LsXkDt\",type:\"Identifier\"},{collection:\"I2HwVMFBd\",name:\"n7a9m1FAl\",type:\"Identifier\"},{collection:\"I2HwVMFBd\",name:\"xMmBaux2L\",type:\"Identifier\"},{collection:\"I2HwVMFBd\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"I2HwVMFBd\",name:\"pW0DhCl1H\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"nwgii2QsQ\"},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"I2HwVMFBd\",name:\"FR7OCKHCi\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6?.map(({id:idI2HwVMFBd,KZRnRUokk:KZRnRUokkI2HwVMFBd,L68LsXkDt:L68LsXkDtI2HwVMFBd,n7a9m1FAl:n7a9m1FAlI2HwVMFBd,xMmBaux2L:xMmBaux2LI2HwVMFBd},index6)=>{KZRnRUokkI2HwVMFBd??=\"\";n7a9m1FAlI2HwVMFBd??=\"\";xMmBaux2LI2HwVMFBd??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`I2HwVMFBd-${idI2HwVMFBd}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{KZRnRUokk:KZRnRUokkI2HwVMFBd},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{KZRnRUokk:KZRnRUokkI2HwVMFBd},webPageId:\"mlzntNu5a\"},motionChild:true,nodeId:\"aFVTCpYIz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1cj6fa6 framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NuMPYNaqX:{width:`max((${componentViewport?.width||\"100vw\"} - 105px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:413,children:/*#__PURE__*/_jsx(Container,{className:\"framer-eefwd0-container\",nodeId:\"riSG42w40\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CaseStudySlider,{EiOzJ02C9:xMmBaux2LI2HwVMFBd,eK_Vvbv3o:\"rgb(255, 255, 255)\",height:\"100%\",hwJVMGjOU:\"FEATURED CASE STUDY\",id:\"riSG42w40\",layoutId:\"riSG42w40\",mNIZhYAe7:n7a9m1FAlI2HwVMFBd,rCfWklPl_:\"rgb(255, 255, 255)\",rLSyGOc6P:\"rgba(255, 255, 255, 0.51)\",sDVoB6ICT:toResponsiveImage(L68LsXkDtI2HwVMFBd),style:{width:\"100%\"},tYmpDGiGR:\"rgb(255, 255, 255)\",variant:\"S9745Qugj\",width:\"100%\"})})})})})})})},idI2HwVMFBd);})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cfxpk5 hidden-72rtr7\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-c1t3z9\",\"data-framer-name\":\"CS1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"AAkg0RrdJ\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"AAkg0RrdJ\",name:\"KZRnRUokk\",type:\"Identifier\"},{collection:\"AAkg0RrdJ\",name:\"L68LsXkDt\",type:\"Identifier\"},{collection:\"AAkg0RrdJ\",name:\"n7a9m1FAl\",type:\"Identifier\"},{collection:\"AAkg0RrdJ\",name:\"xMmBaux2L\",type:\"Identifier\"},{collection:\"AAkg0RrdJ\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"AAkg0RrdJ\",name:\"pW0DhCl1H\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"nwgii2QsQ\"},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"AAkg0RrdJ\",name:\"FR7OCKHCi\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7?.map(({id:idAAkg0RrdJ,KZRnRUokk:KZRnRUokkAAkg0RrdJ,L68LsXkDt:L68LsXkDtAAkg0RrdJ,n7a9m1FAl:n7a9m1FAlAAkg0RrdJ,xMmBaux2L:xMmBaux2LAAkg0RrdJ},index7)=>{KZRnRUokkAAkg0RrdJ??=\"\";n7a9m1FAlAAkg0RrdJ??=\"\";xMmBaux2LAAkg0RrdJ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`AAkg0RrdJ-${idAAkg0RrdJ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{KZRnRUokk:KZRnRUokkAAkg0RrdJ},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{KZRnRUokk:KZRnRUokkAAkg0RrdJ},webPageId:\"mlzntNu5a\"},motionChild:true,nodeId:\"o0WZ7Vd7T\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-nrmkad framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NuMPYNaqX:{width:`max((${componentViewport?.width||\"100vw\"} - 105px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:413,children:/*#__PURE__*/_jsx(Container,{className:\"framer-n7gnjm-container\",nodeId:\"iKsDfA91R\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CaseStudySlider,{EiOzJ02C9:xMmBaux2LAAkg0RrdJ,eK_Vvbv3o:\"rgb(255, 255, 255)\",height:\"100%\",hwJVMGjOU:\"FEATURED CASE STUDY\",id:\"iKsDfA91R\",layoutId:\"iKsDfA91R\",mNIZhYAe7:n7a9m1FAlAAkg0RrdJ,rCfWklPl_:\"rgb(255, 255, 255)\",rLSyGOc6P:\"rgba(255, 255, 255, 0.51)\",sDVoB6ICT:toResponsiveImage(L68LsXkDtAAkg0RrdJ),style:{width:\"100%\"},tYmpDGiGR:\"rgb(255, 255, 255)\",variant:\"S9745Qugj\",width:\"100%\"})})})})})})})},idAAkg0RrdJ);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ucvha4\",\"data-framer-name\":\"CS1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"zq3G8rtTT\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"zq3G8rtTT\",name:\"KZRnRUokk\",type:\"Identifier\"},{collection:\"zq3G8rtTT\",name:\"L68LsXkDt\",type:\"Identifier\"},{collection:\"zq3G8rtTT\",name:\"n7a9m1FAl\",type:\"Identifier\"},{collection:\"zq3G8rtTT\",name:\"xMmBaux2L\",type:\"Identifier\"},{collection:\"zq3G8rtTT\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"zq3G8rtTT\",name:\"pW0DhCl1H\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"nwgii2QsQ\"},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"zq3G8rtTT\",name:\"FR7OCKHCi\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection8,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection8?.map(({id:idzq3G8rtTT,KZRnRUokk:KZRnRUokkzq3G8rtTT,L68LsXkDt:L68LsXkDtzq3G8rtTT,n7a9m1FAl:n7a9m1FAlzq3G8rtTT,xMmBaux2L:xMmBaux2Lzq3G8rtTT},index8)=>{KZRnRUokkzq3G8rtTT??=\"\";n7a9m1FAlzq3G8rtTT??=\"\";xMmBaux2Lzq3G8rtTT??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`zq3G8rtTT-${idzq3G8rtTT}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{KZRnRUokk:KZRnRUokkzq3G8rtTT},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{KZRnRUokk:KZRnRUokkzq3G8rtTT},webPageId:\"mlzntNu5a\"},motionChild:true,nodeId:\"GKcskhmBW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1rv9jk framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NuMPYNaqX:{width:`max((${componentViewport?.width||\"100vw\"} - 105px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:413,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o1xeqy-container\",nodeId:\"NAl_SbaYN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CaseStudySlider,{EiOzJ02C9:xMmBaux2Lzq3G8rtTT,eK_Vvbv3o:\"rgb(255, 255, 255)\",height:\"100%\",hwJVMGjOU:\"FEATURED CASE STUDY\",id:\"NAl_SbaYN\",layoutId:\"NAl_SbaYN\",mNIZhYAe7:n7a9m1FAlzq3G8rtTT,rCfWklPl_:\"rgb(255, 255, 255)\",rLSyGOc6P:\"rgba(255, 255, 255, 0.51)\",sDVoB6ICT:toResponsiveImage(L68LsXkDtzq3G8rtTT),style:{width:\"100%\"},tYmpDGiGR:\"rgb(255, 255, 255)\",variant:\"S9745Qugj\",width:\"100%\"})})})})})})})},idzq3G8rtTT);})})})})})]})]}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1599muu hidden-72rtr7 hidden-1jqlyc5\",\"data-framer-name\":\"CS1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"TyPV68u2N\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"TyPV68u2N\",name:\"KZRnRUokk\",type:\"Identifier\"},{collection:\"TyPV68u2N\",name:\"L68LsXkDt\",type:\"Identifier\"},{collection:\"TyPV68u2N\",name:\"n7a9m1FAl\",type:\"Identifier\"},{collection:\"TyPV68u2N\",name:\"xMmBaux2L\",type:\"Identifier\"},{collection:\"TyPV68u2N\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"TyPV68u2N\",name:\"pW0DhCl1H\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"nwgii2QsQ\"},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"TyPV68u2N\",name:\"FR7OCKHCi\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection9,paginationInfo9,loadMore9)=>/*#__PURE__*/_jsx(_Fragment,{children:collection9?.map(({id:idTyPV68u2N,KZRnRUokk:KZRnRUokkTyPV68u2N,L68LsXkDt:L68LsXkDtTyPV68u2N,n7a9m1FAl:n7a9m1FAlTyPV68u2N,xMmBaux2L:xMmBaux2LTyPV68u2N},index9)=>{KZRnRUokkTyPV68u2N??=\"\";n7a9m1FAlTyPV68u2N??=\"\";xMmBaux2LTyPV68u2N??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`TyPV68u2N-${idTyPV68u2N}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{KZRnRUokk:KZRnRUokkTyPV68u2N},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{KZRnRUokk:KZRnRUokkTyPV68u2N},webPageId:\"mlzntNu5a\"},motionChild:true,nodeId:\"VzznP7Fv1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ql8rcl framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I_lu0l3mt:{width:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:413,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oajkh8-container\",nodeId:\"Yuwz7N0yG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CaseStudySlider,{EiOzJ02C9:xMmBaux2LTyPV68u2N,eK_Vvbv3o:\"rgb(255, 255, 255)\",height:\"100%\",hwJVMGjOU:\"FEATURED CASE STUDY\",id:\"Yuwz7N0yG\",layoutId:\"Yuwz7N0yG\",mNIZhYAe7:n7a9m1FAlTyPV68u2N,rCfWklPl_:\"rgb(255, 255, 255)\",rLSyGOc6P:\"rgba(255, 255, 255, 0.51)\",sDVoB6ICT:toResponsiveImage(L68LsXkDtTyPV68u2N),style:{width:\"100%\"},tYmpDGiGR:\"rgb(255, 255, 255)\",variant:\"YLzQgQ6gz\",width:\"100%\"})})})})})})})},idTyPV68u2N);})})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-9t6cpj hidden-72rtr7 hidden-1jqlyc5\",\"data-framer-name\":\"CS1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"kUrqvMBcy\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"kUrqvMBcy\",name:\"KZRnRUokk\",type:\"Identifier\"},{collection:\"kUrqvMBcy\",name:\"L68LsXkDt\",type:\"Identifier\"},{collection:\"kUrqvMBcy\",name:\"n7a9m1FAl\",type:\"Identifier\"},{collection:\"kUrqvMBcy\",name:\"xMmBaux2L\",type:\"Identifier\"},{collection:\"kUrqvMBcy\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"kUrqvMBcy\",name:\"pW0DhCl1H\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"nwgii2QsQ\"},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"kUrqvMBcy\",name:\"FR7OCKHCi\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection10,paginationInfo10,loadMore10)=>/*#__PURE__*/_jsx(_Fragment,{children:collection10?.map(({id:idkUrqvMBcy,KZRnRUokk:KZRnRUokkkUrqvMBcy,L68LsXkDt:L68LsXkDtkUrqvMBcy,n7a9m1FAl:n7a9m1FAlkUrqvMBcy,xMmBaux2L:xMmBaux2LkUrqvMBcy},index10)=>{KZRnRUokkkUrqvMBcy??=\"\";n7a9m1FAlkUrqvMBcy??=\"\";xMmBaux2LkUrqvMBcy??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`kUrqvMBcy-${idkUrqvMBcy}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{KZRnRUokk:KZRnRUokkkUrqvMBcy},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{KZRnRUokk:KZRnRUokkkUrqvMBcy},webPageId:\"mlzntNu5a\"},motionChild:true,nodeId:\"zwrX6gZbc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-3tugah framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I_lu0l3mt:{width:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:413,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lxhyoh-container\",nodeId:\"sKpDC1Iq_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CaseStudySlider,{EiOzJ02C9:xMmBaux2LkUrqvMBcy,eK_Vvbv3o:\"rgb(255, 255, 255)\",height:\"100%\",hwJVMGjOU:\"FEATURED CASE STUDY\",id:\"sKpDC1Iq_\",layoutId:\"sKpDC1Iq_\",mNIZhYAe7:n7a9m1FAlkUrqvMBcy,rCfWklPl_:\"rgb(255, 255, 255)\",rLSyGOc6P:\"rgba(255, 255, 255, 0.51)\",sDVoB6ICT:toResponsiveImage(L68LsXkDtkUrqvMBcy),style:{width:\"100%\"},tYmpDGiGR:\"rgb(255, 255, 255)\",variant:\"YLzQgQ6gz\",width:\"100%\"})})})})})})})},idkUrqvMBcy);})})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-6vs5lx hidden-72rtr7 hidden-1jqlyc5\",\"data-framer-name\":\"CS1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"QblpFiqJQ\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"QblpFiqJQ\",name:\"KZRnRUokk\",type:\"Identifier\"},{collection:\"QblpFiqJQ\",name:\"L68LsXkDt\",type:\"Identifier\"},{collection:\"QblpFiqJQ\",name:\"n7a9m1FAl\",type:\"Identifier\"},{collection:\"QblpFiqJQ\",name:\"xMmBaux2L\",type:\"Identifier\"},{collection:\"QblpFiqJQ\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"QblpFiqJQ\",name:\"pW0DhCl1H\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"nwgii2QsQ\"},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"QblpFiqJQ\",name:\"FR7OCKHCi\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection11,paginationInfo11,loadMore11)=>/*#__PURE__*/_jsx(_Fragment,{children:collection11?.map(({id:idQblpFiqJQ,KZRnRUokk:KZRnRUokkQblpFiqJQ,L68LsXkDt:L68LsXkDtQblpFiqJQ,n7a9m1FAl:n7a9m1FAlQblpFiqJQ,xMmBaux2L:xMmBaux2LQblpFiqJQ},index11)=>{KZRnRUokkQblpFiqJQ??=\"\";n7a9m1FAlQblpFiqJQ??=\"\";xMmBaux2LQblpFiqJQ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`QblpFiqJQ-${idQblpFiqJQ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{KZRnRUokk:KZRnRUokkQblpFiqJQ},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{KZRnRUokk:KZRnRUokkQblpFiqJQ},webPageId:\"mlzntNu5a\"},motionChild:true,nodeId:\"aiga3QStO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1dudz92 framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I_lu0l3mt:{width:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:413,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tog0a5-container\",nodeId:\"NBYPczodU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CaseStudySlider,{EiOzJ02C9:xMmBaux2LQblpFiqJQ,eK_Vvbv3o:\"rgb(255, 255, 255)\",height:\"100%\",hwJVMGjOU:\"FEATURED CASE STUDY\",id:\"NBYPczodU\",layoutId:\"NBYPczodU\",mNIZhYAe7:n7a9m1FAlQblpFiqJQ,rCfWklPl_:\"rgb(255, 255, 255)\",rLSyGOc6P:\"rgba(255, 255, 255, 0.51)\",sDVoB6ICT:toResponsiveImage(L68LsXkDtQblpFiqJQ),style:{width:\"100%\"},tYmpDGiGR:\"rgb(255, 255, 255)\",variant:\"YLzQgQ6gz\",width:\"100%\"})})})})})})})},idQblpFiqJQ);})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hfkwbi\",\"data-framer-name\":\"Blogs\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-oqj34e\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1g9zidd\",\"data-styles-preset\":\"obGZbzSZn\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Latest blogs\"})})}),className:\"framer-1pec9xw\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z1re8s\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bgi23s\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-8kg0p8\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I_lu0l3mt:{query:{from:{alias:\"pBPf6x0wW\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"pBPf6x0wW\",name:\"KZRnRUokk\",type:\"Identifier\"},{collection:\"pBPf6x0wW\",name:\"L68LsXkDt\",type:\"Identifier\"},{collection:\"pBPf6x0wW\",name:\"z5W1tKGHk\",type:\"Identifier\"},{collection:\"pBPf6x0wW\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"pBPf6x0wW\",name:\"pW0DhCl1H\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"lv2tr2a19\"},type:\"BinaryOperation\"}}},NuMPYNaqX:{query:{from:{alias:\"pBPf6x0wW\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"pBPf6x0wW\",name:\"KZRnRUokk\",type:\"Identifier\"},{collection:\"pBPf6x0wW\",name:\"L68LsXkDt\",type:\"Identifier\"},{collection:\"pBPf6x0wW\",name:\"z5W1tKGHk\",type:\"Identifier\"},{collection:\"pBPf6x0wW\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"pBPf6x0wW\",name:\"pW0DhCl1H\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"lv2tr2a19\"},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"pBPf6x0wW\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"pBPf6x0wW\",name:\"KZRnRUokk\",type:\"Identifier\"},{collection:\"pBPf6x0wW\",name:\"L68LsXkDt\",type:\"Identifier\"},{collection:\"pBPf6x0wW\",name:\"z5W1tKGHk\",type:\"Identifier\"},{collection:\"pBPf6x0wW\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"pBPf6x0wW\",name:\"pW0DhCl1H\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"lv2tr2a19\"},type:\"BinaryOperation\"}},children:(collection12,paginationInfo12,loadMore12)=>/*#__PURE__*/_jsx(_Fragment,{children:collection12?.map(({id:idpBPf6x0wW,KZRnRUokk:KZRnRUokkpBPf6x0wW,L68LsXkDt:L68LsXkDtpBPf6x0wW,z5W1tKGHk:z5W1tKGHkpBPf6x0wW},index12)=>{KZRnRUokkpBPf6x0wW??=\"\";z5W1tKGHkpBPf6x0wW??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`pBPf6x0wW-${idpBPf6x0wW}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{KZRnRUokk:KZRnRUokkpBPf6x0wW},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{KZRnRUokk:KZRnRUokkpBPf6x0wW},webPageId:\"mlzntNu5a\"},motionChild:true,nodeId:\"Xfvmq22_Z\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-174etpu framer-lux5qc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I_lu0l3mt:{background:{alt:\"\",fit:\"fill\",sizes:\"330px\",...toResponsiveImage(L68LsXkDtpBPf6x0wW),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(L68LsXkDtpBPf6x0wW)},className:\"framer-1g7vmwn\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eimn5n\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eqoby\",\"data-styles-preset\":\"f1gF_yaZY\",children:\"Pathways to building an effective Lebanese state\"})}),className:\"framer-127s9au\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:z5W1tKGHkpBPf6x0wW,verticalAlignment:\"top\",withExternalLayout:true})]})})})},idpBPf6x0wW);})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pf66e9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cuk46k\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-v4516w\",\"data-styles-preset\":\"EG5DAfYbk\",children:\"More blogs\"})}),className:\"framer-1w9dtcl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tr9v72\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mzc5kd\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"YDCUK5A8Z\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"YDCUK5A8Z\",name:\"KZRnRUokk\",type:\"Identifier\"},{collection:\"YDCUK5A8Z\",name:\"z5W1tKGHk\",type:\"Identifier\"},{collection:\"YDCUK5A8Z\",name:\"HLJLG0_Vl\",type:\"Identifier\"},{collection:\"YDCUK5A8Z\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"YDCUK5A8Z\",name:\"pW0DhCl1H\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"lv2tr2a19\"},type:\"BinaryOperation\"}},children:(collection13,paginationInfo13,loadMore13)=>/*#__PURE__*/_jsx(_Fragment,{children:collection13?.map(({HLJLG0_Vl:HLJLG0_VlYDCUK5A8Z,id:idYDCUK5A8Z,KZRnRUokk:KZRnRUokkYDCUK5A8Z,z5W1tKGHk:z5W1tKGHkYDCUK5A8Z},index13)=>{KZRnRUokkYDCUK5A8Z??=\"\";z5W1tKGHkYDCUK5A8Z??=\"\";const textContent=toDateString(HLJLG0_VlYDCUK5A8Z,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`YDCUK5A8Z-${idYDCUK5A8Z}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{KZRnRUokk:KZRnRUokkYDCUK5A8Z},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{KZRnRUokk:KZRnRUokkYDCUK5A8Z},webPageId:\"mlzntNu5a\"},motionChild:true,nodeId:\"SN76Cm9tl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-19hvp6t framer-lux5qc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eqoby\",\"data-styles-preset\":\"f1gF_yaZY\",children:\"Ushering in an era of independent oversight\"})}),className:\"framer-3fb4ux\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:z5W1tKGHkYDCUK5A8Z,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6wlalu\",\"data-styles-preset\":\"XZVboaAOj\",children:\"May 13, 2022\"})}),className:\"framer-1buu3wz\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]})})})},idYDCUK5A8Z);})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hemltw\",\"data-framer-name\":\"Blogs\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4saayv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1g9zidd\",\"data-styles-preset\":\"obGZbzSZn\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Featured initiatives\"})})}),className:\"framer-ikuj46\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1og16ey\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bhycki\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I_lu0l3mt:{background:{alt:\"\",fit:\"fill\",pixelHeight:1368,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,src:\"https://framerusercontent.com/images/5Bi4IPQ00BMqFUtekJ5kemieNs.jpg\",srcSet:\"https://framerusercontent.com/images/5Bi4IPQ00BMqFUtekJ5kemieNs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5Bi4IPQ00BMqFUtekJ5kemieNs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5Bi4IPQ00BMqFUtekJ5kemieNs.jpg 2048w\"}},NuMPYNaqX:{background:{alt:\"\",fit:\"fill\",pixelHeight:1368,pixelWidth:2048,sizes:`max((${componentViewport?.width||\"100vw\"} - 130px) / 2, 1px)`,src:\"https://framerusercontent.com/images/5Bi4IPQ00BMqFUtekJ5kemieNs.jpg\",srcSet:\"https://framerusercontent.com/images/5Bi4IPQ00BMqFUtekJ5kemieNs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5Bi4IPQ00BMqFUtekJ5kemieNs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5Bi4IPQ00BMqFUtekJ5kemieNs.jpg 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1368,pixelWidth:2048,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1280px) - 50px) / 2, 1px)`,src:\"https://framerusercontent.com/images/5Bi4IPQ00BMqFUtekJ5kemieNs.jpg\",srcSet:\"https://framerusercontent.com/images/5Bi4IPQ00BMqFUtekJ5kemieNs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5Bi4IPQ00BMqFUtekJ5kemieNs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5Bi4IPQ00BMqFUtekJ5kemieNs.jpg 2048w\"},className:\"framer-1awkktc\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rwayb2\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19clrst\",\"data-styles-preset\":\"wYHRH_3UU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Youth4Governance\"})})}),className:\"framer-a1w8pd\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eqoby\",\"data-styles-preset\":\"f1gF_yaZY\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our flagship internship that brings students, universities and public administrations together to promote accountable, transparent and effective governance.\"})}),className:\"framer-cfpjy6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{KZRnRUokk:\"engaging-youth-in-public-sector-reform\"},unresolvedPathSlugs:{KZRnRUokk:{collectionId:\"gD7e29ik5\",collectionItemId:\"s8NUZmAb7\"}},webPageId:\"mlzntNu5a\"},implicitPathVariables:undefined},{href:{pathVariables:{KZRnRUokk:\"engaging-youth-in-public-sector-reform\"},unresolvedPathSlugs:{KZRnRUokk:{collectionId:\"gD7e29ik5\",collectionItemId:\"s8NUZmAb7\"}},webPageId:\"mlzntNu5a\"},implicitPathVariables:undefined},{href:{pathVariables:{KZRnRUokk:\"engaging-youth-in-public-sector-reform\"},unresolvedPathSlugs:{KZRnRUokk:{collectionId:\"gD7e29ik5\",collectionItemId:\"s8NUZmAb7\"}},webPageId:\"mlzntNu5a\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1khalx8-container\",nodeId:\"nAKB06ezX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I_lu0l3mt:{ScQAllLDp:resolvedLinks1[2]},NuMPYNaqX:{ScQAllLDp:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{DzhCNxD2v:false,height:\"100%\",id:\"nAKB06ezX\",IfbQFaSFV:true,layoutId:\"nAKB06ezX\",q5xvmw_T_:\"More about Y4G\",ScQAllLDp:resolvedLinks1[0],variant:\"DJTAX6SGe\",width:\"100%\",zaeQf7AHX:\"var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, rgb(196, 13, 60))\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v3ugv8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I_lu0l3mt:{background:{alt:\"\",fit:\"fill\",pixelHeight:960,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,src:\"https://framerusercontent.com/images/V8KrhLel40m5RU8rCJvEG6vWd6Y.jpg\",srcSet:\"https://framerusercontent.com/images/V8KrhLel40m5RU8rCJvEG6vWd6Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/V8KrhLel40m5RU8rCJvEG6vWd6Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/V8KrhLel40m5RU8rCJvEG6vWd6Y.jpg 1280w\"}},NuMPYNaqX:{background:{alt:\"\",fit:\"fill\",pixelHeight:960,pixelWidth:1280,sizes:`max((${componentViewport?.width||\"100vw\"} - 130px) / 2, 1px)`,src:\"https://framerusercontent.com/images/V8KrhLel40m5RU8rCJvEG6vWd6Y.jpg\",srcSet:\"https://framerusercontent.com/images/V8KrhLel40m5RU8rCJvEG6vWd6Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/V8KrhLel40m5RU8rCJvEG6vWd6Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/V8KrhLel40m5RU8rCJvEG6vWd6Y.jpg 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:960,pixelWidth:1280,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1280px) - 50px) / 2, 1px)`,src:\"https://framerusercontent.com/images/V8KrhLel40m5RU8rCJvEG6vWd6Y.jpg\",srcSet:\"https://framerusercontent.com/images/V8KrhLel40m5RU8rCJvEG6vWd6Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/V8KrhLel40m5RU8rCJvEG6vWd6Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/V8KrhLel40m5RU8rCJvEG6vWd6Y.jpg 1280w\"},className:\"framer-vq4pia\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-123lyrh\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19clrst\",\"data-styles-preset\":\"wYHRH_3UU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Chevening-Siren Scholarship\"})})}),className:\"framer-ijyeqm\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eqoby\",\"data-styles-preset\":\"f1gF_yaZY\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Investing in the next generation of Lebanon's leaders by funding a scholarship to do a master\u2019s degree course through the UK's Chevening program.\"})}),className:\"framer-1i2a84e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"eyelwsKgv\"},implicitPathVariables:undefined},{href:{webPageId:\"eyelwsKgv\"},implicitPathVariables:undefined},{href:{webPageId:\"eyelwsKgv\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7uw8mo-container\",nodeId:\"bNHb7IZp6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I_lu0l3mt:{ScQAllLDp:resolvedLinks2[2]},NuMPYNaqX:{ScQAllLDp:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{DzhCNxD2v:false,height:\"100%\",id:\"bNHb7IZp6\",IfbQFaSFV:true,layoutId:\"bNHb7IZp6\",q5xvmw_T_:\"More about the scholarship\",ScQAllLDp:resolvedLinks2[0],variant:\"DJTAX6SGe\",width:\"100%\",zaeQf7AHX:\"var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, rgb(196, 13, 60))\"})})})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-elugeg\",\"data-framer-name\":\"Helper section (footer height)\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NuMPYNaqX:{height:596,y:404}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a0mzi5-container\",layoutScroll:true,nodeId:\"c__k_6d2F\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I_lu0l3mt:{variant:\"hYFe5_q1u\"},NuMPYNaqX:{variant:\"xc9lCOart\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"c__k_6d2F\",layoutId:\"c__k_6d2F\",style:{height:\"100%\",width:\"100%\"},variant:\"PXn4rjbK5\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-77fus.framer-lux5qc, .framer-77fus .framer-lux5qc { display: block; }\",\".framer-77fus.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-71cb407b-71eb-41c1-9e19-622c71e5287f, #1f1646); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-77fus .framer-1il1cmm-container { flex: none; height: auto; left: 0px; max-width: 100%; position: fixed; right: 0px; top: 0px; z-index: 5; }\",\".framer-77fus .framer-18p1tsc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: 100vh; justify-content: center; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-77fus .framer-1wmw5aw { background-color: var(--token-71cb407b-71eb-41c1-9e19-622c71e5287f, #1f1646); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: -1; }\",\".framer-77fus .framer-tqtxf5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-77fus .framer-1s1mm95 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-77fus .framer-cnk1ug { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-77fus .framer-bqicmj { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 567px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-77fus .framer-1f47kym { background-color: rgba(0, 0, 0, 0.5); bottom: 0px; flex: none; gap: 10px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-77fus .framer-1rdhc2h { align-content: center; align-items: center; background-color: var(--token-25811f5e-825b-4c99-8394-992a29ef13f3, #ecebeb); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 60px 0px 60px; position: relative; width: 100%; z-index: 2; }\",\".framer-77fus .framer-ea2shm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-77fus .framer-1yfuwda { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-77fus .framer-janr04-container { flex: 1 0 0px; height: 146px; position: relative; width: 1px; }\",\".framer-77fus .framer-mu16id { height: 36px; position: relative; width: 122px; }\",\".framer-77fus .framer-hf8dus { height: 70px; position: relative; width: 73px; }\",\".framer-77fus .framer-3uqo8q { height: 83px; position: relative; width: 70px; }\",\".framer-77fus .framer-wm47ev { height: 78px; position: relative; width: 163px; }\",\".framer-77fus .framer-1dqwgpn { height: 76px; position: relative; width: 101px; }\",\".framer-77fus .framer-1xal9u { height: 70px; position: relative; width: 107px; }\",\".framer-77fus .framer-1bbos5h { height: 70px; position: relative; width: 93px; }\",\".framer-77fus .framer-1ygl3g7 { height: 82px; position: relative; width: 109px; }\",\".framer-77fus .framer-vfl30u { height: 82px; position: relative; width: 170px; }\",\".framer-77fus .framer-1xjgu0p { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 101px); overflow: visible; position: relative; width: 151px; }\",\".framer-77fus .framer-1g1ruea { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 60px 80px 60px; position: relative; width: 100%; z-index: 1; }\",\".framer-77fus .framer-zgg4sw { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 82px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-77fus .framer-1h5qjtj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-77fus .framer-t6xf3n { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-77fus .framer-kn23oz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-77fus .framer-i5q5fc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-77fus .framer-jc9c5x, .framer-77fus .framer-1xdekh5, .framer-77fus .framer-1k3ks33 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-77fus .framer-1jj60rm, .framer-77fus .framer-n6kle2 { flex: 1 0 0px; height: 74px; overflow: hidden; position: relative; width: 1px; }\",\".framer-77fus .framer-1s5l0km { align-content: center; align-items: center; background-color: var(--token-25811f5e-825b-4c99-8394-992a29ef13f3, #ecebeb); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; overflow: hidden; padding: 60px; position: relative; width: 100%; z-index: 1; }\",\".framer-77fus .framer-uk3ton { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-77fus .framer-lgzvgc { 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-77fus .framer-vrqgqb, .framer-77fus .framer-1dsyqbf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 68%; word-break: break-word; word-wrap: break-word; }\",\".framer-77fus .framer-10k66mb-container, .framer-77fus .framer-12wcy4m-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-77fus .framer-hc7ffy { 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: hidden; padding: 16px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-77fus .framer-buy3v9-container, .framer-77fus .framer-1khalx8-container, .framer-77fus .framer-7uw8mo-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-77fus .framer-zofurs { align-content: center; align-items: center; background-color: var(--token-71cb407b-71eb-41c1-9e19-622c71e5287f, #1f1646); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 60px 0px 60px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-77fus .framer-167cui4 { 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; max-width: 1280px; overflow: hidden; padding: 0px 60px 0px 60px; position: sticky; top: 90px; width: 100%; z-index: 1; }\",\".framer-77fus .framer-8hli4u, .framer-77fus .framer-1c95gp1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 1280px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-77fus .framer-1391pvr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 241.75vh; justify-content: flex-start; overflow: visible; padding: 0px; position: sticky; width: 100%; }\",\".framer-77fus .framer-84pqvd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: flex-start; overflow: hidden; padding: 150px 0px 0px 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-77fus .framer-1072apu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-77fus .framer-19zmuye, .framer-77fus .framer-atkoy8, .framer-77fus .framer-13uijbn, .framer-77fus .framer-15c7wqo, .framer-77fus .framer-ssxsth, .framer-77fus .framer-1q42z6v, .framer-77fus .framer-mvkl4j { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 392px; justify-content: flex-end; overflow: hidden; padding: 30px; position: relative; width: 393px; will-change: var(--framer-will-change-override, transform); }\",\".framer-77fus .framer-kr0lat, .framer-77fus .framer-vinbu1, .framer-77fus .framer-wy12rs, .framer-77fus .framer-1wa2ras, .framer-77fus .framer-1cy7btj, .framer-77fus .framer-1sqkkfc, .framer-77fus .framer-14r2rjp { flex: none; height: 76px; position: relative; width: 70px; }\",\".framer-77fus .framer-10hdoxv, .framer-77fus .framer-1ssny2o, .framer-77fus .framer-j3b37s, .framer-77fus .framer-xmvyu7, .framer-77fus .framer-1onas0w, .framer-77fus .framer-ridiog, .framer-77fus .framer-1p4aik5 { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 327px; }\",\".framer-77fus .framer-1duajdu, .framer-77fus .framer-1jlj1ht, .framer-77fus .framer-1dzqc9l, .framer-77fus .framer-1bcybbq, .framer-77fus .framer-1s8qkoz, .framer-77fus .framer-6b90fj, .framer-77fus .framer-q274tg, .framer-77fus .framer-iophps, .framer-77fus .framer-1cv0ov2, .framer-77fus .framer-10qjgiz, .framer-77fus .framer-fx44pr, .framer-77fus .framer-8quog7, .framer-77fus .framer-e302pt, .framer-77fus .framer-1w9dtcl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-77fus .framer-17jo5vd, .framer-77fus .framer-127s9au, .framer-77fus .framer-3fb4ux, .framer-77fus .framer-1buu3wz, .framer-77fus .framer-cfpjy6, .framer-77fus .framer-1i2a84e { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-77fus .framer-bpsjxf { align-content: center; align-items: center; background-color: var(--token-25811f5e-825b-4c99-8394-992a29ef13f3, #ecebeb); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 60px; position: relative; width: 100%; z-index: 1; }\",\".framer-77fus .framer-1l1fp77 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 1280px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-77fus .framer-17ny0s0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-77fus .framer-1x8mzab, .framer-77fus .framer-15tlbrq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 204px; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 1px; }\",\".framer-77fus .framer-jysh4e, .framer-77fus .framer-vugp33, .framer-77fus .framer-1yi4g45, .framer-77fus .framer-pp1ycj, .framer-77fus .framer-1ybgu68, .framer-77fus .framer-1r4lfc3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-77fus .framer-5zxzte, .framer-77fus .framer-1js9ik7, .framer-77fus .framer-1iljqq8, .framer-77fus .framer-1rdqmac, .framer-77fus .framer-5yezqt, .framer-77fus .framer-1k7bizw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-77fus .framer-xpbj1e, .framer-77fus .framer-1e4viz1, .framer-77fus .framer-1ofid8d, .framer-77fus .framer-1je8obj, .framer-77fus .framer-xjp2l0, .framer-77fus .framer-13ys3ud { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-77fus .framer-hi098m-container, .framer-77fus .framer-yd8mu6-container, .framer-77fus .framer-lsksom-container, .framer-77fus .framer-51gd9i-container, .framer-77fus .framer-1njpx2t-container, .framer-77fus .framer-97kwgv-container { flex: none; height: 43px; position: relative; width: 58px; }\",\".framer-77fus .framer-mod2x4 { align-self: stretch; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: 1 0 0px; height: auto; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-77fus .framer-unnegq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-77fus .framer-3q7v52 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 50px 0px 0px; position: relative; width: 50%; }\",\".framer-77fus .framer-1xiw05n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 110.00000000000001vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-77fus .framer-1qob0kt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-77fus .framer-zeth36 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 110.00000000000001vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-77fus .framer-1r6u8qa-container { flex: none; height: 100vh; position: sticky; top: 0px; width: 50%; z-index: 1; }\",\".framer-77fus .framer-1l4tdwu, .framer-77fus .framer-s8wusa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: 233px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-77fus .framer-1w48v7a, .framer-77fus .framer-1l06xeo { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-77fus .framer-vv3yw7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 203px; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 1px; }\",\".framer-77fus .framer-178pteq { align-content: center; align-items: center; background-color: var(--token-4e4f0a09-7382-4f5d-be85-b9be52f6223b, #0165a5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-77fus .framer-ufigtu, .framer-77fus .framer-j780wk, .framer-77fus .framer-i320lg, .framer-77fus .framer-1u4aczj, .framer-77fus .framer-13mh6w5 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 413px; justify-content: center; padding: 0px; position: relative; width: 1200px; }\",\".framer-77fus .framer-10s2vzk, .framer-77fus .framer-10i7dbg, .framer-77fus .framer-1tb5xc9, .framer-77fus .framer-1hkaf9i, .framer-77fus .framer-cznrbc { 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; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-77fus .framer-1cudcks-container, .framer-77fus .framer-1fua4en-container, .framer-77fus .framer-rzh0sl-container, .framer-77fus .framer-1tjbbxg-container, .framer-77fus .framer-80gd53-container, .framer-77fus .framer-1ikk4oa-container, .framer-77fus .framer-eefwd0-container, .framer-77fus .framer-n7gnjm-container, .framer-77fus .framer-1o1xeqy-container, .framer-77fus .framer-1oajkh8-container, .framer-77fus .framer-lxhyoh-container, .framer-77fus .framer-1tog0a5-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-77fus .framer-1w9z1ax { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; min-height: 200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-77fus .framer-hbgxv1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; min-height: 549px; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-77fus .framer-1k40n9m, .framer-77fus .framer-17kfej0, .framer-77fus .framer-c1t3z9, .framer-77fus .framer-1ucvha4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-77fus .framer-17k80ia, .framer-77fus .framer-1cj6fa6, .framer-77fus .framer-nrmkad, .framer-77fus .framer-1rv9jk, .framer-77fus .framer-1ql8rcl, .framer-77fus .framer-3tugah, .framer-77fus .framer-1dudz92 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-77fus .framer-cfxpk5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-77fus .framer-1599muu, .framer-77fus .framer-9t6cpj, .framer-77fus .framer-6vs5lx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-77fus .framer-1hfkwbi { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; overflow: visible; padding: 60px; position: relative; width: 100%; z-index: 1; }\",\".framer-77fus .framer-oqj34e, .framer-77fus .framer-4saayv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-77fus .framer-1pec9xw, .framer-77fus .framer-ikuj46, .framer-77fus .framer-a1w8pd, .framer-77fus .framer-ijyeqm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-77fus .framer-z1re8s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: 404px; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-77fus .framer-bgi23s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-77fus .framer-8kg0p8 { display: grid; flex: none; gap: 37px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(335px, 1fr)); height: min-content; justify-content: start; padding: 0px; position: relative; width: min-content; }\",\".framer-77fus .framer-174etpu { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-77fus .framer-1g7vmwn, .framer-77fus .framer-1awkktc, .framer-77fus .framer-vq4pia { border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; flex: none; height: 300px; position: relative; width: 100%; }\",\".framer-77fus .framer-1eimn5n, .framer-77fus .framer-1rwayb2, .framer-77fus .framer-123lyrh { background-color: var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, #c40d3c); bottom: 0px; flex: none; height: 6px; left: 0px; overflow: hidden; position: absolute; width: 45px; z-index: 1; }\",\".framer-77fus .framer-pf66e9 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-77fus .framer-1cuk46k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-77fus .framer-tr9v72 { background-color: var(--token-2a3a5637-5a10-44ba-becc-7e498f53500f, #c40d3c); bottom: -11px; flex: none; height: 6px; left: 0px; overflow: hidden; position: absolute; width: 45px; z-index: 1; }\",\".framer-77fus .framer-1mzc5kd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 43px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-77fus .framer-19hvp6t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-77fus .framer-1hemltw { align-content: center; align-items: center; background-color: var(--token-4e4f0a09-7382-4f5d-be85-b9be52f6223b, #0165a5); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; overflow: visible; padding: 60px 60px 100px 60px; position: relative; width: 100%; z-index: 1; }\",\".framer-77fus .framer-1og16ey { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-77fus .framer-bhycki, .framer-77fus .framer-1v3ugv8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-77fus .framer-elugeg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 670px; justify-content: center; overflow: hidden; padding: 100px 60px 100px 60px; pointer-events: none; position: relative; width: 100%; z-index: 0; }\",\".framer-77fus .framer-1a0mzi5-container { bottom: 0px; flex: none; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 0; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-77fus.framer-72rtr7 { width: 810px; } .framer-77fus .framer-1il1cmm-container, .framer-77fus .framer-1l1fp77, .framer-77fus .framer-mod2x4, .framer-77fus .framer-1w48v7a, .framer-77fus .framer-1l06xeo { order: 0; } .framer-77fus .framer-18p1tsc, .framer-77fus .framer-17ny0s0 { order: 1; } .framer-77fus .framer-1s1mm95, .framer-77fus .framer-167cui4 { padding: 0px 40px 0px 40px; } .framer-77fus .framer-1rdhc2h { order: 2; padding: 0px 40px 0px 40px; } .framer-77fus .framer-1g1ruea { order: 3; padding: 60px 40px 60px 40px; } .framer-77fus .framer-zgg4sw { gap: 40px; } .framer-77fus .framer-i5q5fc { gap: 52px; } .framer-77fus .framer-jc9c5x, .framer-77fus .framer-1xdekh5, .framer-77fus .framer-1k3ks33 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-77fus .framer-1s5l0km { order: 4; padding: 60px 40px 60px 40px; } .framer-77fus .framer-zofurs { order: 5; } .framer-77fus .framer-1391pvr { height: 350vh; justify-content: center; } .framer-77fus .framer-84pqvd { flex: 1 0 0px; padding: 150px 0px 150px 0px; width: 1px; } .framer-77fus .framer-19zmuye, .framer-77fus .framer-atkoy8, .framer-77fus .framer-13uijbn, .framer-77fus .framer-ssxsth, .framer-77fus .framer-1q42z6v { height: 439px; width: 440px; } .framer-77fus .framer-kr0lat, .framer-77fus .framer-vinbu1, .framer-77fus .framer-wy12rs, .framer-77fus .framer-1wa2ras, .framer-77fus .framer-1cy7btj, .framer-77fus .framer-1sqkkfc, .framer-77fus .framer-14r2rjp { height: 123px; width: 113px; } .framer-77fus .framer-15c7wqo { height: 439px; width: 439px; } .framer-77fus .framer-mvkl4j { height: 439px; padding: 30px 100px 30px 30px; width: 440px; } .framer-77fus .framer-bpsjxf { gap: 50px; order: 6; padding: 60px 40px 60px 40px; } .framer-77fus .framer-1x8mzab, .framer-77fus .framer-15tlbrq, .framer-77fus .framer-vv3yw7 { min-height: unset; order: 1; } .framer-77fus .framer-1l4tdwu { order: 2; } .framer-77fus .framer-s8wusa { order: 3; } .framer-77fus .framer-178pteq { order: 7; padding: 60px 0px 60px 0px; } .framer-77fus .framer-1w9z1ax, .framer-77fus .framer-hbgxv1 { min-height: unset; } .framer-77fus .framer-1hfkwbi { order: 8; padding: 60px 40px 60px 40px; } .framer-77fus .framer-z1re8s { height: min-content; max-width: unset; } .framer-77fus .framer-bgi23s, .framer-77fus .framer-1og16ey { max-width: unset; } .framer-77fus .framer-8kg0p8 { grid-template-columns: repeat(1, minmax(335px, 1fr)); } .framer-77fus .framer-174etpu { gap: 20px; } .framer-77fus .framer-1mzc5kd { gap: 38px; } .framer-77fus .framer-1hemltw { order: 9; padding: 60px 40px 100px 40px; } .framer-77fus .framer-bhycki, .framer-77fus .framer-1v3ugv8 { gap: 25px; } .framer-77fus .framer-elugeg { height: 596px; order: 10; } .framer-77fus .framer-1a0mzi5-container { height: 596px; order: 11; top: unset; }}\",\"@media (max-width: 809px) { .framer-77fus.framer-72rtr7 { width: 390px; } .framer-77fus .framer-18p1tsc { padding: 70px 0px 0px 0px; } .framer-77fus .framer-1s1mm95, .framer-77fus .framer-167cui4 { padding: 0px 30px 0px 30px; } .framer-77fus .framer-1rdhc2h { flex-direction: column; padding: 0px 30px 0px 30px; } .framer-77fus .framer-ea2shm, .framer-77fus .framer-pf66e9 { flex: none; width: 100%; } .framer-77fus .framer-1g1ruea { flex-direction: column; padding: 60px 30px 60px 30px; } .framer-77fus .framer-zgg4sw { flex: none; gap: 45px; width: 100%; } .framer-77fus .framer-i5q5fc { flex-direction: column; gap: 30px; } .framer-77fus .framer-jc9c5x, .framer-77fus .framer-1xdekh5, .framer-77fus .framer-1k3ks33 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-77fus .framer-1s5l0km, .framer-77fus .framer-1hfkwbi, .framer-77fus .framer-1hemltw { padding: 60px 30px 60px 30px; } .framer-77fus .framer-vrqgqb, .framer-77fus .framer-1dsyqbf { width: 100%; } .framer-77fus .framer-hc7ffy { padding: 0px; } .framer-77fus .framer-1391pvr { height: 350vh; } .framer-77fus .framer-84pqvd { padding: 150px 0px 60px 0px; } .framer-77fus .framer-1072apu { align-content: flex-end; align-items: flex-end; height: 80%; justify-content: flex-end; } .framer-77fus .framer-19zmuye, .framer-77fus .framer-atkoy8, .framer-77fus .framer-13uijbn, .framer-77fus .framer-15c7wqo, .framer-77fus .framer-1q42z6v, .framer-77fus .framer-mvkl4j { height: 100%; width: 321px; } .framer-77fus .framer-ssxsth { height: 100%; width: 320px; } .framer-77fus .framer-bpsjxf { gap: 40px; padding: 60px 30px 60px 30px; } .framer-77fus .framer-3q7v52 { flex: 1 0 0px; gap: 60px; padding: 0px; width: 1px; } .framer-77fus .framer-1xiw05n, .framer-77fus .framer-1qob0kt, .framer-77fus .framer-zeth36 { height: min-content; } .framer-77fus .framer-yd8mu6-container, .framer-77fus .framer-lsksom-container, .framer-77fus .framer-51gd9i-container { width: 32px; } .framer-77fus .framer-178pteq { gap: 30px; padding: 40px 30px 40px 30px; } .framer-77fus .framer-oqj34e, .framer-77fus .framer-4saayv { max-width: unset; } .framer-77fus .framer-z1re8s { flex-direction: column; gap: 40px; height: min-content; max-width: unset; } .framer-77fus .framer-8kg0p8 { grid-template-columns: repeat(1, 330px); } .framer-77fus .framer-174etpu { height: 270px; width: 330px; } .framer-77fus .framer-1g7vmwn { flex: 1 0 0px; height: 1px; overflow: hidden; will-change: var(--framer-will-change-override, transform); } .framer-77fus .framer-1mzc5kd { gap: 30px; } .framer-77fus .framer-1og16ey { flex-direction: column; gap: 65px; max-width: unset; } .framer-77fus .framer-bhycki, .framer-77fus .framer-1v3ugv8 { flex: none; gap: 25px; width: 100%; } .framer-77fus .framer-1awkktc, .framer-77fus .framer-vq4pia { height: 168px; overflow: hidden; will-change: var(--framer-will-change-override, transform); }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9626\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NuMPYNaqX\":{\"layout\":[\"fixed\",\"auto\"]},\"I_lu0l3mt\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"uoavmGCQU\":{\"pattern\":\":uoavmGCQU\",\"name\":\"navbar\"},\"o01dxMurI\":{\"pattern\":\":o01dxMurI\",\"name\":\"toolkit\"},\"YUbup61Z2\":{\"pattern\":\":YUbup61Z2\",\"name\":\"scroll-horizontal\"},\"R1VlQxNPn\":{\"pattern\":\":R1VlQxNPn\",\"name\":\"hropt\"},\"pPwYORvd0\":{\"pattern\":\":pPwYORvd0\",\"name\":\"digitaldata\"},\"Pr3TJEw27\":{\"pattern\":\":Pr3TJEw27\",\"name\":\"sectors\"},\"VFSLxssKr\":{\"pattern\":\":VFSLxssKr\",\"name\":\"sst\"},\"pSDAsUdZF\":{\"pattern\":\":pSDAsUdZF\",\"name\":\"gov\"},\"yiGBRQfdD\":{\"pattern\":\":yiGBRQfdD\",\"name\":\"just\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-77fus\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:9626,width:1200};addFonts(FrameraugiA20Il,[{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:\"Raleway\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/5N7AW67SFRYDQX4PD7CVQBBKU4KFZBF6/IRJRILZOM2VYFNQSOPRIBLLVGYQMZYXX/VHOUC36AWF2BXBRYVUE5TB5CZAVHYGQV.woff2\",weight:\"500\"},{family:\"Raleway\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/EGREH5ZYSDB7X35Z4GVFLEH3RES52MML/A53R2O3772O34L6R6FS4CKCKHLUAVX5Q/MNNZYPONE4XZ7FAJR6LIWXTVWA6Q6HLP.woff2\",weight:\"800\"},{family:\"Raleway\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MH43EZQ5D5TBWLC2PYWZEYFPY3CXY4M5/XDDBYYRARAUB3F7RA772N4INJTRQYCTY/NBSC4X5XDVX3Q7RBFSRL24UBCSPNFBXK.woff2\",weight:\"600\"}]},...NavBarFonts,...TickerFonts,...FoundationsForABrighterFutureFonts,...ButtonFonts,...IconoirFonts,...SectorImagesFonts,...CaseStudySliderFonts,...CarouselFonts,...FooterFonts,...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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NuMPYNaqX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"I_lu0l3mt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"9626\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"uoavmGCQU\\\":{\\\"pattern\\\":\\\":uoavmGCQU\\\",\\\"name\\\":\\\"navbar\\\"},\\\"o01dxMurI\\\":{\\\"pattern\\\":\\\":o01dxMurI\\\",\\\"name\\\":\\\"toolkit\\\"},\\\"YUbup61Z2\\\":{\\\"pattern\\\":\\\":YUbup61Z2\\\",\\\"name\\\":\\\"scroll-horizontal\\\"},\\\"R1VlQxNPn\\\":{\\\"pattern\\\":\\\":R1VlQxNPn\\\",\\\"name\\\":\\\"hropt\\\"},\\\"pPwYORvd0\\\":{\\\"pattern\\\":\\\":pPwYORvd0\\\",\\\"name\\\":\\\"digitaldata\\\"},\\\"Pr3TJEw27\\\":{\\\"pattern\\\":\\\":Pr3TJEw27\\\",\\\"name\\\":\\\"sectors\\\"},\\\"VFSLxssKr\\\":{\\\"pattern\\\":\\\":VFSLxssKr\\\",\\\"name\\\":\\\"sst\\\"},\\\"pSDAsUdZF\\\":{\\\"pattern\\\":\\\":pSDAsUdZF\\\",\\\"name\\\":\\\"gov\\\"},\\\"yiGBRQfdD\\\":{\\\"pattern\\\":\\\":yiGBRQfdD\\\",\\\"name\\\":\\\"just\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "u", "Image2", "getLoadingLazyAtYPosition", "css", "FramerAqgpErrn3", "withCSS", "AqgpErrn3_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1cugwmx", "args", "onTapounibe", "onTap1ydz0a3", "onTap3w4pb1", "onTap1p747nv", "onTap1udxrau", "onTap14bnjs2", "onTapt23gyw", "onTap10im4qu", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "FramerFmblT_uJA", "withCSS", "FmblT_uJA_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavBarFonts", "getFonts", "EeWuxTxfm_default", "TickerFonts", "Ticker", "FoundationsForABrighterFutureFonts", "FmblT_uJA_default", "ButtonFonts", "QFCuS7UTd_default", "MotionDivWithFX", "withFX", "motion", "IconoirFonts", "Icon", "SectorImagesFonts", "AqgpErrn3_default", "SectorImagesWithVariantAppearEffect", "withVariantAppearEffect", "CaseStudySliderFonts", "RRfCto63t_default", "CarouselFonts", "Carousel", "FooterFonts", "XSLOnMj2l_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "KZRnRUokksfi2SDBv5", "L68LsXkDtsfi2SDBv5", "n7a9m1FAlsfi2SDBv5", "xMmBaux2Lsfi2SDBv5", "idsfi2SDBv5", "KZRnRUokkmniQKKDUc", "L68LsXkDtmniQKKDUc", "z5W1tKGHkmniQKKDUc", "xMmBaux2LmniQKKDUc", "idmniQKKDUc", "KZRnRUokkGXs5UWBuD", "L68LsXkDtGXs5UWBuD", "z5W1tKGHkGXs5UWBuD", "xMmBaux2LGXs5UWBuD", "idGXs5UWBuD", "KZRnRUokkjIPnUl6bi", "L68LsXkDtjIPnUl6bi", "z5W1tKGHkjIPnUl6bi", "xMmBaux2LjIPnUl6bi", "idjIPnUl6bi", "KZRnRUokkvLWVfAoKA", "L68LsXkDtvLWVfAoKA", "z5W1tKGHkvLWVfAoKA", "xMmBaux2LvLWVfAoKA", "idvLWVfAoKA", "KZRnRUokkscNTVRgLe", "L68LsXkDtscNTVRgLe", "n7a9m1FAlscNTVRgLe", "xMmBaux2LscNTVRgLe", "idscNTVRgLe", "KZRnRUokkI2HwVMFBd", "L68LsXkDtI2HwVMFBd", "n7a9m1FAlI2HwVMFBd", "xMmBaux2LI2HwVMFBd", "idI2HwVMFBd", "KZRnRUokkAAkg0RrdJ", "L68LsXkDtAAkg0RrdJ", "n7a9m1FAlAAkg0RrdJ", "xMmBaux2LAAkg0RrdJ", "idAAkg0RrdJ", "KZRnRUokkzq3G8rtTT", "L68LsXkDtzq3G8rtTT", "n7a9m1FAlzq3G8rtTT", "xMmBaux2Lzq3G8rtTT", "idzq3G8rtTT", "KZRnRUokkTyPV68u2N", "L68LsXkDtTyPV68u2N", "n7a9m1FAlTyPV68u2N", "xMmBaux2LTyPV68u2N", "idTyPV68u2N", "KZRnRUokkkUrqvMBcy", "L68LsXkDtkUrqvMBcy", "n7a9m1FAlkUrqvMBcy", "xMmBaux2LkUrqvMBcy", "idkUrqvMBcy", "KZRnRUokkQblpFiqJQ", "L68LsXkDtQblpFiqJQ", "n7a9m1FAlQblpFiqJQ", "xMmBaux2LQblpFiqJQ", "idQblpFiqJQ", "KZRnRUokkpBPf6x0wW", "L68LsXkDtpBPf6x0wW", "z5W1tKGHkpBPf6x0wW", "idpBPf6x0wW", "KZRnRUokkYDCUK5A8Z", "z5W1tKGHkYDCUK5A8Z", "HLJLG0_VlYDCUK5A8Z", "idYDCUK5A8Z", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "router", "useRouter", "elementId1", "ref2", "ref3", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "elementId5", "ref6", "isDisplayed1", "isDisplayed2", "elementId6", "ref7", "elementId7", "ref8", "elementId8", "ref9", "isDisplayed3", "isDisplayed4", "activeLocaleCode", "useLocaleCode", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "Image2", "RichText", "x", "ResolveLinks", "resolvedLinks", "Link", "ChildrenCanSuspend", "gD7e29ik5_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "collection3", "paginationInfo3", "loadMore3", "index3", "collection4", "paginationInfo4", "loadMore4", "index4", "collection5", "paginationInfo5", "loadMore5", "index5", "collection6", "paginationInfo6", "loadMore6", "index6", "collection7", "paginationInfo7", "loadMore7", "index7", "collection8", "paginationInfo8", "loadMore8", "index8", "collection9", "paginationInfo9", "loadMore9", "index9", "collection10", "paginationInfo10", "loadMore10", "index10", "collection11", "paginationInfo11", "loadMore11", "index11", "collection12", "paginationInfo12", "loadMore12", "index12", "collection13", "paginationInfo13", "loadMore13", "index13", "textContent", "resolvedLinks1", "resolvedLinks2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
