{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js", "ssg:https://framerusercontent.com/modules/O0dXyGkl7sxhJTA31Y74/kgPn9uD5Fu05wB9lAitZ/RkXAtBJ_f.js", "ssg:https://framerusercontent.com/modules/RwUkYB9dU9lLoPL5766p/kVcha7rxpq6fKUJpR1Eq/hTtcbKAZd.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", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useInView,useTransform,LayoutGroup,wrap,sync,mix}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;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[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});}},[hasChildren]);const scheduleMeasure=useCallback(()=>{sync.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\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(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */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}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},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\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},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},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},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;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (98a2bb2)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Fira Sans-regular\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fira Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/PXZ43LXUMISRBKI3JAZRXIT3KCAQT5LX/6PGI734U44FDBEH63LXBIZUQX34PL45P/MITUNP2IVULQXBXY4CV6OFWPPCE2UU26.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-EYvq9 .framer-styles-preset-1pq6z9:not(.rich-text-wrapper), .framer-EYvq9 .framer-styles-preset-1pq6z9.rich-text-wrapper p { --framer-font-family: \"Fira Sans\", \"Fira Sans 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: 12px; --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.4em; --framer-paragraph-spacing: 13px; --framer-text-alignment: start; --framer-text-color: #666666; --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-EYvq9 .framer-styles-preset-1pq6z9:not(.rich-text-wrapper), .framer-EYvq9 .framer-styles-preset-1pq6z9.rich-text-wrapper p { --framer-font-family: \"Fira Sans\", \"Fira Sans 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: 10px; --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.4em; --framer-paragraph-spacing: 13px; --framer-text-alignment: start; --framer-text-color: #666666; --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-EYvq9 .framer-styles-preset-1pq6z9:not(.rich-text-wrapper), .framer-EYvq9 .framer-styles-preset-1pq6z9.rich-text-wrapper p { --framer-font-family: \"Fira Sans\", \"Fira Sans 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: 10px; --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.4em; --framer-paragraph-spacing: 13px; --framer-text-alignment: start; --framer-text-color: #666666; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-EYvq9\";\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 (98a2bb2)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import Navigation from\"#framer/local/canvasComponent/JD1OAzVzJ/JD1OAzVzJ.js\";import FooterGREF from\"#framer/local/canvasComponent/VRysVpdx4/VRysVpdx4.js\";import ArtCulos from\"#framer/local/collection/g6wrqiF1L/g6wrqiF1L.js\";import ActividadesYEventos from\"#framer/local/collection/il8xku6nz/il8xku6nz.js\";import*as sharedStyle7 from\"#framer/local/css/AeFXsH86E/AeFXsH86E.js\";import*as sharedStyle from\"#framer/local/css/cWf4yV9za/cWf4yV9za.js\";import*as sharedStyle5 from\"#framer/local/css/iaBy7WzBo/iaBy7WzBo.js\";import*as sharedStyle3 from\"#framer/local/css/ickuMUi8E/ickuMUi8E.js\";import*as sharedStyle9 from\"#framer/local/css/m3JSTgYFp/m3JSTgYFp.js\";import*as sharedStyle1 from\"#framer/local/css/PnZZF_nse/PnZZF_nse.js\";import*as sharedStyle8 from\"#framer/local/css/RkXAtBJ_f/RkXAtBJ_f.js\";import*as sharedStyle4 from\"#framer/local/css/rSTec94zH/rSTec94zH.js\";import*as sharedStyle2 from\"#framer/local/css/Rwaa9Y7nD/Rwaa9Y7nD.js\";import*as sharedStyle6 from\"#framer/local/css/us3RFgmNC/us3RFgmNC.js\";import metadataProvider from\"#framer/local/webPageMetadata/hTtcbKAZd/hTtcbKAZd.js\";const NavigationFonts=getFonts(Navigation);const SlideshowFonts=getFonts(Slideshow);const TickerFonts=getFonts(Ticker);const FeatherFonts=getFonts(Feather);const MaterialFonts=getFonts(Material);const FooterGREFFonts=getFonts(FooterGREF);const breakpoints={i_a7QVvrY:\"(max-width: 809px)\",KCvb6x9GF:\"(min-width: 1200px)\",yi8xQ_2Tb:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-M7NUC\";const variantClassNames={i_a7QVvrY:\"framer-v-9i95g4\",KCvb6x9GF:\"framer-v-1lz0mad\",yi8xQ_2Tb:\"framer-v-14qv85z\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;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 sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={dateStyle:\"long\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,\"es\");};const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"KCvb6x9GF\",Phone:\"i_a7QVvrY\",Tablet:\"yi8xQ_2Tb\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"KCvb6x9GF\"};};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,fERlHhh_ebSUxLGo0e,EE9r50lB2bSUxLGo0e,dv3CcqgcEbSUxLGo0e,idbSUxLGo0e,fERlHhh_eVNg54WjnW,yb2bCpxBzVNg54WjnW,JoPbmO823VNg54WjnW,dv3CcqgcEVNg54WjnW,idVNg54WjnW,K0DQh1a5XiMjZN3V4r,NqsULmCINiMjZN3V4r,QBEpjM_0YiMjZN3V4r,c9OGUl16uiMjZN3V4r,lXGvlGgJFiMjZN3V4r,idiMjZN3V4r,...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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"i_a7QVvrY\")return false;return true;};const activeLocaleCode=useLocaleCode();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"KCvb6x9GF\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1lz0mad\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{y:undefined},yi8xQ_2Tb:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14d47zl-container\",nodeId:\"yxrm2CrQK\",scopeId:\"hTtcbKAZd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{variant:\"t9n7VwTgx\"},yi8xQ_2Tb:{variant:\"t9n7VwTgx\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"yxrm2CrQK\",layoutId:\"yxrm2CrQK\",style:{width:\"100%\"},variant:\"woQfRm_x0\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1qhlhed\",\"data-framer-name\":\"Header Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-shxe7x\",\"data-framer-name\":\"Overlay\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1996cke-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ymVeRU_xG\",scopeId:\"hTtcbKAZd\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"ymVeRU_xG\",intervalControl:3,itemAmount:1,layoutId:\"ymVeRU_xG\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2160,pixelWidth:3840,sizes:\"1010px\",src:\"https://framerusercontent.com/images/uqoThFRRlUiFbR15UUbf95rcNps.jpg\",srcSet:\"https://framerusercontent.com/images/uqoThFRRlUiFbR15UUbf95rcNps.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uqoThFRRlUiFbR15UUbf95rcNps.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uqoThFRRlUiFbR15UUbf95rcNps.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/uqoThFRRlUiFbR15UUbf95rcNps.jpg 3840w\"},className:\"framer-1bp5xza\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ao1b65\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13yz8zc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-126qmxo\",\"data-styles-preset\":\"cWf4yV9za\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Conectando personas, compartiendo el conocimiento\"})}),className:\"framer-1goyzlx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1h7dwoo\",\"data-styles-preset\":\"PnZZF_nse\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"IV Edici\\xf3n Premios mejor iniciativa formaci\\xf3n continua GREF 2024\"})}),className:\"framer-gn9tuc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-13ao3kn\",\"data-styles-preset\":\"Rwaa9Y7nD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Abierto el plazo de presentaci\\xf3n de Candidaturas\"})}),className:\"framer-1ns9r5f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xFPNryBPw\"},motionChild:true,nodeId:\"SebXFVL95\",scopeId:\"hTtcbKAZd\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-hw8468 framer-puzbhf\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fgo89p\",\"data-styles-preset\":\"ickuMUi8E\",children:\"M\\xe1s informaci\\xf3n\"})}),className:\"framer-49oymk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zxkghy\",\"data-framer-name\":\"Overlay\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yz2u90\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a7a3gv\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kvy1sf\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bnx9es\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-bx83g8\",\"data-styles-preset\":\"rSTec94zH\",style:{\"--framer-text-alignment\":\"center\"},children:\"Evento Presencial | Online\"})}),className:\"framer-1na31jr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1h7dwoo\",\"data-styles-preset\":\"PnZZF_nse\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(6, 87, 151)\"},children:\"Jornadas GREF\"})}),className:\"framer-1pj45tp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-bx83g8\",\"data-styles-preset\":\"rSTec94zH\",style:{\"--framer-text-alignment\":\"center\"},children:\"Las Jornadas del GREF son el punto de encuentro clave para los profesionales de la formaci\\xf3n en el sector financiero. Se celebran dos veces al a\\xf1o, en junio y noviembre, y re\\xfanen a socios, asociados, simpatizantes y colaboradores en un entorno de reflexi\\xf3n, intercambio y aprendizaje.\"})}),className:\"framer-u8tnmy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GBXoz56tZ\"},motionChild:true,nodeId:\"imCPak3v4\",scopeId:\"hTtcbKAZd\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-jzlet9 framer-puzbhf\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fgo89p\",\"data-styles-preset\":\"ickuMUi8E\",children:\"Pr\\xf3ximas jornadas\"})}),className:\"framer-1dw6wqf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3376,pixelWidth:7591,positionX:\"center\",positionY:\"center\",sizes:\"1010px\",src:\"https://framerusercontent.com/images/DNaHy2r7iNIkAorO6DNsLgNkcU.jpg\",srcSet:\"https://framerusercontent.com/images/DNaHy2r7iNIkAorO6DNsLgNkcU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DNaHy2r7iNIkAorO6DNsLgNkcU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DNaHy2r7iNIkAorO6DNsLgNkcU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DNaHy2r7iNIkAorO6DNsLgNkcU.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/DNaHy2r7iNIkAorO6DNsLgNkcU.jpg 7591w\"},className:\"framer-fkjcrb\"})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:5504,pixelWidth:8256,sizes:\"1010px\",src:\"https://framerusercontent.com/images/YrsoaclF0oP9i5LNAKR14hip5g.jpg\",srcSet:\"https://framerusercontent.com/images/YrsoaclF0oP9i5LNAKR14hip5g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YrsoaclF0oP9i5LNAKR14hip5g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YrsoaclF0oP9i5LNAKR14hip5g.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/YrsoaclF0oP9i5LNAKR14hip5g.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/YrsoaclF0oP9i5LNAKR14hip5g.jpg 8256w\"},className:\"framer-1u33qqv\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dsn9jz\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10uqc0u\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1h7dwoo\",\"data-styles-preset\":\"PnZZF_nse\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"GREF Informe de ratios\"})}),className:\"framer-1t8wp7i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"bq_ApCZl6\"},motionChild:true,nodeId:\"aDALPPHDo\",openInNewTab:false,scopeId:\"hTtcbKAZd\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-44i1ok framer-puzbhf\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fgo89p\",\"data-styles-preset\":\"ickuMUi8E\",children:\"M\\xe1s informaci\\xf3n\"})}),className:\"framer-15bb8uy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-144cjgf\",\"data-framer-name\":\"Overlay\"})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3678,pixelWidth:7414,sizes:\"1010px\",src:\"https://framerusercontent.com/images/f0ikIv45bBy5JfJiOCy9E0AMC0w.jpg\",srcSet:\"https://framerusercontent.com/images/f0ikIv45bBy5JfJiOCy9E0AMC0w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/f0ikIv45bBy5JfJiOCy9E0AMC0w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/f0ikIv45bBy5JfJiOCy9E0AMC0w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/f0ikIv45bBy5JfJiOCy9E0AMC0w.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/f0ikIv45bBy5JfJiOCy9E0AMC0w.jpg 7414w\"},className:\"framer-1gbvq0k\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dbpc8m\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-nfxjvc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1h7dwoo\",\"data-styles-preset\":\"PnZZF_nse\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Mesas de trabajo temporales y\"}),/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1h7dwoo\",\"data-styles-preset\":\"PnZZF_nse\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Observatorios permanentes\"})]}),className:\"framer-17g8ijn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CmYVhNp41\"},motionChild:true,nodeId:\"K8q9X1cTm\",scopeId:\"hTtcbKAZd\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-mkgcsg framer-puzbhf\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fgo89p\",\"data-styles-preset\":\"ickuMUi8E\",children:\"M\\xe1s informaci\\xf3n\"})}),className:\"framer-rbo2yo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l8bo4p\",\"data-framer-name\":\"Overlay\"})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2864,pixelWidth:4931,sizes:\"1010px\",src:\"https://framerusercontent.com/images/4cr4H4lpFKxLB16rwv1VfXuQE.jpg\",srcSet:\"https://framerusercontent.com/images/4cr4H4lpFKxLB16rwv1VfXuQE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4cr4H4lpFKxLB16rwv1VfXuQE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4cr4H4lpFKxLB16rwv1VfXuQE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4cr4H4lpFKxLB16rwv1VfXuQE.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/4cr4H4lpFKxLB16rwv1VfXuQE.jpg 4931w\"},className:\"framer-15cqdm0\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u36yim\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-h2egvc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1h7dwoo\",\"data-styles-preset\":\"PnZZF_nse\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Webinars Mensuales\"})}),className:\"framer-oxrd2j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pbyH7AIhU\"},motionChild:true,nodeId:\"PkzkQ2vyM\",scopeId:\"hTtcbKAZd\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1pr555k framer-puzbhf\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fgo89p\",\"data-styles-preset\":\"ickuMUi8E\",children:\"M\\xe1s informaci\\xf3n\"})}),className:\"framer-y3nm9c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6r596l\",\"data-framer-name\":\"Overlay\"})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-n1b2eh\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-on6f6y-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cp8CzpWT8\",scopeId:\"hTtcbKAZd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{gap:0}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:35,height:\"100%\",hoverFactor:1,id:\"cp8CzpWT8\",layoutId:\"cp8CzpWT8\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l0ii8b\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-nm80lz\",\"data-styles-preset\":\"iaBy7WzBo\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"52\"})}),className:\"framer-m64f3n\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-bx83g8\",\"data-styles-preset\":\"rSTec94zH\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Entidades Socias\"})}),className:\"framer-1tkvnq8\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-od09pz\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-nm80lz\",\"data-styles-preset\":\"iaBy7WzBo\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"+40\"})}),className:\"framer-gp5qkf\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-bx83g8\",\"data-styles-preset\":\"rSTec94zH\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Asociad@s Corportiv@s\"})}),className:\"framer-1bb0a5e\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1itzzre\",\"data-framer-name\":\"3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-nm80lz\",\"data-styles-preset\":\"iaBy7WzBo\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2\"})}),className:\"framer-3zygs6\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-bx83g8\",\"data-styles-preset\":\"rSTec94zH\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Jornadas presenciales\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"al a\\xf1o\"})]})}),className:\"framer-qll8an\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8qmzwk\",\"data-framer-name\":\"4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-nm80lz\",\"data-styles-preset\":\"iaBy7WzBo\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"85%\"})}),className:\"framer-1ksp107\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-bx83g8\",\"data-styles-preset\":\"rSTec94zH\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"De la plantilla representa el sector bancario y asegurador\"})}),className:\"framer-7wlgk0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iygcub\",\"data-framer-name\":\"5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-nm80lz\",\"data-styles-preset\":\"iaBy7WzBo\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"7\"})}),className:\"framer-1xfvset\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-bx83g8\",\"data-styles-preset\":\"rSTec94zH\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Mesas de \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Trabajo\"})]})}),className:\"framer-1ofajhd\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uvmhei\",\"data-framer-name\":\"6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-nm80lz\",\"data-styles-preset\":\"iaBy7WzBo\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2\"})}),className:\"framer-1pm0g67\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-bx83g8\",\"data-styles-preset\":\"rSTec94zH\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Observatorios\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Permanentes\"})]})}),className:\"framer-vthrrt\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})],speed:80,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-v3wr42\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1h7dwoo\",\"data-styles-preset\":\"PnZZF_nse\",children:\"Pr\\xf3ximos eventos\"})}),className:\"framer-1g4erna\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(247, 247, 247)\"},children:\"Pr\\xf3ximos eventos\"})}),className:\"framer-7t2jf7\",fonts:[\"FS;Fira Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j2bqnb\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3c5hpf\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jrg9xj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kjkrh1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-126qmxo\",\"data-styles-preset\":\"cWf4yV9za\",children:\"Amigo lector,\"})}),className:\"framer-1txez7h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1y3nchj\",\"data-styles-preset\":\"us3RFgmNC\",children:\"\\xa1No se pierda la informaci\\xf3n m\\xe1s actual!\"})}),className:\"framer-1581wyu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-126qmxo\",\"data-styles-preset\":\"cWf4yV9za\",children:[\"Si a\\xfan no recibe nuestra newsletter, por favor rellene el siguiente formulario para asegurarse de estar suscrito de acuerdo con la Ley de Protecci\\xf3n de Datos (\",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mvryWXjBi\"},motionChild:true,nodeId:\"rjJNvzlvZ\",openInNewTab:true,scopeId:\"hTtcbKAZd\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-e8mmt8\",\"data-styles-preset\":\"AeFXsH86E\",children:\"RGPD \"})}),\"y \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"U5wp3tvl1\"},motionChild:true,nodeId:\"rjJNvzlvZ\",openInNewTab:true,scopeId:\"hTtcbKAZd\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-e8mmt8\",\"data-styles-preset\":\"AeFXsH86E\",children:\"RPPJ\"})}),\").\"]})}),className:\"framer-13yk9f2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.google.com/forms/d/e/1FAIpQLSdzltuGMQfuhnaBIoE9vq7NQjQnf89i3r9J3Dc8UC6sERdcLw/viewform\",motionChild:true,nodeId:\"fszURGejf\",scopeId:\"hTtcbKAZd\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ww8f0x framer-puzbhf\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fgo89p\",\"data-styles-preset\":\"ickuMUi8E\",children:\"Recibe nuestra Newsletter\"})}),className:\"framer-1dfnzq3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fj7ynw\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"bSUxLGo0e\",data:ActividadesYEventos,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"bSUxLGo0e\",name:\"fERlHhh_e\",type:\"Identifier\"},{collection:\"bSUxLGo0e\",name:\"EE9r50lB2\",type:\"Identifier\"},{collection:\"bSUxLGo0e\",name:\"dv3CcqgcE\",type:\"Identifier\"},{collection:\"bSUxLGo0e\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({dv3CcqgcE:dv3CcqgcEbSUxLGo0e,EE9r50lB2:EE9r50lB2bSUxLGo0e,fERlHhh_e:fERlHhh_ebSUxLGo0e,id:idbSUxLGo0e},index)=>{fERlHhh_ebSUxLGo0e??=\"\";dv3CcqgcEbSUxLGo0e??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`bSUxLGo0e-${idbSUxLGo0e}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{fERlHhh_e:fERlHhh_ebSUxLGo0e},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{fERlHhh_e:fERlHhh_ebSUxLGo0e},webPageId:\"GMmDKfU77\"},motionChild:true,nodeId:\"Nz49ziiyk\",openInNewTab:false,scopeId:\"hTtcbKAZd\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-7jkad3 framer-puzbhf\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{background:{alt:\"\",fit:\"fill\",pixelHeight:4e3,pixelWidth:6e3,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 530px) - 48px)`,...toResponsiveImage(EE9r50lB2bSUxLGo0e)}},yi8xQ_2Tb:{background:{alt:\"\",fit:\"fill\",pixelHeight:4e3,pixelWidth:6e3,sizes:`max(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 530px) - 48px, 1px)`,...toResponsiveImage(EE9r50lB2bSUxLGo0e)}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+812+70+90+30+0+351+24+0+0),pixelHeight:4e3,pixelWidth:6e3,sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 90px) / 2, 1px), 530px) - 48px, 1px)`,...toResponsiveImage(EE9r50lB2bSUxLGo0e)},className:\"framer-55cn1c\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a0tjgu\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cvjptu\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Pr\\xf3ximo evento\"})}),className:\"framer-5jvaa0\",fonts:[\"FS;Fira Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-chs0fv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pyn52y\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xbnunc\",\"data-border\":true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-c0suku-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UwSVEE5qM\",scopeId:\"hTtcbKAZd\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"calendar\",id:\"UwSVEE5qM\",layoutId:\"UwSVEE5qM\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pq6z9\",\"data-styles-preset\":\"RkXAtBJ_f\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"26 de Noviembre\"})}),className:\"framer-1wuxfvc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16rxga3\",\"data-styles-preset\":\"m3JSTgYFp\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"XXXIV JORNADA GREF\"})}),className:\"framer-ki8rq4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1obutjt\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1567azd-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"igI1V4nHr\",scopeId:\"hTtcbKAZd\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"map-pin\",id:\"igI1V4nHr\",layoutId:\"igI1V4nHr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-126qmxo\",\"data-styles-preset\":\"cWf4yV9za\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Calle de Juan Ignacio Luca de Tena 28027 Madrid\"})}),className:\"framer-1c5x6bo\",fonts:[\"Inter\"],text:dv3CcqgcEbSUxLGo0e,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-72bslx\",\"data-framer-name\":\"Overlay\"})]})})})})})},idbSUxLGo0e);})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fkz3y1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s7392o\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"VNg54WjnW\",data:ActividadesYEventos,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"VNg54WjnW\",name:\"fERlHhh_e\",type:\"Identifier\"},{collection:\"VNg54WjnW\",name:\"yb2bCpxBz\",type:\"Identifier\"},{collection:\"VNg54WjnW\",name:\"JoPbmO823\",type:\"Identifier\"},{collection:\"VNg54WjnW\",name:\"dv3CcqgcE\",type:\"Identifier\"},{collection:\"VNg54WjnW\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({dv3CcqgcE:dv3CcqgcEVNg54WjnW,fERlHhh_e:fERlHhh_eVNg54WjnW,id:idVNg54WjnW,JoPbmO823:JoPbmO823VNg54WjnW,yb2bCpxBz:yb2bCpxBzVNg54WjnW},index1)=>{fERlHhh_eVNg54WjnW??=\"\";yb2bCpxBzVNg54WjnW??=\"\";JoPbmO823VNg54WjnW??=\"\";dv3CcqgcEVNg54WjnW??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`VNg54WjnW-${idVNg54WjnW}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{fERlHhh_e:fERlHhh_eVNg54WjnW},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{fERlHhh_e:fERlHhh_eVNg54WjnW},webPageId:\"GMmDKfU77\"},motionChild:true,nodeId:\"xw9wFeZoA\",openInNewTab:false,scopeId:\"hTtcbKAZd\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-5r5710 framer-puzbhf\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12rlvqa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1h7dwoo\",\"data-styles-preset\":\"PnZZF_nse\",style:{\"--framer-text-alignment\":\"center\"},children:\"26\"})}),className:\"framer-n8h5re\",\"data-framer-name\":\"T\\xedtulo\",fonts:[\"Inter\"],text:yb2bCpxBzVNg54WjnW,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-126qmxo\",\"data-styles-preset\":\"cWf4yV9za\",style:{\"--framer-text-alignment\":\"center\"},children:\"JUNIO\"})}),className:\"framer-1p3dknr\",\"data-framer-name\":\"T\\xedtulo\",fonts:[\"Inter\"],text:JoPbmO823VNg54WjnW,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-13ao3kn\",\"data-styles-preset\":\"Rwaa9Y7nD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"34\\xba JORNADA GREF: Aprender, Innovar, Crecer, juntos hacia el futuro\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-13ao3kn\",\"data-styles-preset\":\"Rwaa9Y7nD\",style:{\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"34\\xba JORNADA GREF: Aprender, Innovar, Crecer, juntos hacia el futuro\"})}),className:\"framer-1556ld8\",\"data-framer-name\":\"T\\xedtulo\",fonts:[\"Inter\"],text:dv3CcqgcEVNg54WjnW,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},idVNg54WjnW);})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{background:{alt:\"\",fit:\"fill\",pixelHeight:2026,pixelWidth:3840,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Qac78dKbPTAgAzCoKk3tZ0pLUA.jpg\",srcSet:\"https://framerusercontent.com/images/Qac78dKbPTAgAzCoKk3tZ0pLUA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Qac78dKbPTAgAzCoKk3tZ0pLUA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qac78dKbPTAgAzCoKk3tZ0pLUA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Qac78dKbPTAgAzCoKk3tZ0pLUA.jpg 3840w\"}},yi8xQ_2Tb:{background:{alt:\"\",fit:\"fill\",pixelHeight:2026,pixelWidth:3840,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Qac78dKbPTAgAzCoKk3tZ0pLUA.jpg\",srcSet:\"https://framerusercontent.com/images/Qac78dKbPTAgAzCoKk3tZ0pLUA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Qac78dKbPTAgAzCoKk3tZ0pLUA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qac78dKbPTAgAzCoKk3tZ0pLUA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Qac78dKbPTAgAzCoKk3tZ0pLUA.jpg 3840w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1712),pixelHeight:2026,pixelWidth:3840,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Qac78dKbPTAgAzCoKk3tZ0pLUA.jpg\",srcSet:\"https://framerusercontent.com/images/Qac78dKbPTAgAzCoKk3tZ0pLUA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Qac78dKbPTAgAzCoKk3tZ0pLUA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qac78dKbPTAgAzCoKk3tZ0pLUA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Qac78dKbPTAgAzCoKk3tZ0pLUA.jpg 3840w\"},className:\"framer-qklhip\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hlntna\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13f6u0b\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1y3nchj\",\"data-styles-preset\":\"us3RFgmNC\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ratios de formaci\\xf3n 2022\"})}),className:\"framer-h3ew5l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-126qmxo\",\"data-styles-preset\":\"cWf4yV9za\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"En el \u201CINFORME GREF RATIOS DE FORMACI\\xd3N 2022\u201D podr\\xe9is conocer la situaci\\xf3n y evoluci\\xf3n de los principales indicadores de gesti\\xf3n del sector Banca de forma separada, adem\\xe1s de un an\\xe1lisis conjunto. Estos son solo algunos datos reflejados en el informe.\"})}),className:\"framer-9emzyt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.google.com/presentation/d/1HdL3Tz-y3LwYXy0sWXnpQOiK3S_0fvyq/edit?usp=drive_link&ouid=111203040369712861014&rtpof=true&sd=true\",motionChild:true,nodeId:\"KoMNdoKOV\",scopeId:\"hTtcbKAZd\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1vq3ehu framer-puzbhf\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fgo89p\",\"data-styles-preset\":\"ickuMUi8E\",style:{\"--framer-text-color\":\"rgb(4, 84, 140)\"},children:\"Acceda al informe\"})}),className:\"framer-1prplxm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wizatz\",\"data-framer-name\":\"Overlay\"})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-83umkd\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fvqjj6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h4sswr\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jioerh\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1h7dwoo\",\"data-styles-preset\":\"PnZZF_nse\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"74%\"})}),className:\"framer-1p9tll9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pq6z9\",\"data-styles-preset\":\"RkXAtBJ_f\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Representatividad de la Banca en GREF y en encuesta\"})}),className:\"framer-1v5czg1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-n3u72c hidden-9i95g4\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3 145\"><path d=\"M 1 0.48 L 1 144.52\" fill=\"transparent\" stroke-width=\"0.96\" stroke=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9058736311,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iyg5da\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1h7dwoo\",\"data-styles-preset\":\"PnZZF_nse\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"126.783\"})}),className:\"framer-1que5tr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pq6z9\",\"data-styles-preset\":\"RkXAtBJ_f\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Empleados representados en GREF en el entorno de los 130.000\"})}),className:\"framer-dhziph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-k11m7r hidden-9i95g4\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3 145\"><path d=\"M 1 0.48 L 1 144.52\" fill=\"transparent\" stroke-width=\"0.96\" stroke=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9058736311,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2znu49\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1h7dwoo\",\"data-styles-preset\":\"PnZZF_nse\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"58'6\"})}),className:\"framer-1magynn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pq6z9\",\"data-styles-preset\":\"RkXAtBJ_f\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Horas de formaci\\xf3n por empleado\"})}),className:\"framer-1sem3sd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1hk2f5u hidden-9i95g4\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3 145\"><path d=\"M 1 0.48 L 1 144.52\" fill=\"transparent\" stroke-width=\"0.96\" stroke=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9058736311,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ek3ojv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1h7dwoo\",\"data-styles-preset\":\"PnZZF_nse\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"214\u20AC\"})}),className:\"framer-c3ho3z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pq6z9\",\"data-styles-preset\":\"RkXAtBJ_f\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Inversi\\xf3n en formaci\\xf3n media por empleado\"})}),className:\"framer-1t0dcdp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{background:{alt:\"\",fit:\"fill\",pixelHeight:3377,pixelWidth:5066,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/umz1vAsNQy3hz5TGm8mgalWPqq4.jpg\",srcSet:\"https://framerusercontent.com/images/umz1vAsNQy3hz5TGm8mgalWPqq4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/umz1vAsNQy3hz5TGm8mgalWPqq4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/umz1vAsNQy3hz5TGm8mgalWPqq4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/umz1vAsNQy3hz5TGm8mgalWPqq4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/umz1vAsNQy3hz5TGm8mgalWPqq4.jpg 5066w\"}},yi8xQ_2Tb:{background:{alt:\"\",fit:\"fill\",pixelHeight:3377,pixelWidth:5066,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/umz1vAsNQy3hz5TGm8mgalWPqq4.jpg\",srcSet:\"https://framerusercontent.com/images/umz1vAsNQy3hz5TGm8mgalWPqq4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/umz1vAsNQy3hz5TGm8mgalWPqq4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/umz1vAsNQy3hz5TGm8mgalWPqq4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/umz1vAsNQy3hz5TGm8mgalWPqq4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/umz1vAsNQy3hz5TGm8mgalWPqq4.jpg 5066w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2242),pixelHeight:3377,pixelWidth:5066,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/umz1vAsNQy3hz5TGm8mgalWPqq4.jpg\",srcSet:\"https://framerusercontent.com/images/umz1vAsNQy3hz5TGm8mgalWPqq4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/umz1vAsNQy3hz5TGm8mgalWPqq4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/umz1vAsNQy3hz5TGm8mgalWPqq4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/umz1vAsNQy3hz5TGm8mgalWPqq4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/umz1vAsNQy3hz5TGm8mgalWPqq4.jpg 5066w\"},className:\"framer-tv8exb\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8tburc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eouvh3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nqqyhx\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ratios de formaci\\xf3n 2023\"})})},yi8xQ_2Tb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ratios de formaci\\xf3n 2023\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ratios de formaci\\xf3n 2023\"})}),className:\"framer-ok3qqx\",fonts:[\"FS;Fira Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"En el \u201CINFORME GREF RATIOS DE FORMACI\\xd3N 2023\u201D podr\\xe9is conocer la situaci\\xf3n y evoluci\\xf3n de los principales indicadores de gesti\\xf3n del sector Banca de forma separada, adem\\xe1s de un an\\xe1lisis conjunto. Estos son solo algunos datos reflejados en el informe.\"})})},yi8xQ_2Tb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"En el \u201CINFORME GREF RATIOS DE FORMACI\\xd3N 2023\u201D podr\\xe9is conocer la situaci\\xf3n y evoluci\\xf3n de los principales indicadores de gesti\\xf3n del sector Banca de forma separada, adem\\xe1s de un an\\xe1lisis conjunto. Estos son solo algunos datos reflejados en el informe.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"En el \u201CINFORME GREF RATIOS DE FORMACI\\xd3N 2023\u201D podr\\xe9is conocer la situaci\\xf3n y evoluci\\xf3n de los principales indicadores de gesti\\xf3n del sector Banca de forma separada, adem\\xe1s de un an\\xe1lisis conjunto. Estos son solo algunos datos reflejados en el informe.\"})}),className:\"framer-ejlblo\",fonts:[\"FS;Fira Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12vpwij\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1716b3n\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-swuxg\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e7w5v5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"% de la plantilla formada de la banca\"})}),className:\"framer-1lrdo4w\",fonts:[\"FS;Fira Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"99%\"})}),className:\"framer-1r0s1s7\",fonts:[\"FS;Fira Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dhae4b\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9ugcpl\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f87va4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c7l54\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"% de la plantilla formada de seguros\"})}),className:\"framer-67jxda\",fonts:[\"FS;Fira Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"98%\"})}),className:\"framer-m889lp\",fonts:[\"FS;Fira Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k8hxng\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g08hf7\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-124od5f\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17j0kx8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"% Formaci\\xf3n online bancos y cajas rurales\"})}),className:\"framer-nufgai\",fonts:[\"FS;Fira Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"89%\"})}),className:\"framer-1gato71\",fonts:[\"FS;Fira Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1we5wh2\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-lup1kc\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-28ilfx\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oga5tb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"% Formaci\\xf3n online seguros\"})}),className:\"framer-1sqzd4m\",fonts:[\"FS;Fira Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"69%\"})}),className:\"framer-2vqnd9\",fonts:[\"FS;Fira Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ksk0wy\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cdamtf\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-phdy3z\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-s3hi5j\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1itkzee\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Cuota de mercado de empleados banca y cajas rurales\"})}),className:\"framer-1wulwg6\",fonts:[\"FS;Fira Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"86%\"})}),className:\"framer-1c40n8n\",fonts:[\"FS;Fira Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-157d3jx\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xgbqit\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tnmcou\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Cuota de mercado de empleados del sector financiero\"})}),className:\"framer-b3e1y5\",fonts:[\"FS;Fira Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"85%\"})}),className:\"framer-evrk2n\",fonts:[\"FS;Fira Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b6kptg\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-d77rck\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sobss3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f6heq7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Cuota de participaci\\xf3n empleados\"})}),className:\"framer-1tuzknv\",fonts:[\"FS;Fira Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"84%\"})}),className:\"framer-raj4g4\",fonts:[\"FS;Fira Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k8hsrg\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-155mdut\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l0r6j8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Cuota de mercado de empleados entidades de seguros\"})}),className:\"framer-itw7pw\",fonts:[\"FS;Fira Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"81%\"})}),className:\"framer-1j13cz\",fonts:[\"FS;Fira Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ati5ec\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-bxl5bb\"})})]})]}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.google.com/presentation/d/1aPN4KTczVwTQxf024BN4q8ZITYtpWF2T/edit?usp=drive_link&ouid=111203040369712861014&rtpof=true&sd=true\",motionChild:true,nodeId:\"NV2TMwFl7\",scopeId:\"hTtcbKAZd\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1icf6x0 framer-puzbhf\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fgo89p\",\"data-styles-preset\":\"ickuMUi8E\",style:{\"--framer-text-color\":\"rgb(11, 77, 133)\"},children:\"Acceda al informe\"})}),className:\"framer-1miq6l3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-130q6pt\",\"data-framer-name\":\"Overlay\"})]})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1nnb7pq\",\"data-framer-name\":\"Noticias\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wm3j70\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-bsr18j\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:\"\\xdaltimas Noticias del GREF\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:\"\\xdaltimas Noticias del GREF\"})}),className:\"framer-1jxxhp3\",fonts:[\"FS;Fira Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yver8b\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"iMjZN3V4r\",data:ArtCulos,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"iMjZN3V4r\",name:\"K0DQh1a5X\",type:\"Identifier\"},{collection:\"iMjZN3V4r\",name:\"NqsULmCIN\",type:\"Identifier\"},{collection:\"iMjZN3V4r\",name:\"QBEpjM_0Y\",type:\"Identifier\"},{collection:\"iMjZN3V4r\",name:\"c9OGUl16u\",type:\"Identifier\"},{collection:\"iMjZN3V4r\",name:\"lXGvlGgJF\",type:\"Identifier\"},{collection:\"iMjZN3V4r\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({c9OGUl16u:c9OGUl16uiMjZN3V4r,id:idiMjZN3V4r,K0DQh1a5X:K0DQh1a5XiMjZN3V4r,lXGvlGgJF:lXGvlGgJFiMjZN3V4r,NqsULmCIN:NqsULmCINiMjZN3V4r,QBEpjM_0Y:QBEpjM_0YiMjZN3V4r},index2)=>{K0DQh1a5XiMjZN3V4r??=\"\";c9OGUl16uiMjZN3V4r??=\"\";lXGvlGgJFiMjZN3V4r??=\"\";const textContent=toDateString(QBEpjM_0YiMjZN3V4r,activeLocaleCode);const textContent1=suffix(lXGvlGgJFiMjZN3V4r,\"...\");return /*#__PURE__*/_jsx(LayoutGroup,{id:`iMjZN3V4r-${idiMjZN3V4r}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{K0DQh1a5X:K0DQh1a5XiMjZN3V4r},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{K0DQh1a5X:K0DQh1a5XiMjZN3V4r},webPageId:\"dfPPvx_yk\"},motionChild:true,nodeId:\"ZcX26ALJn\",openInNewTab:false,scopeId:\"hTtcbKAZd\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1az557z framer-puzbhf\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{background:{alt:\"\",fit:\"fill\",sizes:`min(${componentViewport?.width||\"100vw\"} - 60px, 1000px)`,...toResponsiveImage(NqsULmCINiMjZN3V4r)}},yi8xQ_2Tb:{background:{alt:\"\",fit:\"fill\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1000px), 1px)`,...toResponsiveImage(NqsULmCINiMjZN3V4r)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3512+70+115+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1000px) - 40px) / 3, 1px)`,...toResponsiveImage(NqsULmCINiMjZN3V4r)},className:\"framer-113ktlz\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1elljlz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Content\"})}),className:\"framer-bu18o6\",fonts:[\"FS;Fira Sans-bold\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s09y4n\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\"},children:\"Mesas de Trabajo\"})})},yi8xQ_2Tb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\"},children:\"Mesas de Trabajo\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\"},children:\"Mesas de Trabajo\"})}),className:\"framer-lrruhz\",\"data-framer-name\":\"Title\",fonts:[\"FS;Fira Sans-regular\"],text:c9OGUl16uiMjZN3V4r,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ygalnn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Mesas de Trabajo\"})}),className:\"framer-1nqz95h\",fonts:[\"FS;Fira Sans-regular\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-23hce4\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 312 2\"><path d=\"M 0.5 0.5 L 311.5 0.5\" fill=\"transparent\" stroke-width=\"0.5\" stroke=\"#AAA\"></path></svg>',svgContentId:10684609133,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-71ywfl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(0, 90, 152)\"},children:\"Continuar leyendo\"})}),className:\"framer-1hco7rg\",fonts:[\"FS;Fira Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19otk42-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"w75MD1MOh\",scopeId:\"hTtcbKAZd\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(179, 179, 179)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-right\",id:\"w75MD1MOh\",layoutId:\"w75MD1MOh\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})]})})})},idiMjZN3V4r);})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x5xv1v\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-26ecf314-645f-4acb-a883-5d53b2c1ac10, rgb(42, 57, 68))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"S\\xedguenos en nuestras Redes Sociales para no perderte ninguna novedad\"})})})},yi8xQ_2Tb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-26ecf314-645f-4acb-a883-5d53b2c1ac10, rgb(42, 57, 68))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"S\\xedguenos en nuestras Redes Sociales para no perderte ninguna novedad\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-26ecf314-645f-4acb-a883-5d53b2c1ac10, rgb(42, 57, 68))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"S\\xedguenos en nuestras Redes Sociales para no perderte ninguna novedad\"})})}),className:\"framer-kbsupa\",fonts:[\"FS;Fira Sans-regular\",\"FS;Fira Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hmimj\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/channel/UCNHsFI9OiGvvGeeKV9EonRw/featured\",motionChild:true,nodeId:\"MHE1g_rQL\",openInNewTab:true,scopeId:\"hTtcbKAZd\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1hv8aks framer-puzbhf\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jmzuvq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FBjjWeS30\",scopeId:\"hTtcbKAZd\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(8, 76, 126)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"YouTube\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"FBjjWeS30\",layoutId:\"FBjjWeS30\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/grupogref/?viewAsMember=true\",motionChild:true,nodeId:\"TzGcjTWNd\",openInNewTab:true,scopeId:\"hTtcbKAZd\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-irbsoy framer-puzbhf\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-f9yy1b-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"lJMlQI4To\",scopeId:\"hTtcbKAZd\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(8, 76, 126)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"LinkedIn\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"lJMlQI4To\",layoutId:\"lJMlQI4To\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-4x07id\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zx30w1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ps4lhj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-26ecf314-645f-4acb-a883-5d53b2c1ac10, rgb(42, 57, 68))\"},children:\"Nuestros patrocinadores\"})})},yi8xQ_2Tb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-26ecf314-645f-4acb-a883-5d53b2c1ac10, rgb(42, 57, 68))\"},children:\"Nuestros patrocinadores\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-26ecf314-645f-4acb-a883-5d53b2c1ac10, rgb(42, 57, 68))\"},children:\"Nuestros patrocinadores\"})}),className:\"framer-1rzwz5p\",fonts:[\"FS;Fira Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-26ecf314-645f-4acb-a883-5d53b2c1ac10, rgb(42, 57, 68))\"},children:\"Empresas asociadas\"})})},yi8xQ_2Tb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-26ecf314-645f-4acb-a883-5d53b2c1ac10, rgb(42, 57, 68))\"},children:\"Empresas asociadas\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-26ecf314-645f-4acb-a883-5d53b2c1ac10, rgb(42, 57, 68))\"},children:\"Empresas asociadas\"})}),className:\"framer-i658xs\",fonts:[\"FS;Fira Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9k20ua\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pkjdjx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:97,intrinsicWidth:499.5,pixelHeight:194,pixelWidth:999,sizes:\"144px\",src:\"https://framerusercontent.com/images/plXfkp7TpewHqfbubIpWh8WyoQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/plXfkp7TpewHqfbubIpWh8WyoQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/plXfkp7TpewHqfbubIpWh8WyoQ.png 999w\"}},yi8xQ_2Tb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:97,intrinsicWidth:499.5,pixelHeight:194,pixelWidth:999,sizes:\"201px\",src:\"https://framerusercontent.com/images/plXfkp7TpewHqfbubIpWh8WyoQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/plXfkp7TpewHqfbubIpWh8WyoQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/plXfkp7TpewHqfbubIpWh8WyoQ.png 999w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:97,intrinsicWidth:499.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4343.3+70+109.6+0+0+10),pixelHeight:194,pixelWidth:999,sizes:\"236.8763px\",src:\"https://framerusercontent.com/images/plXfkp7TpewHqfbubIpWh8WyoQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/plXfkp7TpewHqfbubIpWh8WyoQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/plXfkp7TpewHqfbubIpWh8WyoQ.png 999w\"},className:\"framer-1ik1czl\",\"data-framer-name\":\"Logo thePower positivo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:171,intrinsicWidth:1004.5,pixelHeight:342,pixelWidth:2009,sizes:\"112px\",src:\"https://framerusercontent.com/images/emwnaydpqGLn3Str1wPSSXpgKs.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/emwnaydpqGLn3Str1wPSSXpgKs.png?scale-down-to=512 512w,https://framerusercontent.com/images/emwnaydpqGLn3Str1wPSSXpgKs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/emwnaydpqGLn3Str1wPSSXpgKs.png 2009w\"}},yi8xQ_2Tb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:171,intrinsicWidth:1004.5,pixelHeight:342,pixelWidth:2009,sizes:\"164px\",src:\"https://framerusercontent.com/images/emwnaydpqGLn3Str1wPSSXpgKs.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/emwnaydpqGLn3Str1wPSSXpgKs.png?scale-down-to=512 512w,https://framerusercontent.com/images/emwnaydpqGLn3Str1wPSSXpgKs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/emwnaydpqGLn3Str1wPSSXpgKs.png 2009w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:171,intrinsicWidth:1004.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4343.3+70+109.6+0+0+17),pixelHeight:342,pixelWidth:2009,sizes:\"187.9766px\",src:\"https://framerusercontent.com/images/emwnaydpqGLn3Str1wPSSXpgKs.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/emwnaydpqGLn3Str1wPSSXpgKs.png?scale-down-to=512 512w,https://framerusercontent.com/images/emwnaydpqGLn3Str1wPSSXpgKs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/emwnaydpqGLn3Str1wPSSXpgKs.png 2009w\"},className:\"framer-thup6y\",\"data-framer-name\":\"LOGO AZUL HI VIP\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:63,intrinsicWidth:457,pixelHeight:126,pixelWidth:914,sizes:\"145px\",src:\"https://framerusercontent.com/images/C7WkB8kbStCZPshJg6McUlJJ7sY.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/C7WkB8kbStCZPshJg6McUlJJ7sY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/C7WkB8kbStCZPshJg6McUlJJ7sY.jpg 914w\"}},yi8xQ_2Tb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:63,intrinsicWidth:457,pixelHeight:126,pixelWidth:914,sizes:\"195px\",src:\"https://framerusercontent.com/images/C7WkB8kbStCZPshJg6McUlJJ7sY.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/C7WkB8kbStCZPshJg6McUlJJ7sY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/C7WkB8kbStCZPshJg6McUlJJ7sY.jpg 914w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:63,intrinsicWidth:457,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4343.3+70+109.6+0+0+17),pixelHeight:126,pixelWidth:914,sizes:\"232.127px\",src:\"https://framerusercontent.com/images/C7WkB8kbStCZPshJg6McUlJJ7sY.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/C7WkB8kbStCZPshJg6McUlJJ7sY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/C7WkB8kbStCZPshJg6McUlJJ7sY.jpg 914w\"},className:\"framer-cwnywp\",\"data-framer-name\":\"LogoAtreviaEN\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:354.5,intrinsicWidth:797.5,pixelHeight:491,pixelWidth:1595,positionX:\"center\",positionY:\"center\",sizes:\"97px\",src:\"https://framerusercontent.com/images/uAraQ3fHljHBYZkEBfBRZHFmo6E.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uAraQ3fHljHBYZkEBfBRZHFmo6E.png?scale-down-to=512 512w,https://framerusercontent.com/images/uAraQ3fHljHBYZkEBfBRZHFmo6E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uAraQ3fHljHBYZkEBfBRZHFmo6E.png 1595w\"}},yi8xQ_2Tb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:354.5,intrinsicWidth:797.5,pixelHeight:491,pixelWidth:1595,positionX:\"center\",positionY:\"center\",sizes:\"123px\",src:\"https://framerusercontent.com/images/uAraQ3fHljHBYZkEBfBRZHFmo6E.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uAraQ3fHljHBYZkEBfBRZHFmo6E.png?scale-down-to=512 512w,https://framerusercontent.com/images/uAraQ3fHljHBYZkEBfBRZHFmo6E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uAraQ3fHljHBYZkEBfBRZHFmo6E.png 1595w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:354.5,intrinsicWidth:797.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4343.3+70+109.6+0+0+0),pixelHeight:491,pixelWidth:1595,positionX:\"center\",positionY:\"center\",sizes:\"148.4767px\",src:\"https://framerusercontent.com/images/uAraQ3fHljHBYZkEBfBRZHFmo6E.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uAraQ3fHljHBYZkEBfBRZHFmo6E.png?scale-down-to=512 512w,https://framerusercontent.com/images/uAraQ3fHljHBYZkEBfBRZHFmo6E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uAraQ3fHljHBYZkEBfBRZHFmo6E.png 1595w\"},className:\"framer-1shh18r\",\"data-framer-name\":\"CEGOS LOGO\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:105.5,intrinsicWidth:241,pixelHeight:211,pixelWidth:482,src:\"https://framerusercontent.com/images/GG0FtbgowVbpZHaJnZmEVXERA.png\"}},yi8xQ_2Tb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:105.5,intrinsicWidth:241,pixelHeight:211,pixelWidth:482,src:\"https://framerusercontent.com/images/GG0FtbgowVbpZHaJnZmEVXERA.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:105.5,intrinsicWidth:241,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4343.3+70+109.6+0+0+0),pixelHeight:211,pixelWidth:482,src:\"https://framerusercontent.com/images/GG0FtbgowVbpZHaJnZmEVXERA.png\"},className:\"framer-1xkstgu\",\"data-framer-name\":\"Adecco logo_blanco-01\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ilbhdk\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:640,pixelHeight:318,pixelWidth:704,sizes:\"96px\",src:\"https://framerusercontent.com/images/08X78eJms1I9dkul80kY1bkcxI.jpg\",srcSet:\"https://framerusercontent.com/images/08X78eJms1I9dkul80kY1bkcxI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/08X78eJms1I9dkul80kY1bkcxI.jpg 704w\"}},yi8xQ_2Tb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:640,pixelHeight:318,pixelWidth:704,sizes:\"122px\",src:\"https://framerusercontent.com/images/08X78eJms1I9dkul80kY1bkcxI.jpg\",srcSet:\"https://framerusercontent.com/images/08X78eJms1I9dkul80kY1bkcxI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/08X78eJms1I9dkul80kY1bkcxI.jpg 704w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:640,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4343.3+70+109.6+0+76+17.5),pixelHeight:318,pixelWidth:704,sizes:\"122px\",src:\"https://framerusercontent.com/images/08X78eJms1I9dkul80kY1bkcxI.jpg\",srcSet:\"https://framerusercontent.com/images/08X78eJms1I9dkul80kY1bkcxI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/08X78eJms1I9dkul80kY1bkcxI.jpg 704w\"},className:\"framer-ilrkff\",\"data-framer-name\":\"LOGO ADITIO\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:216.5,intrinsicWidth:600,pixelHeight:433,pixelWidth:1200,sizes:\"123px\",src:\"https://framerusercontent.com/images/OaSie4umkDmu4cZWyiOm51JZ4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/OaSie4umkDmu4cZWyiOm51JZ4.png?scale-down-to=512 512w,https://framerusercontent.com/images/OaSie4umkDmu4cZWyiOm51JZ4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OaSie4umkDmu4cZWyiOm51JZ4.png 1200w\"}},yi8xQ_2Tb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:216.5,intrinsicWidth:600,pixelHeight:433,pixelWidth:1200,sizes:\"166px\",src:\"https://framerusercontent.com/images/OaSie4umkDmu4cZWyiOm51JZ4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/OaSie4umkDmu4cZWyiOm51JZ4.png?scale-down-to=512 512w,https://framerusercontent.com/images/OaSie4umkDmu4cZWyiOm51JZ4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OaSie4umkDmu4cZWyiOm51JZ4.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:216.5,intrinsicWidth:600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4343.3+70+109.6+0+76+17.5),pixelHeight:433,pixelWidth:1200,sizes:\"166px\",src:\"https://framerusercontent.com/images/OaSie4umkDmu4cZWyiOm51JZ4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/OaSie4umkDmu4cZWyiOm51JZ4.png?scale-down-to=512 512w,https://framerusercontent.com/images/OaSie4umkDmu4cZWyiOm51JZ4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OaSie4umkDmu4cZWyiOm51JZ4.png 1200w\"},className:\"framer-1c65v2l\",\"data-framer-name\":\"Speexx logo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 93 53\"><path d=\"M 31.552 33.001 C 31.552 32.725 31.645 32.448 31.784 32.195 C 31.924 31.941 32.156 31.78 32.435 31.688 C 32.714 31.596 32.993 31.55 33.296 31.596 C 33.598 31.642 33.807 31.78 34.063 31.964 C 34.249 32.149 34.388 32.425 34.435 32.725 C 34.481 33.001 34.481 33.278 34.342 33.577 C 34.249 33.854 34.063 34.038 33.83 34.223 C 33.598 34.361 33.319 34.453 33.017 34.453 C 32.645 34.453 32.249 34.315 32.017 34.038 C 31.738 33.762 31.552 33.393 31.552 33.001 Z M 27.739 33.001 C 27.739 34.038 28.065 35.052 28.646 35.905 C 29.204 36.757 30.064 37.449 31.017 37.817 C 31.97 38.186 33.04 38.324 34.086 38.094 C 35.132 37.909 36.062 37.379 36.783 36.642 C 37.55 35.882 38.015 34.96 38.247 33.969 C 38.433 32.932 38.34 31.918 37.968 30.928 C 37.596 29.937 36.876 29.153 36.039 28.577 C 35.179 28.024 34.156 27.679 33.11 27.679 C 31.691 27.679 30.366 28.232 29.367 29.222 C 28.367 30.213 27.739 31.596 27.739 33.001 Z M 16.418 33.001 C 16.418 32.725 16.511 32.448 16.65 32.195 C 16.79 31.941 17.022 31.78 17.301 31.688 C 17.58 31.596 17.859 31.55 18.162 31.596 C 18.464 31.642 18.673 31.78 18.929 31.964 C 19.115 32.149 19.254 32.425 19.301 32.725 C 19.347 33.024 19.347 33.278 19.208 33.577 C 19.115 33.854 18.929 34.038 18.696 34.223 C 18.464 34.361 18.185 34.453 17.883 34.453 C 17.511 34.453 17.115 34.315 16.883 34.038 C 16.627 33.762 16.488 33.393 16.418 33.001 Z M 12.605 33.001 C 12.605 34.038 12.931 35.052 13.512 35.905 C 14.07 36.757 14.93 37.449 15.883 37.817 C 16.836 38.186 17.906 38.324 18.952 38.094 C 19.998 37.909 20.928 37.379 21.649 36.642 C 22.416 35.882 22.881 34.96 23.113 33.969 C 23.299 32.932 23.206 31.918 22.834 30.928 C 22.462 29.983 21.742 29.153 20.905 28.577 C 20.045 28.024 19.022 27.679 17.976 27.679 C 16.557 27.679 15.232 28.232 14.233 29.222 C 13.117 30.282 12.605 31.596 12.605 33.001\" fill=\"rgb(204,0,102)\"></path><path d=\"M 56.659 31.273 C 56.659 27.471 53.916 24.706 50.359 24.706 C 48.569 24.706 47.29 25.42 46.43 26.526 L 46.43 18.784 L 43.71 18.784 L 43.71 37.495 L 46.454 37.495 L 46.454 35.997 C 47.36 37.08 48.592 37.817 50.382 37.817 C 53.869 37.84 56.659 35.075 56.659 31.273 Z M 53.823 31.273 C 53.823 33.485 52.405 35.259 50.034 35.259 C 47.755 35.259 46.244 33.531 46.244 31.273 C 46.244 29.015 47.755 27.287 50.034 27.287 C 52.405 27.287 53.823 29.061 53.823 31.273 Z M 66.493 27.517 L 66.493 25.029 L 61.68 25.029 L 61.68 21.273 L 58.937 21.273 L 58.937 32.978 C 58.937 36.296 60.588 37.794 63.424 37.794 C 64.796 37.794 66.167 37.379 67.26 36.573 L 66.167 34.407 C 65.4 34.868 64.517 35.259 63.657 35.259 C 62.564 35.259 61.68 34.614 61.68 32.909 L 61.68 27.471 L 66.493 27.471 Z M 79.302 25.651 C 77.93 25.052 76.466 24.706 74.955 24.706 C 71.747 24.706 69.747 26.25 69.747 28.692 C 69.747 30.697 71.212 31.964 74.002 32.356 L 75.327 32.54 C 76.838 32.725 77.512 33.186 77.512 33.9 C 77.512 34.845 76.512 35.398 74.676 35.398 C 72.653 35.398 71.421 34.845 70.561 34.13 L 69.282 36.135 C 71.072 37.495 73.397 37.725 74.676 37.725 C 78.279 37.725 80.395 36.043 80.395 33.647 C 80.395 31.527 78.791 30.374 76.047 29.983 L 74.769 29.798 C 73.63 29.614 72.7 29.384 72.7 28.531 C 72.7 27.632 73.56 27.033 75.071 27.033 C 76.257 27.079 77.396 27.31 78.419 27.84 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 25.368 14.775 C 24.322 14.775 23.299 15.097 22.439 15.673 C 21.579 16.226 20.881 17.079 20.51 18.024 C 20.138 18.968 19.998 20.028 20.231 21.065 C 20.417 22.102 20.951 23.024 21.695 23.738 C 22.462 24.499 23.392 24.96 24.392 25.19 C 25.438 25.374 26.461 25.282 27.46 24.913 C 28.414 24.545 29.251 23.83 29.832 23.001 C 30.39 22.148 30.738 21.134 30.738 20.098 C 30.738 18.692 30.18 17.379 29.181 16.388 C 28.111 15.328 26.74 14.775 25.368 14.775 Z M 25.368 21.434 C 25.089 21.434 24.81 21.342 24.555 21.204 C 24.299 21.065 24.136 20.835 24.043 20.558 C 23.95 20.282 23.904 20.005 23.95 19.706 C 23.997 19.406 24.136 19.199 24.322 18.945 C 24.508 18.761 24.787 18.623 25.089 18.577 C 25.368 18.531 25.647 18.531 25.949 18.669 C 26.228 18.761 26.414 18.945 26.6 19.176 C 26.74 19.406 26.833 19.683 26.833 19.982 C 26.833 20.351 26.693 20.743 26.414 20.973 C 26.066 21.296 25.74 21.434 25.368 21.434 Z\" fill=\"rgb(204,0,102)\"></path></svg>',svgContentId:11385854508}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9cfkmc\",\"data-framer-name\":\"Bts-spotlight-2023-12-04-095806516\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 166 95\"><path d=\"M 56.319 59.153 C 56.319 58.658 56.485 58.162 56.734 57.708 C 56.983 57.253 57.397 56.964 57.895 56.799 C 58.393 56.634 58.891 56.551 59.431 56.634 C 59.97 56.716 60.344 56.964 60.8 57.295 C 61.132 57.625 61.381 58.121 61.464 58.658 C 61.547 59.153 61.547 59.649 61.298 60.186 C 61.132 60.682 60.8 61.012 60.385 61.342 C 59.97 61.59 59.472 61.755 58.933 61.755 C 58.269 61.755 57.563 61.508 57.148 61.012 C 56.651 60.516 56.319 59.855 56.319 59.153 Z M 49.513 59.153 C 49.513 61.012 50.094 62.829 51.132 64.357 C 52.128 65.886 53.663 67.125 55.364 67.786 C 57.065 68.446 58.974 68.694 60.842 68.281 C 62.709 67.951 64.369 67.001 65.655 65.679 C 67.024 64.316 67.854 62.664 68.269 60.888 C 68.601 59.029 68.435 57.212 67.771 55.436 C 67.107 53.66 65.821 52.256 64.327 51.223 C 62.792 50.232 60.966 49.612 59.099 49.612 C 56.568 49.612 54.202 50.604 52.418 52.38 C 50.634 54.156 49.513 56.634 49.513 59.153 Z M 29.305 59.153 C 29.305 58.658 29.471 58.162 29.72 57.708 C 29.969 57.253 30.384 56.964 30.882 56.799 C 31.38 56.634 31.878 56.551 32.417 56.634 C 32.957 56.716 33.33 56.964 33.787 57.295 C 34.119 57.625 34.368 58.121 34.451 58.658 C 34.534 59.195 34.534 59.649 34.285 60.186 C 34.119 60.682 33.787 61.012 33.372 61.342 C 32.957 61.59 32.459 61.755 31.919 61.755 C 31.255 61.755 30.55 61.508 30.135 61.012 C 29.679 60.516 29.43 59.855 29.305 59.153 Z M 22.5 59.153 C 22.5 61.012 23.081 62.829 24.118 64.357 C 25.114 65.886 26.65 67.125 28.351 67.786 C 30.052 68.446 31.961 68.694 33.828 68.281 C 35.695 67.951 37.355 67.001 38.642 65.679 C 40.011 64.316 40.841 62.664 41.256 60.888 C 41.588 59.029 41.422 57.212 40.758 55.436 C 40.094 53.743 38.808 52.256 37.314 51.223 C 35.778 50.232 33.953 49.612 32.085 49.612 C 29.554 49.612 27.189 50.604 25.405 52.38 C 23.413 54.28 22.5 56.634 22.5 59.153\" fill=\"rgb(204,0,102)\"></path><path d=\"M 101.133 56.056 C 101.133 49.241 96.237 44.284 89.888 44.284 C 86.693 44.284 84.411 45.565 82.876 47.547 L 82.876 33.67 L 78.021 33.67 L 78.021 67.207 L 82.917 67.207 L 82.917 64.523 C 84.535 66.464 86.735 67.786 89.93 67.786 C 96.154 67.827 101.133 62.871 101.133 56.056 Z M 96.071 56.056 C 96.071 60.021 93.54 63.201 89.307 63.201 C 85.241 63.201 82.544 60.103 82.544 56.056 C 82.544 52.008 85.241 48.91 89.307 48.91 C 93.54 48.91 96.071 52.091 96.071 56.056 Z M 118.686 49.323 L 118.686 44.863 L 110.096 44.863 L 110.096 38.13 L 105.2 38.13 L 105.2 59.112 C 105.2 65.06 108.146 67.744 113.209 67.744 C 115.657 67.744 118.105 67.001 120.055 65.555 L 118.105 61.673 C 116.736 62.499 115.159 63.201 113.623 63.201 C 111.673 63.201 110.096 62.044 110.096 58.988 L 110.096 49.241 L 118.686 49.241 Z M 141.55 45.978 C 139.102 44.904 136.487 44.284 133.79 44.284 C 128.064 44.284 124.495 47.052 124.495 51.43 C 124.495 55.023 127.109 57.295 132.089 57.997 L 134.454 58.327 C 137.151 58.658 138.355 59.484 138.355 60.764 C 138.355 62.458 136.57 63.449 133.292 63.449 C 129.682 63.449 127.483 62.458 125.948 61.177 L 123.665 64.77 C 126.86 67.207 131.01 67.62 133.292 67.62 C 139.724 67.62 143.5 64.605 143.5 60.31 C 143.5 56.51 140.637 54.445 135.74 53.743 L 133.458 53.412 C 131.425 53.082 129.765 52.669 129.765 51.141 C 129.765 49.53 131.3 48.456 133.998 48.456 C 136.114 48.539 138.147 48.952 139.973 49.902 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 45.281 26.483 C 43.414 26.483 41.588 27.061 40.052 28.094 C 38.517 29.085 37.272 30.613 36.608 32.307 C 35.944 34 35.695 35.9 36.11 37.759 C 36.442 39.617 37.397 41.269 38.725 42.55 C 40.094 43.913 41.754 44.739 43.538 45.152 C 45.405 45.482 47.231 45.317 49.015 44.656 C 50.717 43.995 52.211 42.715 53.248 41.228 C 54.244 39.7 54.866 37.883 54.866 36.024 C 54.866 33.505 53.87 31.15 52.086 29.374 C 50.177 27.474 47.729 26.483 45.281 26.483 Z M 45.281 38.419 C 44.783 38.419 44.285 38.254 43.829 38.006 C 43.372 37.759 43.082 37.346 42.916 36.85 C 42.75 36.354 42.667 35.859 42.75 35.322 C 42.833 34.785 43.082 34.413 43.414 33.959 C 43.746 33.628 44.243 33.381 44.783 33.298 C 45.281 33.215 45.779 33.215 46.318 33.463 C 46.816 33.628 47.148 33.959 47.48 34.372 C 47.729 34.785 47.895 35.281 47.895 35.817 C 47.895 36.478 47.646 37.18 47.148 37.593 C 46.526 38.172 45.945 38.419 45.281 38.419 Z\" fill=\"rgb(204,0,102)\"></path></svg>',svgContentId:10055015224,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:68.5,intrinsicWidth:183.5,pixelHeight:137,pixelWidth:367,src:\"https://framerusercontent.com/images/cy4mOF40Ja9N1B8nSVnBHGfeI.jpg\"}},yi8xQ_2Tb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:68.5,intrinsicWidth:183.5,pixelHeight:137,pixelWidth:367,src:\"https://framerusercontent.com/images/cy4mOF40Ja9N1B8nSVnBHGfeI.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:68.5,intrinsicWidth:183.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4343.3+70+109.6+0+76+17.5),pixelHeight:137,pixelWidth:367,src:\"https://framerusercontent.com/images/cy4mOF40Ja9N1B8nSVnBHGfeI.jpg\"},className:\"framer-azf6ml\",\"data-framer-name\":\"Logo innopulse\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:78,intrinsicWidth:175,pixelHeight:156,pixelWidth:350,src:\"https://framerusercontent.com/images/jDdvXkrNouHu9yYuwwP3cQdI.png\"}},yi8xQ_2Tb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:78,intrinsicWidth:175,pixelHeight:156,pixelWidth:350,src:\"https://framerusercontent.com/images/jDdvXkrNouHu9yYuwwP3cQdI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:78,intrinsicWidth:175,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4343.3+70+109.6+0+76+17.5),pixelHeight:156,pixelWidth:350,src:\"https://framerusercontent.com/images/jDdvXkrNouHu9yYuwwP3cQdI.png\"},className:\"framer-1tewvff\",\"data-framer-name\":\"Overlap logo\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kqe2op\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:34,intrinsicWidth:168,pixelHeight:68,pixelWidth:336,src:\"https://framerusercontent.com/images/aT3AxaNvDUzukmw9U7SeNjS4ogk.png\"}},yi8xQ_2Tb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:34,intrinsicWidth:168,pixelHeight:68,pixelWidth:336,src:\"https://framerusercontent.com/images/aT3AxaNvDUzukmw9U7SeNjS4ogk.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:34,intrinsicWidth:168,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4343.3+70+109.6+0+181+6),pixelHeight:68,pixelWidth:336,src:\"https://framerusercontent.com/images/aT3AxaNvDUzukmw9U7SeNjS4ogk.png\"},className:\"framer-y1qwo7\",\"data-framer-name\":\"LOGO Afi Escuela-300ppp\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:118,intrinsicWidth:753.5,pixelHeight:236,pixelWidth:1507,sizes:\"153px\",src:\"https://framerusercontent.com/images/bZjn9R1fp1rigAYdoMz8St3wyc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bZjn9R1fp1rigAYdoMz8St3wyc.png?scale-down-to=512 512w,https://framerusercontent.com/images/bZjn9R1fp1rigAYdoMz8St3wyc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bZjn9R1fp1rigAYdoMz8St3wyc.png 1507w\"}},yi8xQ_2Tb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:118,intrinsicWidth:753.5,pixelHeight:236,pixelWidth:1507,sizes:\"178.7966px\",src:\"https://framerusercontent.com/images/bZjn9R1fp1rigAYdoMz8St3wyc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bZjn9R1fp1rigAYdoMz8St3wyc.png?scale-down-to=512 512w,https://framerusercontent.com/images/bZjn9R1fp1rigAYdoMz8St3wyc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bZjn9R1fp1rigAYdoMz8St3wyc.png 1507w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:118,intrinsicWidth:753.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4343.3+70+109.6+0+181+12),pixelHeight:236,pixelWidth:1507,sizes:\"178.7966px\",src:\"https://framerusercontent.com/images/bZjn9R1fp1rigAYdoMz8St3wyc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bZjn9R1fp1rigAYdoMz8St3wyc.png?scale-down-to=512 512w,https://framerusercontent.com/images/bZjn9R1fp1rigAYdoMz8St3wyc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bZjn9R1fp1rigAYdoMz8St3wyc.png 1507w\"},className:\"framer-1xhumez\",\"data-framer-name\":\"LOGO IEF_P\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:87.5,intrinsicWidth:144,pixelHeight:175,pixelWidth:288,src:\"https://framerusercontent.com/images/ZBAUhCkfwHS8e30PrqoXFO44qPw.png\"}},yi8xQ_2Tb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:87.5,intrinsicWidth:144,pixelHeight:175,pixelWidth:288,src:\"https://framerusercontent.com/images/ZBAUhCkfwHS8e30PrqoXFO44qPw.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:87.5,intrinsicWidth:144,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4343.3+70+109.6+0+181+0),pixelHeight:175,pixelWidth:288,src:\"https://framerusercontent.com/images/ZBAUhCkfwHS8e30PrqoXFO44qPw.png\"},className:\"framer-780cvh\",\"data-framer-name\":\"Logo ieb\"})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{y:undefined},yi8xQ_2Tb:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:741,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4825.9,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bvtg00-container\",nodeId:\"LjEGm157t\",scopeId:\"hTtcbKAZd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i_a7QVvrY:{variant:\"HFrz7MS4S\"},yi8xQ_2Tb:{variant:\"ck14jKd38\"}},children:/*#__PURE__*/_jsx(FooterGREF,{height:\"100%\",id:\"LjEGm157t\",layoutId:\"LjEGm157t\",style:{width:\"100%\"},variant:\"JXx36J36f\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-M7NUC.framer-puzbhf, .framer-M7NUC .framer-puzbhf { display: block; }\",\".framer-M7NUC.framer-1lz0mad { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-M7NUC .framer-14d47zl-container, .framer-M7NUC .framer-1bvtg00-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-M7NUC .framer-1qhlhed { align-content: center; align-items: center; background-color: #f7f7f7; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-shxe7x { background-color: rgba(255, 255, 255, 0); bottom: 0px; flex: none; gap: 10px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-M7NUC .framer-1996cke-container { flex: none; height: 600px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-1bp5xza, .framer-M7NUC .framer-1u33qqv, .framer-M7NUC .framer-1gbvq0k, .framer-M7NUC .framer-15cqdm0 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: center; overflow: hidden; padding: 70px 40px 70px 40px; position: relative; width: 1010px; }\",\".framer-M7NUC .framer-ao1b65 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-13yz8zc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-1goyzlx, .framer-M7NUC .framer-1na31jr { --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; z-index: 3; }\",\".framer-M7NUC .framer-gn9tuc, .framer-M7NUC .framer-1pj45tp, .framer-M7NUC .framer-1t8wp7i, .framer-M7NUC .framer-17g8ijn, .framer-M7NUC .framer-oxrd2j { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 900px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 3; }\",\".framer-M7NUC .framer-1ns9r5f, .framer-M7NUC .framer-u8tnmy { --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; z-index: 2; }\",\".framer-M7NUC .framer-hw8468 { align-content: center; align-items: center; background-color: #075797; border-bottom-left-radius: 23456px; border-bottom-right-radius: 23456px; border-top-left-radius: 23456px; border-top-right-radius: 23456px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px 45px 15px 45px; position: relative; text-decoration: none; width: min-content; z-index: 1; }\",\".framer-M7NUC .framer-49oymk, .framer-M7NUC .framer-1dw6wqf, .framer-M7NUC .framer-15bb8uy, .framer-M7NUC .framer-rbo2yo, .framer-M7NUC .framer-y3nm9c { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-M7NUC .framer-zxkghy { background-color: rgba(0, 21, 38, 0.71); bottom: 0px; flex: none; gap: 10px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-M7NUC .framer-yz2u90 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: 600px; justify-content: center; overflow: hidden; padding: 47px 0px 0px 0px; position: relative; width: 1010px; }\",\".framer-M7NUC .framer-1a7a3gv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-kvy1sf { 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; max-width: 1200px; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-1bnx9es { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-jzlet9 { align-content: center; align-items: center; background-color: #075797; border-bottom-left-radius: 23456px; border-bottom-right-radius: 23456px; border-top-left-radius: 23456px; border-top-right-radius: 23456px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px 30px 15px 30px; position: relative; text-decoration: none; width: min-content; z-index: 1; }\",\".framer-M7NUC .framer-fkjcrb { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-M7NUC .framer-dsn9jz, .framer-M7NUC .framer-1dbpc8m, .framer-M7NUC .framer-1u36yim, .framer-M7NUC .framer-chs0fv, .framer-M7NUC .framer-1x5xv1v { 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: 0px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-10uqc0u, .framer-M7NUC .framer-nfxjvc, .framer-M7NUC .framer-h2egvc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-44i1ok, .framer-M7NUC .framer-mkgcsg, .framer-M7NUC .framer-1pr555k { align-content: center; align-items: center; background-color: #075797; border-bottom-left-radius: 23456px; border-bottom-right-radius: 23456px; border-top-left-radius: 23456px; border-top-right-radius: 23456px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: 174px; z-index: 1; }\",\".framer-M7NUC .framer-144cjgf, .framer-M7NUC .framer-l8bo4p, .framer-M7NUC .framer-6r596l { background-color: rgba(15, 15, 15, 0.42); bottom: 0px; flex: none; gap: 10px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-M7NUC .framer-n1b2eh { align-content: center; align-items: center; background-color: #015798; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 124px; justify-content: center; overflow: hidden; padding: 14px 19px 14px 19px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-on6f6y-container { flex: none; height: 91px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-l0ii8b { height: 71px; overflow: hidden; position: relative; width: 227px; }\",\".framer-M7NUC .framer-m64f3n, .framer-M7NUC .framer-3zygs6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 9px; overflow: visible; position: absolute; top: 50%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-M7NUC .framer-1tkvnq8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 105px; overflow: visible; position: absolute; top: 50%; transform: translateY(-50%); white-space: pre-wrap; width: 111px; word-break: break-word; word-wrap: break-word; }\",\".framer-M7NUC .framer-od09pz { height: 71px; overflow: hidden; position: relative; width: 304px; }\",\".framer-M7NUC .framer-gp5qkf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 2px; overflow: visible; position: absolute; top: 49%; transform: translateY(-50%); white-space: pre-wrap; width: 150px; word-break: break-word; word-wrap: break-word; }\",\".framer-M7NUC .framer-1bb0a5e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: absolute; right: 0px; top: 49%; transform: translateY(-50%); white-space: pre-wrap; width: 152px; word-break: break-word; word-wrap: break-word; }\",\".framer-M7NUC .framer-1itzzre { height: 71px; overflow: hidden; position: relative; width: 308px; }\",\".framer-M7NUC .framer-qll8an { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 62px; overflow: visible; position: absolute; top: 49%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-M7NUC .framer-8qmzwk { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 70px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 481px; }\",\".framer-M7NUC .framer-1ksp107 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-M7NUC .framer-7wlgk0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 314px; word-break: break-word; word-wrap: break-word; }\",\".framer-M7NUC .framer-iygcub { height: 78px; overflow: hidden; position: relative; width: 209px; }\",\".framer-M7NUC .framer-1xfvset, .framer-M7NUC .framer-1pm0g67 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 15px; overflow: visible; position: absolute; top: 49%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-M7NUC .framer-1ofajhd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 79px; overflow: visible; position: absolute; top: 50%; transform: translateY(-50%); white-space: pre-wrap; width: 115px; word-break: break-word; word-wrap: break-word; }\",\".framer-M7NUC .framer-uvmhei { height: 78px; overflow: hidden; position: relative; width: 246px; }\",\".framer-M7NUC .framer-vthrrt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 79px; overflow: visible; position: absolute; top: 50%; transform: translateY(-50%); white-space: pre-wrap; width: 159px; word-break: break-word; word-wrap: break-word; }\",\".framer-M7NUC .framer-v3wr42 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 70px 50px 70px 30px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-1g4erna { --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; z-index: 1; }\",\".framer-M7NUC .framer-7t2jf7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: -581px; position: absolute; top: 50px; white-space: pre-wrap; width: 496px; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-M7NUC .framer-1j2bqnb { 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-M7NUC .framer-3c5hpf { 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; max-width: 530px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-M7NUC .framer-1jrg9xj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 650px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-1kjkrh1, .framer-M7NUC .framer-nqqyhx, .framer-M7NUC .framer-bsr18j, .framer-M7NUC .framer-1ps4lhj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-1txez7h, .framer-M7NUC .framer-1581wyu, .framer-M7NUC .framer-h3ew5l, .framer-M7NUC .framer-1p9tll9, .framer-M7NUC .framer-1v5czg1, .framer-M7NUC .framer-1que5tr, .framer-M7NUC .framer-dhziph, .framer-M7NUC .framer-1magynn, .framer-M7NUC .framer-1sem3sd, .framer-M7NUC .framer-c3ho3z, .framer-M7NUC .framer-1t0dcdp, .framer-M7NUC .framer-ok3qqx, .framer-M7NUC .framer-1jxxhp3, .framer-M7NUC .framer-kbsupa, .framer-M7NUC .framer-1rzwz5p, .framer-M7NUC .framer-i658xs { --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-M7NUC .framer-13yk9f2, .framer-M7NUC .framer-lrruhz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-M7NUC .framer-1ww8f0x { align-content: center; align-items: center; background-color: var(--token-3ca8f289-fa98-4256-8afd-a554595f408b, #005898); border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 15px 10px 15px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-M7NUC .framer-1dfnzq3, .framer-M7NUC .framer-1prplxm, .framer-M7NUC .framer-1wulwg6, .framer-M7NUC .framer-1miq6l3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-M7NUC .framer-fj7ynw, .framer-M7NUC .framer-1s7392o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-7jkad3 { --border-bottom-width: 1px; --border-color: #c7c7c7; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; 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; text-decoration: none; width: 100%; }\",\".framer-M7NUC .framer-55cn1c { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 211px; justify-content: flex-end; overflow: hidden; padding: 30px 30px 15px 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-M7NUC .framer-1a0tjgu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 49px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-M7NUC .framer-1cvjptu { align-content: center; align-items: center; background-color: #074e89; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 90px; will-change: var(--framer-will-change-override, transform); }\",\".framer-M7NUC .framer-5jvaa0, .framer-M7NUC .framer-1wuxfvc, .framer-M7NUC .framer-1c5x6bo, .framer-M7NUC .framer-bu18o6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-M7NUC .framer-pyn52y { 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-M7NUC .framer-xbnunc { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 3456px; border-bottom-right-radius: 3456px; border-top-left-radius: 3456px; border-top-right-radius: 3456px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; max-width: 133px; overflow: hidden; padding: 3px 10px 3px 10px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-M7NUC .framer-c0suku-container, .framer-M7NUC .framer-1567azd-container { flex: none; height: 15px; position: relative; width: 15px; }\",\".framer-M7NUC .framer-ki8rq4, .framer-M7NUC .framer-1nqz95h { --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-M7NUC .framer-1obutjt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-72bslx { background-color: rgba(15, 15, 15, 0.74); bottom: 0px; flex: none; gap: 10px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-M7NUC .framer-1fkz3y1, .framer-M7NUC .framer-12rlvqa { 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-M7NUC .framer-5r5710 { --border-bottom-width: 1px; --border-color: #c7c7c7; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; 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 0px 20px 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-M7NUC .framer-n8h5re { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.6; position: relative; white-space: pre-wrap; width: 158px; word-break: break-word; word-wrap: break-word; }\",\".framer-M7NUC .framer-1p3dknr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 158px; word-break: break-word; word-wrap: break-word; }\",\".framer-M7NUC .framer-1556ld8, .framer-M7NUC .framer-1lrdo4w, .framer-M7NUC .framer-67jxda, .framer-M7NUC .framer-nufgai, .framer-M7NUC .framer-1sqzd4m, .framer-M7NUC .framer-b3e1y5, .framer-M7NUC .framer-1tuzknv, .framer-M7NUC .framer-itw7pw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-M7NUC .framer-qklhip { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 70px 40px 47px 40px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-1hlntna { 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: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-M7NUC .framer-13f6u0b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-M7NUC .framer-9emzyt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 920px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-M7NUC .framer-1vq3ehu { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 15px 10px 15px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-M7NUC .framer-1wizatz { background-color: rgba(0, 88, 150, 0.81); bottom: 0px; flex: none; gap: 10px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-M7NUC .framer-83umkd { align-content: center; align-items: center; background-color: var(--token-26ecf314-645f-4acb-a883-5d53b2c1ac10, #2a3944); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-1fvqjj6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-evenly; overflow: hidden; padding: 30px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-1h4sswr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-M7NUC .framer-jioerh, .framer-M7NUC .framer-iyg5da, .framer-M7NUC .framer-2znu49 { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; max-width: 250px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-M7NUC .framer-n3u72c, .framer-M7NUC .framer-k11m7r, .framer-M7NUC .framer-1hk2f5u { flex: none; height: 145px; position: relative; width: 3px; }\",\".framer-M7NUC .framer-ek3ojv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; max-width: 250px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-M7NUC .framer-tv8exb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 70px 40px 70px 40px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-8tburc { align-content: center; align-items: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-M7NUC .framer-1eouvh3 { 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: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-M7NUC .framer-ejlblo { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 920px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-M7NUC .framer-12vpwij { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 67px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-M7NUC .framer-1716b3n { align-content: flex-end; align-items: flex-end; 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: min-content; z-index: 1; }\",\".framer-M7NUC .framer-swuxg, .framer-M7NUC .framer-1f87va4, .framer-M7NUC .framer-124od5f, .framer-M7NUC .framer-28ilfx { 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: 340px; overflow: hidden; padding: 0px; position: relative; width: 340px; }\",\".framer-M7NUC .framer-1e7w5v5, .framer-M7NUC .framer-c7l54, .framer-M7NUC .framer-17j0kx8, .framer-M7NUC .framer-1oga5tb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-1r0s1s7, .framer-M7NUC .framer-m889lp, .framer-M7NUC .framer-1gato71, .framer-M7NUC .framer-2vqnd9, .framer-M7NUC .framer-evrk2n, .framer-M7NUC .framer-raj4g4, .framer-M7NUC .framer-1j13cz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; max-width: 30px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-M7NUC .framer-1dhae4b, .framer-M7NUC .framer-k8hxng, .framer-M7NUC .framer-1we5wh2, .framer-M7NUC .framer-ksk0wy, .framer-M7NUC .framer-157d3jx, .framer-M7NUC .framer-1b6kptg, .framer-M7NUC .framer-1k8hsrg, .framer-M7NUC .framer-ati5ec { background-color: #dbdbdb; border-bottom-left-radius: 3456px; border-bottom-right-radius: 3456px; border-top-left-radius: 3456px; border-top-right-radius: 3456px; flex: none; height: 17px; overflow: hidden; position: relative; width: 340px; will-change: var(--framer-will-change-override, transform); }\",\".framer-M7NUC .framer-9ugcpl { background-color: #052561; border-bottom-left-radius: 45654px; border-bottom-right-radius: 45654px; border-top-left-radius: 45654px; border-top-right-radius: 45654px; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: 334px; }\",\".framer-M7NUC .framer-1g08hf7 { background-color: #052561; border-bottom-left-radius: 45654px; border-bottom-right-radius: 45654px; border-top-left-radius: 45654px; border-top-right-radius: 45654px; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: 330px; }\",\".framer-M7NUC .framer-lup1kc { background-color: #052561; border-bottom-left-radius: 45654px; border-bottom-right-radius: 45654px; border-top-left-radius: 45654px; border-top-right-radius: 45654px; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: 305px; }\",\".framer-M7NUC .framer-1cdamtf { background-color: #052561; border-bottom-left-radius: 45654px; border-bottom-right-radius: 45654px; border-top-left-radius: 45654px; border-top-right-radius: 45654px; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: 246px; }\",\".framer-M7NUC .framer-phdy3z { 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: min-content; z-index: 1; }\",\".framer-M7NUC .framer-s3hi5j { 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; max-width: 450px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-M7NUC .framer-1itkzee { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 427px; }\",\".framer-M7NUC .framer-1c40n8n { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 30px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-M7NUC .framer-1xgbqit { background-color: #052561; border-bottom-left-radius: 45654px; border-bottom-right-radius: 45654px; border-top-left-radius: 45654px; border-top-right-radius: 45654px; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: 277px; }\",\".framer-M7NUC .framer-tnmcou, .framer-M7NUC .framer-l0r6j8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 450px; overflow: hidden; padding: 0px; position: relative; width: 427px; }\",\".framer-M7NUC .framer-d77rck { background-color: #052561; border-bottom-left-radius: 45654px; border-bottom-right-radius: 45654px; border-top-left-radius: 45654px; border-top-right-radius: 45654px; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: 265px; }\",\".framer-M7NUC .framer-sobss3 { 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; max-width: 450px; overflow: hidden; padding: 0px; position: relative; width: 450px; }\",\".framer-M7NUC .framer-f6heq7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 427px; }\",\".framer-M7NUC .framer-155mdut { background-color: #052561; border-bottom-left-radius: 45654px; border-bottom-right-radius: 45654px; border-top-left-radius: 45654px; border-top-right-radius: 45654px; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: 255px; }\",\".framer-M7NUC .framer-bxl5bb { background-color: #052561; border-bottom-left-radius: 45654px; border-bottom-right-radius: 45654px; border-top-left-radius: 45654px; border-top-right-radius: 45654px; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: 239px; }\",\".framer-M7NUC .framer-1icf6x0 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 15px 10px 15px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-M7NUC .framer-130q6pt { background-color: rgba(7, 79, 138, 0.94); bottom: 0px; flex: none; gap: 10px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-M7NUC .framer-1nnb7pq { align-content: center; align-items: center; background-color: #ededed; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 43px; height: min-content; justify-content: center; overflow: hidden; padding: 70px 30px 70px 30px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-wm3j70, .framer-M7NUC .framer-zx30w1 { 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: 650px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-yver8b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 443px; justify-content: center; max-width: 1000px; padding: 0px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-1az557z { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-M7NUC .framer-113ktlz { border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 190px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-1elljlz { align-content: center; align-items: center; background-color: var(--token-e038d88f-0cf0-4216-b933-bfd88f47c06d, #015997); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 28px; justify-content: center; left: 12px; overflow: hidden; padding: 0px; position: absolute; top: 13px; width: 116px; }\",\".framer-M7NUC .framer-1s09y4n { 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: 15px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-1ygalnn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-23hce4 { flex: none; height: 2px; position: relative; width: 312px; }\",\".framer-M7NUC .framer-71ywfl { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-1hco7rg { --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: 126px; word-break: break-word; word-wrap: break-word; }\",\".framer-M7NUC .framer-19otk42-container { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-M7NUC .framer-hmimj { 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: min-content; }\",\".framer-M7NUC .framer-1hv8aks { flex: none; height: 50px; overflow: visible; position: relative; text-decoration: none; width: 50px; }\",\".framer-M7NUC .framer-jmzuvq-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-M7NUC .framer-irbsoy { flex: none; height: 48px; overflow: visible; position: relative; text-decoration: none; width: 48px; }\",\".framer-M7NUC .framer-f9yy1b-container { bottom: -2px; flex: none; position: absolute; right: -1px; top: 0px; width: 50px; }\",\".framer-M7NUC .framer-4x07id { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: center; overflow: hidden; padding: 70px 40px 70px 40px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-9k20ua { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-1pkjdjx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 29px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-1ik1czl { aspect-ratio: 5.149484536082475 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 237px; }\",\".framer-M7NUC .framer-thup6y { aspect-ratio: 5.874269005847953 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 188px; }\",\".framer-M7NUC .framer-cwnywp { aspect-ratio: 7.253968253968254 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 232px; }\",\".framer-M7NUC .framer-1shh18r { aspect-ratio: 2.249647390691114 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 66px); overflow: visible; position: relative; width: 148px; }\",\".framer-M7NUC .framer-1xkstgu { aspect-ratio: 2.2843601895734595 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 66px); overflow: visible; position: relative; width: 151px; }\",\".framer-M7NUC .framer-1ilbhdk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 41px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-ilrkff { aspect-ratio: 2.037837837837838 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; width: 122px; }\",\".framer-M7NUC .framer-1c65v2l { aspect-ratio: 2.771362586605081 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; width: 166px; }\",\".framer-M7NUC .framer-9cfkmc { flex: none; height: 95px; position: relative; width: 166px; }\",\".framer-M7NUC .framer-azf6ml { aspect-ratio: 2.678832116788321 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; width: 161px; }\",\".framer-M7NUC .framer-1tewvff { aspect-ratio: 2.2435897435897436 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; width: 135px; }\",\".framer-M7NUC .framer-kqe2op { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 57px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M7NUC .framer-y1qwo7 { aspect-ratio: 4.9411764705882355 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 198px; }\",\".framer-M7NUC .framer-1xhumez { aspect-ratio: 6.385593220338983 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); overflow: visible; position: relative; width: 179px; }\",\".framer-M7NUC .framer-780cvh { aspect-ratio: 1.6457142857142857 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); overflow: visible; position: relative; width: 86px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-M7NUC[data-border=\"true\"]::after, .framer-M7NUC [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-M7NUC.framer-1lz0mad { width: 810px; } .framer-M7NUC .framer-n1b2eh { height: 82px; } .framer-M7NUC .framer-1j2bqnb { flex-direction: column; gap: 19px; } .framer-M7NUC .framer-3c5hpf, .framer-M7NUC .framer-1fkz3y1 { flex: none; width: 100%; } .framer-M7NUC .framer-fj7ynw, .framer-M7NUC .framer-1s7392o { justify-content: center; } .framer-M7NUC .framer-83umkd { gap: 0px; } .framer-M7NUC .framer-jioerh, .framer-M7NUC .framer-iyg5da, .framer-M7NUC .framer-2znu49, .framer-M7NUC .framer-ek3ojv { padding: 5px; } .framer-M7NUC .framer-1eouvh3 { order: 0; } .framer-M7NUC .framer-12vpwij { flex-direction: column; gap: 10px; order: 1; } .framer-M7NUC .framer-phdy3z { align-content: center; align-items: center; } .framer-M7NUC .framer-1icf6x0 { order: 2; } .framer-M7NUC .framer-1pkjdjx, .framer-M7NUC .framer-1ilbhdk, .framer-M7NUC .framer-kqe2op { flex-wrap: wrap; } .framer-M7NUC .framer-1ik1czl { height: var(--framer-aspect-ratio-supported, 39px); width: 201px; } .framer-M7NUC .framer-thup6y { height: var(--framer-aspect-ratio-supported, 28px); width: 164px; } .framer-M7NUC .framer-cwnywp { height: var(--framer-aspect-ratio-supported, 27px); width: 195px; } .framer-M7NUC .framer-1shh18r { height: var(--framer-aspect-ratio-supported, 55px); width: 123px; } .framer-M7NUC .framer-1xkstgu { height: var(--framer-aspect-ratio-supported, 56px); width: 128px; }}\",\"@media (max-width: 809px) { .framer-M7NUC.framer-1lz0mad { width: 390px; } .framer-M7NUC .framer-1qhlhed { gap: 0px; height: 475px; } .framer-M7NUC .framer-n1b2eh { gap: 0px; height: 71px; } .framer-M7NUC .framer-on6f6y-container { height: 70px; } .framer-M7NUC .framer-v3wr42 { padding: 33px 50px 33px 30px; } .framer-M7NUC .framer-1j2bqnb { flex-direction: column; gap: 19px; } .framer-M7NUC .framer-3c5hpf, .framer-M7NUC .framer-55cn1c, .framer-M7NUC .framer-1fkz3y1, .framer-M7NUC .framer-12rlvqa, .framer-M7NUC .framer-1556ld8, .framer-M7NUC .framer-jioerh, .framer-M7NUC .framer-iyg5da, .framer-M7NUC .framer-2znu49, .framer-M7NUC .framer-ek3ojv { flex: none; width: 100%; } .framer-M7NUC .framer-7jkad3, .framer-M7NUC .framer-5r5710 { flex-direction: column; } .framer-M7NUC .framer-1fvqjj6 { flex-direction: column; justify-content: space-between; } .framer-M7NUC .framer-1h4sswr { flex: none; flex-direction: column; gap: 24px; width: 100%; } .framer-M7NUC .framer-tv8exb { padding: 70px 20px 70px 20px; } .framer-M7NUC .framer-8tburc { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; gap: 26px; padding: 0px; will-change: unset; } .framer-M7NUC .framer-1eouvh3 { order: 0; } .framer-M7NUC .framer-12vpwij { flex-direction: column; gap: 10px; order: 1; } .framer-M7NUC .framer-phdy3z { align-content: center; align-items: center; } .framer-M7NUC .framer-1icf6x0 { order: 2; } .framer-M7NUC .framer-yver8b { flex-direction: column; height: min-content; } .framer-M7NUC .framer-1az557z { flex: none; height: min-content; width: 100%; } .framer-M7NUC .framer-113ktlz { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 160px; justify-content: center; padding: 0px; } .framer-M7NUC .framer-1elljlz { left: unset; position: relative; top: unset; } .framer-M7NUC .framer-1pkjdjx, .framer-M7NUC .framer-1ilbhdk, .framer-M7NUC .framer-kqe2op { flex-wrap: wrap; } .framer-M7NUC .framer-1ik1czl { height: var(--framer-aspect-ratio-supported, 28px); width: 144px; } .framer-M7NUC .framer-thup6y { height: var(--framer-aspect-ratio-supported, 19px); width: 112px; } .framer-M7NUC .framer-cwnywp { height: var(--framer-aspect-ratio-supported, 20px); width: 145px; } .framer-M7NUC .framer-1shh18r { height: var(--framer-aspect-ratio-supported, 43px); width: 97px; } .framer-M7NUC .framer-1xkstgu { height: var(--framer-aspect-ratio-supported, 44px); width: 101px; } .framer-M7NUC .framer-ilrkff { height: var(--framer-aspect-ratio-supported, 47px); width: 96px; } .framer-M7NUC .framer-1c65v2l { height: var(--framer-aspect-ratio-supported, 45px); width: 123px; } .framer-M7NUC .framer-9cfkmc { height: 53px; width: 93px; } .framer-M7NUC .framer-azf6ml { height: var(--framer-aspect-ratio-supported, 47px); width: 126px; } .framer-M7NUC .framer-1tewvff { height: var(--framer-aspect-ratio-supported, 46px); width: 104px; } .framer-M7NUC .framer-y1qwo7 { height: var(--framer-aspect-ratio-supported, 32px); width: 158px; } .framer-M7NUC .framer-1xhumez { height: var(--framer-aspect-ratio-supported, 24px); width: 153px; } .framer-M7NUC .framer-780cvh { height: var(--framer-aspect-ratio-supported, 48px); width: 79px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4684\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"yi8xQ_2Tb\":{\"layout\":[\"fixed\",\"auto\"]},\"i_a7QVvrY\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerhTtcbKAZd=withCSS(Component,css,\"framer-M7NUC\");export default FramerhTtcbKAZd;FramerhTtcbKAZd.displayName=\"Home\";FramerhTtcbKAZd.defaultProps={height:4684,width:1200};addFonts(FramerhTtcbKAZd,[{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:\"Fira Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/52IIN6R3JEJSB45IG7RFUBVJWDYA3I55/BRMRSLAZOTLGR6QBPJIOQIDMAUPTJ2UA/UCTPHJ5G3WFLZTQWAKOCKPRFKL4IR3MG.woff2\",weight:\"600\"},{family:\"Fira Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/L73LLX4MXUIQK452PKOTWP5BWGOH5ZLA/ZY6RUXWZXZFOSODPQHXSWGSDAMXUPWVD/TGKQVOYGQXPA6FMFNCM7EDKIEKBQKBH5.woff2\",weight:\"700\"},{family:\"Fira Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/PXZ43LXUMISRBKI3JAZRXIT3KCAQT5LX/6PGI734U44FDBEH63LXBIZUQX34PL45P/MITUNP2IVULQXBXY4CV6OFWPPCE2UU26.woff2\",weight:\"400\"}]},...NavigationFonts,...SlideshowFonts,...TickerFonts,...FeatherFonts,...MaterialFonts,...FooterGREFFonts,...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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhTtcbKAZd\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yi8xQ_2Tb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i_a7QVvrY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"4684\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"* @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", "isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "sync", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "fontStore", "fonts", "css", "className", "NavigationFonts", "getFonts", "JD1OAzVzJ_default", "SlideshowFonts", "Slideshow", "TickerFonts", "Ticker", "FeatherFonts", "Icon", "MaterialFonts", "FooterGREFFonts", "VRysVpdx4_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "sharedDateFormatter", "formatOptions", "locale", "date", "fallbackLocale", "dateOptions", "toDateString", "activeLocale", "suffix", "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", "fERlHhh_ebSUxLGo0e", "EE9r50lB2bSUxLGo0e", "dv3CcqgcEbSUxLGo0e", "idbSUxLGo0e", "fERlHhh_eVNg54WjnW", "yb2bCpxBzVNg54WjnW", "JoPbmO823VNg54WjnW", "dv3CcqgcEVNg54WjnW", "idVNg54WjnW", "K0DQh1a5XiMjZN3V4r", "NqsULmCINiMjZN3V4r", "QBEpjM_0YiMjZN3V4r", "c9OGUl16uiMjZN3V4r", "lXGvlGgJFiMjZN3V4r", "idiMjZN3V4r", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "activeLocaleCode", "useLocaleCode", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "Image2", "RichText2", "x", "Link", "ChildrenCanSuspend", "il8xku6nz_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "getLoadingLazyAtYPosition", "collection1", "paginationInfo1", "loadMore1", "index1", "SVG", "g6wrqiF1L_default", "collection2", "paginationInfo2", "loadMore2", "index2", "textContent", "textContent1", "css", "FramerhTtcbKAZd", "withCSS", "hTtcbKAZd_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
