{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js", "ssg:https://framerusercontent.com/modules/KIJ7qMPwvRwSy1BlyXyz/0QZ9yifWWoMdPorCxsBb/fyODWBpVR.js", "ssg:https://framerusercontent.com/modules/lylXjO34qxuKB9PPMT9w/QSPMBaPFyi5VL0RkV1k6/QkcakyId5.js", "ssg:https://framerusercontent.com/modules/QOYHLOTpIxhMlblrc7JX/Gskk4aJABQGkpzqMGJGQ/qSPfMdIJs.js", "ssg:https://framerusercontent.com/modules/xkt82Q6byj2whHxGARqY/4N37svVHoksCYupJPiLi/r4tOFybda.js", "ssg:https://framerusercontent.com/modules/EuF8cRHXfpBiKxsvFSbJ/uKoLV9mzrjSn5r1OkSsS/saC4IrP2s.js", "ssg:https://framerusercontent.com/modules/v7ZrqB0UHzNP2NM9Wo0c/4xk96M5ZEOm7rN2QRYGg/ThR8bPWHZ.js", "ssg:https://framerusercontent.com/modules/acVgBmLUNvOkKIrhLwR7/k4s9mcI9PiXWQz2IbWP0/xGKYZtLHG.js", "ssg:https://framerusercontent.com/modules/SD6MtKyS4PiaMEbOglXp/W4pY7NUvYoFjSa38dT5G/xHNRqM6F7.js", "ssg:https://framerusercontent.com/modules/xFXYJxJHSahTqMzL1iaO/ziY3Ue4EqC66qUsBkyz7/xzSFaubax.js", "ssg:https://framerusercontent.com/modules/ZnpoOFYxr68vlw9lq7Ez/nhryE8P0VID7s9sOqr4M/Gradient.js", "ssg:https://framerusercontent.com/modules/f3zMUZgBzckS0Lx6TD8X/NsGK5qLSZQYo1imbaaTI/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{startTransition(()=>setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches));},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (5951dd1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"pUg8AXL4D\"];const serializationHash=\"framer-YRgkV\";const variantClassNames={pUg8AXL4D:\"framer-v-gh6vh2\"};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 Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pUg8AXL4D\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-gh6vh2\",className,classNames),\"data-framer-name\":\"Roblox\",layoutDependency:layoutDependency,layoutId:\"pUg8AXL4D\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1olws33\",\"data-framer-name\":\"roblox\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"OoxYbB2uH\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 177 32\"><path d=\"M 35.294 0.356 L 29.014 24.958 L 53.414 31.289 L 59.694 6.687 Z M 116.276 3.111 L 116.276 28.514 L 141.471 28.514 L 141.471 3.111 Z M 144.482 3.111 L 154.323 15.659 L 144.482 28.514 L 156.589 28.514 L 160.444 23.468 L 164.435 28.514 L 176.644 28.514 L 166.499 15.591 L 176.036 3.111 L 163.928 3.111 L 160.377 7.783 L 156.656 3.111 Z M 0.534 3.111 L 0.534 28.515 L 11.694 28.515 L 11.694 19.104 C 14.704 19.104 16.125 21.763 16.598 28.515 L 28.164 28.515 C 27.657 23.639 26 19.445 23.294 16.342 C 25.154 15.046 26.169 13.068 26.169 10.715 C 26.169 6.93 23.362 3.111 17.004 3.111 Z M 62.296 3.111 L 62.296 28.515 L 79.882 28.515 C 85.766 28.515 88.506 25.412 88.506 21.49 C 88.506 19.308 87.728 17.364 84.549 15.66 C 87.086 14.193 87.829 12.284 87.829 10.203 C 87.829 7.271 86.206 3.111 78.056 3.111 Z M 91.925 3.111 L 91.925 28.515 L 112.859 28.515 L 112.859 22.139 L 103.085 22.139 L 103.085 3.111 Z M 73.456 8.226 L 74.133 8.226 C 76.399 8.226 77.075 9.283 77.075 10.681 C 77.075 12.488 76.162 13.17 73.727 13.17 L 73.456 13.17 Z M 11.694 8.328 L 12.371 8.328 C 14.468 8.328 15.008 9.761 15.008 10.852 C 15.008 12.489 14.028 13.239 11.999 13.239 L 11.694 13.239 Z M 42.585 12.802 L 47.348 14.038 L 46.122 18.841 L 41.359 17.605 Z M 126.413 13.332 L 131.332 13.332 L 131.332 18.291 L 126.413 18.291 Z M 73.456 17.433 L 74.234 17.433 C 76.568 17.433 77.345 18.626 77.345 20.297 C 77.345 22.207 76.364 22.923 73.794 22.923 L 73.456 22.923 Z\" fill=\"rgb(130,139,163)\"></path></svg>',svgContentId:11160921344,withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YRgkV.framer-1tquouy, .framer-YRgkV .framer-1tquouy { display: block; }\",\".framer-YRgkV.framer-gh6vh2 { height: 32px; overflow: hidden; position: relative; width: 177px; }\",\".framer-YRgkV .framer-1olws33 { flex: none; height: 32px; left: calc(49.71751412429381% - 177px / 2); position: absolute; top: calc(50.00000000000002% - 32px / 2); width: 177px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 177\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfyODWBpVR=withCSS(Component,css,\"framer-YRgkV\");export default FramerfyODWBpVR;FramerfyODWBpVR.displayName=\"roblox\";FramerfyODWBpVR.defaultProps={height:32,width:177};addFonts(FramerfyODWBpVR,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfyODWBpVR\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"177\",\"framerIntrinsicHeight\":\"32\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fyODWBpVR.map", "// Generated by Framer (83b8097)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionAWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.a));const enabledGestures={ZGN46nMAz:{hover:true}};const cycleOrder=[\"ZGN46nMAz\",\"Nyx4ZY2V0\"];const serializationHash=\"framer-6Rhjz\";const variantClassNames={Nyx4ZY2V0:\"framer-v-1lixx1r\",ZGN46nMAz:\"framer-v-psoogj\"};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:30,delay:.2,mass:1,stiffness:180,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition2={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 Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop L\":\"ZGN46nMAz\",Mobile:\"Nyx4ZY2V0\"};const getProps=({header,height,id,link,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,eO79krJ8p:(_ref=header!==null&&header!==void 0?header:props.eO79krJ8p)!==null&&_ref!==void 0?_ref:\"Discover DRESSX First Avatar Fashion Trend Report\",lEOsH16zb:link!==null&&link!==void 0?link:props.lEOsH16zb,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"ZGN46nMAz\"};};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,eO79krJ8p,lEOsH16zb,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZGN46nMAz\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(Link,{href:lEOsH16zb,nodeId:\"ZGN46nMAz\",openInNewTab:false,children:/*#__PURE__*/_jsxs(MotionAWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-psoogj\",className,classNames)} framer-1ey9ctx`,\"data-framer-appear-id\":\"psoogj\",\"data-framer-name\":\"Desktop L\",layoutDependency:layoutDependency,layoutId:\"ZGN46nMAz\",optimized:true,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(255, 255, 255, 0.4)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,boxShadow:\"none\",...style},variants:{\"ZGN46nMAz-hover\":{backgroundColor:\"rgba(255, 255, 255, 0.9)\",boxShadow:\"0px 0.48290122862090357px 0.48290122862090357px -2.125px rgba(17, 17, 17, 0.4593), 0px 4px 4px -4.25px rgba(17, 17, 17, 0.09)\"}},...addPropertyOverrides({\"ZGN46nMAz-hover\":{\"data-framer-name\":undefined},Nyx4ZY2V0:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gdfu8x\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"choB0kxWA\",style:{backgroundColor:\"rgb(234, 242, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},variants:{\"ZGN46nMAz-hover\":{backgroundColor:\"var(--token-79cc7236-ec94-4b2c-8a64-ba34fdc7c370, rgb(234, 242, 255))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.14px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(79, 53, 235)))\"},children:\"New\"})}),className:\"framer-902rk0\",\"data-framer-name\":\"Text\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"lebbYICuX\",style:{\"--extracted-r6o4lv\":\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(79, 53, 235))\",\"--framer-paragraph-spacing\":\"30px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4jdy0o\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"Hw4QrZDvn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.14px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(87, 60, 255))\"},children:\"Try DRESSX.ME AI Stylist - generate outfits in seconds!\"})}),className:\"framer-j9rgpq\",\"data-framer-name\":\"Message\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"Gioadk8Hp\",style:{\"--extracted-r6o4lv\":\"rgb(87, 60, 255)\",\"--framer-paragraph-spacing\":\"30px\"},text:eO79krJ8p,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Nyx4ZY2V0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.14px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(87, 60, 255))\"},children:\"Try now DRESSX.ME AI Stylist \"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1m3bxat\",\"data-framer-name\":\"arrow-right\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"bdZ4idF_8\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 3.333 8 L 12.667 8 M 12.667 8 L 8 3.333 M 12.667 8 L 8 12.667\" fill=\"transparent\" stroke-width=\"1.3333\" stroke=\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(79, 53, 235)) /* {&quot;name&quot;:&quot;Primary/Blue-500&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10719346177,withExternalLayout:true,...addPropertyOverrides({Nyx4ZY2V0:{svgContentId:9338287070}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6Rhjz.framer-1ey9ctx, .framer-6Rhjz .framer-1ey9ctx { display: block; }\",\".framer-6Rhjz.framer-psoogj { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px 12px 6px 8px; position: relative; text-decoration: none; width: min-content; }\",\".framer-6Rhjz .framer-gdfu8x { 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: 4px 12px 4px 12px; position: relative; width: min-content; }\",\".framer-6Rhjz .framer-902rk0, .framer-6Rhjz .framer-j9rgpq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-6Rhjz .framer-4jdy0o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-6Rhjz .framer-1m3bxat { flex: none; height: 16px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6Rhjz.framer-psoogj, .framer-6Rhjz .framer-gdfu8x, .framer-6Rhjz .framer-4jdy0o { gap: 0px; } .framer-6Rhjz.framer-psoogj > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-6Rhjz.framer-psoogj > :first-child, .framer-6Rhjz .framer-gdfu8x > :first-child, .framer-6Rhjz .framer-4jdy0o > :first-child { margin-left: 0px; } .framer-6Rhjz.framer-psoogj > :last-child, .framer-6Rhjz .framer-gdfu8x > :last-child, .framer-6Rhjz .framer-4jdy0o > :last-child { margin-right: 0px; } .framer-6Rhjz .framer-gdfu8x > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-6Rhjz .framer-4jdy0o > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-6Rhjz.framer-v-1lixx1r.framer-psoogj { cursor: unset; }\",\".framer-6Rhjz.framer-v-psoogj.hover .framer-4jdy0o { gap: 8px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6Rhjz.framer-v-psoogj.hover .framer-4jdy0o { gap: 0px; } .framer-6Rhjz.framer-v-psoogj.hover .framer-4jdy0o > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-6Rhjz.framer-v-psoogj.hover .framer-4jdy0o > :first-child { margin-left: 0px; } .framer-6Rhjz.framer-v-psoogj.hover .framer-4jdy0o > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 39\n * @framerIntrinsicWidth 431\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Nyx4ZY2V0\":{\"layout\":[\"auto\",\"auto\"]},\"qxSK5EcIU\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"eO79krJ8p\":\"header\",\"lEOsH16zb\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQkcakyId5=withCSS(Component,css,\"framer-6Rhjz\");export default FramerQkcakyId5;FramerQkcakyId5.displayName=\"Announsement Button\";FramerQkcakyId5.defaultProps={height:39,width:431};addPropertyControls(FramerQkcakyId5,{variant:{options:[\"ZGN46nMAz\",\"Nyx4ZY2V0\"],optionTitles:[\"Desktop L\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},eO79krJ8p:{defaultValue:\"Discover DRESSX First Avatar Fashion Trend Report\",displayTextArea:true,title:\"Header\",type:ControlType.String},lEOsH16zb:{title:\"Link\",type:ControlType.Link}});addFonts(FramerQkcakyId5,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQkcakyId5\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"431\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Nyx4ZY2V0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qxSK5EcIU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"39\",\"framerVariables\":\"{\\\"eO79krJ8p\\\":\\\"header\\\",\\\"lEOsH16zb\\\":\\\"link\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QkcakyId5.map", "// Generated by Framer (5951dd1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"AvxShEq9u\"];const serializationHash=\"framer-nmb5m\";const variantClassNames={AvxShEq9u:\"framer-v-1l20keb\"};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 Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"AvxShEq9u\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1l20keb\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"AvxShEq9u\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-dpq4wn\",\"data-framer-name\":\"PRIMARY - GHOST\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:71,intrinsicWidth:73,layoutDependency:layoutDependency,layoutId:\"OsDeKUXmW\",svg:'<svg width=\"73\" height=\"71\" viewBox=\"0 0 73 71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M66.9688 52.5668C55.8055 47.1629 54.0264 38.8195 53.9472 38.2007C53.8514 37.451 53.7427 36.8617 54.5697 36.0991C55.3672 35.3624 58.9053 33.1725 59.887 32.4874C61.5096 31.3528 62.2243 30.2201 61.6975 28.8277C61.3291 27.8644 60.4322 27.5016 59.4873 27.5016C59.1893 27.5025 58.8922 27.5358 58.6014 27.601C56.8185 27.9878 55.0872 28.8811 54.0853 29.1224C53.9649 29.1534 53.8412 29.1701 53.7169 29.1721C53.1828 29.1721 52.9802 28.9345 53.0318 28.2917C53.157 26.3431 53.4222 22.5397 53.1146 18.9869C52.6929 14.0987 51.1163 11.6767 49.2468 9.5347C48.3425 8.49591 44.1432 4.0332 36.0392 4.0332C27.9352 4.0332 23.7414 8.49591 22.8426 9.5218C20.9677 11.6638 19.3929 14.0858 18.9748 18.974C18.6672 22.5268 18.9435 26.3283 19.0577 28.2788C19.0945 28.8903 18.9067 29.1592 18.3726 29.1592C18.2482 29.1571 18.1246 29.1404 18.0042 29.1095C17.0041 28.8682 15.2728 27.9749 13.4899 27.5881C13.1991 27.5229 12.902 27.4896 12.604 27.4887C11.6555 27.4887 10.7622 27.857 10.3938 28.8148C9.86707 30.2072 10.578 31.3399 12.2062 32.4745C13.1879 33.1596 16.726 35.3477 17.5235 36.0863C18.3486 36.8488 18.2418 37.4381 18.146 38.1878C18.0668 38.8158 16.2858 47.1592 5.1244 52.5539C4.47056 52.8707 3.35811 53.5411 5.31964 54.6241C8.39914 56.3259 10.4491 56.1436 12.0422 57.1695C13.3941 58.0407 12.5948 59.9193 13.5783 60.5971C14.7865 61.4314 18.3578 60.5381 22.9716 62.0613C26.8394 63.3359 29.1895 66.9366 36.0484 66.9366C42.9073 66.9366 45.3256 63.3193 49.1253 62.0613C53.7298 60.5381 57.3085 61.4314 58.5185 60.5971C59.5002 59.9193 58.7027 58.0407 60.0546 57.1695C61.6478 56.1436 63.6959 56.3259 66.7772 54.6241C68.7351 53.554 67.6226 52.8836 66.9688 52.5668Z\" fill=\"white\"/>\\n<path d=\"M71.8298 51.928C71.3288 50.5651 70.3748 49.8357 69.2881 49.2316C69.0837 49.1119 68.8958 49.0161 68.7356 48.9425C68.4114 48.7749 68.0799 48.6128 67.7502 48.4415C64.3631 46.6457 61.7183 44.3803 59.8838 41.6949C59.3629 40.9389 58.911 40.1376 58.5338 39.3006C58.3772 38.853 58.3846 38.5989 58.4969 38.3668C58.6084 38.188 58.7558 38.0343 58.9298 37.9155C59.5118 37.5306 60.1122 37.1401 60.5192 36.8768C61.2449 36.4071 61.8196 36.035 62.1898 35.7717C63.5803 34.7992 64.5528 33.7659 65.1606 32.6111C65.5847 31.8133 65.832 30.9335 65.8857 30.0315C65.9394 29.1295 65.7983 28.2266 65.4719 27.3841C64.551 24.9602 62.2616 23.4555 59.4878 23.4555C58.9028 23.4549 58.3193 23.5167 57.7473 23.6397C57.5944 23.6728 57.4416 23.7078 57.2924 23.7465C57.3182 22.0888 57.2813 20.3391 57.134 18.617C56.6109 12.563 54.491 9.38956 52.2808 6.85891C50.8655 5.27309 49.1984 3.93146 47.3466 2.88796C43.9927 0.972477 40.1893 0 36.0434 0C31.8975 0 28.1126 0.972477 24.7549 2.88796C22.8986 3.93177 21.2281 5.2761 19.8115 6.86627C17.6013 9.39692 15.4814 12.5759 14.9583 18.6244C14.811 20.3465 14.7742 22.1054 14.7981 23.7538C14.6489 23.7152 14.4979 23.6802 14.345 23.647C13.773 23.524 13.1896 23.4623 12.6045 23.4628C9.82889 23.4628 7.53583 24.9676 6.61861 27.3914C6.29076 28.2343 6.14821 29.1379 6.20065 30.0408C6.25309 30.9437 6.49928 31.8247 6.92251 32.624C7.53215 33.7788 8.50463 34.8121 9.89519 35.7846C10.2636 36.0424 10.84 36.4145 11.5657 36.8897C11.958 37.1438 12.5308 37.5159 13.0926 37.8879C13.2891 38.015 13.4562 38.1827 13.5825 38.3797C13.7004 38.621 13.7041 38.8806 13.5291 39.3595C13.1569 40.1789 12.7125 40.9636 12.2011 41.7041C10.4072 44.3287 7.83973 46.5536 4.56131 48.3347C2.82448 49.2556 1.0195 49.8707 0.256994 51.9428C-0.317651 53.5065 0.058078 55.2857 1.51863 56.7849C2.05467 57.3445 2.67639 57.8151 3.36045 58.1792C4.78378 58.9614 6.29728 59.5669 7.86736 59.9823C8.19137 60.0659 8.49897 60.2035 8.77722 60.3893C9.3095 60.8553 9.23398 61.557 9.94308 62.5848C10.299 63.1159 10.7513 63.5757 11.2766 63.9403C12.7647 64.9681 14.4371 65.0325 16.2089 65.1007C17.8095 65.1615 19.6236 65.2315 21.6957 65.9148C22.554 66.1984 23.4454 66.7473 24.4787 67.3882C26.9596 68.9132 30.3559 71 36.0397 71C41.7235 71 45.1438 68.9022 47.6431 67.3716C48.669 66.7417 49.5549 66.1984 50.3893 65.9221C52.4613 65.237 54.2755 65.1688 55.876 65.108C57.6479 65.0399 59.3202 64.9754 60.8084 63.9477C61.4304 63.514 61.9487 62.9479 62.3261 62.2901C62.8362 61.4226 62.8233 60.8166 63.3022 60.393C63.5633 60.216 63.8521 60.084 64.1568 60.0025C65.7483 59.5858 67.2824 58.9747 68.7245 58.1828C69.4513 57.7929 70.1055 57.2808 70.6584 56.6689L70.6768 56.6468C72.0471 55.1807 72.3916 53.4531 71.8298 51.928ZM66.7777 54.6429C63.6964 56.3447 61.6483 56.1624 60.0551 57.1883C58.7014 58.0594 59.5026 59.9381 58.519 60.6159C57.3108 61.4502 53.7395 60.5569 49.1258 62.0801C45.3206 63.3381 42.8931 66.9554 36.0489 66.9554C29.2047 66.9554 26.8343 63.3454 22.9665 62.0709C18.362 60.5477 14.7834 61.441 13.5733 60.6067C12.5916 59.9289 13.3891 58.0502 12.0372 57.179C10.4422 56.1532 8.39412 56.3355 5.31461 54.6429C3.35308 53.5599 4.46553 52.8895 5.11938 52.5727C16.2808 47.1688 18.0618 38.8254 18.141 38.2065C18.2368 37.4569 18.3436 36.8675 17.5185 36.105C16.721 35.3683 13.1828 33.1784 12.2011 32.4932C10.5767 31.3587 9.86204 30.226 10.3888 28.8336C10.7572 27.8703 11.656 27.5075 12.599 27.5075C12.897 27.5084 13.1941 27.5417 13.4849 27.6069C15.2678 27.9937 16.9991 28.887 17.9992 29.1283C18.1196 29.1592 18.2432 29.1759 18.3675 29.178C18.9017 29.178 19.0895 28.9091 19.0527 28.2976C18.9385 26.3471 18.6622 22.5456 18.9698 18.9928C19.3916 14.1046 20.9663 11.6826 22.8376 9.54059C23.7364 8.51101 27.9597 4.0483 36.036 4.0483C44.1124 4.0483 48.3467 8.49259 49.2455 9.51848C51.1186 11.6605 52.6952 14.0825 53.1133 18.9707C53.4209 22.5235 53.1557 26.3269 53.0304 28.2755C52.9881 28.9183 53.1815 29.1559 53.7156 29.1559C53.8399 29.1539 53.9636 29.1372 54.0839 29.1062C55.0859 28.8649 56.8172 27.9716 58.6001 27.5848C58.8909 27.5196 59.1879 27.4863 59.486 27.4854C60.4345 27.4854 61.3278 27.8537 61.6962 28.8115C62.2229 30.2039 61.512 31.3366 59.8857 32.4711C58.904 33.1563 55.3658 35.3444 54.5683 36.0829C53.7414 36.8454 53.85 37.4348 53.9458 38.1844C54.025 38.8125 55.8042 47.1559 66.9674 52.5506C67.6268 52.8803 68.7392 53.5507 66.7777 54.6429Z\" fill=\"#828BA3\"/>\\n</svg>\\n',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nmb5m.framer-a1tajk, .framer-nmb5m .framer-a1tajk { display: block; }\",\".framer-nmb5m.framer-1l20keb { height: 56px; overflow: hidden; position: relative; width: 58px; }\",\".framer-nmb5m .framer-dpq4wn { aspect-ratio: 1.028169014084507 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 56\n * @framerIntrinsicWidth 58\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerqSPfMdIJs=withCSS(Component,css,\"framer-nmb5m\");export default FramerqSPfMdIJs;FramerqSPfMdIJs.displayName=\"Snapchat\";FramerqSPfMdIJs.defaultProps={height:56,width:58};addFonts(FramerqSPfMdIJs,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqSPfMdIJs\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"56\",\"framerIntrinsicWidth\":\"58\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qSPfMdIJs.map", "// Generated by Framer (5951dd1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"ylqMUSwKf\"];const serializationHash=\"framer-ZR8ZA\";const variantClassNames={ylqMUSwKf:\"framer-v-x1hp2z\"};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 Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ylqMUSwKf\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-x1hp2z\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ylqMUSwKf\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1e8285x\",\"data-framer-name\":\"Group 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:122,layoutDependency:layoutDependency,layoutId:\"lzd7rSTOn\",svg:'<svg width=\"122\" height=\"40\" viewBox=\"0 0 122 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M52.1895 21.0501C52.1895 26.805 47.6874 31.0456 42.1624 31.0456C36.6373 31.0456 32.1353 26.805 32.1353 21.0501C32.1353 15.2548 36.6373 11.0547 42.1624 11.0547C47.6874 11.0547 52.1895 15.2548 52.1895 21.0501ZM47.8001 21.0501C47.8001 17.4539 45.1908 14.9934 42.1624 14.9934C39.134 14.9934 36.5247 17.4539 36.5247 21.0501C36.5247 24.6103 39.134 27.1069 42.1624 27.1069C45.1908 27.1069 47.8001 24.6058 47.8001 21.0501Z\" fill=\"#828BA3\"/>\\n<path d=\"M73.8208 21.0501C73.8208 26.805 69.3188 31.0456 63.7937 31.0456C58.2687 31.0456 53.7666 26.805 53.7666 21.0501C53.7666 15.2593 58.2687 11.0547 63.7937 11.0547C69.3188 11.0547 73.8208 15.2548 73.8208 21.0501ZM69.4314 21.0501C69.4314 17.4539 66.8221 14.9934 63.7937 14.9934C60.7653 14.9934 58.156 17.4539 58.156 21.0501C58.156 24.6103 60.7653 27.1069 63.7937 27.1069C66.8221 27.1069 69.4314 24.6058 69.4314 21.0501Z\" fill=\"#828BA3\"/>\\n<path d=\"M94.5516 11.6586V29.6035C94.5516 36.9852 90.1982 40 85.0517 40C80.2072 40 77.2914 36.7599 76.1918 34.11L80.0134 32.5192C80.6939 34.1461 82.3613 36.0659 85.0472 36.0659C88.3415 36.0659 90.383 34.0334 90.383 30.2074V28.7698H90.2298C89.2474 29.9821 87.3546 31.0411 84.9661 31.0411C79.9683 31.0411 75.3896 26.6878 75.3896 21.0862C75.3896 15.444 79.9683 11.0547 84.9661 11.0547C87.3501 11.0547 89.2428 12.1137 90.2298 13.2899H90.383V11.6631H94.5516V11.6586ZM90.694 21.0862C90.694 17.5666 88.346 14.9934 85.3582 14.9934C82.3298 14.9934 79.7926 17.5666 79.7926 21.0862C79.7926 24.5697 82.3298 27.1069 85.3582 27.1069C88.346 27.1069 90.694 24.5697 90.694 21.0862Z\" fill=\"#828BA3\"/>\\n<path d=\"M101.424 1.1416V30.434H97.1428V1.1416H101.424Z\" fill=\"#828BA3\"/>\\n<path d=\"M118.107 24.3385L121.514 26.6098C120.415 28.2367 117.765 31.0397 113.186 31.0397C107.508 31.0397 103.267 26.6504 103.267 21.0443C103.267 15.1002 107.544 11.0488 112.695 11.0488C117.882 11.0488 120.419 15.1768 121.248 17.4075L121.703 18.5432L108.341 24.0772C109.364 26.0826 110.955 27.1055 113.186 27.1055C115.421 27.1055 116.972 26.006 118.107 24.3385ZM107.62 20.7423L116.552 17.0335C116.061 15.7852 114.583 14.9154 112.844 14.9154C110.613 14.9154 107.508 16.8848 107.62 20.7423Z\" fill=\"#828BA3\"/>\\n<path d=\"M15.9304 18.4497V14.209H30.2207C30.3605 14.9481 30.4326 15.8224 30.4326 16.7687C30.4326 19.9503 29.5628 23.8845 26.7597 26.6876C24.0332 29.5267 20.5496 31.0409 15.9349 31.0409C7.38145 31.0409 0.188965 24.0738 0.188965 15.5204C0.188965 6.96707 7.38145 0 15.9349 0C20.6668 0 24.0377 1.85668 26.5704 4.27668L23.5781 7.26901C21.7619 5.56555 19.3013 4.24063 15.9304 4.24063C9.68431 4.24063 4.79919 9.27441 4.79919 15.5204C4.79919 21.7665 9.68431 26.8002 15.9304 26.8002C19.9818 26.8002 22.2892 25.1734 23.7673 23.6953C24.9661 22.4965 25.7547 20.784 26.0657 18.4452L15.9304 18.4497Z\" fill=\"#828BA3\"/>\\n</svg>\\n',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZR8ZA.framer-29o81n, .framer-ZR8ZA .framer-29o81n { display: block; }\",\".framer-ZR8ZA.framer-x1hp2z { height: 40px; overflow: hidden; position: relative; width: 122px; }\",\".framer-ZR8ZA .framer-1e8285x { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 122\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerr4tOFybda=withCSS(Component,css,\"framer-ZR8ZA\");export default Framerr4tOFybda;Framerr4tOFybda.displayName=\"Google\";Framerr4tOFybda.defaultProps={height:40,width:122};addFonts(Framerr4tOFybda,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerr4tOFybda\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"122\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./r4tOFybda.map", "// Generated by Framer (5951dd1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"QzI2V3AK8\"];const serializationHash=\"framer-KjHsq\";const variantClassNames={QzI2V3AK8:\"framer-v-1m6ag4o\"};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 Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QzI2V3AK8\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1m6ag4o\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"QzI2V3AK8\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-whwc4d\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:124,layoutDependency:layoutDependency,layoutId:\"pzKgEYUFb\",svg:'<svg width=\"124\" height=\"26\" viewBox=\"0 0 124 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_6727_21780)\">\\n<path d=\"M109.769 0.613689C112.175 0.264155 114.688 0.727426 116.813 1.90918C119.39 3.31287 121.371 5.71522 122.38 8.45879C123.368 11.1413 123.454 14.1512 122.602 16.8809C121.748 19.6966 119.875 22.2043 117.373 23.7634C114.974 25.2891 111.98 25.8467 109.192 25.2891C105.841 24.6622 102.904 22.4124 101.228 19.4663C98.4456 14.706 99.1252 8.15364 102.987 4.17838C104.757 2.26704 107.184 0.968771 109.769 0.613689ZM108.327 6.05366C106.832 6.40874 105.963 7.92339 105.816 9.36313C105.489 12.2204 106.682 15.0389 108.366 17.2887C109.522 18.7035 110.984 20.0461 112.84 20.3929C114.091 20.6536 115.515 20.1571 116.191 19.0391C117.132 17.5744 117.082 15.7158 116.721 14.0763C116.13 11.6545 114.863 9.37701 113.018 7.69037C111.753 6.57796 110.061 5.632 108.327 6.05643\" fill=\"#828BA3\"/>\\n<path d=\"M3.10551 1.01209C6.78949 0.989897 10.4735 1.01209 14.1574 1.00099C14.6651 0.995445 15.1811 1.00932 15.6749 1.14247C17.1867 1.53639 18.3297 3.02885 18.2908 4.59343C18.3158 5.39791 17.9995 6.1691 17.5252 6.80437C14.5486 11.0015 11.5914 15.2126 8.60097 19.3987C11.0366 19.3959 13.4695 19.3959 15.9051 19.3987C17.2561 19.3987 18.5377 20.475 18.632 21.8482C18.829 23.435 17.4642 24.9524 15.8746 24.9718C12.0491 24.9885 8.22369 24.969 4.39546 24.9801C3.65756 25.0023 2.89469 24.9136 2.24555 24.5418C1.15256 23.9759 0.436851 22.7942 0.373047 21.5736V21.1353C0.425754 19.9063 1.29959 18.9964 1.94872 18.0311C4.63403 14.2195 7.31934 10.4051 9.99633 6.58522C7.68552 6.58244 5.36916 6.59076 3.05836 6.58244C1.65467 6.58244 0.436851 5.35352 0.375821 3.96648V3.56702C0.478462 2.18275 1.71293 1.00932 3.10551 1.01209Z\" fill=\"#828BA3\"/>\\n<path d=\"M21.4919 3.62627C21.5058 2.2531 22.7319 1.01586 24.1134 1.01031C27.8196 0.999216 31.523 1.00476 35.2264 1.01031C36.6273 1.01863 37.8812 2.242 37.9172 3.64291C38.031 5.13537 36.7299 6.54183 35.2458 6.58344C32.7658 6.60008 30.2857 6.57234 27.8057 6.59453C27.6587 7.76797 27.7863 9.03572 27.7447 10.248C29.8974 10.2563 32.0501 10.2397 34.2 10.2563C35.5842 10.2785 36.8159 11.463 36.8603 12.8529C36.9879 14.4008 35.612 15.8156 34.0835 15.8294C31.9696 15.8294 29.8558 15.8294 27.7419 15.8294C27.7419 17.0168 27.7419 18.2068 27.7419 19.3969C30.2358 19.3969 32.7325 19.3941 35.2264 19.3997C36.6273 19.408 37.8368 20.6341 37.9172 22.0156C38.0615 23.5303 36.7632 24.9673 35.2402 24.9728C31.5396 24.9784 27.839 24.9811 24.1384 24.9728C22.707 24.9811 21.4337 23.6745 21.4919 22.2431C21.4919 16.0403 21.4919 9.83466 21.4919 3.62904\" fill=\"#828BA3\"/>\\n<path d=\"M42.4197 1.40768C43.0189 1.03873 43.743 0.986022 44.4309 1.00267C46.7251 1.01099 49.022 0.99157 51.319 1.01099C53.824 1.04705 56.3428 2.16501 57.8852 4.17344C59.7133 6.47315 60.1128 9.74657 59.067 12.4707C58.2237 14.7177 56.304 16.4848 54.0376 17.2477C51.7268 18.0133 49.2606 17.6222 46.8721 17.722C46.8666 19.2228 46.8832 20.7236 46.8638 22.2244C46.7889 23.8111 45.2604 25.1261 43.6792 24.9707C42.1839 24.893 40.8995 23.5226 40.9328 22.0246C40.9328 16.0271 40.9328 10.0295 40.9328 4.03196C40.9051 2.97504 41.4932 1.92366 42.4197 1.41046M46.8749 6.68121V12.0712C48.4339 12.0546 49.9957 12.1073 51.552 12.0435C53.0389 11.8493 53.9571 10.2071 53.6353 8.80338C53.4828 7.67433 52.4647 6.73946 51.3273 6.68953C49.8432 6.67011 48.359 6.68953 46.8721 6.68121\" fill=\"#828BA3\"/>\\n<path d=\"M64.9787 1.00939C68.7126 0.998295 72.4493 0.995521 76.1832 1.00939C77.7645 1.05655 79.0211 2.67939 78.7298 4.22177C78.5468 5.52004 77.3373 6.53535 76.0418 6.57697C73.5562 6.58529 71.0734 6.57974 68.5906 6.57697C68.5906 7.79756 68.5906 9.02093 68.5906 10.2415C70.7294 10.2498 72.8654 10.2332 75.0015 10.2526C76.4579 10.2304 77.7645 11.5564 77.6951 13.0156C77.7423 14.5164 76.3663 15.8257 74.8905 15.823C72.7905 15.823 70.6906 15.8174 68.5906 15.823C68.5906 17.013 68.5906 18.2031 68.5906 19.3932C71.0817 19.3849 73.5728 19.3877 76.0612 19.3932C77.3151 19.4043 78.4746 20.3836 78.6993 21.618C79.0405 22.9884 78.1195 24.4975 76.763 24.8609C76.3414 24.9941 75.892 24.9691 75.4592 24.9719C71.95 24.9608 68.438 24.9802 64.9288 24.9636C63.4974 24.9303 62.2712 23.6209 62.3184 22.1923C62.3184 16.0227 62.3101 9.85593 62.3239 3.68638C62.3212 2.26605 63.5584 1.01494 64.976 1.00662\" fill=\"#828BA3\"/>\\n<path d=\"M80.4717 3.61876C80.5105 2.23172 81.7533 1.02499 83.1376 1.00835C87.676 0.991703 92.2171 1.00557 96.7555 1.0028C98.0482 0.977833 99.2661 1.97928 99.4824 3.25813C99.8209 4.8338 98.5392 6.52877 96.9164 6.5787C95.6431 6.58702 94.367 6.5787 93.0937 6.5787C93.0854 11.6719 93.0993 16.7651 93.0882 21.8583C93.1159 23.373 91.9092 24.7961 90.3918 24.9459C88.6746 25.2205 86.9353 23.7586 86.9214 22.0192C86.9075 16.8733 86.9214 11.7274 86.9103 6.58147C85.6509 6.57038 84.3914 6.58425 83.132 6.5787C81.6312 6.55928 80.3441 5.11121 80.4744 3.61876\" fill=\"#828BA3\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_6727_21780\">\\n<rect width=\"122.814\" height=\"25\" fill=\"white\" transform=\"translate(0.368896 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KjHsq.framer-1kdorss, .framer-KjHsq .framer-1kdorss { display: block; }\",\".framer-KjHsq.framer-1m6ag4o { height: 26px; overflow: hidden; position: relative; width: 124px; }\",\".framer-KjHsq .framer-whwc4d { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26\n * @framerIntrinsicWidth 124\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersaC4IrP2s=withCSS(Component,css,\"framer-KjHsq\");export default FramersaC4IrP2s;FramersaC4IrP2s.displayName=\"Zepeto\";FramersaC4IrP2s.defaultProps={height:26,width:124};addFonts(FramersaC4IrP2s,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersaC4IrP2s\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"26\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"124\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./saC4IrP2s.map", "// Generated by Framer (83b8097)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-8opQY\";const variantClassNames={RZpgvXYlW:\"framer-v-87ec3n\"};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 Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"RZpgvXYlW\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-87ec3n\",className,classNames),\"data-framer-name\":\"Meta\",layoutDependency:layoutDependency,layoutId:\"RZpgvXYlW\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-13gpdeh\",\"data-framer-name\":\"Meta\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"E_hknThnU\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 136 28\"><path d=\"M 29.882 0.283 C 26.526 0.283 23.902 2.806 21.527 6.012 C 18.264 1.864 15.534 0.283 12.268 0.283 C 5.609 0.283 0.506 8.934 0.506 18.091 C 0.506 23.82 3.283 27.434 7.935 27.434 C 11.282 27.434 13.69 25.859 17.971 18.39 C 17.971 18.39 19.755 15.245 20.982 13.078 C 21.412 13.772 21.865 14.519 22.341 15.319 L 24.349 18.69 C 28.258 25.221 30.437 27.434 34.384 27.434 C 38.916 27.434 41.438 23.771 41.438 17.922 C 41.438 8.335 36.22 0.283 29.882 0.283 Z M 14.707 16.368 C 11.236 21.798 10.036 23.015 8.104 23.015 C 6.115 23.015 4.933 21.273 4.933 18.165 C 4.933 11.518 8.254 4.721 12.212 4.721 C 14.355 4.721 16.146 5.956 18.89 9.877 C 16.285 13.866 14.707 16.368 14.707 16.368 Z M 27.804 15.684 L 25.404 11.689 C 24.755 10.635 24.131 9.664 23.532 8.777 C 25.695 5.445 27.479 3.785 29.601 3.785 C 34.009 3.785 37.536 10.263 37.536 18.222 C 37.536 21.255 36.54 23.015 34.478 23.015 C 32.501 23.015 31.557 21.712 27.804 15.684 Z M 50.06 1.164 L 55.176 1.164 L 63.874 16.871 L 72.572 1.164 L 77.577 1.164 L 77.577 26.974 L 73.404 26.974 L 73.404 7.193 L 65.776 20.89 L 61.861 20.89 L 54.234 7.193 L 54.234 26.974 L 50.06 26.974 Z M 85.943 26.153 C 87.408 27.007 89.107 27.434 91.04 27.434 C 94.241 27.435 96.943 26.427 99.147 24.411 L 96.931 21.701 C 96.143 22.451 95.3 23.01 94.402 23.379 C 93.503 23.747 92.432 23.932 91.188 23.932 C 89.637 23.932 88.353 23.48 87.337 22.577 C 86.322 21.674 85.684 20.435 85.426 18.862 L 99.591 18.862 L 99.591 17.719 C 99.591 15.618 99.234 13.786 98.52 12.225 C 97.805 10.665 96.787 9.451 95.463 8.584 C 94.14 7.718 92.561 7.285 90.726 7.285 C 88.879 7.285 87.245 7.715 85.823 8.575 C 84.401 9.436 83.29 10.628 82.49 12.152 C 81.689 13.676 81.289 15.427 81.289 17.406 C 81.289 19.36 81.698 21.093 82.517 22.604 C 83.336 24.116 84.478 25.299 85.943 26.153 Z M 90.652 10.787 C 92.069 10.787 93.214 11.233 94.087 12.124 C 94.962 13.015 95.46 14.247 95.583 15.82 L 85.426 15.82 C 85.672 14.284 86.26 13.061 87.19 12.152 C 88.119 11.242 89.274 10.787 90.652 10.787 Z M 104.652 11.156 L 100.81 11.156 L 100.81 7.746 L 104.652 7.746 L 104.652 2.105 L 108.678 2.105 L 108.678 7.746 L 114.514 7.746 L 114.514 11.156 L 108.678 11.156 L 108.678 19.802 C 108.678 21.24 108.924 22.266 109.416 22.881 C 109.908 23.496 110.752 23.803 111.947 23.803 C 112.475 23.803 112.925 23.781 113.295 23.738 C 113.664 23.695 114.07 23.637 114.514 23.563 L 114.514 26.937 C 114.008 27.083 113.493 27.193 112.972 27.268 C 112.375 27.356 111.773 27.399 111.171 27.397 C 106.825 27.397 104.651 25.026 104.652 20.282 Z M 131.542 26.974 L 135.493 26.974 L 135.493 7.746 L 131.542 7.746 L 131.542 10.216 C 130.864 9.292 129.97 8.548 128.937 8.05 C 127.891 7.54 126.709 7.285 125.392 7.285 C 123.644 7.285 122.095 7.715 120.747 8.575 C 119.399 9.436 118.343 10.622 117.58 12.133 C 116.816 13.645 116.435 15.384 116.435 17.35 C 116.435 19.304 116.81 21.04 117.561 22.558 C 118.312 24.076 119.343 25.268 120.655 26.135 C 121.966 27.001 123.471 27.434 125.17 27.434 C 126.549 27.434 127.78 27.161 128.863 26.614 C 129.947 26.067 130.84 25.29 131.542 24.282 Z M 129.427 11.884 C 130.356 12.517 131.037 13.381 131.468 14.475 L 131.468 20.245 C 131.037 21.326 130.335 22.187 129.362 22.826 C 128.389 23.465 127.282 23.784 126.038 23.784 C 124.352 23.784 123.015 23.207 122.03 22.051 C 121.046 20.896 120.553 19.329 120.553 17.35 C 120.553 15.384 121.064 13.823 122.086 12.668 C 123.107 11.513 124.481 10.935 126.205 10.935 C 127.423 10.935 128.497 11.251 129.427 11.884 Z\" fill=\"rgb(130,139,163)\"></path></svg>',svgContentId:12545208952,withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8opQY.framer-cy62ts, .framer-8opQY .framer-cy62ts { display: block; }\",\".framer-8opQY.framer-87ec3n { height: 28px; overflow: hidden; position: relative; width: 136px; }\",\".framer-8opQY .framer-13gpdeh { flex: none; height: 28px; left: 0px; position: absolute; top: 0px; width: 136px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 28\n * @framerIntrinsicWidth 136\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerThR8bPWHZ=withCSS(Component,css,\"framer-8opQY\");export default FramerThR8bPWHZ;FramerThR8bPWHZ.displayName=\"Meta\";FramerThR8bPWHZ.defaultProps={height:28,width:136};addFonts(FramerThR8bPWHZ,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerThR8bPWHZ\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"28\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"136\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ThR8bPWHZ.map", "// Generated by Framer (edb532b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"s9n_KXyLS\",\"weBXAHBOm\",\"K63Br53Sx\",\"EyFFZiHcD\",\"m4tz0KO0w\",\"flCghaHHI\",\"EVzHD0vwA\",\"ErtQjLnm4\",\"PdP6RCDzM\",\"P7GKuhCzu\",\"VofkM97gJ\",\"DLojFq3BE\",\"sy9a6CgL9\",\"GP6F94rkS\",\"Kzj7NOW8j\",\"QjT9T0hKO\",\"PDqUB7QBp\",\"lJiwBO9y8\",\"giOYWpkU9\",\"dLQWfMSSc\",\"KhQIJcUMg\",\"m7UReGfim\"];const serializationHash=\"framer-wpgQZ\";const variantClassNames={DLojFq3BE:\"framer-v-1eeg3xl\",dLQWfMSSc:\"framer-v-1kh8kq8\",ErtQjLnm4:\"framer-v-1v9ox03\",EVzHD0vwA:\"framer-v-pwjtao\",EyFFZiHcD:\"framer-v-piqxdk\",flCghaHHI:\"framer-v-1xx4ype\",giOYWpkU9:\"framer-v-raxrcn\",GP6F94rkS:\"framer-v-ytbap0\",K63Br53Sx:\"framer-v-lf6yy0\",KhQIJcUMg:\"framer-v-65s35c\",Kzj7NOW8j:\"framer-v-y9jno4\",lJiwBO9y8:\"framer-v-1pmpiys\",m4tz0KO0w:\"framer-v-18sgfif\",m7UReGfim:\"framer-v-dw4wun\",P7GKuhCzu:\"framer-v-7dkp58\",PdP6RCDzM:\"framer-v-1ff0kwr\",PDqUB7QBp:\"framer-v-b3nmxz\",QjT9T0hKO:\"framer-v-19law5q\",s9n_KXyLS:\"framer-v-a4d4ne\",sy9a6CgL9:\"framer-v-k519rn\",VofkM97gJ:\"framer-v-5r2ta2\",weBXAHBOm:\"framer-v-yvjafr\"};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 Variants=motion(React.Fragment);const humanReadableVariantMap={\"00 Meta\":\"KhQIJcUMg\",\"01 La Maison\":\"s9n_KXyLS\",\"02 Farfetch\":\"weBXAHBOm\",\"03 Diesel\":\"K63Br53Sx\",\"04 Printemps\":\"EyFFZiHcD\",\"05 Beams\":\"m4tz0KO0w\",\"06 Tommy Helfiger\":\"flCghaHHI\",\"07 CocaCola\":\"EVzHD0vwA\",\"08 Lacoste\":\"ErtQjLnm4\",\"09 boss\":\"PdP6RCDzM\",\"09 Warner\":\"P7GKuhCzu\",\"10 Jason Wu\":\"VofkM97gJ\",\"11 Jean Paul Gaultier\":\"DLojFq3BE\",\"12 American Eagle\":\"sy9a6CgL9\",\"13 Gap\":\"GP6F94rkS\",\"14 Salomon\":\"Kzj7NOW8j\",\"15 Dundas\":\"QjT9T0hKO\",\"16 ipsa\":\"PDqUB7QBp\",\"17 Drunk Elephant\":\"lJiwBO9y8\",\"18 Adidas\":\"giOYWpkU9\",\"19 Bershka\":\"dLQWfMSSc\",\"Variant 22\":\"m7UReGfim\"};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:\"s9n_KXyLS\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"s9n_KXyLS\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"weBXAHBOm\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"K63Br53Sx\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"EyFFZiHcD\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"m4tz0KO0w\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"flCghaHHI\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"EVzHD0vwA\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"ErtQjLnm4\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"PdP6RCDzM\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"P7GKuhCzu\")return true;return false;};const isDisplayed9=()=>{if(baseVariant===\"VofkM97gJ\")return true;return false;};const isDisplayed10=()=>{if(baseVariant===\"DLojFq3BE\")return true;return false;};const isDisplayed11=()=>{if(baseVariant===\"sy9a6CgL9\")return true;return false;};const isDisplayed12=()=>{if(baseVariant===\"GP6F94rkS\")return true;return false;};const isDisplayed13=()=>{if(baseVariant===\"Kzj7NOW8j\")return true;return false;};const isDisplayed14=()=>{if(baseVariant===\"QjT9T0hKO\")return true;return false;};const isDisplayed15=()=>{if(baseVariant===\"PDqUB7QBp\")return true;return false;};const isDisplayed16=()=>{if(baseVariant===\"lJiwBO9y8\")return true;return false;};const isDisplayed17=()=>{if(baseVariant===\"giOYWpkU9\")return true;return false;};const isDisplayed18=()=>{if([\"dLQWfMSSc\",\"KhQIJcUMg\",\"m7UReGfim\"].includes(baseVariant))return true;return false;};const isDisplayed19=()=>{if([\"weBXAHBOm\",\"K63Br53Sx\",\"EyFFZiHcD\",\"m4tz0KO0w\",\"flCghaHHI\",\"EVzHD0vwA\",\"ErtQjLnm4\",\"PdP6RCDzM\",\"P7GKuhCzu\",\"VofkM97gJ\",\"DLojFq3BE\",\"sy9a6CgL9\",\"GP6F94rkS\",\"Kzj7NOW8j\",\"QjT9T0hKO\",\"PDqUB7QBp\",\"lJiwBO9y8\",\"giOYWpkU9\",\"dLQWfMSSc\",\"KhQIJcUMg\",\"m7UReGfim\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-a4d4ne\",className,classNames),\"data-framer-name\":\"01 La Maison\",layoutDependency:layoutDependency,layoutId:\"s9n_KXyLS\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:.8,...style},...addPropertyOverrides({DLojFq3BE:{\"data-framer-name\":\"11 Jean Paul Gaultier\"},dLQWfMSSc:{\"data-framer-name\":\"19 Bershka\"},ErtQjLnm4:{\"data-framer-name\":\"08 Lacoste\"},EVzHD0vwA:{\"data-framer-name\":\"07 CocaCola\"},EyFFZiHcD:{\"data-framer-name\":\"04 Printemps\"},flCghaHHI:{\"data-framer-name\":\"06 Tommy Helfiger\"},giOYWpkU9:{\"data-framer-name\":\"18 Adidas\"},GP6F94rkS:{\"data-framer-name\":\"13 Gap\"},K63Br53Sx:{\"data-framer-name\":\"03 Diesel\"},KhQIJcUMg:{\"data-framer-name\":\"00 Meta\"},Kzj7NOW8j:{\"data-framer-name\":\"14 Salomon\"},lJiwBO9y8:{\"data-framer-name\":\"17 Drunk Elephant\"},m4tz0KO0w:{\"data-framer-name\":\"05 Beams\"},m7UReGfim:{\"data-framer-name\":\"Variant 22\"},P7GKuhCzu:{\"data-framer-name\":\"09 Warner\"},PdP6RCDzM:{\"data-framer-name\":\"09 boss\"},PDqUB7QBp:{\"data-framer-name\":\"16 ipsa\"},QjT9T0hKO:{\"data-framer-name\":\"15 Dundas\"},sy9a6CgL9:{\"data-framer-name\":\"12 American Eagle\"},VofkM97gJ:{\"data-framer-name\":\"10 Jason Wu\"},weBXAHBOm:{\"data-framer-name\":\"02 Farfetch\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1tjt4w7\",\"data-framer-name\":\"Farfetch\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:153,layoutDependency:layoutDependency,layoutId:\"yItO7QNiK\",style:{opacity:.8},svg:'<svg width=\"153\" height=\"20\" viewBox=\"0 0 153 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M25.5043 8.77345C25.0099 7.69916 24.7537 7.14179 24.4075 6.30573C24.0884 7.14179 23.9805 7.398 23.3782 8.83638L22.2005 11.7311H26.8348L25.5043 8.77345ZM20.87 15.3136L19.2159 18.9635H14.3838L22.7984 1.23993H26.8753L35.2853 18.9635H30.5252L28.7272 15.3136H20.87ZM47.3228 8.92179C48.3072 8.92179 48.7162 8.85886 49.1207 8.6431C49.4371 8.46051 49.7004 8.1987 49.8848 7.88344C50.0692 7.56818 50.1684 7.21034 50.1726 6.84512C50.1667 6.48028 50.0667 6.12312 49.8825 5.80816C49.6982 5.49321 49.4359 5.23109 49.1207 5.04715C48.7342 4.83139 48.3251 4.78644 47.3228 4.78644H41.4209V8.88583L47.3228 8.92179ZM41.4209 18.9635H36.9799V1.23993H48.5454C50.6041 1.23993 51.7188 1.50064 52.7706 2.13892C53.4386 2.5626 53.9879 3.14914 54.3669 3.84343C54.7459 4.53772 54.9421 5.31697 54.9372 6.10795C54.9372 8.21159 53.8449 9.77583 51.8492 10.6029C53.6067 11.2277 54.1461 12.2121 54.1865 14.981C54.2719 17.1925 54.4023 17.8353 54.9372 18.9725H50.0467C49.7231 17.9836 49.6601 17.579 49.7051 15.88C49.7051 13.3089 48.9949 12.5132 46.7204 12.5132H41.4209V18.9635ZM75.7038 18.9635V1.23993H91.9216V4.83589H80.1448V8.16214H90.5506V11.7581H80.1448V15.408H91.9216V19.0039L75.7038 18.9635ZM104.795 18.9635H100.354V4.8224H94.2185V1.22645H110.908V4.8224H104.795V18.9635ZM132.664 12.0323C131.396 17.0756 127.944 19.6063 122.218 19.6063C115.695 19.6063 111.573 15.9788 111.573 10.2748C111.573 4.43134 115.821 0.619629 122.321 0.619629C125.436 0.619629 127.881 1.43321 129.809 3.17276C131.12 4.26341 132.034 5.7568 132.408 7.42048H127.62C126.721 5.17301 124.964 4.07174 122.303 4.07174C118.738 4.07174 116.275 6.58442 116.275 10.1894C116.275 13.7044 118.72 16.1542 122.218 16.1542C125.049 16.1542 126.744 14.8866 127.773 12.0323H132.664ZM148.477 1.23993V8.14866H139.343V1.23993H134.902V18.9635H139.343V11.7311H148.463V18.9635H152.9V1.23993H148.477ZM0 18.9635V1.23993H15.5525V4.83589H4.441V8.16214H14.631V11.7581H4.441V18.9635H0ZM57.8544 18.9635V1.23993H73.4114V4.83589H62.2954V8.16214H72.5079V11.7581H62.2954V18.9635H57.8544Z\" fill=\"#495677\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-7vmgqf\",\"data-framer-name\":\"Diesel\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:84,layoutDependency:layoutDependency,layoutId:\"ELtDJjCJZ\",style:{opacity:.8},svg:'<svg width=\"84\" height=\"38\" viewBox=\"0 0 84 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M48.0681 26.2174C45.7474 26.2174 45.7474 23.3356 45.7474 21.6897H40.9393C40.9393 25.7232 42.0994 30.7451 47.8607 30.7451C52.71 30.7451 55.2798 27.1636 55.2798 22.6773C55.2798 17.8485 52.1382 15.2144 49.4158 12.9317C47.3343 11.1863 45.4978 9.64645 45.4978 7.48819C45.4978 5.88269 46.2436 4.81288 47.5287 4.81288C49.6837 4.81288 49.6837 7.57048 49.6837 9.21687H54.4918C54.3678 3.94802 52.5026 0.284668 47.6533 0.284668C43.0937 0.284668 40.6902 3.86573 40.6902 8.27023C40.6902 13.1615 43.7922 15.6768 46.5026 17.8746C48.6053 19.5795 50.4722 21.0933 50.4722 23.377C50.4722 24.5705 49.8504 26.2174 48.0681 26.2174ZM5.06884 0.861328H0.385254V30.1692H5.93968C14.2703 30.1692 14.9749 23.9946 14.9749 15.5153C14.9749 6.62394 14.104 0.861328 5.06884 0.861328ZM9.33758 15.4738C9.33758 24.3657 9.17185 25.6001 5.77343 25.6415V5.38902C9.17185 5.43042 9.33758 6.62394 9.33758 15.4738ZM23.5454 0.861328H18.1572V30.1692H23.5454V0.861328ZM27.1453 0.861328H39.3308V5.38902H32.5329V12.8803H37.548V17.6554H32.5329V25.6415H39.6211V30.1692H27.1453V0.861328ZM57.7214 0.861328H69.907V5.38902H63.1096V12.8803H68.1246V17.6554H63.1096V25.6415H70.1967V30.1692H57.7214V0.861328ZM78.0227 0.861328H72.6345V30.1692H83.8971V25.6415H78.0227V0.861328ZM81.0479 2.2195C81.0479 1.46747 81.6878 0.851562 82.4763 0.851562C83.2612 0.851562 83.897 1.46747 83.897 2.2195C83.897 2.98705 83.2612 3.60296 82.4763 3.60296C81.6873 3.60296 81.0479 2.98705 81.0479 2.2195ZM81.3183 2.2195C81.3183 2.84679 81.8322 3.33382 82.4763 3.33382C83.1121 3.33382 83.626 2.84679 83.626 2.2195C83.626 1.61135 83.1121 1.12018 82.4763 1.12018C81.8327 1.12018 81.3183 1.61135 81.3183 2.2195ZM83.1861 2.99481H82.9157L82.4602 2.28523H82.1819V2.99481H81.9463V1.45556H82.641C82.7744 1.45556 82.9078 1.46333 83.0293 1.52958C83.147 1.59583 83.2059 1.73246 83.2059 1.86082C83.2059 2.16463 82.986 2.27798 82.7036 2.28574L83.1861 2.99481ZM82.4409 2.09476C82.465 2.09476 82.4901 2.09521 82.5156 2.09567C82.7273 2.09947 82.9709 2.10384 82.9709 1.8572C82.9709 1.65845 82.7942 1.63102 82.5941 1.63102H82.1824V2.09476H82.4409ZM1.56133 35.5307H3.27279V34.8584H0.54248V37.9214H1.56133V36.7527H2.6693V36.1068H1.56133V35.5307ZM6.1271 37.9638C5.1614 37.9638 4.34632 37.3411 4.34997 36.3557C4.33851 35.3055 5.16922 34.8159 6.1271 34.8159C7.09227 34.8159 7.85367 35.4194 7.85732 36.3624C7.86148 37.3334 7.09227 37.9638 6.1271 37.9638ZM6.64199 35.9929C6.62271 35.7289 6.39601 35.4349 6.09947 35.4349C5.792 35.4349 5.59187 35.7263 5.56112 35.9929C5.54549 36.1538 5.51109 36.5658 5.55748 36.8256C5.60751 37.131 5.81493 37.3675 6.09947 37.3675C6.38037 37.3675 6.57685 37.131 6.62271 36.8174C6.65763 36.6031 6.65398 36.1756 6.64199 35.9929ZM10.296 37.9219V36.7723H10.827L11.3268 37.9219H12.4384L11.8422 36.7232C12.2268 36.5886 12.4879 36.1994 12.4728 35.7719C12.4535 35.244 12.1268 34.8589 11.4764 34.8589H9.27295V37.9219H10.296ZM11.0303 36.1264H10.296V35.4846H11.0303C11.2075 35.4846 11.3534 35.6301 11.3534 35.806C11.3534 35.982 11.2111 36.1264 11.0303 36.1264ZM17.1123 35.7255C17.1123 35.8011 17.216 35.8507 17.2931 35.8632C17.423 35.8821 17.4959 35.8906 17.5713 35.8994H17.5713L17.5714 35.8994L17.5715 35.8995L17.5716 35.8995C17.6613 35.91 17.7544 35.9209 17.9508 35.9501C18.4162 36.0158 18.7779 36.2182 18.9738 36.6343C19.0775 36.8517 19.0619 37.1612 18.9045 37.4097C18.6007 37.8827 17.9315 37.9474 17.6548 37.9598C17.2551 37.979 16.3087 37.9293 15.9089 37.2917L16.4009 36.9164L16.4252 36.9368L16.4592 36.9656C16.522 37.019 16.5955 37.0816 16.6474 37.1157C17.0013 37.3827 17.5203 37.3714 17.7705 37.2989C17.8398 37.2798 17.9206 37.2301 17.9399 37.1918C17.9941 37.1079 17.9628 36.9827 17.8476 36.9635C17.7876 36.9505 17.7347 36.9421 17.679 36.9333C17.535 36.9104 17.372 36.8845 17.0169 36.7684C16.7167 36.6804 16.3285 36.536 16.1362 36.1416C16.0205 35.9134 16.0246 35.5914 16.1513 35.3622C16.3399 35.0035 16.8819 34.8741 17.1128 34.8394C17.6782 34.7664 18.3318 34.8586 18.8899 35.3622L18.3823 35.7441C18.0363 35.4926 17.5245 35.4693 17.2363 35.5806C17.1623 35.6142 17.1123 35.6489 17.1123 35.7255ZM22.6942 36.8179C22.6942 37.0736 22.5019 37.2231 22.1016 37.2231C21.6983 37.2231 21.5211 37.0622 21.5206 36.8262V34.8589H20.4939V36.94C20.4939 37.5973 20.8556 37.9643 21.8901 37.9643H22.0902C23.1247 37.9643 23.4863 37.601 23.4863 36.94V34.8589H22.6942V36.8179ZM28.2299 36.8821C28.1449 37.3784 27.6915 37.7687 27.2298 37.8949C27.0953 37.9322 26.8144 37.9638 26.5799 37.9638C25.6955 37.9638 24.9263 37.2573 24.9299 36.3515C24.9299 35.4774 25.6992 34.8159 26.5721 34.8159C26.8645 34.8159 27.0839 34.8584 27.2298 34.8956C27.6915 35.011 28.0876 35.3547 28.172 35.8511L27.3069 35.9432C27.2955 35.5457 26.9338 35.4194 26.6763 35.4349C26.3183 35.4499 26.0494 35.7444 26.0494 36.3671V36.44C26.0494 37.0668 26.3188 37.3458 26.6649 37.3722C27.0609 37.3955 27.3111 37.2992 27.3804 36.7728L28.2299 36.8821ZM31.8931 37.8949C32.3549 37.7687 32.8083 37.3784 32.8932 36.8821L32.0437 36.7728C31.9739 37.2992 31.7243 37.3955 31.3282 37.3722C30.9821 37.3458 30.7127 37.0668 30.7127 36.44V36.3671C30.7127 35.7444 30.9821 35.4499 31.3397 35.4349C31.5971 35.4194 31.9588 35.5457 31.9702 35.9432L32.8354 35.8511C32.7509 35.3547 32.3549 35.011 31.8931 34.8956C31.7467 34.8584 31.5278 34.8159 31.2354 34.8159C30.3625 34.8159 29.5933 35.4774 29.5933 36.3515C29.5896 37.2573 30.3588 37.9638 31.2432 37.9638C31.4778 37.9638 31.7587 37.9322 31.8931 37.8949ZM37.168 37.9214H34.3069V34.8584H37.0414V35.5307H35.3299V36.1068H36.4337V36.7527H35.3299V37.2837H37.168V37.9214ZM39.8234 35.8632C39.7463 35.8507 39.6425 35.8011 39.6425 35.7255C39.6425 35.6489 39.6926 35.6142 39.7671 35.5806C40.0553 35.4693 40.5665 35.4926 40.9131 35.7441L41.4207 35.3622C40.8626 34.8586 40.209 34.7664 39.6436 34.8394C39.4127 34.8741 38.8702 35.0035 38.6821 35.3622C38.5554 35.5914 38.5513 35.9134 38.667 36.1416C38.8587 36.536 39.2475 36.6804 39.5472 36.7684C39.9023 36.8845 40.0653 36.9104 40.2093 36.9333C40.265 36.9421 40.3179 36.9505 40.3779 36.9635C40.4931 36.9827 40.5243 37.1079 40.4701 37.1918C40.4508 37.2301 40.3701 37.2798 40.3008 37.2989C40.0506 37.3714 39.5315 37.3827 39.1777 37.1157C39.1256 37.0817 39.0527 37.0195 38.9902 36.9663C38.9689 36.9481 38.9488 36.931 38.9312 36.9164L38.4392 37.2917C38.8389 37.9293 39.7848 37.979 40.1851 37.9598C40.4618 37.9474 41.131 37.8827 41.4348 37.4097C41.5927 37.1612 41.6078 36.8517 41.5041 36.6343C41.3081 36.2182 40.9465 36.0158 40.4811 35.9501C40.2846 35.9209 40.1914 35.91 40.1017 35.8995L40.1016 35.8994L40.1016 35.8994L40.1015 35.8994L40.1014 35.8994C40.0261 35.8906 39.9531 35.882 39.8234 35.8632ZM44.0241 35.7255C44.0241 35.8011 44.1278 35.8507 44.205 35.8632C44.335 35.882 44.408 35.8906 44.4833 35.8994C44.5731 35.9099 44.6662 35.9208 44.8632 35.9501C45.3286 36.0158 45.6897 36.2182 45.8862 36.6343C45.9899 36.8517 45.9748 37.1612 45.8169 37.4097C45.5131 37.8827 44.8439 37.9474 44.5672 37.9598C44.1669 37.979 43.221 37.9293 42.8208 37.2917L43.3128 36.9164L43.3472 36.9454L43.3711 36.9656C43.4338 37.019 43.5074 37.0816 43.5593 37.1157C43.9131 37.3827 44.4322 37.3714 44.6818 37.2989C44.7511 37.2798 44.8319 37.2301 44.8512 37.1918C44.9054 37.1079 44.8741 36.9827 44.759 36.9635C44.6989 36.9505 44.646 36.9422 44.5903 36.9333C44.4461 36.9104 44.2831 36.8845 43.9277 36.7684C43.6281 36.6804 43.2398 36.536 43.0475 36.1416C42.9318 35.9134 42.936 35.5914 43.0626 35.3622C43.2507 35.0035 43.7933 34.8741 44.0241 34.8394C44.5896 34.7664 45.2436 34.8586 45.8007 35.3622L45.2931 35.7441C44.9471 35.4926 44.4353 35.4693 44.1471 35.5806C44.0736 35.6142 44.0241 35.6489 44.0241 35.7255ZM48.4017 35.5307H50.1131V34.8584H47.3828V37.9214H48.4017V36.7527H49.5096V36.1068H48.4017V35.5307ZM53.2181 37.2231C53.6183 37.2231 53.8106 37.0736 53.8106 36.8179V34.8589H54.6033V36.94C54.6033 37.601 54.2416 37.9643 53.2071 37.9643H53.007C51.9725 37.9643 51.6108 37.5973 51.6108 36.94V34.8589H52.6375V36.8262C52.6375 37.0622 52.8147 37.2231 53.2181 37.2231ZM57.1275 37.2491V34.8584H56.1008V37.9214H58.6081V37.2491H57.1275ZM63.2691 34.8584V37.2491H64.7497V37.9214H62.2424V34.8584H63.2691ZM67.2178 37.9214V34.8584H66.1948V37.9214H67.2178ZM69.5757 34.8586L70.3455 36.83L71.1256 34.8586H72.0184L70.7989 37.9216H69.741L68.5413 34.8467L69.5757 34.8586ZM74.4293 37.9214V34.8584H73.4062V37.9214H74.4293ZM78.2361 36.5162V34.8584H79.0324V37.9214H78.1824L76.7055 36.1647V37.9214H75.917V34.8584H76.8436L78.2361 36.5162ZM82.1814 36.3169V36.9044H82.7666C82.7895 36.9044 82.7974 36.9127 82.7974 36.9318C82.7974 37.1217 82.505 37.3443 82.2319 37.3443C81.8822 37.3443 81.5669 37.1683 81.5669 36.7408V36.0757C81.5669 35.6099 81.8395 35.4148 82.1939 35.4148C82.5128 35.4148 82.8396 35.6291 82.8396 35.9272L83.7089 35.8351C83.6244 35.3346 83.2127 34.9987 82.7473 34.8765C82.6124 34.8455 82.332 34.8149 82.0975 34.8149C81.2131 34.8149 80.4517 35.4572 80.4517 36.3356C80.4517 37.203 81.0974 37.9633 81.9703 37.9633C82.344 37.9633 82.863 37.8753 83.159 37.6005L83.4123 37.9291H83.7776V36.3169H82.1814Z\" fill=\"#495677\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1uvpqj0\",\"data-framer-name\":\"Printemps\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:169,layoutDependency:layoutDependency,layoutId:\"A0RLuYVkW\",style:{opacity:.8},svg:'<svg width=\"169\" height=\"19\" viewBox=\"0 0 169 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M157.564 1.66182C158.095 1.21547 158.72 0.875401 159.451 0.63735H159.468C160.195 0.399299 160.982 0.280273 161.819 0.280273C163.26 0.280273 164.484 0.603343 165.496 1.24948C166.508 1.89987 167.277 2.71179 167.804 3.69801L165.288 5.64067C164.85 4.98603 164.353 4.47592 163.796 4.11034C163.239 3.74477 162.589 3.56198 161.84 3.56198C161.22 3.56198 160.693 3.70226 160.255 3.98707C159.817 4.27188 159.6 4.70972 159.6 5.31335C159.6 5.84046 159.787 6.2443 160.149 6.51636C160.51 6.78842 161.028 7.08173 161.704 7.39205L163.753 8.29324C165.177 8.93088 166.274 9.64503 167.048 10.4399C167.821 11.2306 168.208 12.2763 168.208 13.5686C168.208 14.4103 168.042 15.1627 167.715 15.8386C167.388 16.5145 166.941 17.0841 166.376 17.5475C165.807 18.0108 165.143 18.3679 164.378 18.6145C163.613 18.861 162.784 18.9843 161.891 18.9843C160.306 18.9843 158.916 18.623 157.721 17.8918C156.527 17.1606 155.592 16.1957 154.92 14.9927L157.462 13.0798C157.696 13.4241 157.959 13.7514 158.253 14.0617C158.542 14.372 158.865 14.6484 159.222 14.8949C159.579 15.1415 159.974 15.337 160.412 15.4815C160.85 15.6261 161.339 15.6983 161.887 15.6983C162.686 15.6983 163.311 15.5283 163.758 15.1797C164.204 14.8354 164.429 14.3423 164.429 13.7046C164.429 13.1223 164.225 12.6844 163.826 12.3911C163.422 12.0978 162.856 11.7875 162.129 11.4602L160.217 10.5845C159.579 10.2912 158.992 9.9766 158.452 9.64078C157.913 9.30496 157.453 8.92663 157.071 8.50579C156.688 8.08495 156.386 7.6216 156.17 7.11149C155.953 6.60138 155.842 6.0275 155.842 5.38987C155.842 4.6077 155.995 3.90205 156.306 3.27291C156.616 2.64378 157.037 2.10817 157.564 1.66182ZM51.98 0.280762V18.6489H55.6698V7.82613L66.1398 18.9805H67.3428V0.608082H63.653V11.3799L53.2085 0.280762H51.98ZM13.2841 6.75832C13.2841 5.88263 13.1226 5.08771 12.808 4.36506C12.4892 3.64665 12.0428 3.03027 11.469 2.52016C10.8951 2.01005 10.2107 1.61897 9.42002 1.34691C8.62935 1.07485 7.75791 0.93457 6.80996 0.93457H0V18.9754H3.68979V12.6076H6.80571C7.75366 12.6076 8.6251 12.4673 9.41577 12.1825C10.2064 11.9019 10.8908 11.4981 11.4647 10.9795C12.0386 10.4609 12.4849 9.84448 12.8037 9.13458C13.1226 8.42467 13.2798 7.62975 13.2798 6.75407L13.2841 6.75832ZM9.51354 6.75832C9.51354 7.54048 9.27549 8.17387 8.80364 8.65847C8.33178 9.14308 7.65589 9.38113 6.7802 9.38113H3.68979V4.18652H6.7802C7.65589 4.18652 8.32753 4.42457 8.80364 4.89642C9.27549 5.36827 9.51354 5.9889 9.51354 6.75407V6.75832ZM32.1496 9.86211C32.715 8.97793 32.9955 7.94495 32.9955 6.75895C32.9955 5.88326 32.834 5.08834 32.5152 4.36569C32.1964 3.64728 31.75 3.0309 31.1761 2.52079C30.6023 2.01068 29.9179 1.6196 29.1272 1.34754C28.3365 1.07548 27.4651 0.939453 26.5171 0.939453H19.7114V18.9803H23.4012V12.6125H26.0793L30.7553 18.9803H34.9084L29.8243 11.8983C30.8063 11.4264 31.5842 10.7463 32.1496 9.86211ZM29.225 6.75895C29.225 7.54112 28.9869 8.17025 28.5151 8.64635C28.039 9.11821 27.3673 9.35626 26.4916 9.35626H23.4012V4.1914H26.4916C27.3673 4.1914 28.039 4.42945 28.5151 4.9013C28.9869 5.3774 29.225 5.99379 29.225 6.75895ZM40.6855 0.93457H44.3753V18.9754H40.6855V0.93457ZM73.2515 3.9439V0.606934H88.5037V3.9439H82.7097V18.6478H79.0199V3.9439H73.2515ZM94.4126 0.606934V18.6478H106.876V15.3151H98.1024V10.7496H104.334V7.60393H98.1024V3.9439H106.549V0.606934H94.4126ZM122.847 10.0664L130.499 0.280762H131.702V18.6489H128.012V8.99938L123.446 14.7126H122.243L117.708 8.99938V18.6489H114.018V0.280762H115.246L122.847 10.0664ZM152.127 6.43131C152.127 5.55563 151.965 4.76071 151.651 4.03805C151.332 3.31965 150.886 2.70326 150.312 2.19316C149.738 1.68305 149.054 1.29196 148.263 1.0199C147.468 0.747846 146.601 0.611816 145.653 0.611816H138.847V18.6527H142.537V12.2848H145.653C146.601 12.2848 147.472 12.1445 148.263 11.8597C149.054 11.5792 149.738 11.1753 150.312 10.6567C150.886 10.1381 151.332 9.52172 151.651 8.81182C151.97 8.10192 152.127 7.307 152.127 6.43556V6.43131ZM148.356 6.43131C148.356 7.21348 148.118 7.84687 147.647 8.33147C147.175 8.81607 146.499 9.05412 145.623 9.05412H142.533V3.85951H145.623C146.499 3.85951 147.17 4.09756 147.647 4.56941C148.118 5.04127 148.356 5.6619 148.356 6.42706V6.43131Z\" fill=\"#495677\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-aan4v6\",\"data-framer-name\":\"Beams\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:122,layoutDependency:layoutDependency,layoutId:\"kBYemg_Iz\",style:{opacity:.8},svg:'<svg width=\"122\" height=\"26\" viewBox=\"0 0 122 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M121.495 7.79603V8.01668H117.18V7.79603C117.18 5.79301 115.908 4.47337 113.965 4.47337C112.178 4.47337 110.912 5.59163 110.912 7.17477C110.912 8.54797 111.677 9.43272 113.451 10.1011L116.189 11.1401C120.28 12.689 121.9 14.6427 121.9 18.0232C121.9 22.4749 118.631 25.504 113.826 25.504C108.748 25.504 105.713 22.6355 105.713 17.8261V17.8254C105.713 17.605 105.713 17.3781 105.719 17.1578H110.372C110.426 20.0991 111.542 21.4423 113.933 21.4423C115.822 21.4423 117.238 20.1762 117.238 18.4795C117.238 17.0571 116.388 16.0481 114.608 15.3604L111.752 14.2614C107.855 12.7554 106.248 10.8188 106.248 7.62893C106.248 3.30369 109.368 0.411621 114.063 0.411621C118.759 0.411621 121.495 3.13659 121.495 7.79603ZM14.9188 7.2387C14.9188 9.8383 13.8207 11.5175 11.5883 12.3234C14.2384 13.3391 15.4565 15.1683 15.4565 18.1364C15.4565 22.5709 12.8686 24.906 7.96925 24.906H0V1.00684H8.12564C12.4702 1.00684 14.9188 3.25408 14.9188 7.2387ZM4.53948 5.07072H6.72674C9.3553 5.07072 10.2508 5.76482 10.2508 7.78284C10.2508 9.80086 9.2589 10.5549 6.85741 10.5549H4.53948V5.07072ZM6.94739 20.8443H4.53948V14.4989H6.79743C9.6188 14.4989 10.7949 15.4179 10.7949 17.618C10.7949 19.8181 9.62309 20.8443 6.94739 20.8443ZM39.2675 1.00879H25.3213V24.908H39.2675V20.7862H29.8629V14.2009H38.1685V10.197H29.8629V5.07053H39.2675V1.00879ZM54.7286 1.00879H59.9279L66.2647 24.908H61.4917L60.3156 19.9143H54.3773L53.1519 24.908H48.426L54.7286 1.00879ZM59.3709 15.9104L57.34 6.79292L55.2834 15.9104H59.3709ZM95.4922 1.00879V24.908H91.1905L91.1712 11.6537L87.6001 24.908H83.9175L80.2863 11.6666L80.3013 24.908H75.9482V1.00879H81.5396L85.7641 17.0501L89.9416 1.00879H95.4922Z\" fill=\"#495677\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-tvfst\",\"data-framer-name\":\"Tommy Helfiger\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:199,layoutDependency:layoutDependency,layoutId:\"xbtAKUDYS\",style:{opacity:.8},svg:'<svg width=\"199\" height=\"12\" viewBox=\"0 0 199 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.2478 2.48905C16.2478 2.48905 17.8348 0.864258 20.3665 0.864258C20.3665 0.864258 23.0115 0.864258 24.6363 2.48905C24.6363 2.48905 26.1855 4.11384 26.1855 6.38099C26.1855 6.38099 26.1855 8.68592 24.6363 10.2351C24.6363 10.2351 23.0115 11.9355 20.3665 11.9355C20.3665 11.9355 17.7593 11.9355 16.1723 10.2729C16.1723 10.2729 14.623 8.68592 14.623 6.38099C14.623 6.38099 14.623 4.11384 16.2478 2.48905ZM23.3894 3.47148C23.3894 3.47148 22.218 2.30012 20.3665 2.30012C20.3665 2.30012 18.5528 2.30012 17.4192 3.47148C17.4192 3.47148 16.2478 4.64284 16.2478 6.38099C16.2478 6.38099 16.2478 8.11913 17.4192 9.32828C17.4192 9.32828 18.5528 10.4619 20.3665 10.4619C20.3665 10.4619 22.218 10.4619 23.3894 9.32828C23.3894 9.32828 24.5985 8.11913 24.5985 6.38099C24.5985 6.38099 24.5985 4.64284 23.3894 3.47148ZM5.21444 2.41321H8.95524V1.01514H0V2.41321H3.70301V11.7841H5.21444V2.41321ZM43.4161 11.7841H41.8669V3.39564L38.5417 7.55208H38.2772L34.9898 3.39564H34.9521V11.7841H33.4028V1.01514H34.8387L38.4284 5.43608L42.018 1.01514H43.4161V11.7841ZM60.6462 11.7841H62.1954V1.01514H60.7217L57.1699 5.43608L53.618 1.01514H52.1821V11.7841H53.7313V3.39564L57.0565 7.55208H57.321L60.6084 3.39564H60.6462V11.7841ZM76.5162 1.01514H78.3677L74.3624 6.07844V11.7841H72.851V6.07844L68.8457 1.01514H70.735L73.6445 4.75593L76.5162 1.01514ZM120.121 11.7841V1.01514H118.61V5.70058H112.564V1.01514H111.015V11.7841H112.564V7.09865H118.61V11.7841H120.121ZM128.094 11.7841H126.545V1.01514H128.094V11.7841ZM140.79 10.386H135.953V1.01514H134.442V11.7841H140.79V10.386ZM150.992 2.41321H146.76V5.39829H150.992V6.79637H146.76V11.7841H145.211V1.01514H150.992V2.41321ZM156.396 11.7841H157.907V1.01514H156.396V11.7841ZM172.606 11.0286C172.606 11.0286 170.679 11.9355 168.525 11.9355C168.525 11.9355 166.031 11.9355 164.444 10.3863C164.444 10.3863 162.819 8.83706 162.819 6.45656C162.819 6.45656 162.819 4.11384 164.444 2.45126C164.444 2.45126 166.144 0.864258 168.563 0.864258C168.563 0.864258 170.263 0.864258 172.417 1.8089V3.35812C172.417 3.35812 170.565 2.30012 168.525 2.30012C168.525 2.30012 166.787 2.30012 165.577 3.50926C165.577 3.50926 164.406 4.68062 164.406 6.38099C164.406 6.38099 164.406 8.19471 165.577 9.32828C165.577 9.32828 166.824 10.4619 168.714 10.4619L171.056 10.084V7.81685H169.016V6.49434H172.606V11.0286ZM180.012 2.41321H184.622V1.01514H178.5V11.7841H184.773V10.386H180.012V7.02308H184.47V5.62501H180.012V2.41321ZM190.025 1.01514V11.7841H191.574V7.09865H192.217C192.859 7.09865 193.388 7.47651 193.388 7.47651C194.068 8.0433 195.051 9.59252 195.051 9.59252L196.449 11.7841H198.3L196.864 9.6303C195.353 7.2498 194.484 6.64522 194.484 6.64522C196.26 5.92729 196.26 4.038 196.26 4.038C196.26 2.63993 195.315 1.80864 195.315 1.80864C194.371 1.01514 192.708 1.01514 192.708 1.01514H190.025ZM191.574 2.37543H192.557C194.673 2.37543 194.673 3.96243 194.673 3.96243C194.673 5.70058 192.557 5.70058 192.557 5.70058H191.574V2.37543ZM85.8496 11.7841V1.01514H102.211V11.7841H85.8496ZM101.115 2.11093H86.9454V3.2445H101.115V2.11093ZM93.4823 4.34029H86.9454V8.49673H93.4823V4.34029ZM101.115 4.34029H94.5781V8.49673H101.115V4.34029ZM101.115 9.59252H86.9454V10.6883H101.115V9.59252Z\" fill=\"#495677\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1fjytae\",\"data-framer-name\":\"CocaCola\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:105,layoutDependency:layoutDependency,layoutId:\"uS3Niyxv0\",style:{opacity:.8},svg:'<svg width=\"105\" height=\"35\" viewBox=\"0 0 105 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.5604 29.4059C31.1118 27.0334 36.4141 27.4751 40.3212 29.9919C42.2995 31.2696 44.6709 33.1235 45.5074 34.3814C42.9967 32.5375 39.5492 31.6252 37.1594 31.8457C34.2526 31.8939 33.0894 34.1517 33.0894 34.1517C29.9081 28.3592 20.8142 30.8621 17.6298 31.7385C17.3129 31.8257 17.0546 31.8968 16.8664 31.942C16.5427 32.0197 16.1946 32.1053 15.8277 32.1955L15.8276 32.1955L15.8274 32.1955L15.8273 32.1956L15.8272 32.1956C13.8368 32.6849 11.2965 33.3093 9.13749 33.5362C5.49149 33.8434 2.43546 32.3741 0.963495 29.6079C-0.939368 25.6212 0.330082 20.7229 1.7338 17.3034C4.16849 11.6361 8.47126 6.45852 13.8502 2.72197C16.3096 1.21391 18.9747 -0.150176 21.8362 0.0133617C22.6719 0.167055 23.3449 0.618424 23.7345 1.27152C24.6638 3.1064 23.4823 5.07515 22.6829 6.10323C21.9412 7.01555 20.2216 7.36139 20.2901 5.69977C20.3376 4.61433 21.2221 3.80741 21.5443 3.55751C21.9413 3.29842 22.455 3.25025 22.7608 3.25025C23.0506 2.98106 23.2746 1.0988 20.8795 1.71344C17.7544 2.69322 15.3879 5.13316 12.8365 7.9763C8.26572 13.4418 5.69243 18.3691 4.74022 23.4891C4.32967 26.6299 4.87947 28.8104 6.413 30.1646C9.83379 32.5271 12.5553 31.8565 19.0012 30.2681C20.077 30.0029 21.2566 29.7123 22.5604 29.4059ZM14.4477 14.0939C17.6529 9.81005 21.6548 7.31262 23.6458 8.61895C25.4861 9.95995 24.0718 13.3302 23.6173 14.4133L23.6173 14.4133L23.6172 14.4135C23.5705 14.5249 23.5339 14.6121 23.5121 14.6704C24.2265 14.8532 26.5107 13.2204 27.8427 11.7506C28.9007 10.5785 30.7132 9.07059 31.8583 8.63851C32.7136 8.2252 34.0353 8.09094 34.9017 8.60937C35.483 8.9459 35.8725 9.63732 35.9135 10.3675C36.0281 12.4038 33.6589 15.7466 32.4709 14.0561C32.2264 13.326 32.4936 12.5478 33.2628 11.7409C33.6532 11.3374 34.1335 11.1552 34.7329 11.1744C34.9692 10.7997 34.9089 10.2526 34.5355 10.0313C34.1436 9.79115 33.3539 9.95495 32.6273 10.5213C30.0534 12.5675 27.7916 15.9586 26.479 19.6951C26.2465 20.3961 26.1197 21.4636 26.5319 22.1937C27.6593 23.9315 30.2978 21.5128 30.2978 21.5128C32.0789 19.928 33.7966 17.7323 35.1457 15.7822C38.6499 10.7107 43.3045 6.33744 45.3598 9.18057C45.3765 9.20244 45.3965 9.23505 45.4155 9.26599L45.4156 9.26605L45.4156 9.26609L45.4156 9.26614L45.4157 9.26623L45.4157 9.26628C45.4386 9.30358 45.46 9.33837 45.4722 9.34884C45.5017 9.31038 45.8641 8.72409 45.8641 8.72409H49.1816C49.1816 8.72409 42.1554 20.9104 42.1462 20.9298C42.0001 21.227 41.9068 21.6464 42.1433 21.8483C42.3207 21.9733 42.619 21.8356 42.6633 21.8152L42.6688 21.8127C44.3151 21.0141 46.7646 17.617 47.232 16.9687L47.2321 16.9686L47.2326 16.9679L47.2327 16.9678C47.2822 16.8991 47.3093 16.8616 47.3106 16.8616H48.4533C46.6618 19.4866 44.444 22.5233 41.691 24.4636C40.9267 24.9727 39.9212 25.5149 38.9277 25.1592C37.985 24.5657 38.045 23.8412 38.1164 22.9792C38.1247 22.8786 38.1332 22.7761 38.1403 22.6718C38.1398 22.6718 38.1322 22.6805 38.1179 22.697C37.8593 22.9942 35.4105 25.8085 33.3431 25.2075C32.6211 24.9769 31.4669 24.3522 32.3232 21.3744C32.3232 21.3744 32.3886 21.1059 32.4389 20.9047C32.2403 21.0965 31.8892 21.4324 31.8892 21.4324C29.8289 23.4496 27.4934 25.7168 24.5686 25.2265C22.5958 24.6136 22.4439 22.7352 22.3776 21.9149L22.3776 21.9149L22.3776 21.9147L22.3776 21.9145C22.3701 21.8225 22.3638 21.7438 22.356 21.6817C22.126 19.8006 24.2137 16.139 24.5029 15.6318L24.5029 15.6318C24.5237 15.5952 24.5352 15.575 24.5358 15.5731C23.9016 15.7557 23.3388 15.8902 22.8716 15.9763C22.8355 16.0341 22.0795 17.2828 22.0795 17.2828L22.0338 17.3584L22.0338 17.3585C21.2254 18.6993 20.3868 20.0904 19.3071 21.2501L19.0984 21.4712C17.4809 23.3632 13.6772 26.8979 11.6283 24.4678C10.251 22.4026 11.5166 17.9365 14.4477 14.0939ZM42.6217 10.7707C42.1638 11.174 40.2854 13.5659 39.6401 14.4591C37.0451 17.9557 36.2042 20.4815 36.1349 21.3073C36.1104 21.5572 36.1963 21.7974 36.4142 21.9415C36.5952 22.0764 36.8672 22.0571 37.0321 22.0088C38.1891 21.3653 38.8984 20.4431 39.6028 19.3675C39.6028 19.3675 40.1052 18.5993 40.102 18.6088C41.6969 15.9575 43.3933 13.0085 44.8306 10.4343C44.7773 10.0119 44.1618 9.41577 42.6217 10.7707ZM21.5494 16.1205C21.5637 16.0922 21.5925 16.0054 21.5925 16.0054C21.6307 15.9193 21.6467 15.8806 21.6466 15.852C21.6466 15.8327 21.6403 15.8231 21.6344 15.8231C20.6531 15.5345 19.3408 14.9104 18.641 13.5659C18.6397 13.5534 18.6374 13.549 18.6352 13.5448L18.6337 13.5418C18.6333 13.5411 18.633 13.5403 18.6327 13.5395C18.6324 13.5387 18.6322 13.5379 18.6319 13.537C18.6206 13.537 18.5894 13.5466 18.5755 13.5561C17.4603 15.1602 16.3144 16.8895 15.5923 18.8488L15.5032 19.1371C15.2513 19.9439 14.9413 20.9428 15.5428 21.6634C15.8266 22.0185 16.3834 21.9319 16.7862 21.7974C18.1344 21.1021 19.215 19.6592 20.0822 18.5013L20.103 18.4736C20.103 18.4736 21.5457 16.1205 21.5494 16.1205ZM22.3168 14.7088C22.3168 14.7088 22.9531 13.2489 22.9594 13.2298C23.1779 12.5764 23.3706 11.8753 23.3705 11.251C23.3705 10.7897 23.2651 10.3672 22.9869 10.0405C22.536 9.68497 21.7594 9.8674 21.2598 10.2135C20.7392 10.6071 19.5575 11.6926 19.8452 13.0758C20.0538 13.7865 20.7302 14.3821 21.6271 14.6605L21.9127 14.7088L21.9349 14.714C22.0922 14.7505 22.2289 14.7822 22.3168 14.7088ZM64.8989 17.6871C64.5791 16.9956 63.8197 16.5537 63.0104 16.6016C60.3824 16.8419 57.8118 19.0031 56.4622 22.1055C55.754 23.7001 55.3674 25.0159 55.114 27.1099C55.9312 26.1688 57.598 24.6224 59.4896 23.7771C59.4896 23.7771 59.747 21.7696 61.0595 19.9829C61.5561 19.243 62.5501 18.0521 63.6661 18.3689C64.6412 18.6957 64.2985 21.3949 63.0025 24.007C62.0436 25.9284 60.5762 27.85 59.0915 29.1752C57.7789 30.2895 55.8368 31.6342 54.1376 30.5969C53.0674 29.9633 52.5215 28.6374 52.6369 26.9276C53.1483 22.077 55.3563 17.9465 58.5161 13.2399C61.7743 8.86942 65.3658 4.38369 70.2041 1.99152C71.1909 1.49212 72.1048 1.37688 72.8948 1.68427C72.8948 1.68427 68.3531 4.18169 66.1881 8.80209L66.164 8.85332C65.6155 10.0201 64.8826 11.5789 65.6427 12.9611C66.0458 13.691 66.7615 13.7488 67.3377 13.7103C69.9914 13.0954 71.706 10.6173 73.1068 8.35058C73.919 6.63121 74.6408 4.92142 74.6408 3.01947C74.6408 2.789 74.6289 2.48174 74.6093 2.25101C75.8772 1.57887 78.477 2.76971 78.477 2.76971C79.6711 3.16506 81.6578 4.47291 83.3891 5.61269L83.3893 5.61279L83.3893 5.61284C84.6036 6.41221 85.6922 7.12888 86.2937 7.3901C87.0055 6.56414 88.1752 5.31556 88.8338 4.69107L87.8804 4.10504C86.4167 3.21156 84.8729 2.36213 83.3482 1.52319L83.3481 1.52315L83.3478 1.52297L83.1524 1.41547C79.5458 -0.553412 76.6101 0.138013 75.116 0.676007C74.5288 0.887188 73.9921 1.06976 73.9921 1.06976C72.8833 -0.140499 71.0648 -0.0255246 69.7249 0.301288C64.9062 1.6844 60.4322 5.05582 55.6357 10.9058C52.1093 15.4877 49.9219 19.4453 48.756 23.3546C47.8573 25.9862 47.5842 29.8573 49.7776 32.1532C51.6426 34.1025 54.1154 33.6803 55.8617 32.9792C59.6453 31.1158 63.0458 27.1004 64.7403 22.4802C65.1491 21.1068 65.603 19.1665 64.8989 17.6871ZM73.599 3.21176C73.0981 8.95591 68.6331 12.3277 67.5284 12.5963C66.8589 12.7305 65.7165 12.433 66.7363 10.0223C68.2382 6.77532 70.8023 4.01881 73.5534 2.60669C73.6204 2.84688 73.6187 3.00018 73.599 3.21176ZM92.1801 5.88178C95.1939 6.18903 97.6836 5.30559 100.085 3.94138C103.017 2.27988 105 0.0131945 105 0.0131945C105 0.0131945 103.643 2.90424 100.998 5.20007C98.4966 7.47633 94.012 9.8681 89.782 8.79225C90.5316 7.79344 91.3448 6.82337 92.1801 5.88178ZM52.9179 11.6121L54.6957 8.72462H51.5452L49.7681 11.6121H52.9179ZM91.5306 29.7839C91.3527 30.312 91.8286 30.4892 92.1673 30.2587C94.0432 29.1565 95.5485 26.8784 96.7436 25.0697C96.7884 25.0018 96.8328 24.9346 96.8768 24.8681H97.9984C97.143 26.3119 93.8485 31.3056 91.0963 32.8042C90.9876 32.8627 90.8809 32.9227 90.7754 32.982C90.1366 33.341 89.5404 33.6761 88.7799 33.5355C87.4872 33.3724 87.423 31.7392 87.659 30.8269C86.9242 31.6047 85.3406 33.1227 83.9196 33.5068C82.6825 33.7467 81.0596 33.2566 81.5069 30.1252C79.4231 32.7384 76.8615 34.717 75.3142 32.8054C74.2314 31.4513 74.7615 29.1649 75.9078 25.8032C75.9078 25.8032 76.2938 24.6501 76.3366 24.5067C76.3201 24.4966 76.3159 24.4966 76.3059 24.4966C75.6774 24.6585 74.8787 24.7044 74.5982 24.7205C74.5454 24.7236 74.5109 24.7256 74.4995 24.7271C72.6908 27.8971 70.3962 31.3645 67.1122 33.0935C66.6291 33.343 65.3993 33.8618 64.4221 33.3626C63.472 32.8245 63.0998 31.7487 63.2826 30.0776C63.5422 27.9448 64.4797 26.0822 65.42 24.3431C67.1683 21.6059 69.591 18.2822 72.8326 16.9374C73.5562 16.6109 74.6294 16.4091 75.4978 16.8414C76.2384 17.3792 76.4369 18.1569 76.4369 18.9837C76.4369 19.3679 76.3915 19.7615 76.3426 20.1458C76.0605 21.4906 75.4966 22.73 75.0488 23.6519C75.2647 23.7961 76.5345 23.498 76.8632 23.2487C81.398 13.7775 86.585 6.84227 92.7276 2.02986L92.7759 2.00125C93.9708 1.18448 95.4559 0.176219 96.8186 0.435569C97.2366 0.512482 97.5564 0.848613 97.6309 1.29053C97.8537 2.6638 97.2491 3.81683 96.7031 4.84412C96.2325 4.99821 95.516 5.13274 95.516 5.13274L96.0219 4.09521C96.3828 3.38449 96.6974 2.76001 96.6574 1.91489C96.552 1.6936 96.4299 1.68402 96.3352 1.6936C95.4377 1.87617 94.286 2.99035 93.1745 4.07579L92.4557 4.76761C87.8878 9.33012 82.5201 18.8682 81.6892 20.8665C83.5647 19.9541 89.7508 13.8256 92.7737 9.60876C93.3925 9.58973 93.9166 9.48394 93.9166 9.48394C93.4324 10.4348 90.1198 14.6901 86.1905 18.4462C84.3799 20.1848 82.3875 21.7696 80.6417 22.9799C79.7834 24.8338 78.9314 26.8796 78.5646 29.0315C78.5235 29.3293 78.4256 30.6074 79.3744 30.5305C80.5898 30.2613 82.7791 26.6415 82.7791 26.6415L82.8589 26.5166C84.9262 23.279 87.5422 19.1824 91.1106 17.0958C91.942 16.6253 93.1471 16.3798 93.9685 16.8989C94.16 17.0233 94.6251 17.5995 94.7806 17.8586C94.7806 17.8586 95.1224 17.2558 95.2822 16.9933H98.6442L93.736 25.6986C93.736 25.6986 91.9739 28.4391 91.5306 29.7839ZM67.2255 29.0747C67.2313 29.3813 67.2892 29.6649 67.4637 29.9243C68.9199 31.6148 72.4103 26.7596 73.428 24.4925C72.6086 24.137 71.2512 23.2933 70.6518 21.9808H70.6488C69.2184 23.8183 67.192 27.1913 67.2255 29.0747ZM71.863 21.3852C72.1937 22.97 73.9053 23.5466 74.0023 23.479C74.5395 22.5471 74.9759 21.5 75.2611 20.4341L75.2694 20.3667L75.2732 20.3367C75.3093 20.0471 75.3487 19.7321 75.3487 19.4251C75.3487 18.9072 75.2403 18.4265 74.8401 18.1572C74.4089 18.0042 73.8212 18.1096 73.431 18.4171C72.522 18.9545 71.5823 20.0207 71.863 21.3852ZM87.4058 29.6073C87.4058 29.6073 87.7291 29.3192 87.7306 29.3192C89.3915 27.2537 90.7202 24.9007 92.0009 22.624C92.0768 22.4905 92.153 22.3563 92.2295 22.2216C92.8129 21.1941 93.4122 20.1385 94.0378 19.1274C94.0674 19.0796 94.1188 18.9261 94.1188 18.8682C94.1188 18.6859 93.9878 18.5032 93.8753 18.3978C93.3862 18.1959 92.9229 18.4547 92.496 18.7628C90.0061 20.7543 88.2971 23.6087 86.8302 26.0586L86.753 26.1875L86.6207 26.4662L86.615 26.4781C86.1008 27.5404 85.5728 28.6314 85.5988 29.8085C85.6256 29.9723 85.737 30.1834 85.8954 30.241C86.4562 30.4571 86.9228 30.0395 87.3749 29.635L87.4058 29.6073Z\" fill=\"#495677\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-csrsbr\",\"data-framer-name\":\"Lacoste\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:99,layoutDependency:layoutDependency,layoutId:\"C0__iOHYL\",style:{opacity:.8},svg:'<svg width=\"99\" height=\"48\" viewBox=\"0 0 99 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M74.9506 21.2791C74.784 21.0622 74.531 20.9555 74.3242 20.8682C74.2868 20.8524 74.2508 20.8372 74.2172 20.8222C74.1078 20.7706 74.0622 20.691 74.0201 20.6173C73.9795 20.5465 73.942 20.4811 73.8541 20.4514C73.769 20.4241 73.6545 20.4896 73.5312 20.5601C73.3883 20.6418 73.2337 20.7302 73.0997 20.6886C72.9694 20.6459 72.9122 20.4986 72.8576 20.3578C72.8077 20.2291 72.7599 20.106 72.6605 20.0731C72.5515 20.0388 72.4013 20.1132 72.2547 20.1858C72.1145 20.2553 71.9775 20.3232 71.8828 20.2929C71.7838 20.2642 71.7253 20.1245 71.667 19.9855C71.6104 19.8504 71.5541 19.716 71.4613 19.6854C71.369 19.6573 71.2256 19.7283 71.0808 19.7999C70.933 19.8729 70.7839 19.9467 70.6865 19.9166C70.5922 19.8849 70.5408 19.7559 70.4881 19.6238C70.4325 19.4842 70.3755 19.3411 70.265 19.3048C70.1555 19.2713 70.0035 19.3479 69.8561 19.4222C69.7153 19.4932 69.5786 19.5621 69.4873 19.5308C69.3918 19.5013 69.339 19.3705 69.2852 19.2374C69.2301 19.101 69.1739 18.9621 69.07 18.9272C68.9645 18.8937 68.8142 18.9674 68.6667 19.0397C68.5241 19.1096 68.3842 19.1782 68.29 19.1473C68.1889 19.1147 68.1255 18.9708 68.0635 18.8303C68.0044 18.6964 67.9467 18.5655 67.859 18.5368C67.7682 18.5091 67.6347 18.5654 67.4877 18.6275C67.3373 18.6909 67.1727 18.7604 67.0252 18.7519C65.7834 18.6364 65.0122 18.113 64.5697 17.8128C64.3217 17.6445 64.177 17.5463 64.1107 17.6295C64.0267 17.4818 63.954 17.3199 63.881 17.1573C63.8536 17.0961 63.8261 17.0349 63.798 16.9743C64.1995 16.9884 64.3812 16.8966 64.7114 16.7053H64.7091C64.8606 16.6514 65.0024 16.7681 65.1459 16.886C65.2937 17.0076 65.4432 17.1307 65.6069 17.0698C65.7741 17.0068 65.7993 16.8306 65.8249 16.6512C65.8515 16.4651 65.8785 16.2754 66.0655 16.2052C66.2384 16.1434 66.381 16.2655 66.5221 16.3862C66.6609 16.505 66.7981 16.6224 66.9609 16.5618C67.1354 16.4983 67.1656 16.31 67.1955 16.1237C67.2247 15.9411 67.2537 15.7604 67.4178 15.7011C67.5868 15.6402 67.721 15.7582 67.8564 15.8772C67.9946 15.9987 68.134 16.1213 68.313 16.0558C68.4953 15.9911 68.5239 15.7998 68.5519 15.6121C68.5787 15.4333 68.6049 15.2578 68.763 15.198C68.9312 15.1367 69.076 15.2577 69.2202 15.3782C69.3625 15.4971 69.5042 15.6156 69.6674 15.5577C69.8213 15.5027 69.8554 15.319 69.89 15.1333C69.9252 14.9439 69.9608 14.7526 70.1243 14.694C70.2894 14.6348 70.4259 14.7495 70.5644 14.8659C70.7079 14.9865 70.8536 15.109 71.0358 15.0421C71.182 14.9913 71.2155 14.8087 71.2494 14.6235C71.2839 14.4356 71.3189 14.2449 71.4727 14.1867C71.6237 14.1304 71.7694 14.2467 71.9165 14.3642C72.0667 14.4841 72.2183 14.6052 72.3787 14.5453C72.5254 14.4913 72.5576 14.3103 72.5903 14.1263C72.6241 13.9366 72.6584 13.7438 72.8192 13.6836C72.9897 13.6222 73.1404 13.7445 73.2889 13.8651C73.4328 13.9818 73.5747 14.097 73.7308 14.0422C73.8784 13.9893 73.9039 13.8482 73.9321 13.6926C73.9639 13.5172 73.999 13.3232 74.2159 13.2156C74.2159 13.2156 74.7827 13.0296 74.7469 12.6143C74.7424 12.5445 74.6253 11.6566 73.6917 11.4683C73.1245 11.3545 70.0854 12.0942 67.9014 12.6258L67.9014 12.6258L67.901 12.6259C66.6286 12.9356 65.6466 13.1746 65.6128 13.1331C65.0064 11.9368 64.2414 12.1613 64.0342 12.2221L64.0342 12.2221L64.034 12.2221C64.0184 12.2267 64.006 12.2304 63.997 12.2324C63.9826 12.236 63.9601 12.2434 63.9301 12.2532C63.6905 12.3315 62.9784 12.5642 62.1992 12.2651C61.1705 11.8004 60.2658 12.3196 59.503 12.7573C58.9891 13.0523 58.5396 13.3102 58.16 13.2054C57.2918 12.9618 56.6279 13.1023 56.2638 13.2261C56.2078 13.2454 56.1459 13.2738 56.0764 13.3057L56.0763 13.3057C55.7318 13.4637 55.1978 13.7085 54.2449 13.3813C45.3932 10.3636 38.4751 13.0017 38.4751 13.0017C34.5744 14.3029 34.0754 13.0017 34.0754 13.0017C34.0754 13.0017 32.7916 11.2606 41.83 9.18385C54.8212 6.20409 55.2129 1.27299 55.059 0.961194C54.9172 0.660305 54.8337 0.795398 54.6678 1.06391C54.5843 1.19902 54.4799 1.36793 54.3367 1.53206C53.9776 1.93949 53.5603 1.73807 53.5603 1.73807C53.1516 1.54221 52.8902 2.00827 52.8902 2.00827C52.8902 2.00827 52.3644 2.82313 51.8993 2.35969C51.5918 2.05269 51.2149 2.43384 50.9375 2.71437C50.8118 2.84146 50.7066 2.9479 50.6374 2.96036C50.4391 2.99537 50.3166 2.93194 50.1187 2.82943L50.1186 2.8294L50.1185 2.82936C50.0517 2.79473 49.9762 2.75565 49.8863 2.71439C49.5391 2.56121 49.1754 2.91847 48.8829 3.20582C48.7258 3.36021 48.5891 3.49441 48.4866 3.51845C48.2781 3.56606 48.0984 3.45551 47.9271 3.3501C47.7295 3.22854 47.5431 3.11382 47.3363 3.25644C46.182 4.0523 46.0003 4.163 45.6894 3.85317C45.6624 3.82568 45.6381 3.79792 45.6151 3.77151C45.4417 3.57299 45.3354 3.45139 44.6548 4.10209C43.9985 4.73059 43.6842 4.84817 43.4208 4.4486C43.3745 4.37997 43.3382 4.30706 43.3041 4.23871L43.3041 4.23865L43.304 4.23843L43.304 4.2384C43.1385 3.90638 43.0267 3.68215 42.0917 4.57797C41.5535 5.09414 41.2779 5.10396 40.9696 4.87208C40.9093 4.82683 40.8648 4.73731 40.8177 4.64273C40.6836 4.37307 40.529 4.06228 39.9301 4.61924C39.197 5.29654 38.6647 5.59327 38.457 4.99195C38.2277 4.31628 37.3638 5.11641 37.164 5.30473C37.1457 5.32138 37.1255 5.34045 37.1037 5.36103C36.8792 5.57322 36.4851 5.94575 36.2013 5.477C35.8903 4.95985 35.1451 5.73181 34.702 6.22178C34.4062 6.55111 34.1593 6.37546 33.8646 6.16576L33.8645 6.16569C33.8186 6.13309 33.7717 6.09966 33.7232 6.06719C33.3859 5.83629 32.4956 6.95279 32.1285 7.41315C32.0494 7.51239 31.9946 7.58114 31.9749 7.59932C31.875 7.68591 31.7962 7.61833 31.5818 7.43447L31.5816 7.43434C31.5552 7.4117 31.5268 7.3873 31.496 7.36121C31.1814 7.09503 30.4778 8.10032 30.0458 8.71758C29.8846 8.94792 29.7612 9.12422 29.7099 9.16026C29.7099 9.16026 29.6302 9.33549 29.3124 9.03253C28.8601 8.60316 26.46 11.7581 25.554 15.3277C24.3952 19.9038 26.2415 23.4128 26.2415 23.4128C26.2415 23.4128 26.7962 23.4299 27.0324 23.0555L27.3919 22.2465C27.6832 21.5722 28.1607 21.7844 28.1607 21.7844L27.0291 25.1487C26.8503 25.5918 26.9582 26.2187 27.3538 26.8112C27.7264 27.4066 27.9833 27.8091 28.2821 28.0859C29.0875 28.8432 29.1148 28.1515 29.1254 27.8832C29.1269 27.8454 29.128 27.816 29.131 27.8003C29.2268 27.3134 29.7179 27.5929 30.1608 27.845L30.1609 27.845C30.2155 27.8761 30.2694 27.9068 30.3217 27.9355C30.9662 28.2967 31.0766 27.7939 31.1698 27.3701C31.2015 27.2255 31.2313 27.0902 31.2795 27.0014C31.411 26.7516 31.8361 26.7404 32.2973 27.1262C32.6565 27.4259 33.0133 26.4106 33.0133 26.4106C33.4614 24.2474 32.4088 23.9971 31.8394 23.9654L30.6868 23.9126C30.6868 23.9126 30.7625 23.5835 30.8826 23.2753L30.9341 23.0568C32.191 19.9294 30.0904 19.3258 29.462 19.3755C28.7685 19.4374 28.8171 18.9963 28.8171 18.9963C28.8171 18.9963 32.6138 18.2499 31.906 22.2701C31.906 22.2701 31.7662 22.9704 31.6823 23.3355L32.7257 23.4571C33.6234 23.5691 33.7829 24.6296 33.7829 24.6296C33.7829 24.6296 37.0853 25.5011 38.9582 25.1526C38.9582 25.1526 39.7953 24.9535 40.0279 24.4334C40.0279 24.4334 41.2409 21.5797 44.7821 21.4592C44.7821 21.4592 44.9067 21.8286 44.3409 22.0209C44.2499 22.0515 44.1305 22.0812 43.9907 22.116C43.0884 22.3407 41.3392 22.7761 40.9325 25.021V25.0311C40.8814 25.4565 40.9955 26.3625 41.9199 26.782C42.5491 27.0656 42.8527 28.0372 43.0326 28.6131L43.0327 28.6132C43.0778 28.7577 43.1152 28.8772 43.1479 28.9548C43.6065 30.0523 44.293 29.0032 44.293 29.0032C44.293 29.0032 44.728 28.1176 45.1012 28.6089C45.732 29.4375 46.0249 29.0199 46.1683 28.4923C46.3251 27.9228 46.5533 27.6745 47.2136 28.3669C47.4957 28.6675 48.0494 28.4353 48.1045 27.9208C48.2017 26.9778 48.7492 27.4443 48.993 27.6521L48.993 27.6521C49.042 27.6939 49.0787 27.7252 49.0971 27.7325C49.2283 27.7822 50.0306 27.6021 49.5816 26.3248C49.5816 26.3248 48.9751 25.1077 46.2408 24.5827C45.5992 24.4612 45.7012 23.9975 45.7012 23.9975L46.3034 24.082C46.3964 24.097 46.8668 24.1515 47.3226 24.2042L47.323 24.2042L47.3237 24.2043L47.325 24.2045C47.7496 24.2536 48.1611 24.3012 48.2426 24.3142C54.9127 24.9715 59.9736 22.7123 60.1258 22.5511C65.3071 23.5425 72.3525 23.2045 73.675 22.7287C75.0044 22.261 75.1035 21.4857 74.9506 21.2791ZM64.2525 13.0233C64.3608 12.8491 64.4631 12.7505 64.5573 12.703C64.9594 12.4747 65.2159 13.1894 65.167 13.2156C65.1647 13.2169 65.1556 13.2198 65.1516 13.2215C65.151 13.2225 65.151 13.2251 65.1503 13.2261C65.087 13.2565 64.3113 13.4763 64.2348 13.4259C64.0813 13.3194 64.2525 13.0233 64.2525 13.0233ZM61.3067 13.2493C61.3067 13.2493 61.4067 13.1232 61.6006 13.059C61.7918 12.9896 62.0808 12.9778 62.4636 13.2241C62.9038 13.5035 62.8926 13.7216 62.8926 13.7216C62.8782 13.7288 62.8585 13.736 62.8365 13.7439C62.5174 13.867 61.2083 14.0275 61.2083 14.0275C60.9537 13.5592 61.3067 13.2493 61.3067 13.2493ZM36.8868 6.92332C37.1069 7.09265 36.896 8.06767 36.7392 7.92389L35.6086 7.32682C35.6086 7.32682 36.6615 6.75891 36.8868 6.92332ZM35.048 7.54593C35.2704 7.71133 35.0621 8.68864 34.9043 8.54322L33.777 7.94485C33.777 7.94485 34.8246 7.37661 35.048 7.54593ZM34.412 9.45241C34.6354 9.61912 34.4258 10.5981 34.2663 10.4566L33.137 9.851C33.137 9.851 34.1873 9.28701 34.412 9.45241ZM33.3358 12.0123L32.2051 11.4126C32.2051 11.4126 33.2567 10.8437 33.4798 11.0111C33.7058 11.1778 33.4899 12.1561 33.3358 12.0123ZM33.1229 13.943L31.9955 13.3433C31.9955 13.3433 33.0448 12.777 33.2685 12.9408C33.4919 13.1059 33.2836 14.0802 33.1229 13.943ZM33.1022 8.22553C33.3266 8.39191 33.115 9.36496 32.9573 9.22642L31.8259 8.62477C31.8259 8.62477 32.8795 8.05686 33.1022 8.22553ZM32.1215 9.7118C32.3429 9.87786 32.1333 10.8512 31.9772 10.7127L30.8481 10.113C30.8481 10.113 31.8981 9.54313 32.1215 9.7118ZM30.1062 12.0437C30.1062 12.0437 31.1597 11.4729 31.3802 11.6419C31.6049 11.8073 31.3933 12.7823 31.2355 12.6411L30.1062 12.0437ZM30.9718 14.486L29.8448 13.884C29.8448 13.884 30.896 13.3194 31.1178 13.4861C31.3421 13.6518 31.1319 14.6262 30.9718 14.486ZM30.1682 10.3888C30.3906 10.5512 30.1803 11.5282 30.0225 11.3871L28.8971 10.7854C28.8971 10.7854 29.9425 10.2208 30.1682 10.3888ZM29.1523 12.3552C29.376 12.5206 29.1664 13.5015 29.005 13.3571L27.8783 12.7584C27.8783 12.7584 28.9293 12.1947 29.1523 12.3552ZM27.6681 14.6848C27.6681 14.6848 28.7187 14.1208 28.9414 14.2869C29.1668 14.4513 28.9522 15.4293 28.7974 15.2875L27.6681 14.6848ZM29.6824 16.8884L28.5544 16.288C28.5544 16.288 29.6056 15.7195 29.829 15.8862C30.0524 16.0535 29.8392 17.0279 29.6824 16.8884ZM31.3005 18.1971L30.1721 17.5994C30.1721 17.5994 31.224 17.0308 31.4471 17.1959C31.6685 17.3597 31.455 18.3416 31.3005 18.1971ZM31.8063 16.1541L30.6772 15.5518C30.6772 15.5518 31.7289 14.9878 31.9519 15.1492C32.1753 15.3163 31.9637 16.2913 31.8063 16.1541ZM33.3072 19.0788L32.1809 18.4794C32.1809 18.4794 33.2262 17.9122 33.4519 18.0786C33.6746 18.2459 33.4673 19.2164 33.3072 19.0788ZM33.8491 17.1969L32.7217 16.5975C32.7217 16.5975 33.7711 16.0335 33.9934 16.1999C34.2165 16.364 34.0089 17.3407 33.8491 17.1969ZM34.2224 15.4181L33.095 14.8175C33.095 14.8175 34.1443 14.2535 34.3697 14.4192C34.5934 14.5869 34.3798 15.5583 34.2224 15.4181ZM35.8087 18.8515L34.681 18.2482C34.681 18.2482 35.7306 17.6852 35.9556 17.8486C36.1816 18.0147 35.9677 18.994 35.8087 18.8515ZM36.2971 16.9778L35.17 16.3794C35.17 16.3794 36.2213 15.8092 36.4447 15.9779C36.6644 16.139 36.4529 17.1176 36.2971 16.9778ZM36.7061 14.9927L35.5784 14.3927C35.5784 14.3927 36.6284 13.8303 36.8537 13.9934C37.0754 14.1601 36.8639 15.1342 36.7061 14.9927ZM38.2904 18.5001L37.1591 17.9004C37.1591 17.9004 38.2107 17.3325 38.436 17.4979C38.6574 17.6685 38.4439 18.6445 38.2904 18.5001ZM38.6693 16.4957L37.5419 15.893C37.5419 15.893 38.5935 15.3274 38.8159 15.4918C39.0396 15.6602 38.8277 16.6313 38.6693 16.4957ZM39.0625 14.4379L37.9348 13.8372C37.9348 13.8372 38.9845 13.2722 39.2088 13.4367C39.4316 13.607 39.221 14.5794 39.0625 14.4379ZM40.7603 17.7078L39.6313 17.1134C39.6313 17.1134 40.6826 16.5458 40.903 16.7109C41.1297 16.8762 40.9181 17.8503 40.7603 17.7078ZM41.069 15.7335L39.9383 15.1368C39.9383 15.1368 40.989 14.5702 41.2107 14.7336C41.44 14.901 41.2251 15.8803 41.069 15.7335ZM41.4606 13.7986L40.3293 13.2022C40.3293 13.2022 41.3826 12.6319 41.604 12.7964C41.827 12.9647 41.6161 13.943 41.4606 13.7986ZM43.1886 17.2906L42.0602 16.6899C42.0602 16.6899 43.1086 16.1223 43.3342 16.2884C43.5599 16.456 43.347 17.4291 43.1886 17.2906ZM43.4966 15.4473L42.3673 14.8492C42.3673 14.8492 43.4198 14.2777 43.6413 14.448C43.8643 14.6092 43.6534 15.5898 43.4966 15.4473ZM43.8682 13.4809L42.7376 12.8822C42.7376 12.8822 43.7892 12.3093 44.0145 12.48C44.2376 12.647 44.0286 13.6201 43.8682 13.4809ZM45.4319 17.3253L44.3058 16.7256C44.3058 16.7256 45.3554 16.156 45.5785 16.326C45.8022 16.4901 45.5903 17.4651 45.4319 17.3253ZM45.8045 15.3461L44.6732 14.7477C44.6732 14.7477 45.7264 14.1768 45.9501 14.3462C46.1715 14.5135 45.96 15.4869 45.8045 15.3461ZM46.227 13.3761L45.0976 12.7774C45.0976 12.7774 46.1492 12.2065 46.3729 12.3765C46.5983 12.5416 46.3847 13.5185 46.227 13.3761ZM47.7834 17.3253L46.654 16.7226C46.654 16.7226 47.704 16.1564 47.9274 16.3263C48.1504 16.4901 47.9428 17.4651 47.7834 17.3253ZM48.1445 15.4558L47.0181 14.8542C47.0181 14.8542 48.0668 14.2925 48.2898 14.4526C48.5139 14.6206 48.3033 15.5983 48.1445 15.4558ZM48.5716 13.5428L47.4462 12.9437C47.4462 12.9437 48.4958 12.3781 48.7202 12.5416C48.9403 12.7076 48.7294 13.6839 48.5716 13.5428ZM49.9939 17.6076L48.8648 17.0017C48.8648 17.0017 49.9165 16.44 50.1395 16.6074C50.3652 16.7698 50.1543 17.7471 49.9939 17.6076ZM50.3931 15.7948L49.2647 15.1971C49.2647 15.1971 50.3173 14.6305 50.5387 14.7962C50.7644 14.9652 50.5466 15.9386 50.3931 15.7948ZM50.8241 13.943L49.6927 13.3463C49.6927 13.3463 50.745 12.7787 50.9697 12.9408C51.1921 13.1059 50.9776 14.0802 50.8241 13.943ZM52.5832 16.1858L51.4561 15.5924C51.4561 15.5924 52.5054 15.0235 52.7308 15.1866C52.9525 15.3543 52.7413 16.3293 52.5832 16.1858ZM21.424 32.356C22.244 32.3684 22.6918 32.6377 22.9273 33.2622L25.1597 40.1896L27.5063 47.6193H23.807C23.807 47.6193 22.7774 44.5413 22.6593 44.1817L20.1284 44.1826L17.0099 44.1836C16.9825 44.2566 16.7603 44.875 16.5547 45.4474L16.5528 45.4524L16.552 45.4548L16.5495 45.4616L16.5493 45.4623L16.5492 45.4625C16.3639 45.9784 16.1935 46.4525 16.1935 46.4501C16.1177 46.66 15.857 47.2757 15.3249 47.5178C15.1281 47.6062 14.909 47.6432 14.6735 47.6262H11.9402L17.5554 32.3596C17.5554 32.3596 21.3492 32.3537 21.424 32.356ZM17.9815 41.049L21.7881 41.0483C21.7861 41.0407 21.7212 40.8748 21.6159 40.6054L21.6158 40.6053C21.1996 39.5412 20.1518 36.8625 19.8508 35.9374C19.5434 36.7468 18.9458 38.3941 18.4756 39.6899L18.4755 39.6902L18.4752 39.691L18.4746 39.6928L18.4722 39.6993C18.2761 40.2399 18.1023 40.7188 17.9815 41.049ZM49.5469 32.2368H49.545C45.169 32.2427 41.9951 35.5225 41.9951 40.0317C41.9951 44.4499 45.2392 47.7831 49.5469 47.7831C53.8524 47.7831 57.2283 44.3805 57.2283 40.0317C57.2283 35.66 53.8524 32.2368 49.5469 32.2368ZM49.6565 44.3772C47.426 44.3772 45.678 42.4511 45.678 39.9905C45.678 37.5524 47.3883 35.7157 49.6539 35.7157C51.903 35.7157 53.5342 37.5121 53.5342 39.9905C53.5339 42.493 51.866 44.3772 49.6565 44.3772ZM66.9837 38.6206L67.1274 38.6625C70.3341 39.6176 71.7704 41.1428 71.6461 43.4803C71.3604 46.0566 68.8754 47.7869 65.4549 47.7869C64.4115 47.7869 63.7456 47.6902 63.3264 47.6139C62.2863 47.404 61.4056 47.0896 60.621 46.6556C60.0485 46.321 59.3889 45.8142 59.1929 45.6636C59.1608 45.639 59.1412 45.6239 59.1364 45.6207L58.9448 45.469L59.0557 45.2545C59.3375 44.7111 60.0424 43.4263 60.5491 43.237L60.8965 43.1623C61.0982 43.1453 61.3334 43.1862 61.5958 43.2838L61.6444 43.3048L61.667 43.3192C62.1413 43.6002 62.5904 43.8226 63.0243 43.9949C63.928 44.3096 64.7959 44.457 65.7566 44.457C67.0192 44.457 67.5748 43.9709 67.6273 43.6772C67.7441 42.7886 67.1156 42.2158 65.4713 41.6999C65.4713 41.6999 64.5673 41.4327 64.5719 41.4366L64.5572 41.4325C63.6895 41.1902 62.5007 40.8581 61.8484 40.4973C60.2798 39.6464 59.2423 38.7097 59.2787 36.8897C59.3322 35.0628 61.0175 32.3428 65.4319 32.3428L66.2772 32.3464C66.2772 32.3464 67.9904 32.4171 69.2001 32.8694C70.3895 33.3125 70.7165 33.5814 70.7703 33.6332L70.9077 33.759L70.8526 33.9342C70.6824 34.4808 70.2386 35.7788 69.7925 36.0237L69.4816 36.1413C69.2979 36.1819 69.0709 36.1747 68.8118 36.1223L68.7635 36.1082L68.7396 36.0994C67.6168 35.6491 66.7305 35.4729 65.5779 35.4729C65.5575 35.4729 63.4668 35.485 63.351 36.6093V36.6591C63.351 37.3368 64.1786 37.6892 65.344 38.1097L65.5572 38.1854C65.5608 38.1893 66.9877 38.6226 66.9837 38.6206ZM74.4404 32.3781C74.2984 32.3758 73.5522 32.3905 73.1232 32.7868C72.9257 32.968 72.8224 33.21 72.8224 33.4828L72.8201 35.8983C72.8201 35.8983 76.9468 35.895 77.4874 35.895V47.6319L81.3103 47.6286V35.895C81.8201 35.8943 84.3143 35.8943 84.3143 35.8943C84.4556 35.8943 85.2002 35.8783 85.6309 35.4839C85.8261 35.2989 85.9323 35.0624 85.9323 34.7857V32.3781H74.4404ZM4.56975 44.1768H8.86146C10.0945 44.1768 10.2273 44.8908 10.2273 45.2013L10.2201 47.6259H0.652633L0.646729 32.3682L2.90214 32.3731C3.13306 32.3682 3.75202 32.3662 4.16794 32.7559C4.42838 32.9957 4.55762 33.3386 4.55762 33.7706C4.55762 33.7706 4.56975 43.6138 4.56975 44.1768ZM36.2175 35.6214C37.1448 35.5598 37.9252 35.6214 38.6612 35.8224C39.0565 35.9541 39.4133 35.9803 39.7158 35.8952C39.7168 35.8945 40.0208 35.7599 40.0208 35.7599C40.4489 35.4966 40.7552 34.1554 40.8999 33.3824L40.933 33.2013L40.7772 33.0893C40.7382 33.0608 40.6165 32.976 39.231 32.6026C37.9691 32.263 36.846 32.2214 36.2923 32.2253L36.2313 32.226C33.065 32.226 28.2967 34.3129 28.1599 40.0592V40.092C28.2967 45.8402 33.0653 47.9265 36.2336 47.9265L36.2923 47.9288C36.846 47.9311 37.9671 47.8859 39.231 47.5469C40.6168 47.1768 40.7382 47.091 40.7785 47.0619L40.9333 46.9525L40.9002 46.7704C40.7556 45.9932 40.4492 44.6549 40.0212 44.3896V44.3877L39.7171 44.2541C39.4137 44.1715 39.0565 44.1984 38.6556 44.3327C37.9235 44.5292 37.1435 44.5927 36.2064 44.5311C33.8083 44.297 32.368 42.6672 32.2594 40.0625C32.3676 37.483 33.8083 35.8536 36.2175 35.6214ZM98.853 46.0866C98.853 47.2588 97.8496 47.6063 97.2592 47.6194L88.251 47.6315L88.249 32.3813H98.8474V34.3969C98.8474 34.6704 98.8343 35.1957 98.546 35.4842C98.133 35.8956 97.3707 35.895 97.2306 35.8927C97.2306 35.8927 92.6759 35.8989 92.1251 35.8989C92.1251 36.015 92.125 36.2028 92.1249 36.4226C92.1246 36.9975 92.1242 37.7911 92.1251 38.0929C92.6755 38.0929 97.6676 38.087 97.6676 38.087L97.6771 41.617H92.1156C92.1156 41.9805 92.1041 44.1749 92.1041 44.1749L98.8415 44.172L98.853 46.0866Z\" fill=\"#495677\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1khlbq0\",\"data-framer-name\":\"BOSS\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:89,layoutDependency:layoutDependency,layoutId:\"fKoI6blmM\",style:{opacity:.8},svg:'<svg width=\"89\" height=\"25\" viewBox=\"0 0 89 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.0589 12.5308C29.0589 8.99031 31.5649 6.04095 35.1054 6.04095C38.6459 6.04095 41.1519 8.99031 41.1519 12.5308C41.1519 16.0713 38.6459 19.0207 35.1054 19.0207C31.567 19.0207 29.0589 16.0713 29.0589 12.5308ZM22.7147 12.5308C22.7147 19.6118 28.3199 24.9215 35.1054 24.9215C41.8908 24.9215 47.496 19.6097 47.496 12.5308C47.496 5.44983 41.8908 0.140137 35.1054 0.140137C28.3199 0.140137 22.7147 5.45191 22.7147 12.5308ZM59.0015 19.1663C60.4772 19.1663 61.3618 18.4295 61.3618 17.5449C61.3618 16.5372 59.8302 15.8695 57.9303 15.0412C54.8268 13.6883 50.7403 11.9067 50.7403 7.51459C50.7403 3.38506 54.5764 0.140137 59.0015 0.140137C63.7221 0.140137 66.6715 2.50046 66.6715 2.50046L63.2788 7.07333C63.2788 7.07333 61.9508 5.89317 59.5905 5.89317C57.8213 5.89317 56.6411 6.62999 56.6411 7.51459C56.6411 8.37853 58.1431 9.00516 60.0474 9.7997C63.3459 11.1759 67.8516 13.0558 67.8516 17.5449C67.8516 21.97 63.7221 24.9194 59.0015 24.9194C53.1006 24.9194 50.1513 21.6745 50.1513 21.6745L53.6918 16.9538C53.6918 16.9538 55.7565 19.1663 59.0015 19.1663ZM16.2247 11.3507C17.257 10.0227 17.7004 8.7052 17.7004 7.22115C17.7004 3.63696 14.7947 0.7313 11.2105 0.7313H0V24.3325H12.2429C16.2351 24.3325 19.4717 21.0959 19.4717 17.1058C19.4696 14.6414 18.2894 12.5308 16.2247 11.3507ZM6.04653 5.89321H9.7348C10.8754 5.89321 11.7996 6.81736 11.7996 7.95797C11.7996 9.09859 10.8754 10.0227 9.7348 10.0227H6.04653V5.89321ZM10.915 19.0207H6.04653V14.5956H10.915C12.1368 14.5956 13.1275 15.5864 13.1275 16.8082C13.1275 18.0299 12.1368 19.0207 10.915 19.0207ZM79.6498 19.1663C81.1255 19.1663 82.0101 18.4295 82.0101 17.5449C82.0101 16.5372 80.4788 15.8695 78.579 15.0411C75.4759 13.6882 71.3899 11.9066 71.3886 7.51459C71.3886 3.38506 75.2247 0.140137 79.6498 0.140137C84.3704 0.140137 87.3198 2.50046 87.3198 2.50046L83.9271 7.07333C83.9271 7.07333 82.5992 5.89317 80.2388 5.89317C78.4696 5.89317 77.2895 6.62999 77.2895 7.51459C77.2895 8.37853 78.7914 9.00516 80.6957 9.7997C83.9942 11.1759 88.5 13.0558 88.5 17.5449C88.5 21.97 84.3704 24.9194 79.6498 24.9194C73.749 24.9194 70.7996 21.6745 70.7996 21.6745L74.3401 16.9538C74.3401 16.9538 76.4048 19.1663 79.6498 19.1663Z\" fill=\"#495677\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed8()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-okdrrv\",\"data-framer-name\":\"Warner\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:59,intrinsicWidth:141,layoutDependency:layoutDependency,layoutId:\"yrlXr5BVu\",style:{opacity:.8},svg:'<svg width=\"141\" height=\"59\" viewBox=\"0 0 141 59\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M79.2452 20.7227C80.1238 22.732 81.9441 23.2973 83.2008 23.2973C85.8997 23.2973 88.224 20.4724 87.0303 17.4585L85.6808 14.1893C84.8006 12.1817 82.9803 11.6163 81.7253 11.6163C79.0247 11.6163 76.7021 14.4413 77.8957 17.4552L79.2452 20.7227ZM61.1949 30.8272C62.0752 32.8364 63.8954 33.4018 65.1504 33.4018C67.8493 33.4018 70.1736 30.5768 68.98 27.5613L63.4561 14.1893C62.5775 12.1817 60.7572 11.6163 59.5006 11.6163C56.8016 11.6163 54.4774 14.4413 55.671 17.4552L61.1949 30.8272ZM72.3089 30.8272C73.1859 32.8364 75.0061 33.4018 76.2628 33.4018C78.9617 33.4018 81.286 30.5768 80.0923 27.5613L74.5685 14.1893C73.6898 12.1817 71.8679 11.6163 70.6129 11.6163C67.914 11.6163 65.5897 14.4413 66.7834 17.4552L72.3089 30.8272ZM50.3361 34.4545C53.7894 40.2303 59.5652 42.6806 70.6792 42.6806C81.7899 42.6806 87.5658 40.2303 91.019 34.4545C92.9653 31.1289 93.6566 25.1707 93.6566 21.3395C93.6566 17.5116 92.9653 11.5533 91.019 8.2261C87.5658 2.45026 81.7899 0 70.6792 0C59.5652 0 53.7894 2.45026 50.3361 8.2261C48.3899 11.5533 47.7002 17.5116 47.7002 21.3395C47.7002 25.1707 48.3899 31.1289 50.3361 34.4545ZM78.2149 51.5799C78.8631 51.5799 79.5627 51.7722 80.128 51.996C80.2241 52.0342 80.3584 52.0491 80.4463 52.0491C80.806 52.0491 80.9983 51.7739 80.9983 51.4606C80.9983 51.2484 80.8624 51.0312 80.6303 50.9334C79.9125 50.6317 78.9327 50.4195 78.185 50.4195C76.7062 50.4195 75.1197 50.9036 75.1197 52.5266C75.1197 53.9407 76.1658 54.385 77.2135 54.763C77.5643 54.8887 77.9135 54.9912 78.2414 55.0873C79.2707 55.3893 80.0899 55.6296 80.0899 56.3363C80.0899 57.2248 78.9741 57.4254 78.1784 57.4254C77.4639 57.4254 76.7361 57.2912 75.9652 56.9099C75.9652 56.9099 75.7381 56.7921 75.5607 56.7921C75.2871 56.7921 75.0103 56.9877 75.0103 57.364C75.0103 57.5746 75.0766 57.7586 75.2905 57.8962C76.0746 58.4035 77.308 58.5975 78.185 58.5975C79.7599 58.5975 81.3564 58.0056 81.3564 56.2898C81.3564 54.8613 80.1965 54.4768 78.9228 54.0544L78.8946 54.0451C78.7658 54.0023 78.622 53.9585 78.4701 53.9122C77.5697 53.638 76.3863 53.2776 76.3863 52.5215C76.3863 51.7291 77.4423 51.5799 78.2149 51.5799ZM135.536 51.7208H138.127C138.956 51.7208 139.359 52.3375 139.359 52.941C139.359 53.5444 138.956 54.123 138.127 54.123H135.536V51.7208ZM135.536 55.2951H137.961C139.796 55.2951 140.637 54.1943 140.637 52.941C140.637 51.686 139.796 50.562 137.961 50.562H134.897C134.541 50.562 134.269 50.8339 134.269 51.1887V57.9111C134.269 58.2659 134.541 58.5378 134.897 58.5378C135.252 58.5378 135.536 58.2659 135.536 57.9111V55.2951ZM117.122 54.5026C117.122 52.9277 118.223 51.5799 119.869 51.5799C121.514 51.5799 122.603 52.9277 122.603 54.5026C122.603 56.0759 121.514 57.4254 119.869 57.4254C118.223 57.4254 117.122 56.0759 117.122 54.5026ZM115.857 54.5026C115.857 56.7274 117.596 58.5975 119.869 58.5975C122.14 58.5975 123.866 56.7274 123.866 54.5026C123.866 52.2779 122.14 50.4194 119.869 50.4194C117.596 50.4194 115.857 52.2779 115.857 54.5026ZM109.33 51.7208H111.958C112.654 51.7208 113.2 52.1701 113.2 52.8929C113.2 53.6157 112.644 54.0401 111.958 54.0401H109.33V51.7208ZM114.372 57.6508C113.082 55 113.036 54.9171 113.036 54.9171C113.957 54.6087 114.466 53.8163 114.466 52.8581C114.466 51.2716 113.271 50.562 111.792 50.562H108.691C108.347 50.562 108.064 50.8455 108.064 51.1887V57.9111C108.064 58.2543 108.347 58.5378 108.691 58.5378C109.034 58.5378 109.33 58.2659 109.33 57.9111V55.1293H111.779L113.26 58.183C113.366 58.4085 113.578 58.5378 113.815 58.5378C113.911 58.5378 114.004 58.5261 114.088 58.4781C114.312 58.372 114.432 58.1482 114.432 57.9111C114.432 57.8166 114.418 57.7337 114.372 57.6508ZM102.626 58.5975C103.833 58.5975 105.088 58.1349 105.856 57.1419C105.963 57.0126 105.998 56.9164 105.998 56.739V54.68C105.998 54.3253 105.75 54.0401 105.36 54.0401H102.981C102.673 54.0401 102.401 54.2888 102.401 54.6087C102.401 54.9287 102.673 55.1774 102.981 55.1774H104.733V56.5849C104.223 57.1535 103.419 57.437 102.626 57.437C100.968 57.437 99.8809 56.0759 99.8809 54.5143C99.8809 52.9526 100.968 51.5799 102.626 51.5799C103.631 51.5799 104.165 51.9695 104.626 52.3243C104.733 52.4072 104.863 52.4436 104.994 52.4436C105.158 52.4436 105.312 52.3723 105.418 52.2298C105.503 52.1237 105.537 52.0176 105.537 51.8982C105.537 51.7324 105.466 51.555 105.324 51.4257C104.626 50.751 103.631 50.4194 102.626 50.4194C100.353 50.4194 98.6143 52.2895 98.6143 54.5143C98.6143 56.739 100.353 58.5975 102.626 58.5975ZM90.7115 58.5975C91.9068 58.5975 93.1021 58.0056 93.8232 57.0822C93.9177 56.9645 93.9658 56.8103 93.9658 56.6678C93.9658 56.5136 93.9061 56.3727 93.7884 56.2649C93.6823 56.1588 93.5281 56.1124 93.3856 56.1124C93.2314 56.1124 93.0905 56.172 92.9844 56.2898C92.5583 56.7987 91.93 57.437 90.7115 57.437C89.0537 57.437 87.9894 56.0643 87.9894 54.5026C87.9894 52.941 89.0537 51.5915 90.7115 51.5915C91.5155 51.5915 92.0494 51.8402 92.6163 52.3243C92.734 52.4187 92.8766 52.4668 93.0076 52.4668C93.1618 52.4668 93.3159 52.3956 93.422 52.2662C93.5165 52.1585 93.563 52.0175 93.563 51.8866C93.563 51.7324 93.4933 51.5798 93.3624 51.4489C92.6512 50.7626 91.6929 50.4194 90.7115 50.4194C88.4386 50.4194 86.7112 52.2779 86.7112 54.5026C86.7112 56.7274 88.4386 58.5975 90.7115 58.5975ZM83.4552 57.8995C83.4552 58.2543 83.7387 58.5378 84.0951 58.5378C84.4499 58.5378 84.7218 58.2543 84.7218 57.8995V51.0942C84.7218 50.7394 84.4499 50.4559 84.0951 50.4559C83.7387 50.4559 83.4552 50.7394 83.4552 51.0942V57.8995ZM125.521 55.2603C125.521 57.2845 126.815 58.5975 128.815 58.5975C130.816 58.5975 132.106 57.2845 132.106 55.2603V51.0942C132.106 50.7394 131.82 50.4559 131.466 50.4559C131.111 50.4559 130.827 50.7394 130.827 51.0942V55.4211C130.827 56.6164 130.116 57.4337 128.815 57.4337C127.513 57.4337 126.791 56.6164 126.791 55.4211V51.0942C126.791 50.7394 126.507 50.4559 126.152 50.4559C125.796 50.4559 125.521 50.7394 125.521 51.0942V55.2603ZM66.562 55.2603C66.562 57.2845 67.8518 58.5975 69.8512 58.5975C71.8488 58.5975 73.1403 57.2845 73.1403 55.2603V51.0942C73.1403 50.7394 72.8551 50.4559 72.502 50.4559C72.1456 50.4559 71.8621 50.7394 71.8621 51.0942V55.4211C71.8621 56.6164 71.1525 57.4337 69.8512 57.4337C68.5498 57.4337 67.8286 56.6164 67.8286 55.4211V51.0942C67.8286 50.7394 67.5435 50.4559 67.1887 50.4559C66.8339 50.4559 66.562 50.7394 66.562 51.0942V55.2603ZM63.2232 57.9459C63.2232 58.2775 63.4835 58.5378 63.815 58.5378C64.1466 58.5378 64.4185 58.2775 64.4185 57.9459V51.0577C64.4185 50.7278 64.1466 50.4559 63.815 50.4559C63.5664 50.4559 63.3641 50.6084 63.2713 50.8223L60.5127 56.6562L57.7308 50.8339C57.6247 50.62 57.4357 50.4559 57.1755 50.4559C56.8439 50.4559 56.5836 50.7145 56.5836 51.0461V57.9343C56.5836 58.2659 56.8439 58.5378 57.1755 58.5378C57.507 58.5378 57.7789 58.2659 57.7789 57.9343V53.5792L59.9921 58.2062C60.0982 58.4317 60.264 58.5378 60.5127 58.5378C60.7381 58.5378 60.9271 58.4317 61.0216 58.2195C61.0216 58.2195 61.8024 56.444 63.2232 53.5676V57.9459ZM45.7547 51.7208H48.3807C49.0803 51.7208 49.6241 52.1701 49.6241 52.8929C49.6241 53.6157 49.0687 54.0401 48.3807 54.0401H45.7547V51.7208ZM50.7962 57.6508C49.5064 55 49.4583 54.9171 49.4583 54.9171C50.3817 54.6087 50.8907 53.8163 50.8907 52.8581C50.8907 51.2716 49.6954 50.562 48.215 50.562H45.1148C44.7717 50.562 44.4882 50.8455 44.4882 51.1887V57.9111C44.4882 58.2543 44.7717 58.5378 45.1148 58.5378C45.458 58.5378 45.7547 58.2659 45.7547 57.9111V55.1293H48.205L49.6821 58.183C49.7899 58.4085 50.0037 58.5378 50.2392 58.5378C50.3336 58.5378 50.4281 58.5261 50.5127 58.4781C50.7365 58.372 50.8559 58.1482 50.8559 57.9111C50.8559 57.8166 50.8426 57.7337 50.7962 57.6508ZM37.3745 58.4433H41.9418C42.2733 58.4433 42.5336 58.183 42.5336 57.8514C42.5336 57.5199 42.2733 57.2596 41.9418 57.2596H38.0011V55.0116H40.1082C40.4398 55.0116 40.7001 54.7513 40.7001 54.4198C40.7001 54.0882 40.4398 53.8279 40.1082 53.8279H38.0011V51.744H41.7644C42.0959 51.744 42.3695 51.4722 42.3695 51.1406C42.3695 50.8107 42.0959 50.562 41.7644 50.562H37.3745C37.0197 50.562 36.7346 50.8339 36.7346 51.1887V57.805C36.7346 58.1598 37.0197 58.4433 37.3745 58.4433ZM33.1719 58.3139C33.2913 58.4664 33.4322 58.5377 33.6344 58.5377C33.966 58.5377 34.2379 58.2774 34.2379 57.9459V51.0576C34.2379 50.7277 33.966 50.4558 33.6344 50.4558C33.3029 50.4558 33.0426 50.7277 33.0426 51.0576V56.2897C31.2206 53.9339 28.8765 50.6796 28.8765 50.6796C28.782 50.5503 28.6046 50.4558 28.4272 50.4558C28.0476 50.4558 27.8105 50.7509 27.8105 51.0576V57.9459C27.8105 58.2774 28.0724 58.5377 28.404 58.5377C28.7339 58.5377 29.0058 58.2774 29.0058 57.9459V52.7038L33.1719 58.3139ZM20.4233 51.7208H23.0509C23.7505 51.7208 24.2943 52.17 24.2943 52.8928C24.2943 53.6156 23.7372 54.04 23.0509 54.04H20.4233V51.7208ZM25.4647 57.6508C24.1749 54.9999 24.1285 54.917 24.1285 54.917C25.0502 54.6087 25.5608 53.8162 25.5608 52.858C25.5608 51.2715 24.3639 50.5619 22.8851 50.5619H19.785C19.4418 50.5619 19.1583 50.8454 19.1583 51.1886V57.9111C19.1583 58.2542 19.4418 58.5377 19.785 58.5377C20.1282 58.5377 20.4233 58.2658 20.4233 57.9111V55.1292H22.8735L24.3523 58.1829C24.4601 58.4084 24.6723 58.5377 24.9093 58.5377C25.0038 58.5377 25.0983 58.526 25.1812 58.478C25.4067 58.3719 25.5244 58.1481 25.5244 57.9111C25.5244 57.8166 25.5128 57.7337 25.4647 57.6508ZM12.3646 55.426L13.7025 52.432L15.0387 55.426H12.3646ZM16.8142 58.5377C16.8971 58.5377 16.98 58.5145 17.0629 58.478C17.2883 58.3852 17.406 58.1597 17.406 57.9343C17.406 57.8514 17.3944 57.7685 17.3596 57.6856L14.2462 50.8106C14.1517 50.5968 13.9395 50.4558 13.7025 50.4558C13.4654 50.4558 13.2532 50.6084 13.157 50.8106L10.0453 57.6856C10.0105 57.7685 9.99724 57.863 9.99724 57.9459C9.99724 58.1713 10.1282 58.3969 10.3404 58.4913C10.4233 58.5258 10.4946 58.5377 10.5775 58.5377C10.8029 58.5377 11.04 58.4084 11.1345 58.1829L11.8805 56.5036H15.5244L16.2704 58.1829C16.3649 58.4084 16.5904 58.5377 16.8142 58.5377ZM7.31323 58.1117L9.50321 51.2483C9.528 51.1887 9.53968 51.1288 9.53968 51.0709C9.53968 50.8106 9.37389 50.5735 9.11362 50.4907C9.05394 50.4677 8.99425 50.4558 8.93623 50.4558C8.6743 50.4558 8.43888 50.6199 8.35599 50.8818L6.73465 55.9581L5.3139 50.8686C5.26748 50.6912 5.10004 50.4558 4.77013 50.4558C4.43857 50.4558 4.27278 50.6912 4.22471 50.8686L2.79235 55.9581L1.171 50.8818C1.08811 50.6199 0.852702 50.4558 0.592424 50.4558C0.532743 50.4558 0.473061 50.4674 0.415038 50.4907C0.15476 50.5735 -0.0109556 50.8222 0.00058285 51.0825C0.00058285 51.1317 0.00896555 51.1737 0.0185459 51.2217C0.0202699 51.2303 0.0220327 51.2392 0.0237923 51.2483L2.22538 58.1117C2.30827 58.3719 2.55694 58.5377 2.81722 58.5377C3.06589 58.5377 3.2897 58.3719 3.36098 58.1233L4.77013 53.1166L6.16601 58.1233C6.2373 58.3719 6.47437 58.5377 6.72138 58.5377C6.98332 58.5377 7.23199 58.3719 7.31323 58.1117Z\" fill=\"#495677\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed9()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-r0lozq\",\"data-framer-name\":\"Jason Wu\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:116,layoutDependency:layoutDependency,layoutId:\"qyqauLfBL\",style:{opacity:.8},svg:'<svg width=\"116\" height=\"26\" viewBox=\"0 0 116 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M57.0876 14.9086V14.9084V14.9082V14.9081V14.9079C57.0867 14.2693 57.0857 13.6307 57.0857 12.9923C57.0857 12.3539 57.0867 11.7154 57.0876 11.0768V11.0766V11.0764V11.0763V11.0761V11.0746C57.0896 9.69091 57.0916 8.30696 57.0842 6.92374C57.0657 3.39423 54.4491 0.650594 51.0149 0.544478C47.6872 0.441438 44.7976 3.02052 44.6911 6.47774C44.5584 10.8023 44.56 15.1362 44.688 19.4593C44.7945 22.9995 47.6486 25.5002 51.1461 25.4017C54.4491 25.3095 57.0641 22.5228 57.0842 19.0609C57.0916 17.6777 57.0896 16.2938 57.0876 14.9101V14.9086ZM48.3551 14.7868C48.3559 14.1954 48.3567 13.6039 48.3567 13.0123C48.3567 12.3962 48.356 11.7802 48.3552 11.1643V11.1641V11.164V11.1638V11.1636C48.3536 9.80884 48.3519 8.45431 48.3583 7.09906C48.3645 5.41658 49.3703 4.29852 50.8576 4.29237C52.3463 4.28622 53.38 5.41043 53.3831 7.07599C53.3908 11.0177 53.3908 14.9609 53.3831 18.9025C53.38 20.5404 52.3047 21.7031 50.8437 21.6861C49.4074 21.6692 48.3706 20.5312 48.3598 18.9256C48.3512 17.5458 48.3531 16.1668 48.3551 14.7875V14.7873V14.7872V14.787V14.7868ZM60.0308 0.926922C60.3543 0.926915 60.6731 0.924752 60.9883 0.922614C61.8916 0.916486 62.7655 0.910557 63.6378 0.956142C63.8538 0.966908 64.1485 1.31909 64.2426 1.57284C65.4796 4.93795 66.7009 8.30949 67.9222 11.6811L67.9226 11.6822L67.923 11.6834C68.281 12.6717 68.639 13.66 68.9974 14.6482C69.2288 15.2879 69.4726 15.9231 69.849 16.5321V0.993052H73.1645V25.0398C72.8714 25.0398 72.5786 25.0411 72.2859 25.0424C71.3303 25.0465 70.3763 25.0506 69.4232 25.0106C69.2628 25.0045 69.0638 24.6261 68.9758 24.3878C67.5466 20.4705 66.1271 16.55 64.7074 12.629L63.8631 10.2974C63.7427 9.96523 63.6132 9.63612 63.3277 9.31931V25.0075H60.0308V0.926922ZM80.3474 0.961003H80.3476C81.0021 5.1531 81.6529 9.31872 82.3025 13.477L82.309 13.5186C82.9097 17.3639 83.5094 21.203 84.1102 25.0509C84.4297 25.0509 84.74 25.0469 85.0438 25.043L85.0441 25.043C85.7392 25.034 86.3999 25.0256 87.0569 25.0662C87.6956 25.1062 87.9456 24.9109 88.0551 24.2665C88.4386 22.0048 88.8534 19.7485 89.2682 17.4921C89.3907 16.8257 89.5132 16.1593 89.6349 15.4927C89.7921 14.6312 89.9524 13.7696 90.1126 12.9081L90.116 12.8898L90.1161 12.8894L90.1161 12.889L90.1162 12.8886L90.1163 12.8882C90.2111 12.3784 90.3059 11.8686 90.4001 11.3588C90.593 11.6649 90.6593 11.9632 90.7133 12.2631C90.8762 13.1617 91.0395 14.0602 91.2028 14.9586C91.7724 18.0932 92.342 21.2272 92.8948 24.3649C92.9889 24.894 93.1848 25.1016 93.7433 25.0647C94.5116 25.0139 95.2861 25.0247 96.0559 25.0616C96.6082 25.0878 96.852 24.9586 96.9445 24.3403C97.5295 20.4608 98.1405 16.5847 98.7515 12.7089L98.7518 12.7069C98.9545 11.4209 99.1572 10.135 99.359 8.84895C99.7415 6.41288 100.123 3.97546 100.511 1.49008L100.592 0.976382H97.0263C96.5844 3.86436 96.1421 6.75089 95.6998 9.63706L95.687 9.72077L95.6799 9.76704C95.3382 11.9971 94.9965 14.2269 94.6551 16.457C94.5949 16.4508 94.5347 16.4462 94.4746 16.4416L91.9197 0.971768H89.0147C88.1554 6.1653 87.3022 11.3188 86.4491 16.4724C86.4198 16.4693 86.3906 16.4659 86.3613 16.4624L86.3611 16.4624L86.3609 16.4624L86.3607 16.4623C86.3315 16.4589 86.3024 16.4554 86.2732 16.4524L86.1908 15.9132C85.4299 10.9363 84.6689 5.95867 83.905 0.961003H80.3476L80.3474 0.959465V0.961003ZM102.625 0.965812H106.328V1.90086V18.5072C106.328 18.5738 106.327 18.6405 106.327 18.707C106.325 18.8972 106.322 19.0871 106.337 19.2762C106.448 20.6557 107.55 21.6984 108.869 21.6846C110.165 21.6707 111.231 20.6557 111.354 19.3085C111.372 19.1111 111.371 18.911 111.369 18.7109C111.369 18.6538 111.368 18.5966 111.368 18.5395V1.93316V0.976578H115.097V1.83319C115.097 3.73815 115.097 5.64311 115.098 7.54807C115.098 11.358 115.098 15.1679 115.097 18.9778C115.096 22.5427 112.342 25.3832 108.886 25.394C105.39 25.4048 102.636 22.6319 102.627 19.047C102.616 14.944 102.618 10.8409 102.62 6.73788C102.621 5.04916 102.622 3.36043 102.622 1.67171V0.965812H102.625ZM33.1743 16.3691H29.4701L29.4685 16.366C29.4685 16.6938 29.4676 17.0116 29.4666 17.3228V17.3232C29.4647 17.9769 29.4628 18.6009 29.4701 19.225C29.5086 22.2577 31.7858 24.8445 34.8482 25.3428C37.8057 25.8242 40.8418 24.1032 41.6688 21.1858C42.7009 17.544 42.0174 15.2972 39.5444 13.3009C39.0157 12.8737 38.4644 12.4743 37.9132 12.0748L37.9132 12.0748L37.913 12.0746C37.6745 11.9018 37.436 11.729 37.1994 11.5539C36.9642 11.3799 36.7274 11.2081 36.4906 11.0362C35.9382 10.6352 35.3857 10.2342 34.8543 9.80681C34.4594 9.49 34.0907 9.11321 33.7945 8.70258C33.0323 7.64911 33.1326 6.07122 33.9858 5.13617C34.6692 4.3872 35.5255 4.09961 36.4989 4.38259C37.4493 4.65941 38.0325 5.35301 38.1281 6.32651C38.1858 6.91321 38.1717 7.50655 38.1576 8.10193V8.102V8.10224V8.10248C38.1514 8.36684 38.1451 8.6316 38.1451 8.89636H41.803C41.803 8.55391 41.8148 8.21347 41.8266 7.87555V7.87551V7.87547V7.87543V7.8754C41.8518 7.14955 41.8766 6.43529 41.7829 5.73749C41.2476 1.72508 37.0034 -0.538727 33.29 1.07608C29.1415 2.88159 28.6601 8.75949 30.7907 11.1725C31.4171 11.8799 32.0851 12.5674 32.8179 13.161C33.3919 13.626 33.9926 14.0581 34.5933 14.4902L34.5934 14.4902C35.139 14.8827 35.6847 15.2752 36.2104 15.6924C36.8461 16.1968 37.4771 16.7536 37.9538 17.401C38.6388 18.333 38.4953 19.8325 37.7841 20.7137C37.0821 21.5841 35.9867 21.8933 34.9454 21.518C33.8053 21.1074 33.1789 20.16 33.1743 18.8313C33.1722 18.2932 33.1729 17.7551 33.1736 17.208C33.1739 16.9311 33.1743 16.6518 33.1743 16.3691ZM23.5858 19.7267H18.3944C18.3192 20.1506 18.2415 20.574 18.1638 20.9971L18.1638 20.9972L18.1638 20.9974C17.966 22.0754 17.7684 23.1521 17.6122 24.2343C17.5212 24.8618 17.316 25.1155 16.6464 25.0678C16.0327 25.0244 15.4153 25.0335 14.7429 25.0434H14.7428C14.4383 25.0478 14.1226 25.0525 13.7908 25.0525C15.3197 16.9677 16.8316 8.97052 18.345 0.958H23.4115C24.5193 6.22804 25.6251 11.4907 26.7386 16.7901L28.4718 25.0386C28.1817 25.0386 27.897 25.0399 27.6166 25.0411C26.6991 25.0452 25.8262 25.0491 24.9543 25.0079C24.817 25.0017 24.6395 24.5988 24.584 24.3558C24.3184 23.1869 24.0701 22.0135 23.8168 20.8159C23.7405 20.4552 23.6637 20.0923 23.5858 19.7267ZM23.0675 16.2802C22.6029 14.049 22.1429 11.8389 21.6848 9.63742L20.8011 5.3918L20.6175 5.40103C20.2449 7.60242 19.8717 9.80324 19.4966 12.0157L19.4953 12.0234C19.2558 13.436 19.0154 14.8534 18.7739 16.2787H23.0659L23.0675 16.2802ZM12.3291 1.2304C12.3233 1.15204 12.3175 1.07195 12.3128 0.98925H12.3097H8.64562V1.96275C8.64562 3.37801 8.64533 4.79327 8.64504 6.20854C8.64417 10.4543 8.6433 14.7001 8.65025 18.9459C8.65179 20.0793 8.21827 20.9437 7.18461 21.4389C5.54619 22.2247 3.73035 21.0713 3.64241 19.1812C3.61163 18.5367 3.61955 17.8908 3.6275 17.2439C3.6311 16.9507 3.6347 16.6573 3.6347 16.3638H0.077066C0.077066 16.8113 0.0570237 17.2577 0.0371264 17.7009C-0.00616036 18.6651 -0.0487611 19.614 0.117178 20.5253C0.688004 23.6519 3.6131 25.6804 6.81281 25.3821C9.86132 25.0991 12.3328 22.4124 12.3452 19.2796C12.3632 14.9992 12.359 10.718 12.3549 6.43712C12.3533 4.85178 12.3518 3.26649 12.3514 1.68131C12.3514 1.53326 12.3405 1.38521 12.3291 1.2304Z\" fill=\"#495677\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed10()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1f2oav2\",\"data-framer-name\":\"Jean Paul Gaultier\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:110,layoutDependency:layoutDependency,layoutId:\"DDmFTuAgl\",style:{opacity:.8},svg:'<svg width=\"110\" height=\"44\" viewBox=\"0 0 110 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M62.6907 12.6457C61.4303 12.7005 59.8412 11.7506 59.8412 9.35778L59.8594 4.79128C60.0604 3.5492 61.0467 2.56283 62.3071 2.4167C64.4625 2.4167 65.0287 4.3529 65.1931 6.16123C65.5402 9.35778 64.9009 12.6457 62.6907 12.6457ZM57.7354 2.87743C57.8222 2.87533 57.904 2.87335 57.978 2.87335V2.89162H58.0328V17.2304C57.9173 17.2304 57.7871 17.2223 57.6499 17.2138C57.0462 17.1762 56.3083 17.1304 56.0973 17.73L55.1102 17.8692L55.7496 23.1481L55.914 23.4403C56.0783 23.7143 56.2427 23.7143 56.4802 23.7143C56.7359 23.6595 56.9551 23.4951 57.0464 23.2577C57.083 23.002 57.083 22.728 57.0464 22.4723C57.0282 21.7964 57.1012 21.1206 57.2839 20.4813C57.3462 19.9052 57.5677 19.369 57.9258 18.9292H59.2276L60.8275 31.5504C60.8458 31.8427 60.8458 32.1167 60.8275 32.4089C60.7727 32.5916 60.5352 32.756 60.2065 32.9204C59.9507 33.03 59.8046 33.3222 59.8777 33.5962C59.9325 33.9981 60.2065 34.1625 60.7179 34.1625L66.3804 33.2126C66.5265 33.1944 66.6544 33.1396 66.7822 33.0483C66.9649 32.8839 67.0745 32.6464 67.0562 32.4089C67.0014 32.135 66.7639 31.9158 66.49 31.8975C66.2525 31.8792 66.015 31.7879 65.8506 31.6052C65.7411 31.4956 65.6315 31.2765 65.6315 30.765L63.8234 16.5018L63.951 16.481L63.8231 16.4993L63.8234 16.5018L59.9325 17.1359V13.7599C61.4486 14.8376 63.4578 14.8741 64.9922 13.8329C66.5813 12.9196 67.5494 10.1432 67.0928 5.48539C66.9649 3.85972 66.1064 2.36191 64.7547 1.44861C63.5674 0.736236 62.1062 0.663171 60.8641 1.28421C60.7968 1.30663 60.6501 1.44216 60.4851 1.5945C60.2469 1.81454 59.9707 2.06965 59.8412 2.06965C59.7237 2.06965 59.5853 1.79163 59.4568 1.53356C59.3455 1.31007 59.2416 1.10155 59.1653 1.10155H56.7177C56.3158 1.10155 55.987 1.33901 55.987 1.96006C55.987 2.91965 57.0298 2.89447 57.7354 2.87743ZM46.9088 17.9793C46.9088 18.6004 47.8221 18.8378 48.3884 18.8378V18.8561H49.476L43.8584 19.7506C43.4565 19.7871 43.146 20.1342 43.146 20.5361C43.2008 20.81 43.42 21.0292 43.7123 21.0475C43.968 21.084 44.2055 21.1754 44.4064 21.3215L44.4246 21.358C44.4528 21.4237 44.4665 21.5135 44.488 21.6546C44.5084 21.7882 44.5357 21.9678 44.589 22.2165L46.0503 33.9616C46.1234 34.2355 46.1599 34.5278 46.1234 34.8018C46.0686 34.9845 45.8494 35.1123 45.5571 35.2767C45.2649 35.368 45.1005 35.6603 45.1553 35.9525C45.1918 36.2083 45.3745 36.4275 45.6302 36.5188H46.0138L51.3475 35.6603L49.5391 21.3946C49.4661 21.1206 49.4661 20.81 49.5391 20.5361C49.5391 20.3534 49.7583 20.189 50.0506 20.0246C50.3246 19.915 50.489 19.641 50.4524 19.3488C50.4193 19.1166 50.2656 18.9296 50.0462 18.8561H51.4205C52.1512 18.8561 52.6078 18.6186 52.6078 17.9428C52.6078 17.0295 51.7128 17.0295 50.7447 17.0295V10.0519C50.7447 8.95593 50.5803 7.87824 50.2333 6.85534C49.667 5.04701 47.8404 5.04701 46.5435 5.04701C45.7764 5.06527 45.0092 5.2662 44.3333 5.61325C44.0135 5.7826 43.8438 5.91317 43.6921 6.02994C43.5492 6.13989 43.4223 6.2376 43.2008 6.34389C42.9817 5.72285 42.8721 5.43059 42.3606 5.43059C42.0428 5.43059 41.7403 5.42002 41.4578 5.41014C40.1653 5.36495 39.2919 5.33441 39.2919 6.39869C39.3581 7.25902 40.1436 7.25017 40.9697 7.24087C41.0557 7.2399 41.1421 7.23893 41.2281 7.23893V17.066C40.4427 17.0112 39.4198 17.3035 39.4198 18.0889C39.4198 18.8744 40.4609 18.8744 40.7897 18.8744H44.6804C45.2284 18.8744 45.5206 18.5821 45.5206 17.9063C45.4745 17 44.3822 17.0625 43.6339 17.1053C43.4924 17.1134 43.3632 17.1208 43.2556 17.1208L43.3287 10.0702L43.3264 10.045C43.309 9.85392 43.2929 9.67817 43.3104 9.48565C43.4018 7.96957 44.7169 6.80054 46.233 6.89187C47.6395 6.89187 48.2057 7.47638 48.498 8.26182C48.7997 9.10951 48.7624 12.4322 48.7327 15.0741C48.7247 15.791 48.7172 16.4577 48.7172 17.0112C47.4203 17.0112 46.9088 17.0112 46.9088 17.9793ZM31.4124 17.0115C31.3964 17.0115 31.3805 17.0115 31.3645 17.0112H31.4193C31.417 17.0113 31.4147 17.0114 31.4124 17.0115ZM33.9583 14.9106C33.7238 16.137 32.6525 17.0072 31.4124 17.0115C30.5008 17.0449 29.4828 16.4774 29.3735 14.8376C29.1908 12.1342 32.4239 12.0611 33.9583 12.1342V14.9106ZM27.4373 14.7097C27.4373 19.6781 32.3691 19.6233 34.4697 17.3035V17.2487C34.8168 18.1437 35.6935 18.6917 36.6251 18.6186C37.1183 18.6186 37.6297 18.4725 38.0316 18.162C38.8901 17.4313 39.0545 15.1664 38.8901 13.7964C38.8718 13.3215 38.5065 12.9379 38.0316 12.9379C37.7028 12.9379 37.4105 12.9927 37.1913 13.3398C37.0727 13.5276 37.0825 13.8278 37.0991 14.336C37.1131 14.7667 37.132 15.3468 37.0817 16.1345C37.0269 16.445 36.7347 16.6642 36.4242 16.6094C36.1136 16.5546 35.8944 16.2623 35.9492 15.9518C35.9364 15.2939 35.9416 14.5751 35.947 13.8249C35.9647 11.3678 35.9847 8.57511 35.383 6.49002C34.9263 4.82782 33.0998 4.71822 31.9125 4.71822C30.2685 4.75475 27.9487 5.61325 27.9487 8.0061C27.9487 8.68194 28.515 9.81443 29.136 9.81443C30.6856 9.81443 30.4911 9.15613 30.2663 8.39519C30.1625 8.04386 30.0522 7.67066 30.1041 7.33026C30.2685 6.25256 31.2914 6.25256 31.9855 6.25256C33.8487 6.25256 33.8487 7.71384 33.8487 9.26645C33.9217 9.81443 33.4651 10.2893 32.5518 10.4537C29.3004 10.9652 27.4373 11.5862 27.4373 14.7097ZM70.2036 15.4549L74.7645 14.7217V12.1342C73.1754 12.0611 69.9971 12.1342 70.1067 14.8376C70.1217 15.0633 70.155 15.2686 70.2036 15.4549ZM70.8364 18.7034C69.4151 18.3357 68.2618 17.1079 68.2618 14.7097C68.2618 11.5862 70.0701 10.9652 73.3763 10.4537C74.2896 10.2893 74.6732 9.81443 74.6732 9.26645C74.6732 7.71384 74.5636 6.25256 72.81 6.25256C72.1159 6.25256 71.0382 6.25256 70.8738 7.33026C70.821 7.67654 70.9436 8.05676 71.0585 8.41337C71.3013 9.16659 71.5101 9.81443 69.9605 9.81443C69.2847 9.81443 68.6637 8.68194 68.6637 8.0061C68.6637 5.61325 70.9834 4.75475 72.6822 4.71822C73.8695 4.71822 75.6961 4.82782 76.1527 6.49002C76.7205 8.60507 76.7147 11.4482 76.7096 13.9306C76.7081 14.6426 76.7067 15.3249 76.719 15.9518C76.6642 16.2623 76.8834 16.5546 77.1939 16.6094C77.5044 16.6642 77.7967 16.445 77.8514 16.1345C77.9034 15.321 77.8692 14.7289 77.8441 14.2942C77.8162 13.8113 77.7996 13.5224 77.9245 13.3398C78.162 13.011 78.4908 12.9379 78.8378 12.9379C79.2945 12.9744 79.6598 13.3398 79.678 13.7964C79.6882 13.8809 79.6971 13.9688 79.7046 14.0595C79.8064 13.9921 79.9379 13.9398 80.0981 13.9055L82.605 13.5119C82.5681 12.4729 82.5983 11.3841 82.6267 10.3605C82.6497 9.53054 82.6715 8.74352 82.6554 8.0609C82.6554 7.07503 82.35 7.03934 81.919 6.98899C81.9029 6.9871 81.8865 6.98519 81.87 6.9832C81.4133 6.9284 80.7923 6.81881 80.7923 6.30736C80.7249 5.56588 81.4504 5.57066 82.2373 5.57585C82.3033 5.57628 82.3698 5.57672 82.4362 5.57672C83.1303 5.52192 83.8427 5.52192 84.5368 5.57672C84.6647 5.74112 84.7377 5.94204 84.756 6.14297V13.1742L85.4501 13.0653L85.9895 17.2527C86.2559 17.3405 86.5502 17.3765 86.8566 17.3765C87.9684 17.1681 88.981 16.5797 89.706 15.7055C88.9665 14.7479 87.816 14.1566 86.5643 14.143L86.3999 12.8461L89.8157 12.3001V8.40795C89.8157 7.76864 89.8157 7.11106 89.5234 6.85534C89.4234 6.77405 89.1799 6.76982 88.9007 6.76498C88.3644 6.75568 87.6963 6.74409 87.6603 6.1795C87.6603 5.61325 87.8247 5.33926 88.5005 5.33926H91.0943C91.2952 5.33926 91.4596 5.48539 91.4961 5.66805C91.624 5.88724 91.6788 6.14297 91.6605 6.39869V16.6642C91.7255 16.6642 91.8441 16.6442 91.9924 16.6192C92.5945 16.5176 93.6881 16.3333 93.6881 17.066C93.6881 18.1985 91.2404 18.7648 90.5828 18.7648C89.9942 18.7648 90.0057 17.9011 90.0146 17.2352C90.0156 17.1573 90.0166 17.082 90.0166 17.0112C89.8717 17.2195 89.7103 17.4119 89.535 17.5873C89.5375 17.6013 89.5397 17.6161 89.5416 17.6318L89.6512 18.198V18.2163L90.3271 23.0933V23.6413C90.3088 23.897 90.1262 24.1162 89.8704 24.1527C89.5782 24.1527 89.3042 23.9883 89.1398 23.4769C88.7379 22.454 88.1717 21.8329 87.4958 21.7599L87.3315 20.3534C87.9615 20.0469 88.3058 19.4229 88.4384 18.3779C87.7564 18.7197 86.9825 18.8786 86.192 18.8246L87.6054 29.7969L82.2718 30.7102H81.7969C81.5959 30.5823 81.4681 30.3814 81.4681 30.144C81.4315 29.87 81.5594 29.596 81.7969 29.4681C82.1987 29.3037 82.3631 29.1759 82.4179 29.0115C82.4362 28.7192 82.4362 28.4452 82.4179 28.153L80.8653 16.4079C80.8836 16.1157 80.8288 15.8234 80.7009 15.5677C80.5182 15.4398 80.299 15.3485 80.0799 15.2754C79.9329 15.2754 79.8151 15.228 79.7298 15.151C79.6908 16.3483 79.435 17.6427 78.8378 18.162C78.3994 18.4542 77.888 18.6186 77.3583 18.6186C76.7909 18.652 76.2439 18.4618 75.8245 18.1099L77.2304 28.9384C77.2486 29.2124 77.3034 29.4681 77.413 29.7238C77.5957 29.9065 77.8331 30.0161 78.0889 30.0526C78.3446 30.0526 78.582 30.2536 78.6003 30.5093C78.6551 30.7833 78.5455 31.0573 78.3081 31.2034L77.9245 31.3678L72.2437 32.2811H71.8419C71.5679 32.208 71.4583 31.9888 71.3852 31.7148C71.3487 31.4408 71.4948 31.1851 71.714 31.039C72.0428 30.8563 72.2803 30.6919 72.2803 30.5275V29.6873L70.8364 18.7034ZM20.9346 6.61788C22.5055 6.56308 23.5284 7.71384 23.5284 10.3076H18.1399C18.0851 7.91477 19.3637 6.67268 20.9346 6.61788ZM18.1219 12.265C18.1424 15.3926 19.4299 16.9564 20.8433 16.9564C22.2132 17.066 23.4005 16.0431 23.5101 14.6732V14.5453C23.5101 14.0887 23.9668 13.2484 24.533 13.2484C25.8299 13.2484 25.9943 15.349 24.6426 16.8834C23.8206 18.1255 22.3959 18.8561 20.8981 18.7648C19.382 18.8196 17.9755 18.0159 17.2083 16.719C16.3133 15.1116 15.8566 13.285 15.9114 11.4401C15.9114 7.69557 17.9024 4.75475 21.0259 4.75475C24.1494 4.75475 25.6838 8.22529 25.6838 10.6729C25.6838 11.4766 25.6838 12.0429 25.2819 12.0977C22.9073 12.3333 20.5146 12.3891 18.1219 12.265ZM14.1396 15.1664C14.1396 15.1603 14.1396 15.1542 14.1396 15.1481V15.1664H14.1396ZM10.7422 18.8378C13.0009 18.8378 14.1334 17.3664 14.1396 15.1664H14.0666V0.389182H11.1258C11.1146 0.389182 11.1035 0.389173 11.0924 0.389165C10.5923 0.388776 10.1029 0.388396 10.1029 1.17462C10.1029 1.97832 10.4499 2.08792 11.4728 2.08792C11.8016 2.08792 12.0208 2.54457 12.0939 3.16561L12.0208 14.5819C12.0208 16.445 11.9112 17.2487 10.6143 17.2487C10.5292 17.2487 10.4496 17.2494 10.3755 17.2502C9.55872 17.2579 9.39958 17.2595 9.701 16.171C9.9202 15.6048 9.51834 14.8741 8.62331 14.8741C7.72828 14.8741 7.32642 15.3308 7.32642 16.2441C7.32642 18.3264 9.09823 18.8378 10.7422 18.8378ZM97.2057 1.00793C95.8157 0.99775 94.2543 0.986314 94.2543 1.74086V1.7226H94.1265C94.2361 2.47151 94.4552 2.5811 95.4233 2.5811C95.9348 2.65416 96.2636 2.92815 96.2636 3.95105V11.2408L93.8341 11.6223C93.3227 11.7866 93.1583 12.0789 93.1583 12.4808C93.2131 12.773 93.4688 12.9922 93.7611 13.047V13.1201C94.0899 13.1749 94.2543 13.2297 94.3639 13.3393C94.3748 13.3743 94.3858 13.4091 94.3967 13.4436C94.4766 13.6975 94.5531 13.9405 94.6013 14.1978L94.9933 17.4504C94.9605 17.4499 94.9273 17.4496 94.8936 17.4496C94.7475 17.4496 94.5831 17.5409 94.51 17.6688C94.4004 17.7784 94.3274 17.9245 94.2726 18.0707V18.2351C94.3274 18.3812 94.4004 18.509 94.4918 18.6369C94.5648 18.783 94.7292 18.8561 94.8936 18.8561H95.1627L96.0078 25.8697C96.0991 26.1437 96.1539 26.436 96.1174 26.7282C95.9347 26.9291 95.7338 27.0935 95.4781 27.1849C95.2224 27.3127 95.0762 27.6233 95.1493 27.9155C95.1493 28.1895 95.3502 28.4087 95.6059 28.427L96.0078 28.5L101.743 27.5867C102.2 27.4223 102.437 27.1301 102.364 26.7282C102.346 26.4542 102.127 26.235 101.853 26.2168C101.615 26.162 101.378 26.0707 101.177 25.9245C101.086 25.6688 101.031 25.4131 100.994 25.1391L100.196 18.8034C100.274 18.7664 100.342 18.7109 100.392 18.6369C100.501 18.4908 100.556 18.3081 100.556 18.1255V18.0524C100.556 17.9428 100.52 17.8149 100.446 17.7236C100.352 17.5664 100.204 17.4633 100.024 17.4376L99.1861 10.782L98.2363 10.9311V1.97832C98.218 1.74086 98.1815 1.50341 98.1267 1.28421C98.0902 1.11982 97.9441 1.01022 97.7797 1.01022H97.6701C97.5192 1.01022 97.3635 1.00908 97.2057 1.00793ZM64.7364 16.3531L64.9008 17.65V17.6318H64.9373C65.4853 17.9971 65.9237 18.472 66.2342 19.0565C66.49 19.641 66.6909 20.2438 66.8553 20.8648C66.9114 20.9896 66.9484 21.0973 66.98 21.1895C67.041 21.3671 67.0821 21.4868 67.2023 21.559C67.3119 21.7599 67.5677 21.8512 67.7868 21.7599C68.006 21.7416 68.207 21.5955 68.2983 21.3763C68.2983 21.3398 68.3064 21.3032 68.3145 21.2667C68.3308 21.1936 68.347 21.1206 68.2983 21.0475L67.6225 15.86L64.7364 16.3531ZM93.1035 28.9384L92.5921 24.3902V24.445C92.4825 23.9883 92.3181 23.7509 91.9162 23.8239C91.7336 23.8057 91.5509 23.9335 91.5144 24.1162L91.35 24.6276C91.2221 25.5227 90.8751 26.3629 90.3271 27.0753C89.7974 27.6963 89.1215 28.153 88.3361 28.3722L88.4457 29.669L93.1035 28.9384ZM104.209 10.5994C103.552 10.435 102.894 10.3619 102.218 10.3802V10.435L100.227 10.6724H100.118L100.264 11.8232C100.702 11.9145 101.104 12.1337 101.396 12.4625C101.579 12.8643 101.689 13.3027 101.725 13.7594L102.072 16.481C102.182 16.9377 102.182 17.4126 102.072 17.851C101.963 18.2528 101.615 18.472 101.104 18.6364L101.268 20.0063C101.78 19.9333 102.273 20.2255 102.456 20.7004C102.638 21.1754 102.748 21.6685 102.784 22.18L103.022 23.7691C103.058 24.2806 103.168 24.7738 103.351 25.2487C103.479 25.7601 103.771 26.1985 104.154 26.5456C104.849 27.0205 105.689 27.2214 106.529 27.1118C107.388 26.9839 108.173 26.5638 108.739 25.9063C108.958 25.5957 109.178 25.2669 109.36 24.9382C109.525 24.6094 109.616 24.2258 109.598 23.8605C109.598 23.7143 109.543 23.5682 109.433 23.4586C109.287 23.3856 109.141 23.3308 108.977 23.2942C108.757 23.3673 108.575 23.5317 108.502 23.7509C108.41 23.897 108.283 24.0066 108.118 24.0979C108.063 24.1527 107.954 24.0249 107.954 23.9153L107.662 21.4676C107.57 20.5543 107.04 19.7324 106.255 19.2574C105.433 18.9104 104.556 18.746 103.661 18.7825C104.593 18.3624 105.433 17.7596 106.109 17.0107C106.73 16.1157 106.967 15.0197 106.803 13.942C106.639 12.426 105.634 11.1291 104.209 10.5994ZM52.1694 35.4594L56.4437 34.8383L55.8226 29.8517L55.6582 29.2855C55.5486 29.1211 55.366 29.048 55.1833 29.0663C54.7997 29.1211 54.5805 29.3951 54.5075 29.8517C54.3248 32.2811 53.5394 33.6876 52.0598 34.1625L52.1694 35.4594ZM11.5459 25.3217C11.4363 24.792 11.1988 24.6276 10.87 24.6276C10.6326 24.6824 10.4682 24.9016 10.3038 25.1939C10.1211 25.4861 9.95672 25.6505 9.73753 25.6505L8.71464 25.4861C7.89267 25.3948 7.05243 25.3583 6.2122 25.3765L6.37659 26.8013C7.27162 26.6917 8.14839 26.9657 8.82423 27.5319C9.68273 28.3174 10.3586 29.322 10.7422 30.418C10.7604 30.6371 10.87 30.8381 11.0344 30.9842C11.1257 31.1486 11.2171 31.2947 11.6007 31.2217C12.0025 31.1486 12.1669 30.8198 12.1669 30.3084L11.5459 25.3217ZM27.3094 36.8111L22.542 23.1481L22.4872 23.0933L17.939 23.8239V25.1208L21.2634 34.7287L18.8157 35.1306L18.7061 36.4275L21.647 35.9708L22.268 37.6147C22.3959 37.907 22.4507 38.2175 22.4324 38.528C22.3411 38.7472 22.1767 38.9299 21.9757 39.0395L21.6835 39.3318V39.7884C21.7383 40.2451 22.0853 40.3546 22.7612 40.2451L27.7478 39.4231C27.9853 39.35 28.2227 39.2952 28.4784 39.2587C28.6976 39.0943 28.7707 38.9116 28.7707 38.6924C28.789 38.3454 28.5332 38.0531 28.2044 38.0166C27.967 38.0166 27.7478 37.7791 27.6382 37.5417L27.3094 36.8111ZM34.3418 21.2119L28.6063 22.1252H28.6246L28.2775 22.2896C28.0218 22.4357 27.8757 22.7097 27.9487 23.002C27.9487 23.276 28.1131 23.4586 28.4602 23.5134C28.8072 23.5682 29.0812 23.6961 29.0812 23.8057C29.2273 24.0614 29.3004 24.3536 29.3187 24.6459L30.6156 35.2767C30.7617 35.7882 30.9626 36.2813 31.2183 36.738C31.748 37.2677 32.3874 37.6878 33.0997 37.9253C33.7756 38.2175 34.5062 38.3819 35.2551 38.3819L37.5201 38.1627L37.2826 36.8658C36.6433 36.7562 36.0954 36.2996 35.8762 35.6786C35.8455 35.5867 35.8149 35.4207 35.7747 35.2028C35.743 35.0308 35.7053 34.8265 35.657 34.6009L34.287 23.7509C34.2322 23.4951 34.2322 23.2212 34.287 22.9654C34.3784 22.7462 34.5793 22.5636 34.7985 22.454C35.0542 22.3627 35.2186 22.1069 35.1821 21.8329C35.1821 21.7781 35.1821 21.7233 35.1638 21.6685C35.0542 21.3215 34.6889 21.1206 34.3418 21.2119ZM37.6297 21.8329L38.1411 22.0704L38.0681 22.0156C38.6343 22.2531 39.0179 22.9289 39.2554 24.0066L40.3513 32.3907C40.4792 33.2674 40.3331 34.1807 39.9495 34.9845C39.5476 35.7334 38.9266 36.3361 38.1777 36.7015L38.3421 37.9983C39.2554 37.7974 40.0408 37.2494 40.5523 36.464C41.3925 35.2584 41.7761 33.7789 41.6299 32.3176L40.4975 23.8057C40.4244 23.0202 40.6436 22.2348 41.1185 21.5955L41.5934 21.2119C41.7395 21.084 41.8126 20.9014 41.8126 20.7004C41.7943 20.4082 41.5386 20.189 41.2464 20.189H40.6436L38.3786 20.5909C37.6297 20.7004 37.4105 20.9196 37.4105 21.3763C37.4242 21.422 37.4345 21.4733 37.4448 21.5247C37.4756 21.6788 37.5064 21.8329 37.6297 21.8329ZM18.5783 29.5777L17.7198 27.1301L17.7015 27.1118L16.4046 37.3773C16.4229 38.3454 16.0576 39.277 15.3817 39.9711L14.8703 40.2998C14.7607 40.446 14.7059 40.6286 14.7059 40.8113C14.7607 41.3227 15.1625 41.4323 15.8932 41.3227L18.286 40.994L18.9071 40.7565C19.1445 40.6834 19.2724 40.4277 19.1993 40.1903C19.1445 40.0259 19.0715 39.8615 18.9619 39.7336L18.5052 39.5692C18.1947 39.4596 17.9207 39.2587 17.7198 39.003C17.5554 38.5281 17.5188 38.0166 17.6102 37.5234L18.5783 29.5777ZM7.54561 35.295C7.8196 35.295 8.11186 35.3315 8.36758 35.4594V35.5142C8.45891 35.642 8.53198 35.8064 8.55024 35.9708L9.06169 40.0076C9.26262 40.6469 8.9521 41.341 8.33105 41.5967L8.49545 42.8936C9.46354 42.711 10.3951 42.3456 11.2171 41.8159C12.0208 41.2132 12.7332 40.5008 13.3359 39.6971L12.7697 35.2036V34.9845C12.788 34.7835 12.8793 34.6191 13.0437 34.5095C13.2081 34.3086 13.3177 34.0529 13.3359 33.7789C13.2263 33.3222 13.0071 33.1031 12.5505 33.2126L7.65521 33.9981C7.14376 34.0529 6.97937 34.3999 6.97937 34.7287C6.97937 35.0575 7.14376 35.2219 7.54561 35.295ZM5.2989 25.5409C3.49056 25.9245 1.97449 27.1483 1.20732 28.8288L1.13425 28.8105C0.0930905 30.8015 -0.235698 33.0848 0.166154 35.295C0.330548 37.4869 1.24385 39.5509 2.75992 41.1401C3.38097 41.7977 4.12987 42.3274 4.97011 42.6744C5.79208 43.0215 6.68711 43.1311 7.56388 43.0032L7.32642 41.7063C6.65058 41.5419 6.30353 40.9026 6.13913 39.7701L4.73265 29.048C4.62306 27.9155 4.84225 27.1666 5.46329 26.8378L5.2989 25.5409Z\" fill=\"#495677\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed11()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-eqypad\",\"data-framer-name\":\"American Eagle\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:197,layoutDependency:layoutDependency,layoutId:\"hryLu0PDu\",style:{opacity:.8},svg:'<svg width=\"197\" height=\"15\" viewBox=\"0 0 197 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.10944 8.42429L6.26444 3.91919L4.41943 8.42429H8.10944ZM8.83886 10.2613H3.6471L2.14536 13.8042H0L5.57792 0.944074H6.90804C7.93781 3.52554 12.486 13.8042 12.486 13.8042H10.3406L8.83886 10.2613ZM152.406 8.42429L150.563 3.91919L148.718 8.42429H152.406ZM153.135 10.2613H147.944L146.442 13.805H144.297L149.875 0.944949H151.205C152.234 3.52642 156.783 13.805 156.783 13.805H154.637L153.135 10.2613ZM43.422 2.73824H38.359V5.84458H43.2933V7.68073H38.359V11.968H43.422V13.8042H36.471V0.944074H43.422V2.73824ZM51.6602 6.84882H52.2609C54.063 6.84882 54.9631 6.14987 54.9631 4.7511C54.9631 3.43894 54.105 2.78286 52.3458 2.78286H51.6593L51.6602 6.84882ZM54.02 8.29308L57.9246 13.7604H55.6076L52.0034 8.51177H51.6602V13.7604H49.7722V0.90121H52.0034C53.6768 0.90121 54.879 1.20913 55.6076 1.86521C56.4228 2.56416 56.8519 3.52554 56.8519 4.66188C56.8519 5.58302 56.5945 6.36857 56.0796 7.02465C55.5647 7.7236 54.8782 8.11812 54.02 8.29308ZM63.717 0.944074H65.605V13.8042H63.717V0.944074ZM81.309 1.64477V3.96206C80.1934 3.04441 79.0778 2.56241 77.8764 2.56241C76.5892 2.56241 75.4736 3.04441 74.6154 4.00404C73.7144 4.96805 73.2853 6.10438 73.2853 7.46116C73.2853 8.81619 73.7144 9.95603 74.6154 10.8728C75.5165 11.7896 76.5892 12.2724 77.9193 12.2724C78.6058 12.2724 79.1636 12.143 79.6356 11.9243C79.893 11.7931 80.1513 11.6592 80.4508 11.4869C80.7512 11.3111 81.0086 11.0495 81.3519 10.7844V13.1026C80.3051 13.7068 79.1223 14.0236 77.9193 14.022C76.1172 14.022 74.5734 13.3659 73.2862 12.0966C71.999 10.7844 71.3983 9.25358 71.3983 7.41655C71.3983 5.79821 71.9132 4.31197 72.9858 3.04266C74.2722 1.46894 75.9885 0.681641 78.048 0.681641C79.1636 0.682515 80.2363 0.988687 81.309 1.64477ZM139.405 2.73824H134.342V5.84458H139.234V7.68073H134.342V11.968H139.405V13.8042H132.454V0.944074H139.405V2.73824ZM166.994 7.11213H172.188V7.54952C172.188 8.51177 172.059 9.38655 171.845 10.1292C171.63 10.8299 171.244 11.4414 170.729 12.0529C169.569 13.4096 168.067 14.0657 166.267 14.0657C164.508 14.0657 163.006 13.4096 161.719 12.0975C160.474 10.7853 159.831 9.20984 159.831 7.41742C159.831 5.53665 160.474 3.96118 161.761 2.69363C163.049 1.38146 164.593 0.725379 166.438 0.725379C167.424 0.725379 168.326 0.944074 169.184 1.33685C169.998 1.73137 170.813 2.43032 171.587 3.34971L170.212 4.66188C169.184 3.26223 167.94 2.56416 166.438 2.56416C165.108 2.56416 163.991 3.04441 163.092 3.9638C162.191 4.88145 161.719 6.02128 161.719 7.4183C161.719 8.86168 162.233 10.0426 163.22 10.962C164.164 11.8368 165.194 12.2296 166.267 12.2296C167.211 12.2296 168.026 11.9234 168.798 11.2673C169.528 10.6112 169.957 9.82394 170.043 8.94916H166.909V7.11213H166.994ZM179.867 0.944074V11.968H183.557V13.8042H177.979V0.944074H179.867ZM189.349 0.944074V13.8042H196.3V11.968H191.237V7.68073H196.128V5.84458H191.237V2.73824H196.3V0.944074H189.349ZM94.3527 8.42429L92.5077 3.91919L90.6636 8.42429H94.3527ZM95.0821 10.2613H89.8904L88.3886 13.8042H86.2433L91.8212 0.944074H93.1513C94.1811 3.52554 98.7292 13.8042 98.7292 13.8042H96.5839L95.0821 10.2613ZM20.1663 6.01866L23.556 13.8042H24.0709L27.5464 6.01866L28.7478 13.8042H30.7215L28.4903 0.857471H27.9325L23.8563 9.95515L19.9089 0.857471H19.3511L16.8625 13.8042H18.8362L20.1663 6.01866ZM115.163 13.8042V0.944074H113.275V9.86768L104.393 0.857471H103.664V13.8042H105.551V4.7511L114.433 13.8042H115.163Z\" fill=\"#495677\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed12()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ynqqjv\",\"data-framer-name\":\"Gap\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:51,intrinsicWidth:67,layoutDependency:layoutDependency,layoutId:\"gwiIH63Td\",style:{opacity:.8},svg:'<svg width=\"67\" height=\"51\" viewBox=\"0 0 67 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M59.3202 0.42458H50.4039V1.88028H52.7695V47.0072C52.7088 47.9776 52.3449 48.3415 50.8892 48.4022H50.4039V49.6759H60.4726V48.4022H59.4414C57.7431 48.3415 57.1366 47.6743 57.076 46.158V28.6895H59.9874C64.2331 28.6895 66.72 26.6272 66.72 23.8978V5.64085C66.72 2.91141 64.5971 0.42458 59.3202 0.42458ZM62.4135 14.3751V24.0798C62.4135 25.5961 61.4431 27.0518 59.5627 26.9912H57.076V1.88028H59.3202C61.0185 1.88028 62.4135 3.27534 62.4135 4.97366V5.03431V14.3751ZM6.85396 28.6895H9.46212V46.3399C9.52277 47.8562 8.30966 49.13 6.79331 49.1907H6.73265C5.21629 49.1907 4.12451 47.917 4.12451 46.3399V4.913C4.12451 3.76057 4.36713 1.09178 6.30808 1.15244C7.88508 1.15244 9.03754 2.60814 9.52277 4.85235C10.0686 7.15721 10.4326 12.5555 10.4326 14.9209C10.4326 15.7095 10.7359 16.0128 11.585 16.0128H13.4653V0.42458H11.949V1.15244C11.949 1.94094 11.4637 1.88028 11.0391 1.63767C9.58341 0.667198 7.94572 0 6.36873 0C3.76058 0 0 1.15244 0 6.12609V42.7007C0.0606545 49.0693 3.39665 50.2218 6.73265 50.2825C9.28011 50.2825 10.4932 48.9481 11.4637 48.4628C12.1309 48.1595 12.6161 48.9481 12.6161 49.9185H13.9505V28.6895H16.1341V27.1125H6.85396V28.6895ZM28.6289 27.1125L30.9945 7.33917L33.6633 27.1732L28.6289 27.1125ZM40.2746 46.158L34.5731 0.42458H30.0846L24.3831 46.2793C24.0799 47.735 24.0192 48.0989 21.8356 48.2202V48.5235V49.6153H28.8716V48.3415C28.0831 48.4022 27.2945 48.1595 26.688 47.6743C26.4454 47.371 26.3241 47.0678 26.3241 46.7039L28.447 28.6288H33.9059L36.1501 46.7039C36.1501 47.8562 36.0288 48.2808 34.6338 48.3415H33.9665V49.6153H42.9434V48.3415H42.7008C40.9419 48.3415 40.3959 47.2497 40.2746 46.158Z\" fill=\"#495677\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed13()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-9r37dy\",\"data-framer-name\":\"Salomon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:144,layoutDependency:layoutDependency,layoutId:\"RRIJv_Eb4\",style:{opacity:.8},svg:'<svg width=\"144\" height=\"17\" viewBox=\"0 0 144 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.42429 5.45449L16.3299 9.34897C17.8909 10.1193 18.0772 10.609 17.8437 11.797L17.518 13.3826C17.0149 15.8778 16.2356 16.8122 12.9722 16.8122H3.82904C0.797123 16.8122 -0.368559 15.7634 0.0986186 13.4298L0.565693 11.0986H5.41016L5.08452 12.7313C4.99246 13.1963 5.15642 13.4995 5.83024 13.6162C6.39842 13.7105 7.09013 13.7331 8.41977 13.7331C9.28223 13.7331 10.2614 13.7105 10.915 13.6634C11.7594 13.5938 11.9459 13.4545 12.038 12.9649C12.1547 12.4034 12.0155 12.1945 10.3131 11.3546L4.46018 8.48652C2.15134 7.34336 1.73137 6.45848 2.0346 4.91778L2.33782 3.40176C2.84984 0.836914 3.73699 0.230469 7.09466 0.230469H16.2132C18.9644 0.230469 19.7101 1.28157 19.29 3.40176L18.778 5.96888H13.7179L13.9964 4.5696C14.1829 3.63535 14.0211 3.42645 12.5972 3.33439C12.2019 3.30961 11.4315 3.28492 10.8252 3.28492C9.84588 3.28492 8.84426 3.3096 8.30745 3.35681C7.44499 3.44887 7.23393 3.63536 7.16429 3.98569C7.04745 4.56961 7.14187 4.82562 8.42429 5.45449ZM71.8429 1.25658C73.3185 2.14146 74.0079 3.65521 73.5431 6.17068L72.6806 10.8871C72.2157 13.4003 70.9827 14.8917 69.1882 15.7765C67.3937 16.6614 65.0175 16.8254 62.2932 16.8254C59.5688 16.8254 57.3207 16.6614 55.8204 15.7765C54.3201 14.8917 53.6307 13.4003 54.0955 10.8871L54.9579 6.17068C55.4251 3.66426 56.6806 2.14146 58.4976 1.25658C60.3145 0.371695 62.6435 0.232422 65.3679 0.232422C68.0922 0.232422 70.3673 0.371695 71.8429 1.25658ZM67.2544 10.5569L68.0226 6.61986C68.5122 4.05954 67.5801 3.80343 64.703 3.80116C61.9788 3.80116 60.7929 4.03475 60.2785 6.61986L59.4993 10.5569C58.9872 13.1713 60.0113 13.3958 62.8299 13.3958C65.6486 13.3958 66.7424 13.142 67.2544 10.5569ZM26.2032 0.382812L17.772 16.6861H23.407L24.7547 13.7034H31.0185L31.5553 16.6861H37.1903L33.9337 0.382812H26.2032ZM26.1561 10.5839L29.6261 3.73832H29.6732L30.7197 10.5839H26.1561ZM46.5087 0.382812H41.0826L38.6367 16.6838H52.0988L52.658 12.7715H44.6221L46.5087 0.382812ZM86.9853 12.6097L92.2001 0.382812H99.3035L100.723 16.6838H95.2972L94.4815 5.2026H94.4373L89.5454 16.6838H83.1168L81.8596 4.92191H81.8124L77.8551 16.6838H72.5457L78.576 0.382812H85.4939L86.938 12.6097H86.9853ZM139.108 0.382812L137.269 12.329H137.224L132.054 0.382812H124.716L122.272 16.6838H127.441L129.024 4.99381H129.071L133.963 16.6838H141.554L144 0.382812H139.108ZM120.105 1.26487C118.614 0.379988 116.355 0.240723 113.63 0.240723C110.906 0.240723 108.577 0.379988 106.761 1.26487C104.943 2.14975 103.685 3.6635 103.22 6.16992L102.358 10.8864C101.893 13.3997 102.582 14.8909 104.083 15.7758C105.583 16.6608 107.831 16.8247 110.556 16.8247C113.28 16.8247 115.657 16.6608 117.448 15.7758C119.241 14.8909 120.469 13.3974 120.944 10.8864L121.803 6.16992C122.266 3.6635 121.572 2.14975 120.105 1.26487ZM116.287 6.62137L115.528 10.5585C115.016 13.1435 113.92 13.3974 111.104 13.3974C108.287 13.3974 107.261 13.1728 107.773 10.5585L108.53 6.6191C109.042 4.03409 110.23 3.80051 112.955 3.80051C115.843 3.80277 116.775 4.05878 116.285 6.6191L116.287 6.62137Z\" fill=\"#495677\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed14()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-vh9r9n\",\"data-framer-name\":\"Dundas\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:51,intrinsicWidth:118,layoutDependency:layoutDependency,layoutId:\"ft0kj7SVv\",style:{opacity:.8},svg:'<svg width=\"118\" height=\"51\" viewBox=\"0 0 118 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M60.6825 1.7908C62.0866 1.7299 62.4775 1.57376 63.6856 0.567187C63.3763 0.510986 63.0813 0.45305 62.7955 0.396932C62.1972 0.279452 61.6395 0.169938 61.0767 0.100995C58.3992 -0.227886 55.8855 0.200656 53.8801 2.12965C52.8768 3.09414 51.8204 3.87704 50.5105 4.3233C50.4407 4.34766 50.3698 4.37313 50.3078 4.41188L49.745 4.76336C48.9492 5.26012 48.1537 5.75665 47.3634 6.26115C47.009 6.48815 47.0467 6.77938 47.2349 7.12155C47.4223 7.46261 47.6137 7.37639 47.8709 7.2605L47.9115 7.24225C48.1186 7.14924 48.3744 7.11712 48.6036 7.13263C49.3954 7.18799 49.6201 6.93884 49.4397 6.18363L49.4821 6.22379C49.6604 6.39221 49.8727 6.59274 49.8593 6.77717C49.8427 7.0086 49.6334 7.27326 49.4341 7.42829C49.2824 7.54567 49.0056 7.57224 48.8007 7.54013C48.2725 7.45708 47.9115 7.63979 47.6402 8.08605C47.3291 8.59764 47.256 9.11588 47.5295 9.6618C47.6092 9.8213 47.6875 9.98168 47.7658 10.1421L47.7659 10.1422C47.9669 10.5541 48.168 10.9661 48.3943 11.3638C48.5485 11.6346 48.7352 11.8863 48.9219 12.1381L48.922 12.1382L48.9221 12.1383L48.9222 12.1385L48.9223 12.1386L48.9224 12.1388L48.9225 12.1389L48.9226 12.139L48.9227 12.1392L48.9228 12.1393L48.9229 12.1395C49.0053 12.2506 49.0877 12.3617 49.1672 12.4745L49.2303 12.4331L49.3123 12.3792C49.3123 12.245 49.3112 12.1108 49.31 11.9765V11.9764V11.9763V11.9762V11.9761V11.976V11.9759V11.9758V11.9757V11.9756V11.9755V11.9755C49.3071 11.6346 49.3042 11.2935 49.3201 10.953C49.3278 10.7802 49.4031 10.4768 49.4851 10.4635C49.8992 10.3982 50.33 10.3661 50.743 10.4148C50.8925 10.4325 51.0409 10.6905 51.1394 10.8677C51.4152 11.3627 51.7562 11.7757 52.3066 12.1035C52.2652 10.7695 52.5793 10.0368 53.2489 9.90541L53.9654 10.7536C53.9898 10.7414 54.0141 10.7295 54.0385 10.7176C54.0629 10.7057 54.0872 10.6938 54.1115 10.6817C54.115 10.6086 54.1205 10.5354 54.126 10.4622V10.4622V10.4621V10.4621V10.462V10.462V10.462V10.4619V10.4619V10.4618V10.4618C54.1379 10.3033 54.1498 10.1448 54.1414 9.98736C54.1149 9.46137 54.3452 9.05497 54.8114 8.88444C55.602 8.59543 56.4137 8.34849 57.2342 8.16135C57.6905 8.05726 58.0836 8.29866 58.1998 8.787C58.8332 11.4324 57.0405 14.0557 54.7604 14.4189C54.1005 14.5242 53.4241 14.5312 52.7488 14.5382H52.7488H52.7487H52.7487H52.7487H52.7486H52.7486H52.7486H52.7485H52.7485H52.7485C52.5003 14.5407 52.2523 14.5433 52.0054 14.5507C51.713 14.5607 51.4993 14.6028 51.4938 14.9638C51.4794 15.9903 51.5779 17.0046 52.074 17.9137C52.2423 18.2205 52.6133 18.5737 52.93 18.6158C54.5057 18.8273 55.6397 18.7708 56.5477 17.2194C57.6351 15.3602 58.965 13.7302 61.1166 12.9982C62.1409 12.6494 62.8263 11.8997 63.2239 10.9286C63.4639 10.3421 63.6514 9.73373 63.8458 9.10239L63.8459 9.10216C63.9349 8.81332 64.0254 8.51969 64.123 8.22114C64.5427 8.80028 64.9779 9.39936 65.4917 10.1058C65.8361 8.60429 65.8006 7.23672 65.1041 5.87801C66.0123 6.28066 66.4512 7.02836 66.888 7.77232C67.0062 7.97359 67.1242 8.1746 67.2513 8.36842C67.6388 6.59335 67.4694 4.9567 66.4241 3.47286C66.1719 3.6223 65.9248 3.76597 65.6822 3.907L65.6806 3.90793L65.6791 3.90879L65.6789 3.90891C65.1282 4.22909 64.6008 4.53578 64.0887 4.86589C63.7635 5.07541 63.4614 5.32191 63.1814 5.55045C63.0648 5.64561 62.952 5.73767 62.8429 5.82264C62.8706 5.25457 63.359 4.89579 63.9359 4.61342C65.5138 3.8416 66.8415 2.79627 67.6698 1.20723C67.7445 1.06452 67.796 0.909953 67.8549 0.732987L67.855 0.732893C67.8843 0.644875 67.9154 0.551315 67.9522 0.450916C67.7253 0.482473 67.5102 0.51914 67.303 0.554444C66.8633 0.629395 66.4596 0.698208 66.0553 0.698961C64.8649 0.701175 63.7299 0.715571 62.7156 1.53943C62.2095 1.95137 61.4931 2.092 60.6825 1.7908ZM62.9005 3.33776C64.2681 3.02549 65.4817 2.38877 66.6323 1.60809L66.6334 1.6092C65.7885 2.92361 64.5028 3.61238 63.1032 4.12176C62.9492 4.17713 62.6049 4.06639 62.5384 3.93573C62.3834 3.63231 62.5783 3.41084 62.9005 3.33776ZM56.9133 2.67077C57.0625 2.63457 57.2116 2.59838 57.3605 2.56151V2.56262C56.8046 3.53265 56.1513 4.32883 55.1358 4.79613C55.1517 4.65985 55.1664 4.52666 55.1808 4.39584C55.2217 4.02496 55.2604 3.6732 55.3185 3.32447C55.3374 3.20931 55.4592 3.04874 55.5644 3.01885C56.0104 2.88986 56.4621 2.78026 56.9133 2.67077L56.9133 2.67077ZM54.6863 4.10405L54.6866 4.1053L54.6904 4.11981C54.7467 4.3387 54.8043 4.5623 54.8645 4.79502H54.8634C54.3408 4.84818 53.8901 4.69869 53.8269 4.25353C53.801 4.07049 53.9673 3.86013 54.1338 3.64959L54.1338 3.64957C54.2091 3.55443 54.2843 3.45926 54.3419 3.36655L54.5135 3.4341C54.5708 3.65553 54.6278 3.87696 54.6861 4.10331L54.6863 4.10405ZM104.209 49.8227C105.9 50.5856 107.703 50.6631 109.022 50.7019L109.02 50.7052C111.299 50.7274 113.057 50.5701 114.676 49.7352C116.247 48.9246 117.23 47.6622 117.29 45.8528C117.376 43.2694 115.911 41.4833 113.361 41.0304C112.448 40.8679 111.53 40.7318 110.612 40.5956L110.612 40.5956L110.611 40.5956L110.611 40.5956L110.611 40.5956L110.611 40.5955L110.611 40.5955L110.611 40.5955L110.61 40.5955L110.61 40.5954L110.61 40.5954C109.814 40.4774 109.019 40.3594 108.226 40.2242C107.266 40.0614 106.308 39.8577 105.369 39.6008C104.694 39.417 104.495 39.046 104.557 38.3495C104.634 37.4824 105.088 36.8468 105.873 36.5102C107.762 35.7007 109.717 35.7206 111.67 36.2223C112.734 36.4947 113.335 37.2676 113.563 38.3251C113.633 38.6474 113.666 38.984 113.668 39.314C113.669 39.6672 113.838 39.7525 114.149 39.7447C114.497 39.7354 114.846 39.7375 115.195 39.7396C115.344 39.7405 115.494 39.7414 115.643 39.7414C116.61 39.7414 117.049 39.2616 116.96 38.3019C116.744 35.9753 115.488 34.3697 113.229 33.744C110.712 33.0464 108.16 33.0962 105.619 33.6721C104.598 33.9035 103.682 34.3564 102.868 35.0286C100.855 36.6918 100.366 40.9528 103.781 42.3835C104.725 42.7789 105.731 43.0645 106.737 43.255C107.747 43.447 108.766 43.5947 109.785 43.7425L109.785 43.7425C110.517 43.8488 111.25 43.955 111.98 44.0778C112.425 44.152 112.87 44.328 113.272 44.5395C114.063 44.9548 114.268 45.7842 113.829 46.5715C113.482 47.1972 112.9 47.5061 112.252 47.7021C110.869 48.1207 109.456 48.1794 108.037 47.9479C106.072 47.6279 104.553 46.8184 104.39 44.5462C104.381 44.4343 104.16 44.2527 104.033 44.2483C103.184 44.2206 102.335 44.2162 101.488 44.2516C101.355 44.2572 101.117 44.5019 101.119 44.6337C101.151 46.8528 101.99 48.8205 104.209 49.8227ZM43.6027 38.861V39.5154C43.6027 40.3472 43.6022 41.1791 43.6017 42.0109C43.6 44.6108 43.5984 47.2106 43.6127 49.8104C43.616 50.322 43.5008 50.5567 42.9416 50.4991C42.4666 50.4504 41.9793 50.4526 41.5043 50.4991C40.9639 50.5523 40.8476 50.3175 40.8631 49.8347C40.8834 49.1869 40.879 48.538 40.8746 47.8891V47.8891V47.8891V47.889V47.889V47.889V47.8889V47.8889V47.8888C40.8727 47.615 40.8709 47.3412 40.8709 47.0675V34.116C40.8709 33.3641 40.8731 33.3641 41.6372 33.363C41.821 33.3627 42.005 33.3644 42.189 33.3662C42.6325 33.3705 43.0764 33.3747 43.5185 33.3497C43.9294 33.3265 44.2018 33.4627 44.4675 33.7738C46.6452 36.3204 48.8312 38.8593 51.0173 41.3983L51.0176 41.3988L51.018 41.3992L51.0184 41.3996L51.0187 41.4L51.0191 41.4004L51.0195 41.4009L51.0198 41.4013L51.0202 41.4017L51.0205 41.4021L51.024 41.4061L51.0274 41.4101L51.0308 41.4141L51.0342 41.4181L51.0377 41.422L51.0411 41.426L51.0445 41.4299L51.0478 41.4339L51.0512 41.4378C51.6096 42.0863 52.1679 42.7347 52.7261 43.3833C53.0782 43.7925 53.4316 44.2007 53.8136 44.6419C54.0168 44.8765 54.228 45.1204 54.4513 45.3788C54.4567 45.2553 54.4625 45.1518 54.4675 45.0607L54.4675 45.0602V45.0602V45.0601V45.0601C54.4759 44.9089 54.4823 44.7919 54.4823 44.6745C54.4829 42.9127 54.4829 41.1507 54.4829 39.3886V39.3526C54.4829 37.6026 54.4829 35.8525 54.4835 34.1027C54.4835 33.3652 54.4857 33.3652 55.2077 33.363C55.3648 33.363 55.5219 33.3644 55.6789 33.3659L55.6799 33.3659H55.6801C56.0396 33.3691 56.3988 33.3724 56.7568 33.3586C57.1245 33.3442 57.2618 33.5047 57.2385 33.8502C57.2348 33.9115 57.2361 33.9733 57.2373 34.035V34.0351V34.0352V34.0353V34.0354C57.2379 34.066 57.2385 34.0966 57.2385 34.1271V49.7351C57.2385 50.4892 57.2363 50.4892 56.4822 50.4903C56.2776 50.4903 56.0728 50.4873 55.8678 50.4843C55.3894 50.4773 54.9107 50.4703 54.4347 50.5013C53.9353 50.5335 53.6231 50.3397 53.3097 49.972C51.0012 47.2634 48.6843 44.5621 46.3674 41.8608L46.3661 41.8594C45.5615 40.9213 44.7569 39.9832 43.9526 39.0448C43.9059 38.9907 43.8656 38.9316 43.8252 38.8721L43.8252 38.8721L43.8251 38.8721L43.8251 38.872L43.8251 38.872L43.8251 38.872L43.8251 38.8719L43.825 38.8719L43.825 38.8719L43.825 38.8718C43.8051 38.8426 43.7852 38.8133 43.7644 38.7845C43.709 38.81 43.6547 38.8355 43.5994 38.861H43.6027ZM62.0312 39.8944C62.0306 40.5754 62.03 41.2563 62.03 41.9373V41.9384L62.0303 43.9333V43.9334V43.9335V43.9336V43.9337V43.9338V43.9339V43.934V43.9341C62.0307 45.9261 62.0311 47.9178 62.0278 49.9102C62.0267 50.2545 62.0422 50.5037 62.5162 50.4993C63.4644 50.4896 64.4128 50.4918 65.3612 50.4939C66.8117 50.4972 68.2621 50.5004 69.7117 50.4616C71.5875 50.4107 73.3593 49.9035 74.8929 48.7696C78.7919 45.8883 79.3378 39.6805 75.9958 36.0828C74.1399 34.084 71.7259 33.4063 69.0916 33.3687C68.0131 33.353 66.9347 33.356 65.8563 33.3589C64.7942 33.3618 63.7321 33.3647 62.6701 33.3498C62.1375 33.3421 62.019 33.5348 62.0223 34.0209C62.0346 35.9787 62.0329 37.9366 62.0312 39.8944ZM66.2833 47.9513V35.982V35.9809C66.7337 35.9938 67.1808 35.9896 67.6252 35.9855H67.6253H67.6254H67.6255H67.6257H67.6258H67.6259H67.626H67.6261C68.7823 35.9747 69.9201 35.9641 71.0493 36.2544C73.1334 36.7903 74.2706 38.1646 74.625 40.2231C74.8675 41.6339 74.8575 43.0468 74.4334 44.4366C73.8775 46.2592 72.6306 47.3666 70.7891 47.6479C69.7775 47.8025 68.7479 47.8434 67.6988 47.885H67.6987C67.2308 47.9035 66.7591 47.9222 66.2833 47.9513ZM0.0044433 41.9074V34.1084C0.0044433 33.3654 0.00665805 33.3643 0.723109 33.3632C1.3756 33.3632 2.02809 33.3615 2.68058 33.3598H2.68146C4.14924 33.356 5.61702 33.3523 7.0848 33.3676C9.29284 33.3908 11.3724 33.8925 13.1309 35.2999C15.1119 36.8845 16.0554 39.0239 16.1429 41.5165C16.2492 44.5407 15.2326 47.0942 12.6935 48.8925C11.1731 49.9689 9.42572 50.4273 7.58975 50.4672C6.191 50.4981 4.79148 50.4954 3.39163 50.4928H3.39156H3.39149H3.39141H3.39134H3.39126H3.39119H3.39111C2.43064 50.491 1.47002 50.4892 0.509392 50.4982C0.0598105 50.5026 -0.00109342 50.2967 1.39244e-05 49.9279C0.0066581 47.923 0.00582745 45.9175 0.00499693 43.9123C0.00472011 43.244 0.0044433 42.5757 0.0044433 41.9074ZM4.19906 41.9229V47.2902V47.3456L4.19924 47.3969C4.19949 47.6431 4.19974 47.8858 4.57556 47.8671C5.02357 47.8447 5.47332 47.8341 5.92301 47.8235H5.92317C6.91278 47.8001 7.9021 47.7768 8.87205 47.6268C10.5995 47.3589 11.8198 46.3002 12.3591 44.6038C12.9094 42.8741 12.9094 41.1135 12.3912 39.3727C11.9516 37.8944 10.9993 36.838 9.50323 36.4272C8.57307 36.1725 7.59085 36.0706 6.62414 36.002C6.0819 35.9634 5.53429 35.9983 4.98692 36.0332C4.74735 36.0485 4.50783 36.0637 4.26882 36.0728C4.26171 36.3086 4.25346 36.5443 4.2452 36.7799C4.22648 37.3145 4.20776 37.8489 4.20238 38.3839C4.1942 39.2564 4.1963 40.1289 4.1984 41.0014C4.19914 41.3093 4.19988 41.6172 4.20017 41.9251L4.19906 41.9229ZM97.3945 50.4903C97.7393 50.4892 98.0899 50.4882 98.4482 50.4882C98.4367 50.4562 98.4259 50.4256 98.4157 50.3965L98.3948 50.3363L98.3732 50.2736C98.3308 50.1503 98.2967 50.051 98.2544 49.9555C97.5577 48.397 96.8606 46.8385 96.1635 45.28L96.1462 45.2413L96.1461 45.2411L96.146 45.2408L96.1459 45.2406L96.1458 45.2404L96.1458 45.2402L96.1457 45.2399C94.4411 41.4292 92.7364 37.6182 91.0368 33.8049C90.8995 33.4971 90.7323 33.3465 90.3768 33.3554C89.5108 33.3764 88.6438 33.3742 87.7768 33.3554C87.4523 33.3476 87.2652 33.4617 87.1389 33.7551C86.844 34.4382 86.5385 35.1175 86.233 35.7967L86.0382 36.23C85.2284 38.0357 84.4183 39.8413 83.6082 41.647C82.3888 44.3648 81.1694 47.0827 79.9512 49.8005C79.8928 49.9295 79.8446 50.0629 79.7875 50.2207L79.7873 50.2213L79.7868 50.2227L79.7866 50.2234C79.7572 50.3046 79.7254 50.3923 79.6887 50.4893C79.9337 50.4893 80.1709 50.4856 80.4026 50.4821L80.403 50.4821C80.9281 50.4741 81.4246 50.4665 81.9178 50.5026C82.4571 50.5424 82.7062 50.3265 82.9 49.8526C83.1639 49.2083 83.4476 48.5726 83.7314 47.9368L83.732 47.9355L83.732 47.9354L83.732 47.9353L83.7321 47.9352L83.7321 47.9351L83.7322 47.935C83.9363 47.4775 84.1405 47.0201 84.3373 46.5593C84.4913 46.1983 84.6851 46.0278 85.1158 46.0333C87.2552 46.0588 89.3957 46.0544 91.5351 46.0366C91.906 46.0333 92.0943 46.1518 92.2393 46.4929C92.7443 47.6799 93.2692 48.8582 93.8195 50.0253C93.9103 50.2191 94.1595 50.4627 94.3422 50.4682C95.341 50.4966 96.3404 50.4935 97.3945 50.4903ZM87.3614 39.8533L88.3094 37.7305L88.9655 39.1976C89.6374 40.7002 90.2848 42.1479 90.9537 43.6426H85.6695C86.2318 42.3824 86.7894 41.1338 87.3573 39.8623L87.3614 39.8533ZM23.8886 38.8544C23.9163 39.4406 23.9369 40.0274 23.9574 40.6141C24.0033 41.9261 24.0492 43.2379 24.1754 44.5417C24.3936 46.7941 25.5153 47.8427 27.7555 47.9955C28.6292 48.0553 29.5294 48.0232 30.3909 47.8748C32.2424 47.5559 33.2379 46.5128 33.5292 44.6447C33.6731 43.719 33.7451 42.7744 33.7562 41.8365C33.7861 39.2354 33.7805 36.6331 33.7562 34.0308C33.7506 33.4905 33.92 33.3122 34.4494 33.352C34.8946 33.3854 35.343 33.3753 35.7906 33.3653H35.7906H35.7907H35.7907H35.7908H35.7908L35.7914 33.3653L35.7919 33.3653C35.8793 33.3634 35.9666 33.3614 36.0539 33.3598C36.3606 33.3531 36.4813 33.4816 36.4769 33.7872C36.4625 34.8607 36.4518 35.9343 36.4411 37.0079V37.0081V37.0083V37.0085V37.0087V37.0089C36.4173 39.4023 36.3935 41.7956 36.3285 44.1874C36.2964 45.3656 35.9886 46.5239 35.4271 47.5847C34.4748 49.3853 32.8858 50.2612 30.9468 50.5491C29.112 50.8215 27.2716 50.7861 25.4411 50.4361C22.4723 49.8692 20.7238 48.0598 20.1447 45.1375C19.9343 44.0767 19.8346 42.9815 19.8158 41.8996C19.7887 40.3594 19.7917 38.8183 19.7948 37.2774V37.2774V37.2774V37.2773V37.2773V37.2773C19.7969 36.1795 19.7991 35.0817 19.7903 33.9843C19.787 33.5026 19.9232 33.3343 20.416 33.3509C21.4115 33.3842 22.4092 33.3786 23.4047 33.3531C23.8388 33.3421 23.9839 33.4827 23.9783 33.9223C23.9629 35.1239 23.9653 36.3255 23.9677 37.527C23.9686 37.9676 23.9695 38.4083 23.9695 38.8489L23.8897 38.8522L23.8886 38.8544ZM67.137 3.84448C68.292 6.00491 67.9376 8.18305 67.2743 10.3335H67.2766C67.2256 10.3605 67.201 10.373 67.1853 10.381L67.1658 10.3911C67.13 10.2305 67.0977 10.0686 67.0652 9.90584C66.9048 9.10241 66.7406 8.27959 66.1338 7.50425C66.054 9.12097 65.9699 10.5727 65.29 11.9713C65.2758 11.8928 65.262 11.8146 65.2484 11.7369L65.2482 11.7361L65.248 11.7351L65.2477 11.7334C65.0938 10.8598 64.9487 10.0357 64.3211 9.26382C64.2951 9.39535 64.2753 9.49932 64.2584 9.58801L64.2576 9.59172L64.2576 9.59221C64.2372 9.69865 64.2211 9.78315 64.2037 9.86732C63.8704 11.4907 63.1207 12.7896 61.4885 13.4308L61.4114 13.4611C60.8041 13.7002 60.1903 13.9419 59.6315 14.2712C58.6105 14.8714 57.935 15.7971 57.3525 16.8768C57.479 16.8768 57.5959 16.8796 57.7061 16.8823C57.927 16.8876 58.1213 16.8923 58.3126 16.8724C58.9928 16.8022 59.6711 16.7147 60.3493 16.6272L60.5605 16.6C63.4241 16.229 66.1803 15.476 68.8567 14.3842C69.9098 13.9545 70.6418 13.4285 70.3849 12.1573C70.3802 12.1368 70.3839 12.1147 70.3876 12.0924C70.3901 12.0774 70.3926 12.0624 70.3926 12.0477C70.4126 9.65139 70.1855 7.3005 69.0915 5.1135C68.6031 4.13793 67.9985 3.25538 67.137 2.55664C66.7362 2.87666 66.5335 3.17011 66.9543 3.56875C67.0269 3.63724 67.0768 3.7312 67.125 3.8219L67.137 3.84448ZM70.3506 14.3909L70.3501 14.3924C70.2838 14.3597 70.2164 14.3271 70.1489 14.2945L70.1468 14.2935C70.1029 14.3123 70.059 14.3312 70.0152 14.3502C69.9276 14.3881 69.8401 14.426 69.7515 14.4629C69.4144 14.6032 69.0793 14.749 68.7442 14.8947L68.744 14.8948L68.7434 14.8951C68.0154 15.2117 67.2877 15.5283 66.5402 15.7884C63.5947 16.8116 60.524 17.1759 57.4356 17.435C57.1842 17.456 56.8864 17.6255 56.7203 17.8203C56.2419 18.3829 55.7226 18.8723 54.9817 19.0196C54.4425 19.1259 54.4358 19.4437 54.5133 19.8778C54.5717 19.8818 54.6267 19.8866 54.6793 19.8912H54.6794C54.7856 19.9004 54.8826 19.9088 54.9795 19.9088C57.7645 19.9055 60.5439 19.787 63.2946 19.3252C65.2357 18.9986 67.1736 18.632 68.9985 17.848L69.0149 17.8409C69.1597 17.7786 69.3532 17.6952 69.3905 17.5801C69.6524 16.7601 69.8956 15.9342 70.1387 15.1085C70.2091 14.8697 70.2794 14.631 70.3501 14.3924L70.3517 14.3931L70.3506 14.3909ZM67.7527 16.5513C67.8491 16.6473 67.9331 16.7484 68.0109 16.8418C68.1663 17.0286 68.2965 17.1851 68.4493 17.2102C68.8302 17.2744 68.9509 16.909 68.9586 16.5746C68.9675 16.2169 68.849 15.836 68.4482 15.8781C68.3014 15.8936 68.1704 16.0554 68.0135 16.2491C67.9348 16.3463 67.8497 16.4515 67.7527 16.5502V16.5513ZM67.281 17.1327C66.9798 16.8869 66.7916 16.7329 66.6033 16.579C66.5639 16.6436 66.5154 16.7082 66.4669 16.7727C66.3559 16.9204 66.245 17.0681 66.2434 17.2168C66.2419 17.3416 66.3673 17.4685 66.4922 17.595C66.5469 17.6503 66.6015 17.7056 66.6454 17.7605L67.281 17.1327ZM64.4063 17.6421L64.9058 18.1957C64.9455 18.1439 64.9943 18.0923 65.0431 18.0407L65.0432 18.0406L65.0433 18.0405L65.0434 18.0404C65.1551 17.9222 65.267 17.804 65.2701 17.683C65.2732 17.5613 65.1674 17.4375 65.0618 17.3137C65.0156 17.2595 64.9694 17.2054 64.9323 17.1515L64.9287 17.1549C64.7782 17.2955 64.6271 17.4366 64.4063 17.6421ZM63.4208 17.5302L63.3742 17.5279L63.3272 17.5257L63.3271 17.5257C63.2972 17.5243 63.2672 17.523 63.237 17.5214C63.2081 17.568 63.1713 17.6151 63.1346 17.6622C63.0517 17.7685 62.9688 17.8749 62.9757 17.9754C62.9842 18.1049 63.0667 18.2296 63.1492 18.3544L63.1492 18.3544L63.1492 18.3544L63.1492 18.3545C63.1845 18.4077 63.2197 18.461 63.2492 18.5147C63.2893 18.4701 63.337 18.4269 63.3847 18.3836L63.3848 18.3836C63.4935 18.285 63.6023 18.1864 63.6223 18.0717C63.6424 17.9573 63.5729 17.8272 63.5035 17.6973L63.5035 17.6973L63.5035 17.6972L63.5035 17.6971C63.4735 17.641 63.4435 17.585 63.4208 17.5302ZM61.2681 18.2932L61.4979 18.5065L61.5002 18.5087C61.5877 18.5899 61.6621 18.659 61.7365 18.7284C61.763 18.6836 61.7958 18.6389 61.8286 18.5942C61.9028 18.4932 61.9768 18.3923 61.9768 18.291C61.9768 18.1913 61.9008 18.0915 61.8247 17.9918C61.7918 17.9487 61.7589 17.9056 61.7321 17.8624C61.6658 17.9242 61.5993 17.9857 61.5233 18.0559C61.4495 18.1241 61.3669 18.2004 61.267 18.2932H61.2681ZM60.1973 17.9643C60.1534 18.0602 60.1096 18.1402 60.072 18.2087L60.072 18.2088L60.0719 18.2088L60.0719 18.2088C60.0024 18.3356 59.9544 18.423 59.9681 18.4991C59.9835 18.5847 60.0681 18.6573 60.1524 18.7298C60.1893 18.7615 60.2261 18.7931 60.2571 18.8258C60.2775 18.7857 60.3019 18.7458 60.3263 18.7059C60.3825 18.6139 60.4388 18.5219 60.4465 18.4261C60.4522 18.3591 60.4048 18.2881 60.3334 18.1811C60.2938 18.1217 60.2467 18.0513 60.1973 17.9643ZM58.8397 18.271C58.937 18.3617 59.0344 18.4524 59.1747 18.5828L59.1133 18.6473C59.0154 18.7503 58.9399 18.8296 58.8652 18.9089C58.8391 18.8807 58.8061 18.8521 58.7731 18.8233C58.6983 18.7583 58.6233 18.6931 58.6271 18.6331C58.6325 18.5459 58.6965 18.463 58.7607 18.3799L58.7607 18.3799C58.7886 18.3438 58.8166 18.3076 58.8397 18.271ZM68.9152 18.4185L68.9155 18.418H68.9166L68.9152 18.4185ZM68.9152 18.4185C68.263 19.6762 67.3861 20.7058 66.1947 21.4665C64.4396 22.5871 62.4973 23.1031 60.4499 23.2139C59.5471 23.2631 58.6413 23.2512 57.6979 23.2387C57.2631 23.233 56.8202 23.2272 56.366 23.2272C57.0414 22.297 57.3072 21.3857 56.5132 20.3492C60.7849 20.2351 64.9204 19.8609 68.9152 18.4185ZM51.6189 12.4895C52.0619 13.3977 52.8334 13.3562 53.6616 13.3117C53.707 13.3093 53.7525 13.3068 53.7981 13.3045V12.1418C53.8837 12.2221 53.9577 12.289 54.0229 12.3478L54.023 12.348C54.1501 12.4627 54.2436 12.5472 54.3241 12.6423C54.6386 13.0133 54.9453 13.0233 55.2764 12.6667C55.7304 12.1795 56.1634 11.6889 56.2753 10.9891C56.3882 10.2848 56.2664 9.92159 55.4414 8.96927C55.6274 8.92922 55.8081 8.88726 55.9851 8.84614C56.4542 8.73719 56.8978 8.63417 57.3472 8.58834C57.4922 8.57395 57.7735 8.90615 57.8233 9.11987C58.2153 10.7831 57.4978 12.0554 56.314 13.1318C55.5466 13.8294 54.6364 14.1727 53.591 14.1472C53.3394 14.141 53.0878 14.1425 52.8365 14.144H52.8363C52.6829 14.1449 52.5295 14.1458 52.3763 14.145C51.6255 14.1417 51.3808 13.8936 51.4129 13.1484C51.419 13.0137 51.4416 12.879 51.4641 12.7447L51.4641 12.7447C51.4745 12.6824 51.485 12.6202 51.4937 12.5582L51.6178 12.4884L51.6189 12.4895ZM53.9478 22.7509C53.8897 22.9274 53.8298 23.1096 53.7681 23.2996C53.9006 23.2996 54.0339 23.3015 54.1678 23.3034C54.4668 23.3077 54.7682 23.312 55.0681 23.2951C55.975 23.2453 56.5829 22.5421 56.573 21.5821C56.5652 20.7859 56.0038 20.3197 55.0315 20.3042C54.9585 20.3035 54.885 20.3037 54.8113 20.304C54.7744 20.3041 54.7374 20.3042 54.7005 20.3042C54.2464 20.3031 54.139 20.4781 54.3694 20.8867C54.4369 21.0085 54.4358 21.2045 54.3948 21.3451C54.26 21.8011 54.1112 22.2536 53.9478 22.7509ZM55.8687 21.272C56.1865 21.9597 55.6339 22.6872 54.7171 22.7094C54.7511 22.5539 54.7833 22.4021 54.8148 22.253C54.8982 21.8594 54.9774 21.4853 55.0769 21.1159C55.1024 21.0207 55.3139 20.8822 55.377 20.9088C55.562 20.9885 55.7923 21.1059 55.8687 21.272Z\" fill=\"#495677\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed15()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ywyu1\",\"data-framer-name\":\"ipsa\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:53,intrinsicWidth:77,layoutDependency:layoutDependency,layoutId:\"VU7FD4xgn\",svg:'<svg width=\"77\" height=\"53\" viewBox=\"0 0 77 53\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.244949 20.7391L14.1254 0.040825L14.2071 0H14.3295L16.9832 1.83712L17.024 1.91877V2.04125L3.02104 22.9436L2.93939 23.0661L2.85774 23.1069H2.69444L0.0816498 21.3515L0.0408249 21.229L0 21.1065L0.0816498 20.984L0.244949 20.7391ZM0.612373 51.9702V25.5156L0.694023 25.3931L0.734848 25.3523L0.898148 25.3115H4.04166H4.12331L4.16414 25.3523V51.9294V52.011L4.12331 52.0518L3.96001 52.0927H0.734848L0.694023 52.0518L0.653198 52.011L0.612373 51.9702ZM15.9625 52.1335L15.7992 52.0927L15.7584 52.0518V51.9702V25.7606L15.7992 25.5973L15.8401 25.5564L15.9217 25.5156L16.6566 25.4748L18.2895 25.434L19.4326 25.3931H21.3106L21.8005 25.3523H22.2087H22.9844L23.2294 25.3931H23.5151L24.25 25.5156L24.9848 25.6789L25.7197 25.9239L26.0055 26.0463L26.6587 26.3729L26.9853 26.5771L27.7609 27.1486L28.3733 27.7202L28.6591 28.1284L28.904 28.3734L29.4347 29.2307L29.598 29.5573L29.8022 30.2105L30.0471 30.8637L30.2104 31.6802L30.2921 32.1701L30.3329 32.5375V33.6398V33.8847V34.1705L30.2104 34.9462L30.0471 35.6402L29.8022 36.3751L29.4756 37.0691L29.2306 37.5182L28.9448 37.9264L28.6999 38.253L28.4549 38.5796L28.2916 38.7429L28.1692 38.9062L28.0059 39.0695L27.7609 39.192L27.4343 39.4778L26.6995 40.0085L26.1279 40.3351L25.5564 40.6617L25.4339 40.7433L24.8215 41.0291L24.1275 41.3149L23.0661 41.6415L22.8211 41.6823L22.6578 41.6415L22.617 41.6007L22.4129 41.1107L21.5147 38.8246L21.4739 38.7021L21.5964 38.6204L22.0863 38.5388L22.9436 38.2938L23.6784 37.9672L24.0867 37.7631L24.5766 37.4773L25.1481 37.0283L25.5564 36.6608L25.6789 36.4975L25.8013 36.3342L26.1279 35.8852L26.3321 35.4769L26.4545 35.1911L26.577 34.8237L26.7403 34.0072V33.3132V32.8233L26.577 32.0068L26.2912 31.2719L26.0871 30.782L25.7197 30.2513L25.0665 29.5981L24.5358 29.2307L24.25 29.0266L23.6376 28.7816L23.0661 28.6183L22.4537 28.5367L22.0863 28.5775H19.5551H19.3918L19.351 28.6591V28.7408V28.9041V51.9294L19.3102 52.011L19.2285 52.0927H19.1469L15.9625 52.1335ZM36.5791 48.4592L36.7424 48.2959L37.2731 47.8469L37.9671 47.2753L38.1304 47.1528L38.5387 46.7854L38.7428 46.6221L38.8653 46.5813L38.9878 46.6629L39.2735 46.9895L40.09 47.7652L40.7432 48.2959L41.1923 48.5817L41.4373 48.745L41.8047 48.9491L42.2538 49.1124L42.8253 49.2349L43.2744 49.3166H43.9684L44.4583 49.2349L44.989 49.0716L45.4381 48.8267L45.928 48.4184L46.4587 47.8877L46.7853 47.4386L47.0303 46.9895L47.2344 46.4996L47.316 46.0097L47.3569 45.6423V44.9483L47.2344 44.2135L46.9894 43.6011L46.7037 43.1928L46.4587 42.8254L46.2138 42.5805L46.0913 42.4172L45.4789 41.8456L45.3156 41.7231L44.8666 41.3557L44.5808 41.1516L43.9684 40.7025L42.5395 39.6819L41.2331 38.7837L40.6208 38.3347L39.8043 37.6815L39.4777 37.3957L39.0286 36.9874L38.6203 36.5792L38.3346 36.1709L38.0488 35.7627L37.8447 35.4361L37.6405 35.1503L37.4772 34.8645L37.2323 34.3746L37.0282 33.8031L36.8649 32.9458L36.824 32.5783V31.5169L36.9465 30.6596L37.1098 30.0064L37.3956 29.1899L37.5997 28.8224L38.0488 28.0876L38.4162 27.6385L38.7428 27.2711L39.0286 27.0261L39.3552 26.7404L39.8451 26.3729L40.2942 26.128L40.9065 25.8422L41.723 25.5564L42.5804 25.3523L43.2744 25.2298H44.4583L44.8257 25.2707L45.3564 25.3523L45.7647 25.434L46.1321 25.5564L46.7853 25.8014L47.1119 25.9647L47.5202 26.1688L47.7243 26.2913L48.0509 26.4954L48.3775 26.6587L48.9082 27.0261L49.6839 27.6385L50.0105 27.9243L50.1738 28.0468L50.2554 28.1692L50.2963 28.2509V28.3325L50.2146 28.455L48.949 29.7206L48.6633 29.9655L48.0509 30.5371L47.9284 30.5779H47.8468L47.4793 30.2513L46.9894 29.7614L46.5404 29.4348L45.9688 29.1082L45.6422 28.9449L45.1523 28.7408L44.7033 28.6183L44.3358 28.5775H43.9684H43.6826H43.1927L42.5804 28.7408L42.2946 28.8633L42.0088 29.0674L41.6414 29.3123L41.1107 29.8839L40.8249 30.2921L40.6616 30.6187L40.6208 30.6596L40.4983 31.027L40.4575 31.4761V32.0476L40.5391 32.5375L40.6208 32.8233L40.9474 33.4765L41.3556 33.9664L41.968 34.5379L42.4987 34.987L42.907 35.2728L45.8055 37.314L46.8261 38.0489L47.3977 38.498L47.9284 38.947L48.3367 39.3145L48.4591 39.3961L48.5816 39.5594L48.9899 39.9677L49.194 40.2126L49.6022 40.7025L49.9697 41.2332L50.133 41.4782L50.2554 41.7231L50.4596 42.1314L50.6229 42.5396L50.7862 43.152L50.9086 43.6419L50.9903 44.2543V45.724L50.7862 46.8262L50.5412 47.6836L50.3371 48.1735L50.133 48.5817L49.7655 49.1941L49.3981 49.7248L49.194 50.0106L48.7857 50.4188L48.6224 50.5413L48.2958 50.8271L47.6018 51.317L47.2752 51.4803L46.8261 51.7252L46.2546 52.011L45.6014 52.256L44.9074 52.4193L44.295 52.5009L43.8459 52.5417L42.662 52.5009L41.8047 52.3784L41.1923 52.2151L40.6616 52.0518L40.1717 51.8477L39.7634 51.6436L38.7836 51.072L38.0896 50.5821L37.6814 50.2147H37.5589L36.6199 49.2757L36.4974 49.1124L36.375 48.9491L36.2933 48.8267V48.745L36.5791 48.4592ZM63.7685 27.516L64.34 25.7197L64.4217 25.5973L64.6258 25.5564H68.9941L69.0757 25.5973L69.1574 25.7197L76.3017 51.7252L76.3425 51.9702V52.0518L76.3017 52.0927L76.1792 52.1335H72.7499L72.6275 52.0518L72.5458 51.9294L68.0959 34.3338L67.8918 33.4765L67.606 31.8435L66.9528 27.761L66.912 27.6793L66.8712 27.6385H66.7895L66.7079 27.6793L66.6262 27.8018L65.8914 31.8843L65.5648 33.4357L65.3606 34.3338L60.7066 51.9294L60.625 52.0518L60.4617 52.0927H57.1548L56.9915 52.011L56.9507 51.9702L56.9915 51.8477L63.7685 27.516Z\" fill=\"#495677\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed16()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1vg5dp4\",\"data-framer-name\":\"Drunk Elephant\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:66,intrinsicWidth:115,layoutDependency:layoutDependency,layoutId:\"kE0XPnany\",svg:'<svg width=\"115\" height=\"66\" viewBox=\"0 0 115 66\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.2439 24.5446C13.2439 24.5052 13.2752 24.4678 13.3177 24.4678H14.9429C14.9884 24.4678 15.0208 24.5052 15.0208 24.5446V24.8711C15.0208 24.9105 14.9884 24.9458 14.9429 24.9458H13.7624V25.6028H14.7479C14.7883 25.6028 14.8247 25.6382 14.8247 25.6796V26.0091C14.8247 26.0536 14.7883 26.0859 14.7479 26.0859H13.7624V26.7844H14.9429C14.9884 26.7844 15.0208 26.8207 15.0208 26.8602V27.1876C15.0208 27.2291 14.9884 27.2634 14.9429 27.2634H13.3177C13.2752 27.2634 13.2439 27.2291 13.2439 27.1876\" fill=\"#828BA3\"/>\\n<path d=\"M15.7089 26.8727L15.8534 26.6251C15.8857 26.5685 15.9535 26.5685 15.9898 26.5968C16.009 26.6079 16.3315 26.8434 16.5932 26.8434C16.7994 26.8434 16.9561 26.7079 16.9561 26.5361C16.9561 26.333 16.7853 26.1925 16.4477 26.056C16.0727 25.9044 15.6998 25.6649 15.6998 25.1949C15.6998 24.8391 15.9605 24.4277 16.5963 24.4277C17.0036 24.4277 17.3159 24.6359 17.3958 24.6956C17.4362 24.7188 17.4483 24.7865 17.42 24.827L17.2674 25.0544C17.2351 25.1019 17.1764 25.1342 17.1279 25.1019C17.0956 25.0827 16.7924 24.8826 16.573 24.8826C16.3446 24.8826 16.2213 25.0342 16.2213 25.1635C16.2213 25.3505 16.3679 25.4779 16.6923 25.6113C17.0814 25.7649 17.5282 25.9974 17.5282 26.5129C17.5282 26.9242 17.1714 27.3043 16.6094 27.3043C16.1051 27.3043 15.8109 27.0678 15.7311 26.992C15.6937 26.9546 15.6745 26.9364 15.7089 26.8727Z\" fill=\"#828BA3\"/>\\n<path d=\"M18.7386 24.9458H18.1261C18.0846 24.9458 18.0513 24.9105 18.0513 24.8711V24.5446C18.0513 24.5052 18.0846 24.4678 18.1261 24.4678H19.8736C19.9171 24.4678 19.9474 24.5052 19.9474 24.5446V24.8711C19.9474 24.9105 19.9171 24.9458 19.8736 24.9458H19.2611V27.1876C19.2611 27.2291 19.2247 27.2634 19.1843 27.2634H18.8134C18.775 27.2634 18.7386 27.2291 18.7386 27.1876\" fill=\"#828BA3\"/>\\n<path d=\"M21.1068 25.9667C21.4252 25.9667 21.6576 25.7151 21.6576 25.3947C21.6576 25.0763 21.4252 24.8236 21.1068 24.8236H20.8369V25.9667H21.1068ZM20.3962 24.4628C20.3962 24.4345 20.4175 24.4082 20.4478 24.4082H21.1351C21.6809 24.4082 22.1256 24.8529 22.1256 25.3947C22.1256 25.9415 21.6809 26.3852 21.1351 26.3852H20.4478C20.4175 26.3852 20.3962 26.3599 20.3962 26.3306\" fill=\"#828BA3\"/>\\n<path d=\"M88.6252 27.0963C88.888 26.7759 89.3944 26.1209 89.6602 25.7652C89.7866 25.6146 89.8604 25.4589 89.8604 25.3225C89.8604 25.1436 89.7269 24.9586 89.4389 24.9586C89.2509 24.9586 89.0882 25.0971 88.9921 25.1941C88.9608 25.2264 88.9163 25.2264 88.885 25.1941L88.696 25.0041C88.6697 24.9798 88.6606 24.9303 88.6909 24.9C88.6909 24.9 89.0012 24.5078 89.4753 24.5078C90.0473 24.5078 90.3698 24.8707 90.3698 25.3012C90.3698 25.561 90.2525 25.7268 90.0999 25.9491C89.9281 26.1927 89.6259 26.5687 89.4136 26.8375H90.2748C90.3142 26.8375 90.3526 26.8719 90.3526 26.9133V27.1873C90.3526 27.2287 90.3142 27.2631 90.2748 27.2631H88.701C88.6586 27.2631 88.6252 27.2287 88.6252 27.1873\" fill=\"#828BA3\"/>\\n<path d=\"M92.6379 25.9046C92.6379 25.3134 92.4661 24.9798 92.1548 24.9798C91.8475 24.9798 91.6727 25.3134 91.6727 25.9046C91.6727 26.4989 91.8475 26.8315 92.1548 26.8315C92.4661 26.8315 92.6379 26.4989 92.6379 25.9046ZM91.1511 25.9046C91.1511 25.0314 91.52 24.5078 92.1548 24.5078C92.7946 24.5078 93.1635 25.0314 93.1635 25.9046C93.1635 26.7809 92.7946 27.3045 92.1548 27.3045C91.52 27.3045 91.1511 26.7809 91.1511 25.9046Z\" fill=\"#828BA3\"/>\\n<path d=\"M94.3054 25.2736L93.9507 25.3504C93.9193 25.3575 93.8789 25.3352 93.8759 25.2989L93.8496 25.1018C93.8455 25.0704 93.8516 25.0482 93.8698 25.031L94.4449 24.5469H94.7239C94.7643 24.5469 94.7946 24.5843 94.7946 24.6217V27.1869C94.7946 27.2283 94.7643 27.2627 94.7239 27.2627H94.3802C94.3347 27.2627 94.3054 27.2283 94.3054 27.1869\" fill=\"#828BA3\"/>\\n<path d=\"M95.6091 27.0963C95.8739 26.7759 96.3763 26.1209 96.6461 25.7652C96.7694 25.6146 96.8483 25.4589 96.8483 25.3225C96.8483 25.1436 96.7118 24.9586 96.4268 24.9586C96.2338 24.9586 96.072 25.0971 95.9791 25.1941C95.9477 25.2264 95.9033 25.2264 95.8719 25.1941L95.6799 25.0041C95.6536 24.9798 95.6435 24.9303 95.6748 24.9C95.6748 24.9 95.9851 24.5078 96.4622 24.5078C97.0332 24.5078 97.3536 24.8707 97.3536 25.3012C97.3536 25.561 97.2394 25.7268 97.0828 25.9491C96.914 26.1927 96.6098 26.5687 96.3975 26.8375H97.2607C97.3011 26.8375 97.3355 26.8719 97.3355 26.9133V27.1873C97.3355 27.2287 97.3011 27.2631 97.2607 27.2631H95.689C95.6415 27.2631 95.6091 27.2287 95.6091 27.1873\" fill=\"#828BA3\"/>\\n<path d=\"M41.4137 2.32018C39.2639 2.00382 37.6023 2.13622 35.2169 3.39963C34.5852 3.74935 33.3087 4.63272 32.3444 6.16195C31.3489 7.66693 30.7232 9.71062 30.4615 11.6644C29.9844 15.6102 30.4291 19.1276 30.3422 19.1215C30.2654 19.1114 30.7273 22.6712 29.6266 26.3118C28.625 30.0182 25.8556 33.2727 24.7741 34.0773C23.8311 34.904 23.0205 35.4599 22.1876 35.8814C21.3629 36.2847 20.5189 36.6587 19.4243 36.5283C20.4623 36.9285 21.4913 36.7547 22.4272 36.4464C23.3773 36.127 24.3132 35.5853 25.328 34.7069C26.4863 33.8448 29.384 30.4386 30.4311 26.5534C31.5844 22.7045 31.0972 19.0619 31.176 19.0973C31.2609 19.0993 30.8324 15.5456 31.2953 11.7806C31.547 9.90468 32.1423 7.99036 33.0499 6.6188C33.9363 5.21996 35.0562 4.44978 35.6394 4.1223C37.8276 2.95592 39.2568 2.53849 41.4137 2.32018Z\" fill=\"#828BA3\"/>\\n<path d=\"M45.8672 1.80414C47.3236 1.99719 48.3394 2.02044 50.0526 1.77483C50.9875 1.65961 53.7569 1.13504 56.2858 0.9238C58.8308 0.669097 61.0847 1.06934 61.0746 1.09158C61.0554 1.09562 63.3861 1.41704 65.4137 2.89775C67.5069 4.29559 68.8744 6.75772 69.0523 7.61179C69.5475 9.20167 69.78 10.1154 69.967 11.5698C70.3157 10.1528 70.3703 9.05814 69.8447 7.35102C69.6415 6.38173 68.1618 3.71543 65.8998 2.21248C63.7015 0.613507 61.2009 0.273902 61.2292 0.268848C61.2394 0.244591 58.8308 -0.177894 56.2221 0.086917C53.6164 0.301191 50.8531 0.828792 49.9313 0.948058C48.2293 1.20377 47.2964 1.46252 45.8672 1.80414Z\" fill=\"#828BA3\"/>\\n<path d=\"M50.0952 4.48828C51.1383 5.64759 51.961 6.2894 53.4478 7.34056C54.2261 7.91263 56.7791 9.50655 58.1679 11.7443C58.8764 12.847 59.2837 14.0356 59.3444 14.915C59.4091 15.7983 59.2019 16.332 59.2099 16.3259C59.2079 16.3199 59.1058 16.8737 58.5368 17.5327C57.9728 18.1988 56.9045 18.8568 55.6795 19.4127C53.2386 20.4982 50.4308 21.6626 49.6181 22.3206C48.0677 23.3646 47.3915 24.1601 46.3252 25.2769C47.7109 24.5866 48.5902 24.0034 50.074 23.021C50.8239 22.4125 53.5155 21.2957 56.0373 20.1728C57.2805 19.6037 58.4822 18.8932 59.1665 18.0846C59.8649 17.279 60.0135 16.5473 60.0135 16.5594C60.0024 16.5594 60.2571 15.8913 60.1762 14.8493C60.1085 13.8082 59.6405 12.4831 58.8805 11.2955C57.3472 8.84654 54.694 7.22028 53.9188 6.65326C52.4239 5.60918 51.4415 5.20691 50.0952 4.48828Z\" fill=\"#828BA3\"/>\\n<path d=\"M40.9564 21.3945C39.605 21.9929 38.9653 22.9672 38.2416 24.5045C37.8332 25.3566 36.9034 28.0067 36.3667 30.5073C35.7673 33.0159 35.6996 35.3557 35.648 35.3385C35.6844 35.3254 35.271 37.6531 35.5247 40.2436C35.6571 42.7603 36.0473 45.5701 36.3758 46.4747C36.8862 48.1445 37.5492 49.0632 38.7287 49.894C37.9383 48.6822 37.6584 47.817 37.1813 46.2483C36.8791 45.4024 36.5011 42.7219 36.3616 40.1759C36.115 37.6996 36.5122 35.4315 36.4799 35.4265C36.5314 35.4255 36.6012 33.125 37.1854 30.6932C37.717 28.2321 38.6246 25.6477 39.0077 24.8371C39.7152 23.3442 39.9548 22.4154 40.9564 21.3945Z\" fill=\"#828BA3\"/>\\n<path d=\"M44.269 28.4199C44.5682 29.4984 44.738 30.1877 45.3323 31.3662C45.6699 31.9494 46.5038 33.8324 46.7949 35.6992C47.1294 37.5519 47.1001 39.2873 47.1072 39.2853C47.1072 39.2853 47.1223 41.0085 46.9404 42.9178C46.7918 44.8291 46.4846 46.8819 46.3451 47.5571C46.1035 48.8043 46.0702 49.528 45.9832 50.6337C46.5775 49.6998 46.906 48.9963 47.1668 47.7137C47.3174 47.0214 47.6287 44.916 47.7773 42.9886C47.9602 41.0581 47.944 39.2782 47.942 39.2792C47.938 39.2832 47.9693 37.4953 47.6247 35.5506C47.3214 33.5938 46.436 31.5886 46.0702 30.972C45.492 29.8531 45.0261 29.2214 44.269 28.4199Z\" fill=\"#828BA3\"/>\\n<path d=\"M65.2087 24.459C65.6453 25.8821 66.0527 27.1415 66.5924 28.5383C66.8744 29.2903 67.3969 30.9994 67.7284 33.1664C68.0832 35.3273 67.7527 37.3336 67.7497 37.3276C67.7628 37.3276 67.4859 39.3147 66.7672 41.4271C66.0779 43.5425 65.1289 45.8056 64.8499 46.5818C64.4628 47.6138 64.0191 48.1767 63.8735 48.9833C63.7917 49.9142 63.8553 49.7312 63.9746 50.1295C64.6781 49.049 65.0904 48.2778 65.6282 46.881C65.9132 46.1199 66.8623 43.8539 67.5687 41.6858C68.3015 39.5259 68.5946 37.4388 68.5764 37.4377C68.5795 37.4489 68.9353 35.3425 68.5613 33.037C68.2055 30.7386 67.3565 29.0073 67.0664 28.2421C66.5055 26.8291 65.9415 25.5192 65.2087 24.459Z\" fill=\"#828BA3\"/>\\n<path d=\"M71.2791 14.1975C72.595 14.1753 73.4794 14.2652 74.8217 14.6817C75.5069 14.903 77.5526 16.4474 78.5836 18.4658C79.6964 20.4347 80.1785 22.5037 80.2028 22.4895C80.222 22.4835 80.7405 24.5059 81.351 26.776C81.919 29.0603 83.0874 31.4264 83.6039 32.1309C84.4711 33.4549 85.214 34.1261 86.4177 34.7012C85.5455 33.6995 85.1392 32.9587 84.3073 31.6801C83.8303 31.013 82.7235 28.7935 82.1636 26.5466C81.5592 24.322 81.0245 22.249 81.0033 22.254C80.977 22.2682 80.4979 20.1578 79.3153 18.0535C78.1914 15.8824 76.0507 14.2157 75.1228 13.9014C73.4845 13.4001 72.4849 13.6628 71.2791 14.1975Z\" fill=\"#828BA3\"/>\\n<path d=\"M71.4331 25.6787C71.5453 26.6844 71.5372 27.3019 71.6171 28.4238C71.6919 29.0303 71.5847 30.8809 71.5564 32.6598C71.5564 34.4458 71.8869 36.0356 71.8869 36.0346C71.8728 36.0326 72.1629 37.6377 72.8441 39.2922C73.5192 40.9559 74.63 42.5609 75.0657 43.0572C75.8358 43.986 76.4807 44.359 77.4277 44.6956C76.7829 43.9143 76.419 43.3988 75.7166 42.5306C75.3234 42.0778 74.2581 40.5354 73.6213 38.9708C72.9735 37.4052 72.6955 35.876 72.7056 35.877C72.7056 35.879 72.3923 34.3568 72.3953 32.6578C72.4236 30.9618 72.5378 29.0252 72.4509 28.3703C72.3559 27.1726 72.0416 26.4762 71.4331 25.6787Z\" fill=\"#828BA3\"/>\\n<path d=\"M20.3032 27.2785H21.9638V26.9854H20.3032V27.2785Z\" fill=\"#828BA3\"/>\\n<path d=\"M2.67843 64.7602C4.09749 64.7602 4.67866 64.1437 4.67866 62.4214C4.67866 60.8669 4.08031 60.2059 2.60667 60.2059H2.0629V64.7602H2.67843ZM0 64.7511H0.910666V60.215H0V59.5459H2.58039C4.85655 59.5459 5.98149 60.7072 5.98149 62.4214C5.98149 64.0911 4.9374 65.4213 2.64305 65.4213H0\" fill=\"#828BA3\"/>\\n<path d=\"M11.1044 62.2243C11.9534 62.2243 12.2486 61.8675 12.2486 61.1621C12.2486 60.5364 11.9979 60.2059 11.1853 60.2059H10.2301V62.2243H11.1044ZM10.2301 64.7512H11.1398V65.4213H8.16724V64.7512H9.07891V60.215H8.16724V59.5459H11.2035C12.9884 59.5459 13.516 60.3141 13.516 61.0549C13.516 61.7068 13.1228 62.3234 11.8908 62.4922V62.5639C12.8813 62.7246 13.1936 63.1886 13.2391 63.8405L13.2744 64.3671C13.3007 64.6885 13.3816 64.7966 13.5423 64.7966C13.6848 64.7966 13.7919 64.6703 13.9264 64.3499L14.3731 64.5278C14.1942 65.117 13.8546 65.5284 13.2391 65.5284C12.5336 65.5284 12.0777 65.1797 12.0596 64.3044L12.0515 63.7606C12.0434 63.135 11.8999 62.849 11.1317 62.849H10.2301\" fill=\"#828BA3\"/>\\n<path d=\"M16.7167 63.5373V60.215H15.895V59.5459H18.716V60.215H17.868V63.2866C17.868 64.4024 18.3956 64.8138 19.4043 64.8138C19.8601 64.8138 20.1714 64.6703 20.413 64.4297C20.699 64.1437 20.7789 63.7424 20.7789 63.0905V60.215H19.9127V59.5459H22.3061V60.215H21.5106V63.5191C21.5106 64.6086 20.7162 65.5638 19.1354 65.5638C17.5294 65.5638 16.7167 64.7602 16.7167 63.5373Z\" fill=\"#828BA3\"/>\\n<path d=\"M25.983 60.8235H25.9022V64.7512H26.7774V65.4203H24.3406V64.7512H25.1795V60.215H24.3406V59.5459H26.5278L29.277 63.7606H29.3578V60.215H28.4825V59.5459H30.9194V60.215H30.0815V65.5365H29.0637\" fill=\"#828BA3\"/>\\n<path d=\"M35.0236 64.7602H35.8271V65.4213H32.9607V64.7511H33.8724V60.215H32.9607V59.5459H35.8372V60.2059H35.0236V62.573L37.3371 60.2059H36.5771V59.5459H38.9877V60.215H38.2559L36.5326 61.9201L38.5945 64.7511H39.2828V65.4213H36.5235V64.7602H37.229L35.7645 62.6711L35.0236 63.3948\" fill=\"#828BA3\"/>\\n<path d=\"M44.3511 64.7511H45.2617V60.215H44.3511V59.5459H49.717V61.537H49.146C48.8599 60.4475 48.7528 60.2059 48.0392 60.2059H46.414V62.1172H46.9759C47.5662 62.1172 47.637 62.0282 47.7795 61.252H48.3505V63.608H47.7795C47.6551 62.8136 47.5662 62.7246 46.9759 62.7246H46.414V64.7602H48.0028C48.8417 64.7602 48.9489 64.4651 49.2258 63.234H49.7969V65.4213H44.3511\" fill=\"#828BA3\"/>\\n<path d=\"M55.1339 59.5459V60.2059H54.1889V64.7602H55.332C56.0456 64.7602 56.179 64.5985 56.6075 63.135H57.1422V65.4213H52.126V64.7511H53.0366V60.215H52.126V59.5459\" fill=\"#828BA3\"/>\\n<path d=\"M59.2727 64.7511H60.1834V60.215H59.2727V59.5459H64.6387V61.537H64.0666C63.7826 60.4475 63.6754 60.2059 62.9598 60.2059H61.3356V62.1172H61.8976C62.4868 62.1172 62.5596 62.0282 62.7011 61.252H63.2732V63.608H62.7011C62.5768 62.8136 62.4868 62.7246 61.8976 62.7246H61.3356V64.7602H62.9245C63.7644 64.7602 63.8715 64.4651 64.1474 63.234H64.7195V65.4213H59.2727\" fill=\"#828BA3\"/>\\n<path d=\"M69.743 62.4386C70.779 62.4386 71.0205 61.9919 71.0205 61.2874C71.0205 60.6526 70.7436 60.2059 69.743 60.2059H69.1092V62.4386H69.743ZM67.0474 64.7511H67.958V60.215H67.0474V59.5459H69.7703C71.6088 59.5459 72.288 60.3312 72.288 61.2783C72.288 62.1708 71.6805 63.0723 69.8329 63.0723H69.1092V64.7511H70.1099V65.4203H67.0474\" fill=\"#828BA3\"/>\\n<path d=\"M74.3557 64.7511H75.2674V60.215H74.3557V59.5459H77.2504V60.215H76.4186V62.0636H78.9363V60.215H78.1136V59.5459H80.9992V60.215H80.0876V64.7511H80.9992V65.4213H78.1136V64.7511H78.9363V62.6893H76.4186V64.7511H77.2504V65.4213H74.3557\" fill=\"#828BA3\"/>\\n<path d=\"M84.8714 62.8401H86.5239L85.7376 60.5266H85.7022L84.8714 62.8401ZM86.7281 63.4385H84.6581L84.1932 64.7504H84.9341V65.4205H82.7822V64.7504H83.425L85.399 59.5088H86.5411L88.4433 64.7504H89.2105V65.4205H86.3097V64.7504H87.1839\" fill=\"#828BA3\"/>\\n<path d=\"M92.6288 60.8235H92.5479V64.7512H93.4232V65.4203H90.9854V64.7512H91.8253V60.215H90.9854V59.5459H93.1726L95.9238 63.7606H96.0036V60.215H95.1293V59.5459H97.5662V60.215H96.7263V65.5365H95.7095\" fill=\"#828BA3\"/>\\n<path d=\"M100.859 64.7511H101.848V60.117H101.528C100.768 60.117 100.608 60.3676 100.215 61.7513H99.6711V59.5459H105.172V61.7513H104.626C104.235 60.3676 104.073 60.117 103.314 60.117H102.991V64.7511H103.982V65.4213H100.859\" fill=\"#828BA3\"/>\\n<path d=\"M107.686 61.9613H108.144V59.768H108.035C107.68 59.768 107.602 59.8893 107.435 60.612H107.087V59.4375H109.925V60.612H109.577C109.412 59.8893 109.336 59.768 108.98 59.768H108.872V61.9613H109.328V62.3454H107.686\" fill=\"#828BA3\"/>\\n<path d=\"M110.36 61.9613H110.735V59.8236H110.36V59.4375H111.761L112.387 61.2326H112.404L112.994 59.4375H114.365V59.8236H113.975V61.9613H114.365V62.3454H112.888V61.9613H113.253V59.9136H113.214L112.353 62.3514H112.06L111.171 59.9136H111.129V61.9613H111.5V62.3454H110.36\" fill=\"#828BA3\"/>\\n<path d=\"M36.1516 13.2183C36.4103 13.2749 36.5508 13.0222 36.7984 12.6927C37.0602 12.344 37.4059 11.8972 38.0598 11.6092C38.6097 11.3666 39.2171 11.2281 39.7619 11.2473C40.2228 11.2635 40.5341 11.3019 40.5907 11.0027C40.6331 10.7763 40.246 10.5924 39.8872 10.5257C39.4233 10.4751 38.448 10.5418 37.6394 10.8976C36.7519 11.2878 36.1839 12.0943 36.0545 12.3692C35.9232 12.7028 35.7008 13.1192 36.1516 13.2183Z\" fill=\"#828BA3\"/>\\n<path d=\"M37.9624 13.1781C38.3344 13.1457 39.7575 12.7495 40.1385 12.2724C40.28 12.14 40.3194 11.8136 40.1517 11.6751C39.7898 11.3749 39.3026 11.9005 38.7063 12.1431C38.1888 12.3533 37.5905 12.2886 37.4823 12.6333C37.3388 13.0952 37.7906 13.1993 37.9624 13.1781Z\" fill=\"#828BA3\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed17()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-eowwfr\",\"data-framer-name\":\"Adidas\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:58,intrinsicWidth:58,layoutDependency:layoutDependency,layoutId:\"M0ai7Cbv7\",svg:'<svg width=\"58\" height=\"58\" viewBox=\"0 0 58 58\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.3259 20.3733C21.3336 12.8823 24.0465 5.6467 28.965 -0.00147629C33.8834 5.6467 36.595 12.8823 36.604 20.3733C36.5839 21.7571 36.4714 23.1381 36.2672 24.5068H21.6553C21.4536 23.1379 21.3438 21.757 21.3259 20.3733ZM3.04782 24.5068C1.02034 20.4328 -0.0230935 15.9397 0.000410491 11.3888C6.93792 12.4032 13.2754 15.8913 17.8457 21.2107C18.7204 22.252 19.521 23.3534 20.2417 24.5068H3.04782ZM40.0846 21.2107C44.6547 15.8914 50.9922 12.4032 57.9296 11.3888C57.9519 15.9401 56.9066 20.4332 54.8775 24.5068H37.6945C38.4133 23.3536 39.2119 22.2522 40.0846 21.2107ZM5.74233 28.908C5.21608 28.1974 4.72256 27.4634 4.26318 26.7077H53.6693C53.2116 27.4633 52.7196 28.1977 52.1952 28.908H5.74233ZM9.77074 33.3097C8.98749 32.6168 8.24222 31.8824 7.53807 31.1089H50.4116C49.7062 31.8823 48.9596 32.6172 48.175 33.3097H9.77074ZM24.8322 40.3512C20.434 39.6958 16.2446 38.0398 12.5863 35.5106H24.4119C24.6866 37.1096 24.8273 38.7288 24.8322 40.3512ZM28.965 40.7487C27.5699 39.1329 26.3451 37.3777 25.3099 35.5106H32.6187C31.5839 37.3776 30.3595 39.1329 28.965 40.7487ZM33.098 40.3512C33.099 38.7291 33.2357 37.11 33.5066 35.5106H45.343C41.685 38.0397 37.4959 39.6953 33.098 40.3512ZM19.367 47.8989V43.7694L21.8053 43.7689V56.9236H19.367V56.2337C18.5415 56.8098 17.544 57.1354 16.4694 57.1354C13.6667 57.1354 11.4016 54.8886 11.4016 52.0656C11.4016 49.2616 13.6667 46.9967 16.4694 46.9967C17.544 46.9967 18.5415 47.3224 19.367 47.8989ZM22.9955 46.2088V43.7694H25.4327V46.2088H22.9955ZM34.3971 47.8989V43.7694L36.8342 43.7689V56.9236H34.3971V56.2337C33.5716 56.8098 32.573 57.1354 31.4984 57.1354C28.6957 57.1354 26.4318 54.8886 26.4318 52.0656C26.4318 49.2616 28.6957 46.9967 31.4984 46.9967C32.573 46.9967 33.5716 47.3224 34.3971 47.8989ZM2.20471e-05 52.0656C2.20471e-05 49.2616 2.26517 46.9967 5.06782 46.9967C6.14242 46.9967 7.1399 47.3219 7.9654 47.8984V47.1105H10.4037V56.9236H7.9654V56.2337C7.1399 56.8098 6.14242 57.1354 5.06782 57.1354C2.26517 57.1354 2.20471e-05 54.8886 2.20471e-05 52.0656ZM37.8333 52.0656C37.8333 49.2616 40.0973 46.9967 42.9 46.9967C43.9745 46.9967 44.9732 47.3219 45.7987 47.8984V47.1105H48.2358V56.9236H45.7987V56.2337C44.9732 56.8098 43.9745 57.1354 42.9 57.1354C40.0973 57.1354 37.8333 54.8886 37.8333 52.0656ZM49.3492 50.2225C49.3492 48.3981 50.866 46.9967 53.419 46.9967C55.8949 46.9967 57.4312 48.283 57.5657 50.2037H55.1082C55.07 49.4743 54.5707 48.8591 53.342 48.8591C52.4978 48.8591 51.8259 49.1471 51.8259 49.7999C51.8259 50.395 52.5171 50.5881 53.5152 50.7803L55.0698 51.0866C57.0661 51.4709 57.9301 52.3732 57.9301 53.9096C57.9301 56.1178 56.03 57.1166 53.7267 57.1166C50.9049 57.1166 49.2117 55.7144 49.1388 53.7364H51.6335C51.6527 54.4475 52.171 55.2725 53.7641 55.2725C54.8586 55.2725 55.3198 54.7925 55.3198 54.3124C55.3198 53.7744 54.916 53.5062 53.9949 53.3335L52.7095 53.1024C51.1547 52.8143 49.3492 52.4504 49.3492 50.2225ZM22.9955 56.924V47.111H25.4327V56.924H22.9955ZM7.98463 52.0656C7.98463 50.51 6.73751 49.2614 5.18209 49.2614C3.62725 49.2614 2.3806 50.51 2.3806 52.0656C2.3806 53.6211 3.62725 54.8692 5.18209 54.8692C6.73751 54.8692 7.98463 53.6211 7.98463 52.0656ZM19.3862 52.0656C19.3862 50.51 18.139 49.2614 16.5847 49.2614C15.0293 49.2614 13.7822 50.51 13.7822 52.0656C13.7822 53.6211 15.0293 54.8692 16.5847 54.8692C18.139 54.8692 19.3862 53.6211 19.3862 52.0656ZM34.4164 52.0656C34.4164 50.51 33.1686 49.2614 31.6138 49.2614C30.0589 49.2614 28.8112 50.51 28.8112 52.0656C28.8112 53.6211 30.0589 54.8692 31.6138 54.8692C33.1686 54.8692 34.4164 53.6211 34.4164 52.0656ZM45.818 52.0656C45.818 50.51 44.5696 49.2614 43.0154 49.2614C41.4605 49.2614 40.2127 50.51 40.2127 52.0656C40.2127 53.6211 41.4605 54.8692 43.0154 54.8692C44.5696 54.8692 45.818 53.6211 45.818 52.0656Z\" fill=\"#495677\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed18()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-7a1z6z\",\"data-framer-name\":\"Bershka\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:125,layoutDependency:layoutDependency,layoutId:\"luJUOwSbq\",svg:'<svg width=\"125\" height=\"28\" viewBox=\"0 0 125 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M94.9833 17.363L96.382 15.6271L96.3907 15.6164L96.4112 15.591L96.4356 15.5607L96.4428 15.5517L96.4737 15.5134C97.614 14.0983 98.7357 12.7063 99.856 11.3132C100.374 10.6696 100.89 10.0248 101.406 9.38002L101.406 9.37923C101.853 8.82059 102.3 8.26197 102.748 7.70414C102.814 7.62264 102.879 7.55033 103.013 7.55132C103.797 7.55718 104.581 7.55657 105.39 7.55594C105.645 7.55575 105.902 7.55555 106.163 7.55555L105.833 7.97141C105.56 8.31457 105.298 8.64425 105.036 8.97368L104.387 9.78847L104.383 9.79271L104.381 9.79536L104.38 9.79694L104.379 9.79798L104.379 9.79849C103.108 11.3941 101.837 12.9896 100.561 14.5821C100.469 14.6969 100.482 14.7794 100.542 14.8927C100.877 15.5265 101.212 16.161 101.546 16.7955L101.547 16.797L101.548 16.7984L101.548 16.7999L101.549 16.8014C101.812 17.3009 102.076 17.8003 102.339 18.2995C102.686 18.9563 103.034 19.6128 103.382 20.2693C103.746 20.9573 104.11 21.6453 104.474 22.3338C104.702 22.7659 104.93 23.1984 105.158 23.6309L105.159 23.6341L105.162 23.6389C105.688 24.6374 106.214 25.6359 106.747 26.6302C106.886 26.8899 106.824 26.9212 106.564 26.9172C105.689 26.904 104.814 26.908 103.94 26.9145C103.78 26.9157 103.696 26.8682 103.62 26.7211C102.293 24.1635 100.961 21.608 99.6284 19.0525L98.7609 17.3883C98.7249 17.3192 98.6907 17.249 98.6535 17.1727L98.6528 17.1712L98.6526 17.1709L98.6526 17.1708C98.6337 17.1319 98.614 17.0915 98.5929 17.0489C98.3129 17.2954 98.0768 17.5777 97.8415 17.859L97.8415 17.859C97.7379 17.9829 97.6345 18.1065 97.5276 18.2267C97.113 18.6932 96.7019 19.1629 96.2907 19.6326L96.2907 19.6327L96.2906 19.6327L96.2906 19.6328L96.2905 19.6328L96.2905 19.6329C95.8828 20.0987 95.4751 20.5645 95.0639 21.0272C94.9804 21.1214 94.9822 21.2148 94.984 21.3118C94.9843 21.3269 94.9846 21.3421 94.9846 21.3575L94.9837 21.9808C94.9816 23.5222 94.9794 25.0637 94.9886 26.6051C94.9898 26.8456 94.9436 26.9261 94.6857 26.9189C93.9705 26.8988 93.2546 26.904 92.5392 26.9162C92.3397 26.9197 92.2949 26.8598 92.2952 26.667C92.2999 17.8612 92.2999 9.05543 92.2949 0.249422C92.2949 0.0543575 92.3429 -0.000558853 92.5404 0.0026722C93.2558 0.0150967 93.972 0.0205631 94.6869 0.000434875C94.9466 -0.00677109 94.9886 0.0774689 94.9883 0.315771C94.9824 5.02892 94.9828 9.74224 94.9832 14.4553V14.4722L94.9833 16.8936V17.363ZM74.8152 9.86707L74.8159 9.86641L74.8161 9.86621L74.818 9.86447L74.8183 9.86415C75.0393 9.6562 75.2434 9.46404 75.45 9.27463C76.2859 8.50878 77.1924 7.84854 78.2917 7.51531C79.9827 7.00218 81.6474 7.05188 83.2496 7.84829C84.4921 8.46604 85.2304 9.50075 85.62 10.8088C85.7793 11.3433 85.859 11.8875 85.859 12.4449L85.8588 14.7017C85.8583 18.6598 85.8579 22.6179 85.8648 26.576C85.8652 26.8407 85.8101 26.9294 85.5305 26.9202C84.8454 26.8976 84.1589 26.8971 83.4738 26.9177C83.2161 26.9254 83.1696 26.8489 83.1699 26.6068L83.1732 24.6409C83.1804 20.5659 83.1877 16.4908 83.1639 12.4158C83.1574 11.2625 82.7 10.281 81.5688 9.78776C80.8477 9.47317 80.0682 9.42173 79.2922 9.54821C77.6303 9.81857 76.3113 10.7146 75.089 11.8222C74.5922 12.2722 74.4501 12.7465 74.4538 13.3958C74.4716 16.2677 74.4714 19.14 74.4711 22.0122V22.0159C74.471 23.545 74.4709 25.0741 74.4734 26.6031C74.4737 26.8404 74.4332 26.9262 74.173 26.9187C73.4777 26.8978 72.7815 26.8991 72.0862 26.9177C71.836 26.9244 71.7783 26.8571 71.7788 26.6091C71.7849 19.252 71.7847 11.8947 71.7846 4.53756L71.7845 1.20837C71.7845 1.11405 71.7854 1.01972 71.7863 0.92542C71.7883 0.70149 71.7904 0.477706 71.7808 0.254416C71.7726 0.0682964 71.8126 -0.00227547 72.0203 0.00170135C72.7457 0.0158653 73.4715 0.0168591 74.1966 0.00120354C74.422 -0.00351715 74.4739 0.0568638 74.4734 0.27976C74.467 2.84993 74.4676 5.42009 74.4682 7.99026V7.99861L74.4685 9.79049V10.1928C74.5899 10.0792 74.7046 9.97113 74.8152 9.86707ZM55.2897 25.9383C56.8721 26.8992 58.5986 27.3055 60.7025 27.3028C61.8963 27.3353 63.3244 27.025 64.3889 26.4517C65.2559 25.9848 66.0006 25.3795 66.5364 24.5418C67.0256 23.7767 67.2632 22.9408 67.3223 22.0296C67.4068 20.7228 67.125 19.5285 66.3187 18.4975C65.6095 17.5913 64.6861 16.98 63.5739 16.6256C62.69 16.3442 61.8152 16.035 60.9404 15.7259C60.4335 15.5467 59.9265 15.3676 59.4178 15.1938L59.394 15.1857C58.5422 14.8945 57.6961 14.6052 56.9799 14.0252C55.9777 13.2141 55.8756 12.2005 56.34 11.0642C56.7906 9.96137 57.7935 9.64926 58.8602 9.52999C60.3032 9.36897 61.6167 9.74444 62.8197 10.5565C63.3122 10.8891 63.7172 11.3098 64.1224 11.7306L64.123 11.7312C64.2256 11.8379 64.3283 11.9445 64.4324 12.0497C64.5696 12.1881 64.6247 12.1923 64.7669 12.0641C65.095 11.7687 65.4302 11.4812 65.7654 11.1936L65.7663 11.1929L65.7667 11.1925L65.767 11.1923C65.9546 11.0314 66.1422 10.8704 66.3286 10.7081L66.3463 10.6931C66.4056 10.6432 66.4736 10.5861 66.392 10.4882C66.3492 10.4366 66.3085 10.3834 66.2679 10.3301L66.2679 10.3301L66.2678 10.33L66.2677 10.3299L66.2676 10.3297L66.2675 10.3296C66.2127 10.2578 66.1579 10.1861 66.098 10.1187C65.4768 9.41891 64.7731 8.82875 63.9476 8.37103C62.4822 7.55822 60.9312 7.13479 59.2509 7.19691C57.8196 7.24959 56.4934 7.61114 55.3145 8.45875C54.7892 8.83645 54.3872 9.31604 54.0703 9.86694C53.5229 10.8189 53.3584 11.8583 53.4156 12.943C53.5224 14.9734 54.6948 16.2032 56.3127 16.892C57.0572 17.2093 57.8303 17.4586 58.6038 17.708L58.6038 17.708L58.6039 17.7081L58.604 17.7081L58.604 17.7081C59.0761 17.8603 59.5483 18.0126 60.0142 18.1804C60.2812 18.2766 60.5513 18.3649 60.8214 18.4533C61.6053 18.7096 62.3894 18.966 63.0992 19.4147C63.673 19.7775 64.1802 20.1969 64.4448 20.8336C64.9517 22.0537 64.5619 23.2417 63.5353 24.0888C62.8925 24.6198 62.1264 24.8492 61.3019 24.9411C59.8236 25.1059 58.4279 24.884 57.1355 24.1293C56.2968 23.64 55.6318 22.9554 55.0427 22.1936L55.0364 22.1854C54.9556 22.0803 54.9134 22.0254 54.7728 22.1342C54.1779 22.5946 53.5736 23.0422 52.9668 23.4872C52.8425 23.5784 52.8127 23.652 52.9141 23.7787C53.5912 24.6255 54.3566 25.3718 55.2897 25.9383ZM44.9914 11.1392L44.9919 11.1383L44.9919 11.1383L44.992 11.1381L44.9922 11.1378C45.1149 10.9411 45.2344 10.7493 45.3589 10.5608C45.8795 9.7733 46.4545 9.03528 47.2129 8.45481C48.0769 7.79258 49.0637 7.45488 50.1292 7.3202L50.2035 7.31077C50.4629 7.2777 50.7232 7.24451 50.9877 7.25336C51.1204 7.25758 51.1537 7.2956 51.1527 7.42357C51.1475 8.20856 51.1472 8.99378 51.153 9.77926C51.154 9.90972 51.1134 9.93557 50.9867 9.946C50.5752 9.98005 50.1642 10.0228 49.7607 10.1237C48.5992 10.4142 47.649 11.0249 46.9023 11.9625C45.8956 13.2261 45.2836 14.6842 44.7891 16.2018C44.7655 16.2741 44.7671 16.3559 44.7687 16.4359L44.7692 16.4609C44.7693 16.4725 44.7695 16.484 44.7695 16.4955L44.7691 17.5925C44.7681 20.5963 44.7671 23.5999 44.7742 26.6036C44.7747 26.8399 44.7369 26.9261 44.474 26.9184C43.7591 26.8973 43.043 26.9062 42.3276 26.9174C42.134 26.9204 42.0806 26.867 42.0808 26.6692C42.0863 20.3776 42.0863 14.0864 42.0811 7.79482C42.0811 7.60199 42.1273 7.54732 42.3236 7.55055C43.0589 7.56297 43.7947 7.56273 44.5299 7.55055C44.7238 7.54732 44.775 7.59776 44.7737 7.79258C44.7643 8.83905 44.7674 9.88552 44.7705 10.932V10.9329L44.771 11.1025C44.771 11.1229 44.7693 11.1438 44.7676 11.1652C44.7615 11.24 44.7549 11.3211 44.8212 11.4111C44.8785 11.3202 44.9344 11.2306 44.9897 11.1419L44.9914 11.1392ZM12.4837 23.7658C13.5077 23.3334 14.3282 22.6657 14.7725 21.6046C15.02 21.0137 15.1403 20.3992 15.1515 19.7621C15.1666 18.8844 15.069 18.0236 14.6535 17.2349C14.0785 16.1436 13.178 15.4006 12.0754 14.8775C10.8966 14.3181 9.63151 14.1601 8.35725 14.1266C7.257 14.0979 6.15583 14.1031 5.05465 14.1083C4.44701 14.1111 3.83936 14.114 3.23188 14.1111C3.02786 14.1099 2.99134 14.1775 2.99233 14.3651C2.99783 15.6094 2.99725 16.8535 2.99667 18.0976C2.99649 18.4825 2.99631 18.8675 2.99631 19.2524H2.9978C2.9978 19.6479 2.99811 20.0433 2.99842 20.4386V20.4387C2.99938 21.6625 3.00035 22.8861 2.99208 24.1099C2.99034 24.3465 3.0552 24.4059 3.28729 24.4031C4.16084 24.3921 5.0344 24.3938 5.90798 24.3954C6.99057 24.3975 8.07319 24.3995 9.15589 24.3775C10.3022 24.3542 11.4236 24.2133 12.4837 23.7658ZM2.99824 5.95347C2.99799 6.32081 2.99773 6.68816 2.9978 7.05551C2.9978 7.41486 2.99823 7.77425 2.99867 8.13366C2.99994 9.18539 3.00122 10.2373 2.99159 11.289C2.9896 11.5301 3.05992 11.5825 3.28828 11.5815C4.23694 11.5765 5.1856 11.5768 6.13425 11.5771C6.92478 11.5774 7.71531 11.5776 8.50584 11.5748C9.81837 11.5703 11.0909 11.3596 12.2404 10.6904C13.2142 10.1231 13.9781 9.35901 14.3036 8.23434C14.5586 7.35394 14.5166 6.47429 14.3153 5.59364C14.0308 4.3482 13.297 3.49165 12.1062 3.01579C11.2651 2.67959 10.3792 2.57125 9.49384 2.55658C8.22563 2.53579 6.95706 2.53827 5.6885 2.54074C4.87985 2.54231 4.07121 2.54389 3.26269 2.53944C3.02662 2.53819 2.99159 2.611 2.99308 2.82172C2.99969 3.86539 2.99897 4.90932 2.99824 5.95333V5.95335V5.95347ZM15.356 14.0587C16.7391 15.0947 17.6364 16.4527 17.9786 18.161C18.2703 19.6175 18.1821 21.0495 17.697 22.453C17.2957 23.6134 16.5646 24.5227 15.5647 25.2296C14.3814 26.0663 13.0264 26.4323 11.6321 26.6969C10.6466 26.8843 9.64641 26.928 8.64773 26.9328C6.69696 26.9426 4.74619 26.9407 2.79533 26.9389H2.79529H2.79429C2.02241 26.9382 1.25051 26.9375 0.478599 26.9375C0.00522476 26.9375 0.00522412 26.9375 0.00522412 26.4768V13.4777H0.00621849L0.00641506 10.9844C0.00683506 7.4328 0.00725508 3.88108 5.84227e-06 0.329363C-0.000491139 0.0677032 0.0611345 -0.000137329 0.326274 0.000608444C1.71527 0.00506088 3.10427 0.0045769 4.49329 0.00409291C6.20499 0.00349649 7.91672 0.00290006 9.62852 0.0115414C11.0191 0.0184994 12.4064 0.142498 13.6749 0.772173C16.0398 1.9453 17.3777 3.81693 17.455 6.51007C17.4928 7.8216 17.2671 9.06927 16.5644 10.1994C16.0244 11.0679 15.2777 11.7142 14.3871 12.2085C14.0254 12.4093 13.6463 12.566 13.2664 12.723C13.2098 12.7464 13.1531 12.7698 13.0965 12.7934C13.0833 12.7989 13.0676 12.8021 13.0518 12.8053C13.0074 12.8144 12.9619 12.8237 12.967 12.8846C12.9728 12.9491 13.0382 12.964 13.0959 12.977L13.1014 12.9783C13.9346 13.1676 14.6803 13.5525 15.356 14.0587ZM121.224 19.1546C121.224 19.9691 121.224 20.7842 121.224 21.5987C121.224 21.7165 121.223 21.8204 121.128 21.9243C119.979 23.1819 118.613 24.1209 117.008 24.6897C116.209 24.973 115.37 25.1382 114.534 24.9062C113.492 24.6172 112.625 24.0364 112.239 22.9831C111.9 22.054 112.029 21.1264 112.581 20.2882C113.338 19.1392 114.49 18.5165 115.708 17.9929C117.411 17.2613 119.198 16.8272 121.019 16.5136C121.219 16.4791 121.227 16.5561 121.226 16.7102C121.222 17.3114 121.223 17.9129 121.224 18.5144C121.224 18.7278 121.224 18.9412 121.224 19.1546ZM124.313 26.6538C124.005 25.2841 123.908 23.8941 123.908 22.4943C123.908 21.5497 123.908 20.605 123.908 19.6604C123.909 17.2956 123.909 14.9308 123.905 12.5659C123.904 11.6783 123.662 10.8413 123.221 10.0787C122.317 8.51571 120.872 7.71955 119.162 7.37365C117.992 7.13659 116.803 7.12715 115.614 7.30979C113.139 7.69023 111.29 8.97492 110.034 11.1306L110.025 11.1445C109.963 11.2513 109.929 11.3091 110.09 11.3883C110.755 11.7143 111.413 12.055 112.065 12.4061C112.253 12.5075 112.318 12.4762 112.405 12.2823C112.844 11.3087 113.508 10.5215 114.485 10.066C115.921 9.39562 117.434 9.32405 118.95 9.71692C120.081 10.0101 120.829 10.7352 121.112 11.9141C121.224 12.3838 121.221 12.8544 121.218 13.3251C121.217 13.5458 121.216 13.7666 121.226 13.9872C121.232 14.1045 121.17 14.1121 121.101 14.1205C121.087 14.1223 121.072 14.1241 121.058 14.1269C121.014 14.1353 120.97 14.1437 120.926 14.152C120.864 14.1638 120.802 14.1755 120.74 14.1871L120.74 14.1872C120.351 14.2609 119.962 14.3346 119.575 14.4156C117.178 14.9178 114.809 15.5189 112.634 16.6896C111.677 17.2044 110.838 17.8811 110.25 18.8161C109.479 20.04 109.291 21.3818 109.438 22.8027C109.589 24.2568 110.255 25.4091 111.406 26.2778C112.238 26.9063 113.203 27.2067 114.244 27.2753C115.452 27.3548 116.626 27.2251 117.765 26.7877C119.047 26.2952 120.118 25.5078 121.059 24.525C121.078 24.506 121.095 24.4842 121.112 24.4621C121.165 24.3927 121.222 24.3202 121.33 24.32L121.389 24.8492C121.459 25.4728 121.528 26.0934 121.6 26.7134C121.603 26.7322 121.602 26.7528 121.602 26.7737C121.6 26.8551 121.599 26.941 121.748 26.9398C122.386 26.9358 123.023 26.9363 123.665 26.9369C123.892 26.9371 124.12 26.9373 124.348 26.9373C124.344 26.9018 124.341 26.8685 124.338 26.8368C124.332 26.7705 124.326 26.7113 124.313 26.6538ZM26.3945 11.3942C25.5899 12.5313 25.2617 13.8267 25.1233 15.1871C25.1026 15.3912 25.1595 15.4582 25.376 15.4568C26.5541 15.4498 27.7322 15.4505 28.9102 15.4513C29.2812 15.4515 29.6521 15.4518 30.023 15.4518C30.3875 15.4518 30.7521 15.4516 31.1166 15.4513C32.3011 15.4506 33.4856 15.4499 34.67 15.4568C34.8735 15.458 34.9585 15.4145 34.9309 15.2006C34.9161 15.0862 34.9111 14.9704 34.906 14.8547C34.9029 14.7824 34.8997 14.71 34.8942 14.638C34.7888 13.2541 34.4531 11.9585 33.4974 10.888C32.9994 10.3301 32.4222 9.90324 31.6963 9.69973C30.9434 9.48851 30.184 9.46739 29.4072 9.57573C28.1357 9.75315 27.1343 10.349 26.3945 11.3942ZM37.7745 22.5635C37.8674 22.6104 37.9603 22.6574 38.0532 22.7042C38.0602 22.7078 38.0672 22.7112 38.0742 22.7146C38.1638 22.7587 38.2382 22.7953 38.1556 22.9386C37.5391 24.0128 36.7971 24.9903 35.8382 25.7756C34.9016 26.5429 33.7921 26.9581 32.6036 27.1497C31.0411 27.401 29.4895 27.3895 27.9707 26.8786C26.7867 26.48 25.7875 25.7955 24.924 24.9001C23.6997 23.6299 23.0153 22.091 22.6463 20.3881C22.3742 19.1317 22.331 17.8636 22.3623 16.5834C22.3916 15.38 22.5556 14.2006 22.8816 13.0454C23.3026 11.5532 24.0408 10.2347 25.1513 9.14708C26.365 7.95855 27.843 7.34851 29.532 7.22054C30.8033 7.12437 32.0427 7.25731 33.2268 7.74013C34.7063 8.34321 35.7833 9.40129 36.5322 10.7958C37.3122 12.2477 37.5533 13.8331 37.6079 15.4545C37.6201 15.8186 37.6175 16.1832 37.6149 16.5479C37.6126 16.8593 37.6104 17.1706 37.6174 17.4817C37.6223 17.6989 37.5754 17.763 37.346 17.76C36.5979 17.749 35.8496 17.7506 35.1014 17.7522C34.8359 17.7527 34.5705 17.7533 34.305 17.7533H31.2935C30.8458 17.7533 30.3981 17.7535 29.9503 17.7536C28.4004 17.7542 26.8503 17.7548 25.3004 17.7486C25.0902 17.7476 25.0162 17.7804 25.0221 18.0155C25.0639 19.7032 25.4483 21.2834 26.4512 22.6719C27.3331 23.8923 28.4754 24.7637 29.9949 24.9449C32.283 25.2175 34.263 24.4819 35.6985 22.4185C35.7459 22.3503 35.7894 22.2691 35.8328 22.1881C35.9281 22.0103 36.0228 21.8335 36.1565 21.7975C36.2937 21.7604 36.4717 21.871 36.6482 21.9807C36.721 22.026 36.7936 22.0711 36.863 22.1056C37.1676 22.2569 37.471 22.4102 37.7745 22.5635Z\" fill=\"#495677\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed19()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-14af85n\",\"data-framer-name\":\"La mansion\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:83,intrinsicWidth:132,layoutDependency:layoutDependency,layoutId:\"xYMkpcXos\",style:{opacity:.8},svg:'<svg width=\"132\" height=\"83\" viewBox=\"0 0 132 83\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M131.093 0C131.386 0.463274 131.224 0.879168 131.025 1.33718C127.541 9.3024 124.061 17.2697 120.582 25.2365C118.529 29.9385 116.475 34.6403 114.421 39.3415C114.408 39.3695 114.395 39.3969 114.382 39.4253C114.357 39.4767 114.331 39.5316 114.301 39.5994C114.118 39.2572 114.008 38.9782 114.186 38.5781C119.773 25.8275 125.349 13.0717 130.92 0.315869C130.949 0.25469 130.972 0.189572 130.995 0.124129C131.01 0.0825754 131.024 0.0408907 131.04 0H131.093Z\" fill=\"#495677\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.10466 36.7521C0.181618 36.4011 0.258883 36.0486 0.371412 35.7089C1.06192 33.5979 2.15524 31.7395 3.90767 30.3339C4.69235 29.7021 5.57118 29.2862 6.59126 29.1967C7.21377 29.1441 7.77873 29.2494 8.23907 29.739C8.24789 29.7248 8.25671 29.7118 8.26513 29.6994C8.28168 29.675 8.29668 29.6529 8.30708 29.6284C8.547 29.0204 8.78783 28.4124 9.02881 27.804C9.36577 26.9533 9.70311 26.1016 10.0386 25.2484C10.2374 24.743 10.2008 24.6693 9.70903 24.4219C9.48631 24.3122 9.26359 24.1982 8.99422 24.0603L8.90866 24.0165C10.2269 23.8164 11.4458 23.5058 12.6437 22.9794L12.6346 23.0166C12.6254 23.0543 12.6204 23.0748 12.6123 23.0952C11.5931 24.9549 10.8216 26.9242 10.0498 28.8943C9.91056 29.2497 9.77129 29.6052 9.63056 29.9601C9.11525 31.2632 8.59862 32.5649 8.082 33.8667C7.56547 35.1682 7.04894 36.4697 6.53371 37.7726C6.51572 37.8179 6.49944 37.8631 6.47996 37.9173C6.46546 37.9577 6.44918 38.003 6.42909 38.0569C7.35971 37.6963 8.12502 37.1303 8.91128 36.5488C9.12387 36.3915 9.33799 36.2332 9.55732 36.0774C9.54862 36.1142 9.54281 36.1446 9.53797 36.1699C9.52828 36.2206 9.52245 36.2511 9.50501 36.2722C8.52156 37.5725 7.40209 38.7149 5.9269 39.4572C5.64965 39.5994 5.32532 39.6836 5.01668 39.731C4.59296 39.7941 4.42556 39.552 4.58772 39.1466C4.80482 38.5991 5.02191 38.0503 5.239 37.5015C5.4561 36.9526 5.67319 36.4038 5.89028 35.8563C5.90598 35.8195 5.91644 35.7773 5.87982 35.7142C5.84843 35.7642 5.81835 35.8155 5.78828 35.8668C5.7582 35.9182 5.72812 35.9695 5.69673 36.0195C5.1213 36.9829 4.4988 37.9095 3.6775 38.6833C3.13346 39.194 2.54234 39.6257 1.77336 39.7204C0.852679 39.831 0.282482 39.4256 0.0627739 38.5201C0.0470804 38.4622 0.0261558 38.4096 0.00523116 38.3569V37.2093L0 37.2146C0.0368199 37.0615 0.0707206 36.9069 0.10466 36.7521ZM1.55888 37.1935V37.4041C1.5955 37.8463 1.64258 38.2938 2.09246 38.5201C2.53188 38.736 2.93991 38.5623 3.26424 38.278C3.68797 37.9095 4.10123 37.5199 4.44648 37.0777C5.53456 35.6931 6.37155 34.1559 7.15622 32.5871C7.44917 32.0027 7.61133 31.3657 7.53287 30.6971C7.46486 30.0917 7.06206 29.8022 6.46571 29.8864C5.9269 29.9654 5.46656 30.2181 5.0533 30.5497C3.81874 31.5447 2.98699 32.845 2.3331 34.2717C1.90937 35.1983 1.5955 36.1617 1.55888 37.1935Z\" fill=\"#495677\"/>\\n<path d=\"M39.6471 22.2318V22.2424L39.6419 22.2318H39.6471Z\" fill=\"#495677\"/>\\n<path d=\"M39.6471 22.2318V10.0656H40.5835C40.826 10.0656 41.0686 10.0662 41.311 10.0668C41.7952 10.068 42.2785 10.0691 42.7596 10.0656C42.9584 10.0656 43.0421 10.1235 43.1101 10.3078C44.0883 13.0242 45.077 15.7407 46.0657 18.4572C46.0908 18.5245 46.1192 18.5918 46.159 18.6859L46.1913 18.7625C46.4213 18.1181 46.6429 17.5048 46.8623 16.8978L46.8626 16.897L46.8659 16.8877C46.9446 16.6699 47.0231 16.4529 47.1015 16.2356C47.3369 15.5793 47.5729 14.9236 47.8088 14.2678C48.2808 12.9565 48.7528 11.6449 49.2201 10.3288C49.2933 10.1183 49.398 10.0603 49.6072 10.0603C50.2349 10.0674 50.8625 10.065 51.4902 10.0627C51.8041 10.0615 52.1182 10.0603 52.432 10.0603H52.7093V22.2371H50.5697V12.5347L50.5227 12.5241C50.4023 12.8479 50.2807 13.1703 50.1591 13.4928C50.0375 13.8152 49.9158 14.1377 49.7955 14.4615L49.7938 14.466C48.8475 16.9809 47.9013 19.4958 46.9602 22.016C46.8922 22.2055 46.8033 22.2687 46.6098 22.2581C46.2645 22.2424 45.9192 22.2371 45.574 22.2581C45.37 22.2687 45.3124 22.1686 45.2549 22.0054C44.2012 19.1497 43.1423 16.2939 42.0834 13.4381L42.0743 13.4138L42.0393 13.3213L42.0391 13.3208L42.0389 13.3203C41.9414 13.062 41.8441 12.8041 41.7134 12.5504V22.2318H39.6471Z\" fill=\"#495677\"/>\\n<path d=\"M97.1686 22.2476H95.0186V10.0656H95.301C95.5176 10.0656 95.7345 10.0665 95.9517 10.0673H95.9528C96.4958 10.0695 97.0403 10.0716 97.5818 10.0603C97.7963 10.0603 97.9218 10.1183 98.0369 10.3078C99.3886 12.509 100.744 14.7038 102.099 16.8997C102.475 17.5082 102.851 18.1168 103.226 18.7257C103.31 18.8626 103.399 18.9994 103.535 19.1258V10.0814H105.68V22.2529C105.636 22.2529 105.592 22.2554 105.548 22.258C105.502 22.2607 105.455 22.2634 105.408 22.2634C105.203 22.2634 104.998 22.2626 104.793 22.2617C104.281 22.2595 103.77 22.2574 103.258 22.2687C103.033 22.2687 102.902 22.2055 102.782 22.0054C101.486 19.8747 100.188 17.7468 98.8893 15.6176L98.8166 15.4983C98.3458 14.7265 97.8749 13.9545 97.404 13.1822C97.3752 13.1348 97.3451 13.0887 97.315 13.0427C97.2849 12.9966 97.2549 12.9505 97.2261 12.9032L97.2158 12.9059C97.2094 12.9076 97.2034 12.9093 97.1973 12.9111C97.1882 12.9137 97.179 12.9163 97.1686 12.919V22.2476Z\" fill=\"#495677\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.8139 22.2638C34.974 22.2636 35.1357 22.2634 35.2996 22.2634H35.3101C35.2578 22.1423 35.2264 22.0633 35.195 21.9844L34.1436 19.5206C32.8253 16.4461 31.5071 13.3664 30.194 10.2867C30.1208 10.113 30.0319 10.0603 29.8488 10.0603C29.3884 10.0761 28.9281 10.0814 28.473 10.0603C28.2637 10.0551 28.1748 10.134 28.0963 10.3183C26.8751 13.1561 25.6505 15.9869 24.4252 18.8193L24.4242 18.8216L23.5662 20.8051C23.4268 21.1172 23.2921 21.434 23.1527 21.7616C23.0828 21.9259 23.0118 22.0929 22.9384 22.2634C23.1594 22.2634 23.3759 22.2619 23.5895 22.2605L23.5902 22.2605H23.5908C24.0796 22.2572 24.5527 22.254 25.0257 22.2687C25.2767 22.2739 25.4023 22.2108 25.4912 21.9581C25.6435 21.5417 25.8068 21.1285 25.9699 20.7158C26.1038 20.3772 26.2375 20.0389 26.3648 19.6996C26.4328 19.5206 26.5218 19.4732 26.7049 19.4732C28.2847 19.4838 29.8697 19.4838 31.4495 19.4732C31.6483 19.4732 31.7372 19.5417 31.8052 19.7207C32.1086 20.4998 32.4277 21.2842 32.7521 22.0581C32.7835 22.1423 32.8933 22.2529 32.9718 22.2529C33.5769 22.2655 34.1822 22.2647 34.8139 22.2638ZM28.3212 14.6715L28.328 14.6536C28.5781 14.0009 28.8299 13.3439 29.085 12.6768C29.7128 14.3404 30.3196 15.9513 30.9316 17.5833H27.207C27.5783 16.6099 27.9478 15.6458 28.3209 14.6722L28.3212 14.6715Z\" fill=\"#495677\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M66.2683 22.2583C65.4575 22.2583 64.6833 22.2583 63.9091 22.2478C63.8463 22.2478 63.7574 22.1267 63.7208 22.0425C63.4017 21.2633 63.0826 20.4842 62.7792 19.705C62.7112 19.5313 62.6275 19.4734 62.4391 19.4734C60.8489 19.4787 59.2586 19.4787 57.6683 19.4734C57.4905 19.4734 57.412 19.526 57.3492 19.6892C57.1703 20.1599 56.9857 20.6306 56.8012 21.1012C56.6781 21.415 56.5551 21.7287 56.4338 22.0425C56.371 22.2004 56.2977 22.2688 56.1147 22.2688C55.64 22.2619 55.1653 22.2641 54.6785 22.2664C54.4304 22.2676 54.1788 22.2688 53.9228 22.2688L53.948 22.2017C53.9933 22.081 54.0301 21.9828 54.0745 21.8845C54.9055 19.9595 55.7378 18.0357 56.5701 16.1119L56.5725 16.1066L56.5776 16.0946C57.4089 14.1732 58.2403 12.2517 59.0703 10.329C59.154 10.1289 59.2586 10.0605 59.4678 10.0658C59.9334 10.0816 60.399 10.0763 60.8698 10.0658C61.0058 10.0658 61.0843 10.0974 61.147 10.2342C62.2098 12.7276 63.2767 15.2189 64.3438 17.7107L64.3631 17.7556C64.9861 19.2105 65.6093 20.6656 66.2317 22.1214C66.2433 22.1447 66.2492 22.168 66.2598 22.2103C66.2637 22.2253 66.2681 22.2428 66.2736 22.2636L66.2683 22.2583ZM61.9108 17.5887C61.2935 15.9515 60.6867 14.3405 60.0642 12.6769C59.4708 14.2208 58.9041 15.7065 58.3313 17.2083L58.327 17.2197L58.3261 17.222L58.1862 17.5887H61.9108Z\" fill=\"#495677\"/>\\n<path d=\"M79.4677 11.0859L79.4716 11.0817V11.0922L79.4677 11.0859Z\" fill=\"#495677\"/>\\n<path d=\"M79.4524 11.0599C79.457 11.0678 79.4619 11.0764 79.4677 11.0859C79.0035 11.5951 78.5495 12.0941 78.0278 12.6768C78.0067 12.642 77.9891 12.6066 77.9722 12.5725C77.943 12.5136 77.9158 12.4588 77.8761 12.4188C77.0234 11.5607 75.6058 11.3238 74.57 11.8766C74.0521 12.1504 73.7435 12.5662 73.7173 13.1769C73.6911 13.8192 73.9841 14.2825 74.5386 14.5404C74.9129 14.7146 75.3039 14.8527 75.6939 14.9905C75.8816 15.0568 76.0691 15.1231 76.2544 15.1932C76.3797 15.2401 76.5061 15.2854 76.6328 15.3307C76.9611 15.4482 77.2907 15.5662 77.6041 15.7144C78.8281 16.2935 79.571 17.2253 79.571 18.6415C79.571 20.1418 78.9798 21.3263 77.6302 22.0107C76.0766 22.8004 74.4654 22.7425 72.8542 22.1529C72.127 21.8844 71.5045 21.4632 70.9762 20.8367C71.2451 20.5854 71.5112 20.3341 71.7797 20.0805L71.7815 20.0788C72.0242 19.8495 72.2688 19.6184 72.5194 19.3837C72.8646 19.8312 73.2779 20.1629 73.7696 20.3893C74.5386 20.7472 75.3233 20.842 76.1341 20.5735C77.0705 20.2629 77.5831 19.3732 77.285 18.4888C77.1908 18.2045 76.9711 17.915 76.7304 17.736C76.4113 17.4991 76.0295 17.3306 75.6528 17.1885C75.3383 17.0646 75.0177 16.9547 74.6973 16.8449L74.6963 16.8445C74.2818 16.7025 73.8672 16.5604 73.4662 16.3883C72.4932 15.9724 71.8079 15.2564 71.5882 14.1824C71.222 12.4083 71.9649 10.9132 73.6336 10.2288C75.5325 9.44441 77.3791 9.59182 79.1106 10.7605C79.1937 10.819 79.2735 10.8875 79.3525 10.9554C79.3731 10.973 79.3936 10.9906 79.414 11.008C79.429 11.0193 79.4386 11.0359 79.4524 11.0599Z\" fill=\"#495677\"/>\\n<path d=\"M100.711 51.4661C100.715 51.4538 100.72 51.4384 100.726 51.4188C100.967 51.9459 101.203 52.463 101.436 52.9746C101.707 53.568 101.974 54.1541 102.243 54.7402C103.054 56.5143 103.865 58.2884 104.681 60.0626C104.723 60.1521 104.832 60.2521 104.921 60.2626C104.984 60.2679 105.089 60.1468 105.131 60.0626C105.766 58.6752 106.401 57.2865 107.035 55.8979C107.669 54.5095 108.303 53.1212 108.939 51.7342C108.968 51.672 109 51.6098 109.05 51.5116L109.096 51.4236C109.1 51.4836 109.104 51.5315 109.108 51.5719L109.108 51.5728L109.11 51.6061L109.112 51.6198C109.113 51.6317 109.113 51.643 109.114 51.6539C109.115 51.6684 109.116 51.6822 109.116 51.6956L109.117 51.7054L109.117 51.7137L109.117 51.7236C109.117 52.4659 109.117 53.2082 109.118 53.9505V53.9581C109.119 55.4402 109.12 56.9222 109.117 58.4043C109.117 58.678 109.096 58.957 109.049 59.2308C108.976 59.6835 108.787 59.8572 108.332 59.9204C108.167 59.9474 107.999 59.9603 107.827 59.9735C107.764 59.9784 107.701 59.9832 107.636 59.9889C107.637 60.0004 107.638 60.0117 107.638 60.0228L107.64 60.0539L107.642 60.0761L107.644 60.1027C107.648 60.1598 107.652 60.2129 107.652 60.2679H112.041V59.9836L111.986 59.9794L111.916 59.9743C111.759 59.9628 111.61 59.9518 111.46 59.9309C110.963 59.8625 110.775 59.6888 110.697 59.1939C110.649 58.8991 110.634 58.6043 110.634 58.3095V51.2656C110.634 51.0919 110.639 50.9182 110.66 50.7444C110.717 50.318 110.916 50.0864 111.335 49.9916C111.497 49.9544 111.665 49.9356 111.835 49.9166C111.905 49.9088 111.976 49.9009 112.046 49.8916V49.6284H111.779C111.579 49.6284 111.379 49.6292 111.178 49.6301C110.678 49.6322 110.177 49.6344 109.676 49.6231C109.457 49.6178 109.357 49.6968 109.274 49.8863C108.454 51.6798 107.632 53.4703 106.809 55.2623C106.549 55.8268 106.29 56.3915 106.03 56.9565C105.873 57.304 105.711 57.6514 105.533 58.0305C105.518 58.0025 105.504 57.9799 105.492 57.9605C105.473 57.929 105.459 57.9058 105.45 57.8831L105.448 57.8804C104.9 56.7284 104.351 55.5763 103.802 54.4296L103.8 54.4248C103.063 52.8839 102.326 51.343 101.584 49.8074C101.547 49.7231 101.432 49.6284 101.354 49.6284C100.806 49.6249 100.259 49.626 99.7111 49.6272L99.7055 49.6272C99.4336 49.6278 99.1617 49.6284 98.8898 49.6284C98.8708 49.6284 98.8499 49.6361 98.8271 49.6445C98.8122 49.65 98.7965 49.6558 98.78 49.66L98.7907 49.8191L98.7928 49.8515L98.7957 49.8969C98.9264 49.9126 99.0363 49.9232 99.1462 49.9337C99.8838 50.0021 100.145 50.2812 100.177 51.034V58.4727C100.177 58.7359 100.156 58.9991 100.109 59.2518C100.035 59.673 99.8262 59.8625 99.4025 59.9309C99.2626 59.9526 99.1227 59.9644 98.9794 59.9764L98.8989 59.9832L98.8421 59.9883C98.8215 59.9901 98.8008 59.9921 98.78 59.9941C98.7806 60.0057 98.7813 60.0171 98.782 60.0283C98.7836 60.0529 98.7854 60.0766 98.7872 60.0999C98.7915 60.1571 98.7957 60.2117 98.7957 60.2679H102.065V59.9836L102.036 59.9818L101.99 59.9792C101.949 59.9769 101.909 59.9748 101.87 59.9728C101.068 59.9307 100.72 59.9125 100.705 58.5885C100.686 56.8791 100.689 55.167 100.692 53.4541V53.4489L100.692 53.4358C100.693 52.7967 100.695 52.1575 100.695 51.5183C100.695 51.5136 100.697 51.5078 100.701 51.4963C100.704 51.489 100.707 51.4793 100.711 51.4661Z\" fill=\"#495677\"/>\\n<path d=\"M117.842 49.6545C117.837 49.7599 117.832 49.8412 117.827 49.9177C117.786 49.9212 117.746 49.9242 117.706 49.9271C117.672 49.9295 117.638 49.9318 117.605 49.934C117.443 49.945 117.29 49.9554 117.141 49.9809C116.728 50.0598 116.529 50.2757 116.477 50.7284C116.44 51.039 116.425 51.3496 116.42 51.6655C116.416 52.2156 116.417 52.7656 116.418 53.3157V53.3185C116.419 53.594 116.42 53.8696 116.42 54.1451C116.42 54.4873 116.514 54.582 116.848 54.582H121.567C121.876 54.582 122.006 54.482 122.006 54.1977L122.007 53.6981V53.697C122.008 52.7782 122.01 51.8567 121.97 50.939C121.938 50.1809 121.656 49.9545 120.903 49.9387H120.589C120.589 49.8715 120.584 49.8129 120.58 49.7519C120.578 49.7174 120.575 49.6819 120.573 49.6439H124.904V49.9177L124.875 49.9203L124.808 49.926L124.749 49.9309C124.564 49.9464 124.384 49.9614 124.203 49.9861C123.837 50.0388 123.639 50.2704 123.576 50.6231C123.534 50.8548 123.513 51.0864 123.513 51.3233V58.5778C123.513 58.8094 123.534 59.0463 123.576 59.2779C123.649 59.6728 123.853 59.8623 124.251 59.9255C124.413 59.95 124.582 59.965 124.755 59.9804L124.858 59.9896L124.904 59.9939V60.2782H120.584C120.584 60.2197 120.58 60.1672 120.575 60.1109C120.573 60.0759 120.57 60.0395 120.568 59.9992C120.646 59.9911 120.723 59.9846 120.8 59.9781C120.923 59.9677 121.045 59.9575 121.164 59.9413C121.693 59.8676 121.912 59.6517 121.959 59.1147C121.996 58.6313 122.001 58.1426 122.006 57.6591L122.006 57.6565C122.01 57.2045 122.009 56.7525 122.008 56.3006V56.2982C122.007 56.0719 122.006 55.8455 122.006 55.6191C122.006 55.2085 121.897 55.0821 121.483 55.0821C119.971 55.0769 118.46 55.0769 116.943 55.0821C116.503 55.0821 116.409 55.198 116.409 55.6244C116.409 56.6404 116.409 57.6617 116.42 58.6778C116.435 59.6991 116.671 59.9307 117.675 59.9728C117.706 59.9728 117.736 59.9757 117.775 59.9792C117.789 59.9806 117.805 59.982 117.821 59.9834V60.2729H113.511V59.9939C113.534 59.9917 113.557 59.9895 113.579 59.9873C113.626 59.983 113.673 59.9788 113.719 59.9746C113.864 59.9615 114.008 59.9485 114.149 59.9307C114.573 59.8675 114.782 59.6675 114.855 59.2516C114.892 59.0463 114.913 58.8357 114.913 58.6304V51.118C114.913 51.0653 114.913 51.0127 114.908 50.9601C114.84 50.2125 114.583 49.9651 113.835 49.9493H113.516V49.6545H117.842Z\" fill=\"#495677\"/>\\n<path d=\"M75.4017 30.8656C75.5997 30.6977 75.8549 30.5926 76.1723 30.6855C76.1272 30.8018 76.0966 30.889 76.0661 30.9761C75.8204 31.6324 75.5729 32.287 75.3257 32.9408L75.3232 32.9475C75.145 33.4189 74.9669 33.8901 74.7897 34.3612L72.9849 39.1308C72.8228 39.5625 72.9431 39.752 73.4034 39.7151C73.7016 39.6941 74.005 39.6257 74.2822 39.5204C75.4279 39.0887 76.3381 38.3148 77.1698 37.4462C78.2736 36.2932 79.1681 34.9824 79.9633 33.6031C79.9922 33.5513 80.0252 33.5014 80.0584 33.4511C80.0706 33.4327 80.0829 33.4141 80.0949 33.3955C80.1035 33.3823 80.1119 33.369 80.1202 33.3557C80.1307 33.4557 80.1045 33.5346 80.0731 33.6136C79.905 34.0279 79.7368 34.4419 79.5686 34.8557L79.567 34.8597C78.9879 36.2852 78.4095 37.7091 77.8342 39.1361C77.672 39.5309 77.829 39.7836 78.2422 39.7099C78.645 39.6362 79.0531 39.5151 79.4088 39.315C80.7375 38.5728 81.7785 37.4988 82.6887 36.288C82.7015 36.2655 82.7084 36.2392 82.7154 36.2125C82.7199 36.1954 82.7244 36.1781 82.7306 36.1616C82.4391 36.3495 82.1564 36.549 81.8731 36.7489C81.1802 37.2378 80.4833 37.7296 79.6442 38.0621C80.8107 35.2035 81.9511 32.408 83.102 29.581C82.9573 29.581 82.8175 29.5829 82.6811 29.5847C82.4181 29.5881 82.1678 29.5914 81.9197 29.581C81.7523 29.5758 81.6739 29.6337 81.6163 29.7863C81.563 29.9197 81.5121 30.0546 81.4612 30.1896C81.3272 30.5449 81.1929 30.9007 81.0147 31.2288C80.1621 32.7818 79.2309 34.2875 78.1167 35.6668C77.1908 36.8144 76.155 37.841 74.8367 38.5412C74.7932 38.5662 74.7459 38.5876 74.6872 38.614C74.6473 38.632 74.6018 38.6525 74.549 38.678C74.7147 38.2671 74.8762 37.8678 75.0349 37.4752L75.0365 37.4714C75.2331 36.9852 75.4254 36.5094 75.6162 36.0353C75.7528 35.6957 75.8897 35.3561 76.0266 35.0165C76.4926 33.8607 76.9588 32.7043 77.4157 31.5447C77.604 31.0761 77.7243 30.5865 77.6668 30.0706C77.5988 29.5021 77.2379 29.202 76.6729 29.2599C76.1707 29.3073 75.794 29.5968 75.4488 29.9337C74.7217 30.6444 74.1829 31.4973 73.6597 32.3554C73.576 32.487 73.4976 32.6239 73.4191 32.7607C73.4401 32.7765 73.4557 32.7871 73.4767 32.8029C73.4944 32.7832 73.5128 32.7636 73.5313 32.7437C73.5673 32.7052 73.6044 32.6655 73.6388 32.6239C73.7063 32.5468 73.7718 32.4672 73.8375 32.3875C73.9601 32.2385 74.0832 32.089 74.2195 31.9553C74.6013 31.5815 74.9937 31.2077 75.4017 30.8656Z\" fill=\"#495677\"/>\\n<path d=\"M22.1433 22.2371V20.3208H16.9958V10.0814H14.8511V22.2371H22.1433Z\" fill=\"#495677\"/>\\n<path d=\"M40.1022 27.9492C40.0958 27.7282 40.0894 27.5056 40.0604 27.2911C39.9244 26.3224 39.4379 25.8012 38.4911 25.6012C37.9209 25.4801 37.3402 25.4696 36.7648 25.6012C35.1379 25.975 34.2905 27.4701 34.7874 29.0705C35.0144 29.807 35.4055 30.4569 35.7971 31.1078C35.8478 31.192 35.8984 31.2761 35.9488 31.3605C36.2836 31.9291 36.6183 32.4977 36.9322 33.0715C38.0464 35.0983 37.1676 37.1883 36.09 38.3044C34.8031 39.6363 33.2233 40.0364 31.4395 39.7468C30.6182 39.6152 29.8231 39.3731 29.1012 38.9414C29.0524 38.9133 29.0035 38.8806 28.9547 38.8478L28.9249 38.8279L28.9022 38.8128L28.8815 38.7992C28.8448 38.7729 28.8135 38.7466 28.7611 38.6992C29.0874 37.9094 29.4178 37.1196 29.7564 36.3104L29.8649 36.0512C29.8727 36.1642 29.8782 36.2745 29.8836 36.3826C29.8962 36.637 29.9082 36.8798 29.9486 37.1199C30.1212 38.1201 30.7228 38.7466 31.6906 39.0098C32.4177 39.2099 33.1605 39.2257 33.8929 39.0309C35.253 38.6676 36.0743 37.4463 36.0168 35.8932C35.9854 35.1457 35.7081 34.4718 35.3576 33.8296C35.1301 33.4137 34.8947 33.0044 34.6593 32.5951C34.4239 32.1858 34.1885 31.7764 33.9609 31.3605C33.6157 30.7235 33.3332 30.0549 33.3646 29.3074C33.4273 27.8491 34.1231 26.7225 35.2582 25.8749C36.8747 24.6746 38.6271 24.5062 40.4685 25.3116C40.6455 25.388 40.8076 25.4996 40.9754 25.615C41.0506 25.6667 41.1268 25.7192 41.2061 25.7696C41.0348 26.1692 40.8671 26.5641 40.7007 26.9559L40.7004 26.9567C40.5161 27.3905 40.3335 27.8206 40.1494 28.2492C40.1389 28.2492 40.1232 28.244 40.1128 28.2387V28.244C40.1079 28.1465 40.1051 28.0478 40.1022 27.9492Z\" fill=\"#495677\"/>\\n<path d=\"M67.487 22.2478H69.6266V10.0763H67.487V22.2478Z\" fill=\"#495677\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.9699 36.0247C16.3527 37.2092 15.6308 38.3148 14.5322 39.1202C14.1137 39.4256 13.6586 39.6519 13.1407 39.7204C12.1311 39.852 11.4511 39.4466 11.0953 38.4832C10.703 37.4356 10.7239 36.3669 11.0012 35.3035C11.5505 33.1714 12.649 31.3972 14.4328 30.0864C15.1233 29.581 15.8923 29.2599 16.7502 29.202C16.9804 29.1862 17.221 29.1914 17.446 29.2388C18.1365 29.3809 18.4713 29.9285 18.3457 30.6707C18.194 31.592 17.6709 32.2764 16.9647 32.8292C15.9917 33.5925 14.867 33.9768 13.6691 34.1822C13.5253 34.2058 13.3789 34.2229 13.2326 34.24C13.0861 34.2571 12.9393 34.2743 12.7955 34.298C12.7275 34.3085 12.6281 34.3717 12.6176 34.4296C12.445 35.3193 12.309 36.2142 12.5078 37.1197C12.7484 38.22 13.3552 38.5359 14.391 38.1042C15.3744 37.6936 16.0911 36.9618 16.6979 36.109C16.7335 36.0588 16.7861 36.0232 16.8392 35.9874C16.8641 35.9706 16.889 35.9537 16.9124 35.9352L16.9752 36.03L16.9699 36.0247ZM12.7801 33.9657C12.7677 33.9621 12.7513 33.9574 12.7288 33.9521C12.7559 33.8782 12.7826 33.8042 12.8091 33.7305C12.905 33.4642 13.0003 33.1996 13.1146 32.945C13.6743 31.7236 14.459 30.6918 15.6621 30.0548C16.0022 29.8758 16.3997 29.7758 16.7868 29.7126C17.1687 29.6494 17.4146 29.9548 17.3623 30.3496C17.2995 30.8234 17.0484 31.213 16.745 31.5604C15.6831 32.766 14.3387 33.5083 12.8216 33.9716C12.8119 33.9748 12.8022 33.972 12.7801 33.9657Z\" fill=\"#495677\"/>\\n<path d=\"M68.7304 30.4709H67.3405C67.3624 30.396 67.3831 30.3223 67.4035 30.2497C67.456 30.0623 67.5066 29.882 67.5707 29.7075C67.5916 29.6496 67.691 29.5917 67.759 29.5917C68.0886 29.5812 68.4181 29.5707 68.7425 29.5917C68.9674 29.6075 69.0773 29.5391 69.1505 29.3127C69.2857 28.9015 69.4317 28.4938 69.578 28.0856C69.6807 27.7988 69.7836 27.5116 69.8829 27.2227C69.9404 27.049 70.0189 26.9753 70.2124 26.9858C70.4608 26.9962 70.7114 26.9929 70.9733 26.9894C71.1086 26.9876 71.2469 26.9858 71.3894 26.9858C71.2032 27.5012 71.0189 28.0072 70.833 28.5173L70.8311 28.5226C70.7044 28.8705 70.5769 29.2202 70.4478 29.5759H73.1366C73.115 29.6494 73.0948 29.7207 73.0751 29.7903C73.0184 29.9901 72.9659 30.1755 72.896 30.3551C72.8699 30.413 72.7391 30.4604 72.6502 30.4604C71.8812 30.4709 71.1122 30.4709 70.3432 30.4604C70.1863 30.4604 70.1183 30.5077 70.066 30.6552C69.159 33.1573 68.2468 35.6595 67.3346 38.1616L67.3312 38.171L67.3248 38.1886C67.315 38.2085 67.3097 38.233 67.296 38.2976L67.2934 38.3097C69.0406 37.6253 70.338 36.4092 71.4993 35.0141C71.5048 35.0183 71.5103 35.0221 71.5158 35.0257C71.5207 35.029 71.5257 35.0321 71.5307 35.0352C71.5411 35.0418 71.5516 35.0484 71.5621 35.0563C71.557 35.075 71.553 35.0942 71.5491 35.1133C71.5408 35.1533 71.5327 35.1927 71.515 35.2247C70.5054 37.0094 69.1505 38.4518 67.3039 39.3784C66.9639 39.5469 66.5715 39.6521 66.1949 39.7101C65.6822 39.7838 65.5253 39.5574 65.6979 39.0625C66.177 37.7074 66.6573 36.3511 67.1376 34.9947L67.1406 34.9864L67.142 34.9823L67.1513 34.956C67.6368 33.5851 68.1223 32.2142 68.6065 30.8447C68.6478 30.7302 68.6841 30.6208 68.7304 30.4709Z\" fill=\"#495677\"/>\\n<path d=\"M43.0107 30.4762H41.6193L41.6372 30.4139C41.7136 30.1494 41.7826 29.9104 41.8651 29.676C41.8808 29.6286 41.9854 29.5917 42.0482 29.5917C42.4039 29.5812 42.7596 29.5812 43.1101 29.5917C43.2775 29.597 43.3508 29.5391 43.4083 29.3811C43.5167 29.0656 43.6281 28.7521 43.7394 28.4388L43.7396 28.4383C43.8808 28.0409 44.0219 27.644 44.1564 27.2438C44.2244 27.0437 44.3185 26.9805 44.5278 26.9911C44.7818 27.0057 45.0384 27.0026 45.3079 26.9993C45.4268 26.9978 45.5485 26.9963 45.6734 26.9963C45.3595 27.865 45.0561 28.702 44.737 29.5812H47.4206C47.4024 29.6458 47.3854 29.7088 47.3687 29.7703C47.3136 29.9739 47.2627 30.1614 47.1904 30.3393C47.1643 30.4077 47.0283 30.4709 46.9393 30.4762C46.1704 30.4867 45.4014 30.4867 44.6324 30.4762C44.4859 30.4762 44.4075 30.5077 44.3499 30.6604C43.6366 32.6273 42.92 34.5909 42.2027 36.5564L41.6245 38.1412C41.6158 38.1645 41.6104 38.1877 41.6028 38.2197C41.5967 38.2458 41.5891 38.2777 41.5774 38.3202C43.3246 37.6306 44.6167 36.4198 45.7728 35.0299C45.7832 35.0352 45.7948 35.0404 45.8065 35.0456L45.8211 35.0522C45.8279 35.0553 45.8346 35.0584 45.8408 35.0615C45.8328 35.0856 45.8258 35.1106 45.8188 35.1359C45.8026 35.1936 45.7862 35.2525 45.7571 35.3037C45.1294 36.4303 44.3185 37.4042 43.3351 38.236C42.6969 38.7782 42.0168 39.252 41.2269 39.5416C40.9601 39.6364 40.6776 39.7048 40.4004 39.7258C39.9714 39.7627 39.8145 39.5311 39.961 39.1257C40.4529 37.7301 40.9461 36.3359 41.4393 34.9417C41.9321 33.5484 42.425 32.1551 42.9166 30.7604C42.9229 30.7414 42.9292 30.7221 42.9357 30.7021C42.9562 30.6391 42.979 30.5694 43.0107 30.4814V30.4762Z\" fill=\"#495677\"/>\\n<path d=\"M94.532 49.8974V49.9019L94.5268 49.8966L94.532 49.8974Z\" fill=\"#495677\"/>\\n<path d=\"M94.6104 49.9114C94.588 49.9071 94.5627 49.9023 94.532 49.8974V49.6439H97.4039C97.4091 49.7229 97.4144 49.7966 97.4196 49.8598L97.4167 49.8622L97.4115 49.8667C97.4095 49.8685 97.4075 49.8704 97.4057 49.8722L97.4009 49.8771L97.3974 49.8808L97.3923 49.8864C97.384 49.8956 97.3782 49.9019 97.3725 49.9019C96.8232 50.0124 96.4727 50.3862 96.2373 50.8548C95.9611 51.4014 95.7267 51.9691 95.493 52.5353L95.4108 52.7342C94.8969 53.9866 94.3855 55.2403 93.8741 56.494L93.8702 56.5035C93.3576 57.7604 92.8449 59.0173 92.3297 60.2729C92.3053 60.336 92.2508 60.3874 92.1954 60.4396C92.1676 60.4658 92.1397 60.4922 92.1152 60.5203C92.0909 60.4942 92.0626 60.4691 92.0341 60.4439C91.9766 60.3931 91.9182 60.3415 91.8903 60.2782C90.5916 57.2864 89.2981 54.2945 88.0047 51.3027L87.9956 51.2819L87.993 51.2759C87.878 51.0127 87.7472 50.76 87.6059 50.5126C87.4019 50.1599 87.0985 49.9493 86.6853 49.9282C86.6372 49.9282 86.5869 49.9191 86.5358 49.9099C86.509 49.9051 86.482 49.9002 86.4551 49.8966V49.6439H90.5668V49.8966C90.5189 49.906 90.4715 49.9144 90.4246 49.9227C90.3129 49.9425 90.2044 49.9617 90.1012 49.9914C89.6932 50.1177 89.4839 50.4283 89.5676 50.8442C89.6304 51.1548 89.7246 51.4707 89.8501 51.7603C90.5552 53.3875 91.2698 55.0116 91.984 56.635L91.9941 56.6579C92.1985 57.1224 92.4028 57.5868 92.6069 58.0513C92.6148 58.0697 92.6252 58.0882 92.6383 58.1112L92.6476 58.1276C92.6535 58.138 92.6597 58.1494 92.6665 58.162C92.6709 58.1702 92.6755 58.1791 92.6803 58.1886L92.6854 58.1987C92.7653 58.0022 92.8444 57.8085 92.9226 57.6166L92.9407 57.5722C93.1225 57.1268 93.3001 56.6915 93.4753 56.2561L93.4755 56.2556C94.0613 54.8185 94.6471 53.3815 95.2225 51.9392C95.3324 51.6655 95.4265 51.3812 95.4841 51.0969C95.6253 50.4494 95.3271 50.0282 94.6785 49.923C94.657 49.9202 94.6355 49.9162 94.6104 49.9114Z\" fill=\"#495677\"/>\\n<path d=\"M61.1521 33.5978C61.206 33.4941 61.258 33.3895 61.3099 33.2849C61.4294 33.0443 61.5487 32.804 61.6909 32.5765C61.7483 32.4846 61.8056 32.3926 61.8628 32.3006C62.2908 31.6129 62.7182 30.926 63.2027 30.276C63.6474 29.6758 64.2437 29.2599 65.0389 29.2494C65.8654 29.2389 66.3048 29.7442 66.1792 30.5708C66.0537 31.3762 65.5724 31.8606 64.8767 31.8816C64.5105 31.8921 64.3797 31.7553 64.453 31.392C64.4751 31.2747 64.5091 31.1604 64.5432 31.0459L64.5433 31.0454C64.5734 30.9442 64.6035 30.8428 64.6256 30.7392C64.6884 30.4707 64.5628 30.3181 64.3117 30.4023C64.0083 30.5023 63.6735 30.6287 63.459 30.8498C63.051 31.2657 62.6639 31.7237 62.3553 32.2238C61.0422 34.3559 59.9175 36.5775 59.1433 38.9729C58.9672 39.5204 58.9501 39.5204 58.3803 39.5204H57.5478C58.1443 37.8784 58.7392 36.243 59.3333 34.6096L59.3591 34.5388C59.8193 33.2736 60.2791 32.0095 60.7388 30.7445C60.3256 30.555 59.9594 30.6339 59.656 30.8972C59.2637 31.2341 58.9027 31.6079 58.547 31.9816C58.4041 32.1293 58.2801 32.2932 58.1556 32.4578C58.1069 32.5222 58.0582 32.5866 58.0082 32.6502C57.9611 32.7029 57.914 32.7555 57.8146 32.7713L57.8298 32.7406L57.8427 32.7143C57.8806 32.6372 57.9192 32.5587 57.9611 32.487C58.4424 31.6131 58.9393 30.7445 59.6298 30.0127C59.9646 29.6547 60.336 29.3389 60.8435 29.2704C61.4974 29.1862 61.9525 29.56 62.0048 30.2233C62.0466 30.7655 61.9315 31.2762 61.7537 31.7816C61.5706 32.308 61.3823 32.8292 61.194 33.3504C61.1678 33.4294 61.1416 33.5083 61.1207 33.5926C61.1257 33.5943 61.1302 33.596 61.1345 33.5976L61.1416 33.6005C61.1482 33.6031 61.1547 33.6057 61.1626 33.6084L61.1521 33.5978Z\" fill=\"#495677\"/>\\n<path d=\"M82.9975 49.8915V49.6493L82.987 49.6546H78.3836C78.3856 49.6907 78.3883 49.7238 78.391 49.7556C78.3953 49.8071 78.3993 49.8552 78.3993 49.9073C78.5353 49.9178 78.6556 49.9284 78.7759 49.9389C79.5554 50.0126 79.8064 50.2863 79.8221 51.0707V51.176C79.8221 51.9866 79.8227 52.7977 79.8233 53.609V53.6168C79.8245 55.2374 79.8256 56.8588 79.8221 58.4779C79.8221 58.7621 79.7855 59.0464 79.7384 59.3307C79.6809 59.694 79.4507 59.894 79.0898 59.9361C78.9695 59.9502 78.8478 59.9613 78.7237 59.9725L78.723 59.9726C78.6153 59.9824 78.5057 59.9923 78.394 60.0046C78.3959 60.0409 78.3985 60.0752 78.4011 60.1086C78.4055 60.1672 78.4097 60.2233 78.4097 60.2836H86.5337C86.6739 59.8407 86.8142 59.3968 86.9549 58.9512L86.9587 58.9391C87.1212 58.4246 87.2845 57.9079 87.4492 57.3881C87.355 57.3618 87.2922 57.346 87.2661 57.3407C87.1809 57.5004 87.0994 57.6585 87.019 57.8146L87.0188 57.8151C86.8474 58.1478 86.6805 58.4716 86.4919 58.7832C86.1205 59.3939 85.5503 59.7308 84.8441 59.7677C84.0646 59.8098 83.2904 59.8203 82.511 59.8203C81.5327 59.8203 81.3444 59.6255 81.3444 58.6411C81.3392 56.2931 81.3392 53.9451 81.3392 51.5972C81.3392 51.3182 81.3601 51.0392 81.3967 50.7654C81.4543 50.3442 81.7001 50.0758 82.1291 50.0021C82.3196 49.9665 82.5149 49.9454 82.7117 49.9241C82.8067 49.9138 82.9021 49.9035 82.9975 49.8915Z\" fill=\"#495677\"/>\\n<path d=\"M20.4641 39.7521C19.8363 39.7468 19.2766 39.6573 18.7901 39.3152C18.3298 38.994 18.1101 38.4781 18.2722 37.9517C18.335 37.7516 18.4815 37.5463 18.6541 37.4252C18.9523 37.2146 19.1824 37.2831 19.4074 37.5831C19.4869 37.6887 19.5637 37.7964 19.6404 37.9041C19.8008 38.1293 19.961 38.3541 20.145 38.5571C20.6315 39.0835 21.2801 39.173 21.9183 38.8466C22.4833 38.5571 22.7919 37.8937 22.5827 37.2252C22.4327 36.7486 22.2028 36.2932 21.9759 35.8437L21.9102 35.7135L21.8974 35.6879C21.7629 35.4171 21.6177 35.1505 21.4726 34.8841C21.2228 34.4254 20.9732 33.9669 20.778 33.4874C20.2182 32.1134 20.7623 30.4235 21.9654 29.6654C22.703 29.2021 23.5086 29.0494 24.3508 29.2969C24.9629 29.4758 25.3918 29.8654 25.486 30.5445C25.5383 30.9078 25.3761 31.171 25.078 31.35C24.8216 31.5079 24.6333 31.4869 24.4398 31.25C24.3094 31.0955 24.1887 30.9345 24.0678 30.7733L24.0674 30.7728C23.9701 30.6431 23.8727 30.5132 23.7702 30.3866C23.336 29.8496 22.9123 29.7549 22.3054 30.0391C21.7719 30.2918 21.5208 30.792 21.6149 31.3869C21.7039 31.9238 21.9707 32.3818 22.2374 32.8346C22.3595 33.0419 22.4843 33.2475 22.609 33.4529C22.9117 33.9517 23.2142 34.45 23.4772 34.972C23.8853 35.7774 24.0056 36.6513 23.7388 37.5305C23.3569 38.7782 22.4205 39.3889 21.2174 39.6626C21.1075 39.6889 20.9977 39.7047 20.8826 39.7153C20.7962 39.724 20.7114 39.7295 20.6352 39.7344C20.5729 39.7384 20.5163 39.7421 20.4693 39.7468L20.4641 39.7521Z\" fill=\"#495677\"/>\\n<path d=\"M94.2132 39.3415C94.6788 39.6363 95.2019 39.7258 95.7512 39.7574V39.7521C95.8531 39.7372 95.9555 39.7254 96.0578 39.7137C96.281 39.688 96.5037 39.6624 96.7189 39.6047C97.9483 39.2836 98.8376 38.5886 99.12 37.2883C99.3241 36.3407 99.0887 35.4563 98.6335 34.6298C98.4498 34.2981 98.2494 33.9748 98.0488 33.6513C97.8609 33.3483 97.6729 33.0451 97.4984 32.7345C97.2996 32.3818 97.1217 32.008 97.0014 31.6237C96.7974 30.9657 97.0433 30.3971 97.5873 30.1128C98.2203 29.7864 98.6597 29.8917 99.1462 30.4971C99.209 30.5761 99.2717 30.6603 99.3345 30.7446C99.3903 30.8157 99.4455 30.8869 99.5005 30.9578L99.5024 30.9603C99.6013 31.0879 99.6996 31.2148 99.8001 31.3395C99.9256 31.4974 100.093 31.5079 100.271 31.45C100.585 31.3447 100.804 31.0236 100.804 30.6919C100.804 30.0918 100.339 29.5232 99.6588 29.3442C98.8219 29.1284 98.0267 29.2653 97.2944 29.718C96.0546 30.4866 95.5576 32.3502 96.1697 33.6453C96.3589 34.0472 96.5687 34.437 96.7785 34.8266L96.7791 34.8277C96.9345 35.1164 97.0899 35.405 97.2368 35.6984C97.2641 35.7533 97.2916 35.8083 97.3191 35.8633C97.5344 36.2941 97.7527 36.7308 97.9012 37.1883C98.1261 37.899 97.7966 38.6044 97.1793 38.8729C96.5254 39.1572 95.8872 39.0256 95.4216 38.4781C95.2661 38.295 95.1274 38.0993 94.9882 37.9029C94.9073 37.7887 94.8262 37.6743 94.7416 37.5621C94.5428 37.2936 94.3283 37.2251 94.051 37.4041C93.8836 37.5094 93.7267 37.6989 93.6535 37.8832C93.4495 38.4254 93.6849 39.0045 94.2132 39.3415Z\" fill=\"#495677\"/>\\n<path d=\"M95.7927 82.2207C95.5678 81.8522 95.5259 81.5416 95.7038 81.1362C96.8612 78.5146 98.0009 75.884 99.1406 73.2535C99.5205 72.3766 99.9005 71.4996 100.281 70.623C100.323 70.5335 100.365 70.444 100.417 70.3335C100.632 70.6599 100.7 70.9442 100.532 71.3285C99.4929 73.694 98.4676 76.0642 97.4423 78.4343C96.9296 79.6194 96.417 80.8045 95.9026 81.989C95.8836 82.0337 95.8627 82.0764 95.8398 82.123L95.8394 82.1238C95.8247 82.1539 95.8091 82.1857 95.7927 82.2207Z\" fill=\"#495677\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M87.2401 22.5793C85.3673 22.5582 83.7352 21.9949 82.4274 20.6367C81.5277 19.7049 80.9993 18.5783 80.811 17.2938C80.607 15.9355 80.7116 14.6036 81.2713 13.3349C81.988 11.7187 83.2016 10.6289 84.8756 10.113C86.9838 9.46548 89.0501 9.59183 90.9699 10.7553C92.5811 11.7292 93.439 13.2243 93.6901 15.0669C93.8889 16.5567 93.7267 17.9992 92.9839 19.3364C91.9691 21.1684 90.3788 22.1529 88.3543 22.4898C88.2079 22.5161 88.0614 22.5319 87.9149 22.5424C87.6847 22.5582 87.4493 22.5688 87.2401 22.574V22.5793ZM87.2663 11.6818C86.2409 11.666 85.3516 11.9556 84.6036 12.6031C83.4852 13.5735 83.0422 14.8291 83.0816 16.2524C83.0837 16.3289 83.0871 16.4058 83.0919 16.4832C83.095 16.5339 83.0988 16.5844 83.1032 16.6345C83.1544 17.2315 83.2924 17.7768 83.5084 18.2594C84.0878 19.558 85.228 20.4041 86.7642 20.5842C88.3178 20.7632 89.6309 20.2367 90.5672 18.9364C90.7164 18.7282 90.8434 18.5138 90.9499 18.294C91.3786 17.4191 91.4785 16.4597 91.357 15.4565C91.0745 13.1032 89.2855 11.6292 87.2663 11.6766V11.6818Z\" fill=\"#495677\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M89.1442 29.1758C89.3639 28.5651 89.5784 27.9755 89.8085 27.349L89.8033 27.3438C89.6623 27.3438 89.5262 27.345 89.3933 27.3462C89.1366 27.3485 88.8919 27.3507 88.6472 27.3438C88.4798 27.3385 88.4014 27.3912 88.3438 27.5491C88.2601 27.7912 88.1699 28.0308 88.0796 28.2703C87.9894 28.5098 87.8992 28.7494 87.8155 28.9916C87.7579 29.16 87.6795 29.2285 87.4911 29.2442C86.9496 29.2845 86.408 29.3436 85.8697 29.4024L85.866 29.4028C85.7712 29.4132 85.6764 29.4235 85.5818 29.4338C85.5242 29.439 85.4301 29.4654 85.4091 29.5075C85.3164 29.7225 85.2299 29.9376 85.1424 30.155C85.1164 30.2197 85.0903 30.2846 85.0639 30.3498C85.8799 30.1919 86.6594 30.0392 87.4859 29.876C87.4441 29.9865 87.4336 30.0181 87.4231 30.0497C87.1041 30.9156 86.7837 31.7828 86.4633 32.6501C86.1429 33.5175 85.8224 34.3849 85.5033 35.251L85.5006 35.2583C84.4501 38.1039 83.3995 40.9496 82.3437 43.7953C82.3071 43.89 82.2181 44.0111 82.124 44.0427C81.7369 44.169 81.3498 44.2796 80.9522 44.3638C80.743 44.4112 80.6017 44.4849 80.6017 44.7323H80.9417C81.4369 44.7323 81.9322 44.7312 82.4274 44.73C83.4178 44.7277 84.4082 44.7253 85.3987 44.7323C85.6393 44.7323 85.7701 44.685 85.7858 44.4375C85.1567 44.3203 84.5318 44.2072 83.8889 44.0909L83.6515 44.048C84.2269 42.4791 84.7762 40.9893 85.3254 39.5047C85.3724 39.5174 85.4173 39.5298 85.4607 39.5418C85.6157 39.5847 85.7515 39.6222 85.8904 39.6469C86.0787 39.6784 86.2671 39.7048 86.4554 39.7153C88.1973 39.8153 89.5941 39.0783 90.7606 37.8517C92.0422 36.4987 92.7171 34.8614 92.8374 32.9978C92.8845 32.2976 92.8322 31.608 92.5026 30.9657C92.0161 30.0181 91.1896 29.5496 90.1904 29.3337C89.9827 29.2906 89.7687 29.2621 89.5459 29.2324C89.4152 29.215 89.2815 29.1972 89.1442 29.1758ZM87.2349 39.0545C87.8627 38.9831 88.3872 38.6734 88.8263 38.2295L88.8356 38.2202C90.4102 36.6303 91.1216 34.6667 91.3047 32.5609C91.2938 32.4365 91.2867 32.3235 91.2801 32.2185C91.2677 32.0212 91.257 31.8519 91.2263 31.687C91.1391 31.1864 90.988 30.8006 90.7561 30.5118C90.4531 30.1344 90.0121 29.9228 89.3954 29.8377C89.3228 29.8277 89.2478 29.8194 89.1703 29.8128C88.991 29.7944 88.9045 29.8493 88.84 29.9882C88.8312 30.0071 88.8228 30.0275 88.8146 30.0497C88.7781 30.1503 88.7415 30.2509 88.7048 30.3515C88.4671 31.0024 88.2258 31.6534 87.9845 32.3043C87.8014 32.7982 87.6183 33.292 87.4368 33.7859L87.4284 33.8086L87.4048 33.8727C87.2313 34.3433 87.0571 34.8146 86.8828 35.2863L86.8706 35.3193C86.5811 36.1025 86.2912 36.8869 86.0031 37.6713L85.9793 37.7359L85.9755 37.7464C85.7628 38.3252 85.9765 38.8401 86.5095 38.9983L86.5129 38.9993C86.7168 39.0624 86.9421 39.0783 87.1512 39.0625C87.1793 39.0603 87.2072 39.0576 87.2349 39.0545Z\" fill=\"#495677\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M52.7091 34.9034C52.5812 35.0672 52.4551 35.2306 52.3296 35.3931C51.9833 35.8419 51.642 36.284 51.281 36.7092C50.5225 37.6041 49.7012 38.4412 48.7021 39.0676C48.3985 39.2586 48.0618 39.3969 47.7261 39.5348C47.5992 39.587 47.472 39.6392 47.3472 39.6941C47.1903 39.7625 47.0752 39.7046 46.9705 39.5678C46.5939 39.0624 46.5207 38.4833 46.5521 37.8831C46.5991 36.9355 46.9182 36.0669 47.3577 35.2404C48.4353 33.2083 49.8948 31.5184 51.846 30.2917C52.887 29.639 53.6193 29.4863 54.7493 29.6337C54.7587 29.6146 54.7696 29.5949 54.7808 29.5745C54.8005 29.5385 54.8215 29.5002 54.8382 29.46C54.9568 29.1687 55.1678 29.023 55.4712 29.023H56.3291C56.3373 29.023 56.3456 29.0259 56.3599 29.031C56.3728 29.0355 56.3907 29.0418 56.418 29.0493L55.9637 30.2092C55.531 31.3138 55.0997 32.4149 54.6656 33.5189C54.0797 35.0087 53.4938 36.4986 52.8765 38.0674C54.3755 37.4929 55.3093 36.3735 56.2589 35.2351C56.3101 35.1737 56.3614 35.1123 56.4128 35.0508C56.4058 35.0754 56.4 35.1005 56.3942 35.1257C56.3826 35.176 56.3709 35.2263 56.35 35.2719C55.4921 37.0777 54.2052 38.478 52.4423 39.4098C52.1389 39.573 51.778 39.6625 51.438 39.7046C51.0613 39.7573 50.9201 39.5204 51.0613 39.1624C51.3228 38.4914 51.5842 37.8218 51.8457 37.1521C52.1073 36.482 52.369 35.8118 52.6307 35.1403C52.6548 35.0797 52.6758 35.019 52.6985 34.9536C52.7053 34.9339 52.7123 34.9137 52.7196 34.8929L52.7091 34.9034ZM54.4354 30.3602C54.3082 30.3602 54.1796 30.3559 54.0506 30.3508L53.8943 30.3444C53.8372 30.3421 53.7801 30.3399 53.723 30.3381C53.6687 30.3365 53.6144 30.3351 53.5603 30.3345C53.338 30.3317 53.1174 30.3396 52.9027 30.376C52.0134 30.5234 51.3386 31.0867 50.7474 31.7342C49.6332 32.945 48.9061 34.3717 48.5294 35.9721L48.5272 35.9814C48.3922 36.5523 48.2841 37.1335 48.3882 37.7252C48.4111 37.8579 48.4348 37.9499 48.4716 38.0049C48.5352 38.1055 48.6368 38.0896 48.8486 37.9779C48.8895 37.9569 48.9304 37.9356 48.9712 37.9141C49.347 37.7166 49.7234 37.4977 50.029 37.2158L50.0361 37.2093L50.0747 37.1735C51.8308 35.5478 53.2631 33.7021 54.0946 31.4383C54.2228 31.0892 54.3367 30.7301 54.4354 30.3602Z\" fill=\"#495677\"/>\\n</svg>\\n',tabIndex:1,withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wpgQZ.framer-7y0yfu, .framer-wpgQZ .framer-7y0yfu { display: block; }\",\".framer-wpgQZ.framer-a4d4ne { height: 84px; overflow: hidden; position: relative; width: 200px; }\",\".framer-wpgQZ .framer-1tjt4w7 { aspect-ratio: 7.65 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); left: 24px; position: absolute; top: 32px; width: 77%; }\",\".framer-wpgQZ .framer-7vmgqf { aspect-ratio: 2.210526315789474 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 90px); left: 58px; position: absolute; top: 23px; width: 42%; }\",\".framer-wpgQZ .framer-1uvpqj0 { aspect-ratio: 8.894736842105264 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); left: 16px; position: absolute; top: 33px; width: 85%; }\",\".framer-wpgQZ .framer-aan4v6 { aspect-ratio: 4.6923076923076925 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); left: 39px; position: absolute; top: 29px; width: 61%; }\",\".framer-wpgQZ .framer-tvfst { aspect-ratio: 16.583333333333332 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); left: 1px; position: absolute; top: 36px; width: 100%; }\",\".framer-wpgQZ .framer-1fjytae { aspect-ratio: 3 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 67px); left: 48px; position: absolute; top: 25px; width: 53%; }\",\".framer-wpgQZ .framer-csrsbr { aspect-ratio: 2.0625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 97px); left: 51px; position: absolute; top: 18px; width: 50%; }\",\".framer-wpgQZ .framer-1khlbq0 { aspect-ratio: 3.56 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); left: 56px; position: absolute; top: 30px; width: 45%; }\",\".framer-wpgQZ .framer-okdrrv { aspect-ratio: 2.389830508474576 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 84px); left: 30px; position: absolute; top: 13px; width: 71%; }\",\".framer-wpgQZ .framer-r0lozq { aspect-ratio: 4.461538461538462 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 45px); left: 42px; position: absolute; top: 29px; width: 58%; }\",\".framer-wpgQZ .framer-1f2oav2 { aspect-ratio: 2.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: 45px; position: absolute; top: 20px; width: 55%; }\",\".framer-wpgQZ .framer-eqypad { aspect-ratio: 13.133333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); left: 2px; position: absolute; top: 35px; width: 99%; }\",\".framer-wpgQZ .framer-1ynqqjv { aspect-ratio: 1.3137254901960784 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 152px); left: 67px; position: absolute; top: 17px; width: 34%; }\",\".framer-wpgQZ .framer-9r37dy { aspect-ratio: 8.470588235294118 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 28px; position: absolute; top: 34px; width: 72%; }\",\".framer-wpgQZ .framer-vh9r9n { aspect-ratio: 2.3137254901960786 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 86px); left: 41px; position: absolute; top: 17px; width: 59%; }\",\".framer-wpgQZ .framer-1ywyu1 { aspect-ratio: 1.4528301886792452 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 138px); left: 62px; position: absolute; top: 16px; width: 39%; }\",\".framer-wpgQZ .framer-1vg5dp4 { aspect-ratio: 1.7424242424242424 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 115px); left: 43px; position: absolute; top: 9px; width: 57%; }\",\".framer-wpgQZ .framer-eowwfr { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); left: 71px; position: absolute; top: 13px; width: 29%; }\",\".framer-wpgQZ .framer-7a1z6z { aspect-ratio: 4.464285714285714 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 45px); left: 38px; position: absolute; top: 28px; width: 63%; }\",\".framer-wpgQZ .framer-14af85n { aspect-ratio: 1.5903614457831325 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 83px); left: 34px; position: absolute; top: 1px; width: 66%; }\",\".framer-wpgQZ.framer-v-yvjafr.framer-a4d4ne, .framer-wpgQZ.framer-v-lf6yy0.framer-a4d4ne, .framer-wpgQZ.framer-v-piqxdk.framer-a4d4ne, .framer-wpgQZ.framer-v-18sgfif.framer-a4d4ne, .framer-wpgQZ.framer-v-1xx4ype.framer-a4d4ne, .framer-wpgQZ.framer-v-pwjtao.framer-a4d4ne, .framer-wpgQZ.framer-v-1v9ox03.framer-a4d4ne, .framer-wpgQZ.framer-v-1ff0kwr.framer-a4d4ne, .framer-wpgQZ.framer-v-7dkp58.framer-a4d4ne, .framer-wpgQZ.framer-v-5r2ta2.framer-a4d4ne, .framer-wpgQZ.framer-v-1eeg3xl.framer-a4d4ne, .framer-wpgQZ.framer-v-k519rn.framer-a4d4ne, .framer-wpgQZ.framer-v-ytbap0.framer-a4d4ne, .framer-wpgQZ.framer-v-y9jno4.framer-a4d4ne, .framer-wpgQZ.framer-v-19law5q.framer-a4d4ne, .framer-wpgQZ.framer-v-b3nmxz.framer-a4d4ne, .framer-wpgQZ.framer-v-1pmpiys.framer-a4d4ne, .framer-wpgQZ.framer-v-raxrcn.framer-a4d4ne, .framer-wpgQZ.framer-v-1kh8kq8.framer-a4d4ne, .framer-wpgQZ.framer-v-65s35c.framer-a4d4ne, .framer-wpgQZ.framer-v-dw4wun.framer-a4d4ne { aspect-ratio: 2.380952380952381 / 1; height: var(--framer-aspect-ratio-supported, 84px); }\",\".framer-wpgQZ.framer-v-yvjafr .framer-1tjt4w7 { height: var(--framer-aspect-ratio-supported, 20px); }\",\".framer-wpgQZ.framer-v-lf6yy0 .framer-7vmgqf { height: var(--framer-aspect-ratio-supported, 38px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 84\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"weBXAHBOm\":{\"layout\":[\"fixed\",\"fixed\"]},\"K63Br53Sx\":{\"layout\":[\"fixed\",\"fixed\"]},\"EyFFZiHcD\":{\"layout\":[\"fixed\",\"fixed\"]},\"m4tz0KO0w\":{\"layout\":[\"fixed\",\"fixed\"]},\"flCghaHHI\":{\"layout\":[\"fixed\",\"fixed\"]},\"EVzHD0vwA\":{\"layout\":[\"fixed\",\"fixed\"]},\"ErtQjLnm4\":{\"layout\":[\"fixed\",\"fixed\"]},\"PdP6RCDzM\":{\"layout\":[\"fixed\",\"fixed\"]},\"P7GKuhCzu\":{\"layout\":[\"fixed\",\"fixed\"]},\"VofkM97gJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"DLojFq3BE\":{\"layout\":[\"fixed\",\"fixed\"]},\"sy9a6CgL9\":{\"layout\":[\"fixed\",\"fixed\"]},\"GP6F94rkS\":{\"layout\":[\"fixed\",\"fixed\"]},\"Kzj7NOW8j\":{\"layout\":[\"fixed\",\"fixed\"]},\"QjT9T0hKO\":{\"layout\":[\"fixed\",\"fixed\"]},\"PDqUB7QBp\":{\"layout\":[\"fixed\",\"fixed\"]},\"lJiwBO9y8\":{\"layout\":[\"fixed\",\"fixed\"]},\"giOYWpkU9\":{\"layout\":[\"fixed\",\"fixed\"]},\"dLQWfMSSc\":{\"layout\":[\"fixed\",\"fixed\"]},\"KhQIJcUMg\":{\"layout\":[\"fixed\",\"fixed\"]},\"m7UReGfim\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxGKYZtLHG=withCSS(Component,css,\"framer-wpgQZ\");export default FramerxGKYZtLHG;FramerxGKYZtLHG.displayName=\"logo partners\";FramerxGKYZtLHG.defaultProps={height:84,width:200};addPropertyControls(FramerxGKYZtLHG,{variant:{options:[\"s9n_KXyLS\",\"weBXAHBOm\",\"K63Br53Sx\",\"EyFFZiHcD\",\"m4tz0KO0w\",\"flCghaHHI\",\"EVzHD0vwA\",\"ErtQjLnm4\",\"PdP6RCDzM\",\"P7GKuhCzu\",\"VofkM97gJ\",\"DLojFq3BE\",\"sy9a6CgL9\",\"GP6F94rkS\",\"Kzj7NOW8j\",\"QjT9T0hKO\",\"PDqUB7QBp\",\"lJiwBO9y8\",\"giOYWpkU9\",\"dLQWfMSSc\",\"KhQIJcUMg\",\"m7UReGfim\"],optionTitles:[\"01 La Maison\",\"02 Farfetch\",\"03 Diesel\",\"04 Printemps\",\"05 Beams\",\"06 Tommy Helfiger\",\"07 CocaCola\",\"08 Lacoste\",\"09 boss\",\"09 Warner\",\"10 Jason Wu\",\"11 Jean Paul Gaultier\",\"12 American Eagle\",\"13 Gap\",\"14 Salomon\",\"15 Dundas\",\"16 ipsa\",\"17 Drunk Elephant\",\"18 Adidas\",\"19 Bershka\",\"00 Meta\",\"Variant 22\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerxGKYZtLHG,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxGKYZtLHG\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"weBXAHBOm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"K63Br53Sx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EyFFZiHcD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"m4tz0KO0w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"flCghaHHI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EVzHD0vwA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ErtQjLnm4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PdP6RCDzM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"P7GKuhCzu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VofkM97gJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DLojFq3BE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sy9a6CgL9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GP6F94rkS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Kzj7NOW8j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QjT9T0hKO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PDqUB7QBp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lJiwBO9y8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"giOYWpkU9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dLQWfMSSc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KhQIJcUMg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"m7UReGfim\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"84\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xGKYZtLHG.map", "// Generated by Framer (461de17)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"irGBnVieq\",\"uO_JZ_ugN\",\"I9GaORQoz\",\"hNi7khBA6\",\"xb4WL_m2h\",\"DApUgqNVv\",\"n08iKjgHh\"];const serializationHash=\"framer-Ck2Uq\";const variantClassNames={DApUgqNVv:\"framer-v-1lya0fq\",hNi7khBA6:\"framer-v-eedwpw\",I9GaORQoz:\"framer-v-6m7ff9\",irGBnVieq:\"framer-v-1shbhb2\",n08iKjgHh:\"framer-v-3ulgjt\",uO_JZ_ugN:\"framer-v-12hd4gl\",xb4WL_m2h:\"framer-v-1j0o47r\"};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 Variants=motion(React.Fragment);const humanReadableVariantMap={\"Business Vogue\":\"hNi7khBA6\",\"Federation de la Haute Couture et de la Mode\":\"I9GaORQoz\",\"Venture Beat\":\"xb4WL_m2h\",BQF:\"uO_JZ_ugN\",CNN:\"n08iKjgHh\",Elle:\"DApUgqNVv\",Forbes:\"irGBnVieq\"};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:\"irGBnVieq\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"irGBnVieq\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"I9GaORQoz\")return true;return false;};const isDisplayed1=()=>{if([\"uO_JZ_ugN\",\"I9GaORQoz\",\"hNi7khBA6\",\"xb4WL_m2h\",\"DApUgqNVv\",\"n08iKjgHh\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"xb4WL_m2h\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"DApUgqNVv\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"n08iKjgHh\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"hNi7khBA6\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1shbhb2\",className,classNames),\"data-framer-name\":\"Forbes\",layoutDependency:layoutDependency,layoutId:\"irGBnVieq\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({DApUgqNVv:{\"data-framer-name\":\"Elle\"},hNi7khBA6:{\"data-framer-name\":\"Business Vogue\"},I9GaORQoz:{\"data-framer-name\":\"Federation de la Haute Couture et de la Mode\"},n08iKjgHh:{\"data-framer-name\":\"CNN\"},uO_JZ_ugN:{\"data-framer-name\":\"BQF\"},xb4WL_m2h:{\"data-framer-name\":\"Venture Beat\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1n38xhz\",\"data-framer-name\":\"Client logos/Forbes\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"aB8UrQPv6\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 200 200\"><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path></svg>',svgContentId:8901089442,withExternalLayout:true,...addPropertyOverrides({I9GaORQoz:{svgContentId:9348693584},uO_JZ_ugN:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 200 200\"><path d=\"M 75.029 68.615 C 74.474 69.033 74.057 69.382 74.057 70.149 C 74.057 70.288 74.126 70.637 74.265 70.985 C 74.791 71.976 75.815 71.966 76.217 71.962 C 76.24 71.962 76.261 71.961 76.279 71.961 C 77.043 71.961 77.807 71.752 79.335 71.334 C 80.029 71.195 80.793 70.985 81.557 70.776 L 81.557 70.776 C 82.598 70.497 86.001 69.661 89.543 69.661 C 91.973 69.661 98.085 70.079 103.502 74.541 C 109.335 79.352 111.904 86.532 111.904 93.852 C 111.904 102.218 108.849 107.726 107.043 110.305 C 103.015 116.231 96.14 120.763 88.779 120.763 C 87.877 120.763 86.279 120.693 84.057 120.205 C 79.314 119.189 76.414 117.364 74.57 116.204 L 74.57 116.204 C 74.389 116.09 74.218 115.982 74.057 115.883 C 72.876 117.417 72.112 118.671 72.112 120.624 C 72.112 121.742 72.443 122.695 72.613 123.184 L 72.614 123.185 C 72.634 123.244 72.653 123.297 72.668 123.343 C 73.223 124.528 74.265 126.201 76.904 127.526 C 80.307 129.199 83.848 129.199 85.168 129.199 C 86.14 129.199 94.127 129.059 98.988 125.852 C 101.071 124.458 101.835 123.064 102.321 122.157 L 103.154 122.646 C 101.904 124.946 100.863 126.41 98.779 128.013 C 96.696 129.548 92.529 131.988 86.279 131.988 C 85.238 131.988 79.612 131.848 75.793 129.269 C 75.306 128.92 74.057 127.944 73.015 126.55 C 71.348 124.249 71.07 122.088 71.07 121.042 C 71.07 118.549 72.391 116.533 73.006 115.596 L 73.006 115.596 C 73.096 115.459 73.17 115.344 73.223 115.256 C 72.32 114.349 71.487 113.443 70.654 112.537 C 68.778 110.375 64.612 105.495 64.612 97.408 C 64.612 94.201 65.237 87.299 72.251 82.349 C 74.196 81.024 76.348 79.979 78.501 78.933 C 77.945 78.654 77.32 78.306 76.765 77.957 C 73.432 75.935 72.459 73.495 72.459 71.683 C 72.459 69.489 73.659 68.563 74.312 68.059 C 74.344 68.034 74.375 68.01 74.404 67.988 Z M 86.557 116.162 L 87.251 115.395 C 86.974 114.977 86.626 114.558 86.279 114.28 C 85.585 113.652 84.126 112.816 81.834 112.816 C 80.654 112.816 79.335 113.095 79.126 113.164 C 79.188 113.251 79.264 113.365 79.356 113.502 C 79.781 114.138 80.528 115.256 81.557 116.231 C 82.807 117.417 85.723 119.647 90.237 119.647 C 92.182 119.647 95.932 119.09 99.613 115.604 C 103.71 111.63 105.376 105.774 105.376 100.196 C 105.376 97.827 105.168 91.412 100.446 85.835 L 100.382 85.765 L 100.382 85.765 C 99.587 84.893 97.872 83.013 95.237 81.792 C 93.501 80.955 91.348 80.327 87.321 80.258 C 86.628 80.229 86.039 80.206 85.528 80.187 L 85.527 80.187 C 82.349 80.067 82.226 80.063 79.473 79.281 C 79.327 79.513 79.183 79.74 79.041 79.964 L 79.039 79.967 C 76.609 83.788 74.751 86.71 74.751 95.665 C 74.751 97.059 74.751 98.454 74.89 99.848 C 75.376 104.798 76.418 107.587 78.432 112.188 C 78.521 112.161 78.636 112.124 78.773 112.079 C 79.701 111.777 81.653 111.142 83.71 111.142 C 85.932 111.142 87.251 111.63 89.265 112.467 L 89.349 112.299 C 89.875 111.246 90.376 110.243 90.376 109.051 C 90.376 108.075 90.029 107.238 89.89 106.959 C 89.532 106.312 89.063 105.776 88.473 105.102 L 88.473 105.102 C 87.92 104.47 87.261 103.717 86.487 102.637 C 85.932 101.8 82.946 97.269 82.946 92.876 C 82.946 89.53 84.682 85.835 86.974 83.464 C 87.599 82.767 88.084 82.349 89.612 81.373 C 89.568 81.517 89.524 81.653 89.483 81.784 C 89.199 82.676 88.987 83.338 88.987 84.371 C 88.987 87.16 90.932 89.461 92.598 91.412 C 93.085 91.97 93.501 92.528 93.918 93.085 L 93.918 93.086 C 93.949 93.128 93.982 93.173 94.017 93.221 C 94.843 94.343 96.696 96.864 96.696 100.475 C 96.696 102.218 96.349 104.24 94.543 107.587 C 92.321 111.421 90.237 113.652 87.182 116.859 Z M 16 118.811 C 21.764 118.602 23.222 117.486 23.222 114.838 L 23.222 76.121 C 23.222 73.472 21.764 72.287 16 72.078 L 16 71.171 L 39.264 71.171 C 54.403 71.171 58.362 77.097 58.362 82.814 C 58.362 87.973 54.334 92.923 43.639 93.969 L 43.639 94.178 C 54.751 94.596 60.167 99.407 60.167 106.099 C 60.167 113.071 55.376 119.764 39.889 119.764 L 16 119.764 Z M 38.361 93.573 C 46 93.573 48.014 89.53 48.014 83.046 C 48.014 77.051 46.348 72.45 38.153 72.45 L 33.361 72.45 L 33.361 93.573 Z M 39.195 118.463 C 48.084 118.463 49.681 113.861 49.681 106.122 C 49.681 99.988 47.042 94.829 38.5 94.829 L 33.361 94.829 L 33.361 118.463 Z M 120.307 114.838 C 120.307 117.486 118.849 118.602 113.085 118.811 L 113.085 119.764 L 137.808 119.764 L 137.808 118.927 C 131.488 118.718 130.446 117.533 130.446 114.814 L 130.446 95.921 L 133.363 95.921 C 138.919 95.921 141.974 98.291 143.849 105.472 L 144.752 105.472 L 144.752 85.254 L 143.849 85.254 C 141.974 92.365 138.919 94.596 133.363 94.596 L 130.446 94.596 L 130.446 72.426 L 137.113 72.426 C 145.794 72.426 148.989 77.028 153.85 88.113 L 154.891 87.973 L 154.405 71.171 L 113.085 71.171 L 113.085 72.078 C 118.849 72.287 120.307 73.472 120.307 76.121 Z\" fill=\"rgb(78,87,116)\"></path></svg>',svgContentId:10222179036}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ym5z6p\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:97,intrinsicWidth:68,layoutDependency:layoutDependency,layoutId:\"AFSM6cvyT\",svg:'<svg width=\"68\" height=\"97\" viewBox=\"0 0 68 97\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 0.25H15.17V96.63H0V0.25ZM58.3301 23.36C59.9929 23.3806 61.6144 23.8806 63.0001 24.8L65.2501 21.36C64.7001 20.81 62.4601 18.89 57.8701 18.89C51.2201 18.89 46.3101 23.29 46.3101 30.42C46.3101 36.97 50.8001 41.42 57.1901 41.42C62.6801 41.42 65.3801 38.66 65.4401 38.59L63.2901 35.09C61.6775 36.1956 59.7839 36.8198 57.8301 36.89C53.9101 36.89 51.6301 33.89 51.6301 30.15C51.5851 29.2541 51.7269 28.3587 52.0465 27.5205C52.3661 26.6823 52.8565 25.9198 53.4865 25.2813C54.1166 24.6428 54.8725 24.1422 55.7063 23.8115C56.5401 23.4807 57.4336 23.327 58.3301 23.36ZM24.3201 40.85V19.33H29.6401V27.54H36.8101V19.33H42.1301V40.85H36.8101V31.86H29.6401V40.85H24.3201ZM44.55 88.57L51.88 66.29H58.69L61.6 96.63H55.7L53.98 74.82L46.82 96.63H41.64L34.25 74.82L32.81 96.63H27.27L29.99 66.29H36.8L44.55 88.57ZM67.52 0.25H21.53V12.97H67.52V0.25ZM21.53 47.21H67.52V59.93H21.53V47.21Z\" fill=\"#4E5774\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-h5f4qn\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"qvNCjwoRi-shape\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 171 43\"><path d=\"M 96.37 14.202 C 96.37 9.225 96.456 4.591 96.714 0.3 L 83.584 2.789 L 83.584 3.99 L 84.871 4.162 C 85.815 4.247 86.416 4.591 86.759 5.106 C 87.102 5.706 87.36 6.565 87.532 7.852 C 87.703 10.34 87.875 16.004 87.789 24.929 C 87.789 33.768 87.703 39.346 87.532 41.491 C 92.251 42.521 95.941 42.95 98.688 42.95 C 103.836 42.95 107.87 41.491 110.787 38.488 C 113.705 35.57 115.25 31.451 115.25 26.388 C 115.25 22.355 114.134 19.008 111.903 16.347 C 109.672 13.687 106.84 12.4 103.493 12.4 C 101.262 12.4 98.945 13.001 96.37 14.202 Z M 96.628 40.633 C 96.456 37.887 96.285 29.649 96.285 16.176 C 97.057 15.918 98.087 15.747 99.374 15.747 C 101.434 15.747 103.064 16.777 104.266 18.922 C 105.467 21.067 106.068 23.642 106.068 26.903 C 106.068 30.936 105.381 34.197 104.008 36.943 C 102.635 39.603 100.919 40.976 98.773 40.976 C 98.087 40.805 97.4 40.719 96.628 40.633 Z M 34.326 1.158 L 0 1.158 L 0 2.874 L 1.802 3.046 C 3.175 3.304 4.119 3.818 4.72 4.591 C 5.321 5.449 5.664 6.822 5.75 8.71 C 6.436 17.978 6.436 26.645 5.75 34.626 C 5.578 36.514 5.235 37.887 4.72 38.745 C 4.119 39.603 3.175 40.118 1.802 40.29 L 0 40.547 L 0 42.264 L 22.14 42.264 L 22.14 40.547 L 19.823 40.376 C 19.258 40.329 18.708 40.167 18.207 39.902 C 17.705 39.636 17.263 39.272 16.906 38.831 C 16.305 37.973 15.962 36.6 15.876 34.712 C 15.618 31.279 15.447 27.332 15.447 22.955 L 20.081 23.041 C 22.569 23.127 24.286 25.015 25.144 28.791 L 26.86 28.791 L 26.86 14.803 L 25.144 14.803 C 24.286 18.493 22.655 20.381 20.081 20.467 L 15.447 20.552 C 15.447 12.829 15.618 7.337 15.876 3.99 L 22.655 3.99 C 27.461 3.99 30.722 7.079 32.61 13.258 L 34.669 12.657 Z M 30.293 27.589 C 30.293 32.052 31.58 35.742 34.069 38.659 C 36.557 41.577 40.247 42.95 44.881 42.95 C 49.515 42.95 53.291 41.491 56.037 38.488 C 58.783 35.57 60.071 31.88 60.071 27.418 C 60.071 22.955 58.783 19.265 56.295 16.347 C 53.806 13.43 50.116 12.057 45.482 12.057 C 40.848 12.057 37.072 13.516 34.326 16.519 C 31.58 19.437 30.293 23.127 30.293 27.589 Z M 49.43 17.806 C 50.459 20.295 50.888 23.556 50.888 27.503 C 50.888 36.6 49.001 41.062 45.31 41.062 C 43.423 41.062 41.964 39.775 40.934 37.201 C 39.904 34.626 39.475 31.365 39.475 27.503 C 39.475 18.493 41.363 14.03 45.053 14.03 C 46.941 13.945 48.4 15.232 49.43 17.806 Z M 121.943 38.659 C 124.775 41.491 128.38 42.95 132.67 42.95 C 135.331 42.95 137.648 42.435 139.707 41.32 C 141.767 40.29 143.397 39.003 144.513 37.458 L 143.655 36.428 C 141.767 37.887 139.621 38.574 137.133 38.574 C 133.7 38.574 131.04 37.458 129.238 35.141 C 127.35 32.824 126.492 29.906 126.663 26.13 L 145.028 26.13 C 145.028 22.011 143.998 18.664 141.853 16.004 C 139.707 13.43 136.704 12.143 132.842 12.143 C 128.036 12.143 124.346 13.687 121.686 16.691 C 119.026 19.694 117.738 23.384 117.738 27.761 C 117.738 32.223 119.112 35.828 121.943 38.659 Z M 128.294 17.12 C 129.238 15.06 130.439 14.03 132.07 14.03 C 134.644 14.03 135.931 17.291 135.931 23.899 L 126.835 24.071 C 126.921 21.496 127.35 19.179 128.294 17.12 Z M 168.112 13.687 C 165.795 12.657 162.877 12.057 159.359 12.057 C 155.755 12.057 152.923 13.001 150.777 14.803 C 148.632 16.605 147.516 18.836 147.516 21.496 C 147.516 23.813 148.203 25.616 149.49 26.903 C 150.777 28.19 152.837 29.306 155.497 30.25 C 157.9 31.108 159.616 31.966 160.475 32.738 C 161.333 33.596 161.848 34.54 161.848 35.828 C 161.848 37.029 161.418 38.145 160.475 39.003 C 159.616 39.947 158.415 40.376 156.87 40.376 C 153.094 40.376 150.262 37.63 148.289 32.137 L 146.83 32.567 L 147.173 41.148 C 150.262 42.349 153.695 42.95 157.471 42.95 C 161.418 42.95 164.422 42.092 166.653 40.29 C 168.884 38.574 170 36.085 170 32.996 C 170 30.936 169.485 29.22 168.37 27.933 C 167.254 26.645 165.452 25.53 162.877 24.5 C 160.045 23.47 158.072 22.526 157.042 21.668 C 156.012 20.81 155.497 19.78 155.497 18.493 C 155.497 17.206 155.84 16.176 156.613 15.318 C 157.385 14.46 158.329 14.116 159.531 14.116 C 162.963 14.116 165.452 16.605 166.996 21.496 L 168.455 21.067 Z M 85.558 12.915 C 84.356 12.314 83.069 12.057 81.61 12.057 C 80.151 12.057 78.693 12.657 77.062 13.859 C 75.432 15.06 74.23 16.691 73.286 18.922 L 73.372 12.057 L 60.328 14.631 L 60.328 15.833 L 61.615 15.918 C 63.246 16.09 64.19 17.377 64.361 19.694 C 64.876 25.015 64.876 30.679 64.361 36.686 C 64.19 39.003 63.246 40.204 61.615 40.462 L 60.328 40.633 L 60.328 42.264 L 78.521 42.264 L 78.521 40.633 L 76.204 40.462 C 74.573 40.29 73.629 39.003 73.458 36.686 C 72.943 31.708 72.857 26.388 73.286 20.896 C 73.801 20.038 74.917 19.523 76.633 19.351 C 78.349 19.179 80.323 19.694 82.383 20.896 Z\" fill=\"rgb(78,87,116)\"></path></svg>',svgContentId:9365753426,withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1djdtgg\",\"data-framer-name\":\"B\",fill:'var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140)) /* {\"name\":\"UI/Gray-600\"} */',intrinsicHeight:100,intrinsicWidth:83,layoutDependency:layoutDependency,layoutId:\"gDZSu32y2\",svg:'<svg width=\"83\" height=\"100\" viewBox=\"0 0 83 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M43.63 0C53.69 0.29 65.88 0.72 73.23 8.36C77.49 12.89 79.9 20.26 79.9 26.77C79.9 35.56 75.9 40.51 73.66 42.64C70.83 45.47 67.14 47.31 63.61 49.01C67.71 50.3 71.97 51.56 75.78 55.25C79.9 59.35 82.72 66.43 82.72 73.94C82.7997 77.1828 82.2263 80.4084 81.0341 83.4251C79.8419 86.4418 78.0551 89.1879 75.78 91.5C67.86 99.57 57.37 99.72 46.04 100H0.0400391V79.6L8.96004 79.74V20.26L0.0400391 20.4V0H43.63ZM34.99 40.22C43.07 40.37 44.2 40.37 46.19 39.95C48.4459 39.4803 50.4592 38.219 51.866 36.3941C53.2727 34.5691 53.98 32.3011 53.86 30C53.86 24.76 50.86 21.79 48.77 20.79C46.68 19.79 45.08 19.66 35.02 19.52L34.99 40.22ZM34.99 79.6H42.79C48.31 79.6 56.1 79.47 56.1 69.98C56.1 64.98 53.41 61.62 50 60.34C47.6 59.34 46.47 59.34 35 59.34L34.99 79.6Z\" fill=\"#4E5774\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-646dyj\",\"data-framer-name\":\"V\",fill:\"#4e5774\",intrinsicHeight:100,intrinsicWidth:96,layoutDependency:layoutDependency,layoutId:\"h7JGwT_ax\",svg:'<svg width=\"96\" height=\"100\" viewBox=\"0 0 96 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 0H42.92V20.4L34.13 20.26L48.72 77.48L64.45 20.26L55.67 20.4V0H95.04V20.4L88.38 20.26L63.6 100H31.3L6.23 20.26L0 20.4V0Z\" fill=\"#4E5774\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1pgyevj\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:81,intrinsicWidth:200,layoutDependency:layoutDependency,layoutId:\"Sh3AgD7Sm\",svg:'<svg width=\"200\" height=\"81\" viewBox=\"0 0 200 81\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 78.9809H6.09645V1.18289H0V0H32.939V21.2011H31.9381C31.9381 21.2011 31.8471 8.9172 27.8435 4.91356C24.3858 1.54686 21.5651 1.18289 15.6506 1.18289V38.3985C15.6506 38.3985 19.7452 38.6715 21.747 36.6697C24.9318 33.576 25.2047 29.5723 25.2047 24.0218H26.2966V54.0491H25.2047C25.2047 48.4986 24.8408 44.495 21.747 41.4013C19.7452 39.3995 15.6506 39.6724 15.6506 39.6724V78.8899C21.5651 78.8899 25.2047 78.6169 28.6624 75.1592C32.7571 71.1556 32.7571 58.8717 32.7571 58.8717H33.758V80.1638H0V78.9809ZM72.0656 78.9809V1.18289H77.6161V0H56.415V1.0919H62.5115V79.0719H56.415V80.2548H90.173V58.9627H89.1721C89.1721 58.9627 89.0811 71.2466 85.0775 75.2502C81.6198 78.6169 77.9801 78.9809 72.0656 78.9809ZM126.297 1.18289V78.9809C132.211 78.9809 135.851 78.6169 139.308 75.2502C143.312 71.2466 143.403 58.9627 143.403 58.9627H144.404V80.2548H110.646V79.0719H116.742V1.0919H110.646V0H131.847V1.18289H126.297ZM166.242 78.9809H172.338V1.18289H166.242V0H199.181V21.2011H198.18C198.18 21.2011 198.089 8.9172 194.085 4.91356C190.628 1.54686 187.807 1.18289 181.893 1.18289V38.3985C181.893 38.3985 185.987 38.6715 187.989 36.6697C191.174 33.576 191.447 29.5723 191.447 24.0218H192.539V54.0491H191.447C191.447 48.4986 191.083 44.495 187.989 41.4013C185.987 39.3995 181.893 39.6724 181.893 39.6724V78.8899C187.807 78.8899 191.447 78.6169 194.904 75.1592C198.999 71.1556 198.999 58.8717 198.999 58.8717H200V80.1638H166.242V78.9809Z\" fill=\"#4E5774\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-wegylk\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:169,layoutDependency:layoutDependency,layoutId:\"Zd8WMmeKR\",svg:'<svg width=\"169\" height=\"80\" viewBox=\"0 0 169 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M70.4316 0.00155253C62.9724 -0.111119 56.3522 5.91944 56.3522 14.6469V53.9469C56.3598 55.3615 55.3032 56.6163 53.7649 56.6163H41.4803C14.8973 56.648 17.2726 22.6324 39.8997 22.6005C49.9587 22.5862 53.4746 22.6005 53.4746 22.6005V13.0699H39.4172C30.6085 13.0842 23.9398 16.4386 19.4542 21.4397C14.9684 26.4409 12.6719 33.1012 12.6754 39.7201C12.6789 46.0921 14.8523 52.7055 19.3921 57.7176C23.9319 62.7297 30.8346 66.1574 40.3747 66.1574H63.5619C64.9024 66.1574 66.0388 65.022 66.0388 63.6979V15.6838C66.024 13.173 67.3263 11.1544 69.4202 10.4863H69.4206C71.4518 9.83998 73.6827 10.6817 75.0274 12.5943L75.0333 12.6029L75.0385 12.6117C78.2971 17.9512 86.4393 31.0497 93.7938 42.8572C97.4711 48.7609 100.952 54.3423 103.527 58.4708C104.815 60.535 105.876 62.236 106.623 63.4325C107.363 64.6196 107.775 65.279 107.821 65.3536C108.363 66.1201 109.046 66.4081 109.615 66.229H109.615L109.616 66.2286C109.938 66.1284 110.192 65.9011 110.382 65.527C110.572 65.153 110.684 64.6335 110.684 64.0096V15.6907C110.677 13.1879 111.971 11.1651 114.072 10.5007C116.091 9.85346 118.328 10.6953 119.66 12.6098L119.665 12.6173L119.669 12.6252C122.935 17.9613 131.081 31.0599 138.437 42.8673C145.789 54.6681 152.363 65.1959 152.466 65.3599C152.466 65.3602 152.466 65.3605 152.466 65.3608C152.998 66.1225 153.724 66.4265 154.33 66.2355C154.658 66.1317 154.921 65.8998 155.116 65.5254C155.312 65.151 155.428 64.6352 155.428 64.0168V0.299136V0.295851H145.812V37.5046C145.812 37.5046 139.858 27.407 129.707 9.97913C119.775 -7.09415 101.033 -0.0374712 101.025 14.6538V37.4977C101.025 37.4977 95.2134 27.3929 85.069 9.96501C81.0316 3.03178 75.5352 0.0786437 70.4316 0.00155253ZM41.1544 0.295851C-14.1025 0.288973 -13.5783 79.013 41.8987 79.049H63.5757C72.9044 79.0557 78.8948 73.5228 78.8874 63.3254V43.385C78.8874 43.385 91.045 63.5421 95.8158 71.4321C103.933 84.8476 123.575 82.2098 123.526 65.4522V43.3991C123.526 43.3991 135.683 63.5487 140.46 71.4495C148.577 84.861 168.221 82.2204 168.171 65.4587V0.295851H158.569V64.0161V64.0168C158.576 67.0279 156.888 68.7108 155.28 69.2192L155.279 69.2196C153.317 69.8449 151.183 69.0081 149.856 67.1073L149.852 67.1007L149.847 67.0941C149.573 66.6558 123.553 24.9889 117.048 14.3437C116.508 13.5773 115.717 13.2624 115.016 13.4841C114.288 13.7174 113.825 14.4883 113.825 15.6894V64.0017V64.0023C113.832 67.0257 112.173 68.7037 110.571 69.2192L110.571 69.2196L110.57 69.2199C108.636 69.8274 106.536 68.992 105.218 67.0928L105.214 67.0882L105.211 67.0836C105.159 67.0019 104.739 66.3302 103.988 65.1286C103.237 63.9271 102.172 62.2217 100.882 60.1538C98.3001 56.0179 94.8159 50.4318 91.1373 44.5267C83.7834 32.7222 75.6582 19.6511 72.4099 14.3296C71.8708 13.5643 71.0729 13.255 70.3701 13.4775V13.4772C69.6336 13.7109 69.1662 14.4817 69.1729 15.6733V15.6743V63.6975C69.1729 66.7797 66.6463 69.2908 63.5619 69.2908H40.3743C29.8245 69.2908 22.0994 65.4612 17.0314 59.8437C11.9635 54.2263 9.54882 46.8377 9.54161 39.7201C9.53439 32.3349 12.092 24.901 17.1122 19.3018C22.1325 13.7025 29.6216 9.95042 39.41 9.93611H39.4103H53.4746V0.295851H41.1544Z\" fill=\"#495677\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1myrolk\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:146,intrinsicWidth:340,layoutDependency:layoutDependency,layoutId:\"Rcl2xVKmU\",svg:'<svg width=\"340\" height=\"146\" viewBox=\"0 0 340 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M211.985 51.6394H205.591L205.579 86.466H205.406C204.685 82.8779 200.544 81.4641 198.285 81.4641C194.837 81.4641 191.86 82.8777 188.765 84.3473C185.414 85.9383 181.925 87.595 177.55 87.595C157.221 87.595 142.337 70.0897 142.337 45.3012C142.337 14.9513 162.257 0.240309 176.733 0.240309C180.317 0.240309 182.48 0.96728 185.778 2.07603C186.64 2.36603 187.58 2.68214 188.644 3.01819C188.644 3.01819 197.928 5.90785 200.393 -3.05176e-05H200.661V30.702H200.41C195.374 10.6643 188.555 1.09547 176.84 1.05076C167.5 1.01722 164.314 6.95864 162.57 10.3178C158.876 17.5 157.892 33.4854 157.892 44.256C157.892 61.0518 158.876 68.4632 161.541 75.5279C164.006 82.1289 168.629 86.8968 177.046 86.7792C188.75 86.5503 192.445 78.7252 192.445 70.1567V51.6394H185.693V50.8122H211.985V51.6394ZM336.609 2.4592L280.448 2.45917H263.239V3.28079H270.851V64.422C270.571 79.7699 259.432 86.8075 250.841 86.4943C235.08 85.924 233.269 71.0062 233.269 67.9321V3.28079H240.809V2.45917H211.482V3.28079H219.262L219.239 60.448C219.239 75.7742 227.025 87.595 249.763 87.595C265.01 87.595 272.008 74.93 271.852 64.4276V3.28079H278.76V3.292H286.96V85.1249H279.56V86.0076H339.952V55.2388H339.533C338.138 85.9401 304.087 85.2533 301.112 85.1346V43.8423C301.471 43.8423 301.836 43.8398 302.206 43.8372H302.206C309.327 43.7874 318.315 43.7246 319.702 61.5715H319.959V25.4647H319.702C317.829 42.7915 308.193 42.9145 301.112 42.9145V3.4485C302.19 3.4485 303.276 3.43211 304.365 3.41568C317.369 3.21945 330.802 3.01673 336.274 30.6292H336.609V2.4592ZM286.418 145.299C277.95 145.299 274.098 140.526 273.691 133.601H280.566C280.923 138.067 284.103 139.453 286.367 139.453C289.497 139.453 292.012 136.988 292.012 133.958C292.012 130.112 289.006 128.99 284.619 127.352L284.3 127.233C284.169 127.183 284.036 127.134 283.903 127.084L283.822 127.056C280.812 126.015 274.356 123.783 274.356 116.665C274.356 109.941 280.409 105.889 286.518 105.889C290.062 105.889 293.65 107.225 295.858 109.84C297.702 112.048 298.066 114.256 298.217 116.257H291.392C291.085 114.307 289.905 111.741 286.311 111.741C283.488 111.741 281.23 113.792 281.23 116.515C281.23 119.837 283.423 120.694 288.952 122.857L289.459 123.055L289.799 123.188C296.266 125.703 298.881 129.398 298.881 133.964C298.887 139.704 294.936 145.299 286.418 145.299ZM123.49 133.601C123.898 140.526 127.749 145.299 136.217 145.299C144.735 145.299 148.687 139.704 148.681 133.964C148.681 129.398 146.065 125.703 139.598 123.188L139.17 123.02L138.753 122.857C133.222 120.695 131.03 119.838 131.03 116.515C131.03 113.792 133.288 111.741 136.11 111.741C139.704 111.741 140.884 114.307 141.192 116.257H148.016C147.865 114.256 147.507 112.048 145.657 109.84C143.449 107.225 139.861 105.889 136.317 105.889C130.208 105.889 124.155 109.941 124.155 116.665C124.155 123.788 130.616 126.019 133.628 127.058L133.701 127.084C133.817 127.127 133.931 127.17 134.045 127.212L134.408 127.348L134.418 127.352C138.806 128.99 141.812 130.112 141.812 133.959C141.812 136.988 139.297 139.453 136.166 139.453C133.908 139.453 130.723 138.067 130.365 133.601H123.49ZM112.406 140.939C109.841 143.762 106.353 145.299 102.296 145.299C99.4223 145.299 94.9565 144.326 92.0331 140.99C89.2106 137.754 88.5459 134.73 88.5459 130.057V106.605H95.4767V130.007C95.4767 132.365 95.5769 135.037 97.1701 136.882C98.4553 138.575 100.456 139.19 102.251 139.19C104.251 139.19 106.253 138.525 107.538 136.725C108.874 134.875 108.974 132.516 108.974 130.051V106.599H115.905V130.001C115.9 135.188 114.771 138.318 112.406 140.939ZM68.1726 144.583H55.4458V106.61H66.4287C74.2311 106.61 79.3623 110.097 79.3623 116.515C79.3623 119.387 78.0263 122.517 74.8464 124.261V124.417C80.5414 126.418 81.414 131.292 81.414 133.45C81.414 141.398 75.3048 144.583 68.1726 144.583ZM66.6356 112.658H62.1194V121.997H67.0994C69.4582 121.997 72.7447 121.433 72.7447 117.275C72.7389 113.535 69.4582 112.658 66.6356 112.658ZM67.7143 127.849H62.1194V138.525H67.7646C70.5872 138.525 74.6953 137.96 74.7454 133.087C74.7454 128.52 70.8443 127.849 67.7143 127.849ZM156.69 144.584V106.61H163.565V144.584H156.69ZM202.003 145.299H203.954V106.61H197.536V131.292H197.33L174.649 105.889H172.698V144.584H179.165V119.795H179.372L202.003 145.299ZM213.086 144.578V106.61H234.074V112.664H219.754V122.311H231.71V128.364H219.754V138.525H234.074V144.578H213.086ZM241.771 133.601C242.178 140.526 246.029 145.299 254.497 145.299C263.015 145.299 266.967 139.704 266.961 133.964C266.961 129.398 264.346 125.703 257.878 123.188L257.589 123.075L257.032 122.857C251.502 120.694 249.31 119.837 249.31 116.515C249.31 113.792 251.568 111.741 254.391 111.741C257.985 111.741 259.164 114.307 259.472 116.257H266.296C266.145 114.256 265.782 112.048 263.937 109.84C261.73 107.225 258.141 105.889 254.598 105.889C248.488 105.889 242.435 109.941 242.435 116.665C242.435 123.783 248.891 126.015 251.901 127.056L251.982 127.084C252.225 127.175 252.464 127.264 252.699 127.352C257.086 128.99 260.092 130.112 260.092 133.959C260.092 136.988 257.577 139.453 254.447 139.453C252.183 139.453 249.003 138.067 248.645 133.601H241.771ZM119.343 43.7865C119.343 49.6999 118.879 68.5918 113.944 77.982C110.858 84.0127 105.515 86.5554 99.2379 86.5554C92.9668 86.5554 87.6176 84.0069 84.538 77.982C79.6029 68.5918 79.1387 49.6944 79.1387 43.7865C79.1387 37.873 79.6029 19.5569 84.538 9.82038C87.5232 3.78952 92.9668 1.24639 99.2379 1.24639C105.509 1.24639 110.958 3.79511 113.944 9.82038C118.879 19.5569 119.343 37.873 119.343 43.7865ZM135.228 43.7865C135.228 17.5895 116.414 0.430359 99.2438 0.430359C82.073 0.430359 63.2598 17.5895 63.2598 43.7865C63.2598 69.9835 82.6935 87.372 99.2438 87.372C115.793 87.372 135.228 69.9835 135.228 43.7865ZM55.5128 3.26967V2.4704H70.861V3.26967H64.2097L39.3318 86.461H38.8847L7.62937 3.26967H0V2.4704H27.7955V3.26967H21.1331L44.1834 67.1273L63.2651 3.26967H55.5128Z\" fill=\"#4E5774\"/>\\n</svg>\\n',withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ck2Uq.framer-flicov, .framer-Ck2Uq .framer-flicov { display: block; }\",\".framer-Ck2Uq.framer-1shbhb2 { height: 200px; overflow: visible; position: relative; width: 200px; }\",\".framer-Ck2Uq .framer-1n38xhz { flex: none; height: 200px; left: calc(50.00000000000002% - 200px / 2); position: absolute; top: calc(50.00000000000002% - 200px / 2); width: 200px; }\",\".framer-Ck2Uq .framer-1ym5z6p { flex: none; height: 67px; left: calc(20.50000000000002% - 47px / 2); position: absolute; top: calc(50.00000000000002% - 67px / 2); width: 47px; }\",\".framer-Ck2Uq .framer-h5f4qn { flex: none; height: 43px; left: calc(50.50000000000002% - 171px / 2); position: absolute; top: calc(50.00000000000002% - 43px / 2); width: 171px; }\",\".framer-Ck2Uq .framer-1djdtgg { flex: none; height: 65px; left: calc(50.00000000000002% - 54.06374501992032px / 2); position: absolute; top: calc(50.00000000000002% - 65px / 2); width: 54px; }\",\".framer-Ck2Uq .framer-646dyj { flex: none; height: 65px; left: 12px; position: absolute; top: calc(50.00000000000002% - 65px / 2); width: 62px; }\",\".framer-Ck2Uq .framer-1pgyevj { flex: none; height: 64px; left: calc(39.50000000000002% - 159px / 2); position: absolute; top: calc(50.00000000000002% - 64px / 2); width: 159px; }\",\".framer-Ck2Uq .framer-wegylk { flex: none; height: 72px; left: calc(44.00000000000002% - 152px / 2); position: absolute; top: calc(50.00000000000002% - 72px / 2); width: 152px; }\",\".framer-Ck2Uq .framer-1myrolk { flex: none; height: 64px; left: 0px; position: absolute; top: calc(50.00000000000002% - 64px / 2); width: 149px; }\",\".framer-Ck2Uq.framer-v-12hd4gl.framer-1shbhb2, .framer-Ck2Uq.framer-v-6m7ff9.framer-1shbhb2, .framer-Ck2Uq.framer-v-eedwpw.framer-1shbhb2, .framer-Ck2Uq.framer-v-1j0o47r.framer-1shbhb2, .framer-Ck2Uq.framer-v-1lya0fq.framer-1shbhb2, .framer-Ck2Uq.framer-v-3ulgjt.framer-1shbhb2 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 200px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"uO_JZ_ugN\":{\"layout\":[\"fixed\",\"fixed\"]},\"I9GaORQoz\":{\"layout\":[\"fixed\",\"fixed\"]},\"hNi7khBA6\":{\"layout\":[\"fixed\",\"fixed\"]},\"xb4WL_m2h\":{\"layout\":[\"fixed\",\"fixed\"]},\"DApUgqNVv\":{\"layout\":[\"fixed\",\"fixed\"]},\"n08iKjgHh\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxHNRqM6F7=withCSS(Component,css,\"framer-Ck2Uq\");export default FramerxHNRqM6F7;FramerxHNRqM6F7.displayName=\"Client logos/Forbes\";FramerxHNRqM6F7.defaultProps={height:200,width:200};addPropertyControls(FramerxHNRqM6F7,{variant:{options:[\"irGBnVieq\",\"uO_JZ_ugN\",\"I9GaORQoz\",\"hNi7khBA6\",\"xb4WL_m2h\",\"DApUgqNVv\",\"n08iKjgHh\"],optionTitles:[\"Forbes\",\"BQF\",\"Federation de la Haute Couture et de la Mode\",\"Business Vogue\",\"Venture Beat\",\"Elle\",\"CNN\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerxHNRqM6F7,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxHNRqM6F7\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uO_JZ_ugN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"I9GaORQoz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hNi7khBA6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xb4WL_m2h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DApUgqNVv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"n08iKjgHh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xHNRqM6F7.map", "// Generated by Framer (68888f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,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/8xuF2WTJJwAPI33nihze/5bvt1Tjn1alESsglDaE4/MOhTEatyY.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/jI7A5kIqqt7I0Eozn6yG/pSYB7BD698gIseWF0s3D/tjQcKJwyy.js\";import ClientLogosForbes from\"https://framerusercontent.com/modules/SD6MtKyS4PiaMEbOglXp/W4pY7NUvYoFjSa38dT5G/xHNRqM6F7.js\";const ClientLogosForbesFonts=getFonts(ClientLogosForbes);const cycleOrder=[\"jmu0jInww\",\"kEnNo4OEN\",\"ol_AjB4qv\",\"ymHDTNBAy\",\"K_NCUewc9\",\"SMepku7N9\",\"kBeXD9eDR\",\"eCLie8Ze0\",\"lZJky9hQl\",\"NS_F_5Dls\"];const serializationHash=\"framer-71gcn\";const variantClassNames={eCLie8Ze0:\"framer-v-qnjsam\",jmu0jInww:\"framer-v-1f517x4\",K_NCUewc9:\"framer-v-16w1usl\",kBeXD9eDR:\"framer-v-eul7d0\",kEnNo4OEN:\"framer-v-17v880\",lZJky9hQl:\"framer-v-em5smt\",NS_F_5Dls:\"framer-v-l7zxdi\",ol_AjB4qv:\"framer-v-cc5jpw\",SMepku7N9:\"framer-v-1m86t9i\",ymHDTNBAy:\"framer-v-1xeiq31\"};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 Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"01 BOF\":\"kEnNo4OEN\",\"01 CNN\":\"lZJky9hQl\",\"01 Elle\":\"eCLie8Ze0\",\"01 Forbes mobile\":\"NS_F_5Dls\",\"01 Forbes\":\"jmu0jInww\",\"01 Venture Beat\":\"kBeXD9eDR\",\"01 Vogue\":\"ymHDTNBAy\",\"02 Federation de la Haute Couture et de la Mode\":\"ol_AjB4qv\",\"02 Forbes\":\"SMepku7N9\",\"02 Vogue\":\"K_NCUewc9\"};const getProps=({background,height,id,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,lxoksPKf0:(_ref=background!==null&&background!==void 0?background:props.lxoksPKf0)!==null&&_ref!==void 0?_ref:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"jmu0jInww\"};};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,lxoksPKf0,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jmu0jInww\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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(serializationHash,...sharedStyleClassNames,\"framer-1f517x4\",className,classNames),\"data-framer-name\":\"01 Forbes\",layoutDependency:layoutDependency,layoutId:\"jmu0jInww\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:lxoksPKf0,borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({eCLie8Ze0:{\"data-framer-name\":\"01 Elle\"},K_NCUewc9:{\"data-framer-name\":\"02 Vogue\"},kBeXD9eDR:{\"data-framer-name\":\"01 Venture Beat\"},kEnNo4OEN:{\"data-framer-name\":\"01 BOF\"},lZJky9hQl:{\"data-framer-name\":\"01 CNN\"},NS_F_5Dls:{\"data-framer-name\":\"01 Forbes mobile\"},ol_AjB4qv:{\"data-framer-name\":\"02 Federation de la Haute Couture et de la Mode\"},SMepku7N9:{\"data-framer-name\":\"02 Forbes\"},ymHDTNBAy:{\"data-framer-name\":\"01 Vogue\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4hby55\",layoutDependency:layoutDependency,layoutId:\"hdH9HjTow\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"180px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||360)-32-328)/2+0+0)+0+0,...addPropertyOverrides({NS_F_5Dls:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||413.5)-32-252)/2+0+0)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-o30cni-container\",\"data-framer-name\":\"01 Elle\",layoutDependency:layoutDependency,layoutId:\"dHyJYlyr_-container\",name:\"01 Elle\",style:{opacity:.8},variants:{K_NCUewc9:{opacity:.9},kBeXD9eDR:{opacity:.6},lZJky9hQl:{opacity:.6},ymHDTNBAy:{opacity:.9}},children:/*#__PURE__*/_jsx(ClientLogosForbes,{height:\"100%\",id:\"dHyJYlyr_\",layoutId:\"dHyJYlyr_\",name:\"01 Elle\",style:{height:\"100%\",width:\"100%\"},variant:\"irGBnVieq\",width:\"100%\",...addPropertyOverrides({eCLie8Ze0:{variant:\"DApUgqNVv\"},K_NCUewc9:{variant:\"hNi7khBA6\"},kBeXD9eDR:{variant:\"xb4WL_m2h\"},kEnNo4OEN:{variant:\"uO_JZ_ugN\"},lZJky9hQl:{variant:\"n08iKjgHh\"},ol_AjB4qv:{variant:\"I9GaORQoz\"},ymHDTNBAy:{variant:\"hNi7khBA6\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",children:'\"It works like this: you search for what you want, click to buy, then attach a photo to have the piece tailored to. It takes a few days for the images to come back, which throws in a jarring, past-future excitement, similar to getting a roll of film developed\"'})}),className:\"framer-mpx15t\",\"data-framer-name\":\"\u201CWe are really enjoying using Prolific. It has been so much better for us than MTurk.\u201D\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rklwf0M6S\",variants:{NS_F_5Dls:{\"--extracted-r6o4lv\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eCLie8Ze0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",children:\"\u201CIts [DRESSX\u2019s] textiles are pixels, not anything tangible. But it is, in many ways, magnificent. Even if not totally conscious of it, all of us move easily between digital personas\u201D\"})})},K_NCUewc9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",children:\"\u201CAmong digital fashion and metaverse startups, DressX has some of the most significant traction and scale\u201D.\"})})},kBeXD9eDR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",children:\"\u201CAlthough the industry is still in its infancy, DressX has partnered with numerous leading tech, fashion, and lifestyle companies, including Meta, Roblox, Snapchat, Google, Coca-Cola, Farfetch and more\u201D\"})})},kEnNo4OEN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",children:\"\u201CDRESSX\\xa0has emerged as a top player in digital fashion since its launch in 2020\u201D\"})})},lZJky9hQl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",children:\"\u201CIn the near future, instead of going to your closet to choose something to throw on for your next video call, you might instead turn to your virtual wardrobe to pick out a 3D-rendered digital outfit to \u201Cwear\u201D\u201D.\"})})},NS_F_5Dls:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116)))\"},children:'\"It works like this: you search for what you want, click to buy, then attach a photo to have the piece tailored to. It takes a few days for the images to come back, which throws in a jarring, past-future excitement, similar to getting a roll of film developed\"'})})},ol_AjB4qv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",children:\"\u201CTheir visionary and pioneering mindset has led entrepreneurs Daria Shapovalova and Natalia Modenova [of DRESSX] to become a guiding light in the realm of digital fashion\u201D\"})})},SMepku7N9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",children:\"\u201CEssentially, DRESSX is world\u2019s largest retailer of digital fashion\u201D.\"})})},ymHDTNBAy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",children:\"\u201CDigital fashion is getting an even shorter delivery window. DressX \u2014 the digital fashion marketplace that dresses customer-submitted photos in digital items \u2014 is now letting people quickly design and wear their own digital clothes\u201D.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",children:\"Forbes\"})}),className:\"framer-1dlrnlq\",\"data-framer-name\":\"Company name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aZZxies4p\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eCLie8Ze0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",children:\"Elle\"})})},K_NCUewc9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",children:\"Vogue Business\"})})},kBeXD9eDR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",children:\"Venture Beat\"})})},kEnNo4OEN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",children:\"The Business of Fashion\"})})},lZJky9hQl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",children:\"CNN\"})})},ol_AjB4qv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",children:\"Federation de la Haute Couture et de la Mode\"})})},ymHDTNBAy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",children:\"Vogue Business\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-71gcn.framer-1gt7guu, .framer-71gcn .framer-1gt7guu { display: block; }\",\".framer-71gcn.framer-1f517x4 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 440px; }\",\".framer-71gcn .framer-4hby55 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-71gcn .framer-o30cni-container { flex: none; height: 100px; position: relative; width: 180px; }\",\".framer-71gcn .framer-mpx15t { flex: none; height: 184px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-71gcn .framer-1dlrnlq { flex: none; height: 24px; 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-71gcn.framer-1f517x4, .framer-71gcn .framer-4hby55 { gap: 0px; } .framer-71gcn.framer-1f517x4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-71gcn.framer-1f517x4 > :first-child, .framer-71gcn .framer-4hby55 > :first-child { margin-top: 0px; } .framer-71gcn.framer-1f517x4 > :last-child, .framer-71gcn .framer-4hby55 > :last-child { margin-bottom: 0px; } .framer-71gcn .framer-4hby55 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-71gcn.framer-v-17v880 .framer-4hby55, .framer-71gcn.framer-v-1m86t9i .framer-4hby55, .framer-71gcn.framer-v-eul7d0 .framer-4hby55 { justify-content: flex-start; }\",\".framer-71gcn.framer-v-17v880 .framer-o30cni-container { order: 0; }\",\".framer-71gcn.framer-v-17v880 .framer-mpx15t { order: 1; }\",\".framer-71gcn.framer-v-17v880 .framer-1dlrnlq { order: 2; }\",\".framer-71gcn.framer-v-l7zxdi.framer-1f517x4 { width: min-content; }\",\".framer-71gcn.framer-v-l7zxdi .framer-4hby55 { justify-content: flex-start; width: 188px; }\",\".framer-71gcn.framer-v-l7zxdi .framer-o30cni-container { aspect-ratio: 1.8 / 1; height: var(--framer-aspect-ratio-supported, 100px); }\",\".framer-71gcn.framer-v-l7zxdi .framer-mpx15t { height: auto; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 360\n * @framerIntrinsicWidth 440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kEnNo4OEN\":{\"layout\":[\"fixed\",\"auto\"]},\"ol_AjB4qv\":{\"layout\":[\"fixed\",\"auto\"]},\"ymHDTNBAy\":{\"layout\":[\"fixed\",\"auto\"]},\"K_NCUewc9\":{\"layout\":[\"fixed\",\"auto\"]},\"SMepku7N9\":{\"layout\":[\"fixed\",\"auto\"]},\"kBeXD9eDR\":{\"layout\":[\"fixed\",\"auto\"]},\"eCLie8Ze0\":{\"layout\":[\"fixed\",\"auto\"]},\"lZJky9hQl\":{\"layout\":[\"fixed\",\"auto\"]},\"NS_F_5Dls\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"lxoksPKf0\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxzSFaubax=withCSS(Component,css,\"framer-71gcn\");export default FramerxzSFaubax;FramerxzSFaubax.displayName=\"Testimonial\";FramerxzSFaubax.defaultProps={height:360,width:440};addPropertyControls(FramerxzSFaubax,{variant:{options:[\"jmu0jInww\",\"kEnNo4OEN\",\"ol_AjB4qv\",\"ymHDTNBAy\",\"K_NCUewc9\",\"SMepku7N9\",\"kBeXD9eDR\",\"eCLie8Ze0\",\"lZJky9hQl\",\"NS_F_5Dls\"],optionTitles:[\"01 Forbes\",\"01 BOF\",\"02 Federation de la Haute Couture et de la Mode\",\"01 Vogue\",\"02 Vogue\",\"02 Forbes\",\"01 Venture Beat\",\"01 Elle\",\"01 CNN\",\"01 Forbes mobile\"],title:\"Variant\",type:ControlType.Enum},lxoksPKf0:{defaultValue:'var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255)) /* {\"name\":\"UI/White\"} */',title:\"Background\",type:ControlType.Color}});addFonts(FramerxzSFaubax,[{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\"}]},...ClientLogosForbesFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxzSFaubax\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"440\",\"framerVariables\":\"{\\\"lxoksPKf0\\\":\\\"background\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"360\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kEnNo4OEN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ol_AjB4qv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ymHDTNBAy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"K_NCUewc9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SMepku7N9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kBeXD9eDR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eCLie8Ze0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lZJky9hQl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NS_F_5Dls\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xzSFaubax.map", "import{jsx as _jsx}from\"react/jsx-runtime\";export function withBlurr(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,style:{filter:\"blur(60px)\",WebkitFilter:\"blur(60px)\"}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withBlurr\":{\"type\":\"reactHoc\",\"name\":\"withBlurr\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Gradient.map", "// Generated by Framer (189896a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Carousel1 from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js\";import News from\"#framer/local/canvasComponent/Cfx89mg4Y/Cfx89mg4Y.js\";import Roblox from\"#framer/local/canvasComponent/fyODWBpVR/fyODWBpVR.js\";import CTA from\"#framer/local/canvasComponent/gCkrcTKxp/gCkrcTKxp.js\";import SCROLLCARD from\"#framer/local/canvasComponent/ncvscg5FE/ncvscg5FE.js\";import FeatureSection4Jul from\"#framer/local/canvasComponent/pEo0D4qvs/pEo0D4qvs.js\";import AnnounsementButton from\"#framer/local/canvasComponent/QkcakyId5/QkcakyId5.js\";import Snapchat from\"#framer/local/canvasComponent/qSPfMdIJs/qSPfMdIJs.js\";import Footer from\"#framer/local/canvasComponent/qZ_XI3P7P/qZ_XI3P7P.js\";import Google from\"#framer/local/canvasComponent/r4tOFybda/r4tOFybda.js\";import Navigation from\"#framer/local/canvasComponent/RG7yJog90/RG7yJog90.js\";import Zepeto from\"#framer/local/canvasComponent/saC4IrP2s/saC4IrP2s.js\";import Meta from\"#framer/local/canvasComponent/ThR8bPWHZ/ThR8bPWHZ.js\";import LogoPartners from\"#framer/local/canvasComponent/xGKYZtLHG/xGKYZtLHG.js\";import Testimonial from\"#framer/local/canvasComponent/xzSFaubax/xzSFaubax.js\";import Newsletter from\"#framer/local/canvasComponent/YrcfIC9Nn/YrcfIC9Nn.js\";import Carousel from\"#framer/local/canvasComponent/zQzSyE89b/zQzSyE89b.js\";import{withBlurr}from\"#framer/local/codeFile/ZATwASO/Gradient.js\";import*as sharedStyle2 from\"#framer/local/css/KcUpCwhm3/KcUpCwhm3.js\";import*as sharedStyle from\"#framer/local/css/lD51pbnhn/lD51pbnhn.js\";import*as sharedStyle4 from\"#framer/local/css/W5729J3pQ/W5729J3pQ.js\";import*as sharedStyle3 from\"#framer/local/css/waIKCrlqu/waIKCrlqu.js\";import*as sharedStyle1 from\"#framer/local/css/XuM03kBo3/XuM03kBo3.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const NavigationWithVariantAppearEffect=withVariantAppearEffect(Navigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivWithBlurr1xze9nt=withCodeBoundaryForOverrides(motion.div,{nodeId:\"JpEHOZBfB\",override:withBlurr,scopeId:\"augiA20Il\"});const MotionDivWithBlurr1j0lqfi=withCodeBoundaryForOverrides(motion.div,{nodeId:\"jLYFSF3vy\",override:withBlurr,scopeId:\"augiA20Il\"});const MotionDivWithBlurr1k27plj=withCodeBoundaryForOverrides(motion.div,{nodeId:\"K9HlLWey2\",override:withBlurr,scopeId:\"augiA20Il\"});const MotionDivWithBlurr1m69yud=withCodeBoundaryForOverrides(motion.div,{nodeId:\"RxnRcAyx9\",override:withBlurr,scopeId:\"augiA20Il\"});const AnnounsementButtonFonts=getFonts(AnnounsementButton);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const CarouselFonts=getFonts(Carousel);const MetaFonts=getFonts(Meta);const SnapchatFonts=getFonts(Snapchat);const RobloxFonts=getFonts(Roblox);const ZepetoFonts=getFonts(Zepeto);const GoogleFonts=getFonts(Google);const TickerFonts=getFonts(Ticker);const TestimonialFonts=getFonts(Testimonial);const Carousel1Fonts=getFonts(Carousel1);const ContainerWithFX=withFX(Container);const FeatureSection4JulFonts=getFonts(FeatureSection4Jul);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const SCROLLCARDFonts=getFonts(SCROLLCARD);const LogoPartnersFonts=getFonts(LogoPartners);const NewsFonts=getFonts(News);const CTAFonts=getFonts(CTA);const NewsletterFonts=getFonts(Newsletter);const FooterFonts=getFonts(Footer);const breakpoints={J3uB7PlJN:\"(max-width: 575px)\",PqpaQgc5e:\"(min-width: 992px) and (max-width: 1199px)\",WpCIbgkLd:\"(min-width: 576px) and (max-width: 991px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ZFL14\";const variantClassNames={J3uB7PlJN:\"framer-v-ujtbii\",PqpaQgc5e:\"framer-v-1uu7l1z\",WpCIbgkLd:\"framer-v-qqyzon\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:30,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-70};const transition2={delay:.1,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition3={delay:0,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={delay:.2,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={delay:.1,duration:.8,ease:[.12,.23,.5,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:-1,skewY:0,transformPerspective:1200,x:0,y:50};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:-1,skewY:0,transformPerspective:1200,x:0,y:50};const transition6={delay:.1,duration:1,ease:[.44,0,0,1],type:\"tween\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition7={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition8={delay:0,duration:.8,ease:[.12,.23,.5,1],type:\"tween\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:50};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:50};const transition9={damping:40,delay:0,mass:.5,stiffness:160,type:\"spring\"};const transition10={delay:.1,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:50};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:50};const transition11={delay:.3,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const transition12={delay:.4,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const transition13={delay:.5,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const transition14={delay:.6,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const transition15={delay:.7,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const transition16={delay:.8,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const transition17={delay:.9,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const transition18={delay:1,duration:.9,ease:[.44,0,0,1],type:\"tween\"};const transition19={delay:1.1,duration:1,ease:[.44,0,0,1],type:\"tween\"};const transition20={delay:1.2,duration:1.1,ease:[.44,0,0,1],type:\"tween\"};const transition21={delay:1.3,duration:1.2,ease:[.44,0,0,1],type:\"tween\"};const transition22={delay:1.4,duration:1.3,ease:[.44,0,0,1],type:\"tween\"};const transition23={delay:1.5,duration:1.4,ease:[.44,0,0,1],type:\"tween\"};const transition24={delay:1.6,duration:1.5,ease:[.44,0,0,1],type:\"tween\"};const transition25={delay:1.7,duration:1.6,ease:[.44,0,0,1],type:\"tween\"};const transition26={delay:1.8,duration:1.7,ease:[.44,0,0,1],type:\"tween\"};const transition27={delay:1.9,duration:1.8,ease:[.44,0,0,1],type:\"tween\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop L\":\"WQLkyLRf1\",Desktop:\"PqpaQgc5e\",Phone:\"J3uB7PlJN\",Tablet:\"WpCIbgkLd\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0},WpCIbgkLd:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:79,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-wde3po-container\",\"data-framer-appear-id\":\"wde3po\",initial:animation1,layoutScroll:true,nodeId:\"tws5NSJQ1\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{__framer__variantAppearEffectEnabled:undefined,variant:\"CGsXOuuLs\"},WpCIbgkLd:{__framer__variantAppearEffectEnabled:undefined,variant:\"CGsXOuuLs\"}},children:/*#__PURE__*/_jsx(NavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"tws5NSJQ1\",layoutId:\"tws5NSJQ1\",style:{width:\"100%\"},variant:\"KrPPG9bp_\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1yp8xwc\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aeug7n\",\"data-framer-name\":\"gradient-top-right\",children:[/*#__PURE__*/_jsx(MotionDivWithBlurr1xze9nt,{className:\"framer-1xze9nt\",\"data-framer-name\":\"blue\"}),/*#__PURE__*/_jsx(MotionDivWithBlurr1j0lqfi,{className:\"framer-1j0lqfi\",\"data-framer-name\":\"pink\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d13stc\",\"data-framer-name\":\"gradient-top-left\",children:[/*#__PURE__*/_jsx(MotionDivWithBlurr1k27plj,{className:\"framer-1k27plj\",\"data-framer-name\":\"yellow\"}),/*#__PURE__*/_jsx(MotionDivWithBlurr1m69yud,{className:\"framer-1m69yud\",\"data-framer-name\":\"green\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17lqxjv\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9o2owm\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ng0tkn\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"urKMC4jpc\"},implicitPathVariables:undefined},{href:{webPageId:\"urKMC4jpc\"},implicitPathVariables:undefined},{href:{webPageId:\"urKMC4jpc\"},implicitPathVariables:undefined},{href:{webPageId:\"urKMC4jpc\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WpCIbgkLd:{y:(componentViewport?.y||0)+0+0+160+0+0+0+0+0+9+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,y:(componentViewport?.y||0)+0+0+160+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q9m7rd-container\",nodeId:\"xZK4OFoN9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{eO79krJ8p:\"First Avatar Fashion Trend Report\",lEOsH16zb:resolvedLinks[2]},PqpaQgc5e:{lEOsH16zb:resolvedLinks[1]},WpCIbgkLd:{lEOsH16zb:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(AnnounsementButton,{eO79krJ8p:\"Discover DRESSX First Avatar Fashion Trend Report\",height:\"100%\",id:\"xZK4OFoN9\",layoutId:\"xZK4OFoN9\",lEOsH16zb:resolvedLinks[0],variant:\"ZGN46nMAz\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"90%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, rgb(45, 53, 76))\"},children:[\"DRESSX is a global leader in\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\" avatar fashion \"}),\"and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"AI styling\"})]})})},WpCIbgkLd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"90%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, rgb(45, 53, 76))\"},children:[\"DRESSX is a global leader in \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"avatar fashion \"}),\"and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"AI styling\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, rgb(45, 53, 76))\"},children:[\"DRESSX is a global leader \",/*#__PURE__*/_jsx(\"br\",{}),\"in \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"avatar fashion\"}),\" and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"AI styling\"})]})}),className:\"framer-1uywckh\",\"data-framer-appear-id\":\"1uywckh\",\"data-framer-name\":\"Main Title\",fonts:[\"GF;DM Sans-600\",\"GF;IBM Plex Serif-600italic\"],initial:animation3,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17ramyl\",\"data-styles-preset\":\"lD51pbnhn\",style:{\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\"Transform your photos with AI-generated outfits, try on virtual styles via your phone camera, and dress your avatar across platforms like Snapchat, Roblox, Zoom and Meta. Over 85 million DRESSX pieces are live across the world\u2019s top digital platforms.\"})}),className:\"framer-u9emc7\",\"data-framer-appear-id\":\"u9emc7\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],initial:animation3,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+485},WpCIbgkLd:{y:(componentViewport?.y||0)+0+440.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+452.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6g8r98-container\",nodeId:\"soJPhHjJs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Carousel,{height:\"100%\",id:\"soJPhHjJs\",layoutId:\"soJPhHjJs\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1j4nrae\",\"data-framer-name\":\"Brands\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{animate:animation2}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g567mr\",\"data-styles-preset\":\"XuM03kBo3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Strategic Tech Partners\"})}),className:\"framer-11kit8\",\"data-framer-appear-id\":\"11kit8\",\"data-framer-name\":\"Live messaging. limi\",fonts:[\"Inter\"],initial:animation7,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xo0xl9\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yuhlz0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"XNtA_NGyt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:20,overflow:false},gap:30},PqpaQgc5e:{gap:60},WpCIbgkLd:{gap:60}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:5,fadeWidth:25,overflow:false},gap:80,height:\"100%\",hoverFactor:1,id:\"XNtA_NGyt\",layoutId:\"XNtA_NGyt\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:\"136px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-tiyzx0-container\",inComponentSlot:true,nodeId:\"iOTR_kSWW\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Meta,{height:\"100%\",id:\"iOTR_kSWW\",layoutId:\"iOTR_kSWW\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"58px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nyh64w-container\",inComponentSlot:true,nodeId:\"toVgx5ynw\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Snapchat,{height:\"100%\",id:\"toVgx5ynw\",layoutId:\"toVgx5ynw\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"177px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q9210k-container\",inComponentSlot:true,nodeId:\"RkCiVDGrH\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Roblox,{height:\"100%\",id:\"RkCiVDGrH\",layoutId:\"RkCiVDGrH\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,width:\"124px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-19qtkui-container\",inComponentSlot:true,nodeId:\"V5qVNUFHR\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Zepeto,{height:\"100%\",id:\"V5qVNUFHR\",layoutId:\"V5qVNUFHR\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"122px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wy5k29-container\",inComponentSlot:true,nodeId:\"gcrn2ESgg\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Google,{height:\"100%\",id:\"gcrn2ESgg\",layoutId:\"gcrn2ESgg\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-18fn4o8\",\"data-framer-name\":\"Press\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bymv4k\",\"data-framer-name\":\"Press\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-144ivnp\",\"data-styles-preset\":\"KcUpCwhm3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, rgb(45, 53, 76))\"},children:\"DRESSX in the News\"})})},PqpaQgc5e:{animate:animation4},WpCIbgkLd:{animate:animation4}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g567mr\",\"data-styles-preset\":\"XuM03kBo3\",children:\"DRESSX in the News\"})}),className:\"framer-11ze0f5\",\"data-framer-appear-id\":\"11ze0f5\",\"data-framer-name\":\"Don\u2019t take our word for it\",fonts:[\"Inter\"],initial:animation3,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10vpdfl-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LMrQlJIXa\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Carousel1,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(17, 17, 17, 0.15)\",arrowPadding:19,arrowRadius:60,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"LMrQlJIXa\",layoutId:\"LMrQlJIXa\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"346px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-k30bep-container\",inComponentSlot:true,nodeId:\"wfHYW6JcL\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"wfHYW6JcL\",layoutId:\"wfHYW6JcL\",lxoksPKf0:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",style:{width:\"100%\"},variant:\"SMepku7N9\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"345px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-b627dl-container\",inComponentSlot:true,nodeId:\"Q8lEBTu0k\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"Q8lEBTu0k\",layoutId:\"Q8lEBTu0k\",lxoksPKf0:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",style:{width:\"100%\"},variant:\"kEnNo4OEN\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"346px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lprc9z-container\",inComponentSlot:true,nodeId:\"bYlstdN4n\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"bYlstdN4n\",layoutId:\"bYlstdN4n\",lxoksPKf0:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",style:{width:\"100%\"},variant:\"kBeXD9eDR\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"346px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-uxq5ek-container\",inComponentSlot:true,nodeId:\"jK0ajbAQ6\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"jK0ajbAQ6\",layoutId:\"jK0ajbAQ6\",lxoksPKf0:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",style:{width:\"100%\"},variant:\"K_NCUewc9\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"345px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sri936-container\",inComponentSlot:true,nodeId:\"KLCEdXiVV\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"KLCEdXiVV\",layoutId:\"KLCEdXiVV\",lxoksPKf0:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",style:{width:\"100%\"},variant:\"eCLie8Ze0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"345px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-xr2lhf-container\",inComponentSlot:true,nodeId:\"p_daEms1C\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"p_daEms1C\",layoutId:\"p_daEms1C\",lxoksPKf0:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",style:{width:\"100%\"},variant:\"jmu0jInww\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"346px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p1oidp-container\",inComponentSlot:true,nodeId:\"vZ1fkST8a\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"vZ1fkST8a\",layoutId:\"vZ1fkST8a\",lxoksPKf0:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",style:{width:\"100%\"},variant:\"ymHDTNBAy\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-155kb7t\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:\"358px\",y:(componentViewport?.y||0)+0+1604.2+60+0},PqpaQgc5e:{width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+1667+60+0},WpCIbgkLd:{width:\"536px\",y:(componentViewport?.y||0)+0+1574.6+60+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:396,width:\"1080px\",y:(componentViewport?.y||0)+0+1654+60+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m1ove5-container\",nodeId:\"BF8PrKYTo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"Six1ZBLph\"},PqpaQgc5e:{variant:\"IDrTEvOq9\"},WpCIbgkLd:{variant:\"IeLnZiZGx\"}},children:/*#__PURE__*/_jsx(FeatureSection4Jul,{A5nFfiiXS:addImageAlt({pixelHeight:720,pixelWidth:988,src:\"https://framerusercontent.com/images/n7BeZOPIPwfLTOqlnGYqECXd820.png\",srcSet:\"https://framerusercontent.com/images/n7BeZOPIPwfLTOqlnGYqECXd820.png?scale-down-to=512 512w,https://framerusercontent.com/images/n7BeZOPIPwfLTOqlnGYqECXd820.png 988w\"},\"Desktop and mobile screens displaying a blonde girl posing in AI-generated outfits\"),BxrCvteZa:\"Use our AI Stylist app to refresh your wardrobe digitally, curbing splurge shopping and solving nothing-to-wear woes.\",CGa9l1Zmr:\"DRESSX ME AI Stylist: Transform Your Photos and Your Wardrobe with an AI Stylist\",CgmyYB0ff:\"Upload a photo of yourself and a second image that shows your style inspiration. Our AI stylist will do the rest.\",digqgNAlo:true,height:\"100%\",id:\"BF8PrKYTo\",jEHLjZXGz:\"http://dressxme.com/\",jlu5UTtL2:\"MagicWand\",l4ZvI1S1d:\"Generate outfits that will improve your image such as eye-catching outfits for dating apps or professional outfits for LinkedIn.\",layoutId:\"BF8PrKYTo\",lWMJgSfwd:true,M4N333Dbu:\"tV7fo1NXZ\",R0PK0OkPy:\"GENERATE YOUR FIRST AI LOOK\",RFU2XA2cQ:\"GENERATE YOUR FIRST AI LOOK\",RRA_qazw0:\"Experiment with standout digital outfits to make your dating profile more engaging.\",style:{width:\"100%\"},TrlAtde2i:\"TShirt\",variant:\"jxHYsH9ZE\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SjiTV3uAd\"},implicitPathVariables:undefined},{href:{webPageId:\"SjiTV3uAd\"},implicitPathVariables:undefined},{href:{webPageId:\"SjiTV3uAd\"},implicitPathVariables:undefined},{href:{webPageId:\"SjiTV3uAd\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:\"358px\",y:(componentViewport?.y||0)+0+1604.2+60+476},PqpaQgc5e:{width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+1667+60+476},WpCIbgkLd:{width:\"536px\",y:(componentViewport?.y||0)+0+1574.6+60+476}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:396,width:\"1080px\",y:(componentViewport?.y||0)+0+1654+60+536,children:/*#__PURE__*/_jsx(Container,{className:\"framer-89oj90-container\",nodeId:\"AGquxxVEq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{jEHLjZXGz:resolvedLinks1[2],variant:\"Six1ZBLph\"},PqpaQgc5e:{jEHLjZXGz:resolvedLinks1[1],variant:\"IDrTEvOq9\"},WpCIbgkLd:{jEHLjZXGz:resolvedLinks1[3],variant:\"IeLnZiZGx\"}},children:/*#__PURE__*/_jsx(FeatureSection4Jul,{A5nFfiiXS:addImageAlt({pixelHeight:720,pixelWidth:1040,src:\"https://framerusercontent.com/images/jIlwAu36emUfSsdq7aGkQBsgGM.png\",srcSet:\"https://framerusercontent.com/images/jIlwAu36emUfSsdq7aGkQBsgGM.png?scale-down-to=512 512w,https://framerusercontent.com/images/jIlwAu36emUfSsdq7aGkQBsgGM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jIlwAu36emUfSsdq7aGkQBsgGM.png 1040w\"},\"A collage of three avatars wearing digital fashion outfits, alongside a mobile screen displaying a selection of digital fashion looks available for purchase\"),BxrCvteZa:\"DRESSX supplies exclusive outfits for avatars on Meta, Roblox, Snapchat, Zepeto, and more.\",CGa9l1Zmr:\"DRESSX Avatar Fashion: Style your avatars, stand out in-game, and unlock new ways to express yourself\",CgmyYB0ff:\"\",digqgNAlo:true,height:\"100%\",id:\"AGquxxVEq\",jEHLjZXGz:resolvedLinks1[0],jlu5UTtL2:\"MagicWand\",l4ZvI1S1d:\"Keep your avatars fresh with regular drops under the DRESSX brand on your preferred avatar platforms.\",layoutId:\"AGquxxVEq\",lWMJgSfwd:true,M4N333Dbu:\"tV7fo1NXZ\",R0PK0OkPy:\"EXPLORE AVATAR FASHION\",RFU2XA2cQ:\"GENERATE YOUR FIRST AI LOOK\",RRA_qazw0:\"Launch your brand\u2019s next collection with DRESSX and reach millions of Gen Z fans where they already play.\",style:{width:\"100%\"},TrlAtde2i:\"TShirt\",variant:\"meoCOoRM8\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8nvhy5\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1qogos3\",\"data-styles-preset\":\"waIKCrlqu\",style:{\"--framer-text-alignment\":\"center\"},children:\"Boost brand engagement with AR and AI solutions\"})}),className:\"framer-45z64s\",\"data-framer-name\":\"We\u2019ve got you covered\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"We provide tailored services across the platform suite, including AI stylists, virtual try-on experiences, and Magic Mirror solutions for brands and retailers.\"})}),className:\"framer-1qpte0t\",\"data-framer-name\":\"We\u2019ve got you covered\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qdwbc7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gF7Xzjt4U\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"gF7Xzjt4U\",layoutId:\"gF7Xzjt4U\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:222,width:\"148px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-13p1y7f-container\",inComponentSlot:true,nodeId:\"dE664_uEJ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SCROLLCARD,{height:\"100%\",id:\"dE664_uEJ\",layoutId:\"dE664_uEJ\",style:{height:\"100%\",width:\"100%\"},variant:\"Z5C8F28Cb\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:222,width:\"148px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l27w7k-container\",inComponentSlot:true,nodeId:\"TSrsH1qs_\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SCROLLCARD,{height:\"100%\",id:\"TSrsH1qs_\",layoutId:\"TSrsH1qs_\",style:{height:\"100%\",width:\"100%\"},variant:\"G53zDaKwM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:221,width:\"147.3333px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-106603d-container\",inComponentSlot:true,nodeId:\"Rld9jOuFT\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SCROLLCARD,{height:\"100%\",id:\"Rld9jOuFT\",layoutId:\"Rld9jOuFT\",style:{height:\"100%\",width:\"100%\"},variant:\"NHW3Z1WWQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:221,width:\"147.3333px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k9ldje-container\",inComponentSlot:true,nodeId:\"SCu9NTNIP\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SCROLLCARD,{height:\"100%\",id:\"SCu9NTNIP\",layoutId:\"SCu9NTNIP\",style:{height:\"100%\",width:\"100%\"},variant:\"pgfUg4TcW\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:221,width:\"147.3333px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16xtjr0-container\",inComponentSlot:true,nodeId:\"naJGJftvM\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SCROLLCARD,{height:\"100%\",id:\"naJGJftvM\",layoutId:\"naJGJftvM\",style:{height:\"100%\",width:\"100%\"},variant:\"CEJ4EAzJg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:222,width:\"148px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-dmwfgo-container\",inComponentSlot:true,nodeId:\"CuLkaniCX\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SCROLLCARD,{height:\"100%\",id:\"CuLkaniCX\",layoutId:\"CuLkaniCX\",style:{height:\"100%\",width:\"100%\"},variant:\"a1aKDBzBH\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:222,width:\"148px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2ll8jv-container\",inComponentSlot:true,nodeId:\"InBqqEb9r\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SCROLLCARD,{height:\"100%\",id:\"InBqqEb9r\",layoutId:\"InBqqEb9r\",style:{height:\"100%\",width:\"100%\"},variant:\"sy6r_q7EI\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:222,width:\"148px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1byhksa-container\",inComponentSlot:true,nodeId:\"K3uKwtK8T\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SCROLLCARD,{height:\"100%\",id:\"K3uKwtK8T\",layoutId:\"K3uKwtK8T\",style:{height:\"100%\",width:\"100%\"},variant:\"RlutbgEX0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:222,width:\"148px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-17z8t77-container\",inComponentSlot:true,nodeId:\"SSXTQK9TH\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SCROLLCARD,{height:\"100%\",id:\"SSXTQK9TH\",layoutId:\"SSXTQK9TH\",style:{height:\"100%\",width:\"100%\"},variant:\"w9020sewQ\",width:\"100%\"})})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dft54d\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, rgb(45, 53, 76))\"},children:[\"We empower\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"brands\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNzAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\"\uD83D\uDC8C \"}),\"and\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"retailers\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\" \"}),\"\uD83D\uDECD\uFE0F to deliver  \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"immersive fashion\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAw\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\"\uD83D\uDC51 \"}),\"experiences directly to their \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"audiences\"}),\" \uD83D\uDC6F in native digital spaces \uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDCBB using\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\" cutting edge tech\"}),\"\uD83D\uDC68\uD83C\uDFFD\u200D\uD83D\uDD2C and integrations across top \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"avatar platforms\"}),\"\uD83E\uDD18\uD83C\uDFFDand \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"games\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\" \"}),\"\uD83C\uDFAE\"]}),/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, rgb(45, 53, 76))\"},children:\" \"})]})},WpCIbgkLd:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, rgb(45, 53, 76))\"},children:[\"We empower\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"brands\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNzAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\"\uD83D\uDC8C \"}),\"and\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"retailers\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\" \"}),\"\uD83D\uDECD\uFE0F to deliver  \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"immersive fashion\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAw\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\"\uD83D\uDC51 \"}),\"experiences directly to their \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"audiences\"}),\" \uD83D\uDC6F in native digital spaces \uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDCBB using\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\" cutting edge tech\"}),\"\uD83D\uDC68\uD83C\uDFFD\u200D\uD83D\uDD2C and integrations across top \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"avatar platforms\"}),\"\uD83E\uDD18\uD83C\uDFFDand \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"games\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\" \"}),\"\uD83C\uDFAE\"]}),/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, rgb(45, 53, 76))\"},children:\" \"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, rgb(45, 53, 76))\"},children:[\"We empower\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"brands\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNzAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\"\uD83D\uDC8C \"}),\"and\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"retailers\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\" \"}),\"\uD83D\uDECD\uFE0F to deliver  \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"immersive fashion\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAw\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\"\uD83D\uDC51 \"}),\"experiences directly to their \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"audiences\"}),\" \uD83D\uDC6F in native digital spaces \uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDCBB using\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\" cutting edge tech\"}),\"\uD83D\uDC68\uD83C\uDFFD\u200D\uD83D\uDD2C and integrations across top \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"avatar platforms\"}),\"\uD83E\uDD18\uD83C\uDFFDand \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"games\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2VyaWYtNjAwaXRhbGlj\",\"--framer-font-family\":'\"IBM Plex Serif\", \"IBM Plex Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116))\"},children:\" \"}),\"\uD83C\uDFAE\"]}),/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, rgb(45, 53, 76))\"},children:\" \"})]}),className:\"framer-7zjifq\",\"data-framer-name\":\"We\u2019ve got you covered\",fonts:[\"GF;DM Sans-600\",\"GF;IBM Plex Serif-600italic\",\"GF;IBM Plex Serif-700italic\",\"GF;IBM Plex Serif-600\"],id:\"7zjifq\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1uxk80r\",\"data-framer-name\":\"Press\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zft58n\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kftkve\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-144ivnp\",\"data-styles-preset\":\"KcUpCwhm3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, rgb(45, 53, 76))\"},children:\"Our fashion and lifestyle partners\"})})},PqpaQgc5e:{__framer__animate:{transition:transition3},__framer__exit:animation14},WpCIbgkLd:{__framer__animate:{transition:transition3},__framer__exit:animation14,__framer__threshold:.5}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g567mr\",\"data-styles-preset\":\"XuM03kBo3\",children:\"Our fashion and lifestyle partners\"})}),className:\"framer-viz55c\",\"data-framer-name\":\"Don\u2019t take our word for it\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"We work with global brands, leading artists, and next-gen designers to build custom digital fashion solutions. From concept to launch, we tailor every collaboration to deliver real business results.\"})}),className:\"framer-1y5uxh6\",\"data-framer-name\":\"We\u2019ve got you covered\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mu1tbl\",\"data-framer-name\":\"Logo partners\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1180px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3323.2+60+0+0+233+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+3582+100+0+0+248.2+0+0},WpCIbgkLd:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1180px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3334.6+60+0+0+248.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) / 5, 50px)`,y:(componentViewport?.y||0)+0+3629+120+0+0+248.2+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1drvnuc-container\",nodeId:\"ruqNtGxxT\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WpCIbgkLd:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(LogoPartners,{height:\"100%\",id:\"ruqNtGxxT\",layoutId:\"ruqNtGxxT\",style:{height:\"100%\",width:\"100%\"},variant:\"s9n_KXyLS\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1180px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3323.2+60+0+0+233+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+3582+100+0+0+248.2+0+0},WpCIbgkLd:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1180px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3334.6+60+0+0+248.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) / 5, 50px)`,y:(componentViewport?.y||0)+0+3629+120+0+0+248.2+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yjppgc-container\",nodeId:\"sHRKhnkqM\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LogoPartners,{height:\"100%\",id:\"sHRKhnkqM\",layoutId:\"sHRKhnkqM\",style:{height:\"100%\",width:\"100%\"},variant:\"weBXAHBOm\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1180px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3323.2+60+0+0+233+0+84},PqpaQgc5e:{y:(componentViewport?.y||0)+0+3582+100+0+0+248.2+0+0},WpCIbgkLd:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1180px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3334.6+60+0+0+248.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) / 5, 50px)`,y:(componentViewport?.y||0)+0+3629+120+0+0+248.2+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mh3xgq-container\",nodeId:\"Eb6C2FAUz\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LogoPartners,{height:\"100%\",id:\"Eb6C2FAUz\",layoutId:\"Eb6C2FAUz\",style:{height:\"100%\",width:\"100%\"},variant:\"K63Br53Sx\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1180px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3323.2+60+0+0+233+0+84},PqpaQgc5e:{y:(componentViewport?.y||0)+0+3582+100+0+0+248.2+0+0},WpCIbgkLd:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1180px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3334.6+60+0+0+248.2+0+84}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) / 5, 50px)`,y:(componentViewport?.y||0)+0+3629+120+0+0+248.2+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-unho5r-container\",nodeId:\"ohsDKJ_an\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LogoPartners,{height:\"100%\",id:\"ohsDKJ_an\",layoutId:\"ohsDKJ_an\",style:{height:\"100%\",width:\"100%\"},variant:\"EyFFZiHcD\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1180px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3323.2+60+0+0+233+0+168},PqpaQgc5e:{y:(componentViewport?.y||0)+0+3582+100+0+0+248.2+0+0},WpCIbgkLd:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1180px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3334.6+60+0+0+248.2+0+84}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) / 5, 50px)`,y:(componentViewport?.y||0)+0+3629+120+0+0+248.2+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-etu7d4-container\",nodeId:\"JVHxU2mJV\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LogoPartners,{height:\"100%\",id:\"JVHxU2mJV\",layoutId:\"JVHxU2mJV\",style:{height:\"100%\",width:\"100%\"},variant:\"m4tz0KO0w\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1180px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3323.2+60+0+0+233+0+168},PqpaQgc5e:{y:(componentViewport?.y||0)+0+3582+100+0+0+248.2+0+84},WpCIbgkLd:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1180px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3334.6+60+0+0+248.2+0+84}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) / 5, 50px)`,y:(componentViewport?.y||0)+0+3629+120+0+0+248.2+0+84,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ttqeyu-container\",nodeId:\"FrQuWtTep\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LogoPartners,{height:\"100%\",id:\"FrQuWtTep\",layoutId:\"FrQuWtTep\",style:{height:\"100%\",width:\"100%\"},variant:\"flCghaHHI\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1180px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3323.2+60+0+0+233+0+252},PqpaQgc5e:{y:(componentViewport?.y||0)+0+3582+100+0+0+248.2+0+84},WpCIbgkLd:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1180px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3334.6+60+0+0+248.2+0+168}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) / 5, 50px)`,y:(componentViewport?.y||0)+0+3629+120+0+0+248.2+0+84,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11m30b5-container\",nodeId:\"iL5bCkX2N\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LogoPartners,{height:\"100%\",id:\"iL5bCkX2N\",layoutId:\"iL5bCkX2N\",style:{height:\"100%\",width:\"100%\"},variant:\"EVzHD0vwA\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1180px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3323.2+60+0+0+233+0+252},PqpaQgc5e:{y:(componentViewport?.y||0)+0+3582+100+0+0+248.2+0+84},WpCIbgkLd:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1180px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3334.6+60+0+0+248.2+0+168}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) / 5, 50px)`,y:(componentViewport?.y||0)+0+3629+120+0+0+248.2+0+84,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wvnwrw-container\",nodeId:\"WixAC1um5\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LogoPartners,{height:\"100%\",id:\"WixAC1um5\",layoutId:\"WixAC1um5\",style:{height:\"100%\",width:\"100%\"},variant:\"ErtQjLnm4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1180px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3323.2+60+0+0+233+0+336},PqpaQgc5e:{y:(componentViewport?.y||0)+0+3582+100+0+0+248.2+0+84},WpCIbgkLd:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1180px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3334.6+60+0+0+248.2+0+168}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) / 5, 50px)`,y:(componentViewport?.y||0)+0+3629+120+0+0+248.2+0+84,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rqh56-container\",nodeId:\"Ez6bVNCdf\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LogoPartners,{height:\"100%\",id:\"Ez6bVNCdf\",layoutId:\"Ez6bVNCdf\",style:{height:\"100%\",width:\"100%\"},variant:\"PdP6RCDzM\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+3323.2+60+0+0+233+0+336},PqpaQgc5e:{y:(componentViewport?.y||0)+0+3582+100+0+0+248.2+0+84},WpCIbgkLd:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1180px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3334.6+60+0+0+248.2+0+252}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:\"216px\",y:(componentViewport?.y||0)+0+3629+120+0+0+248.2+0+84,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ihukud-container\",nodeId:\"zr3v51j_n\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LogoPartners,{height:\"100%\",id:\"zr3v51j_n\",layoutId:\"zr3v51j_n\",style:{height:\"100%\",width:\"100%\"},variant:\"P7GKuhCzu\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1180px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3323.2+60+0+0+233+0+420},PqpaQgc5e:{y:(componentViewport?.y||0)+0+3582+100+0+0+248.2+0+168},WpCIbgkLd:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1180px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3334.6+60+0+0+248.2+0+252}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) / 5, 50px)`,y:(componentViewport?.y||0)+0+3629+120+0+0+248.2+0+168,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13455tz-container\",nodeId:\"RL1WUwwLl\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LogoPartners,{height:\"100%\",id:\"RL1WUwwLl\",layoutId:\"RL1WUwwLl\",style:{height:\"100%\",width:\"100%\"},variant:\"VofkM97gJ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1180px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3323.2+60+0+0+233+0+420},PqpaQgc5e:{y:(componentViewport?.y||0)+0+3582+100+0+0+248.2+0+168},WpCIbgkLd:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1180px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3334.6+60+0+0+248.2+0+252}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) / 5, 50px)`,y:(componentViewport?.y||0)+0+3629+120+0+0+248.2+0+168,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lizog1-container\",nodeId:\"TS1y7Zkbb\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LogoPartners,{height:\"100%\",id:\"TS1y7Zkbb\",layoutId:\"TS1y7Zkbb\",style:{height:\"100%\",width:\"100%\"},variant:\"DLojFq3BE\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1180px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3323.2+60+0+0+233+0+504},PqpaQgc5e:{y:(componentViewport?.y||0)+0+3582+100+0+0+248.2+0+168},WpCIbgkLd:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1180px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3334.6+60+0+0+248.2+0+336}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) / 5, 50px)`,y:(componentViewport?.y||0)+0+3629+120+0+0+248.2+0+168,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-afvnbt-container\",nodeId:\"URK9m8Rxp\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LogoPartners,{height:\"100%\",id:\"URK9m8Rxp\",layoutId:\"URK9m8Rxp\",style:{height:\"100%\",width:\"100%\"},variant:\"sy9a6CgL9\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1180px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3323.2+60+0+0+233+0+504},PqpaQgc5e:{y:(componentViewport?.y||0)+0+3582+100+0+0+248.2+0+168},WpCIbgkLd:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1180px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3334.6+60+0+0+248.2+0+336}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) / 5, 50px)`,y:(componentViewport?.y||0)+0+3629+120+0+0+248.2+0+168,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition21},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1c7kd1x-container\",nodeId:\"ACmJuxLMK\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LogoPartners,{height:\"100%\",id:\"ACmJuxLMK\",layoutId:\"ACmJuxLMK\",style:{height:\"100%\",width:\"100%\"},variant:\"GP6F94rkS\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1180px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3323.2+60+0+0+233+0+588},PqpaQgc5e:{y:(componentViewport?.y||0)+0+3582+100+0+0+248.2+0+168},WpCIbgkLd:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1180px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3334.6+60+0+0+248.2+0+336}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) / 5, 50px)`,y:(componentViewport?.y||0)+0+3629+120+0+0+248.2+0+168,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition22},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-o3bo83-container\",nodeId:\"HSGh2TKRB\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LogoPartners,{height:\"100%\",id:\"HSGh2TKRB\",layoutId:\"HSGh2TKRB\",style:{height:\"100%\",width:\"100%\"},variant:\"Kzj7NOW8j\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1180px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3323.2+60+0+0+233+0+588},PqpaQgc5e:{y:(componentViewport?.y||0)+0+3582+100+0+0+248.2+0+252},WpCIbgkLd:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1180px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3334.6+60+0+0+248.2+0+420}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) / 5, 50px)`,y:(componentViewport?.y||0)+0+3629+120+0+0+248.2+0+252,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition23},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uhe1uo-container\",nodeId:\"dBueUtTHU\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LogoPartners,{height:\"100%\",id:\"dBueUtTHU\",layoutId:\"dBueUtTHU\",style:{height:\"100%\",width:\"100%\"},variant:\"QjT9T0hKO\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1180px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3323.2+60+0+0+233+0+672},PqpaQgc5e:{y:(componentViewport?.y||0)+0+3582+100+0+0+248.2+0+252},WpCIbgkLd:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1180px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3334.6+60+0+0+248.2+0+420}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) / 5, 50px)`,y:(componentViewport?.y||0)+0+3629+120+0+0+248.2+0+252,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition24},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ye76bc-container\",nodeId:\"FA5Dl5GLW\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LogoPartners,{height:\"100%\",id:\"FA5Dl5GLW\",layoutId:\"FA5Dl5GLW\",style:{height:\"100%\",width:\"100%\"},variant:\"PDqUB7QBp\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1180px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3323.2+60+0+0+233+0+672},PqpaQgc5e:{y:(componentViewport?.y||0)+0+3582+100+0+0+248.2+0+252},WpCIbgkLd:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1180px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3334.6+60+0+0+248.2+0+420}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) / 5, 50px)`,y:(componentViewport?.y||0)+0+3629+120+0+0+248.2+0+252,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition25},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pyyqcy-container\",nodeId:\"PDmTwBjTQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LogoPartners,{height:\"100%\",id:\"PDmTwBjTQ\",layoutId:\"PDmTwBjTQ\",style:{height:\"100%\",width:\"100%\"},variant:\"lJiwBO9y8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1180px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3323.2+60+0+0+233+0+756},PqpaQgc5e:{y:(componentViewport?.y||0)+0+3582+100+0+0+248.2+0+252},WpCIbgkLd:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1180px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3334.6+60+0+0+248.2+0+504}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) / 5, 50px)`,y:(componentViewport?.y||0)+0+3629+120+0+0+248.2+0+252,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition26},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3tamqt-container\",nodeId:\"q0h7Y4a0t\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LogoPartners,{height:\"100%\",id:\"q0h7Y4a0t\",layoutId:\"q0h7Y4a0t\",style:{height:\"100%\",width:\"100%\"},variant:\"giOYWpkU9\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1180px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3323.2+60+0+0+233+0+756},PqpaQgc5e:{y:(componentViewport?.y||0)+0+3582+100+0+0+248.2+0+252},WpCIbgkLd:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1180px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3334.6+60+0+0+248.2+0+504}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) / 5, 50px)`,y:(componentViewport?.y||0)+0+3629+120+0+0+248.2+0+252,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition27},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-b9jxhy-container\",nodeId:\"XtMGpAjna\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LogoPartners,{height:\"100%\",id:\"XtMGpAjna\",layoutId:\"XtMGpAjna\",style:{height:\"100%\",width:\"100%\"},variant:\"dLQWfMSSc\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4516.2},PqpaQgc5e:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4366.2},WpCIbgkLd:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4290.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:618,y:(componentViewport?.y||0)+0+4453.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-sy2jqi-container\",nodeId:\"pYDvr1uTZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{style:{width:\"100%\"},variant:\"eIF7CN5qf\"},PqpaQgc5e:{style:{width:\"100%\"},variant:\"U7_PHPBre\"},WpCIbgkLd:{style:{width:\"100%\"},variant:\"MCB_VAGL7\"}},children:/*#__PURE__*/_jsx(News,{height:\"100%\",id:\"pYDvr1uTZ\",layoutId:\"pYDvr1uTZ\",ljD2kZtDf:\"DRESSX News\",sXwDVFH8l:true,variant:\"SdJnzaJMc\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"j_G9_ASf0\"},implicitPathVariables:undefined},{href:{webPageId:\"j_G9_ASf0\"},implicitPathVariables:undefined},{href:{webPageId:\"j_G9_ASf0\"},implicitPathVariables:undefined},{href:{webPageId:\"j_G9_ASf0\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{height:445,y:(componentViewport?.y||0)+0+5134.2},PqpaQgc5e:{height:445,width:\"992px\",y:(componentViewport?.y||0)+0+4984.2},WpCIbgkLd:{height:445,y:(componentViewport?.y||0)+0+4908.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:416,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5071.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-iusd5a-container\",nodeId:\"HCOSbFjIT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{aunm721Mj:resolvedLinks2[2],style:{width:\"100%\"},variant:\"wSlolZhLF\"},PqpaQgc5e:{aunm721Mj:resolvedLinks2[1],style:{width:\"100%\"},variant:\"aTjWX7ZyB\"},WpCIbgkLd:{aunm721Mj:resolvedLinks2[3],style:{width:\"100%\"},variant:\"wt0oZBPVx\"}},children:/*#__PURE__*/_jsx(CTA,{anVZU5FOn:\"Reach out to explore how DRESSX can unlock new revenue, engagement, and visibility for your brand.\",aunm721Mj:resolvedLinks2[0],Fpq9TVcG0:\"rgb(248, 255, 55)\",GUHZ06Kcl:\"rgb(2, 237, 42)\",height:\"100%\",id:\"HCOSbFjIT\",ikMJoJtuN:\"Reach your business goals and enhance performance with DRESSX\",k_9D4Vqkm:\"CONTACT US\",layoutId:\"HCOSbFjIT\",LhOOSIh9u:\"rgb(55, 26, 231)\",style:{height:\"100%\",width:\"100%\"},variant:\"mFnVyQAza\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+5579.2},PqpaQgc5e:{y:(componentViewport?.y||0)+0+5429.2},WpCIbgkLd:{y:(componentViewport?.y||0)+0+5353.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:354,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5487.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ity15a-container\",nodeId:\"wS5GzUjn8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"ZR8Sz7PQD\"},WpCIbgkLd:{variant:\"ZR8Sz7PQD\"}},children:/*#__PURE__*/_jsx(Newsletter,{height:\"100%\",id:\"wS5GzUjn8\",layoutId:\"wS5GzUjn8\",style:{width:\"100%\"},variant:\"a7gONCXsh\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+5933.2},PqpaQgc5e:{y:(componentViewport?.y||0)+0+5783.2},WpCIbgkLd:{y:(componentViewport?.y||0)+0+5707.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:624,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5841.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t267rc-container\",nodeId:\"UdEOtZZh7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"IFm_nl1xI\"},WpCIbgkLd:{variant:\"kQqvilYYp\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"UdEOtZZh7\",layoutId:\"UdEOtZZh7\",style:{width:\"100%\"},variant:\"o7RQfo0Of\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"0px\",\"--framer-text-color\":\"rgb(13, 18, 22)\"},children:\"Start of list: You might want to try...\"})}),className:\"framer-algiqt\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jweajy\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(13, 18, 22)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.canva.com/#:r8s:\",motionChild:true,nodeId:\"Dep6ttvB9\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Skip to end of \u201CYou might want to try...\u201D list\"})})})}),className:\"framer-12nkqn9\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZFL14.framer-lux5qc, .framer-ZFL14 .framer-lux5qc { display: block; }\",\".framer-ZFL14.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-ZFL14 .framer-wde3po-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-ZFL14 .framer-1yp8xwc { align-content: center; align-items: center; background-color: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 160px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-ZFL14 .framer-aeug7n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 670px; justify-content: center; left: calc(69.84375000000003% - 772px / 2); overflow: visible; padding: 0px; position: absolute; top: -400px; width: 772px; z-index: 0; }\",\".framer-ZFL14 .framer-1xze9nt { -webkit-filter: blur(60px); background-color: #371ae7; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -52px; filter: blur(60px); flex: none; height: 682px; opacity: 0.9; position: absolute; right: -283px; width: 766px; z-index: 1; }\",\".framer-ZFL14 .framer-1j0lqfi { -webkit-filter: blur(60px); background-color: #951ae8; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; bottom: -2px; filter: blur(60px); flex: none; height: 623px; left: -108px; opacity: 0.9; position: absolute; width: 641px; z-index: 1; }\",\".framer-ZFL14 .framer-1d13stc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 523px; justify-content: center; left: calc(18.00000000000002% - 772px / 2); overflow: visible; padding: 0px; position: absolute; top: -281px; width: 772px; z-index: 0; }\",\".framer-ZFL14 .framer-1k27plj { -webkit-filter: blur(60px); background-color: #f8ff37; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(60px); flex: none; height: 585px; opacity: 0.9; position: absolute; right: 256px; top: 69px; width: 599px; z-index: 1; }\",\".framer-ZFL14 .framer-1m69yud { -webkit-filter: blur(60px); background-color: #02ed2a; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(60px); flex: none; height: 423px; opacity: 0.9; position: absolute; right: -16px; top: 99px; width: 518px; z-index: 1; }\",\".framer-ZFL14 .framer-17lqxjv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-ZFL14 .framer-9o2owm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1180px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-ZFL14 .framer-1ng0tkn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-ZFL14 .framer-1q9m7rd-container, .framer-ZFL14 .framer-sy2jqi-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ZFL14 .framer-1uywckh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-ZFL14 .framer-u9emc7 { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-ZFL14 .framer-6g8r98-container, .framer-ZFL14 .framer-10vpdfl-container { flex: none; height: 360px; position: relative; width: 100%; }\",\".framer-ZFL14 .framer-1j4nrae { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 20px 60px 60px 60px; position: relative; width: 100%; }\",\".framer-ZFL14 .framer-11kit8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 65%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-ZFL14 .framer-xo0xl9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1180px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZFL14 .framer-yuhlz0-container { flex: none; height: 107px; position: relative; width: 100%; }\",\".framer-ZFL14 .framer-tiyzx0-container { height: 28px; position: relative; width: 136px; }\",\".framer-ZFL14 .framer-1nyh64w-container { height: 56px; position: relative; width: 58px; }\",\".framer-ZFL14 .framer-1q9210k-container { height: 32px; position: relative; width: 177px; }\",\".framer-ZFL14 .framer-19qtkui-container { height: 26px; position: relative; width: 124px; }\",\".framer-ZFL14 .framer-1wy5k29-container { height: 40px; position: relative; width: 122px; }\",\".framer-ZFL14 .framer-18fn4o8 { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, #f3f7fb) 0%, rgba(243, 247, 251, 0) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 60px 80px 60px; position: relative; width: 100%; z-index: 1; }\",\".framer-ZFL14 .framer-1bymv4k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZFL14 .framer-11ze0f5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 63%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-ZFL14 .framer-k30bep-container, .framer-ZFL14 .framer-1lprc9z-container, .framer-ZFL14 .framer-uxq5ek-container, .framer-ZFL14 .framer-1p1oidp-container { height: auto; position: relative; width: 346px; }\",\".framer-ZFL14 .framer-b627dl-container, .framer-ZFL14 .framer-1sri936-container, .framer-ZFL14 .framer-xr2lhf-container { height: auto; position: relative; width: 345px; }\",\".framer-ZFL14 .framer-155kb7t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 140px; height: min-content; justify-content: center; overflow: visible; padding: 60px; position: relative; width: min-content; }\",\".framer-ZFL14 .framer-m1ove5-container, .framer-ZFL14 .framer-89oj90-container { flex: none; height: auto; position: relative; width: 1080px; }\",\".framer-ZFL14 .framer-8nvhy5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 80px 60px 20px 60px; position: relative; width: 100%; }\",\".framer-ZFL14 .framer-45z64s { flex: none; height: auto; max-width: 1000px; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZFL14 .framer-1qpte0t { --framer-paragraph-spacing: 30px; flex: none; height: auto; max-width: 1000px; position: relative; white-space: pre-wrap; width: 63%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZFL14 .framer-qdwbc7-container { flex: none; height: 360px; position: relative; width: 100%; z-index: 3; }\",\".framer-ZFL14 .framer-13p1y7f-container, .framer-ZFL14 .framer-1l27w7k-container, .framer-ZFL14 .framer-dmwfgo-container, .framer-ZFL14 .framer-2ll8jv-container, .framer-ZFL14 .framer-1byhksa-container, .framer-ZFL14 .framer-17z8t77-container { aspect-ratio: 0.6666666666666666 / 1; height: var(--framer-aspect-ratio-supported, 222px); position: relative; width: 148px; }\",\".framer-ZFL14 .framer-106603d-container, .framer-ZFL14 .framer-1k9ldje-container, .framer-ZFL14 .framer-16xtjr0-container { aspect-ratio: 0.6666666666666666 / 1; height: var(--framer-aspect-ratio-supported, 221px); position: relative; width: 148px; }\",\".framer-ZFL14 .framer-1dft54d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 100px 60px 100px 60px; position: relative; width: 100%; }\",\".framer-ZFL14 .framer-7zjifq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 860px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZFL14 .framer-1uxk80r { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, #f3f7fb) 0%, rgba(243, 247, 251, 0) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 120px 60px 120px 60px; position: relative; width: 100%; z-index: 1; }\",\".framer-ZFL14 .framer-zft58n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1180px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZFL14 .framer-kftkve { 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: 864px; }\",\".framer-ZFL14 .framer-viz55c { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 88%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZFL14 .framer-1y5uxh6 { --framer-paragraph-spacing: 30px; flex: none; height: auto; max-width: 1000px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZFL14 .framer-1mu1tbl { display: grid; flex: none; gap: 0px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(5, minmax(50px, 1fr)); grid-template-rows: repeat(4, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZFL14 .framer-1drvnuc-container, .framer-ZFL14 .framer-1yjppgc-container, .framer-ZFL14 .framer-1mh3xgq-container, .framer-ZFL14 .framer-unho5r-container, .framer-ZFL14 .framer-etu7d4-container, .framer-ZFL14 .framer-ttqeyu-container, .framer-ZFL14 .framer-11m30b5-container, .framer-ZFL14 .framer-1wvnwrw-container, .framer-ZFL14 .framer-1rqh56-container, .framer-ZFL14 .framer-13455tz-container, .framer-ZFL14 .framer-1lizog1-container, .framer-ZFL14 .framer-afvnbt-container, .framer-ZFL14 .framer-1c7kd1x-container, .framer-ZFL14 .framer-o3bo83-container, .framer-ZFL14 .framer-uhe1uo-container, .framer-ZFL14 .framer-ye76bc-container, .framer-ZFL14 .framer-1pyyqcy-container, .framer-ZFL14 .framer-3tamqt-container, .framer-ZFL14 .framer-b9jxhy-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-ZFL14 .framer-1ihukud-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 216px; }\",\".framer-ZFL14 .framer-iusd5a-container { flex: none; height: 416px; position: relative; width: 100%; }\",\".framer-ZFL14 .framer-1ity15a-container, .framer-ZFL14 .framer-1t267rc-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-ZFL14 .framer-algiqt { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-ZFL14 .framer-jweajy { background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0px 0px 1px rgba(64, 87, 109, 0.04), 0px 6px 20px -4px rgba(64, 87, 109, 0.3); flex: none; height: 1px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 10; }\",\".framer-ZFL14 .framer-12nkqn9 { -webkit-user-select: none; flex: none; height: auto; left: 0px; pointer-events: auto; position: absolute; top: 0px; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 992px) and (max-width: 1199px) { .framer-ZFL14.framer-72rtr7 { width: 992px; } .framer-ZFL14 .framer-1yp8xwc { gap: 50px; padding: 160px 40px 20px 40px; } .framer-ZFL14 .framer-17lqxjv { padding: 0px; } .framer-ZFL14 .framer-1j4nrae { padding: 60px 40px 60px 40px; } .framer-ZFL14 .framer-11kit8 { width: 70%; } .framer-ZFL14 .framer-yuhlz0-container { height: 100px; } .framer-ZFL14 .framer-18fn4o8 { gap: 60px; padding: 80px 60px 60px 60px; } .framer-ZFL14 .framer-11ze0f5, .framer-ZFL14 .framer-m1ove5-container, .framer-ZFL14 .framer-89oj90-container, .framer-ZFL14 .framer-viz55c, .framer-ZFL14 .framer-sy2jqi-container { width: 100%; } .framer-ZFL14 .framer-155kb7t { gap: 80px; width: 100%; } .framer-ZFL14 .framer-8nvhy5 { padding: 40px 60px 20px 60px; } .framer-ZFL14 .framer-1dft54d { padding: 100px 60px 140px 60px; } .framer-ZFL14 .framer-1uxk80r { gap: 60px; padding: 100px 60px 100px 60px; } .framer-ZFL14 .framer-1y5uxh6 { width: 700px; } .framer-ZFL14 .framer-iusd5a-container { height: auto; width: 992px; }}\",\"@media (max-width: 575px) { .framer-ZFL14.framer-72rtr7 { width: 390px; } .framer-ZFL14 .framer-wde3po-container { order: 0; position: absolute; } .framer-ZFL14 .framer-1yp8xwc { gap: 40px; order: 1; padding: 160px 24px 20px 24px; } .framer-ZFL14 .framer-aeug7n { height: 519px; left: 0px; top: 0px; width: 391px; } .framer-ZFL14 .framer-1xze9nt { bottom: unset; height: 221px; right: -115px; top: 49px; width: 238px; } .framer-ZFL14 .framer-1j0lqfi { bottom: unset; height: 248px; left: 84px; top: -80px; width: 293px; } .framer-ZFL14 .framer-1d13stc { height: 519px; left: calc(50.00000000000002% - 391px / 2); top: 0px; width: 391px; } .framer-ZFL14 .framer-1k27plj { height: 255px; right: 314px; top: -28px; width: 261px; } .framer-ZFL14 .framer-1m69yud { height: 255px; right: 154px; top: -98px; width: 261px; } .framer-ZFL14 .framer-17lqxjv { padding: 0px; } .framer-ZFL14 .framer-9o2owm { gap: 16px; } .framer-ZFL14 .framer-1ng0tkn { gap: 24px; } .framer-ZFL14 .framer-1q9m7rd-container { order: 0; } .framer-ZFL14 .framer-1uywckh { height: 106px; order: 1; width: 100%; } .framer-ZFL14 .framer-u9emc7, .framer-ZFL14 .framer-45z64s, .framer-ZFL14 .framer-1qpte0t, .framer-ZFL14 .framer-7zjifq, .framer-ZFL14 .framer-kftkve { width: 100%; } .framer-ZFL14 .framer-6g8r98-container { order: 2; } .framer-ZFL14 .framer-1j4nrae { order: 3; padding: 60px 20px 60px 20px; } .framer-ZFL14 .framer-11kit8 { order: 0; width: 100%; } .framer-ZFL14 .framer-xo0xl9 { gap: 16px; order: 1; } .framer-ZFL14 .framer-yuhlz0-container { height: 80px; } .framer-ZFL14 .framer-18fn4o8 { gap: 60px; order: 4; padding: 40px 16px 40px 16px; } .framer-ZFL14 .framer-11ze0f5, .framer-ZFL14 .framer-viz55c { width: 90%; } .framer-ZFL14 .framer-155kb7t { gap: 80px; order: 5; padding: 60px 16px 24px 16px; } .framer-ZFL14 .framer-m1ove5-container, .framer-ZFL14 .framer-89oj90-container { width: 358px; } .framer-ZFL14 .framer-8nvhy5 { order: 6; padding: 60px 20px 20px 20px; } .framer-ZFL14 .framer-qdwbc7-container { height: 320px; order: 7; } .framer-ZFL14 .framer-1dft54d { gap: 4px; order: 8; padding: 40px 20px 80px 20px; } .framer-ZFL14 .framer-1uxk80r { gap: 60px; order: 9; padding: 60px 16px 60px 16px; } .framer-ZFL14 .framer-1mu1tbl { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-ZFL14 .framer-sy2jqi-container { order: 10; width: 100%; } .framer-ZFL14 .framer-iusd5a-container { height: auto; order: 11; } .framer-ZFL14 .framer-1ity15a-container { order: 12; } .framer-ZFL14 .framer-1t267rc-container { order: 13; } .framer-ZFL14 .framer-algiqt { order: 15; } .framer-ZFL14 .framer-jweajy { order: 16; }}\",\"@media (min-width: 576px) and (max-width: 991px) { .framer-ZFL14.framer-72rtr7 { width: 576px; } .framer-ZFL14 .framer-wde3po-container { position: absolute; } .framer-ZFL14 .framer-1yp8xwc { background-color: unset; gap: 40px; padding: 160px 20px 20px 20px; } .framer-ZFL14 .framer-aeug7n { left: -196px; top: -450px; } .framer-ZFL14 .framer-1xze9nt { bottom: -112px; right: -488px; } .framer-ZFL14 .framer-1j0lqfi { bottom: unset; height: 485px; left: unset; right: -18px; top: calc(53.88059701492539% - 485px / 2); width: 499px; } .framer-ZFL14 .framer-1k27plj { right: 270px; top: 19px; } .framer-ZFL14 .framer-1m69yud { height: 401px; right: 50px; top: 69px; width: 404px; } .framer-ZFL14 .framer-17lqxjv { gap: 40px; padding: 0px; } .framer-ZFL14 .framer-1ng0tkn { padding: 9px 0px 9px 0px; } .framer-ZFL14 .framer-1uywckh, .framer-ZFL14 .framer-u9emc7 { z-index: 3; } .framer-ZFL14 .framer-1j4nrae { padding: 60px 20px 40px 20px; } .framer-ZFL14 .framer-11kit8, .framer-ZFL14 .framer-45z64s, .framer-ZFL14 .framer-1qpte0t, .framer-ZFL14 .framer-7zjifq, .framer-ZFL14 .framer-kftkve, .framer-ZFL14 .framer-sy2jqi-container { width: 100%; } .framer-ZFL14 .framer-xo0xl9 { gap: 16px; } .framer-ZFL14 .framer-yuhlz0-container { height: 100px; } .framer-ZFL14 .framer-18fn4o8 { gap: 80px; padding: 40px 20px 40px 20px; } .framer-ZFL14 .framer-11ze0f5, .framer-ZFL14 .framer-viz55c { width: 80%; } .framer-ZFL14 .framer-155kb7t, .framer-ZFL14 .framer-1uxk80r { gap: 80px; padding: 60px 20px 60px 20px; } .framer-ZFL14 .framer-m1ove5-container, .framer-ZFL14 .framer-89oj90-container { width: 536px; } .framer-ZFL14 .framer-8nvhy5 { padding: 40px 60px 40px 60px; } .framer-ZFL14 .framer-qdwbc7-container { height: 320px; } .framer-ZFL14 .framer-1dft54d { padding: 40px 20px 80px 20px; } .framer-ZFL14 .framer-1mu1tbl { grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(4, min-content); } .framer-ZFL14 .framer-1drvnuc-container { align-self: center; height: auto; justify-self: center; } .framer-ZFL14 .framer-1yjppgc-container, .framer-ZFL14 .framer-1mh3xgq-container, .framer-ZFL14 .framer-unho5r-container, .framer-ZFL14 .framer-etu7d4-container, .framer-ZFL14 .framer-ttqeyu-container, .framer-ZFL14 .framer-11m30b5-container, .framer-ZFL14 .framer-1wvnwrw-container, .framer-ZFL14 .framer-1rqh56-container, .framer-ZFL14 .framer-13455tz-container, .framer-ZFL14 .framer-1lizog1-container, .framer-ZFL14 .framer-afvnbt-container, .framer-ZFL14 .framer-1c7kd1x-container, .framer-ZFL14 .framer-o3bo83-container, .framer-ZFL14 .framer-uhe1uo-container, .framer-ZFL14 .framer-ye76bc-container, .framer-ZFL14 .framer-1pyyqcy-container, .framer-ZFL14 .framer-3tamqt-container, .framer-ZFL14 .framer-b9jxhy-container { height: 84px; } .framer-ZFL14 .framer-1ihukud-container { height: 84px; width: 100%; } .framer-ZFL14 .framer-iusd5a-container { height: auto; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6655\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"PqpaQgc5e\":{\"layout\":[\"fixed\",\"auto\"]},\"J3uB7PlJN\":{\"layout\":[\"fixed\",\"auto\"]},\"WpCIbgkLd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-ZFL14\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6655,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v16/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAfJthS2f3ZGMZpg.woff2\",weight:\"600\"},{family:\"IBM Plex Serif\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4-o3q1vjjNOg_oc.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"IBM Plex Serif\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4442q1vjjNOg_oc.woff2\",weight:\"700\"},{family:\"IBM Plex Serif\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3A_xI2oVrBicOg.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...NavigationFonts,...AnnounsementButtonFonts,...CarouselFonts,...MetaFonts,...SnapchatFonts,...RobloxFonts,...ZepetoFonts,...GoogleFonts,...TickerFonts,...TestimonialFonts,...Carousel1Fonts,...FeatureSection4JulFonts,...SCROLLCARDFonts,...LogoPartnersFonts,...NewsFonts,...CTAFonts,...NewsletterFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PqpaQgc5e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J3uB7PlJN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WpCIbgkLd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"6655\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "SVG", "css", "FramerfyODWBpVR", "withCSS", "fyODWBpVR_default", "addFonts", "MotionAWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "header", "height", "id", "link", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "eO79krJ8p", "lEOsH16zb", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText", "SVG", "css", "FramerQkcakyId5", "withCSS", "QkcakyId5_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "SVG", "css", "FramerqSPfMdIJs", "withCSS", "qSPfMdIJs_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "SVG", "css", "Framerr4tOFybda", "withCSS", "r4tOFybda_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "SVG", "css", "FramersaC4IrP2s", "withCSS", "saC4IrP2s_default", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "SVG", "css", "FramerThR8bPWHZ", "withCSS", "ThR8bPWHZ_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "isDisplayed15", "isDisplayed16", "isDisplayed17", "isDisplayed18", "isDisplayed19", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "FramerxGKYZtLHG", "withCSS", "xGKYZtLHG_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "FramerxHNRqM6F7", "withCSS", "xHNRqM6F7_default", "addPropertyControls", "ControlType", "addFonts", "ClientLogosForbesFonts", "getFonts", "xHNRqM6F7_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", "background", "height", "id", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "lxoksPKf0", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ComponentViewportProvider", "RichText", "css", "FramerxzSFaubax", "withCSS", "xzSFaubax_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "withBlurr", "Component", "props", "p", "NavigationFonts", "getFonts", "RG7yJog90_default", "NavigationWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "MotionDivWithBlurr1xze9nt", "withCodeBoundaryForOverrides", "motion", "withBlurr", "MotionDivWithBlurr1j0lqfi", "MotionDivWithBlurr1k27plj", "MotionDivWithBlurr1m69yud", "AnnounsementButtonFonts", "QkcakyId5_default", "RichTextWithOptimizedAppearEffect", "RichText", "CarouselFonts", "zQzSyE89b_default", "MetaFonts", "ThR8bPWHZ_default", "SnapchatFonts", "qSPfMdIJs_default", "RobloxFonts", "fyODWBpVR_default", "ZepetoFonts", "saC4IrP2s_default", "GoogleFonts", "r4tOFybda_default", "TickerFonts", "Ticker", "TestimonialFonts", "xzSFaubax_default", "Carousel1Fonts", "Carousel", "ContainerWithFX", "withFX", "FeatureSection4JulFonts", "pEo0D4qvs_default", "RichTextWithFX", "MotionDivWithFX", "SCROLLCARDFonts", "ncvscg5FE_default", "LogoPartnersFonts", "xGKYZtLHG_default", "NewsFonts", "Cfx89mg4Y_default", "CTAFonts", "gCkrcTKxp_default", "NewsletterFonts", "YrcfIC9Nn_default", "FooterFonts", "qZ_XI3P7P_default", "breakpoints", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "transition4", "animation5", "transition5", "animation6", "animation7", "animation8", "transition6", "addImageAlt", "image", "alt", "animation9", "transition7", "animation10", "transition8", "animation11", "animation12", "transition9", "transition10", "animation13", "animation14", "transition11", "transition12", "transition13", "transition14", "transition15", "transition16", "transition17", "transition18", "transition19", "transition20", "transition21", "transition22", "transition23", "transition24", "transition25", "transition26", "transition27", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "ContainerWithOptimizedAppearEffect", "NavigationWithVariantAppearEffect", "MotionDivWithBlurr1xze9nt", "MotionDivWithBlurr1j0lqfi", "MotionDivWithBlurr1k27plj", "MotionDivWithBlurr1m69yud", "ResolveLinks", "resolvedLinks", "Container", "QkcakyId5_default", "x", "RichTextWithOptimizedAppearEffect", "zQzSyE89b_default", "Ticker", "ThR8bPWHZ_default", "qSPfMdIJs_default", "fyODWBpVR_default", "saC4IrP2s_default", "r4tOFybda_default", "ContainerWithFX", "Carousel", "xzSFaubax_default", "pEo0D4qvs_default", "resolvedLinks1", "MotionDivWithFX", "RichTextWithFX", "ncvscg5FE_default", "RichText", "xGKYZtLHG_default", "Cfx89mg4Y_default", "resolvedLinks2", "gCkrcTKxp_default", "YrcfIC9Nn_default", "qZ_XI3P7P_default", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavigationFonts", "AnnounsementButtonFonts", "CarouselFonts", "MetaFonts", "SnapchatFonts", "RobloxFonts", "ZepetoFonts", "GoogleFonts", "TickerFonts", "TestimonialFonts", "Carousel1Fonts", "FeatureSection4JulFonts", "SCROLLCARDFonts", "LogoPartnersFonts", "NewsFonts", "CTAFonts", "NewsletterFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
