{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/72O11ApITvgaMZRvyQex/Ticker.js", "ssg:https://framerusercontent.com/modules/oeG9jlYDvTFh0no0QA3z/Izf4nlGQHD58X6mFVd47/J645tUUow-0.js", "ssg:https://framerusercontent.com/modules/oeG9jlYDvTFh0no0QA3z/Izf4nlGQHD58X6mFVd47/J645tUUow.js", "ssg:https://framerusercontent.com/modules/Y3HJBA1ntOOY0wegztDY/gmzpYw98Ui7y61rgH5Yn/C1kV_8Krw.js", "ssg:https://framerusercontent.com/modules/oYtM229R59xIsHAfDM7x/xS87sRR6Mg48kyYFpmF3/iqndfx1y1-0.js", "ssg:https://framerusercontent.com/modules/EoMSdIJHfRW7phs6d4My/HhSGVxHPcS12cfojRoRI/zB0BwIkEe.js", "ssg:https://framerusercontent.com/modules/oYtM229R59xIsHAfDM7x/xS87sRR6Mg48kyYFpmF3/iqndfx1y1.js", "ssg:https://framerusercontent.com/modules/qQyHUxuEIsiVBaId4dQt/zjC3N2ao0RZOQOqqdJEa/keNjrFSSq-0.js", "ssg:https://framerusercontent.com/modules/qQyHUxuEIsiVBaId4dQt/zjC3N2ao0RZOQOqqdJEa/keNjrFSSq.js", "ssg:https://framerusercontent.com/modules/4JFZ9bTGdATtySAC9Hvs/iPB1m1v3Tq2OunMCcJ0q/QkgItMsVb.js", "ssg:https://framerusercontent.com/modules/WNNA1GEeV5ZUkDsjIw7w/UlgGcASBC4ZDAykzjczC/keNjrFSSq.js", "ssg:https://framerusercontent.com/modules/Bon7fgTBN61kXD4wubr5/bNcwTBPV7gfwfhfew26v/J645tUUow.js", "ssg:https://framerusercontent.com/modules/jGxaOv27UFt2H1IUseCz/R8RPQmypq9TQCNExMOfL/pS9Ajfotc.js", "ssg:https://framerusercontent.com/modules/qvakm4RLxJzt0gOLrUAm/DQHRaOystqlspVKcWixP/CDtlSwayk.js", "ssg:https://framerusercontent.com/modules/i0lISw3mIhJHxqrctoAf/srIcpCGHhHj0L13dH5uG/lY8nvG7ht.js", "ssg:https://framerusercontent.com/modules/vmUnv6K92DF24JLCUNWw/SoJ6OfZjbSv1IhuqrMG7/P_wH88DOG.js", "ssg:https://framerusercontent.com/modules/ZAekxYRVCzsioYcotKUW/s2pc86jX3yRBF1P7PElw/Z0q0XTJkn-0.js", "ssg:https://framerusercontent.com/modules/ZAekxYRVCzsioYcotKUW/s2pc86jX3yRBF1P7PElw/Z0q0XTJkn.js", "ssg:https://framerusercontent.com/modules/OKkaBzYQp8EbH1XAqLEf/Eae8uw6Bn4SqtHVDU6n2/Z0q0XTJkn.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "export const v0=\"Maison\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1f5f6d9)\nimport*as localizedValues from\"./J645tUUow-0.js\";const valuesByLocaleId={dC0rUWJM9:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1a6990e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useConstant,useIsOnFramerCanvas,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"sRFtZxCGn\",\"P9B40kA_X\",\"p1xtueJPQ\",\"iW96LfduI\",\"PhLOwCZ8e\",\"xPdYGEy9p\"];const serializationHash=\"framer-CsZAo\";const variantClassNames={iW96LfduI:\"framer-v-1bqtsi\",p1xtueJPQ:\"framer-v-1aqp7kn\",P9B40kA_X:\"framer-v-2fupz5\",PhLOwCZ8e:\"framer-v-1bjluhv\",sRFtZxCGn:\"framer-v-1qt3gbi\",xPdYGEy9p:\"framer-v-4v0nq8\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,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 humanReadableVariantMap={\"Variant 1\":\"sRFtZxCGn\",\"Variant 2\":\"P9B40kA_X\",\"Variant 3\":\"p1xtueJPQ\",\"Variant 4\":\"iW96LfduI\",\"Variant 5\":\"PhLOwCZ8e\",\"Variant 6\":\"xPdYGEy9p\"};const getProps=({contrastColor,has4Th,has5Th,has6Th,height,id,mainColor,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5;return{...props,Dyeu5P1hW:(_ref=has6Th!==null&&has6Th!==void 0?has6Th:props.Dyeu5P1hW)!==null&&_ref!==void 0?_ref:true,G6905kWWB:(_ref1=has4Th!==null&&has4Th!==void 0?has4Th:props.G6905kWWB)!==null&&_ref1!==void 0?_ref1:true,iCjpS7Fkh:(_ref2=mainColor!==null&&mainColor!==void 0?mainColor:props.iCjpS7Fkh)!==null&&_ref2!==void 0?_ref2:'var(--token-0dbc62f9-ce04-4373-93c9-1d22735eece5, rgb(1, 165, 196)) /* {\"name\":\"Primary / Green\"} */',p_TUkrUYn:(_ref3=contrastColor!==null&&contrastColor!==void 0?contrastColor:props.p_TUkrUYn)!==null&&_ref3!==void 0?_ref3:\"rgba(1, 165, 196, 0.3)\",UpuUjswDC:(_ref4=has5Th!==null&&has5Th!==void 0?has5Th:props.UpuUjswDC)!==null&&_ref4!==void 0?_ref4:true,variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"sRFtZxCGn\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,G6905kWWB,UpuUjswDC,Dyeu5P1hW,iCjpS7Fkh,p_TUkrUYn,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"sRFtZxCGn\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isOnCanvas=useIsOnFramerCanvas();const initialVariant=useConstant(()=>variant);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1qt3gbi\",className,classNames),\"data-framer-name\":\"Variant 1\",initial:isOnCanvas?variant:initialVariant,layoutDependency:layoutDependency,layoutId:\"sRFtZxCGn\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({iW96LfduI:{\"data-framer-name\":\"Variant 4\"},p1xtueJPQ:{\"data-framer-name\":\"Variant 3\"},P9B40kA_X:{\"data-framer-name\":\"Variant 2\"},PhLOwCZ8e:{\"data-framer-name\":\"Variant 5\"},xPdYGEy9p:{\"data-framer-name\":\"Variant 6\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15w8ybe\",\"data-framer-name\":\"06 Other/01 slideIndicatorDot\",layoutDependency:layoutDependency,layoutId:\"byfMyJoer\",style:{backgroundColor:iCjpS7Fkh,borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25},variants:{iW96LfduI:{backgroundColor:p_TUkrUYn},p1xtueJPQ:{backgroundColor:p_TUkrUYn},P9B40kA_X:{backgroundColor:p_TUkrUYn},PhLOwCZ8e:{backgroundColor:p_TUkrUYn},xPdYGEy9p:{backgroundColor:p_TUkrUYn}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1870orj\",\"data-framer-name\":\"06 Other/01 slideIndicatorDot\",layoutDependency:layoutDependency,layoutId:\"iubcYw6rs\",style:{backgroundColor:p_TUkrUYn,borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25},variants:{P9B40kA_X:{backgroundColor:iCjpS7Fkh}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-quh7sh\",\"data-framer-name\":\"06 Other/01 slideIndicatorDot\",layoutDependency:layoutDependency,layoutId:\"FEXZjDneC\",style:{backgroundColor:p_TUkrUYn,borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25},variants:{p1xtueJPQ:{backgroundColor:iCjpS7Fkh}}}),G6905kWWB&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1io2mly\",\"data-framer-name\":\"06 Other/01 slideIndicatorDot\",layoutDependency:layoutDependency,layoutId:\"c1lw9mKbG\",style:{backgroundColor:p_TUkrUYn,borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25},variants:{iW96LfduI:{backgroundColor:iCjpS7Fkh}}}),UpuUjswDC&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-gem8ix\",\"data-framer-name\":\"06 Other/01 slideIndicatorDot\",layoutDependency:layoutDependency,layoutId:\"NzEpDSCwX\",style:{backgroundColor:p_TUkrUYn,borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25},variants:{PhLOwCZ8e:{backgroundColor:iCjpS7Fkh}}}),Dyeu5P1hW&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-jmnxyo\",\"data-framer-name\":\"06 Other/01 slideIndicatorDot\",layoutDependency:layoutDependency,layoutId:\"ZnITyqfYJ\",style:{backgroundColor:p_TUkrUYn,borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25},variants:{xPdYGEy9p:{backgroundColor:iCjpS7Fkh}}})]})})});});const css=['.framer-CsZAo[data-border=\"true\"]::after, .framer-CsZAo [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CsZAo.framer-705ybr, .framer-CsZAo .framer-705ybr { display: block; }\",\".framer-CsZAo.framer-1qt3gbi { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 19px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-CsZAo .framer-15w8ybe, .framer-CsZAo .framer-1870orj, .framer-CsZAo .framer-quh7sh, .framer-CsZAo .framer-1io2mly, .framer-CsZAo .framer-gem8ix, .framer-CsZAo .framer-jmnxyo { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); overflow: hidden; position: relative; width: 12px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CsZAo.framer-1qt3gbi { gap: 0px; } .framer-CsZAo.framer-1qt3gbi > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-CsZAo.framer-1qt3gbi > :first-child { margin-left: 0px; } .framer-CsZAo.framer-1qt3gbi > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 19\n * @framerIntrinsicWidth 122\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"P9B40kA_X\":{\"layout\":[\"auto\",\"fixed\"]},\"p1xtueJPQ\":{\"layout\":[\"auto\",\"fixed\"]},\"iW96LfduI\":{\"layout\":[\"auto\",\"fixed\"]},\"PhLOwCZ8e\":{\"layout\":[\"auto\",\"fixed\"]},\"xPdYGEy9p\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"G6905kWWB\":\"has4Th\",\"UpuUjswDC\":\"has5Th\",\"Dyeu5P1hW\":\"has6Th\",\"iCjpS7Fkh\":\"mainColor\",\"p_TUkrUYn\":\"contrastColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerC1kV_8Krw=withCSS(Component,css,\"framer-CsZAo\");export default FramerC1kV_8Krw;FramerC1kV_8Krw.displayName=\"06 Other/01 slideIndicator\";FramerC1kV_8Krw.defaultProps={height:19,width:122};addPropertyControls(FramerC1kV_8Krw,{variant:{options:[\"sRFtZxCGn\",\"P9B40kA_X\",\"p1xtueJPQ\",\"iW96LfduI\",\"PhLOwCZ8e\",\"xPdYGEy9p\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\"],title:\"Variant\",type:ControlType.Enum},G6905kWWB:{defaultValue:true,title:\"has 4th\",type:ControlType.Boolean},UpuUjswDC:{defaultValue:true,title:\"has 5th\",type:ControlType.Boolean},Dyeu5P1hW:{defaultValue:true,title:\"has 6th\",type:ControlType.Boolean},iCjpS7Fkh:{defaultValue:'var(--token-0dbc62f9-ce04-4373-93c9-1d22735eece5, rgb(1, 165, 196)) /* {\"name\":\"Primary / Green\"} */',title:\"mainColor\",type:ControlType.Color},p_TUkrUYn:{defaultValue:\"rgba(1, 165, 196, 0.3)\",title:\"contrastColor\",type:ControlType.Color}});addFonts(FramerC1kV_8Krw,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerC1kV_8Krw\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"19\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"P9B40kA_X\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"p1xtueJPQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"iW96LfduI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"PhLOwCZ8e\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"xPdYGEy9p\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"G6905kWWB\\\":\\\"has4Th\\\",\\\"UpuUjswDC\\\":\\\"has5Th\\\",\\\"Dyeu5P1hW\\\":\\\"has6Th\\\",\\\"iCjpS7Fkh\\\":\\\"mainColor\\\",\\\"p_TUkrUYn\\\":\\\"contrastColor\\\"}\",\"framerIntrinsicWidth\":\"122\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./C1kV_8Krw.map", "export const v0=\"L'international fait partie de notre ADN, notre syst\\xe8me s'adapte \\xe0 plusieurs juridictions pour garantir que les informations collect\\xe9es sont pertinentes et conformes aux autorit\\xe9s\";export const v1=\"Le processus de validation est unique \\xe0 votre politique interne. Nos droits des utilisateurs et les param\\xe8tres de visibilit\\xe9 conviennent \\xe0 tous les types d'organisations.\";export const v2=\"Accueillir un HNWI ou un Fonds de pension est un processus totalement diff\\xe9rent. L'exp\\xe9rience utilisateur refl\\xe8te cela pour garantir que le LP trouve cela facile, tout en restant conforme.\";export const v3=\"Lorsque le volume est l'objectif, chaque clic compte. Vos distributeurs doivent onboarder autant d'investisseurs que possible en utilisant une plateforme de marque de pointe.\";export const v4=\"Une vue d'ensemble globale de l'entit\\xe9 vous permet d'adopter une approche bas\\xe9e sur les risques et d'identifier les b\\xe9n\\xe9ficiaires effectifs ultimes (UBOs), les repr\\xe9sentants l\\xe9gaux, les administrateurs, les co-investisseurs, et plus encore.\";export const v5=\"Nous sommes connect\\xe9s aux fournisseur screening les plus fiables du march\\xe9, ce qui vous permet de visualiser des rapports d\\xe9taill\\xe9s directement sur la plateforme B4Finance.\";export const v6=\"Scoring en direct, respect des obligations locales et adaptation \\xe0 votre politique. Vous pouvez d\\xe9finir vos crit\\xe8res de poids, listes de pays, secteurs d'activit\\xe9 et plus encore.\";export const v7=\"Que ce soit pour fournir des services tiers ou g\\xe9rer de gros volumes, il est crucial de garantir la s\\xe9curit\\xe9 des donn\\xe9es, l'acc\\xe8s restreint pour les utilisateurs appropri\\xe9s et le respect de toutes les \\xe9tapes de validation.\";export const v8=\"Identifier les liens entre les individus et les entreprises dans diff\\xe9rents fonds est le meilleur moyen de minimiser la duplication des efforts et d'att\\xe9nuer l'impact des risques lors des v\\xe9rifications et des revues..\";export const v9=\"CRM, ERP, etc. L'int\\xe9gration dans un syst\\xe8me informatique est la cl\\xe9 d'un processus sans interruption, et nous avons prouv\\xe9 notre capacit\\xe9 \\xe0 int\\xe9grer via une API ou d'autres m\\xe9thodes dans des syst\\xe8mes tiers ou faits maison.\";\nexport const __FramerMetadata__ = {\"exports\":{\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (91bcfbd)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/vMEYZo2NqeI1uZ81YKld/HEETMLnqnGv3QTQzI2yJ/GWltAg7xQ.js\";import*as localizedValues from\"./zB0BwIkEe-0.js\";const cycleOrder=[\"vjFeuUetq\",\"eylEMzAlJ\"];const serializationHash=\"framer-rnyu7\";const variantClassNames={eylEMzAlJ:\"framer-v-1ayj31a\",vjFeuUetq:\"framer-v-1i7z0iq\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const valuesByLocaleId={bBI5rI0s0:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==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(React.Fragment);const humanReadableVariantMap={\"L&M\":\"vjFeuUetq\",S:\"eylEMzAlJ\"};const getProps=({height,id,image,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,bagU2Rlon:(_ref=image!==null&&image!==void 0?image:props.bagU2Rlon)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/kSCnIwonJzJIU5ScdQfU4xZT7g.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kSCnIwonJzJIU5ScdQfU4xZT7g.png?scale-down-to=512 512w, https://framerusercontent.com/images/kSCnIwonJzJIU5ScdQfU4xZT7g.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/kSCnIwonJzJIU5ScdQfU4xZT7g.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/kSCnIwonJzJIU5ScdQfU4xZT7g.png 3840w\"},variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"vjFeuUetq\",XkTUXOKyy:(_ref2=text!==null&&text!==void 0?text:props.XkTUXOKyy)!==null&&_ref2!==void 0?_ref2:\"Onboarding a HNWI or a Pension Fund is a complete different process. The user experience reflects that, to make sure the LPs find it easy, and you remain compliant.\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,XkTUXOKyy,bagU2Rlon,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"vjFeuUetq\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];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:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1i7z0iq\",className,classNames),\"data-framer-name\":\"L&M\",layoutDependency:layoutDependency,layoutId:\"vjFeuUetq\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({eylEMzAlJ:{\"data-framer-name\":\"S\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-qkrhg0\",layoutDependency:layoutDependency,layoutId:\"OhIdiCwQG\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17bgt0w\",\"data-styles-preset\":\"GWltAg7xQ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9335fa79-c4b1-4fa6-a73b-ebea453def74, rgb(102, 102, 102)))\"},children:\"Whether you\u2019re in the United States, Cayman Islands, Luxembourg, Israel, or elsewhere, Passthrough collects whatever information is required by the local authorities.\"})}),className:\"framer-j1yb80\",layoutDependency:layoutDependency,layoutId:\"gUoU2v1Vu\",style:{\"--extracted-r6o4lv\":\"var(--token-9335fa79-c4b1-4fa6-a73b-ebea453def74, rgb(102, 102, 102))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:XkTUXOKyy,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:2160,pixelWidth:3840,sizes:\"max((min(974px, 100vw) - 40px) / 2, 0px)\",...toResponsiveImage(bagU2Rlon),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-5s5xnj\",\"data-framer-name\":\"$1\",layoutDependency:layoutDependency,layoutId:\"N5TCqWE07\",...addPropertyOverrides({eylEMzAlJ:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:2160,pixelWidth:3840,sizes:\"min(294px, 100vw)\",...toResponsiveImage(bagU2Rlon),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]})})})});});const css=['.framer-rnyu7[data-border=\"true\"]::after, .framer-rnyu7 [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rnyu7.framer-131xolr, .framer-rnyu7 .framer-131xolr { display: block; }\",\".framer-rnyu7.framer-1i7z0iq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 974px; }\",\".framer-rnyu7 .framer-qkrhg0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-rnyu7 .framer-j1yb80 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-rnyu7 .framer-5s5xnj { flex: 1 0 0px; height: 270px; overflow: visible; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rnyu7.framer-1i7z0iq { gap: 0px; } .framer-rnyu7.framer-1i7z0iq > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-rnyu7.framer-1i7z0iq > :first-child { margin-left: 0px; } .framer-rnyu7.framer-1i7z0iq > :last-child { margin-right: 0px; } }\",\".framer-rnyu7.framer-v-1ayj31a.framer-1i7z0iq { flex-direction: column; gap: 20px; width: 294px; }\",\".framer-rnyu7.framer-v-1ayj31a .framer-qkrhg0 { flex: none; width: 100%; }\",\".framer-rnyu7.framer-v-1ayj31a .framer-5s5xnj { flex: none; height: 180px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rnyu7.framer-v-1ayj31a.framer-1i7z0iq { gap: 0px; } .framer-rnyu7.framer-v-1ayj31a.framer-1i7z0iq > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-rnyu7.framer-v-1ayj31a.framer-1i7z0iq > :first-child { margin-top: 0px; } .framer-rnyu7.framer-v-1ayj31a.framer-1i7z0iq > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 270\n * @framerIntrinsicWidth 974\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"eylEMzAlJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"XkTUXOKyy\":\"text\",\"bagU2Rlon\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerzB0BwIkEe=withCSS(Component,css,\"framer-rnyu7\");export default FramerzB0BwIkEe;FramerzB0BwIkEe.displayName=\"Galerie N\\xba3/contentCell\";FramerzB0BwIkEe.defaultProps={height:270,width:974};addPropertyControls(FramerzB0BwIkEe,{variant:{options:[\"vjFeuUetq\",\"eylEMzAlJ\"],optionTitles:[\"L&M\",\"S\"],title:\"Variant\",type:ControlType.Enum},XkTUXOKyy:{defaultValue:\"Onboarding a HNWI or a Pension Fund is a complete different process. The user experience reflects that, to make sure the LPs find it easy, and you remain compliant.\",displayTextArea:false,title:\"Text\",type:ControlType.String},bagU2Rlon:{__defaultAssetReference:\"data:framer/asset-reference,kSCnIwonJzJIU5ScdQfU4xZT7g.png?originalFilename=1.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerzB0BwIkEe,[...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzB0BwIkEe\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"270\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eylEMzAlJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"974\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"XkTUXOKyy\\\":\\\"text\\\",\\\"bagU2Rlon\\\":\\\"image\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d275c2b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./iqndfx1y1-0.js\";import GalerieN3ContentCell from\"https://framerusercontent.com/modules/EoMSdIJHfRW7phs6d4My/HhSGVxHPcS12cfojRoRI/zB0BwIkEe.js\";const GalerieN3ContentCellFonts=getFonts(GalerieN3ContentCell);const GalerieN3ContentCellControls=getPropertyControls(GalerieN3ContentCell);const cycleOrder=[\"x1VHsBWw9\",\"NraOgSiOy\",\"sclKQke6q\",\"DUkNfSbp3\",\"yS4Tp_C2Q\",\"s3Z6H9CLR\",\"ag7ZHD9MQ\",\"S_mE2JNgN\",\"DZr1pd2uH\",\"w_p6VfJBi\",\"IJumCVBHt\",\"oRq3lRXdB\"];const serializationHash=\"framer-LgFCi\";const variantClassNames={ag7ZHD9MQ:\"framer-v-17dvmjq\",DUkNfSbp3:\"framer-v-uy5hf6\",DZr1pd2uH:\"framer-v-1ktebcc\",IJumCVBHt:\"framer-v-14rrxq1\",NraOgSiOy:\"framer-v-17mjyjd\",oRq3lRXdB:\"framer-v-1iarkoi\",S_mE2JNgN:\"framer-v-fgylfi\",s3Z6H9CLR:\"framer-v-gp9qrb\",sclKQke6q:\"framer-v-1stu7ae\",w_p6VfJBi:\"framer-v-1ycn51i\",x1VHsBWw9:\"framer-v-1eua6nd\",yS4Tp_C2Q:\"framer-v-1ncitue\"};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 valuesByLocaleId={dC0rUWJM9:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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(React.Fragment);const humanReadableEnumMap={\"L&M\":\"vjFeuUetq\",S:\"eylEMzAlJ\"};const humanReadableVariantMap={\"P1/Tab 1\":\"x1VHsBWw9\",\"P1/Tab 2\":\"NraOgSiOy\",\"P1/Tab 3\":\"sclKQke6q\",\"P1/Tab 4\":\"DUkNfSbp3\",\"P2/Tab 1\":\"yS4Tp_C2Q\",\"P2/Tab 2\":\"s3Z6H9CLR\",\"P2/Tab 3\":\"ag7ZHD9MQ\",\"P2/Tab 4\":\"S_mE2JNgN\",\"P3/Tab 1\":\"DZr1pd2uH\",\"P3/Tab 2\":\"w_p6VfJBi\",\"P3/Tab 3\":\"IJumCVBHt\",\"P3/Tab 4\":\"oRq3lRXdB\"};const getProps=({contentSize,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_humanReadableEnumMap_contentSize,_ref1,_ref2;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"x1VHsBWw9\",Yi6NSLUCI:(_ref2=(_ref1=(_humanReadableEnumMap_contentSize=humanReadableEnumMap[contentSize])!==null&&_humanReadableEnumMap_contentSize!==void 0?_humanReadableEnumMap_contentSize:contentSize)!==null&&_ref1!==void 0?_ref1:props.Yi6NSLUCI)!==null&&_ref2!==void 0?_ref2:\"vjFeuUetq\"};};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,Yi6NSLUCI,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"x1VHsBWw9\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"DZr1pd2uH\",\"IJumCVBHt\",\"oRq3lRXdB\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"DZr1pd2uH\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"IJumCVBHt\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"oRq3lRXdB\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10;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-1eua6nd\",className,classNames),\"data-framer-name\":\"P1/Tab 1\",layoutDependency:layoutDependency,layoutId:\"x1VHsBWw9\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({ag7ZHD9MQ:{\"data-framer-name\":\"P2/Tab 3\"},DUkNfSbp3:{\"data-framer-name\":\"P1/Tab 4\"},DZr1pd2uH:{\"data-framer-name\":\"P3/Tab 1\"},IJumCVBHt:{\"data-framer-name\":\"P3/Tab 3\"},NraOgSiOy:{\"data-framer-name\":\"P1/Tab 2\"},oRq3lRXdB:{\"data-framer-name\":\"P3/Tab 4\"},S_mE2JNgN:{\"data-framer-name\":\"P2/Tab 4\"},s3Z6H9CLR:{\"data-framer-name\":\"P2/Tab 2\"},sclKQke6q:{\"data-framer-name\":\"P1/Tab 3\"},w_p6VfJBi:{\"data-framer-name\":\"P3/Tab 2\"},yS4Tp_C2Q:{\"data-framer-name\":\"P2/Tab 1\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-20l3uq-container\",layoutDependency:layoutDependency,layoutId:\"TdFeSvfwY-container\",children:/*#__PURE__*/_jsx(GalerieN3ContentCell,{bagU2Rlon:addImageAlt({src:\"https://framerusercontent.com/images/Ha6bLV3sd8KQsAcyvtorbCFK538.png\",srcSet:\"https://framerusercontent.com/images/Ha6bLV3sd8KQsAcyvtorbCFK538.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ha6bLV3sd8KQsAcyvtorbCFK538.png 604w\"},\"\"),height:\"100%\",id:\"TdFeSvfwY\",layoutId:\"TdFeSvfwY\",style:{width:\"100%\"},variant:Yi6NSLUCI,width:\"100%\",XkTUXOKyy:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"International is in our DNA, our system adapts to multiple jurisdictions, to make sure the collected information is relevant and compliant with authorities\",...addPropertyOverrides({ag7ZHD9MQ:{bagU2Rlon:addImageAlt({src:\"https://framerusercontent.com/images/MXRd0ea3KDytRXJ66WBjpjfnzo.png\",srcSet:\"https://framerusercontent.com/images/MXRd0ea3KDytRXJ66WBjpjfnzo.png?scale-down-to=512 512w,https://framerusercontent.com/images/MXRd0ea3KDytRXJ66WBjpjfnzo.png 610w\"},\"\"),XkTUXOKyy:(_getLocalizedValue1=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"We are API connected to the most reliable screening providers on the market, allowing you to visualize detailed reports directly on the B4Finance platform.\"},DUkNfSbp3:{bagU2Rlon:addImageAlt({src:\"https://framerusercontent.com/images/bnwerEmWZDyn8oa5dgUVpPrUec.png\",srcSet:\"https://framerusercontent.com/images/bnwerEmWZDyn8oa5dgUVpPrUec.png?scale-down-to=512 512w,https://framerusercontent.com/images/bnwerEmWZDyn8oa5dgUVpPrUec.png 708w\"},\"\"),XkTUXOKyy:(_getLocalizedValue2=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"When volume is the objective, every click counts. Your distributors should onboard as many retail investors as possible using a state-of-the-art branded platform.\"},NraOgSiOy:{bagU2Rlon:addImageAlt({src:\"https://framerusercontent.com/images/4wWBHJZSQjteZQMazbvqd3gmX7s.png\",srcSet:\"https://framerusercontent.com/images/4wWBHJZSQjteZQMazbvqd3gmX7s.png?scale-down-to=512 512w,https://framerusercontent.com/images/4wWBHJZSQjteZQMazbvqd3gmX7s.png 604w\"},\"\"),XkTUXOKyy:(_getLocalizedValue3=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:\"The workflow validation process is unique to your internal policy. Our user rights and team visibility settings fit every type of organization.\"},S_mE2JNgN:{bagU2Rlon:addImageAlt({src:\"https://framerusercontent.com/images/XEbrjQmADWFdDSHPkHONaK3PLU.png\",srcSet:\"https://framerusercontent.com/images/XEbrjQmADWFdDSHPkHONaK3PLU.png?scale-down-to=512 512w,https://framerusercontent.com/images/XEbrjQmADWFdDSHPkHONaK3PLU.png 688w\"},\"\"),XkTUXOKyy:(_getLocalizedValue4=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:\"Live scoring, handling local obligations, and adapting to your specific policy. You can build your weight criteria, country lists, activity sectors, and more.\"},sclKQke6q:{bagU2Rlon:addImageAlt({src:\"https://framerusercontent.com/images/03pwAPaPkb18KhxzXohpVbmHSp0.png\",srcSet:\"https://framerusercontent.com/images/03pwAPaPkb18KhxzXohpVbmHSp0.png?scale-down-to=512 512w,https://framerusercontent.com/images/03pwAPaPkb18KhxzXohpVbmHSp0.png 647w\"},\"\"),XkTUXOKyy:(_getLocalizedValue5=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:\"Onboarding an HNWI or a Pension Fund is a completely different process. The user experience reflects that to ensure the LP finds it easy, and you remain compliant.\"},w_p6VfJBi:{bagU2Rlon:addImageAlt({src:\"https://framerusercontent.com/images/4wWBHJZSQjteZQMazbvqd3gmX7s.png\",srcSet:\"https://framerusercontent.com/images/4wWBHJZSQjteZQMazbvqd3gmX7s.png?scale-down-to=512 512w,https://framerusercontent.com/images/4wWBHJZSQjteZQMazbvqd3gmX7s.png 604w\"},\"\"),XkTUXOKyy:(_getLocalizedValue6=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:\"Whether providing third-party services or managing large volumes, it's crucial to ensure data security, restricted access for appropriate users, and adherence to all validation steps.\"},yS4Tp_C2Q:{bagU2Rlon:addImageAlt({src:\"https://framerusercontent.com/images/4V38q9oMnRTF8wnVQKdRBOS1Zks.png\",srcSet:\"https://framerusercontent.com/images/4V38q9oMnRTF8wnVQKdRBOS1Zks.png?scale-down-to=512 512w,https://framerusercontent.com/images/4V38q9oMnRTF8wnVQKdRBOS1Zks.png 604w\"},\"\"),XkTUXOKyy:(_getLocalizedValue7=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:\"A global overview of the entity enables you to adopt a risk-based approach and identify Ultimate Beneficial Owners (UBOs), Legal Representatives, Administrators, Co-Investors, and more.\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qbks30-container\",layoutDependency:layoutDependency,layoutId:\"tZ0TuJY0K-container\",children:/*#__PURE__*/_jsx(GalerieN3ContentCell,{bagU2Rlon:addImageAlt({src:\"https://framerusercontent.com/images/4V38q9oMnRTF8wnVQKdRBOS1Zks.png\",srcSet:\"https://framerusercontent.com/images/4V38q9oMnRTF8wnVQKdRBOS1Zks.png?scale-down-to=512 512w,https://framerusercontent.com/images/4V38q9oMnRTF8wnVQKdRBOS1Zks.png 604w\"},\"\"),height:\"100%\",id:\"tZ0TuJY0K\",layoutId:\"tZ0TuJY0K\",style:{width:\"100%\"},variant:Yi6NSLUCI,width:\"100%\",XkTUXOKyy:(_getLocalizedValue8=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:\"Identifying links between individuals and companies onboarded in different funds is the best way to minimize duplication of effort and mitigate global risk impact during checks and reviews.\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-123zoh9-container\",layoutDependency:layoutDependency,layoutId:\"Upd8IyHHz-container\",children:/*#__PURE__*/_jsx(GalerieN3ContentCell,{bagU2Rlon:addImageAlt({src:\"https://framerusercontent.com/images/FJfPJONsz2XboEch7ht04xD6ylk.png\",srcSet:\"https://framerusercontent.com/images/FJfPJONsz2XboEch7ht04xD6ylk.png?scale-down-to=512 512w,https://framerusercontent.com/images/FJfPJONsz2XboEch7ht04xD6ylk.png 604w\"},\"\"),height:\"100%\",id:\"Upd8IyHHz\",layoutId:\"Upd8IyHHz\",style:{width:\"100%\"},variant:Yi6NSLUCI,width:\"100%\",XkTUXOKyy:(_getLocalizedValue9=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:\"CRM, ERP ect.. Integrating into an IT system is the key to a seamless process without interruption, and we have proven our ability to integrate via API or other methods into third-party or homemade systems.\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-k15liu-container\",layoutDependency:layoutDependency,layoutId:\"fnkUHztZI-container\",children:/*#__PURE__*/_jsx(GalerieN3ContentCell,{bagU2Rlon:addImageAlt({src:\"https://framerusercontent.com/images/Ha6bLV3sd8KQsAcyvtorbCFK538.png\",srcSet:\"https://framerusercontent.com/images/Ha6bLV3sd8KQsAcyvtorbCFK538.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ha6bLV3sd8KQsAcyvtorbCFK538.png 604w\"},\"\"),height:\"100%\",id:\"fnkUHztZI\",layoutId:\"fnkUHztZI\",style:{width:\"100%\"},variant:Yi6NSLUCI,width:\"100%\",XkTUXOKyy:(_getLocalizedValue10=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:\"International is in our DNA, our system adapts to multiple jurisdictions, to make sure the collected information is relevant and compliant with authorities\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LgFCi.framer-15eb2h9, .framer-LgFCi .framer-15eb2h9 { display: block; }\",\".framer-LgFCi.framer-1eua6nd { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 974px; }\",\".framer-LgFCi .framer-20l3uq-container, .framer-LgFCi .framer-qbks30-container, .framer-LgFCi .framer-123zoh9-container, .framer-LgFCi .framer-k15liu-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LgFCi.framer-1eua6nd { gap: 0px; } .framer-LgFCi.framer-1eua6nd > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-LgFCi.framer-1eua6nd > :first-child { margin-top: 0px; } .framer-LgFCi.framer-1eua6nd > :last-child { margin-bottom: 0px; } }\",\".framer-LgFCi.framer-v-1ktebcc .framer-qbks30-container, .framer-LgFCi.framer-v-14rrxq1 .framer-123zoh9-container, .framer-LgFCi.framer-v-1iarkoi .framer-k15liu-container { order: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 270\n * @framerIntrinsicWidth 974\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NraOgSiOy\":{\"layout\":[\"fixed\",\"auto\"]},\"sclKQke6q\":{\"layout\":[\"fixed\",\"auto\"]},\"DUkNfSbp3\":{\"layout\":[\"fixed\",\"auto\"]},\"yS4Tp_C2Q\":{\"layout\":[\"fixed\",\"auto\"]},\"s3Z6H9CLR\":{\"layout\":[\"fixed\",\"auto\"]},\"ag7ZHD9MQ\":{\"layout\":[\"fixed\",\"auto\"]},\"S_mE2JNgN\":{\"layout\":[\"fixed\",\"auto\"]},\"DZr1pd2uH\":{\"layout\":[\"fixed\",\"auto\"]},\"w_p6VfJBi\":{\"layout\":[\"fixed\",\"auto\"]},\"IJumCVBHt\":{\"layout\":[\"fixed\",\"auto\"]},\"oRq3lRXdB\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Yi6NSLUCI\":\"contentSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameriqndfx1y1=withCSS(Component,css,\"framer-LgFCi\");export default Frameriqndfx1y1;Frameriqndfx1y1.displayName=\"Galerie N\\xba3/02 Content\";Frameriqndfx1y1.defaultProps={height:270,width:974};addPropertyControls(Frameriqndfx1y1,{variant:{options:[\"x1VHsBWw9\",\"NraOgSiOy\",\"sclKQke6q\",\"DUkNfSbp3\",\"yS4Tp_C2Q\",\"s3Z6H9CLR\",\"ag7ZHD9MQ\",\"S_mE2JNgN\",\"DZr1pd2uH\",\"w_p6VfJBi\",\"IJumCVBHt\",\"oRq3lRXdB\"],optionTitles:[\"P1/Tab 1\",\"P1/Tab 2\",\"P1/Tab 3\",\"P1/Tab 4\",\"P2/Tab 1\",\"P2/Tab 2\",\"P2/Tab 3\",\"P2/Tab 4\",\"P3/Tab 1\",\"P3/Tab 2\",\"P3/Tab 3\",\"P3/Tab 4\"],title:\"Variant\",type:ControlType.Enum},Yi6NSLUCI:(GalerieN3ContentCellControls===null||GalerieN3ContentCellControls===void 0?void 0:GalerieN3ContentCellControls[\"variant\"])&&{...GalerieN3ContentCellControls[\"variant\"],defaultValue:\"vjFeuUetq\",description:undefined,hidden:undefined,title:\"contentSize\"}});addFonts(Frameriqndfx1y1,[{explicitInter:true,fonts:[]},...GalerieN3ContentCellFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameriqndfx1y1\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NraOgSiOy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sclKQke6q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DUkNfSbp3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yS4Tp_C2Q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"s3Z6H9CLR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ag7ZHD9MQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"S_mE2JNgN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DZr1pd2uH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w_p6VfJBi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IJumCVBHt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oRq3lRXdB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"270\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"Yi6NSLUCI\\\":\\\"contentSize\\\"}\",\"framerIntrinsicWidth\":\"974\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "export const v0=\"Plusieurs juridictions\";export const v1=\"Workflow flexibles\";export const v2=\"Investisseurs directs\";export const v3=\"Investisseurs interm\\xe9di\\xe9s\";export const v4=\"Explorateur d'entreprise\";export const v5=\"Plusieurs juridictions\";export const v6=\"Screening quotidien\";export const v7=\"Notation Personnalis\\xe9e\";export const v8=\"Vue d'ensemble\";export const v9=\"Workflow complexes\";export const v10=\"Int\\xe9grations techniques\";\nexport const __FramerMetadata__ = {\"exports\":{\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1f5f6d9)\nimport*as localizedValues from\"./keNjrFSSq-0.js\";const valuesByLocaleId={dC0rUWJM9:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b0164a3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/zDNisvYphtJ5tdUcvRU2/WGAzi1ura7obtK2VsF4v/AWQU7nX0y.js\";const cycleOrder=[\"Mc5P3d5Qk\",\"tRBUXpjBI\",\"uzEDWMBu_\"];const serializationHash=\"framer-jrnMo\";const variantClassNames={Mc5P3d5Qk:\"framer-v-zhp9k6\",tRBUXpjBI:\"framer-v-aob2un\",uzEDWMBu_:\"framer-v-1k0gutu\"};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={damping:60,delay:0,mass:1,stiffness:500,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 humanReadableVariantMap={hidden:\"uzEDWMBu_\",selected:\"Mc5P3d5Qk\",unselected:\"tRBUXpjBI\"};const getProps=({color,height,id,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,NFsi90V06:(_ref=color!==null&&color!==void 0?color:props.NFsi90V06)!==null&&_ref!==void 0?_ref:\"var(--token-79e35093-6216-419b-b240-7d1a6b64dc9f, rgb(208, 173, 106))\",OneCVm2r7:(_ref1=title!==null&&title!==void 0?title:props.OneCVm2r7)!==null&&_ref1!==void 0?_ref1:\"Flexible to your jurisidiction\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"Mc5P3d5Qk\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,OneCVm2r7,NFsi90V06,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Mc5P3d5Qk\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-zhp9k6\",className,classNames),\"data-framer-name\":\"selected\",layoutDependency:layoutDependency,layoutId:\"Mc5P3d5Qk\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},...addPropertyOverrides({tRBUXpjBI:{\"data-framer-name\":\"unselected\"},uzEDWMBu_:{\"data-framer-name\":\"hidden\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-11yb9wy\",\"data-styles-preset\":\"AWQU7nX0y\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--variable-reference-NFsi90V06-QkgItMsVb))\"},children:\"Flexible to your jurisidiction\"})}),className:\"framer-17au04v\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UHI6sYw_B\",style:{\"--extracted-1w1cjl5\":\"var(--variable-reference-NFsi90V06-QkgItMsVb)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-NFsi90V06-QkgItMsVb\":NFsi90V06},text:OneCVm2r7,variants:{tRBUXpjBI:{\"--extracted-1w1cjl5\":\"var(--token-43d2da8e-3dbc-409e-8bc7-3d3835e600e5, rgb(255, 255, 255))\"},uzEDWMBu_:{\"--extracted-1w1cjl5\":\"rgba(1, 165, 196, 0)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({tRBUXpjBI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-11yb9wy\",\"data-styles-preset\":\"AWQU7nX0y\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-43d2da8e-3dbc-409e-8bc7-3d3835e600e5, rgb(255, 255, 255)))\"},children:\"Flexible to your jurisidiction\"})})},uzEDWMBu_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-11yb9wy\",\"data-styles-preset\":\"AWQU7nX0y\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgba(1, 165, 196, 0))\"},children:\"Flexible to your jurisidiction\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jrnMo.framer-1jmjws7, .framer-jrnMo .framer-1jmjws7 { display: block; }\",\".framer-jrnMo.framer-zhp9k6 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 20px 10px 20px; position: relative; width: 254px; will-change: var(--framer-will-change-override, transform); }\",\".framer-jrnMo .framer-17au04v { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jrnMo.framer-zhp9k6 { gap: 0px; } .framer-jrnMo.framer-zhp9k6 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-jrnMo.framer-zhp9k6 > :first-child { margin-left: 0px; } .framer-jrnMo.framer-zhp9k6 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 254\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"tRBUXpjBI\":{\"layout\":[\"fixed\",\"auto\"]},\"uzEDWMBu_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"OneCVm2r7\":\"title\",\"NFsi90V06\":\"color\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQkgItMsVb=withCSS(Component,css,\"framer-jrnMo\");export default FramerQkgItMsVb;FramerQkgItMsVb.displayName=\"Galerie N\\xba3/tabCell\";FramerQkgItMsVb.defaultProps={height:42,width:254};addPropertyControls(FramerQkgItMsVb,{variant:{options:[\"Mc5P3d5Qk\",\"tRBUXpjBI\",\"uzEDWMBu_\"],optionTitles:[\"selected\",\"unselected\",\"hidden\"],title:\"Variant\",type:ControlType.Enum},OneCVm2r7:{defaultValue:\"Flexible to your jurisidiction\",displayTextArea:false,title:\"Title\",type:ControlType.String},NFsi90V06:{defaultValue:\"var(--token-79e35093-6216-419b-b240-7d1a6b64dc9f, rgb(208, 173, 106))\",title:\"Color\",type:ControlType.Color}});addFonts(FramerQkgItMsVb,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQkgItMsVb\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tRBUXpjBI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uzEDWMBu_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"OneCVm2r7\\\":\\\"title\\\",\\\"NFsi90V06\\\":\\\"color\\\"}\",\"framerIntrinsicWidth\":\"254\",\"framerIntrinsicHeight\":\"42\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QkgItMsVb.map", "// Generated by Framer (1f5f6d9)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import getLocalizedValue from\"https://framerusercontent.com/modules/qQyHUxuEIsiVBaId4dQt/zjC3N2ao0RZOQOqqdJEa/keNjrFSSq.js\";import GalerieN3TabCell from\"https://framerusercontent.com/modules/4JFZ9bTGdATtySAC9Hvs/iPB1m1v3Tq2OunMCcJ0q/QkgItMsVb.js\";const GalerieN3TabCellFonts=getFonts(GalerieN3TabCell);const GalerieN3TabCellControls=getPropertyControls(GalerieN3TabCell);const cycleOrder=[\"QfFi6eGqa\",\"V3zEjlHSc\",\"f3YqWTAWX\",\"RDo0NqJcP\",\"WIkvrAKWu\",\"C6bhW38VO\",\"y4p6tVB55\",\"nFMbcmlO4\",\"IqppH6rLy\",\"ruFoXlRM6\",\"xi8PUg6Pz\",\"cCcdHcBfy\"];const serializationHash=\"framer-j2YGc\";const variantClassNames={C6bhW38VO:\"framer-v-1gbl8z7\",cCcdHcBfy:\"framer-v-1m37rio\",f3YqWTAWX:\"framer-v-1sfc628\",IqppH6rLy:\"framer-v-vjk2iv\",nFMbcmlO4:\"framer-v-s9zyk0\",QfFi6eGqa:\"framer-v-pjhfm3\",RDo0NqJcP:\"framer-v-13m042m\",ruFoXlRM6:\"framer-v-68caqb\",V3zEjlHSc:\"framer-v-1257rg4\",WIkvrAKWu:\"framer-v-1hqj4nl\",xi8PUg6Pz:\"framer-v-1fre5h0\",y4p6tVB55:\"framer-v-d1mtkz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={hidden:\"uzEDWMBu_\",selected:\"Mc5P3d5Qk\",unselected:\"tRBUXpjBI\"};const humanReadableVariantMap={\"P1/Tab 1\":\"QfFi6eGqa\",\"P1/Tab 2\":\"V3zEjlHSc\",\"P1/Tab 3\":\"f3YqWTAWX\",\"P1/Tab 4\":\"RDo0NqJcP\",\"P2/Tab 1\":\"WIkvrAKWu\",\"P2/Tab 2\":\"C6bhW38VO\",\"P2/Tab 3\":\"y4p6tVB55\",\"P2/Tab 4\":\"nFMbcmlO4\",\"P3/Tab 1\":\"IqppH6rLy\",\"P3/Tab 2\":\"ruFoXlRM6\",\"P3/Tab 3\":\"xi8PUg6Pz\",\"P3/Tab 4\":\"cCcdHcBfy\"};const getProps=({height,id,tap,textColor,textState,width,...props})=>{return{...props,BkopVo3Ma:tap??props.BkopVo3Ma,G8m0SNDol:textColor??props.G8m0SNDol??\"var(--token-43d2da8e-3dbc-409e-8bc7-3d3835e600e5, rgb(255, 255, 255))\",HEVtn9fJ8:humanReadableEnumMap[textState]??textState??props.HEVtn9fJ8??\"Mc5P3d5Qk\",variant:humanReadableVariantMap[props.variant]??props.variant??\"QfFi6eGqa\"};};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,HEVtn9fJ8,BkopVo3Ma,G8m0SNDol,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QfFi6eGqa\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap95lkjf=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(BkopVo3Ma){const res=await BkopVo3Ma(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-pjhfm3\",className,classNames),\"data-framer-name\":\"P1/Tab 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"QfFi6eGqa\",onTap:onTap95lkjf,ref:refBinding,style:{...style},...addPropertyOverrides({C6bhW38VO:{\"data-framer-name\":\"P2/Tab 2\"},cCcdHcBfy:{\"data-framer-name\":\"P3/Tab 4\"},f3YqWTAWX:{\"data-framer-name\":\"P1/Tab 3\"},IqppH6rLy:{\"data-framer-name\":\"P3/Tab 1\"},nFMbcmlO4:{\"data-framer-name\":\"P2/Tab 4\"},RDo0NqJcP:{\"data-framer-name\":\"P1/Tab 4\"},ruFoXlRM6:{\"data-framer-name\":\"P3/Tab 2\"},V3zEjlHSc:{\"data-framer-name\":\"P1/Tab 2\"},WIkvrAKWu:{\"data-framer-name\":\"P2/Tab 1\"},xi8PUg6Pz:{\"data-framer-name\":\"P3/Tab 3\"},y4p6tVB55:{\"data-framer-name\":\"P2/Tab 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||42)-0-42)/2+0+0),...addPropertyOverrides({C6bhW38VO:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-42)/2+0+0)},cCcdHcBfy:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-42)/2+0+0)},f3YqWTAWX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-42)/2+0+0)},IqppH6rLy:{width:undefined,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-42)/2+0+0)},nFMbcmlO4:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-42)/2+0+0)},RDo0NqJcP:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-42)/2+0+0)},ruFoXlRM6:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-42)/2+0+0)},V3zEjlHSc:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-42)/2+0+0)},WIkvrAKWu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-42)/2+0+0)},xi8PUg6Pz:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-42)/2+0+0)},y4p6tVB55:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-42)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bz2epj-container\",layoutDependency:layoutDependency,layoutId:\"RMVXUTu0n-container\",nodeId:\"RMVXUTu0n\",rendersWithMotion:true,scopeId:\"keNjrFSSq\",children:/*#__PURE__*/_jsx(GalerieN3TabCell,{height:\"100%\",id:\"RMVXUTu0n\",layoutId:\"RMVXUTu0n\",NFsi90V06:G8m0SNDol,OneCVm2r7:getLocalizedValue(\"v0\",activeLocale)??\"Multiple jurisidictions\",style:{width:\"100%\"},variant:HEVtn9fJ8,width:\"100%\",...addPropertyOverrides({C6bhW38VO:{OneCVm2r7:getLocalizedValue(\"v5\",activeLocale)??\"Multiple jurisdictions\"},cCcdHcBfy:{OneCVm2r7:getLocalizedValue(\"v5\",activeLocale)??\"Multiple jurisdictions\"},f3YqWTAWX:{OneCVm2r7:getLocalizedValue(\"v2\",activeLocale)??\"Direct Investors\"},IqppH6rLy:{OneCVm2r7:getLocalizedValue(\"v8\",activeLocale)??\"Global Overview\"},nFMbcmlO4:{OneCVm2r7:getLocalizedValue(\"v7\",activeLocale)??\"Customized Scoring\"},RDo0NqJcP:{OneCVm2r7:getLocalizedValue(\"v3\",activeLocale)??\"Intermediated Investors\"},ruFoXlRM6:{OneCVm2r7:getLocalizedValue(\"v9\",activeLocale)??\"Complex workflows\"},V3zEjlHSc:{OneCVm2r7:getLocalizedValue(\"v1\",activeLocale)??\"Flexible workflows\"},WIkvrAKWu:{OneCVm2r7:getLocalizedValue(\"v4\",activeLocale)??\"Corporate Explorer\"},xi8PUg6Pz:{OneCVm2r7:getLocalizedValue(\"v10\",activeLocale)??\"Technical Integrations\"},y4p6tVB55:{OneCVm2r7:getLocalizedValue(\"v6\",activeLocale)??\"Daily Screening\"}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-j2YGc.framer-2iifsr, .framer-j2YGc .framer-2iifsr { display: block; }\",\".framer-j2YGc.framer-pjhfm3 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 254px; }\",\".framer-j2YGc .framer-1bz2epj-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-j2YGc.framer-pjhfm3 { gap: 0px; } .framer-j2YGc.framer-pjhfm3 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-j2YGc.framer-pjhfm3 > :first-child { margin-top: 0px; } .framer-j2YGc.framer-pjhfm3 > :last-child { margin-bottom: 0px; } }\",\".framer-j2YGc.framer-v-1gbl8z7.framer-pjhfm3, .framer-j2YGc.framer-v-d1mtkz.framer-pjhfm3, .framer-j2YGc.framer-v-s9zyk0.framer-pjhfm3, .framer-j2YGc.framer-v-vjk2iv.framer-pjhfm3, .framer-j2YGc.framer-v-68caqb.framer-pjhfm3, .framer-j2YGc.framer-v-1fre5h0.framer-pjhfm3, .framer-j2YGc.framer-v-1m37rio.framer-pjhfm3 { width: min-content; }\",\".framer-j2YGc.framer-v-1gbl8z7 .framer-1bz2epj-container, .framer-j2YGc.framer-v-d1mtkz .framer-1bz2epj-container, .framer-j2YGc.framer-v-s9zyk0 .framer-1bz2epj-container, .framer-j2YGc.framer-v-68caqb .framer-1bz2epj-container, .framer-j2YGc.framer-v-1fre5h0 .framer-1bz2epj-container, .framer-j2YGc.framer-v-1m37rio .framer-1bz2epj-container { align-self: stretch; width: auto; }\",\".framer-j2YGc.framer-v-vjk2iv .framer-1bz2epj-container { width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 254\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"V3zEjlHSc\":{\"layout\":[\"fixed\",\"auto\"]},\"f3YqWTAWX\":{\"layout\":[\"fixed\",\"auto\"]},\"RDo0NqJcP\":{\"layout\":[\"fixed\",\"auto\"]},\"WIkvrAKWu\":{\"layout\":[\"fixed\",\"auto\"]},\"C6bhW38VO\":{\"layout\":[\"auto\",\"auto\"]},\"y4p6tVB55\":{\"layout\":[\"auto\",\"auto\"]},\"nFMbcmlO4\":{\"layout\":[\"auto\",\"auto\"]},\"IqppH6rLy\":{\"layout\":[\"auto\",\"auto\"]},\"ruFoXlRM6\":{\"layout\":[\"auto\",\"auto\"]},\"xi8PUg6Pz\":{\"layout\":[\"auto\",\"auto\"]},\"cCcdHcBfy\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"HEVtn9fJ8\":\"textState\",\"BkopVo3Ma\":\"tap\",\"G8m0SNDol\":\"textColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkeNjrFSSq=withCSS(Component,css,\"framer-j2YGc\");export default FramerkeNjrFSSq;FramerkeNjrFSSq.displayName=\"Galerie N\\xba3/04 TabCellNamed\";FramerkeNjrFSSq.defaultProps={height:42,width:254};addPropertyControls(FramerkeNjrFSSq,{variant:{options:[\"QfFi6eGqa\",\"V3zEjlHSc\",\"f3YqWTAWX\",\"RDo0NqJcP\",\"WIkvrAKWu\",\"C6bhW38VO\",\"y4p6tVB55\",\"nFMbcmlO4\",\"IqppH6rLy\",\"ruFoXlRM6\",\"xi8PUg6Pz\",\"cCcdHcBfy\"],optionTitles:[\"P1/Tab 1\",\"P1/Tab 2\",\"P1/Tab 3\",\"P1/Tab 4\",\"P2/Tab 1\",\"P2/Tab 2\",\"P2/Tab 3\",\"P2/Tab 4\",\"P3/Tab 1\",\"P3/Tab 2\",\"P3/Tab 3\",\"P3/Tab 4\"],title:\"Variant\",type:ControlType.Enum},HEVtn9fJ8:GalerieN3TabCellControls?.[\"variant\"]&&{...GalerieN3TabCellControls[\"variant\"],defaultValue:\"Mc5P3d5Qk\",description:undefined,hidden:undefined,title:\"textState\"},BkopVo3Ma:{title:\"Tap\",type:ControlType.EventHandler},G8m0SNDol:{defaultValue:'var(--token-43d2da8e-3dbc-409e-8bc7-3d3835e600e5, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',title:\"textColor\",type:ControlType.Color}});addFonts(FramerkeNjrFSSq,[{explicitInter:true,fonts:[]},...GalerieN3TabCellFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkeNjrFSSq\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"V3zEjlHSc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f3YqWTAWX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RDo0NqJcP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WIkvrAKWu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C6bhW38VO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"y4p6tVB55\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"nFMbcmlO4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"IqppH6rLy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ruFoXlRM6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xi8PUg6Pz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cCcdHcBfy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"254\",\"framerVariables\":\"{\\\"HEVtn9fJ8\\\":\\\"textState\\\",\\\"BkopVo3Ma\\\":\\\"tap\\\",\\\"G8m0SNDol\\\":\\\"textColor\\\"}\",\"framerIntrinsicHeight\":\"42\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1f5f6d9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/oeG9jlYDvTFh0no0QA3z/Izf4nlGQHD58X6mFVd47/J645tUUow.js\";import Other01SlideIndicator from\"https://framerusercontent.com/modules/Y3HJBA1ntOOY0wegztDY/gmzpYw98Ui7y61rgH5Yn/C1kV_8Krw.js\";import GalerieN302Content from\"https://framerusercontent.com/modules/oYtM229R59xIsHAfDM7x/xS87sRR6Mg48kyYFpmF3/iqndfx1y1.js\";import GalerieN304TabCellNamed from\"https://framerusercontent.com/modules/WNNA1GEeV5ZUkDsjIw7w/UlgGcASBC4ZDAykzjczC/keNjrFSSq.js\";const GalerieN304TabCellNamedFonts=getFonts(GalerieN304TabCellNamed);const GalerieN302ContentFonts=getFonts(GalerieN302Content);const PhosphorFonts=getFonts(Phosphor);const Other01SlideIndicatorFonts=getFonts(Other01SlideIndicator);const cycleOrder=[\"zhEX8kara\",\"FGzhcc59W\",\"LBTG7OyEo\",\"odez4P46s\",\"Ey8hWSv8Z\",\"C0tkX4ku2\",\"LdTr60c1x\",\"Cr8AFhWns\",\"yoWoX_ZZW\",\"CPKrmaOAN\",\"ks6Cy2JRD\",\"pQjowkIpA\"];const serializationHash=\"framer-EdNHP\";const variantClassNames={C0tkX4ku2:\"framer-v-dculwp\",CPKrmaOAN:\"framer-v-1rzjhp6\",Cr8AFhWns:\"framer-v-rk5ng8\",Ey8hWSv8Z:\"framer-v-1yjwrwx\",FGzhcc59W:\"framer-v-xbi5gm\",ks6Cy2JRD:\"framer-v-ojcn39\",LBTG7OyEo:\"framer-v-1x1a44c\",LdTr60c1x:\"framer-v-t94n9p\",odez4P46s:\"framer-v-199p29s\",pQjowkIpA:\"framer-v-w9xd28\",yoWoX_ZZW:\"framer-v-98r0cu\",zhEX8kara:\"framer-v-acq9u2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"P1/Tab 1\":\"zhEX8kara\",\"P1/Tab 2\":\"FGzhcc59W\",\"P1/Tab 3\":\"LBTG7OyEo\",\"P1/Tab 4\":\"odez4P46s\",\"P2/Tab 1\":\"Ey8hWSv8Z\",\"P2/Tab 2\":\"C0tkX4ku2\",\"P2/Tab 3\":\"LdTr60c1x\",\"P2/Tab 4\":\"Cr8AFhWns\",\"P3/Tab 1\":\"yoWoX_ZZW\",\"P3/Tab 2\":\"CPKrmaOAN\",\"P3/Tab 3\":\"ks6Cy2JRD\",\"P3/Tab 4\":\"pQjowkIpA\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"zhEX8kara\"};};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:\"zhEX8kara\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap4zbyd6=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});});const onTap1pmc0ct=activeVariantCallback(async(...args)=>{setVariant(\"odez4P46s\");});const onTap1vixlv9=activeVariantCallback(async(...args)=>{setVariant(\"zhEX8kara\");});const onTap1wg5llg=activeVariantCallback(async(...args)=>{setVariant(\"FGzhcc59W\");});const onTap17wfwyo=activeVariantCallback(async(...args)=>{setVariant(\"LBTG7OyEo\");});const onTapharppa=activeVariantCallback(async(...args)=>{setVariant(\"Cr8AFhWns\");});const onTapi4fgr8=activeVariantCallback(async(...args)=>{setVariant(\"Ey8hWSv8Z\");});const onTapejubcj=activeVariantCallback(async(...args)=>{setVariant(\"C0tkX4ku2\");});const onTap9zhrct=activeVariantCallback(async(...args)=>{setVariant(\"LdTr60c1x\");});const onTap1b4c8v7=activeVariantCallback(async(...args)=>{setVariant(\"pQjowkIpA\");});const onTap133k160=activeVariantCallback(async(...args)=>{setVariant(\"yoWoX_ZZW\");});const onTapsq6eze=activeVariantCallback(async(...args)=>{setVariant(\"CPKrmaOAN\");});const onTapcfgkq9=activeVariantCallback(async(...args)=>{setVariant(\"ks6Cy2JRD\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"LBTG7OyEo\",\"odez4P46s\",\"LdTr60c1x\",\"Cr8AFhWns\",\"ks6Cy2JRD\",\"pQjowkIpA\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"LBTG7OyEo\",\"odez4P46s\",\"LdTr60c1x\",\"Cr8AFhWns\",\"ks6Cy2JRD\",\"pQjowkIpA\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"FGzhcc59W\",\"LBTG7OyEo\",\"odez4P46s\",\"C0tkX4ku2\",\"LdTr60c1x\",\"Cr8AFhWns\",\"CPKrmaOAN\",\"ks6Cy2JRD\",\"pQjowkIpA\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"odez4P46s\",\"Cr8AFhWns\",\"pQjowkIpA\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-acq9u2\",className,classNames),\"data-framer-name\":\"P1/Tab 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"zhEX8kara\",onTap:onTap4zbyd6,ref:refBinding,style:{...style},...addPropertyOverrides({C0tkX4ku2:{\"data-framer-name\":\"P2/Tab 2\"},CPKrmaOAN:{\"data-framer-name\":\"P3/Tab 2\"},Cr8AFhWns:{\"data-framer-name\":\"P2/Tab 4\"},Ey8hWSv8Z:{\"data-framer-name\":\"P2/Tab 1\"},FGzhcc59W:{\"data-framer-name\":\"P1/Tab 2\"},ks6Cy2JRD:{\"data-framer-name\":\"P3/Tab 3\"},LBTG7OyEo:{\"data-framer-name\":\"P1/Tab 3\"},LdTr60c1x:{\"data-framer-name\":\"P2/Tab 3\"},odez4P46s:{\"data-framer-name\":\"P1/Tab 4\"},pQjowkIpA:{\"data-framer-name\":\"P3/Tab 4\"},yoWoX_ZZW:{\"data-framer-name\":\"P3/Tab 1\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-nipekb\",layoutDependency:layoutDependency,layoutId:\"Hg2_PhnlT\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-478)/2+0+0)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1of4cxh-container\",layoutDependency:layoutDependency,layoutId:\"gAcQbaUd2-container\",nodeId:\"gAcQbaUd2\",rendersWithMotion:true,scopeId:\"J645tUUow\",children:/*#__PURE__*/_jsx(GalerieN304TabCellNamed,{G8m0SNDol:\"var(--token-79e35093-6216-419b-b240-7d1a6b64dc9f, rgb(208, 173, 106))\",height:\"100%\",HEVtn9fJ8:\"Mc5P3d5Qk\",id:\"gAcQbaUd2\",layoutId:\"gAcQbaUd2\",variant:\"QfFi6eGqa\",width:\"100%\",...addPropertyOverrides({C0tkX4ku2:{G8m0SNDol:\"var(--token-64ee76ba-3dde-4490-9cd8-a16a90e18181, rgb(129, 134, 191))\",variant:\"C6bhW38VO\"},CPKrmaOAN:{G8m0SNDol:\"var(--token-2c50c16a-25ed-42a7-b290-887d76309fc8, rgb(130, 174, 165))\",variant:\"ruFoXlRM6\"},Cr8AFhWns:{G8m0SNDol:\"var(--token-64ee76ba-3dde-4490-9cd8-a16a90e18181, rgb(129, 134, 191))\",variant:\"nFMbcmlO4\"},Ey8hWSv8Z:{G8m0SNDol:\"var(--token-64ee76ba-3dde-4490-9cd8-a16a90e18181, rgb(129, 134, 191))\",variant:\"WIkvrAKWu\"},FGzhcc59W:{variant:\"V3zEjlHSc\"},ks6Cy2JRD:{G8m0SNDol:\"var(--token-2c50c16a-25ed-42a7-b290-887d76309fc8, rgb(130, 174, 165))\",variant:\"xi8PUg6Pz\"},LBTG7OyEo:{variant:\"f3YqWTAWX\"},LdTr60c1x:{G8m0SNDol:\"var(--token-64ee76ba-3dde-4490-9cd8-a16a90e18181, rgb(129, 134, 191))\",variant:\"y4p6tVB55\"},odez4P46s:{variant:\"RDo0NqJcP\"},pQjowkIpA:{G8m0SNDol:\"var(--token-2c50c16a-25ed-42a7-b290-887d76309fc8, rgb(130, 174, 165))\",variant:\"cCcdHcBfy\"},yoWoX_ZZW:{G8m0SNDol:\"var(--token-2c50c16a-25ed-42a7-b290-887d76309fc8, rgb(130, 174, 165))\",variant:\"IqppH6rLy\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uytdtb\",layoutDependency:layoutDependency,layoutId:\"PT29FgOub\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-18l59y5\",\"data-framer-name\":\"Tab1\",layoutDependency:layoutDependency,layoutId:\"Yov2T2rBw\",style:{backgroundColor:\"var(--token-adce540d-1222-4d51-a2b1-22917d647235, rgb(245, 229, 196))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1px 40px 0px rgba(0, 0, 0, 0.09)\"},variants:{C0tkX4ku2:{backgroundColor:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\"},CPKrmaOAN:{backgroundColor:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\"},Ey8hWSv8Z:{backgroundColor:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\"},yoWoX_ZZW:{backgroundColor:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:270,width:`calc(${componentViewport?.width||\"100vw\"} - 106px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-478)/2+42+20)+0+28+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kos9jf-container\",layoutDependency:layoutDependency,layoutId:\"jBY06fLXS-container\",nodeId:\"jBY06fLXS\",rendersWithMotion:true,scopeId:\"J645tUUow\",children:/*#__PURE__*/_jsx(GalerieN302Content,{height:\"100%\",id:\"jBY06fLXS\",layoutId:\"jBY06fLXS\",style:{width:\"100%\"},variant:\"x1VHsBWw9\",width:\"100%\",Yi6NSLUCI:\"eylEMzAlJ\",...addPropertyOverrides({C0tkX4ku2:{variant:\"yS4Tp_C2Q\"},CPKrmaOAN:{variant:\"DZr1pd2uH\"},Ey8hWSv8Z:{variant:\"yS4Tp_C2Q\"},yoWoX_ZZW:{variant:\"DZr1pd2uH\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nco3al\",\"data-framer-name\":\"Tab2\",layoutDependency:layoutDependency,layoutId:\"mcHhJdqPn\",style:{backgroundColor:\"var(--token-adce540d-1222-4d51-a2b1-22917d647235, rgb(245, 229, 196))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1px 40px 0px rgba(0, 0, 0, 0.09)\"},variants:{C0tkX4ku2:{backgroundColor:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\"},CPKrmaOAN:{backgroundColor:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\"},Cr8AFhWns:{backgroundColor:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\"},Ey8hWSv8Z:{backgroundColor:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\"},ks6Cy2JRD:{backgroundColor:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\"},LdTr60c1x:{backgroundColor:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\"},pQjowkIpA:{backgroundColor:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\"},yoWoX_ZZW:{backgroundColor:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:270,width:`calc(${componentViewport?.width||\"100vw\"} - 106px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-478)/2+42+20)+0+28+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-br1z2r-container\",layoutDependency:layoutDependency,layoutId:\"do5BwgPXW-container\",nodeId:\"do5BwgPXW\",rendersWithMotion:true,scopeId:\"J645tUUow\",children:/*#__PURE__*/_jsx(GalerieN302Content,{height:\"100%\",id:\"do5BwgPXW\",layoutId:\"do5BwgPXW\",style:{width:\"100%\"},variant:\"NraOgSiOy\",width:\"100%\",Yi6NSLUCI:\"eylEMzAlJ\",...addPropertyOverrides({C0tkX4ku2:{variant:\"s3Z6H9CLR\"},CPKrmaOAN:{variant:\"w_p6VfJBi\"},Cr8AFhWns:{variant:\"s3Z6H9CLR\"},Ey8hWSv8Z:{variant:\"s3Z6H9CLR\"},ks6Cy2JRD:{variant:\"w_p6VfJBi\"},LdTr60c1x:{variant:\"s3Z6H9CLR\"},pQjowkIpA:{variant:\"w_p6VfJBi\"},yoWoX_ZZW:{variant:\"w_p6VfJBi\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-npdeal\",\"data-framer-name\":\"Tab3\",layoutDependency:layoutDependency,layoutId:\"ROe08iqnl\",style:{backgroundColor:\"var(--token-adce540d-1222-4d51-a2b1-22917d647235, rgb(245, 229, 196))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1px 40px 0px rgba(0, 0, 0, 0.09)\"},variants:{C0tkX4ku2:{backgroundColor:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\"},CPKrmaOAN:{backgroundColor:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\"},Cr8AFhWns:{backgroundColor:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\"},Ey8hWSv8Z:{backgroundColor:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\"},ks6Cy2JRD:{backgroundColor:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\"},LdTr60c1x:{backgroundColor:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\"},pQjowkIpA:{backgroundColor:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\"},yoWoX_ZZW:{backgroundColor:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:270,width:`calc(${componentViewport?.width||\"100vw\"} - 106px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-478)/2+42+20)+0+28+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-50hgnr-container\",layoutDependency:layoutDependency,layoutId:\"XLQNgEWWN-container\",nodeId:\"XLQNgEWWN\",rendersWithMotion:true,scopeId:\"J645tUUow\",children:/*#__PURE__*/_jsx(GalerieN302Content,{height:\"100%\",id:\"XLQNgEWWN\",layoutId:\"XLQNgEWWN\",style:{width:\"100%\"},variant:\"sclKQke6q\",width:\"100%\",Yi6NSLUCI:\"eylEMzAlJ\",...addPropertyOverrides({C0tkX4ku2:{variant:\"ag7ZHD9MQ\"},CPKrmaOAN:{variant:\"IJumCVBHt\"},Cr8AFhWns:{variant:\"ag7ZHD9MQ\"},Ey8hWSv8Z:{variant:\"ag7ZHD9MQ\"},ks6Cy2JRD:{variant:\"IJumCVBHt\"},LdTr60c1x:{variant:\"ag7ZHD9MQ\"},pQjowkIpA:{variant:\"IJumCVBHt\"},yoWoX_ZZW:{variant:\"IJumCVBHt\"}},baseVariant,gestureVariant)})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1en9omj\",\"data-framer-name\":\"Tab4\",layoutDependency:layoutDependency,layoutId:\"N9HQihl7d\",style:{backgroundColor:\"var(--token-adce540d-1222-4d51-a2b1-22917d647235, rgb(245, 229, 196))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1px 40px 0px rgba(0, 0, 0, 0.09)\"},variants:{Cr8AFhWns:{backgroundColor:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\"},ks6Cy2JRD:{backgroundColor:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\"},LdTr60c1x:{backgroundColor:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\"},pQjowkIpA:{backgroundColor:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:270,...addPropertyOverrides({Cr8AFhWns:{width:`calc(${componentViewport?.width||\"100vw\"} - 106px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-478)/2+42+20)+0+28+0},ks6Cy2JRD:{width:`calc(${componentViewport?.width||\"100vw\"} - 106px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-478)/2+42+20)+0+28+0},LBTG7OyEo:{width:`calc(${componentViewport?.width||\"100vw\"} - 106px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-478)/2+42+20)+0+28+0},LdTr60c1x:{width:`calc(${componentViewport?.width||\"100vw\"} - 106px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-478)/2+42+20)+0+28+0},odez4P46s:{width:`calc(${componentViewport?.width||\"100vw\"} - 106px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-478)/2+42+20)+0+28+0},pQjowkIpA:{width:`calc(${componentViewport?.width||\"100vw\"} - 106px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-478)/2+42+20)+0+28+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ehinvd-container\",layoutDependency:layoutDependency,layoutId:\"Oj0vlqqAO-container\",nodeId:\"Oj0vlqqAO\",rendersWithMotion:true,scopeId:\"J645tUUow\",children:/*#__PURE__*/_jsx(GalerieN302Content,{height:\"100%\",id:\"Oj0vlqqAO\",layoutId:\"Oj0vlqqAO\",style:{width:\"100%\"},variant:\"DUkNfSbp3\",width:\"100%\",Yi6NSLUCI:\"eylEMzAlJ\",...addPropertyOverrides({Cr8AFhWns:{variant:\"S_mE2JNgN\"},ks6Cy2JRD:{variant:\"oRq3lRXdB\"},LdTr60c1x:{variant:\"S_mE2JNgN\"},pQjowkIpA:{variant:\"oRq3lRXdB\"}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-skb1me\",layoutDependency:layoutDependency,layoutId:\"Ctz1c9LoT\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ubw6od\",layoutDependency:layoutDependency,layoutId:\"TUuGLaD04\",children:isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qbbsw8-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"kountbrR1-container\",nodeId:\"kountbrR1\",rendersWithMotion:true,scopeId:\"J645tUUow\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-79e35093-6216-419b-b240-7d1a6b64dc9f, rgb(208, 173, 106))\",height:\"100%\",iconSearch:getLocalizedValue(\"v0\",activeLocale)??\"House\",iconSelection:\"ArrowCircleLeft\",id:\"kountbrR1\",layoutId:\"kountbrR1\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\",...addPropertyOverrides({C0tkX4ku2:{color:\"var(--token-64ee76ba-3dde-4490-9cd8-a16a90e18181, rgb(129, 134, 191))\",onClick:undefined},CPKrmaOAN:{color:\"var(--token-2c50c16a-25ed-42a7-b290-887d76309fc8, rgb(130, 174, 165))\",onClick:undefined},Cr8AFhWns:{color:\"var(--token-64ee76ba-3dde-4490-9cd8-a16a90e18181, rgb(129, 134, 191))\",onClick:undefined},FGzhcc59W:{onClick:undefined},ks6Cy2JRD:{color:\"var(--token-2c50c16a-25ed-42a7-b290-887d76309fc8, rgb(130, 174, 165))\",onClick:undefined},LBTG7OyEo:{onClick:undefined},LdTr60c1x:{color:\"var(--token-64ee76ba-3dde-4490-9cd8-a16a90e18181, rgb(129, 134, 191))\",onClick:undefined},odez4P46s:{onClick:undefined},pQjowkIpA:{color:\"var(--token-2c50c16a-25ed-42a7-b290-887d76309fc8, rgb(130, 174, 165))\",onClick:undefined}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7e34wf-container\",layoutDependency:layoutDependency,layoutId:\"DUdLtZz0v-container\",nodeId:\"DUdLtZz0v\",rendersWithMotion:true,scopeId:\"J645tUUow\",children:/*#__PURE__*/_jsx(Other01SlideIndicator,{Dyeu5P1hW:false,G6905kWWB:true,height:\"100%\",iCjpS7Fkh:\"var(--token-79e35093-6216-419b-b240-7d1a6b64dc9f, rgb(208, 173, 106))\",id:\"DUdLtZz0v\",layoutId:\"DUdLtZz0v\",p_TUkrUYn:\"var(--token-adce540d-1222-4d51-a2b1-22917d647235, rgb(245, 229, 196))\",style:{height:\"100%\"},UpuUjswDC:false,variant:\"sRFtZxCGn\",width:\"100%\",...addPropertyOverrides({C0tkX4ku2:{iCjpS7Fkh:\"var(--token-64ee76ba-3dde-4490-9cd8-a16a90e18181, rgb(129, 134, 191))\",p_TUkrUYn:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\",variant:\"P9B40kA_X\"},CPKrmaOAN:{iCjpS7Fkh:\"var(--token-2c50c16a-25ed-42a7-b290-887d76309fc8, rgb(130, 174, 165))\",p_TUkrUYn:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\",variant:\"P9B40kA_X\"},Cr8AFhWns:{iCjpS7Fkh:\"var(--token-64ee76ba-3dde-4490-9cd8-a16a90e18181, rgb(129, 134, 191))\",p_TUkrUYn:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\",variant:\"iW96LfduI\"},Ey8hWSv8Z:{iCjpS7Fkh:\"var(--token-64ee76ba-3dde-4490-9cd8-a16a90e18181, rgb(129, 134, 191))\",p_TUkrUYn:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\"},FGzhcc59W:{variant:\"P9B40kA_X\"},ks6Cy2JRD:{iCjpS7Fkh:\"var(--token-2c50c16a-25ed-42a7-b290-887d76309fc8, rgb(130, 174, 165))\",p_TUkrUYn:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\",variant:\"p1xtueJPQ\"},LBTG7OyEo:{variant:\"p1xtueJPQ\"},LdTr60c1x:{iCjpS7Fkh:\"var(--token-64ee76ba-3dde-4490-9cd8-a16a90e18181, rgb(129, 134, 191))\",p_TUkrUYn:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\",variant:\"p1xtueJPQ\"},odez4P46s:{variant:\"iW96LfduI\"},pQjowkIpA:{iCjpS7Fkh:\"var(--token-2c50c16a-25ed-42a7-b290-887d76309fc8, rgb(130, 174, 165))\",p_TUkrUYn:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\",variant:\"iW96LfduI\"},yoWoX_ZZW:{iCjpS7Fkh:\"var(--token-2c50c16a-25ed-42a7-b290-887d76309fc8, rgb(130, 174, 165))\",p_TUkrUYn:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17fap2j\",layoutDependency:layoutDependency,layoutId:\"K9BTrI3s7\",children:isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1oxa8un-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"LzcZnptnJ-container\",nodeId:\"LzcZnptnJ\",rendersWithMotion:true,scopeId:\"J645tUUow\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-79e35093-6216-419b-b240-7d1a6b64dc9f, rgb(208, 173, 106))\",height:\"100%\",iconSearch:getLocalizedValue(\"v0\",activeLocale)??\"House\",iconSelection:\"ArrowCircleRight\",id:\"LzcZnptnJ\",layoutId:\"LzcZnptnJ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\",...addPropertyOverrides({C0tkX4ku2:{color:\"var(--token-64ee76ba-3dde-4490-9cd8-a16a90e18181, rgb(129, 134, 191))\"},CPKrmaOAN:{color:\"var(--token-2c50c16a-25ed-42a7-b290-887d76309fc8, rgb(130, 174, 165))\"},Ey8hWSv8Z:{color:\"var(--token-64ee76ba-3dde-4490-9cd8-a16a90e18181, rgb(129, 134, 191))\"},ks6Cy2JRD:{color:\"var(--token-2c50c16a-25ed-42a7-b290-887d76309fc8, rgb(130, 174, 165))\"},LdTr60c1x:{color:\"var(--token-64ee76ba-3dde-4490-9cd8-a16a90e18181, rgb(129, 134, 191))\"},yoWoX_ZZW:{color:\"var(--token-2c50c16a-25ed-42a7-b290-887d76309fc8, rgb(130, 174, 165))\"}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v5ehyg\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"fSarNEkNH\",onTap:onTap1pmc0ct,...addPropertyOverrides({C0tkX4ku2:{onTap:onTapi4fgr8},CPKrmaOAN:{onTap:onTap133k160},Cr8AFhWns:{onTap:onTap9zhrct},Ey8hWSv8Z:{onTap:onTapharppa},FGzhcc59W:{onTap:onTap1vixlv9},ks6Cy2JRD:{onTap:onTapsq6eze},LBTG7OyEo:{onTap:onTap1wg5llg},LdTr60c1x:{onTap:onTapejubcj},odez4P46s:{onTap:onTap17wfwyo},pQjowkIpA:{onTap:onTapcfgkq9},yoWoX_ZZW:{onTap:onTap1b4c8v7}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tmuv0n\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"BnqzlPkl7\",onTap:onTap1wg5llg,...addPropertyOverrides({C0tkX4ku2:{onTap:onTap9zhrct},CPKrmaOAN:{onTap:onTapcfgkq9},Cr8AFhWns:{onTap:onTapi4fgr8},Ey8hWSv8Z:{onTap:onTapejubcj},FGzhcc59W:{onTap:onTap17wfwyo},ks6Cy2JRD:{onTap:onTap1b4c8v7},LBTG7OyEo:{onTap:onTap1pmc0ct},LdTr60c1x:{onTap:onTapharppa},odez4P46s:{onTap:onTap1vixlv9},pQjowkIpA:{onTap:onTap133k160},yoWoX_ZZW:{onTap:onTapsq6eze}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EdNHP.framer-197n9q0, .framer-EdNHP .framer-197n9q0 { display: block; }\",\".framer-EdNHP.framer-acq9u2 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 390px; }\",\".framer-EdNHP .framer-nipekb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EdNHP .framer-1of4cxh-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-EdNHP .framer-uytdtb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 25px 0px 25px; position: relative; width: 100%; }\",\".framer-EdNHP .framer-18l59y5, .framer-EdNHP .framer-1nco3al, .framer-EdNHP .framer-npdeal, .framer-EdNHP .framer-1en9omj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 28px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-EdNHP .framer-kos9jf-container, .framer-EdNHP .framer-br1z2r-container, .framer-EdNHP .framer-50hgnr-container, .framer-EdNHP .framer-1ehinvd-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-EdNHP .framer-skb1me { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EdNHP .framer-ubw6od, .framer-EdNHP .framer-17fap2j { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 70px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 70px; }\",\".framer-EdNHP .framer-qbbsw8-container, .framer-EdNHP .framer-1oxa8un-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-EdNHP .framer-7e34wf-container { flex: none; height: 19px; position: relative; width: auto; }\",\".framer-EdNHP .framer-1v5ehyg { cursor: pointer; flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 50%; z-index: 1; }\",\".framer-EdNHP .framer-1tmuv0n { cursor: pointer; flex: none; height: 100%; overflow: hidden; position: absolute; right: 0px; top: calc(49.95196926032663% - 100.09606147934677% / 2); width: 50%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EdNHP.framer-acq9u2, .framer-EdNHP .framer-nipekb, .framer-EdNHP .framer-uytdtb, .framer-EdNHP .framer-18l59y5, .framer-EdNHP .framer-1nco3al, .framer-EdNHP .framer-npdeal, .framer-EdNHP .framer-1en9omj, .framer-EdNHP .framer-skb1me, .framer-EdNHP .framer-ubw6od, .framer-EdNHP .framer-17fap2j { gap: 0px; } .framer-EdNHP.framer-acq9u2 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-EdNHP.framer-acq9u2 > :first-child, .framer-EdNHP .framer-18l59y5 > :first-child, .framer-EdNHP .framer-1nco3al > :first-child, .framer-EdNHP .framer-npdeal > :first-child, .framer-EdNHP .framer-1en9omj > :first-child { margin-top: 0px; } .framer-EdNHP.framer-acq9u2 > :last-child, .framer-EdNHP .framer-18l59y5 > :last-child, .framer-EdNHP .framer-1nco3al > :last-child, .framer-EdNHP .framer-npdeal > :last-child, .framer-EdNHP .framer-1en9omj > :last-child { margin-bottom: 0px; } .framer-EdNHP .framer-nipekb > *, .framer-EdNHP .framer-ubw6od > *, .framer-EdNHP .framer-17fap2j > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-EdNHP .framer-nipekb > :first-child, .framer-EdNHP .framer-uytdtb > :first-child, .framer-EdNHP .framer-skb1me > :first-child, .framer-EdNHP .framer-ubw6od > :first-child, .framer-EdNHP .framer-17fap2j > :first-child { margin-left: 0px; } .framer-EdNHP .framer-nipekb > :last-child, .framer-EdNHP .framer-uytdtb > :last-child, .framer-EdNHP .framer-skb1me > :last-child, .framer-EdNHP .framer-ubw6od > :last-child, .framer-EdNHP .framer-17fap2j > :last-child { margin-right: 0px; } .framer-EdNHP .framer-uytdtb > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-EdNHP .framer-18l59y5 > *, .framer-EdNHP .framer-1nco3al > *, .framer-EdNHP .framer-npdeal > *, .framer-EdNHP .framer-1en9omj > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-EdNHP .framer-skb1me > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",\".framer-EdNHP.framer-v-xbi5gm .framer-uytdtb, .framer-EdNHP.framer-v-1x1a44c .framer-uytdtb, .framer-EdNHP.framer-v-dculwp .framer-uytdtb, .framer-EdNHP.framer-v-t94n9p .framer-uytdtb, .framer-EdNHP.framer-v-1rzjhp6 .framer-uytdtb, .framer-EdNHP.framer-v-ojcn39 .framer-uytdtb { justify-content: center; }\",\".framer-EdNHP.framer-v-199p29s .framer-uytdtb, .framer-EdNHP.framer-v-rk5ng8 .framer-uytdtb, .framer-EdNHP.framer-v-w9xd28 .framer-uytdtb { justify-content: flex-end; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 544\n * @framerIntrinsicWidth 390\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FGzhcc59W\":{\"layout\":[\"fixed\",\"auto\"]},\"LBTG7OyEo\":{\"layout\":[\"fixed\",\"auto\"]},\"odez4P46s\":{\"layout\":[\"fixed\",\"auto\"]},\"Ey8hWSv8Z\":{\"layout\":[\"fixed\",\"auto\"]},\"C0tkX4ku2\":{\"layout\":[\"fixed\",\"auto\"]},\"LdTr60c1x\":{\"layout\":[\"fixed\",\"auto\"]},\"Cr8AFhWns\":{\"layout\":[\"fixed\",\"auto\"]},\"yoWoX_ZZW\":{\"layout\":[\"fixed\",\"auto\"]},\"CPKrmaOAN\":{\"layout\":[\"fixed\",\"auto\"]},\"ks6Cy2JRD\":{\"layout\":[\"fixed\",\"auto\"]},\"pQjowkIpA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJ645tUUow=withCSS(Component,css,\"framer-EdNHP\");export default FramerJ645tUUow;FramerJ645tUUow.displayName=\"Galerie N\\xba3/01 Galerie S\";FramerJ645tUUow.defaultProps={height:544,width:390};addPropertyControls(FramerJ645tUUow,{variant:{options:[\"zhEX8kara\",\"FGzhcc59W\",\"LBTG7OyEo\",\"odez4P46s\",\"Ey8hWSv8Z\",\"C0tkX4ku2\",\"LdTr60c1x\",\"Cr8AFhWns\",\"yoWoX_ZZW\",\"CPKrmaOAN\",\"ks6Cy2JRD\",\"pQjowkIpA\"],optionTitles:[\"P1/Tab 1\",\"P1/Tab 2\",\"P1/Tab 3\",\"P1/Tab 4\",\"P2/Tab 1\",\"P2/Tab 2\",\"P2/Tab 3\",\"P2/Tab 4\",\"P3/Tab 1\",\"P3/Tab 2\",\"P3/Tab 3\",\"P3/Tab 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerJ645tUUow,[{explicitInter:true,fonts:[]},...GalerieN304TabCellNamedFonts,...GalerieN302ContentFonts,...PhosphorFonts,...Other01SlideIndicatorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJ645tUUow\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"544\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FGzhcc59W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LBTG7OyEo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"odez4P46s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ey8hWSv8Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C0tkX4ku2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LdTr60c1x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Cr8AFhWns\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yoWoX_ZZW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CPKrmaOAN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ks6Cy2JRD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pQjowkIpA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"390\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1a6990e)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useConstant,useIsOnFramerCanvas,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"GWQIfFc_R\",\"sZgRNgOJ6\"];const serializationHash=\"framer-lFnZG\";const variantClassNames={GWQIfFc_R:\"framer-v-12wni2w\",sZgRNgOJ6:\"framer-v-st27sc\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,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 humanReadableVariantMap={hidden:\"sZgRNgOJ6\",selected:\"GWQIfFc_R\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"GWQIfFc_R\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"GWQIfFc_R\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isOnCanvas=useIsOnFramerCanvas();const initialVariant=useConstant(()=>variant);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-12wni2w\",className,classNames),\"data-framer-name\":\"selected\",initial:isOnCanvas?variant:initialVariant,layoutDependency:layoutDependency,layoutId:\"GWQIfFc_R\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-43d2da8e-3dbc-409e-8bc7-3d3835e600e5, rgb(255, 255, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{sZgRNgOJ6:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({sZgRNgOJ6:{\"data-framer-name\":\"hidden\"}},baseVariant,gestureVariant)})})});});const css=['.framer-lFnZG[data-border=\"true\"]::after, .framer-lFnZG [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lFnZG.framer-dsn04y, .framer-lFnZG .framer-dsn04y { display: block; }\",\".framer-lFnZG.framer-12wni2w { height: 59px; overflow: hidden; position: relative; width: 231px; will-change: var(--framer-will-change-override, transform); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 59\n * @framerIntrinsicWidth 231\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"sZgRNgOJ6\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerpS9Ajfotc=withCSS(Component,css,\"framer-lFnZG\");export default FramerpS9Ajfotc;FramerpS9Ajfotc.displayName=\"Galerie N\\xba3/tabCellRectangle\";FramerpS9Ajfotc.defaultProps={height:59,width:231};addPropertyControls(FramerpS9Ajfotc,{variant:{options:[\"GWQIfFc_R\",\"sZgRNgOJ6\"],optionTitles:[\"selected\",\"hidden\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerpS9Ajfotc,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpS9Ajfotc\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"59\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"231\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sZgRNgOJ6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pS9Ajfotc.map", "// Generated by Framer (55492a8)\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 GalerieN304TabCellNamed from\"https://framerusercontent.com/modules/WNNA1GEeV5ZUkDsjIw7w/UlgGcASBC4ZDAykzjczC/keNjrFSSq.js\";import GalerieN3TabCellRectangle from\"https://framerusercontent.com/modules/jGxaOv27UFt2H1IUseCz/R8RPQmypq9TQCNExMOfL/pS9Ajfotc.js\";const GalerieN3TabCellRectangleFonts=getFonts(GalerieN3TabCellRectangle);const GalerieN304TabCellNamedFonts=getFonts(GalerieN304TabCellNamed);const cycleOrder=[\"zVvbV6e9H\",\"Z5C37CVHb\",\"QBcZUp5Lo\",\"xj6_HoVzI\",\"BjtTpnHkD\",\"rq9j0SMME\",\"J8VcN8i0c\",\"DseXbS3zH\",\"lZj24XoHA\",\"eW4JCUQaI\",\"DO_nLkLY3\",\"bdsLgYO8i\"];const serializationHash=\"framer-NIOmf\";const variantClassNames={bdsLgYO8i:\"framer-v-nf4z6n\",BjtTpnHkD:\"framer-v-vdo7iq\",DO_nLkLY3:\"framer-v-anmgvb\",DseXbS3zH:\"framer-v-sljtay\",eW4JCUQaI:\"framer-v-1smqfr5\",J8VcN8i0c:\"framer-v-f8izvb\",lZj24XoHA:\"framer-v-95j0vz\",QBcZUp5Lo:\"framer-v-ppene1\",rq9j0SMME:\"framer-v-1xe6s8a\",xj6_HoVzI:\"framer-v-1kaxt68\",Z5C37CVHb:\"framer-v-1dt4p33\",zVvbV6e9H:\"framer-v-3ry685\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"P1/Tab 1\":\"zVvbV6e9H\",\"P1/Tab 2\":\"Z5C37CVHb\",\"P1/Tab 3\":\"QBcZUp5Lo\",\"P1/Tab 4\":\"xj6_HoVzI\",\"P2/Tab 1\":\"BjtTpnHkD\",\"P2/Tab 2\":\"rq9j0SMME\",\"P2/Tab 3\":\"J8VcN8i0c\",\"P2/Tab 4\":\"DseXbS3zH\",\"P3/Tab 1\":\"lZj24XoHA\",\"P3/Tab 2\":\"eW4JCUQaI\",\"P3/Tab 3\":\"DO_nLkLY3\",\"P3/Tab 4\":\"bdsLgYO8i\"};const getProps=({height,id,tab1,tab2,tab3,tab4,width,...props})=>{return{...props,hObUuSL7F:tab1??props.hObUuSL7F,MslXXjhNb:tab2??props.MslXXjhNb,qUWfvftPR:tab4??props.qUWfvftPR,variant:humanReadableVariantMap[props.variant]??props.variant??\"zVvbV6e9H\",vTQu9wFSo:tab3??props.vTQu9wFSo};};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,hObUuSL7F,MslXXjhNb,vTQu9wFSo,qUWfvftPR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zVvbV6e9H\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const BkopVo3Ma1h69rr5=activeVariantCallback(async(...args)=>{if(hObUuSL7F){const res=await hObUuSL7F(...args);if(res===false)return false;}});const BkopVo3Mabitlih=activeVariantCallback(async(...args)=>{if(MslXXjhNb){const res=await MslXXjhNb(...args);if(res===false)return false;}});const BkopVo3Mas7py3i=activeVariantCallback(async(...args)=>{if(vTQu9wFSo){const res=await vTQu9wFSo(...args);if(res===false)return false;}});const BkopVo3Mab66mfo=activeVariantCallback(async(...args)=>{if(qUWfvftPR){const res=await qUWfvftPR(...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??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-3ry685\",className,classNames),\"data-framer-name\":\"P1/Tab 1\",layoutDependency:layoutDependency,layoutId:\"zVvbV6e9H\",ref:ref??ref1,style:{backgroundColor:\"var(--token-79e35093-6216-419b-b240-7d1a6b64dc9f, rgb(208, 173, 106))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{bdsLgYO8i:{backgroundColor:\"var(--token-2c50c16a-25ed-42a7-b290-887d76309fc8, rgb(130, 174, 165))\"},BjtTpnHkD:{backgroundColor:\"var(--token-64ee76ba-3dde-4490-9cd8-a16a90e18181, rgb(129, 134, 191))\"},DO_nLkLY3:{backgroundColor:\"var(--token-2c50c16a-25ed-42a7-b290-887d76309fc8, rgb(130, 174, 165))\"},DseXbS3zH:{backgroundColor:\"var(--token-64ee76ba-3dde-4490-9cd8-a16a90e18181, rgb(129, 134, 191))\"},eW4JCUQaI:{backgroundColor:\"var(--token-2c50c16a-25ed-42a7-b290-887d76309fc8, rgb(130, 174, 165))\"},J8VcN8i0c:{backgroundColor:\"var(--token-64ee76ba-3dde-4490-9cd8-a16a90e18181, rgb(129, 134, 191))\"},lZj24XoHA:{backgroundColor:\"var(--token-2c50c16a-25ed-42a7-b290-887d76309fc8, rgb(130, 174, 165))\"},rq9j0SMME:{backgroundColor:\"var(--token-64ee76ba-3dde-4490-9cd8-a16a90e18181, rgb(129, 134, 191))\"}},...addPropertyOverrides({bdsLgYO8i:{\"data-framer-name\":\"P3/Tab 4\"},BjtTpnHkD:{\"data-framer-name\":\"P2/Tab 1\"},DO_nLkLY3:{\"data-framer-name\":\"P3/Tab 3\"},DseXbS3zH:{\"data-framer-name\":\"P2/Tab 4\"},eW4JCUQaI:{\"data-framer-name\":\"P3/Tab 2\"},J8VcN8i0c:{\"data-framer-name\":\"P2/Tab 3\"},lZj24XoHA:{\"data-framer-name\":\"P3/Tab 1\"},QBcZUp5Lo:{\"data-framer-name\":\"P1/Tab 3\"},rq9j0SMME:{\"data-framer-name\":\"P2/Tab 2\"},xj6_HoVzI:{\"data-framer-name\":\"P1/Tab 4\"},Z5C37CVHb:{\"data-framer-name\":\"P1/Tab 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x2i3qt\",layoutDependency:layoutDependency,layoutId:\"umOc9yEbi\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iuo69k\",\"data-framer-name\":\"selected\",layoutDependency:layoutDependency,layoutId:\"nZMPZklsk\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fsh7is-container\",layoutDependency:layoutDependency,layoutId:\"eSK5a8mB7-container\",children:/*#__PURE__*/_jsx(GalerieN3TabCellRectangle,{height:\"100%\",id:\"eSK5a8mB7\",layoutId:\"eSK5a8mB7\",style:{height:\"100%\",width:\"100%\"},variant:\"GWQIfFc_R\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+((componentViewport?.height||60)*.5000000000000002-31)+6+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9irhov-container\",layoutDependency:layoutDependency,layoutId:\"O5Uyf5wzT-container\",children:/*#__PURE__*/_jsx(GalerieN304TabCellNamed,{G8m0SNDol:\"var(--token-43d2da8e-3dbc-409e-8bc7-3d3835e600e5, rgb(255, 255, 255))\",height:\"100%\",HEVtn9fJ8:\"uzEDWMBu_\",id:\"O5Uyf5wzT\",layoutId:\"O5Uyf5wzT\",variant:\"QfFi6eGqa\",width:\"100%\",...addPropertyOverrides({bdsLgYO8i:{variant:\"cCcdHcBfy\"},BjtTpnHkD:{variant:\"WIkvrAKWu\"},DO_nLkLY3:{variant:\"xi8PUg6Pz\"},DseXbS3zH:{variant:\"nFMbcmlO4\"},eW4JCUQaI:{variant:\"ruFoXlRM6\"},J8VcN8i0c:{variant:\"y4p6tVB55\"},lZj24XoHA:{variant:\"IqppH6rLy\"},QBcZUp5Lo:{variant:\"f3YqWTAWX\"},rq9j0SMME:{variant:\"C6bhW38VO\"},xj6_HoVzI:{variant:\"RDo0NqJcP\"},Z5C37CVHb:{variant:\"V3zEjlHSc\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ucosmv\",\"data-framer-name\":\"hidden\",layoutDependency:layoutDependency,layoutId:\"i0w9yn6FW\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-oi3fvn-container\",layoutDependency:layoutDependency,layoutId:\"Jc_gpzNhs-container\",children:/*#__PURE__*/_jsx(GalerieN3TabCellRectangle,{height:\"100%\",id:\"Jc_gpzNhs\",layoutId:\"Jc_gpzNhs\",style:{height:\"100%\",width:\"100%\"},variant:\"sZgRNgOJ6\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+((componentViewport?.height||60)*.5000000000000002-31)+6+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m1boka-container\",layoutDependency:layoutDependency,layoutId:\"wsHe_Twzk-container\",children:/*#__PURE__*/_jsx(GalerieN304TabCellNamed,{G8m0SNDol:\"var(--token-43d2da8e-3dbc-409e-8bc7-3d3835e600e5, rgb(255, 255, 255))\",height:\"100%\",HEVtn9fJ8:\"uzEDWMBu_\",id:\"wsHe_Twzk\",layoutId:\"wsHe_Twzk\",variant:\"V3zEjlHSc\",width:\"100%\",...addPropertyOverrides({bdsLgYO8i:{variant:\"IqppH6rLy\"},BjtTpnHkD:{variant:\"C6bhW38VO\"},DO_nLkLY3:{variant:\"IqppH6rLy\"},DseXbS3zH:{variant:\"WIkvrAKWu\"},eW4JCUQaI:{variant:\"IqppH6rLy\"},J8VcN8i0c:{variant:\"WIkvrAKWu\"},lZj24XoHA:{variant:\"ruFoXlRM6\"},QBcZUp5Lo:{variant:\"QfFi6eGqa\"},rq9j0SMME:{variant:\"WIkvrAKWu\"},xj6_HoVzI:{variant:\"QfFi6eGqa\"},Z5C37CVHb:{variant:\"QfFi6eGqa\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zv4bpj\",\"data-framer-name\":\"hidden\",layoutDependency:layoutDependency,layoutId:\"iu3mDe_BG\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zqexl5-container\",layoutDependency:layoutDependency,layoutId:\"JD_dXiwTF-container\",children:/*#__PURE__*/_jsx(GalerieN3TabCellRectangle,{height:\"100%\",id:\"JD_dXiwTF\",layoutId:\"JD_dXiwTF\",style:{height:\"100%\",width:\"100%\"},variant:\"sZgRNgOJ6\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+((componentViewport?.height||60)*.5000000000000002-31)+6+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-u7ni3k-container\",layoutDependency:layoutDependency,layoutId:\"a_IHn8Kqh-container\",children:/*#__PURE__*/_jsx(GalerieN304TabCellNamed,{G8m0SNDol:\"var(--token-43d2da8e-3dbc-409e-8bc7-3d3835e600e5, rgb(255, 255, 255))\",height:\"100%\",HEVtn9fJ8:\"uzEDWMBu_\",id:\"a_IHn8Kqh\",layoutId:\"a_IHn8Kqh\",variant:\"f3YqWTAWX\",width:\"100%\",...addPropertyOverrides({bdsLgYO8i:{variant:\"ruFoXlRM6\"},BjtTpnHkD:{variant:\"y4p6tVB55\"},DO_nLkLY3:{variant:\"ruFoXlRM6\"},DseXbS3zH:{variant:\"C6bhW38VO\"},eW4JCUQaI:{variant:\"xi8PUg6Pz\"},J8VcN8i0c:{variant:\"C6bhW38VO\"},lZj24XoHA:{variant:\"xi8PUg6Pz\"},QBcZUp5Lo:{variant:\"V3zEjlHSc\"},rq9j0SMME:{variant:\"y4p6tVB55\"},xj6_HoVzI:{variant:\"V3zEjlHSc\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6bpit4\",\"data-framer-name\":\"hidden\",layoutDependency:layoutDependency,layoutId:\"Ru9m2fJ_G\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4p5yba-container\",layoutDependency:layoutDependency,layoutId:\"ncVlw2pWt-container\",children:/*#__PURE__*/_jsx(GalerieN3TabCellRectangle,{height:\"100%\",id:\"ncVlw2pWt\",layoutId:\"ncVlw2pWt\",style:{height:\"100%\",width:\"100%\"},variant:\"sZgRNgOJ6\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+((componentViewport?.height||60)*.5000000000000002-31)+6+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-b340sf-container\",layoutDependency:layoutDependency,layoutId:\"s0GvXKVxw-container\",children:/*#__PURE__*/_jsx(GalerieN304TabCellNamed,{G8m0SNDol:\"var(--token-43d2da8e-3dbc-409e-8bc7-3d3835e600e5, rgb(255, 255, 255))\",height:\"100%\",HEVtn9fJ8:\"uzEDWMBu_\",id:\"s0GvXKVxw\",layoutId:\"s0GvXKVxw\",variant:\"RDo0NqJcP\",width:\"100%\",...addPropertyOverrides({bdsLgYO8i:{variant:\"xi8PUg6Pz\"},BjtTpnHkD:{variant:\"nFMbcmlO4\"},DO_nLkLY3:{variant:\"cCcdHcBfy\"},DseXbS3zH:{variant:\"y4p6tVB55\"},eW4JCUQaI:{variant:\"cCcdHcBfy\"},J8VcN8i0c:{variant:\"nFMbcmlO4\"},lZj24XoHA:{variant:\"cCcdHcBfy\"},rq9j0SMME:{variant:\"nFMbcmlO4\"},xj6_HoVzI:{variant:\"f3YqWTAWX\"}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sjp1ok\",layoutDependency:layoutDependency,layoutId:\"UAiePJTdE\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:\"195px\",y:(componentViewport?.y||0)+((componentViewport?.height||60)*.5000000000000002-27)+6,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y4pj0n-container\",layoutDependency:layoutDependency,layoutId:\"HmU6Aluk9-container\",children:/*#__PURE__*/_jsx(GalerieN304TabCellNamed,{BkopVo3Ma:BkopVo3Ma1h69rr5,G8m0SNDol:\"var(--token-79e35093-6216-419b-b240-7d1a6b64dc9f, rgb(208, 173, 106))\",height:\"100%\",HEVtn9fJ8:\"Mc5P3d5Qk\",id:\"HmU6Aluk9\",layoutId:\"HmU6Aluk9\",style:{width:\"100%\"},variant:\"QfFi6eGqa\",width:\"100%\",...addPropertyOverrides({bdsLgYO8i:{HEVtn9fJ8:\"tRBUXpjBI\",variant:\"IqppH6rLy\"},BjtTpnHkD:{G8m0SNDol:\"var(--token-64ee76ba-3dde-4490-9cd8-a16a90e18181, rgb(129, 134, 191))\",variant:\"WIkvrAKWu\"},DO_nLkLY3:{HEVtn9fJ8:\"tRBUXpjBI\",variant:\"IqppH6rLy\"},DseXbS3zH:{HEVtn9fJ8:\"tRBUXpjBI\",variant:\"WIkvrAKWu\"},eW4JCUQaI:{HEVtn9fJ8:\"tRBUXpjBI\",variant:\"IqppH6rLy\"},J8VcN8i0c:{HEVtn9fJ8:\"tRBUXpjBI\",variant:\"WIkvrAKWu\"},lZj24XoHA:{G8m0SNDol:\"var(--token-2c50c16a-25ed-42a7-b290-887d76309fc8, rgb(130, 174, 165))\",variant:\"IqppH6rLy\"},QBcZUp5Lo:{HEVtn9fJ8:\"tRBUXpjBI\"},rq9j0SMME:{HEVtn9fJ8:\"tRBUXpjBI\",variant:\"WIkvrAKWu\"},xj6_HoVzI:{HEVtn9fJ8:\"tRBUXpjBI\"},Z5C37CVHb:{HEVtn9fJ8:\"tRBUXpjBI\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:\"195px\",y:(componentViewport?.y||0)+((componentViewport?.height||60)*.5000000000000002-27)+6,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ntnzzu-container\",layoutDependency:layoutDependency,layoutId:\"U49wiZtZT-container\",children:/*#__PURE__*/_jsx(GalerieN304TabCellNamed,{BkopVo3Ma:BkopVo3Mabitlih,G8m0SNDol:\"var(--token-43d2da8e-3dbc-409e-8bc7-3d3835e600e5, rgb(255, 255, 255))\",height:\"100%\",HEVtn9fJ8:\"tRBUXpjBI\",id:\"U49wiZtZT\",layoutId:\"U49wiZtZT\",style:{width:\"100%\"},variant:\"V3zEjlHSc\",width:\"100%\",...addPropertyOverrides({bdsLgYO8i:{variant:\"ruFoXlRM6\"},BjtTpnHkD:{variant:\"C6bhW38VO\"},DO_nLkLY3:{variant:\"ruFoXlRM6\"},DseXbS3zH:{variant:\"C6bhW38VO\"},eW4JCUQaI:{G8m0SNDol:\"var(--token-2c50c16a-25ed-42a7-b290-887d76309fc8, rgb(130, 174, 165))\",HEVtn9fJ8:\"Mc5P3d5Qk\",variant:\"ruFoXlRM6\"},J8VcN8i0c:{variant:\"C6bhW38VO\"},lZj24XoHA:{variant:\"ruFoXlRM6\"},rq9j0SMME:{G8m0SNDol:\"var(--token-64ee76ba-3dde-4490-9cd8-a16a90e18181, rgb(129, 134, 191))\",HEVtn9fJ8:\"Mc5P3d5Qk\",variant:\"C6bhW38VO\"},Z5C37CVHb:{G8m0SNDol:\"var(--token-79e35093-6216-419b-b240-7d1a6b64dc9f, rgb(208, 173, 106))\",HEVtn9fJ8:\"Mc5P3d5Qk\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:\"195px\",y:(componentViewport?.y||0)+((componentViewport?.height||60)*.5000000000000002-27)+6,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8zzmn3-container\",layoutDependency:layoutDependency,layoutId:\"MqFB7jfeu-container\",children:/*#__PURE__*/_jsx(GalerieN304TabCellNamed,{BkopVo3Ma:BkopVo3Mas7py3i,G8m0SNDol:\"var(--token-43d2da8e-3dbc-409e-8bc7-3d3835e600e5, rgb(255, 255, 255))\",height:\"100%\",HEVtn9fJ8:\"tRBUXpjBI\",id:\"MqFB7jfeu\",layoutId:\"MqFB7jfeu\",style:{width:\"100%\"},variant:\"f3YqWTAWX\",width:\"100%\",...addPropertyOverrides({bdsLgYO8i:{variant:\"xi8PUg6Pz\"},BjtTpnHkD:{variant:\"y4p6tVB55\"},DO_nLkLY3:{G8m0SNDol:\"var(--token-2c50c16a-25ed-42a7-b290-887d76309fc8, rgb(130, 174, 165))\",HEVtn9fJ8:\"Mc5P3d5Qk\",variant:\"xi8PUg6Pz\"},DseXbS3zH:{variant:\"y4p6tVB55\"},eW4JCUQaI:{variant:\"xi8PUg6Pz\"},J8VcN8i0c:{G8m0SNDol:\"var(--token-64ee76ba-3dde-4490-9cd8-a16a90e18181, rgb(129, 134, 191))\",HEVtn9fJ8:\"Mc5P3d5Qk\",variant:\"y4p6tVB55\"},lZj24XoHA:{variant:\"xi8PUg6Pz\"},QBcZUp5Lo:{G8m0SNDol:\"var(--token-79e35093-6216-419b-b240-7d1a6b64dc9f, rgb(208, 173, 106))\",HEVtn9fJ8:\"Mc5P3d5Qk\"},rq9j0SMME:{variant:\"y4p6tVB55\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:\"195px\",y:(componentViewport?.y||0)+((componentViewport?.height||60)*.5000000000000002-27)+6,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-s2qize-container\",layoutDependency:layoutDependency,layoutId:\"Bwxacx7pc-container\",children:/*#__PURE__*/_jsx(GalerieN304TabCellNamed,{BkopVo3Ma:BkopVo3Mab66mfo,G8m0SNDol:\"var(--token-43d2da8e-3dbc-409e-8bc7-3d3835e600e5, rgb(255, 255, 255))\",height:\"100%\",HEVtn9fJ8:\"tRBUXpjBI\",id:\"Bwxacx7pc\",layoutId:\"Bwxacx7pc\",style:{width:\"100%\"},variant:\"RDo0NqJcP\",width:\"100%\",...addPropertyOverrides({bdsLgYO8i:{G8m0SNDol:\"var(--token-2c50c16a-25ed-42a7-b290-887d76309fc8, rgb(130, 174, 165))\",HEVtn9fJ8:\"Mc5P3d5Qk\",variant:\"cCcdHcBfy\"},BjtTpnHkD:{variant:\"nFMbcmlO4\"},DO_nLkLY3:{variant:\"cCcdHcBfy\"},DseXbS3zH:{G8m0SNDol:\"var(--token-64ee76ba-3dde-4490-9cd8-a16a90e18181, rgb(129, 134, 191))\",HEVtn9fJ8:\"Mc5P3d5Qk\",variant:\"nFMbcmlO4\"},eW4JCUQaI:{variant:\"cCcdHcBfy\"},J8VcN8i0c:{variant:\"nFMbcmlO4\"},lZj24XoHA:{variant:\"cCcdHcBfy\"},rq9j0SMME:{variant:\"nFMbcmlO4\"},xj6_HoVzI:{G8m0SNDol:\"var(--token-79e35093-6216-419b-b240-7d1a6b64dc9f, rgb(208, 173, 106))\",HEVtn9fJ8:\"Mc5P3d5Qk\"}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NIOmf.framer-176ru0g, .framer-NIOmf .framer-176ru0g { display: block; }\",\".framer-NIOmf.framer-3ry685 { height: 60px; overflow: hidden; position: relative; width: 792px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NIOmf .framer-1x2i3qt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 6px; position: absolute; top: 50%; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-NIOmf .framer-iuo69k, .framer-NIOmf .framer-1ucosmv, .framer-NIOmf .framer-zv4bpj, .framer-NIOmf .framer-6bpit4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 50px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-NIOmf .framer-1fsh7is-container, .framer-NIOmf .framer-oi3fvn-container, .framer-NIOmf .framer-zqexl5-container, .framer-NIOmf .framer-4p5yba-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-NIOmf .framer-9irhov-container, .framer-NIOmf .framer-1m1boka-container, .framer-NIOmf .framer-u7ni3k-container, .framer-NIOmf .framer-b340sf-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-NIOmf .framer-sjp1ok { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 6px; position: absolute; top: 50%; width: 792px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NIOmf .framer-y4pj0n-container, .framer-NIOmf .framer-1ntnzzu-container, .framer-NIOmf .framer-8zzmn3-container, .framer-NIOmf .framer-s2qize-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NIOmf .framer-1x2i3qt, .framer-NIOmf .framer-iuo69k, .framer-NIOmf .framer-1ucosmv, .framer-NIOmf .framer-zv4bpj, .framer-NIOmf .framer-6bpit4, .framer-NIOmf .framer-sjp1ok { gap: 0px; } .framer-NIOmf .framer-1x2i3qt > *, .framer-NIOmf .framer-sjp1ok > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-NIOmf .framer-1x2i3qt > :first-child, .framer-NIOmf .framer-sjp1ok > :first-child { margin-left: 0px; } .framer-NIOmf .framer-1x2i3qt > :last-child, .framer-NIOmf .framer-sjp1ok > :last-child { margin-right: 0px; } .framer-NIOmf .framer-iuo69k > *, .framer-NIOmf .framer-1ucosmv > *, .framer-NIOmf .framer-zv4bpj > *, .framer-NIOmf .framer-6bpit4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NIOmf .framer-iuo69k > :first-child, .framer-NIOmf .framer-1ucosmv > :first-child, .framer-NIOmf .framer-zv4bpj > :first-child, .framer-NIOmf .framer-6bpit4 > :first-child { margin-top: 0px; } .framer-NIOmf .framer-iuo69k > :last-child, .framer-NIOmf .framer-1ucosmv > :last-child, .framer-NIOmf .framer-zv4bpj > :last-child, .framer-NIOmf .framer-6bpit4 > :last-child { margin-bottom: 0px; } }\",\".framer-NIOmf.framer-v-1dt4p33 .framer-iuo69k, .framer-NIOmf.framer-v-ppene1 .framer-zv4bpj, .framer-NIOmf.framer-v-1kaxt68 .framer-zv4bpj, .framer-NIOmf.framer-v-1xe6s8a .framer-iuo69k, .framer-NIOmf.framer-v-f8izvb .framer-zv4bpj, .framer-NIOmf.framer-v-sljtay .framer-zv4bpj, .framer-NIOmf.framer-v-1smqfr5 .framer-iuo69k, .framer-NIOmf.framer-v-anmgvb .framer-zv4bpj, .framer-NIOmf.framer-v-nf4z6n .framer-zv4bpj { order: 1; }\",\".framer-NIOmf.framer-v-1dt4p33 .framer-1ucosmv, .framer-NIOmf.framer-v-ppene1 .framer-1ucosmv, .framer-NIOmf.framer-v-1kaxt68 .framer-1ucosmv, .framer-NIOmf.framer-v-1xe6s8a .framer-1ucosmv, .framer-NIOmf.framer-v-f8izvb .framer-1ucosmv, .framer-NIOmf.framer-v-sljtay .framer-1ucosmv, .framer-NIOmf.framer-v-1smqfr5 .framer-1ucosmv, .framer-NIOmf.framer-v-anmgvb .framer-1ucosmv, .framer-NIOmf.framer-v-nf4z6n .framer-1ucosmv { order: 0; }\",\".framer-NIOmf.framer-v-1dt4p33 .framer-zv4bpj, .framer-NIOmf.framer-v-ppene1 .framer-iuo69k, .framer-NIOmf.framer-v-1kaxt68 .framer-6bpit4, .framer-NIOmf.framer-v-1xe6s8a .framer-zv4bpj, .framer-NIOmf.framer-v-f8izvb .framer-iuo69k, .framer-NIOmf.framer-v-sljtay .framer-6bpit4, .framer-NIOmf.framer-v-1smqfr5 .framer-zv4bpj, .framer-NIOmf.framer-v-anmgvb .framer-iuo69k, .framer-NIOmf.framer-v-nf4z6n .framer-6bpit4 { order: 2; }\",\".framer-NIOmf.framer-v-1dt4p33 .framer-6bpit4, .framer-NIOmf.framer-v-ppene1 .framer-6bpit4, .framer-NIOmf.framer-v-1kaxt68 .framer-iuo69k, .framer-NIOmf.framer-v-1xe6s8a .framer-6bpit4, .framer-NIOmf.framer-v-f8izvb .framer-6bpit4, .framer-NIOmf.framer-v-sljtay .framer-iuo69k, .framer-NIOmf.framer-v-1smqfr5 .framer-6bpit4, .framer-NIOmf.framer-v-anmgvb .framer-6bpit4, .framer-NIOmf.framer-v-nf4z6n .framer-iuo69k { order: 3; }\",\".framer-NIOmf.framer-v-vdo7iq.framer-3ry685, .framer-NIOmf.framer-v-1xe6s8a.framer-3ry685, .framer-NIOmf.framer-v-f8izvb.framer-3ry685, .framer-NIOmf.framer-v-sljtay.framer-3ry685 { width: 761px; }\",\".framer-NIOmf.framer-v-95j0vz.framer-3ry685, .framer-NIOmf.framer-v-1smqfr5.framer-3ry685, .framer-NIOmf.framer-v-anmgvb.framer-3ry685, .framer-NIOmf.framer-v-nf4z6n.framer-3ry685 { width: 786px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 792\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Z5C37CVHb\":{\"layout\":[\"fixed\",\"fixed\"]},\"QBcZUp5Lo\":{\"layout\":[\"fixed\",\"fixed\"]},\"xj6_HoVzI\":{\"layout\":[\"fixed\",\"fixed\"]},\"BjtTpnHkD\":{\"layout\":[\"fixed\",\"fixed\"]},\"rq9j0SMME\":{\"layout\":[\"fixed\",\"fixed\"]},\"J8VcN8i0c\":{\"layout\":[\"fixed\",\"fixed\"]},\"DseXbS3zH\":{\"layout\":[\"fixed\",\"fixed\"]},\"lZj24XoHA\":{\"layout\":[\"fixed\",\"fixed\"]},\"eW4JCUQaI\":{\"layout\":[\"fixed\",\"fixed\"]},\"DO_nLkLY3\":{\"layout\":[\"fixed\",\"fixed\"]},\"bdsLgYO8i\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"hObUuSL7F\":\"tab1\",\"MslXXjhNb\":\"tab2\",\"vTQu9wFSo\":\"tab3\",\"qUWfvftPR\":\"tab4\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCDtlSwayk=withCSS(Component,css,\"framer-NIOmf\");export default FramerCDtlSwayk;FramerCDtlSwayk.displayName=\"Galerie N\\xba3/03 Tab\";FramerCDtlSwayk.defaultProps={height:60,width:792};addPropertyControls(FramerCDtlSwayk,{variant:{options:[\"zVvbV6e9H\",\"Z5C37CVHb\",\"QBcZUp5Lo\",\"xj6_HoVzI\",\"BjtTpnHkD\",\"rq9j0SMME\",\"J8VcN8i0c\",\"DseXbS3zH\",\"lZj24XoHA\",\"eW4JCUQaI\",\"DO_nLkLY3\",\"bdsLgYO8i\"],optionTitles:[\"P1/Tab 1\",\"P1/Tab 2\",\"P1/Tab 3\",\"P1/Tab 4\",\"P2/Tab 1\",\"P2/Tab 2\",\"P2/Tab 3\",\"P2/Tab 4\",\"P3/Tab 1\",\"P3/Tab 2\",\"P3/Tab 3\",\"P3/Tab 4\"],title:\"Variant\",type:ControlType.Enum},hObUuSL7F:{title:\"Tab 1\",type:ControlType.EventHandler},MslXXjhNb:{title:\"Tab 2\",type:ControlType.EventHandler},vTQu9wFSo:{title:\"Tab 3\",type:ControlType.EventHandler},qUWfvftPR:{title:\"Tab 4\",type:ControlType.EventHandler}});addFonts(FramerCDtlSwayk,[{explicitInter:true,fonts:[]},...GalerieN3TabCellRectangleFonts,...GalerieN304TabCellNamedFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCDtlSwayk\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"hObUuSL7F\\\":\\\"tab1\\\",\\\"MslXXjhNb\\\":\\\"tab2\\\",\\\"vTQu9wFSo\\\":\\\"tab3\\\",\\\"qUWfvftPR\\\":\\\"tab4\\\"}\",\"framerIntrinsicHeight\":\"60\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Z5C37CVHb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QBcZUp5Lo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xj6_HoVzI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BjtTpnHkD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rq9j0SMME\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"J8VcN8i0c\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DseXbS3zH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lZj24XoHA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eW4JCUQaI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DO_nLkLY3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bdsLgYO8i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"792\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b0164a3)\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 GalerieN303Tab from\"https://framerusercontent.com/modules/qvakm4RLxJzt0gOLrUAm/DQHRaOystqlspVKcWixP/CDtlSwayk.js\";import GalerieN302Content from\"https://framerusercontent.com/modules/oYtM229R59xIsHAfDM7x/xS87sRR6Mg48kyYFpmF3/iqndfx1y1.js\";const GalerieN303TabFonts=getFonts(GalerieN303Tab);const GalerieN302ContentFonts=getFonts(GalerieN302Content);const cycleOrder=[\"VTY_r9y6m\",\"J4fEc0ZQ1\",\"pBxtbTiGE\",\"N3YZoAqF8\",\"dqiqOAMY7\",\"BNn5B3g0W\",\"eQ7i7Hp23\",\"sozF9UM9_\",\"fZTVWTol5\",\"UKoXKidOJ\",\"vR_yW90dq\",\"y7c2DYEsk\"];const serializationHash=\"framer-4Dz7r\";const variantClassNames={BNn5B3g0W:\"framer-v-c3w5s0\",dqiqOAMY7:\"framer-v-1kjqot2\",eQ7i7Hp23:\"framer-v-1k7nnu2\",fZTVWTol5:\"framer-v-1dukwhy\",J4fEc0ZQ1:\"framer-v-jcie3c\",N3YZoAqF8:\"framer-v-cxg996\",pBxtbTiGE:\"framer-v-b0vx4s\",sozF9UM9_:\"framer-v-1lxuzmt\",UKoXKidOJ:\"framer-v-1cfpdi\",vR_yW90dq:\"framer-v-116c0rc\",VTY_r9y6m:\"framer-v-1vh6czm\",y7c2DYEsk:\"framer-v-yeg9p8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"P1/Tab 1\":\"VTY_r9y6m\",\"P1/Tab 2\":\"J4fEc0ZQ1\",\"P1/Tab 3\":\"pBxtbTiGE\",\"P1/Tab 4\":\"N3YZoAqF8\",\"P2/Tab 1\":\"dqiqOAMY7\",\"P2/Tab 2\":\"BNn5B3g0W\",\"P2/Tab 3\":\"eQ7i7Hp23\",\"P2/Tab 4\":\"sozF9UM9_\",\"P3/Tab 1\":\"fZTVWTol5\",\"P3/Tab 2\":\"UKoXKidOJ\",\"P3/Tab 3\":\"vR_yW90dq\",\"P3/Tab 4\":\"y7c2DYEsk\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"VTY_r9y6m\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"VTY_r9y6m\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const hObUuSL7F43i1j9=activeVariantCallback(async(...args)=>{setVariant(\"VTY_r9y6m\");});const MslXXjhNb1cce3yk=activeVariantCallback(async(...args)=>{setVariant(\"J4fEc0ZQ1\");});const vTQu9wFSo1ncnf6d=activeVariantCallback(async(...args)=>{setVariant(\"pBxtbTiGE\");});const qUWfvftPR1vhceq8=activeVariantCallback(async(...args)=>{setVariant(\"N3YZoAqF8\");});const hObUuSL7Fct40l9=activeVariantCallback(async(...args)=>{setVariant(\"dqiqOAMY7\");});const MslXXjhNbg9wukk=activeVariantCallback(async(...args)=>{setVariant(\"BNn5B3g0W\");});const vTQu9wFSox9ytx=activeVariantCallback(async(...args)=>{setVariant(\"eQ7i7Hp23\");});const qUWfvftPR18nlvat=activeVariantCallback(async(...args)=>{setVariant(\"sozF9UM9_\");});const hObUuSL7F1yvt4qi=activeVariantCallback(async(...args)=>{setVariant(\"fZTVWTol5\");});const MslXXjhNb1vngdal=activeVariantCallback(async(...args)=>{setVariant(\"UKoXKidOJ\");});const vTQu9wFSoig4arj=activeVariantCallback(async(...args)=>{setVariant(\"vR_yW90dq\");});const qUWfvftPRmv5ph4=activeVariantCallback(async(...args)=>{setVariant(\"y7c2DYEsk\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1vh6czm\",className,classNames),\"data-framer-name\":\"P1/Tab 1\",layoutDependency:layoutDependency,layoutId:\"VTY_r9y6m\",ref:ref??ref1,style:{backgroundColor:\"var(--token-adce540d-1222-4d51-a2b1-22917d647235, rgb(245, 229, 196))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1px 40px 0px rgba(0, 0, 0, 0.09)\",...style},variants:{BNn5B3g0W:{backgroundColor:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\"},dqiqOAMY7:{backgroundColor:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\"},eQ7i7Hp23:{backgroundColor:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\"},fZTVWTol5:{backgroundColor:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\"},sozF9UM9_:{backgroundColor:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\"},UKoXKidOJ:{backgroundColor:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\"},vR_yW90dq:{backgroundColor:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\"},y7c2DYEsk:{backgroundColor:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\"}},...addPropertyOverrides({BNn5B3g0W:{\"data-framer-name\":\"P2/Tab 2\"},dqiqOAMY7:{\"data-framer-name\":\"P2/Tab 1\"},eQ7i7Hp23:{\"data-framer-name\":\"P2/Tab 3\"},fZTVWTol5:{\"data-framer-name\":\"P3/Tab 1\"},J4fEc0ZQ1:{\"data-framer-name\":\"P1/Tab 2\"},N3YZoAqF8:{\"data-framer-name\":\"P1/Tab 4\"},pBxtbTiGE:{\"data-framer-name\":\"P1/Tab 3\"},sozF9UM9_:{\"data-framer-name\":\"P2/Tab 4\"},UKoXKidOJ:{\"data-framer-name\":\"P3/Tab 2\"},vR_yW90dq:{\"data-framer-name\":\"P3/Tab 3\"},y7c2DYEsk:{\"data-framer-name\":\"P3/Tab 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"792px\",y:(componentViewport?.y||0)+40+(((componentViewport?.height||450)-80-370)/2+0+0),...addPropertyOverrides({BNn5B3g0W:{width:\"761px\"},dqiqOAMY7:{height:56,width:\"775px\",y:(componentViewport?.y||0)+40+(((componentViewport?.height||446)-80-366)/2+0+0)},eQ7i7Hp23:{width:\"761px\",y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-80-370)/2+0+0)},fZTVWTol5:{width:\"786px\",y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-80-370)/2+0+0)},N3YZoAqF8:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-80-370)/2+0+0)},pBxtbTiGE:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-80-370)/2+0+0)},sozF9UM9_:{width:\"761px\",y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-80-370)/2+0+0)},UKoXKidOJ:{width:\"786px\",y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-80-370)/2+0+0)},vR_yW90dq:{width:\"786px\",y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-80-370)/2+0+0)},y7c2DYEsk:{width:\"786px\",y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-80-370)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14uw5j2-container\",layoutDependency:layoutDependency,layoutId:\"uHoodLucx-container\",children:/*#__PURE__*/_jsx(GalerieN303Tab,{height:\"100%\",hObUuSL7F:hObUuSL7F43i1j9,id:\"uHoodLucx\",layoutId:\"uHoodLucx\",MslXXjhNb:MslXXjhNb1cce3yk,qUWfvftPR:qUWfvftPR1vhceq8,style:{width:\"100%\"},variant:\"zVvbV6e9H\",vTQu9wFSo:vTQu9wFSo1ncnf6d,width:\"100%\",...addPropertyOverrides({BNn5B3g0W:{hObUuSL7F:hObUuSL7Fct40l9,MslXXjhNb:MslXXjhNbg9wukk,qUWfvftPR:qUWfvftPR18nlvat,variant:\"rq9j0SMME\",vTQu9wFSo:vTQu9wFSox9ytx},dqiqOAMY7:{hObUuSL7F:hObUuSL7Fct40l9,MslXXjhNb:MslXXjhNbg9wukk,qUWfvftPR:qUWfvftPR18nlvat,style:{height:\"100%\",width:\"100%\"},variant:\"BjtTpnHkD\",vTQu9wFSo:vTQu9wFSox9ytx},eQ7i7Hp23:{hObUuSL7F:hObUuSL7Fct40l9,MslXXjhNb:MslXXjhNbg9wukk,qUWfvftPR:qUWfvftPR18nlvat,variant:\"J8VcN8i0c\",vTQu9wFSo:vTQu9wFSox9ytx},fZTVWTol5:{hObUuSL7F:hObUuSL7F1yvt4qi,MslXXjhNb:MslXXjhNb1vngdal,qUWfvftPR:qUWfvftPRmv5ph4,variant:\"lZj24XoHA\",vTQu9wFSo:vTQu9wFSoig4arj},J4fEc0ZQ1:{variant:\"Z5C37CVHb\"},N3YZoAqF8:{variant:\"xj6_HoVzI\"},pBxtbTiGE:{variant:\"QBcZUp5Lo\"},sozF9UM9_:{hObUuSL7F:hObUuSL7Fct40l9,MslXXjhNb:MslXXjhNbg9wukk,qUWfvftPR:qUWfvftPR18nlvat,variant:\"DseXbS3zH\",vTQu9wFSo:vTQu9wFSox9ytx},UKoXKidOJ:{hObUuSL7F:hObUuSL7F1yvt4qi,MslXXjhNb:MslXXjhNb1vngdal,qUWfvftPR:qUWfvftPRmv5ph4,variant:\"eW4JCUQaI\",vTQu9wFSo:vTQu9wFSoig4arj},vR_yW90dq:{hObUuSL7F:hObUuSL7F1yvt4qi,MslXXjhNb:MslXXjhNb1vngdal,qUWfvftPR:qUWfvftPRmv5ph4,variant:\"DO_nLkLY3\",vTQu9wFSo:vTQu9wFSoig4arj},y7c2DYEsk:{hObUuSL7F:hObUuSL7F1yvt4qi,MslXXjhNb:MslXXjhNb1vngdal,qUWfvftPR:qUWfvftPRmv5ph4,variant:\"bdsLgYO8i\",vTQu9wFSo:vTQu9wFSoig4arj}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:270,width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+40+(((componentViewport?.height||450)-80-370)/2+60+40),...addPropertyOverrides({dqiqOAMY7:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||446)-80-366)/2+56+40)},eQ7i7Hp23:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-80-370)/2+60+40)},fZTVWTol5:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-80-370)/2+60+40)},N3YZoAqF8:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-80-370)/2+60+40)},pBxtbTiGE:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-80-370)/2+60+40)},sozF9UM9_:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-80-370)/2+60+40)},UKoXKidOJ:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-80-370)/2+60+40)},vR_yW90dq:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-80-370)/2+60+40)},y7c2DYEsk:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||200)-80-370)/2+60+40)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-er5wdp-container\",layoutDependency:layoutDependency,layoutId:\"DVevY8OJE-container\",children:/*#__PURE__*/_jsx(GalerieN302Content,{height:\"100%\",id:\"DVevY8OJE\",layoutId:\"DVevY8OJE\",style:{width:\"100%\"},variant:\"x1VHsBWw9\",width:\"100%\",Yi6NSLUCI:\"vjFeuUetq\",...addPropertyOverrides({BNn5B3g0W:{variant:\"s3Z6H9CLR\"},dqiqOAMY7:{variant:\"yS4Tp_C2Q\"},eQ7i7Hp23:{variant:\"ag7ZHD9MQ\"},fZTVWTol5:{variant:\"DZr1pd2uH\"},J4fEc0ZQ1:{variant:\"NraOgSiOy\"},N3YZoAqF8:{variant:\"DUkNfSbp3\"},pBxtbTiGE:{variant:\"sclKQke6q\"},sozF9UM9_:{variant:\"S_mE2JNgN\"},UKoXKidOJ:{variant:\"w_p6VfJBi\"},vR_yW90dq:{variant:\"IJumCVBHt\"},y7c2DYEsk:{variant:\"oRq3lRXdB\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4Dz7r.framer-b2ugvf, .framer-4Dz7r .framer-b2ugvf { display: block; }\",\".framer-4Dz7r.framer-1vh6czm { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 1040px; will-change: var(--framer-will-change-override, transform); }\",\".framer-4Dz7r .framer-14uw5j2-container { flex: none; height: auto; position: relative; width: 792px; }\",\".framer-4Dz7r .framer-er5wdp-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4Dz7r.framer-1vh6czm { gap: 0px; } .framer-4Dz7r.framer-1vh6czm > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-4Dz7r.framer-1vh6czm > :first-child { margin-top: 0px; } .framer-4Dz7r.framer-1vh6czm > :last-child { margin-bottom: 0px; } }\",\".framer-4Dz7r.framer-v-1kjqot2 .framer-14uw5j2-container { height: 56px; width: 775px; }\",\".framer-4Dz7r.framer-v-c3w5s0 .framer-14uw5j2-container, .framer-4Dz7r.framer-v-1k7nnu2 .framer-14uw5j2-container, .framer-4Dz7r.framer-v-1lxuzmt .framer-14uw5j2-container { width: 761px; }\",\".framer-4Dz7r.framer-v-1dukwhy .framer-14uw5j2-container, .framer-4Dz7r.framer-v-1cfpdi .framer-14uw5j2-container, .framer-4Dz7r.framer-v-116c0rc .framer-14uw5j2-container, .framer-4Dz7r.framer-v-yeg9p8 .framer-14uw5j2-container { width: 786px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 450\n * @framerIntrinsicWidth 1040\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"J4fEc0ZQ1\":{\"layout\":[\"fixed\",\"auto\"]},\"pBxtbTiGE\":{\"layout\":[\"fixed\",\"auto\"]},\"N3YZoAqF8\":{\"layout\":[\"fixed\",\"auto\"]},\"dqiqOAMY7\":{\"layout\":[\"fixed\",\"auto\"]},\"BNn5B3g0W\":{\"layout\":[\"fixed\",\"auto\"]},\"eQ7i7Hp23\":{\"layout\":[\"fixed\",\"auto\"]},\"sozF9UM9_\":{\"layout\":[\"fixed\",\"auto\"]},\"fZTVWTol5\":{\"layout\":[\"fixed\",\"auto\"]},\"UKoXKidOJ\":{\"layout\":[\"fixed\",\"auto\"]},\"vR_yW90dq\":{\"layout\":[\"fixed\",\"auto\"]},\"y7c2DYEsk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerlY8nvG7ht=withCSS(Component,css,\"framer-4Dz7r\");export default FramerlY8nvG7ht;FramerlY8nvG7ht.displayName=\"Galerie N\\xba3/01 Galerie L\";FramerlY8nvG7ht.defaultProps={height:450,width:1040};addPropertyControls(FramerlY8nvG7ht,{variant:{options:[\"VTY_r9y6m\",\"J4fEc0ZQ1\",\"pBxtbTiGE\",\"N3YZoAqF8\",\"dqiqOAMY7\",\"BNn5B3g0W\",\"eQ7i7Hp23\",\"sozF9UM9_\",\"fZTVWTol5\",\"UKoXKidOJ\",\"vR_yW90dq\",\"y7c2DYEsk\"],optionTitles:[\"P1/Tab 1\",\"P1/Tab 2\",\"P1/Tab 3\",\"P1/Tab 4\",\"P2/Tab 1\",\"P2/Tab 2\",\"P2/Tab 3\",\"P2/Tab 4\",\"P3/Tab 1\",\"P3/Tab 2\",\"P3/Tab 3\",\"P3/Tab 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerlY8nvG7ht,[{explicitInter:true,fonts:[]},...GalerieN303TabFonts,...GalerieN302ContentFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlY8nvG7ht\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1040\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"450\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J4fEc0ZQ1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pBxtbTiGE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"N3YZoAqF8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dqiqOAMY7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BNn5B3g0W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eQ7i7Hp23\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sozF9UM9_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fZTVWTol5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UKoXKidOJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vR_yW90dq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y7c2DYEsk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (91bcfbd)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,getPropertyControls,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import GalerieN303Tab from\"https://framerusercontent.com/modules/qvakm4RLxJzt0gOLrUAm/DQHRaOystqlspVKcWixP/CDtlSwayk.js\";import GalerieN302Content from\"https://framerusercontent.com/modules/oYtM229R59xIsHAfDM7x/xS87sRR6Mg48kyYFpmF3/iqndfx1y1.js\";import*as localizedValues from\"./P_wH88DOG-0.js\";const GalerieN303TabFonts=getFonts(GalerieN303Tab);const GalerieN302ContentFonts=getFonts(GalerieN302Content);const GalerieN302ContentControls=getPropertyControls(GalerieN302Content);const cycleOrder=[\"CC6QfS7Qi\",\"VxB_9kgE2\",\"A10n7swcZ\",\"AjW39bVbg\",\"Med_2qAgs\",\"kYaUXSp9w\",\"NCJJW19dr\",\"b96xElJMG\",\"zjs4lCEn0\",\"pvdKLR2c_\",\"tkJOQRg76\",\"cF9zToVtu\"];const serializationHash=\"framer-oo9Jy\";const variantClassNames={A10n7swcZ:\"framer-v-fa5n4y\",AjW39bVbg:\"framer-v-dcrjc2\",b96xElJMG:\"framer-v-eivsp4\",CC6QfS7Qi:\"framer-v-t5jk1n\",cF9zToVtu:\"framer-v-hmks8t\",kYaUXSp9w:\"framer-v-c1gczz\",Med_2qAgs:\"framer-v-1ehrqrt\",NCJJW19dr:\"framer-v-bmnypn\",pvdKLR2c_:\"framer-v-65bewz\",tkJOQRg76:\"framer-v-1wuo8ip\",VxB_9kgE2:\"framer-v-r21obu\",zjs4lCEn0:\"framer-v-wpj7ud\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const valuesByLocaleId={bBI5rI0s0:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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(React.Fragment);const humanReadableEnumMap={\"L&M\":\"vjFeuUetq\",S:\"eylEMzAlJ\"};const humanReadableVariantMap={\"P1/Tab 1\":\"CC6QfS7Qi\",\"P1/Tab 2\":\"VxB_9kgE2\",\"P1/Tab 3\":\"A10n7swcZ\",\"P1/Tab 4\":\"AjW39bVbg\",\"P2/Tab 1\":\"Med_2qAgs\",\"P2/Tab 2\":\"kYaUXSp9w\",\"P2/Tab 3\":\"NCJJW19dr\",\"P2/Tab 4\":\"b96xElJMG\",\"P3/Tab 1\":\"zjs4lCEn0\",\"P3/Tab 2\":\"pvdKLR2c_\",\"P3/Tab 3\":\"tkJOQRg76\",\"P3/Tab 4\":\"cF9zToVtu\"};const getProps=({contentPadding,contentSize,height,id,marginGap,width,...props})=>{return{...props,AgOhlX8i3:contentPadding??props.AgOhlX8i3??28,fYKCnEt9j:humanReadableEnumMap[contentSize]??contentSize??props.fYKCnEt9j??\"vjFeuUetq\",TxKUgBIjF:marginGap??props.TxKUgBIjF??38,variant:humanReadableVariantMap[props.variant]??props.variant??\"CC6QfS7Qi\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,TxKUgBIjF,AgOhlX8i3,fYKCnEt9j,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"CC6QfS7Qi\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const hObUuSL7F72lu54=activeVariantCallback(async(...args)=>{setVariant(\"CC6QfS7Qi\");});const MslXXjhNb1sma2s3=activeVariantCallback(async(...args)=>{setVariant(\"VxB_9kgE2\");});const vTQu9wFSoptdvx0=activeVariantCallback(async(...args)=>{setVariant(\"A10n7swcZ\");});const qUWfvftPRa90khn=activeVariantCallback(async(...args)=>{setVariant(\"AjW39bVbg\");});const hObUuSL7F1y8mqx9=activeVariantCallback(async(...args)=>{setVariant(\"Med_2qAgs\");});const MslXXjhNb9fqzy1=activeVariantCallback(async(...args)=>{setVariant(\"kYaUXSp9w\");});const vTQu9wFSo19emddm=activeVariantCallback(async(...args)=>{setVariant(\"NCJJW19dr\");});const qUWfvftPRmvar1l=activeVariantCallback(async(...args)=>{setVariant(\"b96xElJMG\");});const hObUuSL7Fwilbxp=activeVariantCallback(async(...args)=>{setVariant(\"zjs4lCEn0\");});const MslXXjhNb1po6xpb=activeVariantCallback(async(...args)=>{setVariant(\"pvdKLR2c_\");});const vTQu9wFSoqam8jj=activeVariantCallback(async(...args)=>{setVariant(\"tkJOQRg76\");});const qUWfvftPR147dm7y=activeVariantCallback(async(...args)=>{setVariant(\"cF9zToVtu\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-t5jk1n\",className,classNames),\"data-framer-name\":\"P1/Tab 1\",layoutDependency:layoutDependency,layoutId:\"CC6QfS7Qi\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref??ref1,style:{...style},...addPropertyOverrides({A10n7swcZ:{\"data-framer-name\":\"P1/Tab 3\"},AjW39bVbg:{\"data-framer-name\":\"P1/Tab 4\"},b96xElJMG:{\"data-framer-name\":\"P2/Tab 4\"},cF9zToVtu:{\"data-framer-name\":\"P3/Tab 4\"},kYaUXSp9w:{\"data-framer-name\":\"P2/Tab 2\"},Med_2qAgs:{\"data-framer-name\":\"P2/Tab 1\"},NCJJW19dr:{\"data-framer-name\":\"P2/Tab 3\"},pvdKLR2c_:{\"data-framer-name\":\"P3/Tab 2\"},tkJOQRg76:{\"data-framer-name\":\"P3/Tab 3\"},VxB_9kgE2:{\"data-framer-name\":\"P1/Tab 2\"},zjs4lCEn0:{\"data-framer-name\":\"P3/Tab 1\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4bx017\",layoutDependency:layoutDependency,layoutId:\"ftchTcHeV\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f08edt\",layoutDependency:layoutDependency,layoutId:\"QzeVJY3mD\",style:{\"--66o2iy\":TxKUgBIjF},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xgdhr2\",layoutDependency:layoutDependency,layoutId:\"plupZOFyW\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y361kk\",layoutDependency:layoutDependency,layoutId:\"Ugji9Iyij\"})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m6m0jz-container\",layoutDependency:layoutDependency,layoutId:\"yiNlrx93q-container\",children:/*#__PURE__*/_jsx(GalerieN303Tab,{height:\"100%\",hObUuSL7F:hObUuSL7F72lu54,id:\"yiNlrx93q\",layoutId:\"yiNlrx93q\",MslXXjhNb:MslXXjhNb1sma2s3,qUWfvftPR:qUWfvftPRa90khn,style:{height:\"100%\",width:\"100%\"},variant:\"zVvbV6e9H\",vTQu9wFSo:vTQu9wFSoptdvx0,width:\"100%\",...addPropertyOverrides({A10n7swcZ:{variant:\"QBcZUp5Lo\"},AjW39bVbg:{variant:\"xj6_HoVzI\"},b96xElJMG:{hObUuSL7F:hObUuSL7F1y8mqx9,MslXXjhNb:MslXXjhNb9fqzy1,qUWfvftPR:qUWfvftPRmvar1l,variant:\"DseXbS3zH\",vTQu9wFSo:vTQu9wFSo19emddm},cF9zToVtu:{hObUuSL7F:hObUuSL7Fwilbxp,MslXXjhNb:MslXXjhNb1po6xpb,qUWfvftPR:qUWfvftPR147dm7y,variant:\"bdsLgYO8i\",vTQu9wFSo:vTQu9wFSoqam8jj},kYaUXSp9w:{hObUuSL7F:hObUuSL7F1y8mqx9,MslXXjhNb:MslXXjhNb9fqzy1,qUWfvftPR:qUWfvftPRmvar1l,variant:\"rq9j0SMME\",vTQu9wFSo:vTQu9wFSo19emddm},Med_2qAgs:{hObUuSL7F:hObUuSL7F1y8mqx9,MslXXjhNb:MslXXjhNb9fqzy1,qUWfvftPR:qUWfvftPRmvar1l,variant:\"BjtTpnHkD\",vTQu9wFSo:vTQu9wFSo19emddm},NCJJW19dr:{hObUuSL7F:hObUuSL7F1y8mqx9,MslXXjhNb:MslXXjhNb9fqzy1,qUWfvftPR:qUWfvftPRmvar1l,variant:\"J8VcN8i0c\",vTQu9wFSo:vTQu9wFSo19emddm},pvdKLR2c_:{hObUuSL7F:hObUuSL7Fwilbxp,MslXXjhNb:MslXXjhNb1po6xpb,qUWfvftPR:qUWfvftPR147dm7y,variant:\"eW4JCUQaI\",vTQu9wFSo:vTQu9wFSoqam8jj},tkJOQRg76:{hObUuSL7F:hObUuSL7Fwilbxp,MslXXjhNb:MslXXjhNb1po6xpb,qUWfvftPR:qUWfvftPR147dm7y,variant:\"DO_nLkLY3\",vTQu9wFSo:vTQu9wFSoqam8jj},VxB_9kgE2:{variant:\"Z5C37CVHb\"},zjs4lCEn0:{hObUuSL7F:hObUuSL7Fwilbxp,MslXXjhNb:MslXXjhNb1po6xpb,qUWfvftPR:qUWfvftPR147dm7y,variant:\"lZj24XoHA\",vTQu9wFSo:vTQu9wFSoqam8jj}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gh7qb2\",layoutDependency:layoutDependency,layoutId:\"cAOfridPK\",style:{\"--66o2iy\":TxKUgBIjF},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tnh05g\",layoutDependency:layoutDependency,layoutId:\"E3eksM01T\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gxqycr\",layoutDependency:layoutDependency,layoutId:\"Nt5me5inZ\"})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10l58pr\",layoutDependency:layoutDependency,layoutId:\"sgoOukm7S\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w2m5mk\",layoutDependency:layoutDependency,layoutId:\"lz5lHU4z7\",style:{\"--66o2iy\":TxKUgBIjF},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sgdui7\",layoutDependency:layoutDependency,layoutId:\"E0BKXcf3k\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8pr3zr\",layoutDependency:layoutDependency,layoutId:\"cgViWmVN1\"})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iijzh6\",\"data-framer-name\":\"Galerie N\\xba3/01 Galerie Copy\",layoutDependency:layoutDependency,layoutId:\"Biw8jDvay\",style:{\"--1tmrqa8\":AgOhlX8i3,backgroundColor:\"var(--token-adce540d-1222-4d51-a2b1-22917d647235, rgb(245, 229, 196))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1px 40px 0px rgba(0, 0, 0, 0.09)\"},variants:{b96xElJMG:{backgroundColor:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\"},cF9zToVtu:{backgroundColor:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\"},kYaUXSp9w:{backgroundColor:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\"},Med_2qAgs:{backgroundColor:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\"},NCJJW19dr:{backgroundColor:\"var(--token-14c4443a-3090-4d2f-a5aa-3f1f98f4ceb3, rgb(229, 230, 242))\"},pvdKLR2c_:{backgroundColor:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\"},tkJOQRg76:{backgroundColor:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\"},zjs4lCEn0:{backgroundColor:\"var(--token-95f71202-ac57-406e-a61a-9599798d3e29, rgb(226, 240, 237))\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-k3rwxl-container\",layoutDependency:layoutDependency,layoutId:\"EHycgf3CB-container\",children:/*#__PURE__*/_jsx(GalerieN302Content,{height:\"100%\",id:\"EHycgf3CB\",layoutId:\"EHycgf3CB\",style:{width:\"100%\"},variant:\"x1VHsBWw9\",width:\"100%\",Yi6NSLUCI:fYKCnEt9j,...addPropertyOverrides({A10n7swcZ:{variant:\"sclKQke6q\"},AjW39bVbg:{variant:\"DUkNfSbp3\"},b96xElJMG:{variant:\"S_mE2JNgN\"},cF9zToVtu:{variant:\"oRq3lRXdB\"},kYaUXSp9w:{variant:\"s3Z6H9CLR\"},Med_2qAgs:{variant:\"yS4Tp_C2Q\"},NCJJW19dr:{variant:\"ag7ZHD9MQ\"},pvdKLR2c_:{variant:\"w_p6VfJBi\"},tkJOQRg76:{variant:\"IJumCVBHt\"},VxB_9kgE2:{variant:\"NraOgSiOy\"},zjs4lCEn0:{variant:\"DZr1pd2uH\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zq3bho\",layoutDependency:layoutDependency,layoutId:\"SeeMDIcBZ\",style:{\"--66o2iy\":TxKUgBIjF},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hcd1bi\",layoutDependency:layoutDependency,layoutId:\"FZ1ReMVsl\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a1tdww\",layoutDependency:layoutDependency,layoutId:\"KfJ6sIURD\"})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pj8x4l\",layoutDependency:layoutDependency,layoutId:\"pgWt6Nmk3\",style:{\"--66o2iy\":TxKUgBIjF},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8cenh4\",layoutDependency:layoutDependency,layoutId:\"SgLhmq1Z6\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c0clgj\",layoutDependency:layoutDependency,layoutId:\"AYChWoAS0\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m1h4a8\",layoutDependency:layoutDependency,layoutId:\"ZBu7Tv_cA\",style:{background:\"linear-gradient(180deg, rgb(253, 251, 244) 0%, rgba(0, 0, 0, 0) 100%)\",rotate:-90}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mdqocd\",layoutDependency:layoutDependency,layoutId:\"lAmK2sOXR\",style:{\"--66o2iy\":TxKUgBIjF,rotate:180},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iom4af\",layoutDependency:layoutDependency,layoutId:\"gf7n5t4qt\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-u8v8wm\",layoutDependency:layoutDependency,layoutId:\"CqO9ZD9In\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13zdxcn\",layoutDependency:layoutDependency,layoutId:\"EPo0h8Oqy\",style:{background:\"linear-gradient(180deg, rgb(253, 251, 244) 0%, rgba(0, 0, 0, 0) 100%)\",rotate:-90}})]})]})})})});});const css=['.framer-oo9Jy[data-border=\"true\"]::after, .framer-oo9Jy [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oo9Jy.framer-f56aa, .framer-oo9Jy .framer-f56aa { display: block; }\",\".framer-oo9Jy.framer-t5jk1n { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 810px; }\",\".framer-oo9Jy .framer-4bx017 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 54px; justify-content: flex-start; overflow: hidden; overflow-x: auto; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-oo9Jy .framer-4bx017::-webkit-scrollbar { height: 0px; width: 0px; }\",\".framer-oo9Jy .framer-4bx017::-webkit-scrollbar-thumb { background: transparent; }\",\".framer-oo9Jy .framer-f08edt, .framer-oo9Jy .framer-gh7qb2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: calc(max(0, var(--66o2iy)) * 1px); height: 100%; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-oo9Jy .framer-1xgdhr2, .framer-oo9Jy .framer-1y361kk, .framer-oo9Jy .framer-1tnh05g, .framer-oo9Jy .framer-gxqycr, .framer-oo9Jy .framer-1sgdui7, .framer-oo9Jy .framer-8pr3zr, .framer-oo9Jy .framer-1hcd1bi, .framer-oo9Jy .framer-1a1tdww, .framer-oo9Jy .framer-8cenh4, .framer-oo9Jy .framer-c0clgj, .framer-oo9Jy .framer-1iom4af, .framer-oo9Jy .framer-u8v8wm { flex: none; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\".framer-oo9Jy .framer-1m6m0jz-container { flex: none; height: 54px; position: relative; width: 792px; }\",\".framer-oo9Jy .framer-10l58pr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-oo9Jy .framer-1w2m5mk, .framer-oo9Jy .framer-zq3bho { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: calc(max(0, var(--66o2iy)) * 1px); height: auto; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-oo9Jy .framer-1iijzh6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: calc(max(0, var(--1tmrqa8)) * 1px); position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oo9Jy .framer-k3rwxl-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-oo9Jy .framer-1pj8x4l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: calc(max(0, var(--66o2iy)) * 1px); height: 94px; justify-content: center; left: 0px; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: 0px; width: min-content; z-index: 1; }\",\".framer-oo9Jy .framer-1m1h4a8, .framer-oo9Jy .framer-13zdxcn { flex: none; height: 43%; left: -27px; overflow: hidden; position: absolute; top: 27px; width: 235%; z-index: 1; }\",\".framer-oo9Jy .framer-mdqocd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: calc(max(0, var(--66o2iy)) * 1px); height: 94px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; right: 0px; top: 0px; width: min-content; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oo9Jy.framer-t5jk1n, .framer-oo9Jy .framer-4bx017, .framer-oo9Jy .framer-f08edt, .framer-oo9Jy .framer-gh7qb2, .framer-oo9Jy .framer-10l58pr, .framer-oo9Jy .framer-1w2m5mk, .framer-oo9Jy .framer-1iijzh6, .framer-oo9Jy .framer-zq3bho, .framer-oo9Jy .framer-1pj8x4l, .framer-oo9Jy .framer-mdqocd { gap: 0px; } .framer-oo9Jy.framer-t5jk1n > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-oo9Jy.framer-t5jk1n > :first-child, .framer-oo9Jy .framer-1iijzh6 > :first-child { margin-top: 0px; } .framer-oo9Jy.framer-t5jk1n > :last-child, .framer-oo9Jy .framer-1iijzh6 > :last-child { margin-bottom: 0px; } .framer-oo9Jy .framer-4bx017 > *, .framer-oo9Jy .framer-10l58pr > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-oo9Jy .framer-4bx017 > :first-child, .framer-oo9Jy .framer-f08edt > :first-child, .framer-oo9Jy .framer-gh7qb2 > :first-child, .framer-oo9Jy .framer-10l58pr > :first-child, .framer-oo9Jy .framer-1w2m5mk > :first-child, .framer-oo9Jy .framer-zq3bho > :first-child, .framer-oo9Jy .framer-1pj8x4l > :first-child, .framer-oo9Jy .framer-mdqocd > :first-child { margin-left: 0px; } .framer-oo9Jy .framer-4bx017 > :last-child, .framer-oo9Jy .framer-f08edt > :last-child, .framer-oo9Jy .framer-gh7qb2 > :last-child, .framer-oo9Jy .framer-10l58pr > :last-child, .framer-oo9Jy .framer-1w2m5mk > :last-child, .framer-oo9Jy .framer-zq3bho > :last-child, .framer-oo9Jy .framer-1pj8x4l > :last-child, .framer-oo9Jy .framer-mdqocd > :last-child { margin-right: 0px; } .framer-oo9Jy .framer-f08edt > *, .framer-oo9Jy .framer-gh7qb2 > *, .framer-oo9Jy .framer-1w2m5mk > *, .framer-oo9Jy .framer-zq3bho > *, .framer-oo9Jy .framer-1pj8x4l > *, .framer-oo9Jy .framer-mdqocd > * { margin: 0px; margin-left: calc(calc(max(0, var(--66o2iy)) * 1px) / 2); margin-right: calc(calc(max(0, var(--66o2iy)) * 1px) / 2); } .framer-oo9Jy .framer-1iijzh6 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }\",\".framer-oo9Jy.framer-v-1ehrqrt .framer-1m6m0jz-container, .framer-oo9Jy.framer-v-c1gczz .framer-1m6m0jz-container, .framer-oo9Jy.framer-v-bmnypn .framer-1m6m0jz-container, .framer-oo9Jy.framer-v-eivsp4 .framer-1m6m0jz-container { width: 782px; }\",\".framer-oo9Jy.framer-v-wpj7ud .framer-1m6m0jz-container, .framer-oo9Jy.framer-v-65bewz .framer-1m6m0jz-container, .framer-oo9Jy.framer-v-1wuo8ip .framer-1m6m0jz-container, .framer-oo9Jy.framer-v-hmks8t .framer-1m6m0jz-container { width: 853px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 420\n * @framerIntrinsicWidth 810\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"VxB_9kgE2\":{\"layout\":[\"fixed\",\"auto\"]},\"A10n7swcZ\":{\"layout\":[\"fixed\",\"auto\"]},\"AjW39bVbg\":{\"layout\":[\"fixed\",\"auto\"]},\"Med_2qAgs\":{\"layout\":[\"fixed\",\"auto\"]},\"kYaUXSp9w\":{\"layout\":[\"fixed\",\"auto\"]},\"NCJJW19dr\":{\"layout\":[\"fixed\",\"auto\"]},\"b96xElJMG\":{\"layout\":[\"fixed\",\"auto\"]},\"zjs4lCEn0\":{\"layout\":[\"fixed\",\"auto\"]},\"pvdKLR2c_\":{\"layout\":[\"fixed\",\"auto\"]},\"tkJOQRg76\":{\"layout\":[\"fixed\",\"auto\"]},\"cF9zToVtu\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"TxKUgBIjF\":\"marginGap\",\"AgOhlX8i3\":\"contentPadding\",\"fYKCnEt9j\":\"contentSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerP_wH88DOG=withCSS(Component,css,\"framer-oo9Jy\");export default FramerP_wH88DOG;FramerP_wH88DOG.displayName=\"Galerie N\\xba3/01 Galerie M\";FramerP_wH88DOG.defaultProps={height:420,width:810};addPropertyControls(FramerP_wH88DOG,{variant:{options:[\"CC6QfS7Qi\",\"VxB_9kgE2\",\"A10n7swcZ\",\"AjW39bVbg\",\"Med_2qAgs\",\"kYaUXSp9w\",\"NCJJW19dr\",\"b96xElJMG\",\"zjs4lCEn0\",\"pvdKLR2c_\",\"tkJOQRg76\",\"cF9zToVtu\"],optionTitles:[\"P1/Tab 1\",\"P1/Tab 2\",\"P1/Tab 3\",\"P1/Tab 4\",\"P2/Tab 1\",\"P2/Tab 2\",\"P2/Tab 3\",\"P2/Tab 4\",\"P3/Tab 1\",\"P3/Tab 2\",\"P3/Tab 3\",\"P3/Tab 4\"],title:\"Variant\",type:ControlType.Enum},TxKUgBIjF:{defaultValue:38,min:0,title:\"marginGap\",type:ControlType.Number},AgOhlX8i3:{defaultValue:28,min:0,title:\"contentPadding\",type:ControlType.Number},fYKCnEt9j:GalerieN302ContentControls?.[\"Yi6NSLUCI\"]&&{...GalerieN302ContentControls[\"Yi6NSLUCI\"],defaultValue:\"vjFeuUetq\",description:undefined,hidden:undefined,title:\"Content Size\"}});addFonts(FramerP_wH88DOG,[...GalerieN303TabFonts,...GalerieN302ContentFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerP_wH88DOG\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"420\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"TxKUgBIjF\\\":\\\"marginGap\\\",\\\"AgOhlX8i3\\\":\\\"contentPadding\\\",\\\"fYKCnEt9j\\\":\\\"contentSize\\\"}\",\"framerIntrinsicWidth\":\"810\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VxB_9kgE2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"A10n7swcZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AjW39bVbg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Med_2qAgs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kYaUXSp9w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NCJJW19dr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"b96xElJMG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zjs4lCEn0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pvdKLR2c_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tkJOQRg76\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cF9zToVtu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "export const v0=\"Maison\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1f5f6d9)\nimport*as localizedValues from\"./Z0q0XTJkn-0.js\";const valuesByLocaleId={dC0rUWJM9:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1f5f6d9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/zDNisvYphtJ5tdUcvRU2/WGAzi1ura7obtK2VsF4v/AWQU7nX0y.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/vMEYZo2NqeI1uZ81YKld/HEETMLnqnGv3QTQzI2yJ/GWltAg7xQ.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/zZDl7RtKFnawxIevLGlB/D4eSnrZZkunxyCgDVO9T/KOe3TBRGH.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/ZAekxYRVCzsioYcotKUW/s2pc86jX3yRBF1P7PElw/Z0q0XTJkn.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"v1xCwRaul\",\"EuIoPAdl5\",\"XNQmgmeqO\",\"eISq21EII\"];const serializationHash=\"framer-nLpUW\";const variantClassNames={eISq21EII:\"framer-v-4mcdl9\",EuIoPAdl5:\"framer-v-1nwvi6l\",v1xCwRaul:\"framer-v-5h5zzi\",XNQmgmeqO:\"framer-v-bq6k2z\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableVariantMap={\"Vertical alignLeft\":\"eISq21EII\",\"Vertical noShadow\":\"XNQmgmeqO\",Horizontal:\"EuIoPAdl5\",Vertical:\"v1xCwRaul\"};const getProps=({backgroundColor,distribution,hasIcon,hasTitle2,height,id,mainColor,name1,padding,secondaryColor,text,textColor,title,title2,title2Color,visible,width,...props})=>{return{...props,EUr6IsiAv:secondaryColor??props.EUr6IsiAv??\"var(--token-adce540d-1222-4d51-a2b1-22917d647235, rgb(245, 229, 196))\",GsOrZKVDB:title2??props.GsOrZKVDB??\"secondTitle\",j0oenodEk:name1??props.j0oenodEk,jMlIJu00o:textColor??props.jMlIJu00o??\"var(--token-db7ceef3-9187-4b34-a5fa-402db133a7a8, rgb(77, 77, 77))\",Lg1Ef3mN6:visible??props.Lg1Ef3mN6??true,mfeq5AA2e:title??props.mfeq5AA2e??\"Invite your LPs\",mrt9Om4pU:hasTitle2??props.mrt9Om4pU??true,qBRTJ4i2I:padding??props.qBRTJ4i2I??32,RszP_RJPi:hasIcon??props.RszP_RJPi??true,TndjuksyO:title2Color??props.TndjuksyO??\"var(--token-01d4fa12-698d-4466-be2e-5bf46bab1ccb, rgb(179, 179, 179))\",uOlObs5u1:backgroundColor??props.uOlObs5u1??\"var(--token-43d2da8e-3dbc-409e-8bc7-3d3835e600e5, rgb(255, 255, 255))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"v1xCwRaul\",vNAPX5Cl0:humanReadableEnumMap[distribution]??distribution??props.vNAPX5Cl0??\"flex-start\",XazzoyqIw:text??props.XazzoyqIw??\"Investors provide information about their ownership structure to get the appropriate docs and data down to the last relevant beneficial owner on the first try.\",yNfufz6Gq:mainColor??props.yNfufz6Gq??\"var(--token-79e35093-6216-419b-b240-7d1a6b64dc9f, rgb(208, 173, 106))\"};};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,mfeq5AA2e,XazzoyqIw,yNfufz6Gq,EUr6IsiAv,uOlObs5u1,jMlIJu00o,RszP_RJPi,vNAPX5Cl0,qBRTJ4i2I,GsOrZKVDB,mrt9Om4pU,TndjuksyO,Lg1Ef3mN6,j0oenodEk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"v1xCwRaul\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-5h5zzi\",className,classNames),\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"v1xCwRaul\",ref:refBinding,style:{\"--10fs5y\":numberToPixelString(qBRTJ4i2I),\"--1dp8inw\":vNAPX5Cl0,backgroundColor:uOlObs5u1,borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1px 40px 0px rgba(0, 0, 0, 0.09)\",...style},variants:{XNQmgmeqO:{boxShadow:\"none\"}},...addPropertyOverrides({eISq21EII:{\"data-framer-name\":\"Vertical alignLeft\"},EuIoPAdl5:{\"data-framer-name\":\"Horizontal\"},XNQmgmeqO:{\"data-framer-name\":\"Vertical noShadow\"}},baseVariant,gestureVariant),children:[RszP_RJPi&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rm51bj\",layoutDependency:layoutDependency,layoutId:\"p6Koa9FI4\",style:{backgroundColor:EUr6IsiAv,borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},variants:{EuIoPAdl5:{backgroundColor:\"var(--token-b387e438-ec83-460c-9932-75292d45a704, rgba(1, 165, 196, 0.1))\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yerk38-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"FDy2Xxfj_-container\",nodeId:\"FDy2Xxfj_\",rendersWithMotion:true,scopeId:\"Z0q0XTJkn\",children:/*#__PURE__*/_jsx(Phosphor,{color:yNfufz6Gq,height:\"100%\",iconSearch:getLocalizedValue(\"v0\",activeLocale)??\"House\",iconSelection:j0oenodEk,id:\"FDy2Xxfj_\",layoutId:\"FDy2Xxfj_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\",...addPropertyOverrides({EuIoPAdl5:{color:\"var(--token-0dbc62f9-ce04-4373-93c9-1d22735eece5, rgb(1, 165, 196))\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1imsnkm\",layoutDependency:layoutDependency,layoutId:\"o05FRtnqC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-19gjlk5\",\"data-styles-preset\":\"KOe3TBRGH\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--variable-reference-yNfufz6Gq-Z0q0XTJkn))\"},children:\"text\"})}),className:\"framer-1ohujwl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Z6ifrlhSn\",style:{\"--extracted-1lwpl3i\":\"var(--variable-reference-yNfufz6Gq-Z0q0XTJkn)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-yNfufz6Gq-Z0q0XTJkn\":yNfufz6Gq},text:mfeq5AA2e,variants:{EuIoPAdl5:{\"--extracted-1lwpl3i\":\"var(--token-0dbc62f9-ce04-4373-93c9-1d22735eece5, rgb(1, 165, 196))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eISq21EII:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-19gjlk5\",\"data-styles-preset\":\"KOe3TBRGH\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--variable-reference-yNfufz6Gq-Z0q0XTJkn))\"},children:\"text\"})})},EuIoPAdl5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-19gjlk5\",\"data-styles-preset\":\"KOe3TBRGH\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-0dbc62f9-ce04-4373-93c9-1d22735eece5, rgb(1, 165, 196)))\"},children:\"text\"})}),verticalAlignment:\"center\"}},baseVariant,gestureVariant)}),mrt9Om4pU&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-11yb9wy\",\"data-styles-preset\":\"AWQU7nX0y\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--variable-reference-TndjuksyO-Z0q0XTJkn))\"},children:\"secondTitle\"})}),className:\"framer-1xjt0i4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uyzUJnFBh\",style:{\"--extracted-1w1cjl5\":\"var(--variable-reference-TndjuksyO-Z0q0XTJkn)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-TndjuksyO-Z0q0XTJkn\":TndjuksyO},text:GsOrZKVDB,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eISq21EII:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-11yb9wy\",\"data-styles-preset\":\"AWQU7nX0y\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--variable-reference-TndjuksyO-Z0q0XTJkn))\"},children:\"secondTitle\"})})},EuIoPAdl5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-11yb9wy\",\"data-styles-preset\":\"AWQU7nX0y\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--variable-reference-TndjuksyO-Z0q0XTJkn))\"},children:\"secondTitle\"})})}},baseVariant,gestureVariant)}),Lg1Ef3mN6&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17bgt0w\",\"data-styles-preset\":\"GWltAg7xQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-jMlIJu00o-Z0q0XTJkn))\"},children:\"Investors provide information about their ownership structure to get the appropriate docs and data down to the last relevant beneficial owner on the first try.\"})}),className:\"framer-1wonlju\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PBYAy46N1\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-jMlIJu00o-Z0q0XTJkn)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-jMlIJu00o-Z0q0XTJkn\":jMlIJu00o},text:XazzoyqIw,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eISq21EII:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17bgt0w\",\"data-styles-preset\":\"GWltAg7xQ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-jMlIJu00o-Z0q0XTJkn))\"},children:\"Investors provide information about their ownership structure to get the appropriate docs and data down to the last relevant beneficial owner on the first try.\"})})},EuIoPAdl5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17bgt0w\",\"data-styles-preset\":\"GWltAg7xQ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-jMlIJu00o-Z0q0XTJkn))\"},children:\"Investors provide information about their ownership structure to get the appropriate docs and data down to the last relevant beneficial owner on the first try.\"})})},XNQmgmeqO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17bgt0w\",\"data-styles-preset\":\"GWltAg7xQ\",style:{\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-jMlIJu00o-Z0q0XTJkn))\"},children:\"Investors provide information about their ownership structure to get the appropriate docs and data down to the last relevant beneficial owner on the first try.\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nLpUW.framer-14x75i5, .framer-nLpUW .framer-14x75i5 { display: block; }\",\".framer-nLpUW.framer-5h5zzi { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: var(--1dp8inw); overflow: visible; padding: var(--10fs5y); position: relative; width: 260px; }\",\".framer-nLpUW .framer-1rm51bj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-nLpUW .framer-yerk38-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-nLpUW .framer-1imsnkm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-nLpUW .framer-1ohujwl, .framer-nLpUW .framer-1xjt0i4, .framer-nLpUW .framer-1wonlju { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nLpUW.framer-5h5zzi, .framer-nLpUW .framer-1rm51bj, .framer-nLpUW .framer-1imsnkm { gap: 0px; } .framer-nLpUW.framer-5h5zzi > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-nLpUW.framer-5h5zzi > :first-child, .framer-nLpUW .framer-1imsnkm > :first-child { margin-top: 0px; } .framer-nLpUW.framer-5h5zzi > :last-child, .framer-nLpUW .framer-1imsnkm > :last-child { margin-bottom: 0px; } .framer-nLpUW .framer-1rm51bj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-nLpUW .framer-1rm51bj > :first-child { margin-left: 0px; } .framer-nLpUW .framer-1rm51bj > :last-child { margin-right: 0px; } .framer-nLpUW .framer-1imsnkm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-nLpUW.framer-v-1nwvi6l.framer-5h5zzi { align-content: flex-start; align-items: flex-start; flex-direction: row; padding: 32px; width: 381px; }\",\".framer-nLpUW.framer-v-1nwvi6l .framer-1imsnkm { flex: 1 0 0px; width: 1px; }\",\".framer-nLpUW.framer-v-1nwvi6l .framer-1ohujwl { height: 48px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nLpUW.framer-v-1nwvi6l.framer-5h5zzi { gap: 0px; } .framer-nLpUW.framer-v-1nwvi6l.framer-5h5zzi > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-nLpUW.framer-v-1nwvi6l.framer-5h5zzi > :first-child { margin-left: 0px; } .framer-nLpUW.framer-v-1nwvi6l.framer-5h5zzi > :last-child { margin-right: 0px; } }\",\".framer-nLpUW.framer-v-4mcdl9.framer-5h5zzi { align-content: flex-start; align-items: flex-start; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 410\n * @framerIntrinsicWidth 260\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"EuIoPAdl5\":{\"layout\":[\"fixed\",\"auto\"]},\"XNQmgmeqO\":{\"layout\":[\"fixed\",\"auto\"]},\"eISq21EII\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"mfeq5AA2e\":\"title\",\"XazzoyqIw\":\"text\",\"yNfufz6Gq\":\"mainColor\",\"EUr6IsiAv\":\"secondaryColor\",\"uOlObs5u1\":\"backgroundColor\",\"jMlIJu00o\":\"textColor\",\"RszP_RJPi\":\"hasIcon\",\"vNAPX5Cl0\":\"distribution\",\"qBRTJ4i2I\":\"padding\",\"GsOrZKVDB\":\"title2\",\"mrt9Om4pU\":\"hasTitle2\",\"TndjuksyO\":\"title2Color\",\"Lg1Ef3mN6\":\"visible\",\"j0oenodEk\":\"name1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZ0q0XTJkn=withCSS(Component,css,\"framer-nLpUW\");export default FramerZ0q0XTJkn;FramerZ0q0XTJkn.displayName=\"04 Info/infoCell\";FramerZ0q0XTJkn.defaultProps={height:410,width:260};addPropertyControls(FramerZ0q0XTJkn,{variant:{options:[\"v1xCwRaul\",\"EuIoPAdl5\",\"XNQmgmeqO\",\"eISq21EII\"],optionTitles:[\"Vertical\",\"Horizontal\",\"Vertical noShadow\",\"Vertical alignLeft\"],title:\"Variant\",type:ControlType.Enum},mfeq5AA2e:{defaultValue:\"Invite your LPs\",displayTextArea:false,title:\"Title\",type:ControlType.String},XazzoyqIw:{defaultValue:\"Investors provide information about their ownership structure to get the appropriate docs and data down to the last relevant beneficial owner on the first try.\",displayTextArea:false,title:\"Text\",type:ControlType.String},yNfufz6Gq:{defaultValue:'var(--token-79e35093-6216-419b-b240-7d1a6b64dc9f, rgb(208, 173, 106)) /* {\"name\":\"Yellow\"} */',title:\"mainColor\",type:ControlType.Color},EUr6IsiAv:{defaultValue:'var(--token-adce540d-1222-4d51-a2b1-22917d647235, rgb(245, 229, 196)) /* {\"name\":\"Yellow light\"} */',title:\"secondaryColor\",type:ControlType.Color},uOlObs5u1:{defaultValue:'var(--token-43d2da8e-3dbc-409e-8bc7-3d3835e600e5, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',title:\"backgroundColor\",type:ControlType.Color},jMlIJu00o:{defaultValue:'var(--token-db7ceef3-9187-4b34-a5fa-402db133a7a8, rgb(77, 77, 77)) /* {\"name\":\"800\"} */',title:\"textColor\",type:ControlType.Color},RszP_RJPi:{defaultValue:true,title:\"has Icon\",type:ControlType.Boolean},vNAPX5Cl0:{defaultValue:\"flex-start\",options:[\"flex-start\",\"center\",\"flex-end\",\"space-between\",\"space-around\",\"space-evenly\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Space Between\",\"Space Around\",\"Space Evenly\"],title:\"Distribution\",type:ControlType.Enum},qBRTJ4i2I:{defaultValue:32,min:0,title:\"Padding\",type:ControlType.Number},GsOrZKVDB:{defaultValue:\"secondTitle\",displayTextArea:false,title:\"Title 2\",type:ControlType.String},mrt9Om4pU:{defaultValue:true,title:\"has title2\",type:ControlType.Boolean},TndjuksyO:{defaultValue:\"var(--token-01d4fa12-698d-4466-be2e-5bf46bab1ccb, rgb(179, 179, 179))\",title:\"title2Color\",type:ControlType.Color},Lg1Ef3mN6:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean},j0oenodEk:PhosphorControls?.[\"iconSelection\"]&&{...PhosphorControls[\"iconSelection\"],defaultValue:null,description:undefined,hidden:undefined,title:\"Name\"}});addFonts(FramerZ0q0XTJkn,[{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),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZ0q0XTJkn\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EuIoPAdl5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XNQmgmeqO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eISq21EII\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"mfeq5AA2e\\\":\\\"title\\\",\\\"XazzoyqIw\\\":\\\"text\\\",\\\"yNfufz6Gq\\\":\\\"mainColor\\\",\\\"EUr6IsiAv\\\":\\\"secondaryColor\\\",\\\"uOlObs5u1\\\":\\\"backgroundColor\\\",\\\"jMlIJu00o\\\":\\\"textColor\\\",\\\"RszP_RJPi\\\":\\\"hasIcon\\\",\\\"vNAPX5Cl0\\\":\\\"distribution\\\",\\\"qBRTJ4i2I\\\":\\\"padding\\\",\\\"GsOrZKVDB\\\":\\\"title2\\\",\\\"mrt9Om4pU\\\":\\\"hasTitle2\\\",\\\"TndjuksyO\\\":\\\"title2Color\\\",\\\"Lg1Ef3mN6\\\":\\\"visible\\\",\\\"j0oenodEk\\\":\\\"name1\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"410\",\"framerIntrinsicWidth\":\"260\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "J645tUUow_0_exports", "__export", "__FramerMetadata__", "v0", "v0", "__FramerMetadata__", "valuesByLocaleId", "J645tUUow_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "contrastColor", "has4Th", "has5Th", "has6Th", "height", "id", "mainColor", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "G6905kWWB", "UpuUjswDC", "Dyeu5P1hW", "iCjpS7Fkh", "p_TUkrUYn", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "isOnCanvas", "useIsOnFramerCanvas", "initialVariant", "useConstant", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "css", "FramerC1kV_8Krw", "withCSS", "C1kV_8Krw_default", "addPropertyControls", "ControlType", "addFonts", "iqndfx1y1_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "__FramerMetadata__", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "XkTUXOKyy", "bagU2Rlon", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "transitions", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "RichText2", "Image2", "css", "FramerzB0BwIkEe", "withCSS", "zB0BwIkEe_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "GalerieN3ContentCellFonts", "getFonts", "zB0BwIkEe_default", "GalerieN3ContentCellControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "iqndfx1y1_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "addImageAlt", "image", "alt", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "contentSize", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_humanReadableEnumMap_contentSize", "_ref1", "_ref2", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Yi6NSLUCI", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "Frameriqndfx1y1", "withCSS", "iqndfx1y1_default", "addPropertyControls", "ControlType", "addFonts", "keNjrFSSq_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "__FramerMetadata__", "valuesByLocaleId", "keNjrFSSq_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "color", "height", "id", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Variants", "motion", "x", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "OneCVm2r7", "NFsi90V06", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "RichText2", "css", "FramerQkgItMsVb", "withCSS", "QkgItMsVb_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "GalerieN3TabCellFonts", "getFonts", "QkgItMsVb_default", "GalerieN3TabCellControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "id", "tap", "textColor", "textState", "width", "props", "createLayoutDependency", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "HEVtn9fJ8", "BkopVo3Ma", "G8m0SNDol", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap95lkjf", "args", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "getLocalizedValue", "css", "FramerkeNjrFSSq", "withCSS", "keNjrFSSq_default", "addPropertyControls", "ControlType", "addFonts", "GalerieN304TabCellNamedFonts", "getFonts", "keNjrFSSq_default", "GalerieN302ContentFonts", "iqndfx1y1_default", "PhosphorFonts", "Icon", "Other01SlideIndicatorFonts", "C1kV_8Krw_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "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", "onTap4zbyd6", "args", "onTap1pmc0ct", "onTap1vixlv9", "onTap1wg5llg", "onTap17wfwyo", "onTapharppa", "onTapi4fgr8", "onTapejubcj", "onTap9zhrct", "onTap1b4c8v7", "onTap133k160", "onTapsq6eze", "onTapcfgkq9", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "getLocalizedValue", "css", "FramerJ645tUUow", "withCSS", "J645tUUow_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "isOnCanvas", "useIsOnFramerCanvas", "initialVariant", "useConstant", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "css", "FramerpS9Ajfotc", "withCSS", "pS9Ajfotc_default", "addPropertyControls", "ControlType", "addFonts", "GalerieN3TabCellRectangleFonts", "getFonts", "pS9Ajfotc_default", "GalerieN304TabCellNamedFonts", "keNjrFSSq_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tab1", "tab2", "tab3", "tab4", "width", "props", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "hObUuSL7F", "MslXXjhNb", "vTQu9wFSo", "qUWfvftPR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "BkopVo3Ma1h69rr5", "args", "BkopVo3Mabitlih", "BkopVo3Mas7py3i", "BkopVo3Mab66mfo", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerCDtlSwayk", "withCSS", "CDtlSwayk_default", "addPropertyControls", "ControlType", "addFonts", "GalerieN303TabFonts", "getFonts", "CDtlSwayk_default", "GalerieN302ContentFonts", "iqndfx1y1_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Variants", "motion", "x", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "hObUuSL7F43i1j9", "args", "MslXXjhNb1cce3yk", "vTQu9wFSo1ncnf6d", "qUWfvftPR1vhceq8", "hObUuSL7Fct40l9", "MslXXjhNbg9wukk", "vTQu9wFSox9ytx", "qUWfvftPR18nlvat", "hObUuSL7F1yvt4qi", "MslXXjhNb1vngdal", "vTQu9wFSoig4arj", "qUWfvftPRmv5ph4", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "css", "FramerlY8nvG7ht", "withCSS", "lY8nvG7ht_default", "addPropertyControls", "ControlType", "addFonts", "GalerieN303TabFonts", "getFonts", "CDtlSwayk_default", "GalerieN302ContentFonts", "iqndfx1y1_default", "GalerieN302ContentControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "contentPadding", "contentSize", "height", "id", "marginGap", "width", "props", "createLayoutDependency", "variants", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "TxKUgBIjF", "AgOhlX8i3", "fYKCnEt9j", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "transitions", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "hObUuSL7F72lu54", "args", "MslXXjhNb1sma2s3", "vTQu9wFSoptdvx0", "qUWfvftPRa90khn", "hObUuSL7F1y8mqx9", "MslXXjhNb9fqzy1", "vTQu9wFSo19emddm", "qUWfvftPRmvar1l", "hObUuSL7Fwilbxp", "MslXXjhNb1po6xpb", "vTQu9wFSoqam8jj", "qUWfvftPR147dm7y", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "CDtlSwayk_default", "iqndfx1y1_default", "css", "FramerP_wH88DOG", "withCSS", "P_wH88DOG_default", "addPropertyControls", "ControlType", "GalerieN302ContentControls", "addFonts", "GalerieN303TabFonts", "GalerieN302ContentFonts", "Z0q0XTJkn_0_exports", "__export", "__FramerMetadata__", "v0", "v0", "__FramerMetadata__", "valuesByLocaleId", "Z0q0XTJkn_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "backgroundColor", "distribution", "hasIcon", "hasTitle2", "height", "id", "mainColor", "name1", "padding", "secondaryColor", "text", "textColor", "title", "title2", "title2Color", "visible", "width", "props", "createLayoutDependency", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "mfeq5AA2e", "XazzoyqIw", "yNfufz6Gq", "EUr6IsiAv", "uOlObs5u1", "jMlIJu00o", "RszP_RJPi", "vNAPX5Cl0", "qBRTJ4i2I", "GsOrZKVDB", "mrt9Om4pU", "TndjuksyO", "Lg1Ef3mN6", "j0oenodEk", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "getLocalizedValue", "RichText2", "css", "FramerZ0q0XTJkn", "withCSS", "Z0q0XTJkn_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
