{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js", "ssg:https://framerusercontent.com/modules/6zJtrvY7dquexPgUyvSX/jPZXJHKCrDkyhanueSO7/n6IbgOZPm.js", "ssg:https://framerusercontent.com/modules/4b6YE63kYgOv1o055IzN/hREHYTJeVMW6K71AwPqY/A6at7EW9g.js", "ssg:https://framerusercontent.com/modules/ifIVWtCVOqkbaJ15R5kZ/hS79L4WhyzaAjz7Tva0J/AtWnhlR0v.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{startTransition(()=>setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches));},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},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:0,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:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},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:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&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,opacity}})});}function Placeholder(){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 swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};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\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */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\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (d6b3045)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"e_mIXVoPo\",\"TQwjF_IzW\"];const serializationHash=\"framer-oirw5\";const variantClassNames={e_mIXVoPo:\"framer-v-xyudr7\",TQwjF_IzW:\"framer-v-pjtdwq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"e_mIXVoPo\",\"Variant 2\":\"TQwjF_IzW\"};const getProps=({answer,click,click2,height,id,question,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1,_ref2;return{...props,MnRCqcZ92:click!==null&&click!==void 0?click:props.MnRCqcZ92,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"e_mIXVoPo\",VuZm920pl:(_ref1=question!==null&&question!==void 0?question:props.VuZm920pl)!==null&&_ref1!==void 0?_ref1:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",VVMzJCyK2:(_ref2=answer!==null&&answer!==void 0?answer:props.VVMzJCyK2)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",wmV75L4cL:click2!==null&&click2!==void 0?click2:props.wmV75L4cL};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,MnRCqcZ92,wmV75L4cL,VuZm920pl,VVMzJCyK2,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"e_mIXVoPo\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1m4jmmw=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(MnRCqcZ92){const res=await MnRCqcZ92(...args);if(res===false)return false;}setVariant(\"TQwjF_IzW\");});const onTap14ay79h=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(MnRCqcZ92){const res=await MnRCqcZ92(...args);if(res===false)return false;}setVariant(\"e_mIXVoPo\");});const onTapm8q03i=activeVariantCallback(async(...args)=>{if(wmV75L4cL){const res=await wmV75L4cL(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"TQwjF_IzW\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-xyudr7\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"e_mIXVoPo\",onTap:onTap1m4jmmw,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(204, 204, 204, 0.17)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},...addPropertyOverrides({TQwjF_IzW:{\"data-framer-name\":\"Variant 2\",onTap:onTap14ay79h}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q33jhz\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"J2QFlvWX7\",onTap:onTapm8q03i,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-71zpe5\",layoutDependency:layoutDependency,layoutId:\"vCtQOonaK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1k1a0s0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cQUerFvFl\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:VuZm920pl,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14wa4bu\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"jdKf45nqE\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mxertj\",layoutDependency:layoutDependency,layoutId:\"ztbs_b6Ys\",style:{backgroundColor:\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gs0q18\",layoutDependency:layoutDependency,layoutId:\"iVPFAitFu\",style:{backgroundColor:\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-jw6odd\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"eJ1jDSVP3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7a918ac1-4438-475b-9a28-97c08929ca44, rgb(255, 255, 255)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-hwizru\",fonts:[\"Inter-Light\"],layoutDependency:layoutDependency,layoutId:\"fHO5zI1Bs\",style:{\"--extracted-r6o4lv\":\"var(--token-7a918ac1-4438-475b-9a28-97c08929ca44, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:VVMzJCyK2,verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oirw5.framer-9zfgdu, .framer-oirw5 .framer-9zfgdu { display: block; }\",\".framer-oirw5.framer-xyudr7 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 28px 24px 28px 24px; position: relative; width: 900px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oirw5 .framer-q33jhz { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; user-select: none; width: 100%; }\",\".framer-oirw5 .framer-71zpe5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-oirw5 .framer-1k1a0s0 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-oirw5 .framer-14wa4bu { flex: none; height: 16px; overflow: hidden; position: relative; width: 16px; z-index: 1; }\",\".framer-oirw5 .framer-mxertj { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-oirw5 .framer-gs0q18 { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-oirw5 .framer-jw6odd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oirw5 .framer-hwizru { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oirw5.framer-xyudr7, .framer-oirw5 .framer-q33jhz, .framer-oirw5 .framer-71zpe5, .framer-oirw5 .framer-jw6odd { gap: 0px; } .framer-oirw5.framer-xyudr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-oirw5.framer-xyudr7 > :first-child, .framer-oirw5 .framer-jw6odd > :first-child { margin-top: 0px; } .framer-oirw5.framer-xyudr7 > :last-child, .framer-oirw5 .framer-jw6odd > :last-child { margin-bottom: 0px; } .framer-oirw5 .framer-q33jhz > *, .framer-oirw5 .framer-71zpe5 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-oirw5 .framer-q33jhz > :first-child, .framer-oirw5 .framer-71zpe5 > :first-child { margin-left: 0px; } .framer-oirw5 .framer-q33jhz > :last-child, .framer-oirw5 .framer-71zpe5 > :last-child { margin-right: 0px; } .framer-oirw5 .framer-jw6odd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-oirw5.framer-v-pjtdwq.framer-xyudr7 { gap: 4px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oirw5.framer-v-pjtdwq.framer-xyudr7 { gap: 0px; } .framer-oirw5.framer-v-pjtdwq.framer-xyudr7 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-oirw5.framer-v-pjtdwq.framer-xyudr7 > :first-child { margin-top: 0px; } .framer-oirw5.framer-v-pjtdwq.framer-xyudr7 > :last-child { margin-bottom: 0px; } }\",'.framer-oirw5[data-border=\"true\"]::after, .framer-oirw5 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 81\n * @framerIntrinsicWidth 900\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TQwjF_IzW\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"MnRCqcZ92\":\"click\",\"wmV75L4cL\":\"click2\",\"VuZm920pl\":\"question\",\"VVMzJCyK2\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framern6IbgOZPm=withCSS(Component,css,\"framer-oirw5\");export default Framern6IbgOZPm;Framern6IbgOZPm.displayName=\"executive/faqs\";Framern6IbgOZPm.defaultProps={height:81,width:900};addPropertyControls(Framern6IbgOZPm,{variant:{options:[\"e_mIXVoPo\",\"TQwjF_IzW\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},MnRCqcZ92:{title:\"Click\",type:ControlType.EventHandler},wmV75L4cL:{title:\"Click 2\",type:ControlType.EventHandler},VuZm920pl:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",description:\"\",displayTextArea:true,title:\"question\",type:ControlType.String},VVMzJCyK2:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"answer\",type:ControlType.String}});addFonts(Framern6IbgOZPm,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{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/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{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/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{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/v2q8JTTTs7McDMSEhnxAIBqd0.woff2\",weight:\"300\"},{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/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framern6IbgOZPm\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"900\",\"framerIntrinsicHeight\":\"81\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"MnRCqcZ92\\\":\\\"click\\\",\\\"wmV75L4cL\\\":\\\"click2\\\",\\\"VuZm920pl\\\":\\\"question\\\",\\\"VVMzJCyK2\\\":\\\"answer\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TQwjF_IzW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./n6IbgOZPm.map", "// Generated by Framer (c90df04)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ExecutiveFaqs from\"https://framerusercontent.com/modules/6zJtrvY7dquexPgUyvSX/jPZXJHKCrDkyhanueSO7/n6IbgOZPm.js\";const ExecutiveFaqsFonts=getFonts(ExecutiveFaqs);const serializationHash=\"framer-Vut4J\";const variantClassNames={qAQXhga1S:\"framer-v-1k07s3h\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({click,click10,click11,click12,click13,click14,click15,click16,click2,click3,click4,click5,click6,click7,click8,click9,height,id,width,...props})=>{return{...props,cjhPZZtUI:click9!==null&&click9!==void 0?click9:props.cjhPZZtUI,D2zr_dg18:click5!==null&&click5!==void 0?click5:props.D2zr_dg18,DMtBmpADS:click6!==null&&click6!==void 0?click6:props.DMtBmpADS,Fv81DJh1J:click2!==null&&click2!==void 0?click2:props.Fv81DJh1J,KRRggdJr_:click12!==null&&click12!==void 0?click12:props.KRRggdJr_,mQKIQ4xCR:click7!==null&&click7!==void 0?click7:props.mQKIQ4xCR,MZtu1_ZCt:click13!==null&&click13!==void 0?click13:props.MZtu1_ZCt,NdLzgUkY1:click!==null&&click!==void 0?click:props.NdLzgUkY1,PbPt7CFT4:click14!==null&&click14!==void 0?click14:props.PbPt7CFT4,pUb_jayzK:click4!==null&&click4!==void 0?click4:props.pUb_jayzK,QZOOD6OUJ:click10!==null&&click10!==void 0?click10:props.QZOOD6OUJ,rQGYUH8SI:click16!==null&&click16!==void 0?click16:props.rQGYUH8SI,SnzBzZbZu:click8!==null&&click8!==void 0?click8:props.SnzBzZbZu,SXP0NH87p:click3!==null&&click3!==void 0?click3:props.SXP0NH87p,t2rrS0mbo:click15!==null&&click15!==void 0?click15:props.t2rrS0mbo,ydsER1zc2:click11!==null&&click11!==void 0?click11:props.ydsER1zc2};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,NdLzgUkY1,Fv81DJh1J,SXP0NH87p,pUb_jayzK,D2zr_dg18,DMtBmpADS,mQKIQ4xCR,SnzBzZbZu,cjhPZZtUI,QZOOD6OUJ,ydsER1zc2,KRRggdJr_,MZtu1_ZCt,PbPt7CFT4,t2rrS0mbo,rQGYUH8SI,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"qAQXhga1S\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const MnRCqcZ92s7o01l=activeVariantCallback(async(...args)=>{if(NdLzgUkY1){const res=await NdLzgUkY1(...args);if(res===false)return false;}});const wmV75L4cLh97v52=activeVariantCallback(async(...args)=>{if(Fv81DJh1J){const res=await Fv81DJh1J(...args);if(res===false)return false;}});const MnRCqcZ921ub1xff=activeVariantCallback(async(...args)=>{if(SXP0NH87p){const res=await SXP0NH87p(...args);if(res===false)return false;}});const wmV75L4cL72ge7v=activeVariantCallback(async(...args)=>{if(pUb_jayzK){const res=await pUb_jayzK(...args);if(res===false)return false;}});const MnRCqcZ921aiwekw=activeVariantCallback(async(...args)=>{if(D2zr_dg18){const res=await D2zr_dg18(...args);if(res===false)return false;}});const wmV75L4cL1kpvv7g=activeVariantCallback(async(...args)=>{if(DMtBmpADS){const res=await DMtBmpADS(...args);if(res===false)return false;}});const MnRCqcZ921rj21zw=activeVariantCallback(async(...args)=>{if(mQKIQ4xCR){const res=await mQKIQ4xCR(...args);if(res===false)return false;}});const wmV75L4cL19rczvy=activeVariantCallback(async(...args)=>{if(SnzBzZbZu){const res=await SnzBzZbZu(...args);if(res===false)return false;}});const MnRCqcZ9217cnzmx=activeVariantCallback(async(...args)=>{if(cjhPZZtUI){const res=await cjhPZZtUI(...args);if(res===false)return false;}});const wmV75L4cL1pn4qvb=activeVariantCallback(async(...args)=>{if(QZOOD6OUJ){const res=await QZOOD6OUJ(...args);if(res===false)return false;}});const MnRCqcZ921vi732u=activeVariantCallback(async(...args)=>{if(ydsER1zc2){const res=await ydsER1zc2(...args);if(res===false)return false;}});const wmV75L4cLr3m3w3=activeVariantCallback(async(...args)=>{if(KRRggdJr_){const res=await KRRggdJr_(...args);if(res===false)return false;}});const MnRCqcZ92wwlcjd=activeVariantCallback(async(...args)=>{if(MZtu1_ZCt){const res=await MZtu1_ZCt(...args);if(res===false)return false;}});const wmV75L4cLk6ckte=activeVariantCallback(async(...args)=>{if(PbPt7CFT4){const res=await PbPt7CFT4(...args);if(res===false)return false;}});const MnRCqcZ92ktiml=activeVariantCallback(async(...args)=>{if(t2rrS0mbo){const res=await t2rrS0mbo(...args);if(res===false)return false;}});const wmV75L4cL1pq1mnz=activeVariantCallback(async(...args)=>{if(rQGYUH8SI){const res=await rQGYUH8SI(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1k07s3h\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"qAQXhga1S\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:81,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||745)-0-718)/2+0+0),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-u369mz-container\",layoutDependency:layoutDependency,layoutId:\"kSsRwbYYr-container\",children:/*#__PURE__*/_jsx(ExecutiveFaqs,{height:\"100%\",id:\"kSsRwbYYr\",layoutId:\"kSsRwbYYr\",MnRCqcZ92:MnRCqcZ92s7o01l,style:{width:\"100%\"},variant:\"e_mIXVoPo\",VuZm920pl:\"\\xbfQu\\xe9 es thePower?\",VVMzJCyK2:\"thePower es la escuela global que ha puesto en jaque el modelo de educaci\\xf3n tradicional. Hay cientos de escuelas que ofrecen programas que te requieren un esfuerzo enorme, est\\xe1n desactualizados, son muy locales y poco flexibles. El objetivo de thePower es crear de cada \\xe1rea (Digital Marketing, Data, Coding\u2026) un programa mejor, m\\xe1s innovador, disruptivo e internacional. Para que puedas cambiar tu vida con un menor riesgo. thePower desaf\\xeda el status quo con un m\\xe9todo totalmente disruptivo que combina la mayor calidad de contenido educativo, con lo mejor de la formaci\\xf3n presencial, con una incre\\xedble comunidad de m\\xe1s de 120.000 alumnos y m\\xe1s de 400 eventos de networking anuales y con lo mejor de la formaci\\xf3n online, con clases de 15 minutos que puedes ver d\\xf3nde y cu\\xe1ndo quieras. Nuestra formaci\\xf3n se adapta a la vida de las personas y no al rev\\xe9s. Adem\\xe1s, todo el aprendizaje est\\xe1 enfocado a que te conviertas en todo un experto en la materia que elijas, pues est\\xe1 formado por contenidos absolutamente actualizados y de la mano de los mayores referentes de las empresas que est\\xe1n cambiando el mundo (Spotify, Amazon, LinkedIn\u2026), para que puedas aplicar desde el primer d\\xeda los conocimientos que vas adquiriendo.\",width:\"100%\",wmV75L4cL:wmV75L4cLh97v52})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:81,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||745)-0-718)/2+81+10),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bra4i3-container\",layoutDependency:layoutDependency,layoutId:\"kAFGhLikB-container\",children:/*#__PURE__*/_jsx(ExecutiveFaqs,{height:\"100%\",id:\"kAFGhLikB\",layoutId:\"kAFGhLikB\",MnRCqcZ92:MnRCqcZ921ub1xff,style:{width:\"100%\"},variant:\"e_mIXVoPo\",VuZm920pl:\"\\xbfQui\\xe9n est\\xe1 detr\\xe1s de thePower?\",VVMzJCyK2:\"thePower es la \\xfanica escuela que est\\xe1 apoyada por los fundadores de Netflix, Shazam y YouTube.  En 2017, thePower revolucion\\xf3 la educaci\\xf3n creando los mejores programas online del mundo. Gracias a ello, figuras de \\xe9xito internacional como el fundador de Netflix, Shazam, Tesla\u2026 quisieron participar en esta revoluci\\xf3n como profesores, inversores, speakers.  Adem\\xe1s, somos los emprendedores y directivos que han fundado, dirigido y vendido las compa\\xf1\\xedas que est\\xe1n cambiando el mundo.\\nTambi\\xe9n contamos con la colaboraci\\xf3n de profesores provenientes de las mejores escuelas que existen.   Algunas de las figuras de \\xe9xito con las que te vas a encontrar dentro de nuestros m\\xe1sters son: Marc Randolph (Co-fundador de Netflix), Uri Levine (fundador de Waze), Chris Barton (fundador de Shazam), Randi Zuckerberg (CEO y fundadora de Zuckerberg Media) y Daniel Lamarre (CEO del Cirque du Soleil). Adem\\xe1s, contamos con los mayores referentes del sector a nivel nacional, como por ejemplo Sarah Harmon (Ex-country manager de LinkedIn), Felix Ruiz (co-fundador de Tuenti), Daniela Goicoechea (Ex-CMO de Goiko) y Javier Pag\\xe1n (Head of Sales en Twitter).\",width:\"100%\",wmV75L4cL:wmV75L4cL72ge7v})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:81,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||745)-0-718)/2+162+20),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bn2i3g-container\",layoutDependency:layoutDependency,layoutId:\"oh8VfV1v0-container\",children:/*#__PURE__*/_jsx(ExecutiveFaqs,{height:\"100%\",id:\"oh8VfV1v0\",layoutId:\"oh8VfV1v0\",MnRCqcZ92:MnRCqcZ921aiwekw,style:{width:\"100%\"},variant:\"e_mIXVoPo\",VuZm920pl:\"\\xbfCu\\xe1l es nuestra misi\\xf3n?\",VVMzJCyK2:\"Nuestra misi\\xf3n es democratizar el sector de la educaci\\xf3n a nivel global, consiguiendo que todos nuestros alumnos consigan la carrera profesional que se propongan.  Queremos que los mejores conocimientos y la experiencia de los mayores referentes del mundo est\\xe9n a disposici\\xf3n de todo aquel que tenga inquietud, ambici\\xf3n y ganas de aprender.       \\xbfY la visi\\xf3n? Convertirnos en la escuela de referencia en negocio, tech y competencias digitales y  formar a los profesionales del futuro.\",width:\"100%\",wmV75L4cL:wmV75L4cL1kpvv7g})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:81,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||745)-0-718)/2+243+30),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vok1r-container\",layoutDependency:layoutDependency,layoutId:\"MJLp6hxxC-container\",children:/*#__PURE__*/_jsx(ExecutiveFaqs,{height:\"100%\",id:\"MJLp6hxxC\",layoutId:\"MJLp6hxxC\",MnRCqcZ92:MnRCqcZ921rj21zw,style:{width:\"100%\"},variant:\"e_mIXVoPo\",VuZm920pl:\"\\xbfCu\\xe1nto dura cada programa executive?\",VVMzJCyK2:\"Nuestros programas executive duran 20 semanas para ser exactos. Cada programa cuenta con una sesi\\xf3n semanal (martes, mi\\xe9rcoles o jueves dependiendo del programa) en un horario de 18:30 a 20:30. Nuestra primera convocatoria empieza la tercera semana de febrero de 2025 (martes 25/02/25, mi\\xe9rcoles 26/02/25 o jueves 27/02/25).\",width:\"100%\",wmV75L4cL:wmV75L4cL19rczvy})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:81,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||745)-0-718)/2+324+40),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-f3gvgt-container\",layoutDependency:layoutDependency,layoutId:\"iqTZ0wIZI-container\",children:/*#__PURE__*/_jsx(ExecutiveFaqs,{height:\"100%\",id:\"iqTZ0wIZI\",layoutId:\"iqTZ0wIZI\",MnRCqcZ92:MnRCqcZ9217cnzmx,style:{width:\"100%\"},variant:\"e_mIXVoPo\",VuZm920pl:\"\\xbfCu\\xe1l es el horario de cada programa executive? \\n\",VVMzJCyK2:\"Todas las sesiones ser\\xe1n online pero en directo. El horario de las clases son los martes, mi\\xe9rcoles o jueves de 18:30 a 20:30. Podr\\xe1s conocer el d\\xeda y el calendario exacto de sesiones en la p\\xe1gina web de tu programa executive. \",width:\"100%\",wmV75L4cL:wmV75L4cL1pn4qvb})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:81,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||745)-0-718)/2+405+50),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12bac6n-container\",layoutDependency:layoutDependency,layoutId:\"EB6py8DHG-container\",children:/*#__PURE__*/_jsx(ExecutiveFaqs,{height:\"100%\",id:\"EB6py8DHG\",layoutId:\"EB6py8DHG\",MnRCqcZ92:MnRCqcZ921vi732u,style:{width:\"100%\"},variant:\"e_mIXVoPo\",VuZm920pl:\"\\xbfA qui\\xe9n est\\xe1n dirigidos nuestros programas executive? \\xbfHay alg\\xfan requisito o hacen falta conocimientos previos?\\n\",VVMzJCyK2:\"Nuestros programas executive est\\xe1n dise\\xf1ados para ejecutivos y directivos, aunque cada programa tiene un listado de perfiles recomendados. Los \\xfanicos requisitos formales son contar con al menos 3 a\\xf1os de experiencia laboral en alg\\xfan sector relacionado y alguna de estas titulaciones: grado medio, grado superior, grado universitario, licenciatura o diplomatura.\",width:\"100%\",wmV75L4cL:wmV75L4cLr3m3w3})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:81,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||745)-0-718)/2+486+60),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1orzz5w-container\",layoutDependency:layoutDependency,layoutId:\"Vk741wN_R-container\",children:/*#__PURE__*/_jsx(ExecutiveFaqs,{height:\"100%\",id:\"Vk741wN_R\",layoutId:\"Vk741wN_R\",MnRCqcZ92:MnRCqcZ92wwlcjd,style:{width:\"100%\"},variant:\"e_mIXVoPo\",VuZm920pl:\"\\xbfCu\\xe1l es la metodolog\\xeda de los programas executive?\\n\",VVMzJCyK2:\"Cada programa executive cuenta con un m\\xednimo de 40 horas de formaci\\xf3n. Todos nuestros programas siguen una metodolog\\xeda skills-based para que las sesiones online sean interactivas y relevantes.  \",width:\"100%\",wmV75L4cL:wmV75L4cLk6ckte})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:81,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||745)-0-718)/2+567+70),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17thn9l-container\",layoutDependency:layoutDependency,layoutId:\"LUZSXVB5B-container\",children:/*#__PURE__*/_jsx(ExecutiveFaqs,{height:\"100%\",id:\"LUZSXVB5B\",layoutId:\"LUZSXVB5B\",MnRCqcZ92:MnRCqcZ92ktiml,style:{width:\"100%\"},variant:\"e_mIXVoPo\",VuZm920pl:\"\\xbfVoy a recibir una certificaci\\xf3n/diploma al finalizar?\\n\",VVMzJCyK2:\"Por supuesto, recibir\\xe1s un t\\xedtulo propio de thePower al completar y aprobar el programa.\",width:\"100%\",wmV75L4cL:wmV75L4cL1pq1mnz})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Vut4J.framer-r9f4oe, .framer-Vut4J .framer-r9f4oe { display: block; }\",\".framer-Vut4J.framer-1k07s3h { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 900px; overflow: hidden; padding: 0px; position: relative; width: 900px; }\",\".framer-Vut4J .framer-u369mz-container, .framer-Vut4J .framer-bra4i3-container, .framer-Vut4J .framer-1bn2i3g-container, .framer-Vut4J .framer-1vok1r-container, .framer-Vut4J .framer-f3gvgt-container, .framer-Vut4J .framer-12bac6n-container, .framer-Vut4J .framer-1orzz5w-container, .framer-Vut4J .framer-17thn9l-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Vut4J.framer-1k07s3h { gap: 0px; } .framer-Vut4J.framer-1k07s3h > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Vut4J.framer-1k07s3h > :first-child { margin-top: 0px; } .framer-Vut4J.framer-1k07s3h > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 745\n * @framerIntrinsicWidth 900\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"900px\",null,null]}}}\n * @framerVariables {\"NdLzgUkY1\":\"click\",\"Fv81DJh1J\":\"click2\",\"SXP0NH87p\":\"click3\",\"pUb_jayzK\":\"click4\",\"D2zr_dg18\":\"click5\",\"DMtBmpADS\":\"click6\",\"mQKIQ4xCR\":\"click7\",\"SnzBzZbZu\":\"click8\",\"cjhPZZtUI\":\"click9\",\"QZOOD6OUJ\":\"click10\",\"ydsER1zc2\":\"click11\",\"KRRggdJr_\":\"click12\",\"MZtu1_ZCt\":\"click13\",\"PbPt7CFT4\":\"click14\",\"t2rrS0mbo\":\"click15\",\"rQGYUH8SI\":\"click16\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerA6at7EW9g=withCSS(Component,css,\"framer-Vut4J\");export default FramerA6at7EW9g;FramerA6at7EW9g.displayName=\"faqs-group\";FramerA6at7EW9g.defaultProps={height:745,width:900};addPropertyControls(FramerA6at7EW9g,{NdLzgUkY1:{title:\"Click\",type:ControlType.EventHandler},Fv81DJh1J:{title:\"Click 2\",type:ControlType.EventHandler},SXP0NH87p:{title:\"Click 3\",type:ControlType.EventHandler},pUb_jayzK:{title:\"Click 4\",type:ControlType.EventHandler},D2zr_dg18:{title:\"Click 5\",type:ControlType.EventHandler},DMtBmpADS:{title:\"Click 6\",type:ControlType.EventHandler},mQKIQ4xCR:{title:\"Click 7\",type:ControlType.EventHandler},SnzBzZbZu:{title:\"Click 8\",type:ControlType.EventHandler},cjhPZZtUI:{title:\"Click 9\",type:ControlType.EventHandler},QZOOD6OUJ:{title:\"Click 10\",type:ControlType.EventHandler},ydsER1zc2:{title:\"Click 11\",type:ControlType.EventHandler},KRRggdJr_:{title:\"Click 12\",type:ControlType.EventHandler},MZtu1_ZCt:{title:\"Click 13\",type:ControlType.EventHandler},PbPt7CFT4:{title:\"Click 14\",type:ControlType.EventHandler},t2rrS0mbo:{title:\"Click 15\",type:ControlType.EventHandler},rQGYUH8SI:{title:\"Click 16\",type:ControlType.EventHandler}});addFonts(FramerA6at7EW9g,[{explicitInter:true,fonts:[]},...ExecutiveFaqsFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerA6at7EW9g\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"900\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"900px\\\",null,null]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"NdLzgUkY1\\\":\\\"click\\\",\\\"Fv81DJh1J\\\":\\\"click2\\\",\\\"SXP0NH87p\\\":\\\"click3\\\",\\\"pUb_jayzK\\\":\\\"click4\\\",\\\"D2zr_dg18\\\":\\\"click5\\\",\\\"DMtBmpADS\\\":\\\"click6\\\",\\\"mQKIQ4xCR\\\":\\\"click7\\\",\\\"SnzBzZbZu\\\":\\\"click8\\\",\\\"cjhPZZtUI\\\":\\\"click9\\\",\\\"QZOOD6OUJ\\\":\\\"click10\\\",\\\"ydsER1zc2\\\":\\\"click11\\\",\\\"KRRggdJr_\\\":\\\"click12\\\",\\\"MZtu1_ZCt\\\":\\\"click13\\\",\\\"PbPt7CFT4\\\":\\\"click14\\\",\\\"t2rrS0mbo\\\":\\\"click15\\\",\\\"rQGYUH8SI\\\":\\\"click16\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"745\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./A6at7EW9g.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/mtwyFTnSXUKuNFwbfU2B/mUrWraU1lFnoouolgpsG/rf3eSxga7.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"R9wsnVgjB\",\"aZT99I1GZ\",\"qTmqok8vu\",\"g1yctgig1\",\"xvUDOUJOk\",\"jxLRo5esS\"];const serializationHash=\"framer-fJUMn\";const variantClassNames={aZT99I1GZ:\"framer-v-19hrze8\",g1yctgig1:\"framer-v-1s1y6n4\",jxLRo5esS:\"framer-v-iu410o\",qTmqok8vu:\"framer-v-1h28nvq\",R9wsnVgjB:\"framer-v-v34kdz\",xvUDOUJOk:\"framer-v-1yp30bk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"desktop closed header\":\"g1yctgig1\",\"desktop closed\":\"aZT99I1GZ\",\"desktop open\":\"qTmqok8vu\",\"mobile closed \":\"jxLRo5esS\",\"mobile OPEN\":\"xvUDOUJOk\",\"Variant 1\":\"R9wsnVgjB\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"R9wsnVgjB\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"R9wsnVgjB\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseLeave1ltgmol=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"aZT99I1GZ\");});const onMouseEnter1vgbyfj=activeVariantCallback(async(...args)=>{setVariant(\"qTmqok8vu\");});const onTap2hoj4l=activeVariantCallback(async(...args)=>{setVariant(\"RHPKqRTAt\");});const onTap3c2dhm=activeVariantCallback(async(...args)=>{setVariant(\"xvUDOUJOk\");});const onTap1p44zsa=activeVariantCallback(async(...args)=>{setVariant(\"jxLRo5esS\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"xvUDOUJOk\",\"jxLRo5esS\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"jxLRo5esS\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"xvUDOUJOk\")return true;return false;};const isDisplayed3=()=>{if([\"qTmqok8vu\",\"xvUDOUJOk\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-v34kdz\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"R9wsnVgjB\",ref:refBinding,style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,opacity:1,...style},variants:{jxLRo5esS:{borderBottomLeftRadius:0,borderBottomRightRadius:0,opacity:.95},xvUDOUJOk:{borderBottomLeftRadius:20,borderBottomRightRadius:20}},...addPropertyOverrides({aZT99I1GZ:{\"data-framer-name\":\"desktop closed\"},g1yctgig1:{\"data-framer-name\":\"desktop closed header\"},jxLRo5esS:{\"data-framer-name\":\"mobile closed \"},qTmqok8vu:{\"data-framer-name\":\"desktop open\",\"data-highlight\":true,onMouseLeave:onMouseLeave1ltgmol},xvUDOUJOk:{\"data-framer-name\":\"mobile OPEN\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rsftwx\",layoutDependency:layoutDependency,layoutId:\"T_9drNT1M\",style:{backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",WebkitBackdropFilter:\"none\"},variants:{aZT99I1GZ:{backgroundColor:\"rgb(2, 3, 2)\"},g1yctgig1:{backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",WebkitBackdropFilter:\"none\"},jxLRo5esS:{backdropFilter:\"none\",backgroundColor:\"rgb(2, 3, 2)\",WebkitBackdropFilter:\"none\"},qTmqok8vu:{backdropFilter:\"blur(8px)\",backgroundColor:\"rgba(2, 3, 2, 0.95)\",WebkitBackdropFilter:\"blur(8px)\"},xvUDOUJOk:{backdropFilter:\"none\",backgroundColor:\"rgb(2, 3, 2)\",WebkitBackdropFilter:\"none\"}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a5jkb7\",layoutDependency:layoutDependency,layoutId:\"K5oBXJdAf\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Z3wecdfYe\"},motionChild:true,nodeId:\"XtZsSTm__\",scopeId:\"AtWnhlR0v\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1kb6at5 framer-1q18jxe\",\"data-framer-name\":\"Group 1000006245\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:172,layoutDependency:layoutDependency,layoutId:\"XtZsSTm__\",svg:'<svg width=\"172\" height=\"36\" viewBox=\"0 0 172 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_d_19_7)\">\\n<path d=\"M22.68 19.5173H19.7095L26.9107 11.9772L19.7095 4.41626H22.6367L28.4268 10.4106L34.1959 4.41626H37.1021L29.9219 11.9772L37.1021 19.5173H34.1106L28.4268 13.5659L22.6787 19.5173H22.68Z\" fill=\"white\"/>\\n</g>\\n<g clip-path=\"url(#clip0_19_7)\">\\n<g filter=\"url(#filter1_d_19_7)\">\\n<path d=\"M22.6854 19.4029H19.7705L26.8368 11.8751L19.7705 4.3252H22.6429L28.3245 10.3098L33.9867 4.3252H36.8385L29.7928 11.8738L36.8385 19.4016H33.903L28.3257 13.4599L22.6854 19.4016V19.4029Z\" fill=\"white\"/>\\n</g>\\n</g>\\n<g filter=\"url(#filter2_d_19_7)\">\\n<path d=\"M22.68 19.5173H19.7095L26.9107 11.9772L19.7095 4.41626H22.6367L28.4268 10.4106L34.1959 4.41626H37.1021L29.9219 11.9772L37.1021 19.5173H34.1106L28.4268 13.5659L22.6787 19.5173H22.68Z\" fill=\"white\"/>\\n</g>\\n<g clip-path=\"url(#clip1_19_7)\">\\n<g filter=\"url(#filter3_d_19_7)\">\\n<path d=\"M22.6854 19.4029H19.7705L26.8368 11.8751L19.7705 4.3252H22.6429L28.3245 10.3098L33.9867 4.3252H36.8385L29.7928 11.8738L36.8385 19.4016H33.903L28.3257 13.4599L22.6854 19.4016V19.4029Z\" fill=\"white\"/>\\n</g>\\n</g>\\n<path d=\"M1.95946 6.36767V10.7039H11.2145V12.6191H1.95946V17.5018H14.082V19.4171H0V4.45239H14.1051V6.36767H1.95946Z\" fill=\"white\"/>\\n<path d=\"M44.8657 6.36767V10.7039H54.1207V12.6191H44.8657V17.5018H56.9883V19.4171H42.9062V4.45239H57.0113V6.36767H44.8683H44.8657Z\" fill=\"white\"/>\\n<path d=\"M69.2999 4.43091C71.4922 4.43091 74.2344 4.8727 75.7923 6.22106C75.9816 6.3896 76.1095 6.51473 76.1939 6.64242C76.2988 6.76755 76.4036 6.91566 76.5315 7.12762L76.5955 7.21189L76.6364 7.27574L75.1809 8.66495L75.0965 8.45555C74.2753 6.77266 71.4922 6.33087 69.2999 6.33087C64.2836 6.33087 62.7002 8.20273 62.7002 11.9286C62.7002 15.6544 64.2811 17.5059 69.2999 17.5059C71.4922 17.5059 74.2753 17.0641 75.0965 15.3812L75.1809 15.1922L76.6364 16.561L76.5955 16.6453L76.5315 16.7296C76.4062 16.939 76.2988 17.0666 76.1939 17.1918C76.1095 17.3399 75.9841 17.4446 75.7923 17.6131C74.2319 18.9589 71.4922 19.4033 69.2999 19.4033C62.933 19.4033 60.7407 16.4155 60.7407 11.9311C60.7407 7.44684 62.933 4.43091 69.2999 4.43091Z\" fill=\"white\"/>\\n<path d=\"M118.297 6.34619H111.656V19.4161H109.697L109.717 6.34619H103.077V4.43091H118.297V6.34619Z\" fill=\"white\"/>\\n<path d=\"M124.347 19.4161V4.43091H126.306V19.4161H124.347Z\" fill=\"white\"/>\\n<path d=\"M142.478 19.5642L141.086 19.5233L132.358 4.43091H134.635L141.782 16.87L148.802 4.43091H150.973L142.478 19.5642Z\" fill=\"white\"/>\\n<path d=\"M159.008 6.36767V10.7039H168.263V12.6191H159.008V17.5018H171.131V19.4171H157.049V4.45239H171.154V6.36767H159.011H159.008Z\" fill=\"white\"/>\\n<path d=\"M91.2404 4.27368V5.88252H95.0417V10.4102C95.0417 12.157 94.8089 15.2291 93.2715 16.4932C92.2816 17.2925 91.2686 17.5657 89.8565 17.5657C88.4445 17.5657 87.3906 17.2925 86.4415 16.5136C84.8811 15.2291 84.6714 12.1774 84.6714 10.4102V4.43201H82.7119V10.4102C82.7119 14.0723 83.3642 19.4172 89.8386 19.4172C96.313 19.4172 97.0063 14.0723 97.0063 10.4102V4.27368H91.243H91.2404Z\" fill=\"white\"/>\\n<path d=\"M170.092 28.2059C170.248 27.859 170.486 27.5902 170.806 27.3997C171.133 27.2093 171.531 27.114 172 27.114V27.859H171.806C171.289 27.859 170.874 27.9984 170.561 28.2773C170.248 28.5563 170.092 29.0223 170.092 29.6754V32.7878H169.377V27.2161H170.092V28.2059Z\" fill=\"#7AF6C0\"/>\\n<path d=\"M168.071 29.7146C168.071 29.9595 168.064 30.1466 168.05 30.2758H163.428C163.448 30.6976 163.55 31.0582 163.734 31.3575C163.917 31.6569 164.159 31.8848 164.458 32.0413C164.758 32.1909 165.084 32.2658 165.438 32.2658C165.901 32.2658 166.288 32.1535 166.601 31.929C166.921 31.7045 167.132 31.4018 167.234 31.0208H167.989C167.853 31.565 167.561 32.0106 167.112 32.3576C166.669 32.6978 166.111 32.8678 165.438 32.8678C164.914 32.8678 164.445 32.7522 164.03 32.5209C163.615 32.2828 163.288 31.9494 163.05 31.5208C162.819 31.0854 162.703 30.5786 162.703 30.0003C162.703 29.4221 162.819 28.9152 163.05 28.4798C163.281 28.0444 163.605 27.7111 164.02 27.4798C164.435 27.2485 164.907 27.1328 165.438 27.1328C165.969 27.1328 166.431 27.2485 166.826 27.4798C167.227 27.7111 167.533 28.024 167.744 28.4186C167.962 28.8064 168.071 29.2384 168.071 29.7146ZM167.346 29.6942C167.353 29.2792 167.268 28.9254 167.091 28.6329C166.921 28.3404 166.686 28.1193 166.387 27.9696C166.088 27.8199 165.761 27.7451 165.407 27.7451C164.877 27.7451 164.424 27.9152 164.05 28.2553C163.676 28.5955 163.468 29.0751 163.428 29.6942H167.346Z\" fill=\"#7AF6C0\"/>\\n<path d=\"M162.056 27.2156L160.311 32.7873H159.597L158.056 28.1136L156.515 32.7873H155.79L154.045 27.2156H154.77L156.158 32.0628L157.719 27.2156H158.433L159.974 32.073L161.352 27.2156H162.056Z\" fill=\"#7AF6C0\"/>\\n<path d=\"M150.6 32.8678C150.076 32.8678 149.603 32.7522 149.181 32.5209C148.766 32.2828 148.437 31.9494 148.192 31.5208C147.954 31.0854 147.834 30.5786 147.834 30.0003C147.834 29.4221 147.957 28.9186 148.202 28.49C148.447 28.0546 148.78 27.7213 149.202 27.49C149.624 27.2519 150.097 27.1328 150.62 27.1328C151.144 27.1328 151.617 27.2519 152.039 27.49C152.467 27.7213 152.801 28.0546 153.039 28.49C153.284 28.9186 153.406 29.4221 153.406 30.0003C153.406 30.5718 153.284 31.0752 153.039 31.5106C152.794 31.946 152.457 32.2828 152.029 32.5209C151.6 32.7522 151.124 32.8678 150.6 32.8678ZM150.6 32.2453C150.967 32.2453 151.307 32.1637 151.62 32.0004C151.933 31.8304 152.185 31.5786 152.376 31.2453C152.573 30.9051 152.671 30.4901 152.671 30.0003C152.671 29.5105 152.576 29.0989 152.386 28.7656C152.195 28.4254 151.944 28.1737 151.631 28.0104C151.318 27.8403 150.978 27.7553 150.61 27.7553C150.243 27.7553 149.903 27.8403 149.59 28.0104C149.277 28.1737 149.025 28.4254 148.835 28.7656C148.651 29.0989 148.559 29.5105 148.559 30.0003C148.559 30.4901 148.651 30.9051 148.835 31.2453C149.025 31.5786 149.273 31.8304 149.579 32.0004C149.892 32.1637 150.233 32.2453 150.6 32.2453Z\" fill=\"#7AF6C0\"/>\\n<path d=\"M146.962 27.7047C146.962 28.317 146.762 28.8102 146.36 29.1844C145.959 29.5585 145.357 29.7456 144.554 29.7456H143.115V32.7866H142.401V25.6536H144.554C145.35 25.6536 145.949 25.8406 146.35 26.2148C146.758 26.589 146.962 27.0856 146.962 27.7047ZM144.554 29.1334C145.67 29.1334 146.228 28.6571 146.228 27.7047C146.228 27.2285 146.095 26.8679 145.83 26.623C145.564 26.3781 145.139 26.2556 144.554 26.2556H143.115V29.1334H144.554Z\" fill=\"#7AF6C0\"/>\\n<path d=\"M141.094 29.7146C141.094 29.9595 141.087 30.1466 141.074 30.2758H136.451C136.472 30.6976 136.574 31.0582 136.757 31.3575C136.941 31.6569 137.182 31.8848 137.482 32.0413C137.781 32.1909 138.108 32.2658 138.461 32.2658C138.924 32.2658 139.312 32.1535 139.625 31.929C139.944 31.7045 140.155 31.4018 140.257 31.0208H141.013C140.877 31.565 140.584 32.0106 140.135 32.3576C139.693 32.6978 139.135 32.8678 138.461 32.8678C137.938 32.8678 137.468 32.7522 137.053 32.5209C136.638 32.2828 136.312 31.9494 136.074 31.5208C135.842 31.0854 135.727 30.5786 135.727 30.0003C135.727 29.4221 135.842 28.9152 136.074 28.4798C136.305 28.0444 136.628 27.7111 137.043 27.4798C137.458 27.2485 137.931 27.1328 138.461 27.1328C138.992 27.1328 139.455 27.2485 139.849 27.4798C140.251 27.7111 140.557 28.024 140.768 28.4186C140.985 28.8064 141.094 29.2384 141.094 29.7146ZM140.37 29.6942C140.376 29.2792 140.291 28.9254 140.115 28.6329C139.944 28.3404 139.71 28.1193 139.41 27.9696C139.111 27.8199 138.785 27.7451 138.431 27.7451C137.9 27.7451 137.448 27.9152 137.074 28.2553C136.699 28.5955 136.492 29.0751 136.451 29.6942H140.37Z\" fill=\"#7AF6C0\"/>\\n<path d=\"M132.248 27.113C132.67 27.113 133.048 27.2014 133.381 27.3783C133.721 27.5552 133.987 27.8273 134.177 28.1947C134.374 28.5553 134.473 28.9975 134.473 29.5213V32.7868H133.769V29.6029C133.769 28.9975 133.616 28.5349 133.31 28.2151C133.01 27.8954 132.599 27.7355 132.075 27.7355C131.538 27.7355 131.109 27.9056 130.789 28.2457C130.469 28.5859 130.31 29.0859 130.31 29.7458V32.7868H129.595V25.2354H130.31V28.1641C130.486 27.8307 130.745 27.5722 131.085 27.3885C131.432 27.2048 131.82 27.113 132.248 27.113Z\" fill=\"#7AF6C0\"/>\\n<path d=\"M126.887 27.8173V31.2766C126.887 31.6168 126.951 31.8515 127.081 31.9808C127.21 32.11 127.438 32.1746 127.764 32.1746H128.418V32.7869H127.652C127.149 32.7869 126.775 32.6713 126.53 32.44C126.285 32.2019 126.162 31.8141 126.162 31.2766V27.8173H125.387V27.2152H126.162V25.8171H126.887V27.2152H128.418V27.8173H126.887Z\" fill=\"#7AF6C0\"/>\\n<path d=\"M122.189 27.2156L118.883 35.4099H118.138L119.219 32.7567L116.934 27.2156H117.719L119.617 31.9709L121.454 27.2156H122.189Z\" fill=\"#7AF6C0\"/>\\n<path d=\"M111.415 28.4498C111.598 28.062 111.881 27.7457 112.262 27.5008C112.649 27.2559 113.105 27.1334 113.629 27.1334C114.139 27.1334 114.595 27.2525 114.996 27.4906C115.398 27.7219 115.711 28.0552 115.935 28.4906C116.167 28.9192 116.282 29.4193 116.282 29.9907C116.282 30.5622 116.167 31.0656 115.935 31.501C115.711 31.9364 115.394 32.2732 114.986 32.5113C114.585 32.7494 114.132 32.8684 113.629 32.8684C113.098 32.8684 112.639 32.7494 112.251 32.5113C111.87 32.2664 111.591 31.95 111.415 31.5622V32.7868H110.71V25.2354H111.415V28.4498ZM115.558 29.9907C115.558 29.5281 115.466 29.1301 115.282 28.7968C115.105 28.4566 114.86 28.1981 114.547 28.0212C114.234 27.8443 113.881 27.7559 113.486 27.7559C113.105 27.7559 112.755 27.8477 112.435 28.0314C112.122 28.2151 111.874 28.477 111.69 28.8172C111.506 29.1573 111.415 29.5519 111.415 30.0009C111.415 30.4499 111.506 30.8445 111.69 31.1847C111.874 31.5248 112.122 31.7867 112.435 31.9704C112.755 32.1541 113.105 32.246 113.486 32.246C113.881 32.246 114.234 32.1575 114.547 31.9806C114.86 31.7969 115.105 31.535 115.282 31.1949C115.466 30.8479 115.558 30.4465 115.558 29.9907Z\" fill=\"#7AF6C0\"/>\\n<defs>\\n<filter id=\"filter0_d_19_7\" x=\"16.6664\" y=\"1.37324\" width=\"23.4786\" height=\"21.1871\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"1.52151\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.478431 0 0 0 0 0.964706 0 0 0 0 0.752941 0 0 0 0.9 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_19_7\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_19_7\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_d_19_7\" x=\"18.664\" y=\"3.21864\" width=\"19.281\" height=\"17.2907\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"0.553277\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.478431 0 0 0 0 0.964706 0 0 0 0 0.752941 0 0 0 0.9 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_19_7\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_19_7\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_d_19_7\" x=\"16.6664\" y=\"1.37324\" width=\"23.4786\" height=\"21.1871\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"1.52151\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.478431 0 0 0 0 0.964706 0 0 0 0 0.752941 0 0 0 0.9 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_19_7\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_19_7\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter3_d_19_7\" x=\"18.664\" y=\"3.21864\" width=\"19.281\" height=\"17.2907\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"0.553277\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.478431 0 0 0 0 0.964706 0 0 0 0 0.752941 0 0 0 0.9 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_19_7\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_19_7\" result=\"shape\"/>\\n</filter>\\n<clipPath id=\"clip0_19_7\">\\n<rect width=\"20.3512\" height=\"18.3161\" fill=\"white\" transform=\"translate(18.1128 2.64575)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_19_7\">\\n<rect width=\"20.3512\" height=\"18.3161\" fill=\"white\" transform=\"translate(18.1128 2.64575)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a7iqbp\",layoutDependency:layoutDependency,layoutId:\"FF9fA6ywE\",...addPropertyOverrides({aZT99I1GZ:{\"data-highlight\":true,onMouseEnter:onMouseEnter1vgbyfj},g1yctgig1:{\"data-highlight\":true,onMouseEnter:onMouseEnter1vgbyfj}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Programas\"})}),className:\"framer-1dat8sg\",\"data-framer-name\":\"About | Empresas | Programas\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kXQlyJeUi\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q17iz4-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"IKUVtSUbz-container\",nodeId:\"IKUVtSUbz\",rendersWithMotion:true,scopeId:\"AtWnhlR0v\",style:{rotate:0},variants:{g1yctgig1:{rotate:0},qTmqok8vu:{rotate:-180}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretDown\",id:\"IKUVtSUbz\",layoutId:\"IKUVtSUbz\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e7g8dy\",\"data-framer-name\":\"Icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"bTDYm1cQC\",onTap:onTap2hoj4l,...addPropertyOverrides({jxLRo5esS:{onTap:onTap3c2dhm}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-u8cwyx\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"NH73coiUV\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jzxjyp\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"uYxLWPjb8\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-numjr7\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"uR3bUah1V\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qld15f\",\"data-framer-name\":\"Icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"H2c_JgGgv\",onTap:onTap1p44zsa,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-me5sgr\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"pijToryMA\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:-45}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-136iysv\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"ljIjNqqa2\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:45}})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nx2g5w\",layoutDependency:layoutDependency,layoutId:\"K4ZXVQEs7\",children:isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rj81um\",\"data-framer-name\":\"programas\",layoutDependency:layoutDependency,layoutId:\"S6bgTGFX3\",style:{backdropFilter:\"blur(8px)\",background:\"linear-gradient(180deg, rgb(43, 43, 43) 0%, rgb(43, 43, 43) 100%)\",backgroundColor:\"rgb(43, 43, 43)\",borderBottomLeftRadius:20,borderBottomRightRadius:0,opacity:.9,WebkitBackdropFilter:\"blur(8px)\"},variants:{qTmqok8vu:{backdropFilter:\"blur(9px)\",background:\"linear-gradient(180deg, rgb(5, 6, 5) 0%, rgba(4, 5, 4, 0.72) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\",opacity:1,WebkitBackdropFilter:\"blur(9px)\"},xvUDOUJOk:{background:\"linear-gradient(180deg, rgb(42, 42, 42) 0%, rgb(42, 42, 42) 100%)\",backgroundColor:\"rgb(42, 42, 42)\",borderBottomRightRadius:20,opacity:1}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LIV3j_ZQ9\"},motionChild:true,nodeId:\"vFQb28nLE\",openInNewTab:false,scopeId:\"AtWnhlR0v\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-i9wh9v\",\"data-styles-preset\":\"rf3eSxga7\",children:\"AI for Business Strategy\"})})})}),className:\"framer-4z5u8u\",\"data-framer-name\":\"ai fof business\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vFQb28nLE\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({qTmqok8vu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LIV3j_ZQ9\"},motionChild:true,nodeId:\"vFQb28nLE\",openInNewTab:false,scopeId:\"AtWnhlR0v\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-i9wh9v\",\"data-styles-preset\":\"rf3eSxga7\",children:\"AI for Business Strategy\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dC9JilZez\"},motionChild:true,nodeId:\"Z7C_7dSBd\",openInNewTab:false,scopeId:\"AtWnhlR0v\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-i9wh9v\",\"data-styles-preset\":\"rf3eSxga7\",children:\"Data Driven Managers\"})})})}),className:\"framer-115capo\",\"data-framer-name\":\"data\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Z7C_7dSBd\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({qTmqok8vu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dC9JilZez\"},motionChild:true,nodeId:\"Z7C_7dSBd\",openInNewTab:false,scopeId:\"AtWnhlR0v\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-i9wh9v\",\"data-styles-preset\":\"rf3eSxga7\",children:\"Data Driven Managers\"})})})})},xvUDOUJOk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dC9JilZez\"},motionChild:true,nodeId:\"Z7C_7dSBd\",openInNewTab:false,scopeId:\"AtWnhlR0v\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-i9wh9v\",\"data-styles-preset\":\"rf3eSxga7\",children:\"Data Driven Managers\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"m9AI1IT_K\"},motionChild:true,nodeId:\"p4_KAAXAN\",openInNewTab:false,scopeId:\"AtWnhlR0v\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-i9wh9v\",\"data-styles-preset\":\"rf3eSxga7\",children:\"High Impact Skills\"})})})}),className:\"framer-169hcqg\",\"data-framer-name\":\"high\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"p4_KAAXAN\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({qTmqok8vu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"m9AI1IT_K\"},motionChild:true,nodeId:\"p4_KAAXAN\",openInNewTab:false,scopeId:\"AtWnhlR0v\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-i9wh9v\",\"data-styles-preset\":\"rf3eSxga7\",children:\"High Impact Skills\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GsIKFQBLz\"},motionChild:true,nodeId:\"qQyuch06G\",openInNewTab:false,scopeId:\"AtWnhlR0v\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-i9wh9v\",\"data-styles-preset\":\"rf3eSxga7\",children:\"Liderazgo \"})}),\"Profesional\"]})}),className:\"framer-k1ptbi\",\"data-framer-name\":\"liderazgo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qQyuch06G\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({qTmqok8vu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GsIKFQBLz\"},motionChild:true,nodeId:\"qQyuch06G\",openInNewTab:false,scopeId:\"AtWnhlR0v\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-i9wh9v\",\"data-styles-preset\":\"rf3eSxga7\",children:\"Liderazgo Profesional\"})})})})},xvUDOUJOk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GsIKFQBLz\"},motionChild:true,nodeId:\"qQyuch06G\",openInNewTab:false,scopeId:\"AtWnhlR0v\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-i9wh9v\",\"data-styles-preset\":\"rf3eSxga7\",children:\"Liderazgo Profesional\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XmZsKRkRf\"},motionChild:true,nodeId:\"MiXbH7tE8\",openInNewTab:false,scopeId:\"AtWnhlR0v\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-i9wh9v\",\"data-styles-preset\":\"rf3eSxga7\",children:\"Women in leadership\"})})})}),className:\"framer-1abfgyj\",\"data-framer-name\":\"women\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MiXbH7tE8\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({qTmqok8vu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XmZsKRkRf\"},motionChild:true,nodeId:\"MiXbH7tE8\",openInNewTab:false,scopeId:\"AtWnhlR0v\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-i9wh9v\",\"data-styles-preset\":\"rf3eSxga7\",children:\"Women in Leadership\"})})})})},xvUDOUJOk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XmZsKRkRf\"},motionChild:true,nodeId:\"MiXbH7tE8\",openInNewTab:false,scopeId:\"AtWnhlR0v\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-i9wh9v\",\"data-styles-preset\":\"rf3eSxga7\",children:\"Women in leadership\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mYus2FYhh\"},motionChild:true,nodeId:\"L4tLeRtrN\",openInNewTab:false,scopeId:\"AtWnhlR0v\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-i9wh9v\",\"data-styles-preset\":\"rf3eSxga7\",children:\"Sustainability & ESG\"})})})}),className:\"framer-1ktejng\",\"data-framer-name\":\"sustainability\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"L4tLeRtrN\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({qTmqok8vu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mYus2FYhh\"},motionChild:true,nodeId:\"L4tLeRtrN\",openInNewTab:false,scopeId:\"AtWnhlR0v\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-i9wh9v\",\"data-styles-preset\":\"rf3eSxga7\",children:\"Sustainability & ESG\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NqoaX8mC3\"},motionChild:true,nodeId:\"C4UvWh5Nj\",openInNewTab:false,scopeId:\"AtWnhlR0v\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-i9wh9v\",\"data-styles-preset\":\"rf3eSxga7\",children:\"People Analytics\"})})})}),className:\"framer-1xb4w0h\",\"data-framer-name\":\"people\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"C4UvWh5Nj\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({qTmqok8vu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NqoaX8mC3\"},motionChild:true,nodeId:\"C4UvWh5Nj\",openInNewTab:false,scopeId:\"AtWnhlR0v\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-i9wh9v\",\"data-styles-preset\":\"rf3eSxga7\",children:\"People Analytics\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WELUo0DXo\"},motionChild:true,nodeId:\"FYlPGkZge\",openInNewTab:false,scopeId:\"AtWnhlR0v\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-i9wh9v\",\"data-styles-preset\":\"rf3eSxga7\",children:\"Project Management\"})})})}),className:\"framer-2nhxgx\",\"data-framer-name\":\"project\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FYlPGkZge\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({qTmqok8vu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WELUo0DXo\"},motionChild:true,nodeId:\"FYlPGkZge\",openInNewTab:false,scopeId:\"AtWnhlR0v\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-i9wh9v\",\"data-styles-preset\":\"rf3eSxga7\",children:\"Project Management\"})})})})}},baseVariant,gestureVariant)})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fJUMn.framer-1q18jxe, .framer-fJUMn .framer-1q18jxe { display: block; }\",\".framer-fJUMn.framer-v34kdz { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-fJUMn .framer-rsftwx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 20px 40px 20px 40px; position: relative; width: 100%; }\",\".framer-fJUMn .framer-1a5jkb7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-fJUMn .framer-1kb6at5 { flex: none; height: 36px; position: relative; text-decoration: none; width: 172px; }\",\".framer-fJUMn .framer-1a7iqbp { 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: min-content; }\",\".framer-fJUMn .framer-1dat8sg, .framer-fJUMn .framer-4z5u8u, .framer-fJUMn .framer-115capo, .framer-fJUMn .framer-169hcqg, .framer-fJUMn .framer-k1ptbi, .framer-fJUMn .framer-1abfgyj, .framer-fJUMn .framer-1ktejng, .framer-fJUMn .framer-1xb4w0h, .framer-fJUMn .framer-2nhxgx { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-fJUMn .framer-q17iz4-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 20px; }\",\".framer-fJUMn .framer-e7g8dy { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 44px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 44px; }\",\".framer-fJUMn .framer-u8cwyx, .framer-fJUMn .framer-1jzxjyp, .framer-fJUMn .framer-numjr7 { flex: none; height: 2px; overflow: hidden; position: relative; width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fJUMn .framer-qld15f { cursor: pointer; flex: none; height: 44px; overflow: hidden; position: relative; width: 44px; }\",\".framer-fJUMn .framer-me5sgr, .framer-fJUMn .framer-136iysv { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fJUMn .framer-1nx2g5w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; max-width: 1200px; min-height: 78px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fJUMn .framer-rj81um { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; max-width: 320px; overflow: visible; padding: 20px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fJUMn .framer-rsftwx, .framer-fJUMn .framer-1a7iqbp, .framer-fJUMn .framer-e7g8dy, .framer-fJUMn .framer-1nx2g5w, .framer-fJUMn .framer-rj81um { gap: 0px; } .framer-fJUMn .framer-rsftwx > *, .framer-fJUMn .framer-1a7iqbp > *, .framer-fJUMn .framer-1nx2g5w > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-fJUMn .framer-rsftwx > :first-child, .framer-fJUMn .framer-1a7iqbp > :first-child, .framer-fJUMn .framer-1nx2g5w > :first-child { margin-left: 0px; } .framer-fJUMn .framer-rsftwx > :last-child, .framer-fJUMn .framer-1a7iqbp > :last-child, .framer-fJUMn .framer-1nx2g5w > :last-child { margin-right: 0px; } .framer-fJUMn .framer-e7g8dy > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-fJUMn .framer-e7g8dy > :first-child, .framer-fJUMn .framer-rj81um > :first-child { margin-top: 0px; } .framer-fJUMn .framer-e7g8dy > :last-child, .framer-fJUMn .framer-rj81um > :last-child { margin-bottom: 0px; } .framer-fJUMn .framer-rj81um > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-fJUMn.framer-v-19hrze8 .framer-rsftwx, .framer-fJUMn.framer-v-1h28nvq .framer-rsftwx, .framer-fJUMn.framer-v-1s1y6n4 .framer-rsftwx { max-width: unset; }\",\".framer-fJUMn.framer-v-1h28nvq .framer-1nx2g5w { max-width: 1300px; min-height: unset; }\",\".framer-fJUMn.framer-v-1h28nvq .framer-rj81um { align-content: center; align-items: center; gap: 12px; justify-content: center; max-width: 240px; }\",\".framer-fJUMn.framer-v-1h28nvq .framer-4z5u8u, .framer-fJUMn.framer-v-1yp30bk .framer-4z5u8u { order: 0; }\",\".framer-fJUMn.framer-v-1h28nvq .framer-115capo, .framer-fJUMn.framer-v-1yp30bk .framer-115capo { order: 1; }\",\".framer-fJUMn.framer-v-1h28nvq .framer-169hcqg, .framer-fJUMn.framer-v-1yp30bk .framer-169hcqg { order: 2; }\",\".framer-fJUMn.framer-v-1h28nvq .framer-k1ptbi, .framer-fJUMn.framer-v-1yp30bk .framer-k1ptbi { order: 3; }\",\".framer-fJUMn.framer-v-1h28nvq .framer-1abfgyj, .framer-fJUMn.framer-v-1yp30bk .framer-1abfgyj { order: 7; }\",\".framer-fJUMn.framer-v-1h28nvq .framer-1ktejng, .framer-fJUMn.framer-v-1yp30bk .framer-1ktejng { order: 6; }\",\".framer-fJUMn.framer-v-1h28nvq .framer-1xb4w0h, .framer-fJUMn.framer-v-1yp30bk .framer-1xb4w0h { order: 4; }\",\".framer-fJUMn.framer-v-1h28nvq .framer-2nhxgx, .framer-fJUMn.framer-v-1yp30bk .framer-2nhxgx { order: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fJUMn.framer-v-1h28nvq .framer-rj81um { gap: 0px; } .framer-fJUMn.framer-v-1h28nvq .framer-rj81um > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-fJUMn.framer-v-1h28nvq .framer-rj81um > :first-child { margin-top: 0px; } .framer-fJUMn.framer-v-1h28nvq .framer-rj81um > :last-child { margin-bottom: 0px; } }\",\".framer-fJUMn.framer-v-1yp30bk.framer-v34kdz { width: 390px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fJUMn.framer-v-1yp30bk .framer-rsftwx, .framer-fJUMn.framer-v-iu410o .framer-rsftwx { max-width: unset; padding: 16px 20px 16px 20px; }\",\".framer-fJUMn.framer-v-1yp30bk .framer-1nx2g5w { min-height: unset; }\",\".framer-fJUMn.framer-v-1yp30bk .framer-rj81um { align-content: center; align-items: center; gap: 18px; max-width: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fJUMn.framer-v-1yp30bk .framer-rj81um { gap: 0px; } .framer-fJUMn.framer-v-1yp30bk .framer-rj81um > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-fJUMn.framer-v-1yp30bk .framer-rj81um > :first-child { margin-top: 0px; } .framer-fJUMn.framer-v-1yp30bk .framer-rj81um > :last-child { margin-bottom: 0px; } }\",\".framer-fJUMn.framer-v-iu410o.framer-v34kdz { width: 390px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 76\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"aZT99I1GZ\":{\"layout\":[\"fixed\",\"auto\"]},\"qTmqok8vu\":{\"layout\":[\"fixed\",\"auto\"]},\"g1yctgig1\":{\"layout\":[\"fixed\",\"auto\"]},\"xvUDOUJOk\":{\"layout\":[\"fixed\",\"auto\"]},\"jxLRo5esS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAtWnhlR0v=withCSS(Component,css,\"framer-fJUMn\");export default FramerAtWnhlR0v;FramerAtWnhlR0v.displayName=\"executive/navbar\";FramerAtWnhlR0v.defaultProps={height:76,width:1200};addPropertyControls(FramerAtWnhlR0v,{variant:{options:[\"R9wsnVgjB\",\"aZT99I1GZ\",\"qTmqok8vu\",\"g1yctgig1\",\"xvUDOUJOk\",\"jxLRo5esS\"],optionTitles:[\"Variant 1\",\"desktop closed\",\"desktop open\",\"desktop closed header\",\"mobile OPEN\",\"mobile closed \"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerAtWnhlR0v,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAtWnhlR0v\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aZT99I1GZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qTmqok8vu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"g1yctgig1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xvUDOUJOk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jxLRo5esS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"76\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AtWnhlR0v.map"],
  "mappings": "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",
  "names": ["calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "click", "click2", "height", "id", "question", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "MnRCqcZ92", "wmV75L4cL", "VuZm920pl", "VVMzJCyK2", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1m4jmmw", "args", "onTap14ay79h", "onTapm8q03i", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "Framern6IbgOZPm", "withCSS", "n6IbgOZPm_default", "addPropertyControls", "ControlType", "addFonts", "ExecutiveFaqsFonts", "getFonts", "n6IbgOZPm_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "click10", "click11", "click12", "click13", "click14", "click15", "click16", "click2", "click3", "click4", "click5", "click6", "click7", "click8", "click9", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "NdLzgUkY1", "Fv81DJh1J", "SXP0NH87p", "pUb_jayzK", "D2zr_dg18", "DMtBmpADS", "mQKIQ4xCR", "SnzBzZbZu", "cjhPZZtUI", "QZOOD6OUJ", "ydsER1zc2", "KRRggdJr_", "MZtu1_ZCt", "PbPt7CFT4", "t2rrS0mbo", "rQGYUH8SI", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "MnRCqcZ92s7o01l", "args", "wmV75L4cLh97v52", "MnRCqcZ921ub1xff", "wmV75L4cL72ge7v", "MnRCqcZ921aiwekw", "wmV75L4cL1kpvv7g", "MnRCqcZ921rj21zw", "wmV75L4cL19rczvy", "MnRCqcZ9217cnzmx", "wmV75L4cL1pn4qvb", "MnRCqcZ921vi732u", "wmV75L4cLr3m3w3", "MnRCqcZ92wwlcjd", "wmV75L4cLk6ckte", "MnRCqcZ92ktiml", "wmV75L4cL1pq1mnz", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "n6IbgOZPm_default", "css", "FramerA6at7EW9g", "withCSS", "A6at7EW9g_default", "addPropertyControls", "ControlType", "addFonts", "ExecutiveFaqsFonts", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseLeave1ltgmol", "args", "onMouseEnter1vgbyfj", "onTap2hoj4l", "onTap3c2dhm", "onTap1p44zsa", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "Link", "SVG", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerAtWnhlR0v", "withCSS", "AtWnhlR0v_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
