{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/H7Hprjo8hFoL6HVuvde6/SlideShow.js", "ssg:https://framerusercontent.com/modules/KXnpem1txpOFClSSLfgX/3fb5ZKnKI1KIBpDhctuu/eHJmZa7p4.js", "ssg:https://framerusercontent.com/modules/EWRQCm1pdAq6uvug1owD/NbCZNiHbcsyK55y3QGN1/PczC_9xZX.js", "ssg:https://framerusercontent.com/modules/PbgHGxvFn6nvlKUEbS9H/e6tgxClSIbnsw5A1c6zR/W8NGIYwK6.js", "ssg:https://framerusercontent.com/modules/G4NAR32htV89hmqBkZi4/GspvCBem7vSXathJDj21/URGdo9NKO.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync,mix}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});}},[hasChildren]);const scheduleMeasure=useCallback(()=>{sync.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (37fb21e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/NbYz4JSjqrO1HEACQHmG/lMN3Dp8JAhSTJEYEfo0O/K5m1BeelV.js\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={hNooZcEeY:{hover:true,pressed:true}};const cycleOrder=[\"hNooZcEeY\",\"S2phNVXtG\",\"IeoocfZEQ\",\"HtawhlF70\",\"DHWgVqm0h\"];const serializationHash=\"framer-KwCI0\";const variantClassNames={DHWgVqm0h:\"framer-v-1dl8scr\",hNooZcEeY:\"framer-v-rmuhmw\",HtawhlF70:\"framer-v-jqydy9\",IeoocfZEQ:\"framer-v-1tzqych\",S2phNVXtG:\"framer-v-29pmcn\"};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 radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;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={Default:\"hNooZcEeY\",Disabled:\"IeoocfZEQ\",Error:\"DHWgVqm0h\",Loading:\"S2phNVXtG\",Success:\"HtawhlF70\"};const getProps=({click,errorText,height,id,radius,succesText,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,BDOy5eyJV:click!==null&&click!==void 0?click:props.BDOy5eyJV,dOrkaB52f:(_ref=title!==null&&title!==void 0?title:props.dOrkaB52f)!==null&&_ref!==void 0?_ref:\"Submit\",FoZgQpKIz:(_ref1=succesText!==null&&succesText!==void 0?succesText:props.FoZgQpKIz)!==null&&_ref1!==void 0?_ref1:\"Thank you\",owvtFx4R6:(_ref2=radius!==null&&radius!==void 0?radius:props.owvtFx4R6)!==null&&_ref2!==void 0?_ref2:\"0px\",SXCbKDSo7:(_ref3=errorText!==null&&errorText!==void 0?errorText:props.SXCbKDSo7)!==null&&_ref3!==void 0?_ref3:\"Something went wrong\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"hNooZcEeY\"};};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,owvtFx4R6,dOrkaB52f,FoZgQpKIz,SXCbKDSo7,BDOy5eyJV,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hNooZcEeY\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap12mo881=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(BDOy5eyJV){const res=await BDOy5eyJV(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"S2phNVXtG\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"S2phNVXtG\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.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__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-rmuhmw\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"hNooZcEeY\",onTap:onTap12mo881,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(59, 126, 236)\",borderBottomLeftRadius:radiusForCorner(owvtFx4R6,3),borderBottomRightRadius:radiusForCorner(owvtFx4R6,2),borderTopLeftRadius:radiusForCorner(owvtFx4R6,0),borderTopRightRadius:radiusForCorner(owvtFx4R6,1),opacity:1,...style},variants:{\"hNooZcEeY-hover\":{backgroundColor:\"rgba(69, 133, 237, 0.85)\"},\"hNooZcEeY-pressed\":{backgroundColor:\"rgb(27, 97, 209)\"},DHWgVqm0h:{backgroundColor:\"rgb(138, 27, 23)\"},IeoocfZEQ:{opacity:.5}},...addPropertyOverrides({\"hNooZcEeY-hover\":{\"data-framer-name\":undefined},\"hNooZcEeY-pressed\":{\"data-framer-name\":undefined},DHWgVqm0h:{\"data-framer-name\":\"Error\"},HtawhlF70:{\"data-framer-name\":\"Success\"},IeoocfZEQ:{\"data-framer-name\":\"Disabled\"},S2phNVXtG:{\"data-framer-name\":\"Loading\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17ur7to\",\"data-styles-preset\":\"K5m1BeelV\",children:\"Submit\"})}),className:\"framer-1930b0o\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NSPvk6xxA\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:dOrkaB52f,variants:{DHWgVqm0h:{\"--extracted-r6o4lv\":\"rgb(247, 195, 193)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DHWgVqm0h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17ur7to\",\"data-styles-preset\":\"K5m1BeelV\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(247, 195, 193))\"},children:\"Something went wrong\"})}),text:SXCbKDSo7},HtawhlF70:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17ur7to\",\"data-styles-preset\":\"K5m1BeelV\",children:\"Thank you\"})}),text:FoZgQpKIz}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cc4eti\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"fSsaGYnq0\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-7dans7\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"Sjf9eMjfq\",style:{background:\"conic-gradient(from 180deg at 50% 50%, #4cf 0deg, #4cf 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{S2phNVXtG:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vrbp69\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"l0c4rCEgn\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KwCI0.framer-1f1gh5f, .framer-KwCI0 .framer-1f1gh5f { display: block; }\",\".framer-KwCI0.framer-rmuhmw { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 240px; }\",\".framer-KwCI0 .framer-1930b0o { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-KwCI0 .framer-1cc4eti { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-KwCI0 .framer-7dans7 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-KwCI0 .framer-vrbp69 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KwCI0.framer-rmuhmw { gap: 0px; } .framer-KwCI0.framer-rmuhmw > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-KwCI0.framer-rmuhmw > :first-child { margin-left: 0px; } .framer-KwCI0.framer-rmuhmw > :last-child { margin-right: 0px; } }\",\".framer-KwCI0.framer-v-29pmcn .framer-7dans7 { overflow: hidden; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"S2phNVXtG\":{\"layout\":[\"fixed\",\"auto\"]},\"IeoocfZEQ\":{\"layout\":[\"fixed\",\"auto\"]},\"HtawhlF70\":{\"layout\":[\"fixed\",\"auto\"]},\"DHWgVqm0h\":{\"layout\":[\"fixed\",\"auto\"]},\"eI6o3ehvW\":{\"layout\":[\"fixed\",\"auto\"]},\"fPNVg9RC0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"owvtFx4R6\":\"radius\",\"dOrkaB52f\":\"title\",\"FoZgQpKIz\":\"succesText\",\"SXCbKDSo7\":\"errorText\",\"BDOy5eyJV\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereHJmZa7p4=withCSS(Component,css,\"framer-KwCI0\");export default FramereHJmZa7p4;FramereHJmZa7p4.displayName=\"Form Buttons/Grids\";FramereHJmZa7p4.defaultProps={height:64,width:240};addPropertyControls(FramereHJmZa7p4,{variant:{options:[\"hNooZcEeY\",\"S2phNVXtG\",\"IeoocfZEQ\",\"HtawhlF70\",\"DHWgVqm0h\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum},owvtFx4R6:{defaultValue:\"0px\",title:\"Radius\",type:ControlType.BorderRadius},dOrkaB52f:{defaultValue:\"Submit\",displayTextArea:false,title:\"Title\",type:ControlType.String},FoZgQpKIz:{defaultValue:\"Thank you\",displayTextArea:false,title:\"Succes Text\",type:ControlType.String},SXCbKDSo7:{defaultValue:\"Something went wrong\",displayTextArea:false,title:\"Error Text\",type:ControlType.String},BDOy5eyJV:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramereHJmZa7p4,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereHJmZa7p4\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"240\",\"framerVariables\":\"{\\\"owvtFx4R6\\\":\\\"radius\\\",\\\"dOrkaB52f\\\":\\\"title\\\",\\\"FoZgQpKIz\\\":\\\"succesText\\\",\\\"SXCbKDSo7\\\":\\\"errorText\\\",\\\"BDOy5eyJV\\\":\\\"click\\\"}\",\"framerIntrinsicHeight\":\"64\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"S2phNVXtG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IeoocfZEQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HtawhlF70\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DHWgVqm0h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eI6o3ehvW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fPNVg9RC0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./eHJmZa7p4.map", "// Generated by Framer (2c4b293)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/BOsl7sF4FblQ7ksf6pCA/bwQPLoqq8U44langWCCk/ccp66CL1u.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/cKtX4Ve6ikuY5uWmUa1N/faNynjRnERGjJZEPGEK1/DQdceYvLb.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/AZq061oZ2O9BdZULrZTc/51I5koHa80NCAh6MQTgU/Lz92TZ4jj.js\";const cycleOrder=[\"FzbSOjyln\"];const serializationHash=\"framer-g0eKm\";const variantClassNames={FzbSOjyln:\"framer-v-6w37xz\"};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 radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{return value!==undefined&&value!==null&&value!==\"\";};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=({avatar,height,id,link,name1,radius,showAvatar,text,username,width,...props})=>{var _ref,_ref1,_ref2,_ref3;return{...props,aL8n1ZiKL:username!==null&&username!==void 0?username:props.aL8n1ZiKL,bmwYwvpz_:link!==null&&link!==void 0?link:props.bmwYwvpz_,fJmjMaVNY:(_ref=text!==null&&text!==void 0?text:props.fJmjMaVNY)!==null&&_ref!==void 0?_ref:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"I must say that Supercharge really did a good job on this one. They never disappoint. Andrija was terrific in the ways he made explanations so simple and plain to understand. This is actually a course that will help many who want more out of Figma, and UI/UX at large.\"})}),j51UPcPUf:(_ref1=showAvatar!==null&&showAvatar!==void 0?showAvatar:props.j51UPcPUf)!==null&&_ref1!==void 0?_ref1:true,s6weZ9qiW:(_ref2=avatar!==null&&avatar!==void 0?avatar:props.s6weZ9qiW)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/PUBW9Nzw0Tg7WfctYPTgQiiCCo.png\"},x7DGBWrrV:(_ref3=name1!==null&&name1!==void 0?name1:props.x7DGBWrrV)!==null&&_ref3!==void 0?_ref3:\"Jane Doe\",ynU7tX4cK:radius!==null&&radius!==void 0?radius:props.ynU7tX4cK};};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,j51UPcPUf,s6weZ9qiW,x7DGBWrrV,aL8n1ZiKL,bmwYwvpz_,ynU7tX4cK,fJmjMaVNY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FzbSOjyln\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const visible=isSet(aL8n1ZiKL);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-6w37xz\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"FzbSOjyln\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:radiusForCorner(ynU7tX4cK,3),borderBottomRightRadius:radiusForCorner(ynU7tX4cK,2),borderTopLeftRadius:radiusForCorner(ynU7tX4cK,0),borderTopRightRadius:radiusForCorner(ynU7tX4cK,1),boxShadow:\"0px 0.6021873017743928px 1.083937143193907px -1.1666666666666665px rgba(103, 16, 52, 0.06759), 0px 2.288533303243457px 4.119359945838223px -2.333333333333333px rgba(103, 16, 52, 0.06085), 0px 10px 18px -3.5px rgba(103, 16, 52, 0.03)\",...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12yurpj\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"QGTosTrVj\",style:{background:\"linear-gradient(180deg, rgb(165, 197, 255) 8.34022302324978e-15%, rgba(255, 161, 207, 0) 42.168976030564735%)\",borderBottomLeftRadius:radiusForCorner(ynU7tX4cK,3),borderBottomRightRadius:radiusForCorner(ynU7tX4cK,2),borderTopLeftRadius:radiusForCorner(ynU7tX4cK,0),borderTopRightRadius:radiusForCorner(ynU7tX4cK,1)}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9mj2lc\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"g1_f2shj3\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:radiusForCorner(ynU7tX4cK,3),borderBottomRightRadius:radiusForCorner(ynU7tX4cK,2),borderTopLeftRadius:radiusForCorner(ynU7tX4cK,0),borderTopRightRadius:radiusForCorner(ynU7tX4cK,1)},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lp3brm\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"SokpeU3Jt\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ygmj3i\",\"data-framer-name\":\"Avatar Wrapper\",layoutDependency:layoutDependency,layoutId:\"lQs8_d6KW\",children:[j51UPcPUf&&/*#__PURE__*/_jsx(Link,{href:bmwYwvpz_,openInNewTab:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+1+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||248)-2-188)/2+0+0)+24+0+0+0),sizes:\"36px\",...toResponsiveImage(s6weZ9qiW)},className:\"framer-1lnz5eu framer-jjc8h0\",\"data-framer-name\":\"avatar\",layoutDependency:layoutDependency,layoutId:\"HY8pGvRxd\",style:{borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18}})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qx5w0m\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"Ai0u7aqfb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"Jane Doe\"})}),className:\"framer-1g6dfh6\",\"data-framer-name\":\"Johnson\",fonts:[\"CUSTOM;Biennale Bold\"],layoutDependency:layoutDependency,layoutId:\"XeUU0lqwg\",style:{\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\"},text:x7DGBWrrV,verticalAlignment:\"center\",withExternalLayout:true}),visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:bmwYwvpz_,openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qxwolz\",\"data-styles-preset\":\"Lz92TZ4jj\",children:\"@username\"})})})}),className:\"framer-dg2j64\",\"data-framer-name\":\"@ui.johnson\",fonts:[\"CUSTOM;Biennale Regular\"],layoutDependency:layoutDependency,layoutId:\"Ur_rYFIlk\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-paragraph-spacing\":\"8px\"},text:aL8n1ZiKL,verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mxkqg9\",\"data-framer-name\":\"stars\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"LHAwHnjkc\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 75 12\"><path d=\"M 7.347 0.935 L 8.048 3.093 C 8.266 3.764 8.892 4.219 9.598 4.219 L 11.866 4.219 C 12.476 4.219 12.73 4.999 12.236 5.358 L 10.401 6.691 C 9.83 7.106 9.591 7.842 9.809 8.513 L 10.51 10.671 C 10.699 11.251 10.035 11.733 9.541 11.375 L 7.706 10.041 C 7.135 9.626 6.361 9.626 5.79 10.041 L 3.955 11.375 C 3.462 11.733 2.798 11.251 2.986 10.671 L 3.687 8.513 C 3.905 7.842 3.666 7.106 3.095 6.691 L 1.26 5.358 C 0.766 4.999 1.02 4.219 1.63 4.219 L 3.898 4.219 C 4.604 4.219 5.23 3.764 5.448 3.093 L 6.149 0.935 C 6.338 0.355 7.159 0.355 7.347 0.935 Z\" fill=\"rgb(209, 234, 255)\" stroke=\"rgb(161, 194, 255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 22.847 0.935 L 23.548 3.093 C 23.766 3.764 24.392 4.219 25.098 4.219 L 27.366 4.219 C 27.976 4.219 28.23 4.999 27.736 5.358 L 25.901 6.691 C 25.33 7.106 25.091 7.842 25.309 8.513 L 26.01 10.671 C 26.199 11.251 25.535 11.733 25.041 11.375 L 23.206 10.041 C 22.635 9.626 21.861 9.626 21.29 10.041 L 19.455 11.375 C 18.962 11.733 18.297 11.251 18.486 10.671 L 19.187 8.513 C 19.405 7.842 19.166 7.106 18.595 6.691 L 16.76 5.358 C 16.266 4.999 16.52 4.219 17.13 4.219 L 19.398 4.219 C 20.104 4.219 20.73 3.764 20.948 3.093 L 21.649 0.935 C 21.838 0.355 22.659 0.355 22.847 0.935 Z\" fill=\"rgb(209, 234, 255)\" stroke=\"rgb(161, 194, 255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 38.347 0.935 L 39.048 3.093 C 39.266 3.764 39.892 4.219 40.598 4.219 L 42.866 4.219 C 43.476 4.219 43.73 4.999 43.236 5.358 L 41.401 6.691 C 40.83 7.106 40.591 7.842 40.809 8.513 L 41.51 10.671 C 41.699 11.251 41.035 11.733 40.541 11.375 L 38.706 10.041 C 38.135 9.626 37.361 9.626 36.79 10.041 L 34.955 11.375 C 34.462 11.733 33.797 11.251 33.986 10.671 L 34.687 8.513 C 34.905 7.842 34.666 7.106 34.095 6.691 L 32.26 5.358 C 31.766 4.999 32.02 4.219 32.63 4.219 L 34.898 4.219 C 35.604 4.219 36.23 3.764 36.448 3.093 L 37.149 0.935 C 37.338 0.355 38.158 0.355 38.347 0.935 Z\" fill=\"rgb(209, 234, 255)\" stroke=\"rgb(161, 194, 255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 53.847 0.935 L 54.548 3.093 C 54.766 3.764 55.392 4.219 56.098 4.219 L 58.366 4.219 C 58.976 4.219 59.23 4.999 58.736 5.358 L 56.901 6.691 C 56.33 7.106 56.091 7.842 56.309 8.513 L 57.01 10.671 C 57.199 11.251 56.535 11.733 56.041 11.375 L 54.206 10.041 C 53.635 9.626 52.861 9.626 52.29 10.041 L 50.455 11.375 C 49.962 11.733 49.297 11.251 49.486 10.671 L 50.187 8.513 C 50.405 7.842 50.166 7.106 49.595 6.691 L 47.76 5.358 C 47.266 4.999 47.52 4.219 48.13 4.219 L 50.398 4.219 C 51.104 4.219 51.73 3.764 51.948 3.093 L 52.649 0.935 C 52.838 0.355 53.658 0.355 53.847 0.935 Z\" fill=\"rgb(209, 234, 255)\" stroke=\"rgb(161, 194, 255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 69.347 0.935 L 70.048 3.093 C 70.266 3.764 70.892 4.219 71.598 4.219 L 73.866 4.219 C 74.476 4.219 74.73 4.999 74.237 5.358 L 72.401 6.691 C 71.83 7.106 71.591 7.842 71.809 8.513 L 72.51 10.671 C 72.699 11.251 72.035 11.733 71.541 11.375 L 69.706 10.041 C 69.135 9.626 68.361 9.626 67.79 10.041 L 65.955 11.375 C 65.462 11.733 64.797 11.251 64.986 10.671 L 65.687 8.513 C 65.905 7.842 65.666 7.106 65.095 6.691 L 63.26 5.358 C 62.766 4.999 63.02 4.219 63.63 4.219 L 65.898 4.219 C 66.604 4.219 67.23 3.764 67.448 3.093 L 68.149 0.935 C 68.338 0.355 69.159 0.355 69.347 0.935 Z\" fill=\"rgb(209, 234, 255)\" stroke=\"rgb(161, 194, 255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:9225328356,withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:fJmjMaVNY,className:\"framer-brny32\",\"data-framer-name\":\"I must say that Supercharge really did a good job on this one. They never disappoint. Andrija was terrific in the ways he made explanations so simple and plain to understand. This is actually a course that will help many who want more out of Figma, and UI/UX at large.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rzvbEDw4m\",style:{\"--framer-paragraph-spacing\":\"12px\"},stylesPresetsClassNames:{a:\"framer-styles-preset-ab7p6e\",h1:\"framer-styles-preset-o3e5h0\",h2:\"framer-styles-preset-1m9bzi2\",h3:\"framer-styles-preset-ci2ngw\",p:\"framer-styles-preset-l054d3\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-g0eKm.framer-jjc8h0, .framer-g0eKm .framer-jjc8h0 { display: block; }\",\".framer-g0eKm.framer-6w37xz { align-content: flex-start; align-items: flex-start; cursor: ns-resize; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 1px; position: relative; width: 364px; }\",\".framer-g0eKm .framer-12yurpj { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-g0eKm .framer-9mj2lc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 24px; position: relative; width: 100%; z-index: 2; }\",\".framer-g0eKm .framer-lp3brm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-g0eKm .framer-ygmj3i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-g0eKm .framer-1lnz5eu { -webkit-user-select: none; flex: none; height: 36px; overflow: hidden; position: relative; text-decoration: none; user-select: none; width: 36px; will-change: var(--framer-will-change-override, transform); }\",\".framer-g0eKm .framer-qx5w0m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-g0eKm .framer-1g6dfh6, .framer-g0eKm .framer-dg2j64 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-g0eKm .framer-1mxkqg9 { flex: none; height: 12px; position: relative; width: 75px; }\",\".framer-g0eKm .framer-brny32 { cursor: default; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-g0eKm.framer-6w37xz, .framer-g0eKm .framer-9mj2lc, .framer-g0eKm .framer-ygmj3i, .framer-g0eKm .framer-qx5w0m { gap: 0px; } .framer-g0eKm.framer-6w37xz > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-g0eKm.framer-6w37xz > :first-child, .framer-g0eKm .framer-9mj2lc > :first-child, .framer-g0eKm .framer-qx5w0m > :first-child { margin-top: 0px; } .framer-g0eKm.framer-6w37xz > :last-child, .framer-g0eKm .framer-9mj2lc > :last-child, .framer-g0eKm .framer-qx5w0m > :last-child { margin-bottom: 0px; } .framer-g0eKm .framer-9mj2lc > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-g0eKm .framer-ygmj3i > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-g0eKm .framer-ygmj3i > :first-child { margin-left: 0px; } .framer-g0eKm .framer-ygmj3i > :last-child { margin-right: 0px; } .framer-g0eKm .framer-qx5w0m > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 248\n * @framerIntrinsicWidth 364\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"j51UPcPUf\":\"showAvatar\",\"s6weZ9qiW\":\"avatar\",\"x7DGBWrrV\":\"name1\",\"aL8n1ZiKL\":\"username\",\"bmwYwvpz_\":\"link\",\"ynU7tX4cK\":\"radius\",\"fJmjMaVNY\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPczC_9xZX=withCSS(Component,css,\"framer-g0eKm\");export default FramerPczC_9xZX;FramerPczC_9xZX.displayName=\"Testimonials/Testimonial Card (Grids)\";FramerPczC_9xZX.defaultProps={height:248,width:364};addPropertyControls(FramerPczC_9xZX,{j51UPcPUf:{defaultValue:true,title:\"Show Avatar\",type:ControlType.Boolean},s6weZ9qiW:{__defaultAssetReference:\"data:framer/asset-reference,PUBW9Nzw0Tg7WfctYPTgQiiCCo.png?originalFilename=CleanShot+2023-11-10+at+15.59.22.png&preferredSize=auto\",title:\"Avatar\",type:ControlType.ResponsiveImage},x7DGBWrrV:{defaultValue:\"Jane Doe\",displayTextArea:false,title:\"Name\",type:ControlType.String},aL8n1ZiKL:{defaultValue:\"\",displayTextArea:false,placeholder:\"@username\",title:\"Username\",type:ControlType.String},bmwYwvpz_:{title:\"Link\",type:ControlType.Link},ynU7tX4cK:{defaultValue:0,title:\"Radius\",type:ControlType.Number},fJmjMaVNY:{defaultValue:\"<p>I must say that Supercharge really did a good job on this one. They never disappoint. Andrija was terrific in the ways he made explanations so simple and plain to understand. This is actually a course that will help many who want more out of Figma, and UI/UX at large.</p>\",title:\"Text\",type:ControlType.RichText}});addFonts(FramerPczC_9xZX,[{explicitInter:true,fonts:[{family:\"Biennale Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/xi02ap7hUGVdqKIGZ34Ef060MUQ.otf\"},{family:\"Biennale Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/f7h3Y7X9bRSjSJNxpUn7Hcvmjs.otf\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPczC_9xZX\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"248\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"364\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"j51UPcPUf\\\":\\\"showAvatar\\\",\\\"s6weZ9qiW\\\":\\\"avatar\\\",\\\"x7DGBWrrV\\\":\\\"name1\\\",\\\"aL8n1ZiKL\\\":\\\"username\\\",\\\"bmwYwvpz_\\\":\\\"link\\\",\\\"ynU7tX4cK\\\":\\\"radius\\\",\\\"fJmjMaVNY\\\":\\\"text\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ae47b7e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";const SVGFonts=getFonts(SVG);const serializationHash=\"framer-lBhEK\";const variantClassNames={cTeo0A_Wu:\"framer-v-1yg4h2y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({circleColor,height,iconColor,id,text,textColor,width,...props})=>{return{...props,aloAOh2r1:iconColor??props.aloAOh2r1??\"rgb(134, 64, 243)\",gLi93Tys6:textColor??props.gLi93Tys6??\"var(--token-4b8c49e9-929d-4638-b308-b86574102ec6, rgb(14, 10, 27))\",gSe2_aF8n:circleColor??props.gSe2_aF8n??\"rgba(134, 64, 243, 0.12)\",x2V6263O9:text??props.x2V6263O9??\"Bla bla\"};};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,x2V6263O9,gLi93Tys6,gSe2_aF8n,aloAOh2r1,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"cTeo0A_Wu\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1yg4h2y\",className,classNames),\"data-framer-name\":\"Purple - Dark text\",layoutDependency:layoutDependency,layoutId:\"cTeo0A_Wu\",ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-lk6tv9\",layoutDependency:layoutDependency,layoutId:\"At_O5ltfy\",style:{backgroundColor:gSe2_aF8n,borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wb3j6q-container\",layoutDependency:layoutDependency,layoutId:\"Gd8me520z-container\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{customColor:aloAOh2r1,customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.0625 0L1.5 7.17073H5.625L3.75 12L10.5 4.82927H6.375L8.0625 0Z\" fill=\"#8B8B8B\"/> </svg>',description:\"\",height:\"100%\",id:\"Gd8me520z\",layoutId:\"Gd8me520z\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-gLi93Tys6-W8NGIYwK6))\"},children:\"Bla bla\"})}),className:\"framer-175xxbx\",\"data-framer-name\":\"15+ hours of practical videos\",fonts:[\"CUSTOM;Biennale Regular\"],layoutDependency:layoutDependency,layoutId:\"a3pW9OMs6\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-gLi93Tys6-W8NGIYwK6)\",\"--variable-reference-gLi93Tys6-W8NGIYwK6\":gLi93Tys6},text:x2V6263O9,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lBhEK.framer-asb1tn, .framer-lBhEK .framer-asb1tn { display: block; }\",\".framer-lBhEK.framer-1yg4h2y { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 379px; }\",\".framer-lBhEK .framer-lk6tv9 { -webkit-user-select: none; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; pointer-events: none; position: relative; user-select: none; width: 24px; }\",\".framer-lBhEK .framer-wb3j6q-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); left: 50%; position: absolute; top: 50%; width: 12px; }\",\".framer-lBhEK .framer-175xxbx { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lBhEK.framer-1yg4h2y { gap: 0px; } .framer-lBhEK.framer-1yg4h2y > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-lBhEK.framer-1yg4h2y > :first-child { margin-left: 0px; } .framer-lBhEK.framer-1yg4h2y > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 379\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"x2V6263O9\":\"text\",\"gLi93Tys6\":\"textColor\",\"gSe2_aF8n\":\"circleColor\",\"aloAOh2r1\":\"iconColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerW8NGIYwK6=withCSS(Component,css,\"framer-lBhEK\");export default FramerW8NGIYwK6;FramerW8NGIYwK6.displayName=\"List Item/Pricing Card (New)\";FramerW8NGIYwK6.defaultProps={height:24,width:379};addPropertyControls(FramerW8NGIYwK6,{x2V6263O9:{defaultValue:\"Bla bla\",title:\"Text\",type:ControlType.String},gLi93Tys6:{defaultValue:'var(--token-4b8c49e9-929d-4638-b308-b86574102ec6, rgb(14, 10, 27)) /* {\"name\":\"Supercharge/Dark Text Color\"} */',title:\"Text Color\",type:ControlType.Color},gSe2_aF8n:{defaultValue:\"rgba(134, 64, 243, 0.12)\",title:\"Circle Color\",type:ControlType.Color},aloAOh2r1:{defaultValue:\"rgb(134, 64, 243)\",title:\"Icon Color\",type:ControlType.Color}});addFonts(FramerW8NGIYwK6,[{explicitInter:true,fonts:[{family:\"Biennale Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/f7h3Y7X9bRSjSJNxpUn7Hcvmjs.otf\"}]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW8NGIYwK6\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"24\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"x2V6263O9\\\":\\\"text\\\",\\\"gLi93Tys6\\\":\\\"textColor\\\",\\\"gSe2_aF8n\\\":\\\"circleColor\\\",\\\"aloAOh2r1\\\":\\\"iconColor\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"379\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./W8NGIYwK6.map", "// Generated by Framer (ae47b7e)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormBooleanInput,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withMappedReactProps,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import SVG1 from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import LEDMatrix from\"https://framerusercontent.com/modules/wc2yUVD68wk4nq4PEOBW/fWy3jjwtIvQYameXyede/LedMatrix_Prod.js\";import RandomRotation from\"https://framerusercontent.com/modules/yNoBwBdd2ajPhrhpevvw/GWrZyBM0G6V0UHGl6QNi/RandomRotation.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/H7Hprjo8hFoL6HVuvde6/SlideShow.js\";import BookSimpleFlipHover from\"#framer/local/canvasComponent/aBM0ZOmjC/aBM0ZOmjC.js\";import SubtitlesTicker from\"#framer/local/canvasComponent/AhFkQa4DS/AhFkQa4DS.js\";import UIFramerSelection from\"#framer/local/canvasComponent/C0OO4GKoy/C0OO4GKoy.js\";import FormButtonsGrids from\"#framer/local/canvasComponent/eHJmZa7p4/eHJmZa7p4.js\";import ButtonsProductsButton,*as ButtonsProductsButtonInfo from\"#framer/local/canvasComponent/FoJGBhV5J/FoJGBhV5J.js\";import FaqItem from\"#framer/local/canvasComponent/iIhMp9uFS/iIhMp9uFS.js\";import TestimonialsTestimonialCardGrids from\"#framer/local/canvasComponent/PczC_9xZX/PczC_9xZX.js\";import SegmentedControlLight,*as SegmentedControlLightInfo from\"#framer/local/canvasComponent/q5JblU3sz/q5JblU3sz.js\";import Logo from\"#framer/local/canvasComponent/rMEog3O1g/rMEog3O1g.js\";import SyllabusCardBW,*as SyllabusCardBWInfo from\"#framer/local/canvasComponent/rZzf4c8Eq/rZzf4c8Eq.js\";import PageSectionsFooter from\"#framer/local/canvasComponent/vpmBxpnkA/vpmBxpnkA.js\";import ListItemPricingCardNew from\"#framer/local/canvasComponent/W8NGIYwK6/W8NGIYwK6.js\";import NavItem from\"#framer/local/canvasComponent/yOay3VsD3/yOay3VsD3.js\";import{applyDataAttributes}from\"#framer/local/codeFile/afiFdPT/ButtonTracking.js\";import MasonryLayout from\"#framer/local/codeFile/moGZw29/MasonryLayout.js\";import{withTextBalancer}from\"#framer/local/codeFile/teWedf_/Overrides_Video_Scrub.js\";import{withIntesity3}from\"#framer/local/codeFile/qauDPQo/Parallax_Mouse.js\";import{withSyllabusCard,withTogglePeriod}from\"#framer/local/codeFile/uHZAFWn/Syllabus.js\";import{withExpandButton,withFadeOut,withToggleTestimonials}from\"#framer/local/codeFile/oClqPO8/Testimonials_Grid_Expand.js\";import*as sharedStyle14 from\"#framer/local/css/AulFOp9tt/AulFOp9tt.js\";import*as sharedStyle17 from\"#framer/local/css/AZ3uZjZdT/AZ3uZjZdT.js\";import*as sharedStyle8 from\"#framer/local/css/f5krt1lEn/f5krt1lEn.js\";import*as sharedStyle6 from\"#framer/local/css/Fdy6zEfHM/Fdy6zEfHM.js\";import*as sharedStyle11 from\"#framer/local/css/h_OXANf6F/h_OXANf6F.js\";import*as sharedStyle4 from\"#framer/local/css/jtE9a8MQM/jtE9a8MQM.js\";import*as sharedStyle5 from\"#framer/local/css/K5m1BeelV/K5m1BeelV.js\";import*as sharedStyle16 from\"#framer/local/css/Lq1Eh5aed/Lq1Eh5aed.js\";import*as sharedStyle9 from\"#framer/local/css/Lz92TZ4jj/Lz92TZ4jj.js\";import*as sharedStyle13 from\"#framer/local/css/mjcxxzC_k/mjcxxzC_k.js\";import*as sharedStyle1 from\"#framer/local/css/PBZ031t2q/PBZ031t2q.js\";import*as sharedStyle3 from\"#framer/local/css/PfA3Wkpup/PfA3Wkpup.js\";import*as sharedStyle10 from\"#framer/local/css/SgWJ3LhP0/SgWJ3LhP0.js\";import*as sharedStyle15 from\"#framer/local/css/Skhxz3U2Q/Skhxz3U2Q.js\";import*as sharedStyle from\"#framer/local/css/tWOzLcjNF/tWOzLcjNF.js\";import*as sharedStyle12 from\"#framer/local/css/wXvPB6QR8/wXvPB6QR8.js\";import*as sharedStyle7 from\"#framer/local/css/xarLYEhM7/xarLYEhM7.js\";import*as sharedStyle2 from\"#framer/local/css/xgX2xtW7h/xgX2xtW7h.js\";import metadataProvider from\"#framer/local/webPageMetadata/URGdo9NKO/URGdo9NKO.js\";const LogoFonts=getFonts(Logo);const NavItemFonts=getFonts(NavItem);const NavItemWithVariantAppearEffect=withVariantAppearEffect(NavItem);const ButtonsProductsButtonFonts=getFonts(ButtonsProductsButton);const MotionHeaderWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.header));const UIFramerSelectionFonts=getFonts(UIFramerSelection);const RandomRotationFonts=getFonts(RandomRotation);const MotionDivWithFX=withFX(motion.div);const SegmentedControlLightFonts=getFonts(SegmentedControlLight);const SegmentedControlLightWithTogglePeriodWithMappedReactProps1sikimv=withMappedReactProps(withTogglePeriod(SegmentedControlLight),SegmentedControlLightInfo);const SyllabusCardBWFonts=getFonts(SyllabusCardBW);const SyllabusCardBWWithSyllabusCardWithMappedReactProps15131rd=withMappedReactProps(withSyllabusCard(SyllabusCardBW),SyllabusCardBWInfo);const CarouselFonts=getFonts(Carousel);const CarouselWithTogglePeriod=withTogglePeriod(Carousel);const FormButtonsGridsFonts=getFonts(FormButtonsGrids);const SlideshowFonts=getFonts(Slideshow);const SVG1Fonts=getFonts(SVG1);const BookSimpleFlipHoverFonts=getFonts(BookSimpleFlipHover);const HeroFonts=getFonts(Hero);const ImageWithFX=withFX(Image);const ImageWithIntesity3=withIntesity3(Image);const SubtitlesTickerFonts=getFonts(SubtitlesTicker);const TestimonialsTestimonialCardGridsFonts=getFonts(TestimonialsTestimonialCardGrids);const MasonryLayoutFonts=getFonts(MasonryLayout);const MotionDivWithExpandButtonWithOptimizedAppearEffect=withOptimizedAppearEffect(withExpandButton(motion.div));const MotionDivWithFadeOut=withFadeOut(motion.div);const MotionDivWithToggleTestimonials=withToggleTestimonials(motion.div);const TickerFonts=getFonts(Ticker);const ButtonsProductsButtonApplyDataAttributesWithMappedReactProps1gy9njo=withMappedReactProps(applyDataAttributes(ButtonsProductsButton),ButtonsProductsButtonInfo);const ContainerWithFX=withFX(Container);const ListItemPricingCardNewFonts=getFonts(ListItemPricingCardNew);const LEDMatrixFonts=getFonts(LEDMatrix);const RichTextWithTextBalancer=withTextBalancer(RichText);const FaqItemFonts=getFonts(FaqItem);const PageSectionsFooterFonts=getFonts(PageSectionsFooter);const breakpoints={DkbOqTVHM:\"(min-width: 1440px) and (max-width: 1919px)\",JzFPzPkCn:\"(min-width: 1200px) and (max-width: 1439px)\",TpbNi_gee:\"(min-width: 1920px)\",UqsXmKWpT:\"(max-width: 809px)\",yv6tABt87:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-9YWKc\";const variantClassNames={DkbOqTVHM:\"framer-v-aejagu\",JzFPzPkCn:\"framer-v-ki4of\",TpbNi_gee:\"framer-v-9u1kxi\",UqsXmKWpT:\"framer-v-1jbi25a\",yv6tABt87:\"framer-v-vdtdcu\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:57,delay:.5,mass:3.1,stiffness:443,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:-150};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-60};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition2};const animation5={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition3={damping:40,delay:.05,mass:1,stiffness:400,type:\"spring\"};const getTextEffect=ref=>({effect:animation5,target:{ref},threshold:.5,tokenization:\"character\",transition:transition3,trigger:\"onScrollTarget\",type:\"appear\"});const animation6={opacity:0,rotate:13,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:70};const transition4={damping:30,delay:.1,mass:1,stiffness:400,type:\"spring\"};const transition5={damping:30,delay:.2,mass:1,stiffness:400,type:\"spring\"};const transition6={damping:30,delay:.3,mass:1,stiffness:400,type:\"spring\"};const transition7={damping:30,delay:.4,mass:1,stiffness:400,type:\"spring\"};const transition8={damping:30,delay:.5,mass:1,stiffness:400,type:\"spring\"};const getTextEffect1=ref=>({effect:animation5,repeat:false,startDelay:0,target:{ref},threshold:.5,tokenization:\"character\",transition:transition3,trigger:\"onScrollTarget\",type:\"appear\"});const animation7={opacity:0,rotate:13,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:70};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation8={opacity:0,rotate:-11,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:80};const transition9={damping:51,delay:0,mass:3.3,stiffness:1e3,type:\"spring\"};const animation9={opacity:0,rotate:-11,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transition:transition9,x:0,y:80};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,x:0,y:70};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const animation11={opacity:1,rotate:13,rotateX:-20,rotateY:30,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:240};const transition10={damping:70,delay:.4,mass:2.1,stiffness:400,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,y:-10};const transition11={damping:70,delay:.5,mass:2.1,stiffness:400,type:\"spring\"};const animation13={opacity:1,rotate:13,rotateX:-20,rotateY:30,scale:1,skewX:0,skewY:0,x:0,y:240};const transition12={damping:70,delay:.6,mass:2.1,stiffness:400,type:\"spring\"};const animation14={opacity:0,rotate:-9,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:-230,y:0};const transition13={damping:51,delay:0,mass:1,stiffness:278,type:\"spring\"};const animation15={opacity:0,rotate:-9,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:100};const animation16={opacity:0,rotate:-20,rotateX:0,rotateY:0,scale:.2,skewX:0,skewY:0,x:0,y:0};const transition14={damping:45,delay:0,mass:1,stiffness:302,type:\"spring\"};const animation17={opacity:0,rotate:130,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:340,y:0};const animation18={opacity:1,rotate:-10,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition15={damping:45,delay:.8,mass:1,stiffness:302,type:\"spring\"};const animation20={opacity:1,rotate:-2,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const transition16={damping:45,delay:.6,mass:1,stiffness:302,type:\"spring\"};const transition17={damping:45,delay:.4,mass:1,stiffness:302,type:\"spring\"};const transition18={damping:45,delay:.2,mass:1,stiffness:302,type:\"spring\"};const transition19={bounce:.35,delay:0,duration:1.2,type:\"spring\"};const animation21={opacity:0,rotate:21,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:-17,y:20};const transition20={delay:1.4,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const animation22={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition20,x:0,y:0};const animation23={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value}});};const humanReadableVariantMap={\"Desktop 2\":\"DkbOqTVHM\",\"Desktop 3\":\"JzFPzPkCn\",Desktop:\"TpbNi_gee\",Phone:\"UqsXmKWpT\",Tablet:\"yv6tABt87\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"TpbNi_gee\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();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{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onLoading3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className,sharedStyle15.className,sharedStyle16.className,sharedStyle17.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"yv6tABt87\",\"UqsXmKWpT\"].includes(baseVariant))return false;return true;};const router=useRouter();const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const ref7=React.useRef(null);const ref8=React.useRef(null);const ref9=React.useRef(null);const ref10=React.useRef(null);const elementId=useRouteElementId(\"G3vP2QIdM\");const elementId1=useRouteElementId(\"eQlfoufDT\");const ref11=React.useRef(null);const elementId2=useRouteElementId(\"h_rzxSHRO\");const ref12=React.useRef(null);const elementId3=useRouteElementId(\"tNTQ_FzrV\");const ref13=React.useRef(null);const elementId4=useRouteElementId(\"Ti2iPlQMo\");const elementId5=useRouteElementId(\"EUADrWw_h\");const elementId6=useRouteElementId(\"dfMbXE_de\");const elementId7=useRouteElementId(\"VRqvOp4f0\");const ref14=React.useRef(null);const elementId8=useRouteElementId(\"P5HSzIvHV\");const ref15=React.useRef(null);const elementId9=useRouteElementId(\"pMA_pQZri\");const ref16=React.useRef(null);const elementId10=useRouteElementId(\"YoxdJnPQ4\");const ref17=React.useRef(null);const elementId11=useRouteElementId(\"jThQfGY7s\");const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"UqsXmKWpT\")return true;return false;};const elementId12=useRouteElementId(\"qz8jXUIeo\");const elementId13=useRouteElementId(\"uq4XfeWQ9\");const ref18=React.useRef(null);const elementId14=useRouteElementId(\"UvqZaGFBR\");const ref19=React.useRef(null);const elementId15=useRouteElementId(\"m5NfkHSOp\");const ref20=React.useRef(null);const elementId16=useRouteElementId(\"w4rSfcNEs\");const elementId17=useRouteElementId(\"zJP_TngXc\");const elementId18=useRouteElementId(\"GDl5a1Uek\");const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"TpbNi_gee\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-9u1kxi\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,animate:undefined,initial:undefined,optimized:undefined,transformTemplate:undefined},yv6tABt87:{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,animate:undefined,initial:undefined,optimized:undefined,transformTemplate:undefined}},children:/*#__PURE__*/_jsxs(MotionHeaderWithFXWithOptimizedAppearEffect,{animate:animation,className:\"framer-1e9bz63\",\"data-framer-appear-id\":\"1e9bz63\",\"data-framer-name\":\"Navigation\",initial:animation1,optimized:true,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:[isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":lw5akK4xj\",webPageId:\"CphD4eM8x\"},implicitPathVariables:undefined},{href:{hash:\":lw5akK4xj\",webPageId:\"CphD4eM8x\"},implicitPathVariables:undefined},{href:{hash:\":lw5akK4xj\",webPageId:\"CphD4eM8x\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ld2z7t-container hidden-vdtdcu hidden-1jbi25a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{n5SmURJ3n:resolvedLinks[1]},JzFPzPkCn:{n5SmURJ3n:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"GN_mNCpW3\",layoutId:\"GN_mNCpW3\",n5SmURJ3n:resolvedLinks[0],style:{height:\"100%\",width:\"100%\"},variant:\"kIgDlssCd\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"nav\",{className:\"framer-1d6islv\",\"data-border\":true,\"data-framer-name\":\"Sticky navigation\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Ti2iPlQMo\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":Ti2iPlQMo\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":Ti2iPlQMo\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":Ti2iPlQMo\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":Ti2iPlQMo\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{y:0},yv6tABt87:{y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12bmxpt-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{rg1irEHUF:resolvedLinks1[1]},JzFPzPkCn:{rg1irEHUF:resolvedLinks1[2]},UqsXmKWpT:{rg1irEHUF:resolvedLinks1[4]},yv6tABt87:{rg1irEHUF:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(NavItemWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref3,target:\"LGbv7XV4H\"},{ref:ref4,target:\"XlZCtDsMU\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,B1wTaAU4I:\"Syllabus\",height:\"100%\",id:\"VWg_Ytcog\",layoutId:\"VWg_Ytcog\",rg1irEHUF:resolvedLinks1[0],style:{height:\"100%\"},variant:\"XlZCtDsMU\",width:\"100%\",zqVIAY1NF:0})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":EUADrWw_h\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":EUADrWw_h\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":EUADrWw_h\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":EUADrWw_h\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":EUADrWw_h\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{y:0},yv6tABt87:{y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mmnufk-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{rg1irEHUF:resolvedLinks2[1]},JzFPzPkCn:{rg1irEHUF:resolvedLinks2[2]},UqsXmKWpT:{rg1irEHUF:resolvedLinks2[4]},yv6tABt87:{rg1irEHUF:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(NavItemWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref4,target:\"LGbv7XV4H\"},{ref:ref5,target:\"XlZCtDsMU\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,B1wTaAU4I:\"Free Lessons\",height:\"100%\",id:\"mzeyM17Pf\",layoutId:\"mzeyM17Pf\",rg1irEHUF:resolvedLinks2[0],style:{height:\"100%\"},variant:\"XlZCtDsMU\",width:\"100%\",zqVIAY1NF:0})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":dfMbXE_de\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":dfMbXE_de\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":dfMbXE_de\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":dfMbXE_de\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":dfMbXE_de\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{y:0},yv6tABt87:{y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18ngob0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{rg1irEHUF:resolvedLinks3[1]},JzFPzPkCn:{rg1irEHUF:resolvedLinks3[2]},UqsXmKWpT:{rg1irEHUF:resolvedLinks3[4]},yv6tABt87:{rg1irEHUF:resolvedLinks3[3]}},children:/*#__PURE__*/_jsx(NavItemWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref5,target:\"LGbv7XV4H\"},{ref:ref6,target:\"XlZCtDsMU\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,B1wTaAU4I:\"Bonuses\",height:\"100%\",id:\"A492ZcMkW\",layoutId:\"A492ZcMkW\",rg1irEHUF:resolvedLinks3[0],style:{height:\"100%\"},variant:\"XlZCtDsMU\",width:\"100%\",zqVIAY1NF:0})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":jThQfGY7s\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":jThQfGY7s\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":jThQfGY7s\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":jThQfGY7s\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":jThQfGY7s\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{y:0},yv6tABt87:{y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xosyrk-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{rg1irEHUF:resolvedLinks4[1]},JzFPzPkCn:{rg1irEHUF:resolvedLinks4[2]},UqsXmKWpT:{rg1irEHUF:resolvedLinks4[4]},yv6tABt87:{rg1irEHUF:resolvedLinks4[3]}},children:/*#__PURE__*/_jsx(NavItemWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref6,target:\"LGbv7XV4H\"},{ref:ref7,target:\"XlZCtDsMU\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,B1wTaAU4I:\"Testimonials\",height:\"100%\",id:\"DIQ4thoLD\",layoutId:\"DIQ4thoLD\",rg1irEHUF:resolvedLinks4[0],style:{height:\"100%\"},variant:\"XlZCtDsMU\",width:\"100%\",zqVIAY1NF:0})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":w4rSfcNEs\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":w4rSfcNEs\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":w4rSfcNEs\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":w4rSfcNEs\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":w4rSfcNEs\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{y:0},yv6tABt87:{y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rm8pyw-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{rg1irEHUF:resolvedLinks5[1]},JzFPzPkCn:{rg1irEHUF:resolvedLinks5[2]},UqsXmKWpT:{rg1irEHUF:resolvedLinks5[4]},yv6tABt87:{rg1irEHUF:resolvedLinks5[3]}},children:/*#__PURE__*/_jsx(NavItemWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref8,target:\"LGbv7XV4H\"},{ref:ref9,target:\"XlZCtDsMU\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,B1wTaAU4I:\"Instructor\",height:\"100%\",id:\"jRYqlTLQu\",layoutId:\"jRYqlTLQu\",rg1irEHUF:resolvedLinks5[0],style:{height:\"100%\"},variant:\"XlZCtDsMU\",width:\"100%\",zqVIAY1NF:0})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":zJP_TngXc\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":zJP_TngXc\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":zJP_TngXc\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":zJP_TngXc\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":zJP_TngXc\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{y:0},yv6tABt87:{y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kvtol9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{rg1irEHUF:resolvedLinks6[1]},JzFPzPkCn:{rg1irEHUF:resolvedLinks6[2]},UqsXmKWpT:{rg1irEHUF:resolvedLinks6[4]},yv6tABt87:{rg1irEHUF:resolvedLinks6[3]}},children:/*#__PURE__*/_jsx(NavItemWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref9,target:\"LGbv7XV4H\"},{ref:ref10,target:\"XlZCtDsMU\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,B1wTaAU4I:\"FAQ\",height:\"100%\",id:\"QeO4Bk0cf\",layoutId:\"QeO4Bk0cf\",rg1irEHUF:resolvedLinks6[0],style:{height:\"100%\"},variant:\"XlZCtDsMU\",width:\"100%\",zqVIAY1NF:0})})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":UvqZaGFBR\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":UvqZaGFBR\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined},{href:{hash:\":UvqZaGFBR\",webPageId:\"URGdo9NKO\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oxflye-container hidden-vdtdcu hidden-1jbi25a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{jPdqKiphw:resolvedLinks7[1]},JzFPzPkCn:{jPdqKiphw:resolvedLinks7[2]}},children:/*#__PURE__*/_jsx(ButtonsProductsButton,{BKZRzEod0:\"var(--token-0ba6097c-20b5-48d3-b3d4-503ffeab0e75, rgb(200, 159, 255))\",f9C4xGWuD:\"var(--token-ffb9c561-95b3-4568-8a0f-f9bbd9f95d6a, rgb(167, 234, 234))\",height:\"100%\",id:\"SuyHDK28B\",jDo9irJ97:false,jPdqKiphw:resolvedLinks7[0],KFkBaqV5U:\"Enroll Now\",l7Ni60uGj:\"UI Grids & Layouts\",layoutId:\"SuyHDK28B\",qysDuaiad:0,slzkUGqCY:true,style:{height:\"100%\"},TFE_mZArs:\"249.00\",variant:\"U1kH0CuPr\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",positionX:\"left\",positionY:\"center\"},className:\"framer-3t265v\",\"data-framer-name\":\"Header 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-typ88h\",\"data-framer-name\":\"overlay gradient\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2027,pixelWidth:3840,positionX:\"48.3%\",positionY:\"34%\",src:\"https://framerusercontent.com/images/LA3WI1tUeKbOWpelOky0Ng1JbA.jpg\"},className:\"framer-1vqqb3l\",\"data-framer-name\":\"andrija\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cbr9kh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u2eksi\",\"data-framer-name\":\"Frame 1321315011\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1eujo3u\",\"data-styles-preset\":\"tWOzLcjNF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-00e8397f-a2ab-4d76-9c28-77f8efb143bc, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Our masterclasses are rated 4.9/5.0\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1eujo3u\",\"data-styles-preset\":\"tWOzLcjNF\",style:{\"--framer-text-color\":\"var(--token-00e8397f-a2ab-4d76-9c28-77f8efb143bc, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Our masterclasses are rated 4.9/5.0\"})})}),className:\"framer-1w8off4\",\"data-framer-name\":\"Our masterclasses are rated 4.9/5.0\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-kov0rs\",\"data-framer-name\":\"stars\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:92,svg:'<svg width=\"92\" height=\"16\" viewBox=\"0 0 92 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.97151 0.910679C7.37393 -0.303561 9.12608 -0.303559 9.52849 0.910681L10.3627 3.42774C10.5426 3.97077 11.0588 4.33842 11.6412 4.33842H14.3406C15.6429 4.33842 16.1843 5.97217 15.1308 6.72261L12.9469 8.27824C12.4757 8.61385 12.2786 9.20872 12.4585 9.75175L13.2927 12.2688C13.6951 13.483 12.2776 14.4928 11.2241 13.7423L9.04015 12.1867C8.569 11.8511 7.931 11.8511 7.45985 12.1867L5.27593 13.7423C4.22239 14.4928 2.80488 13.483 3.20729 12.2688L4.04147 9.75175C4.22144 9.20873 4.02429 8.61385 3.55313 8.27824L1.36921 6.72261C0.315676 5.97217 0.857123 4.33842 2.15936 4.33842H4.85884C5.44122 4.33842 5.95736 3.97076 6.13733 3.42774L6.97151 0.910679Z\" fill=\"#74A8FF\"/>\\n<path d=\"M25.8465 0.910679C26.2489 -0.303561 28.0011 -0.303559 28.4035 0.910681L29.2377 3.42774C29.4176 3.97077 29.9338 4.33842 30.5162 4.33842H33.2156C34.5179 4.33842 35.0593 5.97217 34.0058 6.72261L31.8219 8.27824C31.3507 8.61385 31.1536 9.20872 31.3335 9.75175L32.1677 12.2688C32.5701 13.483 31.1526 14.4928 30.0991 13.7423L27.9152 12.1867C27.444 11.8511 26.806 11.8511 26.3349 12.1867L24.1509 13.7423C23.0974 14.4928 21.6799 13.483 22.0823 12.2688L22.9165 9.75175C23.0964 9.20873 22.8993 8.61385 22.4281 8.27824L20.2442 6.72261C19.1907 5.97217 19.7321 4.33842 21.0344 4.33842H23.7338C24.3162 4.33842 24.8324 3.97076 25.0123 3.42774L25.8465 0.910679Z\" fill=\"#74A8FF\"/>\\n<path d=\"M44.7215 0.910679C45.1239 -0.303561 46.8761 -0.303559 47.2785 0.910681L48.1127 3.42774C48.2926 3.97077 48.8088 4.33842 49.3912 4.33842H52.0906C53.3929 4.33842 53.9343 5.97217 52.8808 6.72261L50.6969 8.27824C50.2257 8.61385 50.0286 9.20872 50.2085 9.75175L51.0427 12.2688C51.4451 13.483 50.0276 14.4928 48.9741 13.7423L46.7902 12.1867C46.319 11.8511 45.681 11.8511 45.2099 12.1867L43.0259 13.7423C41.9724 14.4928 40.5549 13.483 40.9573 12.2688L41.7915 9.75175C41.9714 9.20873 41.7743 8.61385 41.3031 8.27824L39.1192 6.72261C38.0657 5.97217 38.6071 4.33842 39.9094 4.33842H42.6088C43.1912 4.33842 43.7074 3.97076 43.8873 3.42774L44.7215 0.910679Z\" fill=\"#74A8FF\"/>\\n<path d=\"M63.5965 0.910679C63.9989 -0.303561 65.7511 -0.303559 66.1535 0.910681L66.9877 3.42774C67.1676 3.97077 67.6838 4.33842 68.2662 4.33842H70.9656C72.2679 4.33842 72.8093 5.97217 71.7558 6.72261L69.5719 8.27824C69.1007 8.61385 68.9036 9.20872 69.0835 9.75175L69.9177 12.2688C70.3201 13.483 68.9026 14.4928 67.8491 13.7423L65.6652 12.1867C65.194 11.8511 64.556 11.8511 64.0849 12.1867L61.9009 13.7423C60.8474 14.4928 59.4299 13.483 59.8323 12.2688L60.6665 9.75175C60.8464 9.20873 60.6493 8.61385 60.1781 8.27824L57.9942 6.72261C56.9407 5.97217 57.4821 4.33842 58.7844 4.33842H61.4838C62.0662 4.33842 62.5824 3.97076 62.7623 3.42774L63.5965 0.910679Z\" fill=\"#74A8FF\"/>\\n<path d=\"M82.4715 0.910679C82.8739 -0.303561 84.6261 -0.303559 85.0285 0.910681L85.8627 3.42774C86.0426 3.97077 86.5588 4.33842 87.1412 4.33842H89.8406C91.1429 4.33842 91.6843 5.97217 90.6308 6.72261L88.4469 8.27824C87.9757 8.61385 87.7786 9.20872 87.9585 9.75175L88.7927 12.2688C89.1951 13.483 87.7776 14.4928 86.7241 13.7423L84.5402 12.1867C84.069 11.8511 83.431 11.8511 82.9599 12.1867L80.7759 13.7423C79.7224 14.4928 78.3049 13.483 78.7073 12.2688L79.5415 9.75175C79.7214 9.20873 79.5243 8.61385 79.0531 8.27824L76.8692 6.72261C75.8157 5.97217 76.3571 4.33842 77.6594 4.33842H80.3588C80.9412 4.33842 81.4574 3.97076 81.6373 3.42774L82.4715 0.910679Z\" fill=\"#74A8FF\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w1i94m\",\"data-framer-name\":\"Frame 1321315048\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jdl56i\",\"data-framer-name\":\"Frame 1321315046\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1edl6mu\",\"data-framer-name\":\"Frame 1321315045\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-2nx2ke\",\"data-styles-preset\":\"PBZ031t2q\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The Ultimate UI Grids & Layouts Masterclass\"})})},yv6tABt87:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-2nx2ke\",\"data-styles-preset\":\"PBZ031t2q\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The Ultimate UI Grids & Layouts Masterclass\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-2nx2ke\",\"data-styles-preset\":\"PBZ031t2q\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The Ultimate UI Grids & Layouts Masterclass\"})}),className:\"framer-16rp7sv\",\"data-framer-name\":\"The Ultimate UI Grids & Layouts Masterclass\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wrklcd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1o4ylbe\",\"data-styles-preset\":\"xgX2xtW7h\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-00e8397f-a2ab-4d76-9c28-77f8efb143bc, rgb(255, 255, 255))\"},children:\"Unlock the Secrets of UI Grids & Layouts\"})})},yv6tABt87:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-h2b5h9\",\"data-styles-preset\":\"PfA3Wkpup\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-00e8397f-a2ab-4d76-9c28-77f8efb143bc, rgb(255, 255, 255))\"},children:\"Unlock the Secrets of UI Grids & Layouts\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1o4ylbe\",\"data-styles-preset\":\"xgX2xtW7h\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-00e8397f-a2ab-4d76-9c28-77f8efb143bc, rgb(255, 255, 255))\"},children:\"Unlock the Secrets of UI Grids & Layouts\"})}),className:\"framer-1mebeqx\",\"data-framer-name\":\"Become a UI grids \\u2028& layouts master\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-s8i137\",\"data-styles-preset\":\"jtE9a8MQM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Unlock the secrets to creating visually stunning and highly functional UI layouts. \",/*#__PURE__*/_jsx(\"strong\",{children:\"Enroll now\"}),\" and take your design skills to the next level\"]})})},yv6tABt87:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-s8i137\",\"data-styles-preset\":\"jtE9a8MQM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Unlock the secrets to creating visually stunning and highly functional UI layouts. \",/*#__PURE__*/_jsx(\"strong\",{children:\"Enroll now\"}),\" and take your design skills to the next level\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-s8i137\",\"data-styles-preset\":\"jtE9a8MQM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Unlock the secrets to creating visually stunning and highly functional UI layouts. \",/*#__PURE__*/_jsx(\"strong\",{children:\"Enroll now\"}),\" and take your design skills to the next level\"]})}),className:\"framer-yhl75i\",\"data-framer-name\":\"It\u2019s time to learn all the secrets of UI grids and layouts, and feel confident in your design decisions. Take your designs from average to exceptional by enrolling in this engaging, practical, and \\u2028all-inclusive video course.\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5a4bri\",\"data-framer-name\":\"Frame 1321315047\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m0egsk-container\",whileHover:animation3,whileTap:animation4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(RandomRotation,{default:{max:0,min:0},height:\"100%\",hover:{max:10,min:-10},id:\"QWzCHNEn2\",layer:[/*#__PURE__*/_jsx(Link,{href:{hash:\":UvqZaGFBR\",webPageId:\"URGdo9NKO\"},nodeId:\"HKfZiFRty\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-zcdq7n framer-jxbss8\",\"data-framer-name\":\"Button\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9ofsxa-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(UIFramerSelection,{height:\"100%\",id:\"P0aejUZC5\",layoutId:\"P0aejUZC5\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17ur7to\",\"data-styles-preset\":\"K5m1BeelV\",style:{\"--framer-text-color\":\"rgb(11, 44, 98)\"},children:\"Enroll Now\"})}),className:\"framer-1rugsr6\",\"data-framer-name\":\"Grab Presale Discount\",fonts:[\"Inter\"],style:{transformPerspective:1822},verticalAlignment:\"center\",withExternalLayout:true})]})})],layoutId:\"QWzCHNEn2\",pressed:{max:10,min:-10},transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l0nor2\",\"data-framer-name\":\"Frame 1321315015\"})]})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-9k9p39\",\"data-framer-name\":\"Introduction\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ojwki9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-2nx2ke\",\"data-styles-preset\":\"PBZ031t2q\",style:{\"--framer-text-color\":\"var(--token-4b8c49e9-929d-4638-b308-b86574102ec6, rgb(14, 10, 27))\"},children:\"Does this sound familiar?\"})}),className:\"framer-1arzmwm\",\"data-framer-name\":\"Does this sound familiar?\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1gpq2xz\",\"data-styles-preset\":\"xarLYEhM7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-90bcb052-e0bd-4394-9b0b-8857307bbc04, rgb(14, 10, 27))\"},children:\"Are you struggling to create consistent and well\u2011structured UI layouts? Do your designs lack the professional polish that sets top\u2011tier designers apart?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-nhnclj\",\"data-styles-preset\":\"Fdy6zEfHM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-90bcb052-e0bd-4394-9b0b-8857307bbc04, rgb(14, 10, 27))\"},children:\"Are you struggling to create consistent and well\u2011structured UI layouts? Do your designs lack the professional polish that sets top\u2011tier designers apart?\"})}),className:\"framer-b8z5w9\",\"data-framer-name\":\"\u201CI can recognize a great-looking interface, but I can\u2019t design one and I have no idea why.\u201D\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgba(9, 9, 13, 0.75)\"},children:\"You\u2019re not alone! Inconsistent designs, cluttered interfaces, and poor responsiveness can hold you back from achieving that polished, professional look that sets top-tier designers apart.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgba(9, 9, 13, 0.75)\"},children:\"That\u2019s why we\u2019ve created the Ultimate UI Grids & Layouts Masterclass, a comprehensive, self-paced course designed to take your design skills to the next level.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgba(9, 9, 13, 0.75)\"},children:\"In this UI grids and layouts video course you'll learn the principles and techniques to elevate your design skills and create impeccable UI grids and layouts, and as a result, user interface designs.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgba(9, 9, 13, 0.75)\"},children:\"Designed for both beginners and experienced designers, our masterclass includes in-depth tutorials, practical exercises, and cheat sheets to reinforce your learning. This user interface design oriented grids and layouts video course isn't just about theory. It's about transforming your skills and confidence as a UI designer in the most efficient way.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgba(9, 9, 13, 0.75)\"},children:\"Mastering UI grids and layouts is more than just arranging elements on a screen. It\u2019s about creating visual harmony and appeal that guide the user\u2019s eye effortlessly through your design.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgba(9, 9, 13, 0.75)\"},children:\"Whether you\u2019re an aspiring designer or a seasoned professional, this course will help you create consistent UI layouts, learn the core principles of grid systems to ensure your designs are always organized, enhance your UI design skills, understand the psychology behind layout design, and achieve pixel-perfect precision.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgba(9, 9, 13, 0.75)\"},children:\"Say goodbye to misaligned elements and hello to seamless, professional-grade interfaces!\"})]})},yv6tABt87:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgba(9, 9, 13, 0.75)\"},children:\"You\u2019re not alone! Inconsistent designs, cluttered interfaces, and poor responsiveness can hold you back from achieving that polished, professional look that sets top-tier designers apart.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgba(9, 9, 13, 0.75)\"},children:\"That\u2019s why we\u2019ve created the Ultimate UI Grids & Layouts Masterclass, a comprehensive, self-paced course designed to take your design skills to the next level.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgba(9, 9, 13, 0.75)\"},children:\"In this UI grids and layouts video course you'll learn the principles and techniques to elevate your design skills and create impeccable UI grids and layouts, and as a result, user interface designs.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgba(9, 9, 13, 0.75)\"},children:\"Designed for both beginners and experienced designers, our masterclass includes in-depth tutorials, practical exercises, and cheat sheets to reinforce your learning. This user interface design oriented grids and layouts video course isn't just about theory. It's about transforming your skills and confidence as a UI designer in the most efficient way.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgba(9, 9, 13, 0.75)\"},children:\"Mastering UI grids and layouts is more than just arranging elements on a screen. It\u2019s about creating visual harmony and appeal that guide the user\u2019s eye effortlessly through your design.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgba(9, 9, 13, 0.75)\"},children:\"Whether you\u2019re an aspiring designer or a seasoned professional, this course will help you create consistent UI layouts, learn the core principles of grid systems to ensure your designs are always organized, enhance your UI design skills, understand the psychology behind layout design, and achieve pixel-perfect precision.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgba(9, 9, 13, 0.75)\"},children:\"Say goodbye to misaligned elements and hello to seamless, professional-grade interfaces!\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgba(9, 9, 13, 0.75)\"},children:\"You\u2019re not alone! Inconsistent designs, cluttered interfaces, and poor responsiveness can hold you back from achieving that polished, professional look that sets top-tier designers apart.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgba(9, 9, 13, 0.75)\"},children:\"That\u2019s why we\u2019ve created the Ultimate UI Grids & Layouts Masterclass, a comprehensive, self-paced course designed to take your design skills to the next level.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgba(9, 9, 13, 0.75)\"},children:\"In this UI grids and layouts video course you'll learn the principles and techniques to elevate your design skills and create impeccable UI grids and layouts, and as a result, user interface designs.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgba(9, 9, 13, 0.75)\"},children:\"Designed for both beginners and experienced designers, our masterclass includes in-depth tutorials, practical exercises, and cheat sheets to reinforce your learning. This user interface design oriented grids and layouts video course isn't just about theory. It's about transforming your skills and confidence as a UI designer in the most efficient way.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgba(9, 9, 13, 0.75)\"},children:\"Mastering UI grids and layouts is more than just arranging elements on a screen. It\u2019s about creating visual harmony and appeal that guide the user\u2019s eye effortlessly through your design.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgba(9, 9, 13, 0.75)\"},children:\"Whether you\u2019re an aspiring designer or a seasoned professional, this course will help you create consistent UI layouts, learn the core principles of grid systems to ensure your designs are always organized, enhance your UI design skills, understand the psychology behind layout design, and achieve pixel-perfect precision.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgba(9, 9, 13, 0.75)\"},children:\"Say goodbye to misaligned elements and hello to seamless, professional-grade interfaces!\"})]}),className:\"framer-o06j4k\",\"data-framer-name\":\"If you're reading this, chances are, you're in the same position I found myself in during the early stages of my career \u2013 a bit lost, uncertain, overwhelmed, and confused. The world of UI design might seem unclear and overly complex. You're not alone in feeling this way! Understanding UI design can feel like trying to learn a new language. There are so many different ideas, rules, and tools to learn. It can be hard to know where to start. The advice you can find online might seem helpful at first, but often it's not very practical or easy to use. More often than not, you\u2019re left stuck in theory, lacking hands-on, effective UI design strategies. It's one thing to see a well-designed interface and recognize that it looks good. But it's a completely different challenge to make one yourself. It\u2019s almost as being tasked with painting a masterpiece without ever having held a brush. The process can be frustrating, disheartening, and you might feel like giving up. You\u2019re here because you\u2019re seeking a solution. You want to learn how to overcome this common problem. You want to learn how to turn your confusion into understanding, and your frustration into progress. The solution, I assure you, is not as elusive as it seems. The secret to becoming a proficient master of UI design is not based on innate sense of creativity or talent. It relies heavily on leveraging proven tactics and adhering to established best practices. Let's start this journey together! Let's take the mystery out of UI design and turn it into an exciting challenge and an opportunity for growth and mastery. Let\u2019s start designing the right way!\",fonts:[\"CUSTOM;Biennale Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",backgroundSize:1.5,fit:\"tile\",pixelHeight:64,pixelWidth:64,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/K58WBtXQyRqLO5dNlIJJ4MhJY.svg\"},className:\"framer-1rzfnv1\",\"data-framer-name\":\"Is this for me\",id:elementId1,ref:ref11,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5li97t\",\"data-framer-name\":\"overlay-fade\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-nhnclj\",\"data-styles-preset\":\"Fdy6zEfHM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(40, 40, 40)\"},children:\"How do I know if this is for me?\"})}),className:\"framer-1m2bz3a\",\"data-framer-name\":\"How do I know if this is for me?\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ptb0w8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hzyl8v\",\"data-framer-name\":\"ileft column red\",id:elementId2,ref:ref12,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11kendy\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-8cqlmb\",\"data-styles-preset\":\"f5krt1lEn\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(193, 68, 28)\"},children:\"Is this your work?\"})}),className:\"framer-1qxeva4\",\"data-framer-name\":\"Is this your work?\",effect:getTextEffect(ref12),fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ez20cb\",\"data-border\":true,\"data-framer-name\":\"Frame 1321315028\",style:{rotate:-2,transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-14tclty\",\"data-framer-name\":\"#298\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:97,intrinsicWidth:110,style:{rotate:2},svg:'<svg width=\"110\" height=\"97\" viewBox=\"-2 -2 110 97\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.1\">\\n<path d=\"M60.8882 17.4944C49.5366 24.6623 38.0008 31.5503 26.5469 38.5555C18.2127 43.6528 9.41289 48.1117 1.6885 54.0756C-1.52962 56.5602 9.07648 50.6325 12.7396 48.8485C32.1766 39.3824 52.1439 31.9604 72.7667 25.4787C72.964 25.4167 73.4364 25.0945 73.3557 25.2835C73.0495 26.0008 71.9485 25.9733 71.2579 26.3423C65.9861 29.1587 60.718 31.9776 55.4273 34.76C48.7964 38.2473 42.156 41.7208 35.5539 45.2612L35.5442 45.2664C35.2629 45.4162 29.195 48.6473 31.2052 48.1641C38.8628 46.3235 46.5131 43.4612 53.8193 40.6092C55.7778 39.8446 61.5783 37.3946 59.7102 38.3538C54.9894 40.778 50.002 42.6864 45.2387 45.0302C38.719 48.2382 32.3867 51.8045 26.0955 55.4247C23.6854 56.8116 16.4097 60.5182 19.1629 60.0541C20.8388 59.7716 22.383 58.9841 23.9935 58.4506C29.3133 56.6881 33.8364 55.2839 39.398 53.9003C60.3535 48.6868 81.7387 45.883 103.027 42.3485\" stroke=\"#C1441C\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(192, 67, 28)\"},children:[\"Inconsistent\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:\" designs\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(192, 67, 28)\"},children:[\"Inconsistent\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:\" designs\"})]})}),className:\"framer-1p2pdfc\",\"data-framer-name\":\"Inconsistent designs\",fonts:[\"CUSTOM;Biennale Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tfptji\",\"data-border\":true,\"data-framer-name\":\"Frame 1321315030\",style:{rotate:3,transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:\"Cluttered interfaces\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:\"Cluttered interfaces\"})}),className:\"framer-7p2tbz\",\"data-framer-name\":\"Cluttered interfaces\",fonts:[\"CUSTOM;Biennale Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-r52eva\",\"data-border\":true,\"data-framer-name\":\"Frame 1321315031\",style:{rotate:-3,transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-7s2qtm\",\"data-framer-name\":\"#298\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:97,intrinsicWidth:110,style:{rotate:3},svg:'<svg width=\"110\" height=\"97\" viewBox=\"-2 -2 110 97\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.1\">\\n<path d=\"M60.8882 17.4944C49.5366 24.6623 38.0008 31.5503 26.5469 38.5555C18.2127 43.6528 9.41289 48.1117 1.6885 54.0756C-1.52962 56.5602 9.07648 50.6325 12.7396 48.8485C32.1766 39.3824 52.1439 31.9604 72.7667 25.4787C72.964 25.4167 73.4364 25.0945 73.3557 25.2835C73.0495 26.0008 71.9485 25.9733 71.2579 26.3423C65.9861 29.1587 60.718 31.9776 55.4273 34.76C48.7964 38.2473 42.156 41.7208 35.5539 45.2612L35.5442 45.2664C35.2629 45.4162 29.195 48.6473 31.2052 48.1641C38.8628 46.3235 46.5131 43.4612 53.8193 40.6092C55.7778 39.8446 61.5783 37.3946 59.7102 38.3538C54.9894 40.778 50.002 42.6864 45.2387 45.0302C38.719 48.2382 32.3867 51.8045 26.0955 55.4247C23.6854 56.8116 16.4097 60.5182 19.1629 60.0541C20.8388 59.7716 22.383 58.9841 23.9935 58.4506C29.3133 56.6881 33.8364 55.2839 39.398 53.9003C60.3535 48.6868 81.7387 45.883 103.027 42.3485\" stroke=\"#C1441C\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(192, 67, 28)\"},children:\"Poor\"}),\" responsiveness\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(192, 67, 28)\"},children:\"Poor\"}),\" responsiveness\"]})}),className:\"framer-4sy25\",\"data-framer-name\":\"Poor responsiveness\",fonts:[\"CUSTOM;Biennale Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bkj8th\",\"data-border\":true,\"data-framer-name\":\"Frame 1321315032\",style:{rotate:2,transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:\"Lack of visual hierarchy\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:\"Lack of visual hierarchy\"})}),className:\"framer-xuc3q9\",\"data-framer-name\":\"Lack of visual hierarchy\",fonts:[\"CUSTOM;Biennale Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1opwcvo\",\"data-border\":true,\"data-framer-name\":\"Frame 1321315033\",style:{rotate:-3,transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-4639cq\",\"data-framer-name\":\"#299\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:50,intrinsicWidth:106,style:{rotate:3},svg:'<svg width=\"106\" height=\"50\" viewBox=\"-2 -2 106 50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.1\">\\n<path d=\"M49.0661 10.9169C44.3727 14.525 15.9656 37.0231 2.9218 43.962C2.30017 44.2927 0.189087 44.2088 0.426774 43.7382C1.83572 40.9482 11.7189 33.7742 14.0809 32.0996C25.723 23.8455 38.2969 15.9813 50.8482 8.19912C53.5938 6.49677 56.3281 4.78723 59.1558 3.13125C60.9072 2.10559 64.5063 -0.859142 65.1329 0.541357C65.443 1.23433 64.6778 1.95228 64.3104 2.63565C62.6564 5.71178 60.0844 9.13531 57.8672 12.004C53.062 18.2212 47.8067 24.338 42.1568 30.3091C39.4455 33.1745 36.6086 36.0562 33.0266 38.5903C27.8564 42.2481 33.3645 35.7163 33.5201 35.5208C41.2985 25.7563 53.2952 16.5778 66.778 9.27024C68.4236 8.37832 70.1742 7.54988 71.9874 6.77627C73.0779 6.31101 75.0527 5.16265 75.7162 5.84903C76.6581 6.82343 71.8421 12.6803 71.8229 12.7074C64.809 22.6197 56.5208 32.2728 47.0097 41.452C46.371 42.0685 45.7563 42.6944 45.063 43.2905C44.2143 44.0203 44.0893 43.9373 44.405 43.1306C45.6694 39.8997 47.6078 36.6501 49.6692 33.5704C52.529 29.2982 55.9233 25.1873 59.8961 21.2285C61.4938 19.6365 64.0973 16.5717 67.0522 15.4092C68.6166 14.7938 68.5519 16.2433 68.4779 16.5923C67.8928 19.3526 66.2304 22.212 64.6394 24.8096C61.9568 29.1893 58.4753 33.384 54.7964 37.5032C52.4633 40.1156 50.0146 43.2258 46.7081 45.5287C45.3605 46.4673 48.1129 43.2141 49.0661 42.1235C54.0306 36.4425 60.7585 31.4871 67.4909 26.4882C72.1201 23.0509 76.7328 19.3987 82.0223 16.2725C82.5711 15.9482 84.3814 15.2759 84.1609 15.713C82.9416 18.1302 80.4234 20.6131 78.5128 22.8272C74.9427 26.9646 71.149 31.0316 67.2715 35.0732C65.902 36.5007 60.9472 40.3081 63.2685 39.3897C65.0623 38.68 67.1817 36.724 68.4231 35.8566C78.7359 28.6506 89.3144 21.7898 101.599 15.729\" stroke=\"#C1441C\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(192, 67, 28)\"},children:[\"Misaligned\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:\" elements\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(192, 67, 28)\"},children:[\"Misaligned\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:\" elements\"})]})}),className:\"framer-mavjx4\",\"data-framer-name\":\"Misaligned elements\",fonts:[\"CUSTOM;Biennale Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1n4c7ao\",\"data-border\":true,\"data-framer-name\":\"Frame 1321315034\",style:{rotate:4,transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:\"Weak aesthetic appeal\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:\"Weak aesthetic appeal\"})}),className:\"framer-ozff2z\",\"data-framer-name\":\"Weak aesthetic appeal\",fonts:[\"CUSTOM;Biennale Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hpxfm2\",\"data-framer-name\":\"right column green\",id:elementId3,ref:ref13,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mq0wo9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-8cqlmb\",\"data-styles-preset\":\"f5krt1lEn\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(13, 139, 94)\"},children:\"This could be your work...\"})}),className:\"framer-i3mcvt\",\"data-framer-name\":\"This could be your work...\",effect:getTextEffect1(ref13),fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aj65qb\",\"data-framer-name\":\"Frame 1321315036\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref13,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wym61r\",\"data-border\":true,\"data-framer-name\":\"Frame 1321315028\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-490rfe\",\"data-framer-name\":\"#308\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:53,intrinsicWidth:129,svg:'<svg width=\"129\" height=\"53\" viewBox=\"-2 -2 129 53\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.2\">\\n<path d=\"M96.8468 7.32799C64.6846 1.74864 7.51799 8.47831 2.47981 27.8334C-3.8179 52.0273 120.002 46.9893 123.069 25.1178C124.525 14.7307 105.104 8.42754 88.3318 9.26646\" stroke=\"#0D8B5E\" stroke-width=\"2\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(13, 139, 94)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:\"Design \"}),\"consistency\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(13, 139, 94)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:\"Design \"}),\"consistency\"]})}),className:\"framer-10nbgua\",\"data-framer-name\":\"Design consistency\",fonts:[\"CUSTOM;Biennale Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref13,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mqyl46\",\"data-border\":true,\"data-framer-name\":\"Frame 1321315030\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:\"Organized layouts\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:\"Organized layouts\"})}),className:\"framer-12ae0kc\",\"data-framer-name\":\"Organized layouts\",fonts:[\"CUSTOM;Biennale Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref13,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wic3wt\",\"data-border\":true,\"data-framer-name\":\"Frame 1321315031\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-m9y0q5\",\"data-framer-name\":\"#309\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:58,intrinsicWidth:125,svg:'<svg width=\"125\" height=\"58\" viewBox=\"-2 -2 125 58\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.2\">\\n<path d=\"M118.368 33.1619C120.574 9.03369 8.19579 -6.93571 2.8467 20.8969C-2.50238 48.7294 87.9453 55.4591 108.965 39.7052C129.985 23.9512 97.7774 11.275 56.9367 5.58672\" stroke=\"#0D8B5E\" stroke-width=\"2\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(13, 139, 94)\"},children:[\"Responsive\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:\" design\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(13, 139, 94)\"},children:[\"Responsive\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:\" design\"})]})}),className:\"framer-albuym\",\"data-framer-name\":\"Responsive design\",fonts:[\"CUSTOM;Biennale Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref13,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-t3zlux\",\"data-border\":true,\"data-framer-name\":\"Frame 1321315032\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:\"Effective visual hierarchy\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:\"Effective visual hierarchy\"})}),className:\"framer-11irbcn\",\"data-framer-name\":\"Effective visual hierarchy\",fonts:[\"CUSTOM;Biennale Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref13,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19pyxul\",\"data-border\":true,\"data-framer-name\":\"Frame 1321315033\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1q0t8zh\",\"data-framer-name\":\"#308\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:58,intrinsicWidth:146,svg:'<svg width=\"146\" height=\"58\" viewBox=\"-2 -2 146 58\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.2\">\\n<path d=\"M110.433 8.12332C73.5143 2.06654 7.83611 9.70449 1.98281 31.1198C-5.33381 57.889 136.889 51.8903 140.487 27.6999C142.195 16.2114 119.912 9.31032 100.647 10.2959\" stroke=\"#0D8B5E\" stroke-width=\"2\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(13, 139, 94)\"},children:[\"Pixel-perfect\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:\" alignment\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(13, 139, 94)\"},children:[\"Pixel-perfect\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:\" alignment\"})]})}),className:\"framer-25z39e\",\"data-framer-name\":\"Pixel-perfect alignment\",fonts:[\"CUSTOM;Biennale Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref13,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4rkzq4\",\"data-border\":true,\"data-framer-name\":\"Frame 1321315034\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:\"Enhanced professional aesthetics\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(58, 58, 58)\"},children:\"Enhanced professional aesthetics\"})}),className:\"framer-1m63ny1\",\"data-framer-name\":\"Enhanced professional aesthetics\",fonts:[\"CUSTOM;Biennale Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bzeqdo\",\"data-framer-name\":\"Testimonial_Highlight\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18i32xe\",\"data-framer-name\":\"Testimonial_Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-quzeo9\",\"data-framer-name\":\"Testimonial_User\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Daniel, student from Supercharge Design\",fit:\"fit\",intrinsicHeight:97,intrinsicWidth:96,pixelHeight:1065,pixelWidth:1065,positionX:\"center\",positionY:\"center\",sizes:\"96px\",src:\"https://framerusercontent.com/images/RoahxQNzLM0mqU363rWJlsqZw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RoahxQNzLM0mqU363rWJlsqZw.png?scale-down-to=512 512w,https://framerusercontent.com/images/RoahxQNzLM0mqU363rWJlsqZw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RoahxQNzLM0mqU363rWJlsqZw.png 1065w\"},className:\"framer-1r3ykbx\",\"data-framer-name\":\"Testimonial_Avatar\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eosedy\",\"data-framer-name\":\"Testimonial_User_Info\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJsYWNr\",\"--framer-font-family\":'\"Biennale Black\", \"Biennale Black Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(56, 58, 71)\"},children:\"Dana\"})}),className:\"framer-d4c190\",\"data-framer-name\":\"Petra\",fonts:[\"CUSTOM;Biennale Black\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(172, 174, 183)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/danadesign.se\",nodeId:\"WpYRn2Dmy\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1qxwolz\",\"data-styles-preset\":\"Lz92TZ4jj\",children:\"@danadesign.se\"})})})}),className:\"framer-1hrs6nn\",\"data-framer-name\":\"@uxui.with.petra\",fonts:[\"CUSTOM;Biennale Regular\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m2atb1\",\"data-framer-name\":\"Testimonial_Bubble\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{style:{rotate:90}}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1web6zy\",\"data-framer-name\":\"Caret\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-18n3m71\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 36\"><path d=\"M 17.5 0.5 L 4.243 13.757 C 1.899 16.101 1.899 19.899 4.243 22.243 L 17.5 35.5 L 17.5 0.5\" fill=\"rgb(247, 247, 247)\"></path></svg>',svgContentId:11407144708,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-s8i137\",\"data-styles-preset\":\"jtE9a8MQM\",style:{\"--framer-text-color\":\"var(--token-4b8c49e9-929d-4638-b308-b86574102ec6, rgb(14, 10, 27))\"},children:[\"Andrija\u2019s enthusiasm and deep knowledge \",/*#__PURE__*/_jsx(\"strong\",{children:\"make every minute exciting\"}),\" and educational.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-s8i137\",\"data-styles-preset\":\"jtE9a8MQM\",style:{\"--framer-text-color\":\"var(--token-4b8c49e9-929d-4638-b308-b86574102ec6, rgb(14, 10, 27))\"},children:[\"The mix of theory, hands-on practice, and detailed Figma demos makes learning \",/*#__PURE__*/_jsx(\"strong\",{children:\"effective and engaging.\"})]})]}),className:\"framer-1ue5xau\",\"data-framer-name\":\"This was the most insightful masterclass I\u2019ve ever taken! Andrija is such a lovely mentor. You can really feel that he\u2019s talking from experience and knowledge with the purpose of you to understand it.\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sh8iwr\",\"data-framer-name\":\"Syllabus\",id:elementId4,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j7xrod\",\"data-framer-name\":\"Syllabus Switcher\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-16959a1\",\"data-styles-preset\":\"SgWJ3LhP0\",style:{\"--framer-text-color\":\"var(--token-90bcb052-e0bd-4394-9b0b-8857307bbc04, rgb(14, 10, 27))\"},children:\"Syllabus\"})}),className:\"framer-1xj68oo\",\"data-framer-name\":\"Syllabus\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"263px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-fn7n3l-container\",children:/*#__PURE__*/_jsx(SegmentedControlLightWithTogglePeriodWithMappedReactProps1sikimv,{height:\"100%\",id:\"PpenzjSge\",kRrRgLoaR:\"0px\",layoutId:\"PpenzjSge\",style:{height:\"100%\",width:\"100%\"},V41e7RRTY:\"0px\",variant:\"WRa58ouS0\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ru49z6\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ii3sgf-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{gap:32,paddingLeft:120,paddingRight:120},JzFPzPkCn:{paddingLeft:96,paddingRight:96,sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:3,widthInset:0,widthType:\"columns\"}},UqsXmKWpT:{gap:24,paddingLeft:24,paddingRight:24,sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"}},yv6tABt87:{gap:40,paddingLeft:48,paddingRight:48,sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"columns\"}}},children:/*#__PURE__*/_jsx(CarouselWithTogglePeriod,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:.3,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:8},gap:48,height:\"100%\",id:\"cGSP7gu2O\",layoutId:\"cGSP7gu2O\",padding:24,paddingBottom:48,paddingLeft:160,paddingPerSide:true,paddingRight:160,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"rgba(0, 0, 0, 0.5)\",dotsGap:10,dotsInset:0,dotSize:10,dotsOpacity:.3,dotsPadding:0,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:4,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:520,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c99d9x-container\",\"data-framer-name\":\"Syllabus Colors 1\",name:\"Syllabus Colors 1\",children:/*#__PURE__*/_jsx(SyllabusCardBWWithSyllabusCardWithMappedReactProps15131rd,{AgYPGK9uO:\"Lesson Name\",b8pJoOULr:\"Folder\",bNuFXjQWd:true,bP84Tbv0_:\"AcademicCap\",C94cL2SRZ:\"AcademicCap\",cp4ifVyP0:true,d49UG4_Cy:\"2023 Figma Features Update\",DgJkQ0X6e:\"Module 1\",DiZKyr4I6:\"AcademicCap\",dYELysLPv:\"AcademicCap\",E6D8hoCvg:\"AcademicCap\",eItVmIqiK:\"AcademicCap\",EjtfC_1Vy:\"Using Plugins in Figma\",f7_N0QFxn:false,F93ngiY6_:false,GIrxrVfkj:\"Assignments File\",gQSM0Hvmg:\"0px\",h6HbZFE_Q:false,height:\"100%\",hXpRw5e76:\"Exclusive Student Discounts and Perks\",id:\"wpCSGQvK1\",in4XvooTx:false,j77fkCMFM:\"Course Overview\",JCSy75cdk:false,JEKPgu4XS:\"AcademicCap\",jFT6sIkgU:\"AcademicCap\",JTgc7UHwY:false,kA2Wg_zw0:false,kgD_89cjD:true,KqGTRYlZ8:\"AcademicCap\",KSOf674tj:true,l_bmflObi:\"Test Your Knowledge Assignments Solutions\",L_fQVazfm:\"VideoCamera\",L1wR64WGg:\"Figma Demo File (Practical Demo Lessons)\",layoutId:\"wpCSGQvK1\",LdCm4xlzz:\"Lesson Name\",lI_oCpaJY:\"Lesson Name\",LMe5YI1fH:\"9 min\",LnjoM_yZq:\"Introduction\",lWiBv71nU:\"Folder\",lY9bUuvSY:false,m9IwyYWt8:\"Lesson Name\",mgrnG0LLd:\"Set Yourself Up for Success\",mIP1v4bE9:\"Lessons\",mRTTXL3P3:false,name:\"Syllabus Colors 1\",nnMcGctIp:\"VideoCamera\",nths8wwGD:0,NwqZxEL0w:\"AcademicCap\",O2QLvAtLT:\"Figma Demo File (Practical Demo Lessons)\",omqqbzn4H:\"AcademicCap\",onBSNZ7rL:\"Lesson Name\",ooq3QajnB:\"Exclusive Student Discounts and Perks\",opk861KEm:\"AcademicCap\",OzI5AJKfm:addImageAlt({src:\"https://framerusercontent.com/images/ClGhvGhrwNGgGiG63QTDY9a2Bi8.jpg\",srcSet:\"https://framerusercontent.com/images/ClGhvGhrwNGgGiG63QTDY9a2Bi8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ClGhvGhrwNGgGiG63QTDY9a2Bi8.jpg 680w\"},\"Module Thumbnail from The Ultimate UI Colors Masterclass\"),P0oXGzgRN:false,PbwrbDgP6:false,peWg81uXf:false,pfZQ1m_Bq:\"AcademicCap\",Pj4hTA1hN:false,PXMlqTfd9:\"Lesson Name\",Qe2lMqcyW:\"Lesson Name\",qfsV7tllg:\"AcademicCap\",R8ulvomYc:true,rFAwrizFw:\"Lesson Name\",rxJmf_Jdb:true,S2q4XRgh3:\"Module Assignments Solutions\",s63EQmbey:\"Lesson Name\",SfjmK0Tf0:false,style:{width:\"100%\"},tcQJKZv2z:\"AcademicCap\",tkdPv7sUl:\"100+ Must-know Figma Shortcuts\",TuWATRPZF:\"Folder\",UDqXjES14:\"Sparkles\",uUg9uHJR5:\"Lesson Name\",UWBBfqg_A:\"AcademicCap\",ux7PULnFu:false,variant:\"dxavS96Wk\",voHGrFmN_:\"UI Basics Kit for Any Type of Project\",VPKKuSRle:\"AcademicCap\",W7ukG3F9B:false,width:\"100%\",WS_l_8y2j:\"Welcome\",WZsmud4v9:\"AcademicCap\",X5DnABREv:false,xnIoyVf2Z:false,xRnK6F7pY:\"100+ Must-have Figma Plugins\",yDCYcZSZ4:\"VideoCamera\",yrV_jYfpY:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:520,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-43pacq-container\",\"data-framer-name\":\"Syllabus Colors 2\",name:\"Syllabus Colors 2\",children:/*#__PURE__*/_jsx(SyllabusCardBWWithSyllabusCardWithMappedReactProps15131rd,{AgYPGK9uO:\"Lesson Name\",b8pJoOULr:\"VideoCamera\",bNuFXjQWd:true,bP84Tbv0_:\"AcademicCap\",C94cL2SRZ:\"AcademicCap\",cp4ifVyP0:true,d49UG4_Cy:\"Lesson Name\",DgJkQ0X6e:\"Module 2\",DiZKyr4I6:\"AcademicCap\",dYELysLPv:\"AcademicCap\",E6D8hoCvg:\"AcademicCap\",eItVmIqiK:\"AcademicCap\",EjtfC_1Vy:\"Module Quiz \\xb7 Test Your Knowledge\",f7_N0QFxn:false,F93ngiY6_:false,GIrxrVfkj:\"Types of grids\",gQSM0Hvmg:\"0px\",h6HbZFE_Q:false,height:\"100%\",hXpRw5e76:\"Bonus Files\",id:\"cpvB61j4c\",in4XvooTx:false,j77fkCMFM:\"Historical Overview of Grids and Layouts\",JCSy75cdk:false,JEKPgu4XS:\"AcademicCap\",jFT6sIkgU:\"AcademicCap\",JTgc7UHwY:true,kA2Wg_zw0:false,kgD_89cjD:true,KqGTRYlZ8:\"AcademicCap\",KSOf674tj:true,l_bmflObi:\"Lesson Name\",L_fQVazfm:\"VideoCamera\",L1wR64WGg:\"Basics of Grids in Figma (Demo)\",layoutId:\"cpvB61j4c\",LdCm4xlzz:\"Lesson Name\",lI_oCpaJY:\"Lesson Name\",LMe5YI1fH:\"1 hr 43 min\",LnjoM_yZq:\"Foundations\",lWiBv71nU:\"VideoCamera\",lY9bUuvSY:false,m9IwyYWt8:\"Lesson Name\",mgrnG0LLd:\"Grids and Layouts Dictionary\",mIP1v4bE9:\"Lessons\",mRTTXL3P3:false,name:\"Syllabus Colors 2\",nnMcGctIp:\"VideoCamera\",nths8wwGD:0,NwqZxEL0w:\"AcademicCap\",O2QLvAtLT:\"Types of layouts\",omqqbzn4H:\"AcademicCap\",onBSNZ7rL:\"Lesson Name\",ooq3QajnB:\"Everything\u2019s a \u201Cbox\u201D\",opk861KEm:\"VideoCamera\",OzI5AJKfm:addImageAlt({src:\"https://framerusercontent.com/images/GHzrhkeh74FyAmwmlb8p2xNFCw.jpg\",srcSet:\"https://framerusercontent.com/images/GHzrhkeh74FyAmwmlb8p2xNFCw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GHzrhkeh74FyAmwmlb8p2xNFCw.jpg 680w\"},\"Module Thumbnail from The Ultimate UI Colors Masterclass\"),P0oXGzgRN:false,PbwrbDgP6:true,peWg81uXf:false,pfZQ1m_Bq:\"VideoCamera\",Pj4hTA1hN:true,PXMlqTfd9:\"Lesson Name\",Qe2lMqcyW:\"Lesson Name\",qfsV7tllg:\"AcademicCap\",R8ulvomYc:true,rFAwrizFw:\"Lesson Name\",rxJmf_Jdb:true,S2q4XRgh3:\"Module Quiz\",s63EQmbey:\"Lesson Name\",SfjmK0Tf0:false,style:{width:\"100%\"},tcQJKZv2z:\"BookOpen\",tkdPv7sUl:\"UI Design Grids & Layouts Glossary\",TuWATRPZF:\"VideoCamera\",UDqXjES14:\"VideoCamera\",uUg9uHJR5:\"Lesson Name\",UWBBfqg_A:\"AcademicCap\",ux7PULnFu:false,variant:\"dxavS96Wk\",voHGrFmN_:\"Auto-layout Basics (Demo)\",VPKKuSRle:\"AcademicCap\",W7ukG3F9B:false,width:\"100%\",WS_l_8y2j:\"Grids and Layouts 101\",WZsmud4v9:\"AcademicCap\",X5DnABREv:true,xnIoyVf2Z:true,xRnK6F7pY:\"Psychology Behind a Great Layout\",yDCYcZSZ4:\"VideoCamera\",yrV_jYfpY:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:520,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lnrt7i-container\",\"data-framer-name\":\"Syllabus Colors 3\",name:\"Syllabus Colors 3\",children:/*#__PURE__*/_jsx(SyllabusCardBWWithSyllabusCardWithMappedReactProps15131rd,{AgYPGK9uO:\"Lesson Name\",b8pJoOULr:\"VideoCamera\",bNuFXjQWd:true,bP84Tbv0_:\"AcademicCap\",C94cL2SRZ:\"AcademicCap\",cp4ifVyP0:true,d49UG4_Cy:\"Lesson Name\",DgJkQ0X6e:\"Module 3\",DiZKyr4I6:\"AcademicCap\",dYELysLPv:\"AcademicCap\",E6D8hoCvg:\"AcademicCap\",eItVmIqiK:\"AcademicCap\",EjtfC_1Vy:\"Lesson Name\",f7_N0QFxn:false,F93ngiY6_:false,GIrxrVfkj:\"Composition\",gQSM0Hvmg:\"0px\",h6HbZFE_Q:false,height:\"100%\",hXpRw5e76:\"Lesson Name\",id:\"vA_U90eJH\",in4XvooTx:false,j77fkCMFM:\"How to Achieve Visual Hierarchy\",JCSy75cdk:false,JEKPgu4XS:\"AcademicCap\",jFT6sIkgU:\"AcademicCap\",JTgc7UHwY:true,kA2Wg_zw0:false,kgD_89cjD:true,KqGTRYlZ8:\"AcademicCap\",KSOf674tj:true,l_bmflObi:\"Lesson Name\",L_fQVazfm:\"VideoCamera\",L1wR64WGg:\"Module Quiz \\xb7 Test Your Knowledge\",layoutId:\"vA_U90eJH\",LdCm4xlzz:\"Lesson Name\",lI_oCpaJY:\"Lesson Name\",LMe5YI1fH:\"30 min\",LnjoM_yZq:\"Visual Hierarchy and Composition\",lWiBv71nU:\"VideoCamera\",lY9bUuvSY:false,m9IwyYWt8:\"Lesson Name\",mgrnG0LLd:\"Alignment\",mIP1v4bE9:\"Lessons\",mRTTXL3P3:false,name:\"Syllabus Colors 3\",nnMcGctIp:\"VideoCamera\",nths8wwGD:0,NwqZxEL0w:\"AcademicCap\",O2QLvAtLT:\"Visual Storytelling\",omqqbzn4H:\"AcademicCap\",onBSNZ7rL:\"Lesson Name\",ooq3QajnB:\"Whitespace\",opk861KEm:\"AcademicCap\",OzI5AJKfm:addImageAlt({src:\"https://framerusercontent.com/images/jz6UtHK3LTtrOEovSVTIMCKtb4Q.jpg\",srcSet:\"https://framerusercontent.com/images/jz6UtHK3LTtrOEovSVTIMCKtb4Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jz6UtHK3LTtrOEovSVTIMCKtb4Q.jpg 680w\"},\"Module Thumbnail from The Ultimate UI Colors Masterclass\"),P0oXGzgRN:false,PbwrbDgP6:false,peWg81uXf:false,pfZQ1m_Bq:\"AcademicCap\",Pj4hTA1hN:false,PXMlqTfd9:\"Lesson Name\",Qe2lMqcyW:\"Lesson Name\",qfsV7tllg:\"AcademicCap\",R8ulvomYc:true,rFAwrizFw:\"Lesson Name\",rxJmf_Jdb:true,S2q4XRgh3:\"Lesson Name\",s63EQmbey:\"Lesson Name\",SfjmK0Tf0:false,style:{width:\"100%\"},tcQJKZv2z:\"AcademicCap\",tkdPv7sUl:\"Module Quiz\",TuWATRPZF:\"AcademicCap\",UDqXjES14:\"VideoCamera\",uUg9uHJR5:\"Lesson Name\",UWBBfqg_A:\"AcademicCap\",ux7PULnFu:false,variant:\"dxavS96Wk\",voHGrFmN_:\"Gray and Almost Greys (Demo) \u2013 Part 2\",VPKKuSRle:\"AcademicCap\",W7ukG3F9B:false,width:\"100%\",WS_l_8y2j:\"Visual Hierarchy\",WZsmud4v9:\"AcademicCap\",X5DnABREv:false,xnIoyVf2Z:false,xRnK6F7pY:\"You Need More Shades Than You Think\",yDCYcZSZ4:\"VideoCamera\",yrV_jYfpY:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:520,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rjv140-container\",\"data-framer-name\":\"Syllabus Colors 4\",name:\"Syllabus Colors 4\",children:/*#__PURE__*/_jsx(SyllabusCardBWWithSyllabusCardWithMappedReactProps15131rd,{AgYPGK9uO:\"Lesson Name\",b8pJoOULr:\"AcademicCap\",bNuFXjQWd:true,bP84Tbv0_:\"AcademicCap\",C94cL2SRZ:\"AcademicCap\",cp4ifVyP0:true,d49UG4_Cy:\"Module Quiz\",DgJkQ0X6e:\"Module 4\",DiZKyr4I6:\"AcademicCap\",dYELysLPv:\"AcademicCap\",E6D8hoCvg:\"AcademicCap\",eItVmIqiK:\"AcademicCap\",EjtfC_1Vy:\"Dark UI (Demo)\",f7_N0QFxn:false,F93ngiY6_:false,GIrxrVfkj:\"Front-end Perspective on Responsive Design\",gQSM0Hvmg:\"0px\",h6HbZFE_Q:false,height:\"100%\",hXpRw5e76:\"Common Mistakes\",id:\"W_BattXLT\",in4XvooTx:false,j77fkCMFM:\"Screens and units\",JCSy75cdk:false,JEKPgu4XS:\"AcademicCap\",jFT6sIkgU:\"AcademicCap\",JTgc7UHwY:false,kA2Wg_zw0:false,kgD_89cjD:true,KqGTRYlZ8:\"AcademicCap\",KSOf674tj:true,l_bmflObi:\"Bonus Files\",L_fQVazfm:\"VideoCamera\",L1wR64WGg:\"Gradients\",layoutId:\"W_BattXLT\",LdCm4xlzz:\"Lesson Name\",lI_oCpaJY:\"Lesson Name\",LMe5YI1fH:\"33 min\",LnjoM_yZq:\"Responsive Design\",lWiBv71nU:\"Microphone\",lY9bUuvSY:false,m9IwyYWt8:\"Lesson Name\",mgrnG0LLd:\"Mobile-first Approach\",mIP1v4bE9:\"Lessons\",mRTTXL3P3:false,name:\"Syllabus Colors 4\",nnMcGctIp:\"VideoCamera\",nths8wwGD:0,NwqZxEL0w:\"AcademicCap\",O2QLvAtLT:\"Module Quiz \\xb7 Test Your Knowledge\",omqqbzn4H:\"AcademicCap\",onBSNZ7rL:\"Lesson Name\",ooq3QajnB:\"How to Design Responsively\",opk861KEm:\"AcademicCap\",OzI5AJKfm:addImageAlt({src:\"https://framerusercontent.com/images/p5MuOAiasB5jNxqpjL10t8ySu1k.jpg\",srcSet:\"https://framerusercontent.com/images/p5MuOAiasB5jNxqpjL10t8ySu1k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/p5MuOAiasB5jNxqpjL10t8ySu1k.jpg 680w\"},\"Module Thumbnail from The Ultimate UI Colors Masterclass\"),P0oXGzgRN:false,PbwrbDgP6:false,peWg81uXf:false,pfZQ1m_Bq:\"AcademicCap\",Pj4hTA1hN:false,PXMlqTfd9:\"Lesson Name\",Qe2lMqcyW:\"Lesson Name\",qfsV7tllg:\"AcademicCap\",R8ulvomYc:true,rFAwrizFw:\"Lesson Name\",rxJmf_Jdb:true,S2q4XRgh3:\"Breaking the Rules\",s63EQmbey:\"Lesson Name\",SfjmK0Tf0:false,style:{width:\"100%\"},tcQJKZv2z:\"AcademicCap\",tkdPv7sUl:\"Dark UI\",TuWATRPZF:\"AcademicCap\",UDqXjES14:\"VideoCamera\",uUg9uHJR5:\"Lesson Name\",UWBBfqg_A:\"AcademicCap\",ux7PULnFu:false,variant:\"dxavS96Wk\",voHGrFmN_:\"Gradients (Demo)\",VPKKuSRle:\"AcademicCap\",W7ukG3F9B:false,width:\"100%\",WS_l_8y2j:\"Responsive Design 101\",WZsmud4v9:\"AcademicCap\",X5DnABREv:false,xnIoyVf2Z:false,xRnK6F7pY:\"Hard Colors to Work With (Demo)\",yDCYcZSZ4:\"VideoCamera\",yrV_jYfpY:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:520,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-nlrdgk-container\",\"data-framer-name\":\"Syllabus Colors 5\",name:\"Syllabus Colors 5\",children:/*#__PURE__*/_jsx(SyllabusCardBWWithSyllabusCardWithMappedReactProps15131rd,{AgYPGK9uO:\"Lesson Name\",b8pJoOULr:\"VideoCamera\",bNuFXjQWd:true,bP84Tbv0_:\"AcademicCap\",C94cL2SRZ:\"AcademicCap\",cp4ifVyP0:true,d49UG4_Cy:\"Lesson Name\",DgJkQ0X6e:\"Module 5\",DiZKyr4I6:\"AcademicCap\",dYELysLPv:\"AcademicCap\",E6D8hoCvg:\"AcademicCap\",eItVmIqiK:\"AcademicCap\",EjtfC_1Vy:\"Lesson Name\",f7_N0QFxn:false,F93ngiY6_:false,GIrxrVfkj:\"Auto-layout Mastery (Demo) Part 5\",gQSM0Hvmg:\"0px\",h6HbZFE_Q:false,height:\"100%\",hXpRw5e76:\"Lesson Name\",id:\"Uev5PcOv0\",in4XvooTx:false,j77fkCMFM:\"Auto-layout Mastery (Demo) Part 2\",JCSy75cdk:false,JEKPgu4XS:\"AcademicCap\",jFT6sIkgU:\"AcademicCap\",JTgc7UHwY:true,kA2Wg_zw0:false,kgD_89cjD:true,KqGTRYlZ8:\"AcademicCap\",KSOf674tj:true,l_bmflObi:\"Lesson Name\",L_fQVazfm:\"VideoCamera\",L1wR64WGg:\"Practical Web App Grids (Demo)\",layoutId:\"Uev5PcOv0\",LdCm4xlzz:\"Lesson Name\",lI_oCpaJY:\"Lesson Name\",LMe5YI1fH:\"4 hr 3 min\",LnjoM_yZq:\"Practical Grids & Layouts\",lWiBv71nU:\"VideoCamera\",lY9bUuvSY:false,m9IwyYWt8:\"Lesson Name\",mgrnG0LLd:\"Auto-layout Mastery (Demo) Part 3\",mIP1v4bE9:\"Lessons\",mRTTXL3P3:false,name:\"Syllabus Colors 5\",nnMcGctIp:\"VideoCamera\",nths8wwGD:0,NwqZxEL0w:\"AcademicCap\",O2QLvAtLT:\"Practical Mobile App Grids (Demo)\",omqqbzn4H:\"AcademicCap\",onBSNZ7rL:\"Lesson Name\",ooq3QajnB:\"Auto-layout Mastery (Demo) Part 4\",opk861KEm:\"VideoCamera\",OzI5AJKfm:addImageAlt({src:\"https://framerusercontent.com/images/afj3r9OAt8wTYOQazxuUPfbjoz4.jpg\",srcSet:\"https://framerusercontent.com/images/afj3r9OAt8wTYOQazxuUPfbjoz4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/afj3r9OAt8wTYOQazxuUPfbjoz4.jpg 680w\"},\"Module Thumbnail from The Ultimate UI Colors Masterclass\"),P0oXGzgRN:false,PbwrbDgP6:true,peWg81uXf:false,pfZQ1m_Bq:\"VideoCamera\",Pj4hTA1hN:true,PXMlqTfd9:\"Lesson Name\",Qe2lMqcyW:\"Lesson Name\",qfsV7tllg:\"AcademicCap\",R8ulvomYc:true,rFAwrizFw:\"Lesson Name\",rxJmf_Jdb:true,S2q4XRgh3:\"Lesson Name\",s63EQmbey:\"Lesson Name\",SfjmK0Tf0:false,style:{width:\"100%\"},tcQJKZv2z:\"VideoCamera\",tkdPv7sUl:\"Practical Iconography Grids (Demo)\",TuWATRPZF:\"VideoCamera\",UDqXjES14:\"VideoCamera\",uUg9uHJR5:\"Lesson Name\",UWBBfqg_A:\"AcademicCap\",ux7PULnFu:false,variant:\"dxavS96Wk\",voHGrFmN_:\"Practical Responsive Website Grids (Demo) Part 1\",VPKKuSRle:\"AcademicCap\",W7ukG3F9B:false,width:\"100%\",WS_l_8y2j:\"Auto-layout Mastery (Demo) Part 1\",WZsmud4v9:\"AcademicCap\",X5DnABREv:false,xnIoyVf2Z:true,xRnK6F7pY:\"Practical Responsive Website Grids (Demo) Part 2\",yDCYcZSZ4:\"VideoCamera\",yrV_jYfpY:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:520,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iun77g-container\",\"data-framer-name\":\"Syllabus Colors 6\",name:\"Syllabus Colors 6\",children:/*#__PURE__*/_jsx(SyllabusCardBWWithSyllabusCardWithMappedReactProps15131rd,{AgYPGK9uO:\"Lesson Name\",b8pJoOULr:\"AcademicCap\",bNuFXjQWd:true,bP84Tbv0_:\"AcademicCap\",C94cL2SRZ:\"AcademicCap\",cp4ifVyP0:true,d49UG4_Cy:\"Lesson Name\",DgJkQ0X6e:\"Module 6\",DiZKyr4I6:\"AcademicCap\",dYELysLPv:\"AcademicCap\",E6D8hoCvg:\"AcademicCap\",eItVmIqiK:\"AcademicCap\",EjtfC_1Vy:\"UI Grids & Layouts How to Document a Custom UI Grid for Development Example\",f7_N0QFxn:false,F93ngiY6_:false,GIrxrVfkj:\"Grids & Layouts Common Mistakes\",gQSM0Hvmg:\"0px\",h6HbZFE_Q:false,height:\"100%\",hXpRw5e76:\"Lesson Name\",id:\"q1s4a9Qnq\",in4XvooTx:false,j77fkCMFM:\"Custom vs. Premade Grids\",JCSy75cdk:false,JEKPgu4XS:\"BookOpen\",jFT6sIkgU:\"AcademicCap\",JTgc7UHwY:true,kA2Wg_zw0:false,kgD_89cjD:true,KqGTRYlZ8:\"AcademicCap\",KSOf674tj:true,l_bmflObi:\"Lesson Name\",L_fQVazfm:\"AcademicCap\",L1wR64WGg:\"The Future of Grids & Layouts\",layoutId:\"q1s4a9Qnq\",LdCm4xlzz:\"Lesson Name\",lI_oCpaJY:\"Lesson Name\",LMe5YI1fH:\"TBD\",LnjoM_yZq:\"Grids & Layouts Mastery\",lWiBv71nU:\"AcademicCap\",lY9bUuvSY:false,m9IwyYWt8:\"Lesson Name\",mgrnG0LLd:\"Breaking the Grid\",mIP1v4bE9:\"Lessons\",mRTTXL3P3:false,name:\"Syllabus Colors 6\",nnMcGctIp:\"AcademicCap\",nths8wwGD:0,NwqZxEL0w:\"AcademicCap\",O2QLvAtLT:\"Impact on Accessibility and Usability\",omqqbzn4H:\"AcademicCap\",onBSNZ7rL:\"Lesson Name\",ooq3QajnB:\"Grids & Layouts Best Practices\",opk861KEm:\"BookOpen\",OzI5AJKfm:addImageAlt({src:\"https://framerusercontent.com/images/8cj4mpClCMPXSe4UKuLvd5zTVA.jpg\",srcSet:\"https://framerusercontent.com/images/8cj4mpClCMPXSe4UKuLvd5zTVA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8cj4mpClCMPXSe4UKuLvd5zTVA.jpg 680w\"},\"Module Thumbnail from The Ultimate UI Colors Masterclass\"),P0oXGzgRN:false,PbwrbDgP6:true,peWg81uXf:false,pfZQ1m_Bq:\"BookOpen\",Pj4hTA1hN:true,PXMlqTfd9:\"Lesson Name\",Qe2lMqcyW:\"Lesson Name\",qfsV7tllg:\"AcademicCap\",R8ulvomYc:true,rFAwrizFw:\"Lesson Name\",rxJmf_Jdb:true,S2q4XRgh3:\"Lesson Name\",s63EQmbey:\"Lesson Name\",SfjmK0Tf0:false,style:{width:\"100%\"},tcQJKZv2z:\"BookOpen\",tkdPv7sUl:\"UI Grids & Layouts Custom Grid Guide\",TuWATRPZF:\"AcademicCap\",UDqXjES14:\"AcademicCap\",uUg9uHJR5:\"Lesson Name\",UWBBfqg_A:\"AcademicCap\",ux7PULnFu:false,variant:\"dxavS96Wk\",voHGrFmN_:\"UI Grids & Layouts Kickoff Questionnaire\",VPKKuSRle:\"AcademicCap\",W7ukG3F9B:false,width:\"100%\",WS_l_8y2j:\"Analyzing Layouts\",WZsmud4v9:\"AcademicCap\",X5DnABREv:true,xnIoyVf2Z:true,xRnK6F7pY:\"UI Grids & Layouts Common Mistakes Checklist\",yDCYcZSZ4:\"AcademicCap\",yrV_jYfpY:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:520,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bjb3ri-container\",\"data-framer-name\":\"Syllabus Colors 7\",name:\"Syllabus Colors 7\",children:/*#__PURE__*/_jsx(SyllabusCardBWWithSyllabusCardWithMappedReactProps15131rd,{AgYPGK9uO:\"Lesson Name\",b8pJoOULr:\"AcademicCap\",bNuFXjQWd:true,bP84Tbv0_:\"AcademicCap\",C94cL2SRZ:\"AcademicCap\",cp4ifVyP0:false,d49UG4_Cy:\"Lesson Name\",DgJkQ0X6e:\"Module 7\",DiZKyr4I6:\"AcademicCap\",dYELysLPv:\"AcademicCap\",E6D8hoCvg:\"AcademicCap\",eItVmIqiK:\"AcademicCap\",EjtfC_1Vy:\"Lesson Name\",f7_N0QFxn:false,F93ngiY6_:false,GIrxrVfkj:\"Tablet Grids\",gQSM0Hvmg:\"0px\",h6HbZFE_Q:false,height:\"100%\",hXpRw5e76:\"Lesson Name\",id:\"WaAV5fP06\",in4XvooTx:false,j77fkCMFM:\"Congratulations\",JCSy75cdk:false,JEKPgu4XS:\"AcademicCap\",jFT6sIkgU:\"AcademicCap\",JTgc7UHwY:false,kA2Wg_zw0:false,kgD_89cjD:false,KqGTRYlZ8:\"AcademicCap\",KSOf674tj:true,l_bmflObi:\"Lesson Name\",L_fQVazfm:\"VideoCamera\",L1wR64WGg:\"Figma Grids Tips and Tricks\",layoutId:\"WaAV5fP06\",LdCm4xlzz:\"Lesson Name\",lI_oCpaJY:\"Lesson Name\",LMe5YI1fH:\"7 min\",LnjoM_yZq:\"Final Thoughts\",lWiBv71nU:\"AcademicCap\",lY9bUuvSY:false,m9IwyYWt8:\"Lesson Name\",mgrnG0LLd:\"Certificate\",mIP1v4bE9:\"Lessons\",mRTTXL3P3:false,name:\"Syllabus Colors 7\",nnMcGctIp:\"VideoCamera\",nths8wwGD:0,NwqZxEL0w:\"AcademicCap\",O2QLvAtLT:\"Desktop Grids\",omqqbzn4H:\"AcademicCap\",onBSNZ7rL:\"Lesson Name\",ooq3QajnB:\"Certificate\",opk861KEm:\"AcademicCap\",OzI5AJKfm:addImageAlt({src:\"https://framerusercontent.com/images/8dGtOmFmHtlkOImx9NhILg9Jao.jpg\",srcSet:\"https://framerusercontent.com/images/8dGtOmFmHtlkOImx9NhILg9Jao.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8dGtOmFmHtlkOImx9NhILg9Jao.jpg 680w\"},\"Module Thumbnail from The Ultimate UI Colors Masterclass\"),P0oXGzgRN:false,PbwrbDgP6:false,peWg81uXf:false,pfZQ1m_Bq:\"AcademicCap\",Pj4hTA1hN:false,PXMlqTfd9:\"Lesson Name\",Qe2lMqcyW:\"Lesson Name\",qfsV7tllg:\"AcademicCap\",R8ulvomYc:true,rFAwrizFw:\"Lesson Name\",rxJmf_Jdb:false,S2q4XRgh3:\"Lesson Name\",s63EQmbey:\"Lesson Name\",SfjmK0Tf0:false,style:{width:\"100%\"},tcQJKZv2z:\"AcademicCap\",tkdPv7sUl:\"Lesson Name\",TuWATRPZF:\"AcademicCap\",UDqXjES14:\"AcademicCap\",uUg9uHJR5:\"Lesson Name\",UWBBfqg_A:\"AcademicCap\",ux7PULnFu:false,variant:\"dxavS96Wk\",voHGrFmN_:\"Module Assignments Solutions\",VPKKuSRle:\"AcademicCap\",W7ukG3F9B:false,width:\"100%\",WS_l_8y2j:\"Main Takeaways\",WZsmud4v9:\"AcademicCap\",X5DnABREv:false,xnIoyVf2Z:false,xRnK6F7pY:\"Final Module Assignment Guide\",yDCYcZSZ4:\"AcademicCap\",yrV_jYfpY:false})})})],snapObject:{fluid:false,snap:true,snapEdge:\"start\"},style:{width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1575,intrinsicWidth:2621,pixelHeight:1575,pixelWidth:2621,sizes:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,src:\"https://framerusercontent.com/images/wz6QiIZ4p5CVMlW6Sw2W9oOA0OM.svg\",srcSet:\"https://framerusercontent.com/images/wz6QiIZ4p5CVMlW6Sw2W9oOA0OM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/wz6QiIZ4p5CVMlW6Sw2W9oOA0OM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wz6QiIZ4p5CVMlW6Sw2W9oOA0OM.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wz6QiIZ4p5CVMlW6Sw2W9oOA0OM.svg 2621w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1575,intrinsicWidth:2621,pixelHeight:1575,pixelWidth:2621,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/wz6QiIZ4p5CVMlW6Sw2W9oOA0OM.svg\",srcSet:\"https://framerusercontent.com/images/wz6QiIZ4p5CVMlW6Sw2W9oOA0OM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/wz6QiIZ4p5CVMlW6Sw2W9oOA0OM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wz6QiIZ4p5CVMlW6Sw2W9oOA0OM.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wz6QiIZ4p5CVMlW6Sw2W9oOA0OM.svg 2621w\"},className:\"framer-1rbdv5s\",\"data-framer-name\":\"Free Lessons\",id:elementId5,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-crhikp\",\"data-framer-name\":\"card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3sfza1\",\"data-framer-name\":\"title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-16959a1\",\"data-styles-preset\":\"SgWJ3LhP0\",style:{\"--framer-text-color\":\"var(--token-4b8c49e9-929d-4638-b308-b86574102ec6, rgb(14, 10, 27))\"},children:\"Watch 3 free lessons!\"})}),className:\"framer-uzsyq0\",\"data-framer-name\":\"Preview course with\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-s8i137\",\"data-styles-preset\":\"jtE9a8MQM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b8c49e9-929d-4638-b308-b86574102ec6, rgb(14, 10, 27))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Get a taste of what's in store\"}),\" by signing up for our exclusive 3 free lessons from The Ultimate UI Grids & Layouts Masterclass.\"]})}),className:\"framer-1qqwpe0\",\"data-framer-name\":\"Get a taste of what's in store by signing up for our exclusive 3 free lessons from The Ultimate UI Colors Masterclass. Don't miss out\u2014unlock the world of color excellence today!\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/57e9f061-edb7-4474-be2b-b27eec0b56b0/submit\",className:\"framer-11zj6av\",id:\"11zj6av\",onLoading:onLoading3bnx0g({overlay}),children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-14mylst\",inputName:\"Name\",placeholder:\"First Name\",required:true,type:\"text\"}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-nvsilw\",inputName:\"Email\",placeholder:\"Email address\",required:true,type:\"email\"}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1lz2pft\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w8h8dm\",children:/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-1wf95h5\",defaultChecked:false,inputName:\"Newsletter\",type:\"checkbox\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13z0yt7\",\"data-styles-preset\":\"h_OXANf6F\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b8c49e9-929d-4638-b308-b86574102ec6, rgb(14, 10, 27))\"},children:\"Join newsletter? We wont spam you and you can unsubscribe at any time.\"})}),className:\"framer-12txvej\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{width:`calc(min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 272px) / 2, 1px), 800px) - 128px)`},JzFPzPkCn:{width:`calc(min(max((${componentViewport?.width||\"100vw\"} - 312px) / 2, 1px), 640px) - 128px)`},UqsXmKWpT:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 32px, 800px) - 64px)`},yv6tABt87:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 96px, 640px) - 128px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`calc(min(max((${componentViewport?.width||\"100vw\"} - 448px) / 2, 1px), 800px) - 128px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-528k75-container\",children:/*#__PURE__*/_jsx(FormButtonsGrids,{dOrkaB52f:\"Get Free Lessons\",FoZgQpKIz:\"Thank you\",height:\"100%\",id:\"lbNPYX2nB\",layoutId:\"lbNPYX2nB\",owvtFx4R6:\"0px\",style:{width:\"100%\"},SXCbKDSo7:\"Something went wrong\",type:\"submit\",variant:formVariants(formState,{pending:\"S2phNVXtG\",success:\"HtawhlF70\"},\"hNooZcEeY\"),width:\"100%\"})})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-u8q6ay\"),\"data-framer-portal-id\":\"11zj6av\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"Z1zaXolsO\"),/*#__PURE__*/_jsxs(\"div\",{className:cx(scopingClassNames,\"framer-isg2jn\"),\"data-framer-portal-id\":\"11zj6av\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-nhnclj\",\"data-styles-preset\":\"Fdy6zEfHM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-00e8397f-a2ab-4d76-9c28-77f8efb143bc, rgb(255, 255, 255))\"},children:\"Thank you for signing up! Here's your free lessons.\"})}),className:\"framer-miuudk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-57q03o\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://learn.supercharge.design/courses/the-ultimate-ui-grids-layouts-masterclass/lectures/54254915\",nodeId:\"enLr8quYc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{background:{alt:\"\",fit:\"fill\",sizes:\"254px\",src:\"https://framerusercontent.com/images/2v8ezDy7I79eHgTl8O0bNz5EWk.jpg?lossless=1\",srcSet:\"https://framerusercontent.com/images/2v8ezDy7I79eHgTl8O0bNz5EWk.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/2v8ezDy7I79eHgTl8O0bNz5EWk.jpg?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/2v8ezDy7I79eHgTl8O0bNz5EWk.jpg?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/2v8ezDy7I79eHgTl8O0bNz5EWk.jpg?lossless=1 3840w\"}},yv6tABt87:{background:{alt:\"\",fit:\"fill\",sizes:\"332px\",src:\"https://framerusercontent.com/images/2v8ezDy7I79eHgTl8O0bNz5EWk.jpg?lossless=1\",srcSet:\"https://framerusercontent.com/images/2v8ezDy7I79eHgTl8O0bNz5EWk.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/2v8ezDy7I79eHgTl8O0bNz5EWk.jpg?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/2v8ezDy7I79eHgTl8O0bNz5EWk.jpg?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/2v8ezDy7I79eHgTl8O0bNz5EWk.jpg?lossless=1 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",sizes:\"max((100vw - 320px) / 3, 1px)\",src:\"https://framerusercontent.com/images/2v8ezDy7I79eHgTl8O0bNz5EWk.jpg?lossless=1\",srcSet:\"https://framerusercontent.com/images/2v8ezDy7I79eHgTl8O0bNz5EWk.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/2v8ezDy7I79eHgTl8O0bNz5EWk.jpg?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/2v8ezDy7I79eHgTl8O0bNz5EWk.jpg?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/2v8ezDy7I79eHgTl8O0bNz5EWk.jpg?lossless=1 3840w\"},className:\"framer-oo646e framer-jxbss8\",\"data-framer-name\":\"free-lesson-preview-1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-kws5ap\",\"data-framer-name\":\"Video Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1haklb\",\"data-styles-preset\":\"wXvPB6QR8\",style:{\"--framer-text-alignment\":\"right\"},children:\"Course Overview\"})}),className:\"framer-7na4zb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://learn.supercharge.design/courses/the-ultimate-ui-grids-layouts-masterclass/lectures/54275149\",nodeId:\"zNTFxHEVG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{background:{alt:\"\",fit:\"fill\",sizes:\"254px\",src:\"https://framerusercontent.com/images/U1Rkc9zCIQXEaPedRuzZyWNg4.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/U1Rkc9zCIQXEaPedRuzZyWNg4.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/U1Rkc9zCIQXEaPedRuzZyWNg4.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/U1Rkc9zCIQXEaPedRuzZyWNg4.png?lossless=1 1840w\"}},yv6tABt87:{background:{alt:\"\",fit:\"fill\",sizes:\"332px\",src:\"https://framerusercontent.com/images/U1Rkc9zCIQXEaPedRuzZyWNg4.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/U1Rkc9zCIQXEaPedRuzZyWNg4.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/U1Rkc9zCIQXEaPedRuzZyWNg4.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/U1Rkc9zCIQXEaPedRuzZyWNg4.png?lossless=1 1840w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",sizes:\"max((100vw - 320px) / 3, 1px)\",src:\"https://framerusercontent.com/images/U1Rkc9zCIQXEaPedRuzZyWNg4.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/U1Rkc9zCIQXEaPedRuzZyWNg4.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/U1Rkc9zCIQXEaPedRuzZyWNg4.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/U1Rkc9zCIQXEaPedRuzZyWNg4.png?lossless=1 1840w\"},className:\"framer-122h4yh framer-jxbss8\",\"data-framer-name\":\"free-lesson-preview-2\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7uuwt4\",\"data-framer-name\":\"Video Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1haklb\",\"data-styles-preset\":\"wXvPB6QR8\",style:{\"--framer-text-alignment\":\"right\"},children:\"Whitespace\"})}),className:\"framer-yda8xa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://learn.supercharge.design/courses/the-ultimate-ui-grids-layouts-masterclass/lectures/55621535\",nodeId:\"AzDp6gJ6z\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{background:{alt:\"\",fit:\"fill\",sizes:\"254px\",src:\"https://framerusercontent.com/images/PRQBBHDnFicfPeuxC5rD600mm7k.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/PRQBBHDnFicfPeuxC5rD600mm7k.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/PRQBBHDnFicfPeuxC5rD600mm7k.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/PRQBBHDnFicfPeuxC5rD600mm7k.png?lossless=1 1838w\"}},yv6tABt87:{background:{alt:\"\",fit:\"fill\",sizes:\"332px\",src:\"https://framerusercontent.com/images/PRQBBHDnFicfPeuxC5rD600mm7k.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/PRQBBHDnFicfPeuxC5rD600mm7k.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/PRQBBHDnFicfPeuxC5rD600mm7k.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/PRQBBHDnFicfPeuxC5rD600mm7k.png?lossless=1 1838w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",sizes:\"max((100vw - 320px) / 3, 1px)\",src:\"https://framerusercontent.com/images/PRQBBHDnFicfPeuxC5rD600mm7k.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/PRQBBHDnFicfPeuxC5rD600mm7k.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/PRQBBHDnFicfPeuxC5rD600mm7k.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/PRQBBHDnFicfPeuxC5rD600mm7k.png?lossless=1 1838w\"},className:\"framer-mk6sg2 framer-jxbss8\",\"data-framer-name\":\"free-lesson-preview-3\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10xnyp8\",\"data-framer-name\":\"Video Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1haklb\",\"data-styles-preset\":\"wXvPB6QR8\",style:{\"--framer-text-alignment\":\"right\"},children:\"Auto-layout Mastery (Demo)\"})}),className:\"framer-vr3uqg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})]})]})]}),getContainer())})})]})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lkx4xw-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yv6tABt87:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"right\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:.1,effectsPerspective:1200,effectsRotate:-15,effectsScale:.8},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:64,height:\"100%\",id:\"mC0Tk0ehY\",intervalControl:2,itemAmount:1,layoutId:\"mC0Tk0ehY\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"532.9787px\",src:\"https://framerusercontent.com/images/2v8ezDy7I79eHgTl8O0bNz5EWk.jpg?lossless=1\",srcSet:\"https://framerusercontent.com/images/2v8ezDy7I79eHgTl8O0bNz5EWk.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/2v8ezDy7I79eHgTl8O0bNz5EWk.jpg?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/2v8ezDy7I79eHgTl8O0bNz5EWk.jpg?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/2v8ezDy7I79eHgTl8O0bNz5EWk.jpg?lossless=1 3840w\"},className:\"framer-khw538\",\"data-framer-name\":\"free-lesson-preview-1\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cstee7\",\"data-framer-name\":\"Video Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1haklb\",\"data-styles-preset\":\"wXvPB6QR8\",style:{\"--framer-text-alignment\":\"right\"},children:\"Course Overview\"})}),className:\"framer-1g1ctk9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"531.2021px\",src:\"https://framerusercontent.com/images/U1Rkc9zCIQXEaPedRuzZyWNg4.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/U1Rkc9zCIQXEaPedRuzZyWNg4.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/U1Rkc9zCIQXEaPedRuzZyWNg4.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/U1Rkc9zCIQXEaPedRuzZyWNg4.png?lossless=1 1840w\"},className:\"framer-1embl4w\",\"data-framer-name\":\"free-lesson-preview-2\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-izwwmg\",\"data-framer-name\":\"Video Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1haklb\",\"data-styles-preset\":\"wXvPB6QR8\",style:{\"--framer-text-alignment\":\"right\"},children:\"Whitespace\"})}),className:\"framer-gbvt5i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"532.9787px\",src:\"https://framerusercontent.com/images/PRQBBHDnFicfPeuxC5rD600mm7k.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/PRQBBHDnFicfPeuxC5rD600mm7k.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/PRQBBHDnFicfPeuxC5rD600mm7k.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/PRQBBHDnFicfPeuxC5rD600mm7k.png?lossless=1 1838w\"},className:\"framer-1anmac0\",\"data-framer-name\":\"free-lesson-preview-3\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x8fz80\",\"data-framer-name\":\"Video Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1haklb\",\"data-styles-preset\":\"wXvPB6QR8\",style:{\"--framer-text-alignment\":\"right\"},children:\"Auto-layout Mastery (Demo)\"})}),className:\"framer-901exc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xbsnub\",\"data-framer-name\":\"What's inside\",id:elementId6,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hcq16o\",\"data-framer-name\":\"title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yv6tABt87:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g9ykbo\",\"data-styles-preset\":\"mjcxxzC_k\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(63, 161, 234)\"},children:\"What\u2019s inside\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-g9ykbo\",\"data-styles-preset\":\"mjcxxzC_k\",style:{\"--framer-text-color\":\"rgb(63, 161, 234)\"},children:\"What\u2019s inside\"})}),className:\"framer-1di0a7z\",\"data-framer-name\":\"What\u2019s inside\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-16959a1\",\"data-styles-preset\":\"SgWJ3LhP0\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(5851deg, rgb(0, 54, 95) 0.520831%, rgb(9, 34, 52) 100%)\"},children:\"These Figma files will make your interfaces come to life faster than ever before\"})})}),className:\"framer-1bc6pkm\",\"data-framer-name\":\"Theory, practical demos, assignments, cheat sheets,\\u2028a wealth of design essentials for creating stunning UI designs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4hcd2i\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wyhq9x\",\"data-framer-name\":\"peek\",style:{rotate:4},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-8cqlmb\",\"data-styles-preset\":\"f5krt1lEn\",style:{\"--framer-text-color\":\"var(--token-4b8c49e9-929d-4638-b308-b86574102ec6, rgb(14, 10, 27))\"},children:\"Peek inside\"})}),className:\"framer-1dzltni\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12v34mp-container\",style:{rotate:195},children:/*#__PURE__*/_jsx(SVG1,{customColor:\"rgb(42, 37, 37)\",customPadding:0,customStrokeWidth:3,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"-2 -2 48 48\" id=\"Arrow-6--Streamline-Fun-Stickers\" height=\"48\" width=\"48\"><desc>Arrow 6 Streamline Element: https://streamlinehq.com</desc><path stroke=\"#292524\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-miterlimit=\"2.854\" stroke-width=\"4\" d=\"M2.8619668000000003 35.092552c-0.223498 0.422136 0.0496892 1.490016 0.1490236 1.9121519999999999 0.3724996 1.514832 0.9187860000000001 4.395512 3.1786216 3.8243480000000005 0.496672 -0.124168 0.943624 -0.8940359999999999 1.1919600000000001 -1.266496 1.01816 -1.5893680000000001 1.788028 -3.327676 2.632344 -5.016352 0.298012 -0.5959800000000001 1.26654 -2.061136 2.1605760000000003 -1.763168 1.067836 0.347688 1.663816 2.23498 2.23498 3.029664 0.7698240000000001 1.0430199999999998 1.78794 2.508176 2.7812840000000003 3.352492 2.25984 1.9121960000000002 6.754703999999999 2.036364 9.113896 0.273196 1.316172 -0.993344 2.25984 -3.07934 3.004848 -4.494864 2.831004 -5.264644 3.788092 -12.590512 4.706944 -18.42632\"></path><path fill=\"#292524\" d=\"M26.763 14.385316c-0.338008 0.775192 4.769731999999999 1.411916 5.671072 1.71644 1.9529400000000001 0.636768 4.657004 1.05204 6.76016 1.3565639999999999 0.2629 0.027676 1.5773560000000002 0.276804 1.8402560000000001 0.110704 0.976448 -0.719796 -2.065536 -13.9805028 -3.680468 -14.4511356C35.814196 2.6472599999999997 28.603256000000002 10.315756 26.763 14.385316Z\" stroke-width=\"4\"></path><path stroke=\"#292524\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-miterlimit=\"1.585\" stroke-width=\"4\" d=\"M26.763 14.385316c-0.338008 0.775192 4.769731999999999 1.411916 5.671072 1.71644 1.9529400000000001 0.636768 4.657004 1.05204 6.76016 1.3565639999999999 0.2629 0.027676 1.5773560000000002 0.276804 1.8402560000000001 0.110704 0.976448 -0.719796 -2.065536 -13.9805028 -3.680468 -14.4511356C35.814196 2.6472599999999997 28.603256000000002 10.315756 26.763 14.385316Z\"></path></svg>',description:\"\",height:\"100%\",id:\"d85U6Z4XR\",layoutId:\"d85U6Z4XR\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{width:`min(max((${componentViewport?.width||\"100vw\"} - 416px) / 3, 1px), 444px)`},JzFPzPkCn:{width:`min(max((${componentViewport?.width||\"100vw\"} - 224px) / 3, 1px), 444px)`},UqsXmKWpT:{width:`min(max((${componentViewport?.width||\"100vw\"} - 80px) / 3, 1px), 444px)`},yv6tABt87:{width:`min(max((${componentViewport?.width||\"100vw\"} - 144px) / 3, 1px), 444px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:702,width:`min(max((${componentViewport?.width||\"100vw\"} - 448px) / 3, 1px), 444px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11keyys-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(BookSimpleFlipHover,{height:\"100%\",id:\"l0NktxCim\",JuhKrAMWC:addImageAlt({src:\"https://framerusercontent.com/images/xXNvuxG0r16o1PvFiU9ipxo7nU.png\",srcSet:\"https://framerusercontent.com/images/xXNvuxG0r16o1PvFiU9ipxo7nU.png 680w\"},\"\"),layoutId:\"l0NktxCim\",LOJ42AdBo:\"0px\",n8snZtwfg:addImageAlt({src:\"https://framerusercontent.com/images/gC3Z1i3ovkQaTHybMxLGcF7h8.png\",srcSet:\"https://framerusercontent.com/images/gC3Z1i3ovkQaTHybMxLGcF7h8.png 680w\"},\"\"),style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{width:`min(max((${componentViewport?.width||\"100vw\"} - 416px) / 3, 1px), 444px)`},JzFPzPkCn:{width:`min(max((${componentViewport?.width||\"100vw\"} - 224px) / 3, 1px), 444px)`},UqsXmKWpT:{width:`min(max((${componentViewport?.width||\"100vw\"} - 80px) / 3, 1px), 444px)`},yv6tABt87:{width:`min(max((${componentViewport?.width||\"100vw\"} - 144px) / 3, 1px), 444px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:702,width:`min(max((${componentViewport?.width||\"100vw\"} - 448px) / 3, 1px), 444px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vjupxk-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(BookSimpleFlipHover,{height:\"100%\",id:\"wyfQW3uVd\",JuhKrAMWC:addImageAlt({src:\"https://framerusercontent.com/images/i7Zk9VfhU9fnQGFfG1PDghjbAo.png\",srcSet:\"https://framerusercontent.com/images/i7Zk9VfhU9fnQGFfG1PDghjbAo.png 680w\"},\"\"),layoutId:\"wyfQW3uVd\",LOJ42AdBo:\"0px\",n8snZtwfg:addImageAlt({src:\"https://framerusercontent.com/images/IfyejiTApLMw85RGRRtyLXGSe8.png\",srcSet:\"https://framerusercontent.com/images/IfyejiTApLMw85RGRRtyLXGSe8.png 680w\"},\"\"),style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{width:`min(max((${componentViewport?.width||\"100vw\"} - 416px) / 3, 1px), 444px)`},JzFPzPkCn:{width:`min(max((${componentViewport?.width||\"100vw\"} - 224px) / 3, 1px), 444px)`},UqsXmKWpT:{width:`min(max((${componentViewport?.width||\"100vw\"} - 80px) / 3, 1px), 444px)`},yv6tABt87:{width:`min(max((${componentViewport?.width||\"100vw\"} - 144px) / 3, 1px), 444px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:702,width:`min(max((${componentViewport?.width||\"100vw\"} - 448px) / 3, 1px), 444px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aq1d04-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(BookSimpleFlipHover,{height:\"100%\",id:\"Dujo2x3_4\",JuhKrAMWC:addImageAlt({src:\"https://framerusercontent.com/images/GyW6zUltFt5GAZCDDMd0BBkClA.png\",srcSet:\"https://framerusercontent.com/images/GyW6zUltFt5GAZCDDMd0BBkClA.png 680w\"},\"\"),layoutId:\"Dujo2x3_4\",LOJ42AdBo:\"0px\",n8snZtwfg:addImageAlt({src:\"https://framerusercontent.com/images/XlGz3oujAmm83W2XDmxd5OGQTM0.png\",srcSet:\"https://framerusercontent.com/images/XlGz3oujAmm83W2XDmxd5OGQTM0.png 680w\"},\"\"),style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ruicka\",\"data-framer-name\":\"bonuses\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h35l6s\",\"data-framer-name\":\"bonus1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-26cxsr\",\"data-framer-name\":\"bonus-text-1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bxrp44\",\"data-framer-name\":\"Headings\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-2nx2ke\",\"data-styles-preset\":\"PBZ031t2q\",style:{\"--framer-text-color\":\"rgb(63, 161, 234)\"},children:\"UI Grids & Layouts Glossary\"})}),className:\"framer-159m2f9\",\"data-framer-name\":\"File name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-nhnclj\",\"data-styles-preset\":\"Fdy6zEfHM\",style:{\"--framer-text-color\":\"rgb(9, 34, 52)\"},children:\"Master the fundamental concepts and terms of UI grids and layouts\"})}),className:\"framer-atu08g\",\"data-framer-name\":\"What is this file about\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xwll57\",\"data-styles-preset\":\"AulFOp9tt\",style:{\"--framer-text-color\":\"rgb(7, 26, 41)\"},children:\"UI Grids & Layouts Glossary e-book is a comprehensive guide designed to help you understand the core concepts behind grids and layouts in UI design. Get familiar with essential UI design terminology related to grids and layouts, making it easier to understand and communicate design concepts effectively.\"})}),className:\"framer-1yionl3\",\"data-framer-name\":\"Inspect the instructor\u2019s every design step and solution and learn directly from the file the course was recorded in. Discover assignment assets directly on each module\u2019s relevant page without the need to recreate them.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tw2cjy\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-noz271\",\"data-framer-name\":\"List Item/Pricing Item\",children:[/*#__PURE__*/_jsx(\"figure\",{\"aria-label\":\"Zap icon\",className:\"framer-1xnf660\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rnuch9-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(63, 161, 234)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Bolt\",id:\"Q1AkeXcmW\",layoutId:\"Q1AkeXcmW\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sp1xj4\",\"data-styles-preset\":\"Skhxz3U2Q\",children:\"In-depth visual guide\"})}),className:\"framer-wq2gj\",\"data-framer-name\":\"160+ value-packed lessons\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2snpsi\",\"data-framer-name\":\"List Item/Pricing Item\",children:[/*#__PURE__*/_jsx(\"figure\",{\"aria-label\":\"Zap icon\",className:\"framer-1equ1is\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17t4je7-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(63, 161, 234)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Bolt\",id:\"R9Pm68q1f\",layoutId:\"R9Pm68q1f\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sp1xj4\",\"data-styles-preset\":\"Skhxz3U2Q\",children:\"Glossary of relevant UI terms\"})}),className:\"framer-as1mvi\",\"data-framer-name\":\"160+ value-packed lessons\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g1szyg\",\"data-framer-name\":\"List Item/Pricing Item\",children:[/*#__PURE__*/_jsx(\"figure\",{\"aria-label\":\"Zap icon\",className:\"framer-lc8v5m\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-d10dg4-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(63, 161, 234)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Bolt\",id:\"hrAjVUdcy\",layoutId:\"hrAjVUdcy\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sp1xj4\",\"data-styles-preset\":\"Skhxz3U2Q\",children:\"Quick-reference document\"})}),className:\"framer-jf0a8w\",\"data-framer-name\":\"160+ value-packed lessons\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zzket5\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y9v4n4\",\"data-framer-name\":\"bonus-glossary\",id:elementId7,ref:ref14,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.7216)`,src:\"https://framerusercontent.com/images/NUT8eKT9DmAh2WRkRMtcDltWgY.png\",srcSet:\"https://framerusercontent.com/images/NUT8eKT9DmAh2WRkRMtcDltWgY.png?scale-down-to=512 512w,https://framerusercontent.com/images/NUT8eKT9DmAh2WRkRMtcDltWgY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NUT8eKT9DmAh2WRkRMtcDltWgY.png 1280w\"}},JzFPzPkCn:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.7216)`,src:\"https://framerusercontent.com/images/NUT8eKT9DmAh2WRkRMtcDltWgY.png\",srcSet:\"https://framerusercontent.com/images/NUT8eKT9DmAh2WRkRMtcDltWgY.png?scale-down-to=512 512w,https://framerusercontent.com/images/NUT8eKT9DmAh2WRkRMtcDltWgY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NUT8eKT9DmAh2WRkRMtcDltWgY.png 1280w\"}},UqsXmKWpT:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px, 1560px) * 0.7216)`,src:\"https://framerusercontent.com/images/NUT8eKT9DmAh2WRkRMtcDltWgY.png\",srcSet:\"https://framerusercontent.com/images/NUT8eKT9DmAh2WRkRMtcDltWgY.png?scale-down-to=512 512w,https://framerusercontent.com/images/NUT8eKT9DmAh2WRkRMtcDltWgY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NUT8eKT9DmAh2WRkRMtcDltWgY.png 1280w\"}},yv6tABt87:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 144px, 1560px) * 0.7216)`,src:\"https://framerusercontent.com/images/NUT8eKT9DmAh2WRkRMtcDltWgY.png\",srcSet:\"https://framerusercontent.com/images/NUT8eKT9DmAh2WRkRMtcDltWgY.png?scale-down-to=512 512w,https://framerusercontent.com/images/NUT8eKT9DmAh2WRkRMtcDltWgY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NUT8eKT9DmAh2WRkRMtcDltWgY.png 1280w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref14,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 360px, 1560px) - 80px) / 2, 1px) * 0.7216)`,src:\"https://framerusercontent.com/images/NUT8eKT9DmAh2WRkRMtcDltWgY.png\",srcSet:\"https://framerusercontent.com/images/NUT8eKT9DmAh2WRkRMtcDltWgY.png?scale-down-to=512 512w,https://framerusercontent.com/images/NUT8eKT9DmAh2WRkRMtcDltWgY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NUT8eKT9DmAh2WRkRMtcDltWgY.png 1280w\"},className:\"framer-6wat3s\",\"data-framer-name\":\"image\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.4811)`,src:\"https://framerusercontent.com/images/6jrAsnQoGSTLm9aCnDo66nTFOYc.png\",srcSet:\"https://framerusercontent.com/images/6jrAsnQoGSTLm9aCnDo66nTFOYc.png?scale-down-to=512 512w,https://framerusercontent.com/images/6jrAsnQoGSTLm9aCnDo66nTFOYc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6jrAsnQoGSTLm9aCnDo66nTFOYc.png 1280w\"}},JzFPzPkCn:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.4811)`,src:\"https://framerusercontent.com/images/6jrAsnQoGSTLm9aCnDo66nTFOYc.png\",srcSet:\"https://framerusercontent.com/images/6jrAsnQoGSTLm9aCnDo66nTFOYc.png?scale-down-to=512 512w,https://framerusercontent.com/images/6jrAsnQoGSTLm9aCnDo66nTFOYc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6jrAsnQoGSTLm9aCnDo66nTFOYc.png 1280w\"}},UqsXmKWpT:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px, 1560px) * 0.4811)`,src:\"https://framerusercontent.com/images/6jrAsnQoGSTLm9aCnDo66nTFOYc.png\",srcSet:\"https://framerusercontent.com/images/6jrAsnQoGSTLm9aCnDo66nTFOYc.png?scale-down-to=512 512w,https://framerusercontent.com/images/6jrAsnQoGSTLm9aCnDo66nTFOYc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6jrAsnQoGSTLm9aCnDo66nTFOYc.png 1280w\"}},yv6tABt87:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 144px, 1560px) * 0.4811)`,src:\"https://framerusercontent.com/images/6jrAsnQoGSTLm9aCnDo66nTFOYc.png\",srcSet:\"https://framerusercontent.com/images/6jrAsnQoGSTLm9aCnDo66nTFOYc.png?scale-down-to=512 512w,https://framerusercontent.com/images/6jrAsnQoGSTLm9aCnDo66nTFOYc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6jrAsnQoGSTLm9aCnDo66nTFOYc.png 1280w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref14,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 360px, 1560px) - 80px) / 2, 1px) * 0.4811)`,src:\"https://framerusercontent.com/images/6jrAsnQoGSTLm9aCnDo66nTFOYc.png\",srcSet:\"https://framerusercontent.com/images/6jrAsnQoGSTLm9aCnDo66nTFOYc.png?scale-down-to=512 512w,https://framerusercontent.com/images/6jrAsnQoGSTLm9aCnDo66nTFOYc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6jrAsnQoGSTLm9aCnDo66nTFOYc.png 1280w\"},className:\"framer-1tqxynd\",\"data-framer-name\":\"image 10\",style:{transformPerspective:1200},transformTemplate:transformTemplate2,whileHover:animation12})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.5297)`,src:\"https://framerusercontent.com/images/tKrfahX9gmNMFNyAEQ2ZcoljTw.png\",srcSet:\"https://framerusercontent.com/images/tKrfahX9gmNMFNyAEQ2ZcoljTw.png?scale-down-to=512 512w,https://framerusercontent.com/images/tKrfahX9gmNMFNyAEQ2ZcoljTw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tKrfahX9gmNMFNyAEQ2ZcoljTw.png 1280w\"}},JzFPzPkCn:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.5297)`,src:\"https://framerusercontent.com/images/tKrfahX9gmNMFNyAEQ2ZcoljTw.png\",srcSet:\"https://framerusercontent.com/images/tKrfahX9gmNMFNyAEQ2ZcoljTw.png?scale-down-to=512 512w,https://framerusercontent.com/images/tKrfahX9gmNMFNyAEQ2ZcoljTw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tKrfahX9gmNMFNyAEQ2ZcoljTw.png 1280w\"}},UqsXmKWpT:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px, 1560px) * 0.5297)`,src:\"https://framerusercontent.com/images/tKrfahX9gmNMFNyAEQ2ZcoljTw.png\",srcSet:\"https://framerusercontent.com/images/tKrfahX9gmNMFNyAEQ2ZcoljTw.png?scale-down-to=512 512w,https://framerusercontent.com/images/tKrfahX9gmNMFNyAEQ2ZcoljTw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tKrfahX9gmNMFNyAEQ2ZcoljTw.png 1280w\"}},yv6tABt87:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 144px, 1560px) * 0.5297)`,src:\"https://framerusercontent.com/images/tKrfahX9gmNMFNyAEQ2ZcoljTw.png\",srcSet:\"https://framerusercontent.com/images/tKrfahX9gmNMFNyAEQ2ZcoljTw.png?scale-down-to=512 512w,https://framerusercontent.com/images/tKrfahX9gmNMFNyAEQ2ZcoljTw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tKrfahX9gmNMFNyAEQ2ZcoljTw.png 1280w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref14,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 360px, 1560px) - 80px) / 2, 1px) * 0.5297)`,src:\"https://framerusercontent.com/images/tKrfahX9gmNMFNyAEQ2ZcoljTw.png\",srcSet:\"https://framerusercontent.com/images/tKrfahX9gmNMFNyAEQ2ZcoljTw.png?scale-down-to=512 512w,https://framerusercontent.com/images/tKrfahX9gmNMFNyAEQ2ZcoljTw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tKrfahX9gmNMFNyAEQ2ZcoljTw.png 1280w\"},className:\"framer-1hv6i2c\",\"data-framer-name\":\"image\",style:{transformPerspective:1200},transformTemplate:transformTemplate2,whileHover:animation12})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) / 1.729)`,src:\"https://framerusercontent.com/images/xordGodzjQFVSeAdlremzSG0OA.png\",srcSet:\"https://framerusercontent.com/images/xordGodzjQFVSeAdlremzSG0OA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xordGodzjQFVSeAdlremzSG0OA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xordGodzjQFVSeAdlremzSG0OA.png 1280w\"}},JzFPzPkCn:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) / 1.729)`,src:\"https://framerusercontent.com/images/xordGodzjQFVSeAdlremzSG0OA.png\",srcSet:\"https://framerusercontent.com/images/xordGodzjQFVSeAdlremzSG0OA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xordGodzjQFVSeAdlremzSG0OA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xordGodzjQFVSeAdlremzSG0OA.png 1280w\"}},UqsXmKWpT:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px, 1560px) / 1.729)`,src:\"https://framerusercontent.com/images/xordGodzjQFVSeAdlremzSG0OA.png\",srcSet:\"https://framerusercontent.com/images/xordGodzjQFVSeAdlremzSG0OA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xordGodzjQFVSeAdlremzSG0OA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xordGodzjQFVSeAdlremzSG0OA.png 1280w\"}},yv6tABt87:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 144px, 1560px) / 1.729)`,src:\"https://framerusercontent.com/images/xordGodzjQFVSeAdlremzSG0OA.png\",srcSet:\"https://framerusercontent.com/images/xordGodzjQFVSeAdlremzSG0OA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xordGodzjQFVSeAdlremzSG0OA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xordGodzjQFVSeAdlremzSG0OA.png 1280w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref14,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 360px, 1560px) - 80px) / 2, 1px) / 1.729)`,src:\"https://framerusercontent.com/images/xordGodzjQFVSeAdlremzSG0OA.png\",srcSet:\"https://framerusercontent.com/images/xordGodzjQFVSeAdlremzSG0OA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xordGodzjQFVSeAdlremzSG0OA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xordGodzjQFVSeAdlremzSG0OA.png 1280w\"},className:\"framer-1frgq76\",\"data-framer-name\":\"image\",transformTemplate:transformTemplate2,whileHover:animation12})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kd2m11\",\"data-framer-name\":\"bonus1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7nlqc1\",\"data-framer-name\":\"bonus-text-1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gkvlzb\",\"data-framer-name\":\"Headings\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-2nx2ke\",\"data-styles-preset\":\"PBZ031t2q\",style:{\"--framer-text-color\":\"rgb(63, 161, 234)\"},children:\"Ready-to-go UI Grid Systems\"})}),className:\"framer-z9c1dp\",\"data-framer-name\":\"File name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-nhnclj\",\"data-styles-preset\":\"Fdy6zEfHM\",style:{\"--framer-text-color\":\"rgb(9, 34, 52)\"},children:\"Kickstart any type of UI design project with ease\"})}),className:\"framer-3mjtn6\",\"data-framer-name\":\"What is this file about\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xwll57\",\"data-styles-preset\":\"AulFOp9tt\",style:{\"--framer-text-color\":\"rgb(7, 26, 41)\"},children:\"Kickstart any UI design project with these pre-built Figma grid systems. Designed to save you time, these grids offer a solid foundation for any layout. Use them as they are or easily customize them to fit your project needs, ensuring consistency and precision in your designs.\"})}),className:\"framer-tgavw3\",\"data-framer-name\":\"Inspect the instructor\u2019s every design step and solution and learn directly from the file the course was recorded in. Discover assignment assets directly on each module\u2019s relevant page without the need to recreate them.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a35p5g\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mwkxqv\",\"data-framer-name\":\"List Item/Pricing Item\",children:[/*#__PURE__*/_jsx(\"figure\",{\"aria-label\":\"Zap icon\",className:\"framer-1y2dol3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ubbr7m-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(63, 161, 234)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Bolt\",id:\"E1owVhUQ2\",layoutId:\"E1owVhUQ2\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sp1xj4\",\"data-styles-preset\":\"Skhxz3U2Q\",children:\"Premade grids\"})}),className:\"framer-19b0vel\",\"data-framer-name\":\"160+ value-packed lessons\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ovhiva\",\"data-framer-name\":\"List Item/Pricing Item\",children:[/*#__PURE__*/_jsx(\"figure\",{\"aria-label\":\"Zap icon\",className:\"framer-v42eg1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fst3d5-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(63, 161, 234)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Bolt\",id:\"m_oy_nXlm\",layoutId:\"m_oy_nXlm\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sp1xj4\",\"data-styles-preset\":\"Skhxz3U2Q\",children:\"Fully customizable\"})}),className:\"framer-ne3496\",\"data-framer-name\":\"160+ value-packed lessons\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13ao7sv\",\"data-framer-name\":\"List Item/Pricing Item\",children:[/*#__PURE__*/_jsx(\"figure\",{\"aria-label\":\"Zap icon\",className:\"framer-jo1114\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wki3qb-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(63, 161, 234)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Bolt\",id:\"zP8PMOIR5\",layoutId:\"zP8PMOIR5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sp1xj4\",\"data-styles-preset\":\"Skhxz3U2Q\",children:\"Save time\"})}),className:\"framer-eaeumt\",\"data-framer-name\":\"160+ value-packed lessons\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ewye0a\",\"data-framer-name\":\"List Item/Pricing Item\",children:[/*#__PURE__*/_jsx(\"figure\",{\"aria-label\":\"Zap icon\",className:\"framer-f5doo1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n3m32t-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(63, 161, 234)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Bolt\",id:\"v_jFZmBjR\",layoutId:\"v_jFZmBjR\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sp1xj4\",\"data-styles-preset\":\"Skhxz3U2Q\",children:\"Maintain consistency\"})}),className:\"framer-up1uo\",\"data-framer-name\":\"160+ value-packed lessons\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vfyike\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fy3lrf\",\"data-framer-name\":\"bonus-glossary\",id:elementId8,ref:ref15,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.7216)`,src:\"https://framerusercontent.com/images/KIe2BzxgxSn1nOajuiMoyKr84c.png\",srcSet:\"https://framerusercontent.com/images/KIe2BzxgxSn1nOajuiMoyKr84c.png?scale-down-to=512 512w,https://framerusercontent.com/images/KIe2BzxgxSn1nOajuiMoyKr84c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KIe2BzxgxSn1nOajuiMoyKr84c.png 1600w\"}},JzFPzPkCn:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.7216)`,src:\"https://framerusercontent.com/images/KIe2BzxgxSn1nOajuiMoyKr84c.png\",srcSet:\"https://framerusercontent.com/images/KIe2BzxgxSn1nOajuiMoyKr84c.png?scale-down-to=512 512w,https://framerusercontent.com/images/KIe2BzxgxSn1nOajuiMoyKr84c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KIe2BzxgxSn1nOajuiMoyKr84c.png 1600w\"}},UqsXmKWpT:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px, 1560px) * 0.7216)`,src:\"https://framerusercontent.com/images/KIe2BzxgxSn1nOajuiMoyKr84c.png\",srcSet:\"https://framerusercontent.com/images/KIe2BzxgxSn1nOajuiMoyKr84c.png?scale-down-to=512 512w,https://framerusercontent.com/images/KIe2BzxgxSn1nOajuiMoyKr84c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KIe2BzxgxSn1nOajuiMoyKr84c.png 1600w\"}},yv6tABt87:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 144px, 1560px) * 0.7216)`,src:\"https://framerusercontent.com/images/KIe2BzxgxSn1nOajuiMoyKr84c.png\",srcSet:\"https://framerusercontent.com/images/KIe2BzxgxSn1nOajuiMoyKr84c.png?scale-down-to=512 512w,https://framerusercontent.com/images/KIe2BzxgxSn1nOajuiMoyKr84c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KIe2BzxgxSn1nOajuiMoyKr84c.png 1600w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref15,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 360px, 1560px) - 80px) / 2, 1px) * 0.7216)`,src:\"https://framerusercontent.com/images/KIe2BzxgxSn1nOajuiMoyKr84c.png\",srcSet:\"https://framerusercontent.com/images/KIe2BzxgxSn1nOajuiMoyKr84c.png?scale-down-to=512 512w,https://framerusercontent.com/images/KIe2BzxgxSn1nOajuiMoyKr84c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KIe2BzxgxSn1nOajuiMoyKr84c.png 1600w\"},className:\"framer-c4cnfv\",\"data-framer-name\":\"image\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.3649)`,src:\"https://framerusercontent.com/images/99PATg1vyRxSD7PD6qFAEh394.png\",srcSet:\"https://framerusercontent.com/images/99PATg1vyRxSD7PD6qFAEh394.png?scale-down-to=512 512w,https://framerusercontent.com/images/99PATg1vyRxSD7PD6qFAEh394.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/99PATg1vyRxSD7PD6qFAEh394.png 1446w\"}},JzFPzPkCn:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.3649)`,src:\"https://framerusercontent.com/images/99PATg1vyRxSD7PD6qFAEh394.png\",srcSet:\"https://framerusercontent.com/images/99PATg1vyRxSD7PD6qFAEh394.png?scale-down-to=512 512w,https://framerusercontent.com/images/99PATg1vyRxSD7PD6qFAEh394.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/99PATg1vyRxSD7PD6qFAEh394.png 1446w\"}},UqsXmKWpT:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px, 1560px) * 0.3649)`,src:\"https://framerusercontent.com/images/99PATg1vyRxSD7PD6qFAEh394.png\",srcSet:\"https://framerusercontent.com/images/99PATg1vyRxSD7PD6qFAEh394.png?scale-down-to=512 512w,https://framerusercontent.com/images/99PATg1vyRxSD7PD6qFAEh394.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/99PATg1vyRxSD7PD6qFAEh394.png 1446w\"}},yv6tABt87:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 144px, 1560px) * 0.3649)`,src:\"https://framerusercontent.com/images/99PATg1vyRxSD7PD6qFAEh394.png\",srcSet:\"https://framerusercontent.com/images/99PATg1vyRxSD7PD6qFAEh394.png?scale-down-to=512 512w,https://framerusercontent.com/images/99PATg1vyRxSD7PD6qFAEh394.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/99PATg1vyRxSD7PD6qFAEh394.png 1446w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref15,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 360px, 1560px) - 80px) / 2, 1px) * 0.3649)`,src:\"https://framerusercontent.com/images/99PATg1vyRxSD7PD6qFAEh394.png\",srcSet:\"https://framerusercontent.com/images/99PATg1vyRxSD7PD6qFAEh394.png?scale-down-to=512 512w,https://framerusercontent.com/images/99PATg1vyRxSD7PD6qFAEh394.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/99PATg1vyRxSD7PD6qFAEh394.png 1446w\"},className:\"framer-y5mjci\",\"data-framer-name\":\"CleanShot 2024-09-11 at 14.06.48@2x\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.1676)`,src:\"https://framerusercontent.com/images/1TgBenqYBOhaQMrT0CW6IH2mKGU.png\",srcSet:\"https://framerusercontent.com/images/1TgBenqYBOhaQMrT0CW6IH2mKGU.png 748w\"}},JzFPzPkCn:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.1676)`,src:\"https://framerusercontent.com/images/1TgBenqYBOhaQMrT0CW6IH2mKGU.png\",srcSet:\"https://framerusercontent.com/images/1TgBenqYBOhaQMrT0CW6IH2mKGU.png 748w\"}},UqsXmKWpT:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px, 1560px) * 0.1676)`,src:\"https://framerusercontent.com/images/1TgBenqYBOhaQMrT0CW6IH2mKGU.png\",srcSet:\"https://framerusercontent.com/images/1TgBenqYBOhaQMrT0CW6IH2mKGU.png 748w\"}},yv6tABt87:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 144px, 1560px) * 0.1676)`,src:\"https://framerusercontent.com/images/1TgBenqYBOhaQMrT0CW6IH2mKGU.png\",srcSet:\"https://framerusercontent.com/images/1TgBenqYBOhaQMrT0CW6IH2mKGU.png 748w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref15,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 360px, 1560px) - 80px) / 2, 1px) * 0.1676)`,src:\"https://framerusercontent.com/images/1TgBenqYBOhaQMrT0CW6IH2mKGU.png\",srcSet:\"https://framerusercontent.com/images/1TgBenqYBOhaQMrT0CW6IH2mKGU.png 748w\"},className:\"framer-muiogi\",\"data-framer-name\":\"CleanShot 2024-09-11 at 14.07.36@2x\",transformTemplate:transformTemplate2})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qk3tl9\",\"data-framer-name\":\"bonus1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14woiqc\",\"data-framer-name\":\"bonus-text-1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-effupg\",\"data-framer-name\":\"Headings\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-2nx2ke\",\"data-styles-preset\":\"PBZ031t2q\",style:{\"--framer-text-color\":\"rgb(63, 161, 234)\"},children:\"How to Document Custom UI Grids for Development\"})}),className:\"framer-ae5uox\",\"data-framer-name\":\"File name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-nhnclj\",\"data-styles-preset\":\"Fdy6zEfHM\",style:{\"--framer-text-color\":\"rgb(9, 34, 52)\"},children:\"The only guide you need on how to document your UI grids for development\"})}),className:\"framer-15cv0x1\",\"data-framer-name\":\"What is this file about\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xwll57\",\"data-styles-preset\":\"AulFOp9tt\",style:{\"--framer-text-color\":\"rgb(7, 26, 41)\"},children:\"Learn how to effectively document your UI grids for seamless collaboration with developers. This short guide includes visual instructions and a real-world example, ensuring your designs are implemented with pixel-perfect precision.\"})}),className:\"framer-1wxakhc\",\"data-framer-name\":\"Inspect the instructor\u2019s every design step and solution and learn directly from the file the course was recorded in. Discover assignment assets directly on each module\u2019s relevant page without the need to recreate them.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uyto84\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a2nrzf\",\"data-framer-name\":\"List Item/Pricing Item\",children:[/*#__PURE__*/_jsx(\"figure\",{\"aria-label\":\"Zap icon\",className:\"framer-bgwd20\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1innq9i-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(63, 161, 234)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Bolt\",id:\"HvqhaR2dG\",layoutId:\"HvqhaR2dG\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sp1xj4\",\"data-styles-preset\":\"Skhxz3U2Q\",children:\"Clear guidelines\"})}),className:\"framer-iloc86\",\"data-framer-name\":\"160+ value-packed lessons\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ask8f0\",\"data-framer-name\":\"List Item/Pricing Item\",children:[/*#__PURE__*/_jsx(\"figure\",{\"aria-label\":\"Zap icon\",className:\"framer-1urhxgd\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4kma8m-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(63, 161, 234)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Bolt\",id:\"hDQPBesRD\",layoutId:\"hDQPBesRD\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sp1xj4\",\"data-styles-preset\":\"Skhxz3U2Q\",children:\"Developer-friendly format\"})}),className:\"framer-v1c82u\",\"data-framer-name\":\"160+ value-packed lessons\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-unimoi\",\"data-framer-name\":\"List Item/Pricing Item\",children:[/*#__PURE__*/_jsx(\"figure\",{\"aria-label\":\"Zap icon\",className:\"framer-1h6gb6e\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h89wuu-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(63, 161, 234)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Bolt\",id:\"y_XSBgSWu\",layoutId:\"y_XSBgSWu\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sp1xj4\",\"data-styles-preset\":\"Skhxz3U2Q\",children:\"Real-world example\"})}),className:\"framer-1kkj4w\",\"data-framer-name\":\"160+ value-packed lessons\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nceq3n\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wcjujs\",\"data-framer-name\":\"bonus-glossary\",id:elementId9,ref:ref16,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.5162)`,src:\"https://framerusercontent.com/images/nq6kc6MT2RXaW3K3BHZBGYvYpas.png\",srcSet:\"https://framerusercontent.com/images/nq6kc6MT2RXaW3K3BHZBGYvYpas.png?scale-down-to=512 512w,https://framerusercontent.com/images/nq6kc6MT2RXaW3K3BHZBGYvYpas.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nq6kc6MT2RXaW3K3BHZBGYvYpas.png 1312w\"}},JzFPzPkCn:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.5162)`,src:\"https://framerusercontent.com/images/nq6kc6MT2RXaW3K3BHZBGYvYpas.png\",srcSet:\"https://framerusercontent.com/images/nq6kc6MT2RXaW3K3BHZBGYvYpas.png?scale-down-to=512 512w,https://framerusercontent.com/images/nq6kc6MT2RXaW3K3BHZBGYvYpas.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nq6kc6MT2RXaW3K3BHZBGYvYpas.png 1312w\"}},UqsXmKWpT:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px, 1560px) * 0.5162)`,src:\"https://framerusercontent.com/images/nq6kc6MT2RXaW3K3BHZBGYvYpas.png\",srcSet:\"https://framerusercontent.com/images/nq6kc6MT2RXaW3K3BHZBGYvYpas.png?scale-down-to=512 512w,https://framerusercontent.com/images/nq6kc6MT2RXaW3K3BHZBGYvYpas.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nq6kc6MT2RXaW3K3BHZBGYvYpas.png 1312w\"}},yv6tABt87:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 144px, 1560px) * 0.5162)`,src:\"https://framerusercontent.com/images/nq6kc6MT2RXaW3K3BHZBGYvYpas.png\",srcSet:\"https://framerusercontent.com/images/nq6kc6MT2RXaW3K3BHZBGYvYpas.png?scale-down-to=512 512w,https://framerusercontent.com/images/nq6kc6MT2RXaW3K3BHZBGYvYpas.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nq6kc6MT2RXaW3K3BHZBGYvYpas.png 1312w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref16,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 360px, 1560px) - 80px) / 2, 1px) * 0.5162)`,src:\"https://framerusercontent.com/images/nq6kc6MT2RXaW3K3BHZBGYvYpas.png\",srcSet:\"https://framerusercontent.com/images/nq6kc6MT2RXaW3K3BHZBGYvYpas.png?scale-down-to=512 512w,https://framerusercontent.com/images/nq6kc6MT2RXaW3K3BHZBGYvYpas.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nq6kc6MT2RXaW3K3BHZBGYvYpas.png 1312w\"},className:\"framer-aqq5kg\",\"data-framer-name\":\"image 11\",style:{rotate:-4},transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.3162)`,src:\"https://framerusercontent.com/images/liFkJjeu8phrCYUFCDYwSpNSLY.png\",srcSet:\"https://framerusercontent.com/images/liFkJjeu8phrCYUFCDYwSpNSLY.png?scale-down-to=512 512w,https://framerusercontent.com/images/liFkJjeu8phrCYUFCDYwSpNSLY.png 936w\"}},JzFPzPkCn:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.3162)`,src:\"https://framerusercontent.com/images/liFkJjeu8phrCYUFCDYwSpNSLY.png\",srcSet:\"https://framerusercontent.com/images/liFkJjeu8phrCYUFCDYwSpNSLY.png?scale-down-to=512 512w,https://framerusercontent.com/images/liFkJjeu8phrCYUFCDYwSpNSLY.png 936w\"}},UqsXmKWpT:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px, 1560px) * 0.3162)`,src:\"https://framerusercontent.com/images/liFkJjeu8phrCYUFCDYwSpNSLY.png\",srcSet:\"https://framerusercontent.com/images/liFkJjeu8phrCYUFCDYwSpNSLY.png?scale-down-to=512 512w,https://framerusercontent.com/images/liFkJjeu8phrCYUFCDYwSpNSLY.png 936w\"}},yv6tABt87:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 144px, 1560px) * 0.3162)`,src:\"https://framerusercontent.com/images/liFkJjeu8phrCYUFCDYwSpNSLY.png\",srcSet:\"https://framerusercontent.com/images/liFkJjeu8phrCYUFCDYwSpNSLY.png?scale-down-to=512 512w,https://framerusercontent.com/images/liFkJjeu8phrCYUFCDYwSpNSLY.png 936w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation17,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref16,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 360px, 1560px) - 80px) / 2, 1px) * 0.3162)`,src:\"https://framerusercontent.com/images/liFkJjeu8phrCYUFCDYwSpNSLY.png\",srcSet:\"https://framerusercontent.com/images/liFkJjeu8phrCYUFCDYwSpNSLY.png?scale-down-to=512 512w,https://framerusercontent.com/images/liFkJjeu8phrCYUFCDYwSpNSLY.png 936w\"},className:\"framer-ksyjs8\",\"data-border\":true,\"data-framer-name\":\"image\",transformTemplate:transformTemplate2,whileHover:animation18})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s3f0rg\",\"data-framer-name\":\"bonus1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ae8h9p\",\"data-framer-name\":\"bonus-text-1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11srl42\",\"data-framer-name\":\"Headings\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-2nx2ke\",\"data-styles-preset\":\"PBZ031t2q\",style:{\"--framer-text-color\":\"rgb(63, 161, 234)\"},children:\"Layouts Inspiration Library\"})}),className:\"framer-1mctoch\",\"data-framer-name\":\"File name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-nhnclj\",\"data-styles-preset\":\"Fdy6zEfHM\",style:{\"--framer-text-color\":\"rgb(9, 34, 52)\"},children:\"The ultimate inspiration library for UI layouts, screens, and sections\"})}),className:\"framer-1rshmaj\",\"data-framer-name\":\"What is this file about\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xwll57\",\"data-styles-preset\":\"AulFOp9tt\",style:{\"--framer-text-color\":\"rgb(7, 26, 41)\"},children:\"Explore a curated collection of Figma files showcasing diverse screen layouts and sections tailored for various project types, use cases, and visual design styles. Whether you\u2019re designing a landing page, mobile app, or dashboard, this library offers creative inspiration and ready-to-use templates to elevate and kickstart your design projects.\"})}),className:\"framer-tbw9jg\",\"data-framer-name\":\"Inspect the instructor\u2019s every design step and solution and learn directly from the file the course was recorded in. Discover assignment assets directly on each module\u2019s relevant page without the need to recreate them.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j0h7zi\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zr3i85\",\"data-framer-name\":\"List Item/Pricing Item\",children:[/*#__PURE__*/_jsx(\"figure\",{\"aria-label\":\"Zap icon\",className:\"framer-2szoes\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kw1kpd-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(63, 161, 234)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Bolt\",id:\"lycbx0u2h\",layoutId:\"lycbx0u2h\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sp1xj4\",\"data-styles-preset\":\"Skhxz3U2Q\",children:\"Versatile screen layouts\"})}),className:\"framer-n0w4bc\",\"data-framer-name\":\"160+ value-packed lessons\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mjwofk\",\"data-framer-name\":\"List Item/Pricing Item\",children:[/*#__PURE__*/_jsx(\"figure\",{\"aria-label\":\"Zap icon\",className:\"framer-wnypnu\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ho1bf9-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(63, 161, 234)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Bolt\",id:\"sZsAMQhiz\",layoutId:\"sZsAMQhiz\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sp1xj4\",\"data-styles-preset\":\"Skhxz3U2Q\",children:\"Diverse UI styles\"})}),className:\"framer-q1j1aq\",\"data-framer-name\":\"160+ value-packed lessons\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bn0wk2\",\"data-framer-name\":\"List Item/Pricing Item\",children:[/*#__PURE__*/_jsx(\"figure\",{\"aria-label\":\"Zap icon\",className:\"framer-1q5zikp\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nfh8m6-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(63, 161, 234)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Bolt\",id:\"VmAhhPeuz\",layoutId:\"VmAhhPeuz\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sp1xj4\",\"data-styles-preset\":\"Skhxz3U2Q\",children:\"Boost creativity and efficiency\"})}),className:\"framer-gxxy0k\",\"data-framer-name\":\"160+ value-packed lessons\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zlwyjt\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-32uefw\",\"data-framer-name\":\"bonus-glossary\",id:elementId10,ref:ref17,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) + 226px)`,src:\"https://framerusercontent.com/images/Rd5jpEIG7JZdkbiQcigjUyXYnvI.png\",srcSet:\"https://framerusercontent.com/images/Rd5jpEIG7JZdkbiQcigjUyXYnvI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Rd5jpEIG7JZdkbiQcigjUyXYnvI.png 928w\"}},JzFPzPkCn:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) + 226px)`,src:\"https://framerusercontent.com/images/Rd5jpEIG7JZdkbiQcigjUyXYnvI.png\",srcSet:\"https://framerusercontent.com/images/Rd5jpEIG7JZdkbiQcigjUyXYnvI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Rd5jpEIG7JZdkbiQcigjUyXYnvI.png 928w\"}},UqsXmKWpT:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px, 1560px) + 226px)`,src:\"https://framerusercontent.com/images/Rd5jpEIG7JZdkbiQcigjUyXYnvI.png\",srcSet:\"https://framerusercontent.com/images/Rd5jpEIG7JZdkbiQcigjUyXYnvI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Rd5jpEIG7JZdkbiQcigjUyXYnvI.png 928w\"}},yv6tABt87:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 144px, 1560px) + 226px)`,src:\"https://framerusercontent.com/images/Rd5jpEIG7JZdkbiQcigjUyXYnvI.png\",srcSet:\"https://framerusercontent.com/images/Rd5jpEIG7JZdkbiQcigjUyXYnvI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Rd5jpEIG7JZdkbiQcigjUyXYnvI.png 928w\"}}},children:/*#__PURE__*/_jsx(ImageWithIntesity3,{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 360px, 1560px) - 80px) / 2, 1px) + 226px)`,src:\"https://framerusercontent.com/images/Rd5jpEIG7JZdkbiQcigjUyXYnvI.png\",srcSet:\"https://framerusercontent.com/images/Rd5jpEIG7JZdkbiQcigjUyXYnvI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Rd5jpEIG7JZdkbiQcigjUyXYnvI.png 928w\"},className:\"framer-fz2usv\",\"data-framer-name\":\"CleanShot 2024-09-11 at 16.57.02@2x\",style:{rotate:-3}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.373)`,src:\"https://framerusercontent.com/images/pcH4DVQJ7eAyMQ9Movm60LDLO0E.png\",srcSet:\"https://framerusercontent.com/images/pcH4DVQJ7eAyMQ9Movm60LDLO0E.png?scale-down-to=512 512w,https://framerusercontent.com/images/pcH4DVQJ7eAyMQ9Movm60LDLO0E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pcH4DVQJ7eAyMQ9Movm60LDLO0E.png 1600w\"}},JzFPzPkCn:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.373)`,src:\"https://framerusercontent.com/images/pcH4DVQJ7eAyMQ9Movm60LDLO0E.png\",srcSet:\"https://framerusercontent.com/images/pcH4DVQJ7eAyMQ9Movm60LDLO0E.png?scale-down-to=512 512w,https://framerusercontent.com/images/pcH4DVQJ7eAyMQ9Movm60LDLO0E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pcH4DVQJ7eAyMQ9Movm60LDLO0E.png 1600w\"}},UqsXmKWpT:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px, 1560px) * 0.373)`,src:\"https://framerusercontent.com/images/pcH4DVQJ7eAyMQ9Movm60LDLO0E.png\",srcSet:\"https://framerusercontent.com/images/pcH4DVQJ7eAyMQ9Movm60LDLO0E.png?scale-down-to=512 512w,https://framerusercontent.com/images/pcH4DVQJ7eAyMQ9Movm60LDLO0E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pcH4DVQJ7eAyMQ9Movm60LDLO0E.png 1600w\"}},yv6tABt87:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 144px, 1560px) * 0.373)`,src:\"https://framerusercontent.com/images/pcH4DVQJ7eAyMQ9Movm60LDLO0E.png\",srcSet:\"https://framerusercontent.com/images/pcH4DVQJ7eAyMQ9Movm60LDLO0E.png?scale-down-to=512 512w,https://framerusercontent.com/images/pcH4DVQJ7eAyMQ9Movm60LDLO0E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pcH4DVQJ7eAyMQ9Movm60LDLO0E.png 1600w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref17,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 360px, 1560px) - 80px) / 2, 1px) * 0.373)`,src:\"https://framerusercontent.com/images/pcH4DVQJ7eAyMQ9Movm60LDLO0E.png\",srcSet:\"https://framerusercontent.com/images/pcH4DVQJ7eAyMQ9Movm60LDLO0E.png?scale-down-to=512 512w,https://framerusercontent.com/images/pcH4DVQJ7eAyMQ9Movm60LDLO0E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pcH4DVQJ7eAyMQ9Movm60LDLO0E.png 1600w\"},className:\"framer-xlcexk\",\"data-framer-name\":\"image\",transformTemplate:transformTemplate2,whileHover:animation20})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.373)`,src:\"https://framerusercontent.com/images/lKdzi5dbhq2lJqB7yxf74d7A30.png\",srcSet:\"https://framerusercontent.com/images/lKdzi5dbhq2lJqB7yxf74d7A30.png?scale-down-to=512 512w,https://framerusercontent.com/images/lKdzi5dbhq2lJqB7yxf74d7A30.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lKdzi5dbhq2lJqB7yxf74d7A30.png 1600w\"}},JzFPzPkCn:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.373)`,src:\"https://framerusercontent.com/images/lKdzi5dbhq2lJqB7yxf74d7A30.png\",srcSet:\"https://framerusercontent.com/images/lKdzi5dbhq2lJqB7yxf74d7A30.png?scale-down-to=512 512w,https://framerusercontent.com/images/lKdzi5dbhq2lJqB7yxf74d7A30.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lKdzi5dbhq2lJqB7yxf74d7A30.png 1600w\"}},UqsXmKWpT:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px, 1560px) * 0.373)`,src:\"https://framerusercontent.com/images/lKdzi5dbhq2lJqB7yxf74d7A30.png\",srcSet:\"https://framerusercontent.com/images/lKdzi5dbhq2lJqB7yxf74d7A30.png?scale-down-to=512 512w,https://framerusercontent.com/images/lKdzi5dbhq2lJqB7yxf74d7A30.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lKdzi5dbhq2lJqB7yxf74d7A30.png 1600w\"}},yv6tABt87:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 144px, 1560px) * 0.373)`,src:\"https://framerusercontent.com/images/lKdzi5dbhq2lJqB7yxf74d7A30.png\",srcSet:\"https://framerusercontent.com/images/lKdzi5dbhq2lJqB7yxf74d7A30.png?scale-down-to=512 512w,https://framerusercontent.com/images/lKdzi5dbhq2lJqB7yxf74d7A30.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lKdzi5dbhq2lJqB7yxf74d7A30.png 1600w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref17,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 360px, 1560px) - 80px) / 2, 1px) * 0.373)`,src:\"https://framerusercontent.com/images/lKdzi5dbhq2lJqB7yxf74d7A30.png\",srcSet:\"https://framerusercontent.com/images/lKdzi5dbhq2lJqB7yxf74d7A30.png?scale-down-to=512 512w,https://framerusercontent.com/images/lKdzi5dbhq2lJqB7yxf74d7A30.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lKdzi5dbhq2lJqB7yxf74d7A30.png 1600w\"},className:\"framer-121h4k9\",\"data-framer-name\":\"image\",transformTemplate:transformTemplate2,whileHover:animation20})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.373)`,src:\"https://framerusercontent.com/images/hHu9uA2IzwO5uHuNhMi2L5Xhuik.png\",srcSet:\"https://framerusercontent.com/images/hHu9uA2IzwO5uHuNhMi2L5Xhuik.png?scale-down-to=512 512w,https://framerusercontent.com/images/hHu9uA2IzwO5uHuNhMi2L5Xhuik.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hHu9uA2IzwO5uHuNhMi2L5Xhuik.png 1600w\"}},JzFPzPkCn:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.373)`,src:\"https://framerusercontent.com/images/hHu9uA2IzwO5uHuNhMi2L5Xhuik.png\",srcSet:\"https://framerusercontent.com/images/hHu9uA2IzwO5uHuNhMi2L5Xhuik.png?scale-down-to=512 512w,https://framerusercontent.com/images/hHu9uA2IzwO5uHuNhMi2L5Xhuik.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hHu9uA2IzwO5uHuNhMi2L5Xhuik.png 1600w\"}},UqsXmKWpT:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px, 1560px) * 0.373)`,src:\"https://framerusercontent.com/images/hHu9uA2IzwO5uHuNhMi2L5Xhuik.png\",srcSet:\"https://framerusercontent.com/images/hHu9uA2IzwO5uHuNhMi2L5Xhuik.png?scale-down-to=512 512w,https://framerusercontent.com/images/hHu9uA2IzwO5uHuNhMi2L5Xhuik.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hHu9uA2IzwO5uHuNhMi2L5Xhuik.png 1600w\"}},yv6tABt87:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 144px, 1560px) * 0.373)`,src:\"https://framerusercontent.com/images/hHu9uA2IzwO5uHuNhMi2L5Xhuik.png\",srcSet:\"https://framerusercontent.com/images/hHu9uA2IzwO5uHuNhMi2L5Xhuik.png?scale-down-to=512 512w,https://framerusercontent.com/images/hHu9uA2IzwO5uHuNhMi2L5Xhuik.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hHu9uA2IzwO5uHuNhMi2L5Xhuik.png 1600w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref17,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 360px, 1560px) - 80px) / 2, 1px) * 0.373)`,src:\"https://framerusercontent.com/images/hHu9uA2IzwO5uHuNhMi2L5Xhuik.png\",srcSet:\"https://framerusercontent.com/images/hHu9uA2IzwO5uHuNhMi2L5Xhuik.png?scale-down-to=512 512w,https://framerusercontent.com/images/hHu9uA2IzwO5uHuNhMi2L5Xhuik.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hHu9uA2IzwO5uHuNhMi2L5Xhuik.png 1600w\"},className:\"framer-1wl0iv0\",\"data-framer-name\":\"image\",transformTemplate:transformTemplate2,whileHover:animation20})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.373)`,src:\"https://framerusercontent.com/images/mkjYj9EzjjV3DV4o6MCPa4pZs.png\",srcSet:\"https://framerusercontent.com/images/mkjYj9EzjjV3DV4o6MCPa4pZs.png?scale-down-to=512 512w,https://framerusercontent.com/images/mkjYj9EzjjV3DV4o6MCPa4pZs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mkjYj9EzjjV3DV4o6MCPa4pZs.png 1600w\"}},JzFPzPkCn:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.373)`,src:\"https://framerusercontent.com/images/mkjYj9EzjjV3DV4o6MCPa4pZs.png\",srcSet:\"https://framerusercontent.com/images/mkjYj9EzjjV3DV4o6MCPa4pZs.png?scale-down-to=512 512w,https://framerusercontent.com/images/mkjYj9EzjjV3DV4o6MCPa4pZs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mkjYj9EzjjV3DV4o6MCPa4pZs.png 1600w\"}},UqsXmKWpT:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px, 1560px) * 0.373)`,src:\"https://framerusercontent.com/images/mkjYj9EzjjV3DV4o6MCPa4pZs.png\",srcSet:\"https://framerusercontent.com/images/mkjYj9EzjjV3DV4o6MCPa4pZs.png?scale-down-to=512 512w,https://framerusercontent.com/images/mkjYj9EzjjV3DV4o6MCPa4pZs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mkjYj9EzjjV3DV4o6MCPa4pZs.png 1600w\"}},yv6tABt87:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 144px, 1560px) * 0.373)`,src:\"https://framerusercontent.com/images/mkjYj9EzjjV3DV4o6MCPa4pZs.png\",srcSet:\"https://framerusercontent.com/images/mkjYj9EzjjV3DV4o6MCPa4pZs.png?scale-down-to=512 512w,https://framerusercontent.com/images/mkjYj9EzjjV3DV4o6MCPa4pZs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mkjYj9EzjjV3DV4o6MCPa4pZs.png 1600w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref17,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 360px, 1560px) - 80px) / 2, 1px) * 0.373)`,src:\"https://framerusercontent.com/images/mkjYj9EzjjV3DV4o6MCPa4pZs.png\",srcSet:\"https://framerusercontent.com/images/mkjYj9EzjjV3DV4o6MCPa4pZs.png?scale-down-to=512 512w,https://framerusercontent.com/images/mkjYj9EzjjV3DV4o6MCPa4pZs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mkjYj9EzjjV3DV4o6MCPa4pZs.png 1600w\"},className:\"framer-hjlkhj\",\"data-framer-name\":\"image\",transformTemplate:transformTemplate2,whileHover:animation20})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.373)`,src:\"https://framerusercontent.com/images/I7aCrYFGOw5rC8UQ881IjNjnEs8.png\",srcSet:\"https://framerusercontent.com/images/I7aCrYFGOw5rC8UQ881IjNjnEs8.png?scale-down-to=512 512w,https://framerusercontent.com/images/I7aCrYFGOw5rC8UQ881IjNjnEs8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/I7aCrYFGOw5rC8UQ881IjNjnEs8.png 1600w\"}},JzFPzPkCn:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 200px, 1560px) - 80px) / 2, 1px) * 0.373)`,src:\"https://framerusercontent.com/images/I7aCrYFGOw5rC8UQ881IjNjnEs8.png\",srcSet:\"https://framerusercontent.com/images/I7aCrYFGOw5rC8UQ881IjNjnEs8.png?scale-down-to=512 512w,https://framerusercontent.com/images/I7aCrYFGOw5rC8UQ881IjNjnEs8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/I7aCrYFGOw5rC8UQ881IjNjnEs8.png 1600w\"}},UqsXmKWpT:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px, 1560px) * 0.373)`,src:\"https://framerusercontent.com/images/I7aCrYFGOw5rC8UQ881IjNjnEs8.png\",srcSet:\"https://framerusercontent.com/images/I7aCrYFGOw5rC8UQ881IjNjnEs8.png?scale-down-to=512 512w,https://framerusercontent.com/images/I7aCrYFGOw5rC8UQ881IjNjnEs8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/I7aCrYFGOw5rC8UQ881IjNjnEs8.png 1600w\"}},yv6tABt87:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 144px, 1560px) * 0.373)`,src:\"https://framerusercontent.com/images/I7aCrYFGOw5rC8UQ881IjNjnEs8.png\",srcSet:\"https://framerusercontent.com/images/I7aCrYFGOw5rC8UQ881IjNjnEs8.png?scale-down-to=512 512w,https://framerusercontent.com/images/I7aCrYFGOw5rC8UQ881IjNjnEs8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/I7aCrYFGOw5rC8UQ881IjNjnEs8.png 1600w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref17,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 360px, 1560px) - 80px) / 2, 1px) * 0.373)`,src:\"https://framerusercontent.com/images/I7aCrYFGOw5rC8UQ881IjNjnEs8.png\",srcSet:\"https://framerusercontent.com/images/I7aCrYFGOw5rC8UQ881IjNjnEs8.png?scale-down-to=512 512w,https://framerusercontent.com/images/I7aCrYFGOw5rC8UQ881IjNjnEs8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/I7aCrYFGOw5rC8UQ881IjNjnEs8.png 1600w\"},className:\"framer-ynd3hy\",\"data-framer-name\":\"image\",transformTemplate:transformTemplate2,whileHover:animation20})})]})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n8l948\",\"data-framer-name\":\"Subtitles Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wgraqb\",\"data-framer-name\":\"Subtitles Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6sfnx\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-125w7se\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JzFPzPkCn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJsYWNr\",\"--framer-font-family\":'\"Biennale Black\", \"Biennale Black Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(9, 34, 52)\"},children:\"Understand every detail with subtitles in your language\"})})},UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJsYWNr\",\"--framer-font-family\":'\"Biennale Black\", \"Biennale Black Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(9, 34, 52)\"},children:\"Understand every detail with subtitles in your language\"})})},yv6tABt87:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJsYWNr\",\"--framer-font-family\":'\"Biennale Black\", \"Biennale Black Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(9, 34, 52)\"},children:\"Understand every detail with subtitles in your language\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJsYWNr\",\"--framer-font-family\":'\"Biennale Black\", \"Biennale Black Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"rgb(9, 34, 52)\"},children:\"Understand every detail with subtitles in your language\"})}),className:\"framer-255t6a\",\"data-framer-name\":\"Understand every detail with\",fonts:[\"CUSTOM;Biennale Black\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JzFPzPkCn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(7, 26, 41)\"},children:\"All our videos are recorded in English with subtitles available in French, Hindi, Spanish, Chinese (Simplified), and German. Learn comfortably in the language that suits you best, and feel free to request subtitles in other languages if needed.\"})})},UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(7, 26, 41)\"},children:\"All our videos are recorded in English with subtitles available in French, Hindi, Spanish, Chinese (Simplified), and German. Learn comfortably in the language that suits you best, and feel free to request subtitles in other languages if needed.\"})})},yv6tABt87:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(7, 26, 41)\"},children:\"All our videos are recorded in English with subtitles available in French, Hindi, Spanish, Chinese (Simplified), and German. Learn comfortably in the language that suits you best, and feel free to request subtitles in other languages if needed.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(7, 26, 41)\"},children:\"All our videos are recorded in English with subtitles available in French, Hindi, Spanish, Chinese (Simplified), and German. Learn comfortably in the language that suits you best, and feel free to request subtitles in other languages if needed.\"})}),className:\"framer-1r8t4f8\",\"data-framer-name\":\"All our videos are recorded in English with subtitles available in French, Hindi, Spanish, Chinese (Simplified), and German. Learn comfortably in the language that suits you best, and feel free to request subtitles in other languages if needed.\",fonts:[\"CUSTOM;Biennale Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v9hvjt\",\"data-framer-name\":\"Video Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{width:`calc(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 272px) / 2, 1px) * 1.3777)`},JzFPzPkCn:{width:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 192px) * 1.3777)`},UqsXmKWpT:{width:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 48px) * 1.3777)`},yv6tABt87:{width:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 96px) * 1.3777)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:276,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 456px) / 2, 1px) * 1.3777)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jpuzla-container\",children:/*#__PURE__*/_jsx(SubtitlesTicker,{height:\"100%\",id:\"v34k0qWWt\",IMPSbQdLl:\"rgb(175, 212, 240)\",layoutId:\"v34k0qWWt\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 272px) / 2, 1px) * 0.6643)`,src:\"https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png\",srcSet:\"https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png?scale-down-to=512 512w,https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png 3120w\"}},JzFPzPkCn:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 192px) * 0.6607)`,src:\"https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png\",srcSet:\"https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png?scale-down-to=512 512w,https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png 3120w\"}},UqsXmKWpT:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 48px) * 0.9971)`,src:\"https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png\",srcSet:\"https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png?scale-down-to=512 512w,https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png 3120w\"}},yv6tABt87:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 96px) * 0.7643)`,src:\"https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png\",srcSet:\"https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png?scale-down-to=512 512w,https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png 3120w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 456px) / 2, 1px) * 0.6643)`,src:\"https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png\",srcSet:\"https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png?scale-down-to=512 512w,https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/84pSgtDWcyYYbWfE798mHO7JARo.png 3120w\"},className:\"framer-1xu01q3\",\"data-framer-name\":\"Video\",transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1w4nrhu\",\"data-framer-name\":\"Additional Controls\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:96,svg:'<svg width=\"96\" height=\"24\" viewBox=\"0 0 96 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1281_2280)\" filter=\"url(#filter0_d_1281_2280)\">\\n<path d=\"M19 4C19.7956 4 20.5587 4.31607 21.1213 4.87868C21.6839 5.44129 22 6.20435 22 7V17C22 17.7956 21.6839 18.5587 21.1213 19.1213C20.5587 19.6839 19.7956 20 19 20H5C4.20435 20 3.44129 19.6839 2.87868 19.1213C2.31607 18.5587 2 17.7956 2 17V7C2 6.20435 2.31607 5.44129 2.87868 4.87868C3.44129 4.31607 4.20435 4 5 4H19ZM8.5 8C7.83696 8 7.20107 8.26339 6.73223 8.73223C6.26339 9.20107 6 9.83696 6 10.5V13.5C6 14.163 6.26339 14.7989 6.73223 15.2678C7.20107 15.7366 7.83696 16 8.5 16C9.16304 16 9.79893 15.7366 10.2678 15.2678C10.7366 14.7989 11 14.163 11 13.5C11 13.2348 10.8946 12.9804 10.7071 12.7929C10.5196 12.6054 10.2652 12.5 10 12.5C9.73478 12.5 9.48043 12.6054 9.29289 12.7929C9.10536 12.9804 9 13.2348 9 13.5C9 13.6326 8.94732 13.7598 8.85355 13.8536C8.75979 13.9473 8.63261 14 8.5 14C8.36739 14 8.24021 13.9473 8.14645 13.8536C8.05268 13.7598 8 13.6326 8 13.5V10.5C8 10.3674 8.05268 10.2402 8.14645 10.1464C8.24021 10.0527 8.36739 10 8.5 10C8.63261 10 8.75979 10.0527 8.85355 10.1464C8.94732 10.2402 9 10.3674 9 10.5C9 10.7652 9.10536 11.0196 9.29289 11.2071C9.48043 11.3946 9.73478 11.5 10 11.5C10.2652 11.5 10.5196 11.3946 10.7071 11.2071C10.8946 11.0196 11 10.7652 11 10.5C11 9.83696 10.7366 9.20107 10.2678 8.73223C9.79893 8.26339 9.16304 8 8.5 8ZM15.5 8C14.837 8 14.2011 8.26339 13.7322 8.73223C13.2634 9.20107 13 9.83696 13 10.5V13.5C13 14.163 13.2634 14.7989 13.7322 15.2678C14.2011 15.7366 14.837 16 15.5 16C16.163 16 16.7989 15.7366 17.2678 15.2678C17.7366 14.7989 18 14.163 18 13.5C18 13.2348 17.8946 12.9804 17.7071 12.7929C17.5196 12.6054 17.2652 12.5 17 12.5C16.7348 12.5 16.4804 12.6054 16.2929 12.7929C16.1054 12.9804 16 13.2348 16 13.5C16 13.6326 15.9473 13.7598 15.8536 13.8536C15.7598 13.9473 15.6326 14 15.5 14C15.3674 14 15.2402 13.9473 15.1464 13.8536C15.0527 13.7598 15 13.6326 15 13.5V10.5C15 10.3674 15.0527 10.2402 15.1464 10.1464C15.2402 10.0527 15.3674 10 15.5 10C15.6326 10 15.7598 10.0527 15.8536 10.1464C15.9473 10.2402 16 10.3674 16 10.5C16 10.7652 16.1054 11.0196 16.2929 11.2071C16.4804 11.3946 16.7348 11.5 17 11.5C17.2652 11.5 17.5196 11.3946 17.7071 11.2071C17.8946 11.0196 18 10.7652 18 10.5C18 9.83696 17.7366 9.20107 17.2678 8.73223C16.7989 8.26339 16.163 8 15.5 8Z\" fill=\"white\"/>\\n</g>\\n<g clip-path=\"url(#clip1_1281_2280)\" filter=\"url(#filter1_d_1281_2280)\">\\n<path d=\"M50.647 4.08125C50.6738 4.19198 50.7264 4.29482 50.8005 4.3814C50.8745 4.46798 50.968 4.53585 51.0732 4.57951C51.1785 4.62316 51.2925 4.64136 51.4061 4.63263C51.5197 4.6239 51.6297 4.58848 51.727 4.52925C54.166 3.04425 56.957 5.83425 55.472 8.27325C55.4128 8.37051 55.3773 8.48038 55.3685 8.59392C55.3597 8.70746 55.3778 8.82148 55.4214 8.9267C55.465 9.03192 55.5327 9.12539 55.6192 9.19951C55.7056 9.27362 55.8084 9.3263 55.919 9.35325C58.694 10.0263 58.694 13.9733 55.919 14.6473C55.8083 14.6741 55.7054 14.7267 55.6189 14.8007C55.5323 14.8748 55.4644 14.9682 55.4207 15.0735C55.3771 15.1787 55.3589 15.2928 55.3676 15.4064C55.3764 15.52 55.4118 15.6299 55.471 15.7273C56.956 18.1662 54.166 20.9572 51.727 19.4722C51.6297 19.413 51.5199 19.3776 51.4063 19.3688C51.2928 19.36 51.1788 19.3781 51.0736 19.4216C50.9683 19.4652 50.8749 19.533 50.8007 19.6194C50.7266 19.7059 50.674 19.8086 50.647 19.9193C49.974 22.6943 46.027 22.6943 45.353 19.9193C45.3262 19.8085 45.2736 19.7057 45.1995 19.6191C45.1255 19.5325 45.032 19.4646 44.9268 19.421C44.8215 19.3773 44.7075 19.3591 44.5939 19.3679C44.4803 19.3766 44.3703 19.412 44.273 19.4713C41.834 20.9563 39.043 18.1662 40.528 15.7273C40.5872 15.63 40.6227 15.5201 40.6315 15.4066C40.6403 15.293 40.6222 15.179 40.5786 15.0738C40.5351 14.9686 40.4673 14.8751 40.3808 14.801C40.2944 14.7269 40.1917 14.6742 40.081 14.6473C37.306 13.9743 37.306 10.0273 40.081 9.35325C40.1917 9.32642 40.2946 9.27384 40.3812 9.19977C40.4677 9.12571 40.5356 9.03226 40.5793 8.92702C40.6229 8.82178 40.6411 8.70772 40.6324 8.59412C40.6237 8.48052 40.5882 8.37058 40.529 8.27325C39.044 5.83425 41.834 3.04325 44.273 4.52825C44.3702 4.58793 44.4801 4.62375 44.5938 4.63277C44.7074 4.64179 44.8216 4.62375 44.927 4.58015C45.0324 4.53654 45.1259 4.46859 45.1999 4.38188C45.274 4.29516 45.3264 4.19214 45.353 4.08125C46.026 1.30625 49.973 1.30625 50.647 4.08125ZM48 9.00025C47.2044 9.00025 46.4413 9.31632 45.8787 9.87893C45.3161 10.4415 45 11.2046 45 12.0002C45 12.7959 45.3161 13.559 45.8787 14.1216C46.4413 14.6842 47.2044 15.0002 48 15.0002C48.7957 15.0002 49.5587 14.6842 50.1213 14.1216C50.6839 13.559 51 12.7959 51 12.0002C51 11.2046 50.6839 10.4415 50.1213 9.87893C49.5587 9.31632 48.7957 9.00025 48 9.00025Z\" fill=\"white\"/>\\n</g>\\n<g clip-path=\"url(#clip2_1281_2280)\" filter=\"url(#filter2_d_1281_2280)\">\\n<path d=\"M76 8V6C76 5.46957 76.2107 4.96086 76.5858 4.58579C76.9609 4.21071 77.4696 4 78 4H80\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M76 16V18C76 18.5304 76.2107 19.0391 76.5858 19.4142C76.9609 19.7893 77.4696 20 78 20H80\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M88 4H90C90.5304 4 91.0391 4.21071 91.4142 4.58579C91.7893 4.96086 92 5.46957 92 6V8\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M88 20H90C90.5304 20 91.0391 19.7893 91.4142 19.4142C91.7893 19.0391 92 18.5304 92 18V16\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_1281_2280\" x=\"-2\" y=\"-1\" width=\"30\" height=\"30\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"1\" dy=\"2\"/>\\n<feGaussianBlur stdDeviation=\"1.5\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.16 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_1281_2280\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_1281_2280\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_d_1281_2280\" x=\"34\" y=\"-1\" width=\"30\" height=\"30\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"1\" dy=\"2\"/>\\n<feGaussianBlur stdDeviation=\"1.5\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.16 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_1281_2280\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_1281_2280\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_d_1281_2280\" x=\"70\" y=\"-1\" width=\"30\" height=\"30\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"1\" dy=\"2\"/>\\n<feGaussianBlur stdDeviation=\"1.5\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.16 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_1281_2280\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_1281_2280\" result=\"shape\"/>\\n</filter>\\n<clipPath id=\"clip0_1281_2280\">\\n<rect width=\"24\" height=\"24\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_1281_2280\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(36)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_1281_2280\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(72)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nvemeg\",\"data-framer-name\":\"Playback Controls\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:132,svg:'<svg width=\"132\" height=\"24\" viewBox=\"0 0 132 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1281_2295)\" filter=\"url(#filter0_d_1281_2295)\">\\n<path d=\"M6 4.00028V20.0003C5.99995 20.1782 6.04737 20.3529 6.13738 20.5064C6.22739 20.6599 6.35672 20.7866 6.51202 20.8734C6.66733 20.9602 6.84299 21.0041 7.02088 21.0003C7.19878 20.9966 7.37245 20.9455 7.524 20.8523L20.524 12.8523C20.6696 12.7628 20.7898 12.6375 20.8733 12.4884C20.9567 12.3392 21.0005 12.1712 21.0005 12.0003C21.0005 11.8294 20.9567 11.6613 20.8733 11.5122C20.7898 11.363 20.6696 11.2378 20.524 11.1483L7.524 3.14828C7.37245 3.05505 7.19878 3.00393 7.02088 3.00022C6.84299 2.9965 6.66733 3.04032 6.51202 3.12714C6.35672 3.21397 6.22739 3.34066 6.13738 3.49414C6.04737 3.64763 5.99995 3.82235 6 4.00028Z\" fill=\"white\"/>\\n</g>\\n<g clip-path=\"url(#clip1_1281_2295)\" filter=\"url(#filter1_d_1281_2295)\">\\n<path d=\"M43 9L40 6L43 3\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M51.997 17.918C53.4781 17.6646 54.8102 16.8649 55.7302 15.6769C56.6502 14.4888 57.0911 12.999 56.9658 11.5016C56.8406 10.0043 56.1582 8.60838 55.0536 7.58974C53.9491 6.5711 52.5026 6.00383 51 6H40\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M42 14V20\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M45 15.5V18.5C45 18.8978 45.158 19.2794 45.4393 19.5607C45.7206 19.842 46.1022 20 46.5 20C46.8978 20 47.2794 19.842 47.5607 19.5607C47.842 19.2794 48 18.8978 48 18.5V15.5C48 15.1022 47.842 14.7206 47.5607 14.4393C47.2794 14.158 46.8978 14 46.5 14C46.1022 14 45.7206 14.158 45.4393 14.4393C45.158 14.7206 45 15.1022 45 15.5Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip2_1281_2295)\" filter=\"url(#filter2_d_1281_2295)\">\\n<path d=\"M89 9L92 6L89 3\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M80 17.918C78.6013 17.6822 77.3315 16.9582 76.4161 15.8748C75.5007 14.7913 74.9989 13.4184 75 12C75 10.4087 75.6321 8.88258 76.7574 7.75736C77.8826 6.63214 79.4087 6 81 6H92\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M84 14V20\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M87 15.5V18.5C87 18.8978 87.158 19.2794 87.4393 19.5607C87.7206 19.842 88.1022 20 88.5 20C88.8978 20 89.2794 19.842 89.5607 19.5607C89.842 19.2794 90 18.8978 90 18.5V15.5C90 15.1022 89.842 14.7206 89.5607 14.4393C89.2794 14.158 88.8978 14 88.5 14C88.1022 14 87.7206 14.158 87.4393 14.4393C87.158 14.7206 87 15.1022 87 15.5Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip3_1281_2295)\" filter=\"url(#filter3_d_1281_2295)\">\\n<path d=\"M114 15.0002H112C111.735 15.0002 111.48 14.8949 111.293 14.7073C111.105 14.5198 111 14.2654 111 14.0002V10.0002C111 9.735 111.105 9.48065 111.293 9.29311C111.48 9.10557 111.735 9.00022 112 9.00022H114L117.5 4.50022C117.587 4.33045 117.733 4.19754 117.909 4.12551C118.086 4.05348 118.283 4.04708 118.464 4.10746C118.645 4.16784 118.799 4.29103 118.897 4.45476C118.995 4.61849 119.032 4.81196 119 5.00022V19.0002C119.032 19.1885 118.995 19.3819 118.897 19.5457C118.799 19.7094 118.645 19.8326 118.464 19.893C118.283 19.9534 118.086 19.947 117.909 19.8749C117.733 19.8029 117.587 19.67 117.5 19.5002L114 15.0002Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M124 10L128 14M128 10L124 14\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_1281_2295\" x=\"-2\" y=\"-1\" width=\"30\" height=\"30\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"1\" dy=\"2\"/>\\n<feGaussianBlur stdDeviation=\"1.5\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.16 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_1281_2295\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_1281_2295\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_d_1281_2295\" x=\"34\" y=\"-1\" width=\"30\" height=\"30\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"1\" dy=\"2\"/>\\n<feGaussianBlur stdDeviation=\"1.5\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.16 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_1281_2295\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_1281_2295\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_d_1281_2295\" x=\"70\" y=\"-1\" width=\"30\" height=\"30\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"1\" dy=\"2\"/>\\n<feGaussianBlur stdDeviation=\"1.5\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.16 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_1281_2295\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_1281_2295\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter3_d_1281_2295\" x=\"106\" y=\"-1\" width=\"30\" height=\"30\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"1\" dy=\"2\"/>\\n<feGaussianBlur stdDeviation=\"1.5\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.16 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_1281_2295\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_1281_2295\" result=\"shape\"/>\\n</filter>\\n<clipPath id=\"clip0_1281_2295\">\\n<rect width=\"24\" height=\"24\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_1281_2295\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(36)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_1281_2295\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(72)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_1281_2295\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(108)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ayqn96\",\"data-framer-name\":\"Progress Bar\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bgqes7\",\"data-framer-name\":\"Current Progress\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"00:37\"})}),className:\"framer-1w9qf5b\",\"data-framer-name\":\"Start Time\",fonts:[\"CUSTOM;Biennale SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"03:28\"})}),className:\"framer-cpiwwr\",\"data-framer-name\":\"End Time\",fonts:[\"CUSTOM;Biennale SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__loop:animation21,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:1,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition19,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dizgf1\",\"data-border\":true,\"data-framer-name\":\"Language Selection\",style:{originX:1,originY:1},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fhxuz2\",\"data-framer-name\":\"Language Option\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"English\"})}),className:\"framer-1pqff4x\",\"data-framer-name\":\"Language Text\",fonts:[\"CUSTOM;Biennale SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1745yk8\",\"data-framer-name\":\"Language Option\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"French (Fran\\xe7ais)\"})}),className:\"framer-1eznbkt\",\"data-framer-name\":\"Language Text\",fonts:[\"CUSTOM;Biennale SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v3mx5\",\"data-framer-name\":\"Language Option\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Hindi (\u0939\u093F\u0928\u094D\u0926\u0940)\"})}),className:\"framer-ahy5w5\",\"data-framer-name\":\"Language Text\",fonts:[\"CUSTOM;Biennale SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1glwta2\",\"data-framer-name\":\"Language Option\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Spanish (Espa\\xf1ol)\"})}),className:\"framer-iif4vc\",\"data-framer-name\":\"Language Text\",fonts:[\"CUSTOM;Biennale SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4nbes0\",\"data-framer-name\":\"Language Option\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Chinese Simplified (\u7B80\u4F53\u4E2D\u6587)\"})}),className:\"framer-1jnvk5t\",\"data-framer-name\":\"Language Text\",fonts:[\"CUSTOM;Biennale SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zd02rf\",\"data-framer-name\":\"Language Option\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"German (Deutsch)\"})}),className:\"framer-1toyabd\",\"data-framer-name\":\"Language Text\",fonts:[\"CUSTOM;Biennale SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2nx0so\",\"data-framer-name\":\"Testimonials\",id:elementId11,ref:ref6,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j48tp0\",\"data-framer-name\":\"Frame 1321314969\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"Q1VTVE9NO0Fkb3JhYmxlIFF1b3RlcyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Adorable Quotes Display Regular\", \"Adorable Quotes Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\",\"--framer-text-transform\":\"uppercase\"},children:\"Real designers. Real testimonials.\"})})},JzFPzPkCn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"Q1VTVE9NO0Fkb3JhYmxlIFF1b3RlcyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Adorable Quotes Display Regular\", \"Adorable Quotes Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\",\"--framer-text-transform\":\"uppercase\"},children:\"Real designers. Real testimonials.\"})})},UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"Q1VTVE9NO0Fkb3JhYmxlIFF1b3RlcyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Adorable Quotes Display Regular\", \"Adorable Quotes Display Regular Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\",\"--framer-text-transform\":\"uppercase\"},children:\"Real designers. Real testimonials.\"})})},yv6tABt87:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"Q1VTVE9NO0Fkb3JhYmxlIFF1b3RlcyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Adorable Quotes Display Regular\", \"Adorable Quotes Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\",\"--framer-text-transform\":\"uppercase\"},children:\"Real designers. Real testimonials.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"Q1VTVE9NO0Fkb3JhYmxlIFF1b3RlcyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Adorable Quotes Display Regular\", \"Adorable Quotes Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\",\"--framer-text-transform\":\"uppercase\"},children:\"Real designers. Real testimonials.\"})}),className:\"framer-fudwki\",\"data-framer-name\":\"Real designers. Real testimonials.\",fonts:[\"CUSTOM;Adorable Quotes Display Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJsYWNr\",\"--framer-font-family\":'\"Biennale Black\", \"Biennale Black Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"68px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(2601deg, rgb(124, 124, 124) 0%, rgb(29, 29, 29) 32.9385%, rgb(121, 121, 121) 99.4792%)\"},children:\"Don\u2019t just take our word for it\"})})})},JzFPzPkCn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJsYWNr\",\"--framer-font-family\":'\"Biennale Black\", \"Biennale Black Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"64px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(2601deg, rgb(124, 124, 124) 0%, rgb(29, 29, 29) 32.9385%, rgb(121, 121, 121) 99.4792%)\"},children:\"Don\u2019t just take our word for it\"})})})},UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJsYWNr\",\"--framer-font-family\":'\"Biennale Black\", \"Biennale Black Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(2601deg, rgb(124, 124, 124) 0%, rgb(29, 29, 29) 32.9385%, rgb(121, 121, 121) 99.4792%)\"},children:\"Don\u2019t just take our word for it\"})})})},yv6tABt87:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJsYWNr\",\"--framer-font-family\":'\"Biennale Black\", \"Biennale Black Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"64px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(2601deg, rgb(124, 124, 124) 0%, rgb(29, 29, 29) 32.9385%, rgb(121, 121, 121) 99.4792%)\"},children:\"Don\u2019t just take our word for it\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJsYWNr\",\"--framer-font-family\":'\"Biennale Black\", \"Biennale Black Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"76px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(2601deg, rgb(124, 124, 124) 0%, rgb(29, 29, 29) 32.9385%, rgb(121, 121, 121) 99.4792%)\"},children:\"Don\u2019t just take our word for it\"})})}),className:\"framer-1g5ub7x\",\"data-framer-name\":\"Don\u2019t just take our word for it\",fonts:[\"CUSTOM;Biennale Black\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iixvl7\",\"data-framer-name\":\"testimonials-wrapper\",children:/*#__PURE__*/_jsxs(MotionDivWithToggleTestimonials,{className:\"framer-sdgdfz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-w52ie-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JzFPzPkCn:{columns:2},UqsXmKWpT:{columns:1},yv6tABt87:{columns:2}},children:/*#__PURE__*/_jsx(MasonryLayout,{autoArrange:true,columns:3,columnWidth:\"fill\",gap:32,height:\"100%\",id:\"zjqtEs17D\",layers:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:248,width:\"408px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11hrzpf-container\",children:/*#__PURE__*/_jsx(TestimonialsTestimonialCardGrids,{aL8n1ZiKL:\"@danadesign.se\",bmwYwvpz_:\"https://www.instagram.com/danadesign.se\",fJmjMaVNY:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{children:[\"I recently took Andrija\u2019s Ultimate UI Grids and Layout Masterclass and it was fantastic! The course is both fun and filled with detailed, useful information about UI design. \",/*#__PURE__*/_jsx(\"strong\",{children:\"Andrija\u2019s enthusiasm and deep knowledge\"}),\" make every minute \",/*#__PURE__*/_jsx(\"strong\",{children:\"exciting and educational.\"})]}),/*#__PURE__*/_jsxs(\"p\",{children:[\"The lessons are packed with \",/*#__PURE__*/_jsx(\"strong\",{children:\"real-life examples\"}),\" and funny comparisons that make complex ideas simple and memorable. The course is a must for beginners and will be a great value for experienced designers, as it offers valuable insights for improving your skills.\"]}),/*#__PURE__*/_jsxs(\"p\",{children:[\"The mix of theory, hands-on practice, and detailed Figma demos makes learning effective and engaging. \",/*#__PURE__*/_jsx(\"strong\",{children:\"Lessons are short and easy to understand\"}),\", and the extra PDF resources are incredibly helpful.\"]}),/*#__PURE__*/_jsx(\"p\",{children:\"I especially loved the comprehensive module on responsive design as it was my weak point. This masterclass is a must for anyone looking to get better at UI design. Highly recommend it! \uD83D\uDC4F\"})]}),height:\"100%\",id:\"Je5cht8yV\",j51UPcPUf:true,layoutId:\"Je5cht8yV\",s6weZ9qiW:addImageAlt({src:\"https://framerusercontent.com/images/RoahxQNzLM0mqU363rWJlsqZw.png\",srcSet:\"https://framerusercontent.com/images/RoahxQNzLM0mqU363rWJlsqZw.png?scale-down-to=512 512w,https://framerusercontent.com/images/RoahxQNzLM0mqU363rWJlsqZw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RoahxQNzLM0mqU363rWJlsqZw.png 1065w\"},\"\"),style:{width:\"100%\"},width:\"100%\",x7DGBWrrV:\"Dana\",ynU7tX4cK:0})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:248,width:\"408px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-zaatrt-container\",children:/*#__PURE__*/_jsx(TestimonialsTestimonialCardGrids,{aL8n1ZiKL:\"uxui.hadi\",bmwYwvpz_:\"https://www.instagram.com/uxui.hadi\",fJmjMaVNY:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{children:[\"This course \",/*#__PURE__*/_jsx(\"strong\",{children:\"exceeded all my expectations.\"}),\" Initially, I thought it would be a typical 4-hour session covering the basics of grids and layouts.\"]}),/*#__PURE__*/_jsxs(\"p\",{children:[\"However, \",/*#__PURE__*/_jsx(\"strong\",{children:\"I was surprised\"}),\" by the amount of information it provided, truly \",/*#__PURE__*/_jsx(\"strong\",{children:\"a hidden gem \"}),\"that more people should know about.\"]}),/*#__PURE__*/_jsx(\"p\",{children:\"I highly recommend it to everyone, regardless of whether you're just starting out or have years of experience.\"})]}),height:\"100%\",id:\"MKWRl34nd\",j51UPcPUf:true,layoutId:\"MKWRl34nd\",s6weZ9qiW:addImageAlt({src:\"https://framerusercontent.com/images/3LpYaml10GZ7SBbMYPxE6KlQQuk.png\"},\"\"),style:{width:\"100%\"},width:\"100%\",x7DGBWrrV:\"Hadi\",ynU7tX4cK:0})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:248,width:\"408px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-14xzfae-container\",children:/*#__PURE__*/_jsx(TestimonialsTestimonialCardGrids,{aL8n1ZiKL:\"@uiux.asim\",bmwYwvpz_:\"https://www.instagram.com/uiux.asim\",fJmjMaVNY:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"I\u2019m really impressed with the quality of this course. Andrija, with his decade of experience, explains each concept so clearly.\"}),/*#__PURE__*/_jsxs(\"p\",{children:[\"This is definitely \",/*#__PURE__*/_jsx(\"strong\",{children:\"one of the best courses\"}),\" for mastering UI design. It covers all the essential foundations that every pro designer knows, and the \",/*#__PURE__*/_jsx(\"strong\",{children:\"assignments are top-notch.\"})]}),/*#__PURE__*/_jsx(\"p\",{children:\"The team did a fantastic job creating such a value-packed course. If you\u2019re looking for a course that delivers real value, I highly recommend this one.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"You\u2019ll be ready to excel in your UI designs after learning and applying everything taught here.\uD83D\uDD25\"})]}),height:\"100%\",id:\"JWGzVNI_1\",j51UPcPUf:true,layoutId:\"JWGzVNI_1\",s6weZ9qiW:addImageAlt({src:\"https://framerusercontent.com/images/Uv54yd6DyH0CLkaHgH5PdTDOvmI.png\",srcSet:\"https://framerusercontent.com/images/Uv54yd6DyH0CLkaHgH5PdTDOvmI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Uv54yd6DyH0CLkaHgH5PdTDOvmI.png 960w\"},\"\"),style:{width:\"100%\"},width:\"100%\",x7DGBWrrV:\"Asim\",ynU7tX4cK:0})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:248,width:\"408px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-sl3d2h-container\",children:/*#__PURE__*/_jsx(TestimonialsTestimonialCardGrids,{aL8n1ZiKL:\"@thetimgale\",bmwYwvpz_:\"https://www.instagram.com/thetimgale\",fJmjMaVNY:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{children:[\"Spacing, grids and layout are core fundamentals of visual design, and once you understand them, you\u2019re well on your way to creating effective, intuitive interfaces. This course introduces these concepts using \",/*#__PURE__*/_jsx(\"strong\",{children:\"familiar examples\"}),\" and not only breaks down the component parts of each concept, but \",/*#__PURE__*/_jsx(\"strong\",{children:\"shows you how they work\"}),\" together so you can \",/*#__PURE__*/_jsx(\"strong\",{children:\"apply them\"}),\" to your designs \",/*#__PURE__*/_jsx(\"strong\",{children:\"today.\"})]}),/*#__PURE__*/_jsxs(\"p\",{children:[\"Designing your UI is only part of the process. Understanding how an interface is actually built is just as crucial. The way this course goes into the box model will really help you \",/*#__PURE__*/_jsx(\"strong\",{children:\"work closer with engineers\"}),\", giving you a shared language to use as you collaborate.\"]}),/*#__PURE__*/_jsxs(\"p\",{children:[\"Exploring the \",/*#__PURE__*/_jsx(\"strong\",{children:\"latest layout features\"}),\" in your design tool is great, but knowing how to arrange elements to meet the needs of your user and the business is the real goal. This course gives you the knowledge to do this in an effective and repeatable way.\"]})]}),height:\"100%\",id:\"sf9CtsGYq\",j51UPcPUf:true,layoutId:\"sf9CtsGYq\",s6weZ9qiW:addImageAlt({src:\"https://framerusercontent.com/images/XOD3OJYqqmzfpAQZswUWfqfb8.png\",srcSet:\"https://framerusercontent.com/images/XOD3OJYqqmzfpAQZswUWfqfb8.png?scale-down-to=512 512w,https://framerusercontent.com/images/XOD3OJYqqmzfpAQZswUWfqfb8.png 800w\"},\"\"),style:{width:\"100%\"},width:\"100%\",x7DGBWrrV:\"Tim\",ynU7tX4cK:0})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:248,width:\"408px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-14lob3s-container\",children:/*#__PURE__*/_jsx(TestimonialsTestimonialCardGrids,{aL8n1ZiKL:\"@basit.designs\",bmwYwvpz_:\"https://www.instagram.com/basit.designs\",fJmjMaVNY:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{children:[\"The Ultimate UI Grids & Layouts Masterclass by Andrija is a game-changer! Whether you're a beginner or a mid-level designer, \",/*#__PURE__*/_jsx(\"strong\",{children:\"this course covers everything\"}),\" you need to master UI grids and layouts\u2014from foundational principles to practical applications.\"]}),/*#__PURE__*/_jsxs(\"p\",{children:[\"Andrija's teaching \",/*#__PURE__*/_jsx(\"strong\",{children:\"makes complex topics simple and engaging\"}),\", with clear explanations on visual hierarchy, composition, and responsiveness.\"]}),/*#__PURE__*/_jsxs(\"p\",{children:[\"The bonus tips, Figma files, and additional resources are just \",/*#__PURE__*/_jsx(\"strong\",{children:\"icing on the cake.\"}),\" Highly recommended for anyone serious about leveling up their UI design skills!\"]})]}),height:\"100%\",id:\"YSIqCBsNV\",j51UPcPUf:true,layoutId:\"YSIqCBsNV\",s6weZ9qiW:addImageAlt({src:\"https://framerusercontent.com/images/djVWvFK0St1Zpiwrmi85lz0zA.png\",srcSet:\"https://framerusercontent.com/images/djVWvFK0St1Zpiwrmi85lz0zA.png?scale-down-to=512 512w,https://framerusercontent.com/images/djVWvFK0St1Zpiwrmi85lz0zA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/djVWvFK0St1Zpiwrmi85lz0zA.png 1080w\"},\"\"),style:{width:\"100%\"},width:\"100%\",x7DGBWrrV:\"Basit\",ynU7tX4cK:0})})})],layoutId:\"zjqtEs17D\",style:{width:\"100%\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithExpandButtonWithOptimizedAppearEffect,{animate:animation22,className:\"framer-1he8jd2 hidden-9u1kxi hidden-aejagu hidden-ki4of hidden-vdtdcu\",\"data-framer-appear-id\":\"1he8jd2\",\"data-framer-name\":\"Button\",initial:animation23,optimized:true,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIEJvbGQ=\",\"--framer-font-family\":'\"Biennale Bold\", \"Biennale Bold Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(39, 39, 39)\"},children:\"Show More\"})}),className:\"framer-qv3hsu\",\"data-framer-name\":\"Get 4 Free Lessons\",fonts:[\"CUSTOM;Biennale Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFadeOut,{className:\"framer-vcpnsb hidden-9u1kxi hidden-aejagu hidden-ki4of hidden-vdtdcu\",\"data-framer-name\":\"Fade Out\"})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5vs284\",\"data-framer-name\":\"Pricing 1\",id:elementId12,ref:ref7,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dkbnjr\",\"data-framer-name\":\"Video Features 5\",id:elementId13,ref:ref18,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1flg01h\",\"data-styles-preset\":\"Lq1Eh5aed\",style:{\"--framer-text-color\":\"rgba(192, 209, 235, 0.66)\"},children:\"Our courses are trusted by students from\"})}),className:\"framer-1x75r9n\",\"data-framer-name\":\"Trusted by students from\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13ypevi-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",hoverFactor:.5,id:\"BNNbVlOWr\",layoutId:\"BNNbVlOWr\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://www.endava.com/?ref=supercharge.design\",nodeId:\"Yq2MODujf\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1r45hz3 framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 Endava\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1sopqgl\",\"data-framer-name\":\"06-endava (Traced)\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 85 28\"><path d=\"M 9.192 0.196 C 7.627 0.704 7.089 1.647 6.983 4.072 C 6.868 6.708 6.823 6.757 4.379 6.884 C 0.817 7.069 -0.834 8.985 0.413 11.488 C 1.098 12.863 1.779 13.196 4.098 13.292 C 6.792 13.402 6.871 13.481 6.981 16.166 C 7.133 19.864 9.995 21.521 12.354 19.278 C 14.878 16.878 13.116 13.605 9.3 13.605 C 6.712 13.605 6.68 13.56 6.674 9.988 L 6.669 7.234 L 7.072 6.853 C 7.461 6.487 7.57 6.472 10.102 6.424 C 13.618 6.358 13.59 6.338 13.724 9.031 C 13.918 12.907 16.741 14.62 19.228 12.371 C 21.755 10.087 20.017 6.866 16.256 6.865 C 13.778 6.864 13.602 6.677 13.516 3.961 C 13.422 1.013 11.59 -0.582 9.192 0.196 Z M 16.09 0.2 C 13.262 1.084 12.872 4.716 15.461 6.05 C 16.061 6.36 16.498 6.441 17.884 6.501 C 20.573 6.618 20.592 6.643 20.592 10.093 C 20.592 13.728 20.559 13.761 16.994 13.761 C 13.641 13.761 13.606 13.733 13.511 10.988 C 13.374 6.985 9.585 5.304 7.499 8.32 C 5.845 10.71 7.607 13.291 10.893 13.291 C 13.339 13.291 13.709 13.61 13.709 15.719 C 13.709 18.775 15.005 20.373 17.303 20.152 C 19.308 19.959 20.279 18.683 20.279 16.239 C 20.279 13.618 20.559 13.292 22.811 13.29 C 25.787 13.288 27.293 12.077 27.13 9.815 C 26.987 7.839 25.706 6.865 23.25 6.865 C 20.614 6.865 20.279 6.54 20.279 3.975 C 20.279 1.049 18.5 -0.554 16.09 0.2 Z M 51.958 12.635 L 50.863 13.213 L 50.819 15.203 L 50.775 17.194 L 50.234 16.826 C 47.335 14.855 43.9 17.222 43.63 21.376 C 43.31 26.289 46.439 29.315 49.897 27.438 L 50.767 26.966 L 50.815 27.377 C 50.862 27.78 50.886 27.788 52.036 27.788 L 53.209 27.788 L 53.25 20.04 C 53.272 15.778 53.237 12.238 53.172 12.174 C 53.106 12.11 52.56 12.317 51.958 12.635 Z M 26.339 16.274 C 21.437 17.507 21.075 25.897 25.845 27.705 C 27.445 28.311 29.668 27.925 31.061 26.799 L 31.44 26.493 L 30.826 25.774 C 30.106 24.931 30.122 24.934 29.13 25.438 C 27.56 26.236 26.133 25.846 25.402 24.419 C 24.642 22.934 24.451 23.02 28.609 22.972 L 32.247 22.93 L 32.228 21.519 C 32.181 17.86 29.505 15.477 26.339 16.274 Z M 37.366 16.334 C 36.998 16.454 36.53 16.661 36.326 16.795 C 35.982 17.021 35.95 17.017 35.876 16.732 C 35.805 16.462 35.655 16.426 34.608 16.426 L 33.42 16.426 L 33.42 22.074 L 33.42 27.723 L 34.632 27.677 L 35.845 27.632 L 35.923 23.713 C 36.021 18.772 36.316 18.121 38.328 18.391 C 39.987 18.615 40.139 19.077 40.143 23.909 L 40.147 27.71 L 41.398 27.71 L 42.65 27.71 L 42.65 24.035 C 42.65 19.378 42.428 18.255 41.295 17.178 C 40.383 16.311 38.607 15.929 37.366 16.334 Z M 57.936 16.283 C 55.196 16.93 53.755 20.327 54.603 24.143 C 55.317 27.358 57.935 28.789 60.642 27.445 L 61.564 26.987 L 61.61 27.388 C 61.655 27.778 61.688 27.788 62.83 27.788 L 64.003 27.788 L 64.003 22.146 L 64.003 16.504 L 62.83 16.504 C 61.73 16.504 61.653 16.526 61.606 16.859 L 61.556 17.214 L 61.155 16.898 C 60.352 16.265 59.059 16.018 57.936 16.283 Z M 78.239 16.252 C 73.976 17.364 73.186 25.542 77.154 27.487 C 78.514 28.153 81 27.933 81.513 27.101 C 81.701 26.797 81.893 26.911 81.944 27.357 C 81.993 27.782 82.01 27.788 83.089 27.788 L 84.184 27.788 L 84.225 22.107 L 84.266 16.426 L 83.09 16.426 C 81.94 16.426 81.915 16.434 81.915 16.819 L 81.915 17.212 L 81.094 16.75 C 80.216 16.255 79.024 16.047 78.239 16.252 Z M 64.707 16.509 C 64.707 16.561 65.016 17.463 65.393 18.513 C 65.77 19.563 66.66 22.062 67.371 24.066 L 68.664 27.71 L 69.877 27.71 C 71.058 27.71 71.095 27.699 71.249 27.279 C 71.587 26.357 73.326 21.557 74.158 19.248 C 75.26 16.188 75.291 16.426 73.788 16.426 L 72.544 16.426 L 71.354 20.148 C 70.699 22.195 70.11 24.046 70.043 24.261 C 69.947 24.574 69.661 23.846 68.601 20.578 L 67.28 16.504 L 65.994 16.459 C 65.286 16.434 64.707 16.456 64.707 16.509 Z M 28.743 18.733 C 29.231 19.022 29.822 20.059 29.822 20.629 C 29.822 20.966 29.786 20.971 27.397 20.971 C 24.625 20.971 24.637 20.979 25.308 19.592 C 25.894 18.378 27.475 17.983 28.743 18.733 Z M 50.039 19.045 L 50.706 19.528 L 50.749 21.998 C 50.798 24.776 50.76 24.884 49.5 25.531 C 47.573 26.521 46.227 25.298 46.118 22.459 C 45.982 18.878 47.721 17.363 50.039 19.045 Z M 60.215 18.683 C 60.492 18.804 60.912 19.089 61.148 19.316 L 61.578 19.73 L 61.578 22.123 L 61.578 24.517 L 61.148 24.92 C 58.869 27.056 56.964 25.758 56.964 22.068 C 56.964 18.889 58.063 17.744 60.215 18.683 Z M 80.631 18.76 C 81.761 19.338 81.772 19.373 81.724 22.218 L 81.681 24.764 L 81 25.257 C 78.826 26.835 77.14 25.37 77.148 21.911 C 77.155 18.922 78.524 17.683 80.631 18.76 Z\" fill=\"rgb(58, 84, 105)\"></path></svg>',svgContentId:11867789221,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://umd.edu/?ref=supercharge.design\",nodeId:\"lb52RzydP\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-zc2d3y framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 University of Maryland\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-nl2a6v\",\"data-framer-name\":\"Layer_1\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 113 23\"><g id=\"ss10007809749_1\"><path d=\"M 0 23 L 0 0 L 113 0 L 113 23 Z\" fill=\"transparent\"></path><path d=\"M 9.209 22.708 L 4.017 11.4 L 3.973 11.4 L 3.396 20.954 C 3.352 22.015 4.106 22.246 5.038 22.292 L 5.038 22.708 L 0.778 22.708 L 0.778 22.292 C 2.287 22.292 2.464 21.969 2.553 20.031 L 3.041 11.769 C 3.13 10.384 3.086 9.969 1.799 9.923 L 1.799 9.554 L 4.905 9.554 L 9.83 20.215 L 14.711 9.554 L 17.685 9.554 L 17.685 9.923 C 16.708 10.015 16.309 10.015 16.353 10.754 L 17.019 20.354 C 17.152 22.292 17.285 22.292 18.794 22.292 L 18.794 22.708 L 13.558 22.708 L 13.558 22.292 C 14.534 22.292 15.466 22.015 15.377 20.908 L 14.8 11.4 L 14.756 11.4 L 9.653 22.708 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 26.959 15.923 L 23.453 15.923 L 25.184 11.031 Z M 27.314 16.846 L 28.689 20.677 C 28.778 20.908 28.911 21.185 28.911 21.554 C 28.911 22.154 28.467 22.292 27.314 22.292 L 26.781 22.292 L 26.781 22.708 L 32.372 22.708 L 32.372 22.292 C 31.352 22.292 30.908 22.061 30.509 20.954 L 26.293 9.231 L 24.518 9.231 L 24.696 9.692 L 20.968 20.215 C 20.303 22.061 20.081 22.292 18.75 22.292 L 18.75 22.708 L 23.453 22.708 L 23.453 22.292 L 23.142 22.292 C 22.033 22.292 21.501 22.061 21.501 21.508 C 21.501 21.231 21.767 20.585 21.9 20.169 L 23.098 16.846 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 36.055 9.785 C 36.41 9.738 36.677 9.738 37.076 9.738 C 40.227 9.738 41.07 11.261 41.07 13.246 C 41.07 15.785 39.561 16.8 37.298 16.8 C 36.81 16.8 36.499 16.8 36.011 16.754 L 36.011 9.785 Z M 36.055 17.169 C 36.366 17.169 36.632 17.215 37.12 17.215 C 37.653 17.215 38.008 17.215 38.496 17.169 C 38.984 17.492 39.694 18.138 40.626 19.061 L 41.957 20.446 C 43.776 22.338 44.664 23.123 48.258 22.938 L 48.258 22.569 C 46.705 22.477 45.463 21.692 44.265 20.446 L 42.667 18.785 C 41.735 17.815 41.114 17.215 40.36 16.569 C 42.046 16.061 43.066 14.723 43.066 13.154 C 43.066 10.985 41.38 9.369 37.608 9.369 C 36.277 9.369 35.878 9.369 35.035 9.415 C 34.192 9.461 32.949 9.554 32.461 9.554 L 32.461 9.969 L 32.905 9.969 C 34.103 9.969 34.414 10.338 34.414 11.677 L 34.414 20.584 C 34.414 22.015 33.97 22.338 32.772 22.338 L 32.417 22.338 L 32.417 22.754 L 38.185 22.754 L 38.185 22.338 L 37.697 22.338 C 36.544 22.338 36.055 22.015 36.055 20.769 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 55.181 11.492 C 55.846 10.338 55.447 9.969 54.16 9.969 L 54.16 9.554 L 58.73 9.554 L 58.73 9.969 C 57.355 10.061 56.778 10.661 56.201 11.631 L 52.829 17.538 L 52.829 20.723 C 52.829 21.831 53.228 22.292 54.471 22.292 L 54.737 22.292 L 54.737 22.708 L 49.146 22.708 L 49.146 22.292 L 49.545 22.292 C 50.832 22.292 51.187 21.785 51.187 20.769 L 51.187 17.769 L 47.548 11.908 C 46.572 10.292 46.084 9.969 44.753 9.923 L 44.753 9.508 L 50.166 9.508 L 50.166 9.923 C 48.569 9.923 48.48 10.338 49.057 11.308 L 52.341 16.523 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 67.65 22.708 L 58.553 22.708 L 58.553 22.292 L 59.219 22.292 C 60.151 22.292 60.506 21.969 60.506 20.908 L 60.506 11.538 C 60.506 10.431 60.195 9.969 58.908 9.969 L 58.642 9.969 L 58.642 9.554 L 64.632 9.554 L 64.632 9.969 L 63.878 9.969 C 62.547 9.969 62.192 10.108 62.192 11.446 L 62.192 21.184 C 62.192 21.738 62.414 21.969 62.99 21.969 L 65.964 21.969 C 67.162 21.969 67.517 21.461 68.803 19.615 L 69.159 19.615 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 76.968 15.923 L 73.463 15.923 L 75.193 11.031 Z M 77.323 16.846 L 78.699 20.677 C 78.788 20.908 78.921 21.185 78.921 21.554 C 78.921 22.154 78.477 22.292 77.323 22.292 L 76.791 22.292 L 76.791 22.708 L 82.382 22.708 L 82.382 22.292 C 81.361 22.292 80.918 22.061 80.518 20.954 L 76.258 9.231 L 74.483 9.231 L 74.661 9.692 L 70.933 20.215 C 70.268 22.061 70.046 22.292 68.715 22.292 L 68.715 22.708 L 73.418 22.708 L 73.418 22.292 L 73.108 22.292 C 71.998 22.292 71.466 22.061 71.466 21.508 C 71.466 21.231 71.732 20.585 71.865 20.169 L 73.063 16.846 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 95.561 22.846 L 85.044 11.354 L 85.044 20.4 C 85.044 21.923 85.355 22.246 87.085 22.246 L 87.085 22.661 L 82.382 22.661 L 82.382 22.246 L 82.471 22.246 C 83.713 22.246 84.157 21.785 84.157 20.815 L 84.157 10.477 C 83.669 10.154 83.181 9.969 82.426 9.969 L 82.426 9.554 L 85.621 9.554 L 95.206 19.938 L 95.206 11.538 C 95.206 10.246 94.851 10.015 93.209 9.969 L 93.209 9.554 L 97.957 9.554 L 97.957 9.969 C 96.448 9.969 96.093 10.246 96.093 11.077 L 96.093 22.892 L 95.561 22.892 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 101.773 9.831 C 102.04 9.831 102.572 9.738 103.415 9.738 C 106.255 9.738 107.719 10.477 108.651 11.446 C 109.849 12.692 110.293 14.446 110.293 15.969 C 110.293 18.138 109.361 19.754 108.607 20.538 C 107.364 21.831 106.211 22.246 103.46 22.246 C 101.862 22.246 101.773 21.969 101.773 21.092 Z M 100.087 20.769 C 100.087 22.015 99.599 22.292 98.49 22.292 L 98.135 22.292 L 98.135 22.708 L 104.658 22.708 C 109.805 22.708 112.201 18.877 112.201 15.692 C 112.201 12.184 109.849 9.369 104.436 9.369 C 103.371 9.369 102.128 9.369 101.019 9.415 C 99.91 9.461 98.889 9.508 98.135 9.554 L 98.135 9.923 L 98.534 9.923 C 99.732 9.923 100.087 10.246 100.087 11.631 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 6.724 1.061 L 6.857 1.061 C 7.567 1.108 7.701 1.2 7.701 2.169 L 7.701 4.615 C 7.701 6.369 6.502 6.738 5.526 6.738 C 4.151 6.738 3.352 6 3.352 4.615 L 3.352 1.708 C 3.352 1.2 3.485 1.061 4.017 1.061 L 4.239 1.061 L 4.239 0.6 L 1.399 0.6 L 1.399 1.061 L 1.533 1.061 C 2.198 1.061 2.287 1.154 2.287 1.708 L 2.287 4.754 C 2.287 6.461 3.485 7.523 5.349 7.523 C 7.656 7.523 8.455 6 8.455 4.708 L 8.455 1.938 C 8.455 1.338 8.632 1.108 9.254 1.108 L 9.387 1.108 L 9.387 0.646 L 6.724 0.646 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 17.773 1.108 L 17.907 1.108 C 18.705 1.108 18.75 1.246 18.75 1.754 L 18.75 5.584 L 14.179 0.6 L 12.404 0.6 L 12.404 1.061 L 12.537 1.061 C 12.848 1.061 13.07 1.154 13.247 1.246 L 13.247 6.369 C 13.247 6.738 13.159 6.923 12.537 6.923 L 12.36 6.923 L 12.36 7.384 L 14.978 7.384 L 14.978 6.923 L 14.845 6.923 C 14.046 6.923 13.957 6.784 13.957 6.138 L 13.957 1.984 L 18.927 7.431 L 18.971 7.477 L 19.415 7.477 L 19.415 1.477 C 19.415 1.2 19.415 1.061 20.214 1.061 L 20.347 1.061 L 20.347 0.6 L 17.729 0.6 L 17.729 1.108 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 23.542 1.061 L 23.675 1.061 C 24.208 1.108 24.296 1.2 24.296 1.661 L 24.296 6.138 C 24.296 6.784 24.208 6.877 23.675 6.923 L 23.542 6.923 L 23.542 7.384 L 26.249 7.384 L 26.249 6.923 L 26.116 6.923 C 25.494 6.923 25.406 6.784 25.406 6.231 L 25.406 1.8 C 25.406 1.154 25.539 1.108 26.116 1.108 L 26.249 1.108 L 26.249 0.646 L 23.542 0.646 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 34.059 1.108 L 34.192 1.108 C 34.99 1.108 34.99 1.292 34.99 1.431 C 34.99 1.569 34.946 1.754 34.813 2.031 L 33.349 6 L 31.663 1.615 C 31.574 1.384 31.618 1.338 31.618 1.292 C 31.707 1.154 31.973 1.108 32.506 1.061 L 32.639 1.061 L 32.639 0.6 L 29.577 0.6 L 29.577 1.061 L 29.71 1.061 C 30.242 1.061 30.331 1.154 30.598 1.8 L 32.816 7.569 L 33.482 7.569 L 35.612 1.892 C 35.834 1.292 36.056 1.061 36.544 1.061 L 36.677 1.061 L 36.677 0.6 L 34.059 0.6 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 45.019 5.677 C 44.753 6.6 44.575 6.784 43.998 6.784 L 42.445 6.784 C 42.135 6.784 42.046 6.738 42.046 6.323 L 42.046 4.246 L 43.644 4.246 C 43.954 4.246 44.132 4.246 44.22 4.938 L 44.22 5.077 L 44.664 5.077 L 44.664 2.769 L 44.22 2.769 L 44.22 2.908 C 44.176 3.508 43.998 3.554 43.777 3.554 L 42.09 3.554 L 42.09 1.246 L 44.087 1.246 C 44.353 1.246 44.575 1.338 44.709 2.215 L 44.709 2.354 L 45.152 2.354 L 45.063 0.6 L 39.961 0.6 L 39.961 1.061 L 40.315 1.061 C 40.892 1.061 40.981 1.246 40.981 1.754 L 40.981 6.184 C 40.981 6.738 40.892 6.923 40.182 6.923 L 39.783 6.923 L 39.783 7.384 L 45.419 7.384 L 45.596 5.538 L 45.152 5.538 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 55.358 6.046 L 54.559 5.215 C 54.16 4.846 53.894 4.523 53.583 4.292 C 54.338 3.969 54.781 3.323 54.781 2.538 C 54.781 1.292 53.716 0.554 51.941 0.554 C 51.276 0.554 51.098 0.554 50.655 0.6 L 50.388 0.6 C 49.989 0.646 49.59 0.646 49.368 0.646 L 49.235 0.646 L 49.235 1.108 L 49.59 1.108 C 50.122 1.108 50.211 1.246 50.211 1.8 L 50.211 6.231 C 50.211 6.877 50.033 6.969 49.545 6.969 L 49.235 6.969 L 49.235 7.431 L 52.341 7.431 L 52.341 6.969 L 51.986 6.969 C 51.453 6.969 51.32 6.831 51.32 6.323 L 51.32 4.708 C 51.409 4.708 51.542 4.708 51.72 4.708 C 51.941 4.708 52.075 4.708 52.252 4.708 L 52.385 4.708 C 52.651 4.892 53.006 5.215 53.361 5.584 L 54.027 6.277 C 54.87 7.154 55.358 7.569 56.823 7.569 C 56.956 7.569 57.089 7.569 57.266 7.569 L 57.399 7.569 L 57.399 7.108 L 57.266 7.108 C 56.556 7.015 55.98 6.738 55.358 6.046 Z M 51.32 1.015 C 51.453 1.015 51.542 1.015 51.675 1.015 C 52.962 1.015 53.539 1.523 53.539 2.631 C 53.539 3.738 52.962 4.246 51.808 4.246 L 51.542 4.246 C 51.453 4.246 51.365 4.246 51.32 4.246 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 61.881 3.369 C 61.171 2.908 60.506 2.446 60.506 1.846 C 60.506 1.338 60.905 1.015 61.482 1.015 C 62.148 1.015 62.724 1.477 62.991 2.169 L 63.035 2.261 L 63.434 2.261 L 63.212 0.646 L 62.858 0.646 L 62.813 0.692 C 62.769 0.738 62.769 0.738 62.724 0.738 C 62.591 0.738 62.502 0.692 62.369 0.646 C 62.148 0.554 61.881 0.461 61.349 0.461 C 60.239 0.461 59.441 1.154 59.441 2.123 C 59.441 3.138 60.373 3.784 61.216 4.338 C 61.97 4.846 62.636 5.261 62.636 5.908 C 62.636 6.646 62.014 7.015 61.393 7.015 C 60.639 7.015 60.017 6.461 59.84 5.631 L 59.796 5.538 L 59.352 5.538 L 59.618 7.431 L 59.973 7.431 L 60.017 7.338 C 60.017 7.292 60.062 7.292 60.106 7.292 C 60.151 7.292 60.284 7.338 60.373 7.385 C 60.683 7.477 61.127 7.615 61.482 7.615 C 62.724 7.615 63.656 6.785 63.656 5.677 C 63.745 4.569 62.769 3.923 61.881 3.369 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 67.694 1.061 L 67.827 1.061 C 68.36 1.108 68.449 1.2 68.449 1.661 L 68.449 6.138 C 68.449 6.784 68.36 6.877 67.827 6.923 L 67.694 6.923 L 67.694 7.384 L 70.401 7.384 L 70.401 6.923 L 70.268 6.923 C 69.647 6.923 69.558 6.784 69.558 6.231 L 69.558 1.8 C 69.558 1.154 69.691 1.108 70.268 1.108 L 70.401 1.108 L 70.401 0.646 L 67.694 0.646 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 80.075 0.461 L 80.075 0.554 C 80.075 0.554 80.03 0.6 79.897 0.6 L 75.016 0.6 C 74.972 0.6 74.883 0.6 74.838 0.554 L 74.838 0.461 L 74.395 0.461 L 74.217 2.446 L 74.661 2.446 L 74.661 2.354 C 74.838 1.385 75.016 1.292 75.282 1.292 L 76.924 1.292 L 76.924 6.369 C 76.924 6.831 76.835 7.015 76.258 7.015 L 75.77 7.015 L 75.77 7.477 L 79.231 7.477 L 79.231 7.015 L 78.743 7.015 C 78.166 7.015 78.078 6.831 78.078 6.369 L 78.078 1.292 L 79.719 1.292 C 79.986 1.292 80.163 1.385 80.341 2.354 L 80.341 2.446 L 80.784 2.446 L 80.518 0.461 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 88.594 1.108 C 88.994 1.108 89.082 1.2 89.127 1.246 C 89.127 1.292 89.171 1.384 88.994 1.661 L 87.662 4.015 L 86.154 1.615 C 85.976 1.338 85.976 1.292 86.021 1.246 C 86.021 1.2 86.109 1.154 86.598 1.154 L 86.731 1.154 L 86.731 0.692 L 83.802 0.692 L 83.802 1.154 L 83.935 1.154 C 84.512 1.154 84.734 1.246 85.222 2.077 L 86.997 4.984 L 86.997 6.415 C 86.997 6.831 86.908 7.015 86.331 7.015 L 86.021 7.015 L 86.021 7.477 L 89.082 7.477 L 89.082 7.015 L 88.816 7.015 C 88.239 7.015 88.151 6.831 88.151 6.369 L 88.151 4.846 L 89.837 1.938 C 90.103 1.477 90.369 1.2 90.991 1.154 L 91.124 1.154 L 91.124 0.692 L 88.594 0.692 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 100.309 0.461 C 98.09 0.461 96.493 2.031 96.493 4.154 C 96.493 6.092 98.135 7.569 100.265 7.569 C 102.395 7.569 103.992 5.954 103.992 3.831 C 103.992 1.938 102.395 0.461 100.309 0.461 Z M 100.043 0.969 C 101.64 0.969 102.794 2.261 102.794 4.154 C 102.794 5.538 102.084 7.015 100.487 7.015 C 98.889 7.015 97.691 5.631 97.691 3.784 C 97.691 2.677 98.312 0.969 100.043 0.969 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 109.849 1.246 C 110.382 1.246 110.559 1.431 110.559 1.984 L 110.559 2.123 L 111.003 2.123 L 111.003 0.6 L 106.211 0.6 L 106.211 1.061 L 106.344 1.061 C 106.921 1.061 106.965 1.246 106.965 1.892 L 106.965 6 C 106.965 6.831 106.876 6.877 106.344 6.877 L 106.211 6.877 L 106.211 7.338 L 108.918 7.338 L 108.918 6.877 L 108.785 6.877 C 108.075 6.877 108.03 6.692 108.03 6.184 L 108.03 4.108 L 109.761 4.108 C 110.16 4.108 110.338 4.2 110.338 4.754 L 110.338 4.892 L 110.781 4.892 L 110.781 2.769 L 110.338 2.769 L 110.338 2.908 C 110.293 3.369 110.116 3.461 109.894 3.461 L 108.03 3.461 L 108.03 1.246 Z\" fill=\"rgb(58, 84, 105)\"></path></g></svg>',svgContentId:10007809749,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.amazon.com/?ref=supercharge.design\",nodeId:\"ANKaOuCuY\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-i3mdqn framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 Amazon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-abhnm8\",\"data-framer-name\":\"01-amazon\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 107 32\"><path d=\"M 65.759 24.999 C 59.606 29.535 50.686 31.955 43.007 31.955 C 32.239 31.955 22.545 27.972 15.211 21.349 C 14.635 20.828 15.151 20.118 15.842 20.523 C 23.757 25.128 33.543 27.899 43.652 27.899 C 50.469 27.899 57.969 26.488 64.865 23.561 C 65.907 23.119 66.778 24.243 65.759 24.999 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 68.318 22.072 C 67.534 21.067 63.118 21.598 61.136 21.833 C 60.532 21.906 60.44 21.381 60.984 21.003 C 64.501 18.528 70.272 19.242 70.945 20.072 C 71.618 20.906 70.77 26.691 67.465 29.452 C 66.958 29.876 66.474 29.651 66.7 29.088 C 67.442 27.235 69.106 23.082 68.318 22.072 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 61.274 3.528 L 61.274 1.122 C 61.274 0.758 61.551 0.513 61.883 0.513 L 72.655 0.513 C 73.001 0.513 73.278 0.762 73.278 1.122 L 73.278 3.182 C 73.273 3.528 72.983 3.98 72.466 4.694 L 66.884 12.664 C 68.958 12.614 71.148 12.922 73.029 13.982 C 73.453 14.222 73.568 14.573 73.6 14.918 L 73.6 17.486 C 73.6 17.836 73.213 18.246 72.807 18.034 C 69.493 16.297 65.091 16.108 61.426 18.053 C 61.053 18.256 60.661 17.85 60.661 17.5 L 60.661 15.061 C 60.661 14.669 60.666 14.001 61.058 13.406 L 67.525 4.132 L 61.897 4.132 C 61.551 4.132 61.274 3.888 61.274 3.528 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 21.978 18.541 L 18.7 18.541 C 18.387 18.518 18.138 18.283 18.115 17.984 L 18.115 1.163 C 18.115 0.827 18.396 0.56 18.747 0.56 L 21.803 0.56 C 22.121 0.573 22.374 0.818 22.397 1.122 L 22.397 3.321 L 22.457 3.321 C 23.255 1.196 24.753 0.205 26.772 0.205 C 28.823 0.205 30.104 1.196 31.026 3.321 C 31.819 1.196 33.621 0.205 35.553 0.205 C 36.927 0.205 38.429 0.772 39.347 2.044 C 40.384 3.459 40.172 5.515 40.172 7.317 L 40.167 17.933 C 40.167 18.269 39.886 18.541 39.536 18.541 L 36.263 18.541 C 35.935 18.518 35.673 18.256 35.673 17.933 L 35.673 9.018 C 35.673 8.308 35.737 6.538 35.581 5.865 C 35.336 4.736 34.603 4.418 33.654 4.418 C 32.861 4.418 32.031 4.948 31.695 5.796 C 31.358 6.644 31.39 8.064 31.39 9.018 L 31.39 17.933 C 31.39 18.269 31.109 18.541 30.759 18.541 L 27.486 18.541 C 27.154 18.518 26.896 18.256 26.896 17.933 L 26.892 9.018 C 26.892 7.142 27.2 4.381 24.873 4.381 C 22.517 4.381 22.609 7.073 22.609 9.018 L 22.609 17.933 C 22.609 18.269 22.328 18.541 21.978 18.541 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 82.552 0.205 C 87.415 0.205 90.047 4.381 90.047 9.691 C 90.047 14.822 87.139 18.892 82.552 18.892 C 77.777 18.892 75.177 14.716 75.177 9.511 C 75.177 4.275 77.809 0.205 82.552 0.205 Z M 82.58 3.639 C 80.164 3.639 80.012 6.93 80.012 8.981 C 80.012 11.037 79.98 15.425 82.552 15.425 C 85.092 15.425 85.212 11.885 85.212 9.728 C 85.212 8.308 85.152 6.612 84.723 5.266 C 84.354 4.095 83.621 3.639 82.58 3.639 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 96.353 18.541 L 93.09 18.541 C 92.763 18.518 92.5 18.256 92.5 17.933 L 92.495 1.108 C 92.523 0.799 92.795 0.56 93.127 0.56 L 96.164 0.56 C 96.45 0.573 96.685 0.767 96.75 1.03 L 96.75 3.602 L 96.81 3.602 C 97.727 1.302 99.013 0.205 101.276 0.205 C 102.747 0.205 104.18 0.735 105.102 2.187 C 105.96 3.533 105.96 5.796 105.96 7.423 L 105.96 18.011 C 105.923 18.306 105.651 18.541 105.328 18.541 L 102.041 18.541 C 101.742 18.518 101.493 18.297 101.461 18.011 L 101.461 8.875 C 101.461 7.036 101.673 4.344 99.409 4.344 C 98.612 4.344 97.879 4.879 97.515 5.69 C 97.054 6.718 96.994 7.741 96.994 8.875 L 96.994 17.933 C 96.989 18.269 96.704 18.541 96.353 18.541 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 52.687 10.507 L 52.687 9.797 C 50.317 9.797 47.814 10.304 47.814 13.098 C 47.814 14.513 48.547 15.471 49.806 15.471 C 50.728 15.471 51.553 14.904 52.074 13.983 C 52.719 12.849 52.687 11.784 52.687 10.507 Z M 55.992 18.495 C 55.775 18.689 55.462 18.703 55.217 18.574 C 54.129 17.67 53.936 17.251 53.337 16.389 C 51.539 18.223 50.267 18.772 47.934 18.772 C 45.178 18.772 43.029 17.071 43.029 13.665 C 43.029 11.005 44.472 9.193 46.524 8.308 C 48.303 7.525 50.787 7.386 52.687 7.17 L 52.687 6.746 C 52.687 5.966 52.746 5.045 52.29 4.372 C 51.889 3.768 51.124 3.519 50.451 3.519 C 49.202 3.519 48.086 4.16 47.814 5.487 C 47.759 5.782 47.542 6.073 47.247 6.086 L 44.067 5.745 C 43.799 5.685 43.504 5.469 43.578 5.058 C 44.311 1.205 47.791 0.043 50.907 0.043 C 52.502 0.043 54.586 0.467 55.844 1.675 C 57.439 3.164 57.287 5.151 57.287 7.312 L 57.287 12.42 C 57.287 13.955 57.923 14.628 58.522 15.458 C 58.734 15.753 58.78 16.108 58.513 16.329 C 57.845 16.887 56.655 17.924 56.001 18.505 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 9.721 10.507 L 9.721 9.797 C 7.352 9.797 4.849 10.304 4.849 13.098 C 4.849 14.513 5.582 15.471 6.84 15.471 C 7.762 15.471 8.587 14.904 9.108 13.983 C 9.753 12.849 9.721 11.784 9.721 10.507 Z M 13.026 18.495 C 12.809 18.689 12.496 18.703 12.252 18.574 C 11.164 17.67 10.97 17.251 10.371 16.389 C 8.573 18.223 7.301 18.772 4.969 18.772 C 2.212 18.772 0.064 17.071 0.064 13.665 C 0.064 11.005 1.507 9.193 3.558 8.308 C 5.337 7.525 7.822 7.386 9.721 7.17 L 9.721 6.746 C 9.721 5.966 9.781 5.045 9.325 4.372 C 8.924 3.768 8.158 3.519 7.485 3.519 C 6.236 3.519 5.121 4.16 4.849 5.487 C 4.793 5.782 4.577 6.073 4.282 6.086 L 1.101 5.745 C 0.834 5.685 0.539 5.469 0.613 5.058 C 1.345 1.205 4.826 0.043 7.942 0.043 C 9.537 0.043 11.62 0.467 12.879 1.675 C 14.473 3.164 14.321 5.151 14.321 7.312 L 14.321 12.42 C 14.321 13.955 14.957 14.628 15.557 15.458 C 15.769 15.753 15.815 16.108 15.547 16.329 C 14.879 16.887 13.69 17.924 13.035 18.505 Z\" fill=\"rgb(58, 84, 105)\"></path></svg>',svgContentId:11972405581,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.blueorigin.com/about-blue?ref=supercharge.design\",nodeId:\"IlzdRWl3M\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-2o03j5 framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 Blue Origin\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gqhfov\",\"data-framer-name\":\"blueorigin_logo_tagline 1\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 106 26\"><g id=\"ss11317171530_1\"><path d=\"M 0 26 L 0 0 L 106 0 L 106 26 Z\" fill=\"transparent\"></path><path d=\"M 27.317 12.932 C 27.317 14.166 26.811 14.776 25.728 14.776 C 24.644 14.776 24.139 14.17 24.139 12.932 L 24.139 0.233 L 21.154 0.233 L 21.154 12.814 C 21.154 15.703 22.887 17.288 25.728 17.288 C 28.568 17.288 30.302 15.703 30.302 12.814 L 30.302 0.233 L 27.317 0.233 Z M 7.094 8.202 C 8.539 7.643 9.165 6.129 9.165 4.683 C 9.165 1.818 7.744 0.236 4.543 0.236 L 0.112 0.236 L 0.112 17.056 L 4.831 17.056 C 8.226 17.056 9.501 14.959 9.501 12.186 C 9.501 10.019 8.61 8.854 7.094 8.202 Z M 3.098 2.609 L 4.229 2.609 C 5.553 2.609 6.179 3.425 6.179 4.987 C 6.175 6.38 5.312 7.13 4.181 7.13 L 3.098 7.13 Z M 4.35 14.679 L 3.098 14.679 L 3.098 9.507 L 4.061 9.507 C 5.839 9.507 6.511 10.369 6.511 12.093 C 6.511 13.816 5.939 14.679 4.35 14.679 Z M 36.149 9.599 L 40.001 9.599 L 40.001 7.083 L 36.149 7.083 L 36.149 2.745 L 41.156 2.745 L 41.156 0.233 L 33.164 0.233 L 33.164 17.056 L 41.494 17.056 L 41.494 14.54 L 36.149 14.54 Z M 14.916 0.233 L 11.934 0.233 L 11.934 17.056 L 19.613 17.056 L 19.613 14.54 L 14.916 14.54 Z M 90.7 17.056 L 93.69 17.056 L 93.69 0.233 L 90.7 0.233 Z M 83.605 0 C 80.475 0 79.031 1.934 79.031 4.311 L 79.031 12.979 C 79.031 15.355 80.475 17.289 83.605 17.289 C 83.605 17.289 85.252 17.221 86.57 16.256 L 88.139 17.289 L 88.139 8.555 L 83.287 8.555 L 83.287 10.839 L 85.443 10.839 L 85.443 12.986 C 85.443 14.865 83.788 14.766 83.788 14.766 L 83.608 14.766 C 82.405 14.766 82.019 14.16 82.019 12.903 L 82.019 4.381 C 82.019 3.122 82.405 2.516 83.608 2.516 C 84.812 2.516 85.197 3.122 85.197 4.381 L 85.197 5.682 L 88.182 5.682 L 88.182 4.311 C 88.182 1.934 86.742 0 83.605 0 Z M 54.065 0 C 50.935 0 49.491 1.934 49.491 4.311 L 49.491 12.979 C 49.491 15.355 50.935 17.289 54.065 17.289 C 57.195 17.289 58.639 15.355 58.639 12.979 L 58.639 4.311 C 58.643 1.934 57.197 0 54.068 0 Z M 55.654 12.906 C 55.654 14.163 55.269 14.769 54.065 14.769 C 52.862 14.769 52.476 14.163 52.476 12.906 L 52.476 4.381 C 52.476 3.122 52.861 2.516 54.065 2.516 C 55.27 2.516 55.654 3.122 55.654 4.381 Z M 103.304 0.233 L 103.304 10.196 L 99.227 0.233 L 96.53 0.233 L 96.53 17.056 L 99.227 17.056 L 99.227 7.093 L 103.304 17.056 L 106 17.056 L 106 0.233 Z M 73.238 17.056 L 76.222 17.056 L 76.222 0.233 L 73.238 0.233 Z M 70.528 5.196 C 70.528 1.608 68.818 0.233 65.472 0.233 L 61.284 0.233 L 61.284 17.056 L 64.269 17.056 L 64.269 10.159 C 64.772 10.162 65.276 10.14 65.777 10.093 L 67.894 17.056 L 70.962 17.056 L 68.433 9.437 C 69.445 8.994 70.528 7.899 70.528 5.196 Z M 65.328 7.783 L 64.269 7.783 L 64.269 2.609 L 65.328 2.609 C 66.941 2.609 67.543 3.192 67.543 5.196 C 67.543 7.2 66.941 7.783 65.328 7.783 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 0 25.95 L 0 22.464 L 2.782 22.464 L 2.782 22.829 L 2.62 22.985 L 0.538 22.985 L 0.538 24.052 L 2.253 24.052 L 2.253 24.573 L 0.538 24.573 L 0.538 25.95 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 5.286 26 C 4.835 26 4.463 25.658 4.441 25.222 C 4.44 25.194 4.44 25.166 4.441 25.138 L 4.441 23.273 C 4.43 23.061 4.506 22.851 4.658 22.688 C 4.809 22.525 5.018 22.43 5.243 22.418 C 5.258 22.418 5.272 22.418 5.287 22.418 C 5.301 22.418 5.316 22.418 5.33 22.418 L 6.797 22.418 C 6.806 22.418 6.821 22.418 6.836 22.418 C 7.287 22.418 7.659 22.759 7.681 23.195 C 7.682 23.224 7.682 23.252 7.681 23.28 L 7.681 25.144 C 7.693 25.357 7.616 25.567 7.464 25.73 C 7.313 25.893 7.104 25.988 6.879 26 C 6.864 26 6.85 26 6.835 26 C 6.821 26 6.806 26 6.792 26 L 5.325 26 C 5.316 26 5.301 26 5.286 26 Z M 5.348 22.942 C 5.095 22.942 4.977 23.055 4.977 23.299 L 4.977 25.121 C 4.977 25.365 5.095 25.479 5.348 25.479 L 6.771 25.476 C 7.025 25.476 7.142 25.362 7.142 25.118 L 7.142 23.299 C 7.142 23.055 7.025 22.942 6.771 22.942 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 12.482 25.95 L 11.565 24.666 L 10.361 24.666 L 10.361 25.95 L 9.823 25.95 L 9.823 22.464 L 12.01 22.464 C 12.019 22.464 12.034 22.464 12.048 22.464 C 12.498 22.464 12.871 22.806 12.894 23.242 C 12.895 23.27 12.895 23.298 12.894 23.327 L 12.894 23.811 C 12.905 24.024 12.829 24.234 12.677 24.397 C 12.552 24.53 12.391 24.618 12.212 24.652 L 12.916 25.645 L 12.916 25.95 L 12.481 25.95 Z M 11.985 24.145 C 12.239 24.145 12.356 24.032 12.356 23.788 L 12.356 23.343 C 12.356 23.099 12.239 22.985 11.985 22.985 L 10.361 22.985 L 10.361 24.145 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 18.412 25.95 L 18.414 22.985 L 17.111 22.985 L 17.111 22.464 L 20.255 22.464 L 20.255 22.829 L 20.091 22.985 L 18.95 22.985 L 18.95 25.95 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 24.687 25.95 L 24.687 24.432 L 22.62 24.432 L 22.62 25.95 L 22.087 25.95 L 22.087 22.464 L 22.625 22.464 L 22.625 23.912 L 24.692 23.912 L 24.692 22.464 L 25.225 22.464 L 25.225 25.95 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 27.354 25.95 L 27.354 22.464 L 30.155 22.464 L 30.155 22.828 L 29.992 22.985 L 27.889 22.985 L 27.889 23.912 L 29.651 23.912 L 29.651 24.433 L 27.889 24.433 L 27.889 25.43 L 30.155 25.43 L 30.155 25.95 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 37.146 25.948 C 37.131 25.948 37.117 25.948 37.102 25.948 L 34.921 25.948 L 34.921 22.465 L 37.06 22.465 C 37.069 22.465 37.083 22.465 37.098 22.465 C 37.548 22.465 37.92 22.807 37.943 23.243 C 37.944 23.271 37.944 23.299 37.943 23.328 L 37.943 23.509 C 37.943 23.823 37.794 24.016 37.64 24.122 C 37.815 24.231 37.992 24.439 37.992 24.79 L 37.992 25.093 C 38.016 25.539 37.656 25.925 37.19 25.949 C 37.175 25.949 37.161 25.949 37.146 25.949 Z M 37.083 25.429 C 37.336 25.429 37.454 25.316 37.454 25.072 L 37.454 24.768 C 37.454 24.523 37.336 24.409 37.083 24.409 L 35.458 24.409 L 35.458 25.429 Z M 37.035 23.888 C 37.288 23.888 37.406 23.774 37.406 23.53 L 37.406 23.343 C 37.406 23.099 37.288 22.985 37.035 22.985 L 35.458 22.985 L 35.458 23.888 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 40.09 25.95 L 40.085 22.464 L 42.887 22.464 L 42.887 22.828 L 42.724 22.985 L 40.623 22.985 L 40.623 23.912 L 42.385 23.912 L 42.385 24.433 L 40.623 24.433 L 40.623 25.43 L 42.891 25.43 L 42.891 25.95 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 47.528 25.95 L 45.377 23.323 L 45.377 25.95 L 44.84 25.95 L 44.84 22.464 L 45.342 22.464 L 47.492 25.092 L 47.492 22.464 L 48.03 22.464 L 48.03 25.95 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 50.274 25.95 L 50.27 22.464 L 53.071 22.464 L 53.071 22.829 L 52.907 22.985 L 50.806 22.985 L 50.806 23.912 L 52.566 23.912 L 52.566 24.433 L 50.806 24.433 L 50.806 25.43 L 53.076 25.43 L 53.076 25.95 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 55.023 25.95 L 55.023 22.464 L 57.805 22.464 L 57.805 22.828 L 57.643 22.985 L 55.561 22.985 L 55.561 24.052 L 57.272 24.052 L 57.272 24.573 L 55.561 24.573 L 55.561 25.95 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 60.194 22.464 L 59.657 22.464 L 59.657 25.95 L 60.194 25.95 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 63.323 25.95 L 63.323 22.985 L 62.022 22.985 L 62.022 22.464 L 65.165 22.464 L 65.165 22.829 L 65.003 22.985 L 63.863 22.985 L 63.863 25.95 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 70.251 26 C 69.801 26 69.429 25.658 69.406 25.222 C 69.405 25.194 69.405 25.166 69.406 25.138 L 69.406 23.273 C 69.395 23.061 69.471 22.851 69.624 22.688 C 69.776 22.525 69.984 22.43 70.209 22.418 C 70.223 22.418 70.238 22.418 70.252 22.418 C 70.267 22.418 70.282 22.418 70.296 22.418 L 71.763 22.418 C 71.772 22.418 71.786 22.418 71.801 22.418 C 72.251 22.418 72.624 22.759 72.646 23.195 C 72.647 23.224 72.647 23.252 72.646 23.28 L 72.646 25.144 C 72.657 25.357 72.581 25.567 72.428 25.73 C 72.276 25.893 72.069 25.988 71.844 26 C 71.829 26 71.814 26 71.8 26 C 71.785 26 71.771 26 71.756 26 L 70.289 26 C 70.28 26 70.266 26 70.251 26 Z M 70.315 22.942 C 70.062 22.942 69.944 23.055 69.944 23.299 L 69.944 25.121 C 69.944 25.365 70.062 25.479 70.315 25.479 L 71.738 25.476 C 71.992 25.476 72.109 25.362 72.109 25.118 L 72.109 23.299 C 72.109 23.055 71.992 22.942 71.738 22.942 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 74.676 25.95 L 74.676 22.464 L 77.457 22.464 L 77.457 22.828 L 77.295 22.985 L 75.214 22.985 L 75.214 24.052 L 76.927 24.052 L 76.927 24.573 L 75.214 24.573 L 75.214 25.95 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 80.864 22.462 L 84.251 22.462 L 84.251 23.067 L 83.886 23.42 L 82.01 23.42 L 82.01 23.773 L 83.626 23.773 L 83.626 24.681 L 82.01 24.681 L 82.01 25.034 L 84.251 25.034 L 84.251 25.992 L 80.864 25.992 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 85.685 25.463 L 87.013 22.462 L 88.525 22.462 L 89.854 25.463 L 89.854 25.992 L 88.734 25.992 L 88.551 25.463 L 86.988 25.463 L 86.805 25.992 L 85.685 25.992 Z M 88.211 24.555 L 87.795 23.471 L 87.742 23.471 L 87.325 24.555 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 91.304 22.462 L 94.17 22.462 C 94.717 22.462 95.057 22.79 95.057 23.32 L 95.057 23.975 C 95.057 24.63 94.431 24.732 94.431 24.732 L 95.135 25.463 L 95.135 25.992 L 94.093 25.992 L 93.103 24.832 L 92.451 24.832 L 92.451 25.992 L 91.305 25.992 L 91.305 22.462 Z M 93.909 23.874 L 93.909 23.42 L 92.45 23.42 L 92.45 23.874 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 97.947 23.471 L 96.618 23.471 L 96.618 22.462 L 100.422 22.462 L 100.422 23.118 L 100.057 23.471 L 99.093 23.471 L 99.093 25.992 L 97.947 25.992 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 102.037 22.462 L 103.183 22.462 L 103.183 23.724 L 104.746 23.724 L 104.746 22.462 L 105.892 22.462 L 105.892 25.992 L 104.746 25.992 L 104.746 24.731 L 103.183 24.731 L 103.183 25.992 L 102.037 25.992 Z\" fill=\"rgb(58, 84, 105)\"></path></g></svg>',svgContentId:11317171530,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://spotify.design/?ref=supercharge.design\",nodeId:\"Jg0bQs4nG\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-8bj5k9 framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 Spotify\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lg5v7y\",\"data-framer-name\":\"spotify logo\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 100 30\"><g id=\"ss10382848167_1\"><path d=\"M 0 30 L 0 0 L 100 0 L 100 30 Z\" fill=\"transparent\"></path><path d=\"M 15.558 0 C 6.966 0 0 6.687 0 14.935 C 0 23.184 6.966 29.87 15.558 29.87 C 24.151 29.87 31.115 23.184 31.115 14.935 C 31.115 6.687 24.151 0.001 15.557 0.001 Z M 22.692 21.541 C 22.414 21.979 21.815 22.119 21.358 21.849 C 17.706 19.707 13.107 19.222 7.692 20.41 C 7.17 20.524 6.65 20.21 6.531 19.709 C 6.411 19.208 6.737 18.709 7.26 18.594 C 13.187 17.295 18.27 17.854 22.371 20.26 C 22.828 20.53 22.973 21.102 22.692 21.541 Z M 24.597 17.474 C 24.245 18.022 23.499 18.195 22.928 17.858 C 18.746 15.39 12.372 14.676 7.425 16.117 C 6.784 16.303 6.106 15.956 5.912 15.341 C 5.718 14.725 6.08 14.076 6.721 13.889 C 12.371 12.243 19.395 13.04 24.197 15.873 C 24.767 16.211 24.948 16.927 24.597 17.474 Z M 24.76 13.239 C 19.746 10.38 11.473 10.117 6.686 11.512 C 5.917 11.736 5.104 11.319 4.871 10.581 C 4.638 9.843 5.072 9.063 5.841 8.839 C 11.337 7.237 20.472 7.547 26.245 10.837 C 26.938 11.231 27.165 12.088 26.754 12.751 C 26.345 13.415 25.45 13.634 24.761 13.239 Z M 42.327 13.787 C 39.641 13.172 39.163 12.741 39.163 11.834 C 39.163 10.977 40.003 10.4 41.253 10.4 C 42.465 10.4 43.665 10.838 44.924 11.74 C 44.962 11.767 45.01 11.778 45.056 11.771 C 45.105 11.764 45.145 11.739 45.173 11.702 L 46.485 9.927 C 46.539 9.854 46.524 9.753 46.451 9.697 C 44.952 8.543 43.265 7.982 41.292 7.982 C 38.392 7.982 36.366 9.653 36.366 12.043 C 36.366 14.607 38.114 15.515 41.134 16.215 C 43.704 16.784 44.139 17.26 44.139 18.111 C 44.139 19.055 43.262 19.641 41.85 19.641 C 40.282 19.641 39.002 19.133 37.571 17.945 C 37.536 17.915 37.488 17.902 37.443 17.904 C 37.395 17.908 37.352 17.929 37.322 17.963 L 35.851 19.643 C 35.79 19.714 35.797 19.818 35.868 19.879 C 37.532 21.305 39.58 22.058 41.79 22.058 C 44.915 22.058 46.935 20.419 46.935 17.881 C 46.94 15.74 45.604 14.554 42.333 13.79 Z M 54.005 11.244 C 52.651 11.244 51.54 11.756 50.622 12.806 L 50.622 11.625 C 50.622 11.531 50.544 11.455 50.448 11.455 L 48.042 11.455 C 47.945 11.455 47.867 11.531 47.867 11.625 L 47.867 24.751 C 47.867 24.844 47.945 24.921 48.042 24.921 L 50.448 24.921 C 50.544 24.921 50.622 24.844 50.622 24.751 L 50.622 20.608 C 51.54 21.594 52.651 22.078 54.005 22.078 C 56.523 22.078 59.071 20.218 59.071 16.661 C 59.075 13.105 56.526 11.244 54.007 11.244 Z M 56.274 16.661 C 56.274 18.471 55.112 19.736 53.448 19.736 C 51.804 19.736 50.563 18.414 50.563 16.661 C 50.563 14.908 51.804 13.587 53.448 13.587 C 55.085 13.587 56.274 14.88 56.274 16.661 Z M 65.601 11.244 C 62.36 11.244 59.82 13.64 59.82 16.7 C 59.82 19.727 62.343 22.097 65.562 22.097 C 68.815 22.097 71.362 19.709 71.362 16.661 C 71.362 13.624 68.832 11.244 65.601 11.244 Z M 65.601 19.754 C 63.878 19.754 62.577 18.423 62.577 16.661 C 62.577 14.89 63.833 13.605 65.562 13.605 C 67.298 13.605 68.606 14.935 68.606 16.699 C 68.606 18.47 67.342 19.754 65.601 19.754 Z M 78.285 11.455 L 75.637 11.455 L 75.637 8.857 C 75.637 8.764 75.559 8.688 75.463 8.688 L 73.057 8.688 C 72.96 8.688 72.88 8.764 72.88 8.857 L 72.88 11.455 L 71.725 11.455 C 71.628 11.455 71.55 11.531 71.55 11.624 L 71.55 13.609 C 71.55 13.702 71.628 13.778 71.725 13.778 L 72.88 13.778 L 72.88 18.914 C 72.88 20.988 73.956 22.04 76.079 22.04 C 76.941 22.04 77.657 21.869 78.331 21.502 C 78.387 21.473 78.42 21.416 78.42 21.355 L 78.42 19.465 C 78.42 19.408 78.389 19.352 78.337 19.322 C 78.285 19.29 78.22 19.288 78.166 19.315 C 77.703 19.538 77.255 19.641 76.754 19.641 C 75.983 19.641 75.637 19.304 75.637 18.552 L 75.637 13.779 L 78.285 13.779 C 78.381 13.779 78.459 13.703 78.459 13.61 L 78.459 11.626 C 78.463 11.532 78.385 11.456 78.286 11.456 Z M 87.507 11.465 L 87.507 11.146 C 87.507 10.208 87.882 9.789 88.722 9.789 C 89.223 9.789 89.626 9.885 90.078 10.029 C 90.134 10.046 90.191 10.038 90.236 10.006 C 90.282 9.974 90.308 9.923 90.308 9.868 L 90.308 7.923 C 90.308 7.848 90.26 7.782 90.184 7.76 C 89.708 7.624 89.099 7.485 88.185 7.485 C 85.965 7.485 84.789 8.686 84.789 10.957 L 84.789 11.445 L 83.633 11.445 C 83.537 11.445 83.457 11.521 83.457 11.614 L 83.457 13.609 C 83.457 13.702 83.537 13.778 83.633 13.778 L 84.789 13.778 L 84.789 21.698 C 84.789 21.792 84.869 21.867 84.965 21.867 L 87.369 21.867 C 87.468 21.867 87.546 21.792 87.546 21.698 L 87.546 13.779 L 89.792 13.779 L 93.232 21.698 C 92.842 22.529 92.458 22.695 91.934 22.695 C 91.51 22.695 91.062 22.573 90.607 22.333 C 90.565 22.311 90.513 22.308 90.468 22.32 C 90.421 22.336 90.382 22.368 90.364 22.411 L 89.548 24.129 C 89.509 24.211 89.543 24.305 89.625 24.348 C 90.475 24.79 91.243 24.979 92.192 24.979 C 93.968 24.979 94.951 24.184 95.815 22.047 L 99.987 11.697 C 100.01 11.645 100.002 11.586 99.968 11.539 C 99.937 11.494 99.883 11.466 99.826 11.466 L 97.321 11.466 C 97.245 11.466 97.178 11.512 97.154 11.579 L 94.589 18.612 L 91.78 11.575 C 91.754 11.509 91.689 11.466 91.616 11.466 L 87.507 11.466 Z M 82.16 11.455 L 79.754 11.455 C 79.658 11.455 79.578 11.531 79.578 11.625 L 79.578 21.698 C 79.578 21.792 79.658 21.867 79.754 21.867 L 82.16 21.867 C 82.257 21.867 82.336 21.792 82.336 21.698 L 82.336 11.625 C 82.336 11.532 82.258 11.456 82.16 11.456 Z M 80.971 6.868 C 80.018 6.868 79.245 7.609 79.245 8.524 C 79.245 9.439 80.018 10.18 80.971 10.18 C 81.924 10.18 82.695 9.439 82.695 8.524 C 82.695 7.609 81.922 6.868 80.971 6.868 Z\" fill=\"rgb(58, 84, 105)\"></path></g></svg>',svgContentId:10382848167,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.siemens.com/global/en.html?ref=supercharge.design\",nodeId:\"mm2rZospy\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1f5hjf5 framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 Siemens\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-tt6jnp\",\"data-framer-name\":\"02-siemens (Traced)\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 114 18\"><path d=\"M 6.039 0.029 C 5.966 0.039 5.716 0.069 5.484 0.095 C 1.763 0.517 -0.397 2.871 0.061 6.004 C 0.371 8.122 1.511 9.131 5.53 10.845 C 8.199 11.983 8.619 12.307 8.613 13.221 C 8.601 15.037 5.121 15.379 0.652 14.003 L 0.374 13.918 L 0.374 15.647 C 0.374 16.597 0.381 17.375 0.389 17.375 C 0.398 17.375 0.703 17.436 1.067 17.51 C 8.408 18.998 13.331 16.985 13.346 12.488 C 13.355 9.952 12.238 8.83 7.594 6.713 C 5.175 5.61 4.789 5.373 4.648 4.901 C 4.069 2.97 7.481 2.353 11.304 3.697 C 11.585 3.796 11.85 3.888 11.893 3.9 C 11.966 3.922 11.971 3.824 11.971 2.278 L 11.971 0.632 L 11.759 0.587 C 9.942 0.199 6.929 -0.095 6.039 0.029 Z M 106.252 0.051 C 102.37 0.425 100.141 2.623 100.468 5.756 C 100.706 8.04 101.855 9.116 105.852 10.797 C 108.25 11.807 108.739 12.105 108.962 12.697 C 109.796 14.907 106.001 15.518 100.998 13.979 L 100.787 13.914 L 100.787 15.638 L 100.787 17.362 L 101.464 17.502 C 108.825 19.017 113.759 17.003 113.76 12.483 C 113.761 9.926 112.625 8.787 107.984 6.691 C 105.285 5.472 105.029 5.284 105.036 4.527 C 105.052 2.853 108.063 2.465 111.658 3.671 C 112.054 3.804 112.389 3.913 112.403 3.913 C 112.416 3.913 112.427 3.175 112.427 2.274 L 112.427 0.635 L 112.172 0.589 C 112.031 0.563 111.587 0.482 111.183 0.408 C 109.228 0.048 107.547 -0.073 106.252 0.051 Z M 16.058 8.978 L 16.058 17.642 L 18.48 17.642 L 20.901 17.642 L 20.901 8.978 L 20.901 0.314 L 18.48 0.314 L 16.058 0.314 Z M 25.344 8.978 L 25.344 17.642 L 31.653 17.642 L 37.962 17.642 L 37.962 15.976 L 37.962 14.31 L 33.986 14.31 L 30.009 14.31 L 30.009 12.266 L 30.009 10.222 L 33.386 10.222 L 36.763 10.222 L 36.763 8.778 L 36.763 7.334 L 33.386 7.334 L 30.009 7.334 L 30.009 5.401 L 30.009 3.469 L 33.875 3.469 L 37.74 3.469 L 37.74 1.891 L 37.74 0.314 L 31.542 0.314 L 25.344 0.314 Z M 41.117 8.978 L 41.117 17.642 L 42.827 17.642 L 44.538 17.642 L 44.549 11.573 L 44.56 5.503 L 47.025 11.662 L 49.49 17.821 L 51.002 17.809 L 52.513 17.797 L 55.023 11.651 L 57.534 5.505 L 57.545 11.574 L 57.556 17.642 L 59.866 17.642 L 62.177 17.642 L 62.177 8.978 L 62.177 0.314 L 59.185 0.314 L 56.194 0.314 L 53.979 5.801 C 52.761 8.819 51.753 11.288 51.739 11.288 C 51.725 11.288 50.743 8.824 49.558 5.812 L 47.402 0.336 L 44.259 0.325 L 41.117 0.313 Z M 66.575 8.978 L 66.575 17.642 L 72.907 17.642 L 79.238 17.642 L 79.238 15.976 L 79.238 14.31 L 75.261 14.31 L 71.285 14.31 L 71.285 12.266 L 71.285 10.222 L 74.662 10.222 L 78.04 10.222 L 78.028 8.789 L 78.016 7.356 L 74.651 7.345 L 71.285 7.333 L 71.285 5.401 L 71.285 3.469 L 75.15 3.469 L 79.016 3.469 L 79.016 1.891 L 79.016 0.314 L 72.796 0.314 L 66.575 0.314 Z M 82.393 8.978 L 82.393 17.642 L 84.103 17.642 L 85.813 17.642 L 85.825 11.799 L 85.836 5.956 L 88.873 11.799 L 91.91 17.642 L 94.638 17.642 L 97.366 17.642 L 97.366 8.978 L 97.366 0.314 L 95.655 0.314 L 93.945 0.314 L 93.934 6.065 L 93.922 11.815 L 90.971 6.065 L 88.02 0.314 L 85.206 0.314 L 82.393 0.314 Z\" fill=\"rgb(58, 84, 105)\"></path></svg>',svgContentId:12819292304,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.shopify.com/?ref=supercharge.design\",nodeId:\"JLIqcRA3Q\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-11gxw3m framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 Shopify\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1sbmd4b\",\"data-framer-name\":\"Shopify logo\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 98 28\"><g id=\"ss10842830193_1\"><path d=\"M 0 28 L 0 0 L 97.902 0 L 97.902 28 Z\" fill=\"transparent\"></path><path d=\"M 11.063 0.979 C 11.207 0.979 11.298 1.032 11.413 1.098 C 11.455 1.123 11.5 1.149 11.553 1.175 C 10.378 1.664 9.203 2.937 8.616 5.678 L 6.462 6.266 C 7.147 4.308 8.518 0.979 11.063 0.979 Z M 12.14 1.958 C 12.336 2.546 12.532 3.231 12.532 4.308 L 12.532 4.504 L 9.693 5.287 C 10.28 3.231 11.259 2.35 12.14 1.958 Z M 14.686 3.72 L 13.413 4.112 L 13.413 3.818 C 13.413 2.937 13.315 2.252 13.119 1.664 C 13.805 1.86 14.392 2.741 14.686 3.72 Z M 16.43 3.222 C 16.52 3.209 16.652 3.191 16.777 3.231 C 16.841 3.233 16.853 3.244 16.938 3.329 C 17.133 3.427 18.602 4.895 18.602 4.895 L 18.992 4.932 C 19.599 4.989 20.712 5.091 20.854 5.091 C 20.95 5.091 21.047 5.187 21.049 5.284 L 21.049 5.287 C 21.049 5.482 23.986 25.454 23.986 25.454 L 23.986 25.454 L 23.986 25.455 L 15.567 27.315 L 0 24.378 C 0 24.378 1.959 8.909 2.056 8.42 L 2.062 8.383 C 2.155 7.731 2.169 7.633 2.938 7.441 C 3.163 7.366 3.381 7.291 3.595 7.217 L 3.595 7.217 C 4.219 7.003 4.802 6.803 5.385 6.657 C 5.973 4.406 7.637 0 11.161 0.098 C 11.651 0.098 12.238 0.294 12.63 0.881 L 12.728 0.881 C 14.196 0.881 15.077 2.154 15.567 3.525 C 16.056 3.329 16.35 3.231 16.35 3.231 C 16.37 3.231 16.397 3.227 16.43 3.222 Z M 11.651 12.923 L 12.728 9.79 C 12.728 9.79 12.043 9.301 10.379 9.398 C 6.756 9.398 4.896 11.846 4.896 14.391 C 4.896 16.094 5.851 16.872 6.69 17.556 C 7.346 18.091 7.931 18.568 7.931 19.385 C 7.931 19.874 7.638 20.461 6.854 20.461 C 5.679 20.461 4.309 19.287 4.309 19.287 L 3.624 21.636 C 3.624 21.636 4.994 23.301 7.638 23.301 C 9.889 23.301 11.554 21.636 11.554 18.993 C 11.554 16.965 10.173 15.955 9.094 15.165 C 8.402 14.658 7.833 14.242 7.833 13.706 C 7.833 13.412 7.931 12.433 9.596 12.433 C 10.77 12.433 11.651 12.923 11.651 12.923 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 33.875 15.567 C 32.993 15.077 32.602 14.685 32.602 14.196 C 32.602 13.511 33.189 13.119 34.168 13.119 C 35.245 13.119 36.224 13.608 36.224 13.608 L 37.008 11.259 C 37.008 11.259 36.322 10.671 34.266 10.671 C 31.329 10.671 29.371 12.336 29.371 14.685 C 29.371 16.056 30.35 17.035 31.525 17.72 C 32.504 18.308 32.896 18.699 32.896 19.287 C 32.896 19.874 32.406 20.462 31.427 20.462 C 30.056 20.462 28.686 19.776 28.686 19.776 L 27.903 22.126 C 27.903 22.126 29.077 22.909 31.133 22.909 C 34.07 22.909 36.224 21.441 36.224 18.797 C 36.224 17.329 35.147 16.252 33.875 15.567 Z M 45.721 10.574 C 44.252 10.574 43.077 11.259 42.196 12.336 L 43.469 5.678 L 40.14 5.678 L 36.91 22.616 L 40.238 22.616 L 41.315 16.839 C 41.707 14.686 42.882 13.315 43.958 13.315 C 44.742 13.315 45.035 13.804 45.035 14.588 C 45.035 15.077 45.035 15.567 44.937 16.056 L 43.665 22.713 L 46.993 22.713 L 48.266 15.86 C 48.364 15.175 48.462 14.294 48.462 13.706 C 48.462 11.748 47.483 10.574 45.721 10.574 Z M 54.238 20.266 C 53.063 20.266 52.672 19.287 52.672 18.112 C 52.672 16.252 53.651 13.119 55.413 13.119 C 56.588 13.119 56.979 14.098 56.979 15.077 C 56.979 17.231 56 20.266 54.238 20.266 Z M 55.902 10.574 C 51.888 10.574 49.245 14.196 49.245 18.21 C 49.245 20.755 50.812 22.811 53.847 22.811 C 57.763 22.811 60.406 19.287 60.406 15.175 C 60.406 12.825 59.035 10.574 55.902 10.574 Z M 65.693 20.364 C 64.812 20.364 64.322 19.874 64.322 19.874 L 64.909 16.741 C 65.301 14.685 66.378 13.315 67.553 13.315 C 68.532 13.315 68.923 14.294 68.923 15.175 C 68.825 17.329 67.553 20.364 65.693 20.364 Z M 68.923 10.574 C 66.672 10.574 65.399 12.532 65.399 12.532 L 65.595 10.769 L 62.658 10.769 C 62.56 11.944 62.266 13.804 61.972 15.175 L 59.623 27.315 L 62.951 27.315 L 63.832 22.42 L 63.93 22.42 C 63.93 22.42 64.616 22.811 65.888 22.811 C 69.804 22.811 72.35 18.797 72.35 14.783 C 72.35 12.629 71.371 10.574 68.923 10.574 Z M 77.049 5.874 C 75.972 5.874 75.189 6.755 75.189 7.832 C 75.189 8.811 75.777 9.497 76.756 9.497 C 77.832 9.497 78.714 8.811 78.714 7.539 C 78.714 6.56 78.028 5.874 77.049 5.874 Z M 72.448 22.616 L 75.777 22.616 L 78.028 10.867 L 74.7 10.867 Z M 86.448 10.867 L 84.098 10.867 L 84.196 10.28 C 84.392 9.105 85.077 8.126 86.154 8.126 C 86.742 8.126 87.231 8.322 87.231 8.322 L 87.916 5.678 C 87.916 5.678 87.329 5.385 86.154 5.385 C 84.979 5.385 83.805 5.678 82.923 6.462 C 81.749 7.441 81.259 8.811 80.965 10.182 L 80.867 10.769 L 79.301 10.769 L 78.812 13.315 L 80.378 13.315 L 78.616 22.616 L 81.944 22.616 L 83.707 13.315 L 85.958 13.315 Z M 94.378 10.867 C 94.378 10.867 92.322 16.056 91.343 18.895 C 91.245 18.014 90.56 10.867 90.56 10.867 L 87.035 10.867 L 88.993 21.637 C 88.993 21.832 88.993 22.028 88.895 22.224 C 88.504 23.007 87.818 23.693 87.133 24.182 C 86.546 24.672 85.762 24.965 85.273 25.161 L 86.154 28 C 86.839 27.902 88.21 27.315 89.385 26.238 C 90.853 24.867 92.322 22.616 93.693 19.679 L 97.707 10.965 Z\" fill=\"rgb(58, 84, 105)\"></path></g></svg>',svgContentId:10842830193,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.figma.com/about/?ref=supercharge.design\",nodeId:\"f_I68Ujte\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-76rexo framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 Figma\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-p3iscx\",\"data-framer-name\":\"Figma logo\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 100 50\"><path d=\"M 21.351 38.243 C 21.351 41.758 18.497 44.611 14.983 44.611 C 11.468 44.611 8.614 41.758 8.614 38.243 C 8.614 34.728 11.468 31.875 14.983 31.875 L 21.351 31.875 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 8.608 25 C 8.608 21.485 11.461 18.632 14.976 18.632 L 21.344 18.632 L 21.344 31.375 L 14.976 31.375 C 11.461 31.375 8.608 28.521 8.608 25.007 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 8.608 11.757 C 8.608 8.242 11.461 5.389 14.976 5.389 L 21.344 5.389 L 21.344 18.132 L 14.976 18.132 C 11.461 18.132 8.608 15.279 8.608 11.764 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 21.788 5.389 L 28.156 5.389 C 31.671 5.389 34.524 8.242 34.524 11.757 C 34.524 15.272 31.671 18.125 28.156 18.125 L 21.788 18.125 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 34.524 25.25 L 34.589 25.25 C 34.457 28.649 31.657 31.368 28.226 31.368 C 24.707 31.368 21.788 28.511 21.788 25 C 21.788 21.485 24.641 18.632 28.156 18.632 C 31.671 18.632 34.524 21.485 34.524 25 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 42.08 16.111 L 42.08 29.986 L 43.865 29.986 L 43.865 23.361 L 48.156 23.361 L 48.156 21.639 L 43.865 21.639 L 43.865 17.847 L 49.441 17.847 L 49.441 16.111 Z M 52.67 18.93 C 53.316 18.93 53.837 18.41 53.837 17.764 C 53.837 17.118 53.309 16.667 52.67 16.667 C 52.031 16.667 51.503 17.187 51.503 17.833 C 51.503 18.146 51.628 18.437 51.851 18.667 C 52.073 18.896 52.365 19.014 52.684 19.014 Z M 51.767 20.68 L 51.767 29.986 L 53.483 29.986 L 53.483 20.68 L 51.712 20.68 Z M 60.184 20.403 C 57.809 20.403 56.156 22.486 56.156 24.792 C 56.156 27.097 57.823 29.167 60.184 29.167 C 60.675 29.175 61.163 29.081 61.616 28.891 C 62.069 28.701 62.478 28.419 62.816 28.062 L 62.816 29.299 C 62.811 30.041 62.523 30.754 62.01 31.292 C 61.751 31.556 61.442 31.765 61.101 31.909 C 60.76 32.052 60.394 32.125 60.024 32.125 C 59.456 32.107 58.906 31.924 58.441 31.597 L 57.538 33.146 C 58.231 33.592 59.032 33.842 59.856 33.871 C 60.68 33.9 61.496 33.707 62.219 33.311 C 62.942 32.915 63.545 32.331 63.964 31.621 C 64.383 30.912 64.603 30.102 64.601 29.278 L 64.601 20.667 L 62.816 20.667 L 62.816 21.5 C 62.478 21.143 62.069 20.861 61.616 20.671 C 61.163 20.481 60.675 20.394 60.184 20.403 Z M 57.948 24.792 C 57.907 24.34 57.994 23.886 58.197 23.481 C 58.401 23.076 58.714 22.736 59.101 22.5 C 59.892 22.014 60.885 22.014 61.67 22.5 C 62.455 22.986 62.899 23.875 62.823 24.792 C 62.864 25.243 62.777 25.697 62.573 26.102 C 62.37 26.507 62.057 26.847 61.67 27.083 C 60.878 27.569 59.885 27.569 59.101 27.083 C 58.316 26.597 57.872 25.708 57.948 24.792 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 71.038 22.222 C 70.525 22.224 70.033 22.429 69.67 22.792 C 69.307 23.155 69.103 23.646 69.101 24.16 L 69.101 30.049 L 67.316 30.049 L 67.316 20.743 L 69.101 20.743 L 69.101 21.528 C 69.642 20.805 70.503 20.389 71.406 20.403 C 72.545 20.375 73.608 20.986 74.17 21.979 C 74.865 21.007 75.865 20.417 76.948 20.403 C 78.983 20.403 80.246 22.042 80.253 24.069 L 80.253 29.993 L 78.469 29.993 L 78.469 24.09 C 78.521 23.723 78.467 23.348 78.313 23.01 C 78.159 22.672 77.911 22.385 77.599 22.183 C 77.287 21.982 76.924 21.874 76.553 21.872 C 76.181 21.87 75.817 21.975 75.503 22.174 C 75.191 22.377 74.944 22.666 74.792 23.006 C 74.639 23.345 74.587 23.722 74.642 24.09 L 74.642 29.979 L 72.927 29.979 L 72.927 24.097 C 72.925 23.584 72.721 23.092 72.358 22.729 C 71.995 22.366 71.503 22.162 70.99 22.16 Z M 89.788 21.736 C 89.382 21.312 88.893 20.976 88.352 20.748 C 87.811 20.52 87.229 20.405 86.642 20.41 C 83.983 20.41 82.128 22.66 82.128 25.271 C 82.128 27.882 84.003 30.132 86.642 30.132 C 87.229 30.137 87.811 30.022 88.352 29.794 C 88.893 29.566 89.382 29.229 89.788 28.806 L 89.788 29.861 L 91.573 29.861 L 91.573 20.556 L 89.788 20.556 Z M 83.885 25.347 C 83.795 24.236 84.337 23.167 85.288 22.583 C 86.24 22 87.372 22 88.385 22.583 C 88.85 22.871 89.226 23.282 89.473 23.769 C 89.721 24.256 89.83 24.802 89.788 25.347 C 89.878 26.458 89.337 27.528 88.385 28.111 C 87.434 28.694 86.302 28.694 85.288 28.111 C 84.824 27.823 84.447 27.413 84.2 26.925 C 83.953 26.438 83.844 25.892 83.885 25.347 Z\" fill=\"rgb(58, 84, 105)\"></path></svg>',svgContentId:11864304089,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.dell.com/?ref=supercharge.design\",nodeId:\"ldayHFmOu\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-sppc2i framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 Dell\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ej7560\",\"data-framer-name\":\"Dell logo\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 83 28\"><g id=\"ss9337995437_1\"><path d=\"M 0 28 L 0 0 L 83 0 L 83 28 Z\" fill=\"transparent\"></path><path d=\"M 82.903 21.311 L 82.903 26.354 L 67.29 26.354 L 67.29 1.399 L 72.964 1.399 L 72.964 21.275 L 82.903 21.275 Z M 35.559 0 L 21.716 10.858 C 20.296 5.447 15.681 1.472 10.007 1.472 L 0.068 1.472 L 0.068 26.428 L 10.007 26.428 C 15.681 26.428 20.668 22.453 21.716 17.042 L 35.559 27.9 L 49.401 17.042 L 49.401 26.428 L 65.013 26.428 L 65.013 21.348 L 54.713 21.348 L 54.713 1.472 L 49.039 1.472 L 49.039 10.858 L 35.92 21.716 L 33.083 19.184 L 39.48 14.105 L 46.238 8.694 L 42.335 5.444 L 29.216 15.934 L 26.379 13.402 L 39.498 3.28 L 35.595 0.029 L 35.587 0.029 Z M 5.381 6.515 L 9.645 6.515 C 10.531 6.515 11.402 6.717 12.201 7.089 C 12.999 7.461 13.733 8.006 14.355 8.687 C 14.976 9.364 15.482 10.174 15.836 11.086 C 16.191 12.003 16.386 13.022 16.386 14.105 C 16.386 15.098 16.212 16.066 15.883 16.965 C 15.558 17.863 15.077 18.687 14.477 19.386 C 13.878 20.086 13.162 20.66 12.345 21.061 C 11.528 21.462 10.618 21.687 9.642 21.687 L 5.377 21.687 L 5.377 6.522 Z\" fill=\"rgb(58, 84, 105)\"></path></g></svg>',svgContentId:9337995437,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.lego.com/?ref=supercharge.design\",nodeId:\"ez4iD_Bxy\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-x32h0f framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 Lego\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1sx7e3f\",\"data-framer-name\":\"Vector\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 69 30\"><path d=\"M 67.188 0 C 66.95 0 66.714 0.045 66.495 0.134 C 66.275 0.223 66.075 0.353 65.907 0.517 C 65.739 0.681 65.606 0.875 65.516 1.089 C 65.425 1.304 65.379 1.533 65.38 1.765 C 65.38 1.996 65.426 2.225 65.517 2.439 C 65.607 2.652 65.741 2.846 65.909 3.01 C 66.077 3.173 66.276 3.303 66.496 3.391 C 66.715 3.479 66.95 3.524 67.188 3.523 C 68.191 3.523 69 2.74 69 1.765 C 69 1.533 68.954 1.303 68.863 1.089 C 68.772 0.874 68.639 0.68 68.47 0.516 C 68.302 0.352 68.102 0.222 67.882 0.133 C 67.662 0.045 67.426 0 67.188 0 Z M 67.188 0.348 C 67.992 0.348 68.647 0.981 68.647 1.765 C 68.647 2.544 67.992 3.181 67.188 3.181 C 66.386 3.181 65.74 2.544 65.74 1.765 C 65.74 0.982 66.386 0.348 67.188 0.348 Z M 68.109 2.683 L 67.892 2.316 C 67.704 1.993 67.65 1.944 67.491 1.887 L 67.491 1.879 C 67.808 1.843 67.997 1.642 67.997 1.368 C 67.997 1.079 67.808 0.859 67.405 0.859 L 66.473 0.859 L 66.473 2.683 L 66.858 2.683 L 66.858 1.936 L 66.928 1.936 C 67.092 1.936 67.16 1.953 67.236 2.027 C 67.31 2.1 67.424 2.254 67.492 2.385 L 67.642 2.683 Z M 66.858 1.642 L 66.858 1.144 L 67.205 1.144 C 67.461 1.144 67.595 1.231 67.595 1.391 C 67.595 1.52 67.511 1.642 67.251 1.642 Z M 57.84 10.081 C 57.762 11.96 54.936 19.472 53.932 21.129 C 53.497 21.848 53.007 22.442 52.123 22.439 C 51.351 22.439 51.008 21.907 50.987 21.3 C 50.93 19.604 54.125 11.107 55.218 9.724 C 55.703 8.996 56.245 8.878 56.865 8.886 C 57.772 8.897 57.862 9.535 57.84 10.081 Z M 62.991 13.148 C 62.349 16.261 60.906 19.944 59.336 22.688 C 56.778 27.167 53.672 27.794 50.961 27.762 C 48.251 27.731 45.19 26.756 45.169 22.682 C 45.152 19.756 46.447 15.627 47.549 12.921 C 49.465 8.014 51.425 4.014 57.62 4.086 C 64.843 4.169 63.555 10.425 62.991 13.148 Z M 40.056 8.785 C 39.009 8.785 38.326 9.429 37.816 10.125 C 36.698 11.655 34.27 17.791 33.893 20.312 C 33.637 22.039 34.401 22.389 35.239 22.389 C 36.581 22.389 38.085 21.006 38.599 18.724 C 38.599 18.724 36.043 18.663 36.748 16.457 C 37.431 14.315 38.732 13.852 40.884 13.766 C 45.126 13.597 44.705 16.647 44.367 18.272 C 43.265 23.553 39.405 27.796 33.944 27.796 C 30.206 27.796 27.887 25.78 27.887 22.07 C 27.887 19.427 29.235 15.275 30.302 12.846 C 32.575 7.675 34.959 4.055 41.033 4.055 C 44.676 4.055 47.551 5.329 47.128 8.654 C 46.82 11.094 45.567 12.527 43.29 12.7 C 42.652 12.748 40.045 12.683 40.91 10.281 C 41.21 9.443 41.336 8.785 40.056 8.785 Z M 21.053 17.929 C 20.802 18.589 20.329 19.968 19.948 21.431 C 21.186 21.131 22.116 20.918 23.71 20.958 C 25.526 21 26.687 21.735 26.687 23.195 C 26.687 26.739 22.665 27.78 19.874 27.78 C 16.809 27.78 14.119 26.081 14.119 22.819 C 14.119 18.992 16.248 13.194 18.245 9.332 C 20.7 4.587 23.208 3.955 27.526 3.955 C 29.424 3.955 31.61 4.745 31.61 6.488 C 31.61 8.908 29.506 9.83 27.418 9.948 C 26.529 9.997 25.158 10.045 24.338 9.988 C 24.338 9.988 23.644 11.02 22.904 12.855 C 26.768 12.325 28.407 13.18 27.754 15.356 C 26.873 18.294 24.256 18.488 21.053 17.929 Z M 8.747 21.329 C 12.527 20.69 13.477 22.021 13.357 23.25 C 13.003 26.939 9.527 27.763 6.509 27.695 C 4.321 27.644 2.354 26.67 2.299 24.196 C 2.204 19.868 6.736 9.857 8.871 6.539 C 9.855 4.963 11.056 4.186 12.971 4.186 C 14.784 4.186 15.235 5.091 15.208 6.178 C 15.138 9.076 10.325 17.886 8.747 21.329 Z M 57.342 1.889 C 53.441 1.889 50.744 3.396 48.919 5.499 C 48.611 4.87 48.374 4.593 48.045 4.23 C 46.551 2.586 44.147 1.817 40.924 1.817 C 37.775 1.817 35.149 2.776 33.327 4.285 C 32.38 2.786 30.124 1.792 27.403 1.792 C 23.847 1.792 19.974 2.284 17.675 5.889 C 17.622 4.59 17.499 3.905 16.749 3.13 C 15.839 2.193 14.365 1.946 12.929 1.946 C 10.311 1.946 8.343 3.058 6.926 5.326 C 4.872 8.523 -0.112 19.044 0.002 24.137 C 0.072 27.429 2.341 29.8 6.399 29.893 C 9.57 29.967 12.056 29.141 13.638 27.588 C 15.057 29.086 17.224 29.968 19.814 29.968 C 22.699 29.968 25.605 29.127 27.321 27.282 C 28.767 29.008 31.039 30.013 33.962 30 C 37.786 29.983 41.141 28.219 43.335 25.512 C 44.536 28.702 47.588 29.968 50.922 29.968 C 58.227 29.968 61.432 25.08 64.105 17.346 C 64.708 15.602 65.51 12.696 65.645 10.254 C 65.865 6.189 64.099 1.889 57.342 1.889 Z\" fill=\"rgb(58, 84, 105)\"></path></svg>',svgContentId:12571528048,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.ey.com/?ref=supercharge.design\",nodeId:\"Yuj81NGAg\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ffp7ik framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 EY\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-f23twr\",\"data-framer-name\":\"04-ey (Traced)\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 44 40\"><path d=\"M 21.857 7.898 C 9.851 12.241 0.017 15.806 0.003 15.821 C -0.011 15.835 0.027 15.837 0.088 15.825 C 0.148 15.812 9.917 14.102 21.796 12.024 C 33.674 9.947 43.48 8.229 43.586 8.208 L 43.778 8.169 L 43.778 4.083 C 43.778 0.838 43.769 -0.002 43.733 0 C 43.707 0.001 33.864 3.556 21.857 7.898 Z M 0.363 29.128 L 0.363 40 L 9.237 40 L 18.11 40 L 18.11 37.562 L 18.11 35.123 L 12.573 35.123 L 7.036 35.123 L 7.036 33.326 L 7.036 31.53 L 11.052 31.53 L 15.067 31.53 L 15.067 29.219 L 15.067 26.909 L 11.052 26.909 L 7.036 26.909 L 7.036 25.113 L 7.036 23.316 L 11.469 23.307 L 15.901 23.297 L 14.433 20.776 L 12.966 18.256 L 6.664 18.256 L 0.363 18.256 Z M 15.043 18.284 C 15.053 18.3 16.795 21.289 18.914 24.926 L 22.767 31.54 L 22.767 35.77 L 22.767 40 L 26.086 40 L 29.404 40 L 29.404 35.782 L 29.404 31.564 L 33.273 24.925 C 35.401 21.273 37.141 18.279 37.141 18.27 C 37.141 18.262 35.507 18.259 33.509 18.264 L 29.876 18.274 L 28.029 21.79 C 27.013 23.724 26.168 25.32 26.152 25.335 C 26.136 25.351 25.288 23.768 24.268 21.819 L 22.413 18.274 L 18.72 18.264 C 16.688 18.259 15.034 18.268 15.043 18.284 Z\" fill=\"rgb(58, 84, 105)\"></path></svg>',svgContentId:11545090433,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://asicentral.com/?ref=supercharge.design\",nodeId:\"M3S9yxlpW\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-127xvz4 framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 Asicentral\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-z8z7pm\",\"data-framer-name\":\"Vector\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 56 30\"><path d=\"M 47.979 12.139 L 47.979 13.213 C 47.979 13.461 47.979 13.543 47.979 13.708 C 47.979 14.121 47.897 14.204 47.732 14.287 C 47.401 14.369 47.319 14.121 47.071 13.296 L 46.41 12.222 C 44.263 9.827 42.446 8.671 37.822 8.506 C 34.849 8.423 33.528 8.754 32.95 10.488 C 32.537 11.479 32.785 12.552 33.528 13.296 C 34.436 14.287 35.592 14.369 36.913 14.534 C 37.822 14.617 38.73 14.699 39.556 15.112 C 40.795 15.608 41.786 16.929 42.033 18.333 C 42.446 19.985 41.703 21.636 40.217 22.71 C 36.501 25.105 31.05 23.288 29.068 22.132 C 27.086 20.976 24.609 18.003 23.701 14.369 C 23.37 12.883 23.205 11.561 23.04 10.24 C 22.71 7.515 22.462 5.12 20.48 3.138 C 20.48 3.138 20.563 3.055 20.645 2.973 C 20.645 2.89 20.48 2.973 20.48 2.973 C 18.003 0.165 12.883 -0.908 8.588 2.147 C 6.111 3.881 4.377 6.441 4.046 13.048 L 10.653 13.048 C 10.901 8.919 11.809 7.845 13.296 7.432 C 14.534 7.185 15.525 7.432 16.351 8.423 C 17.094 9.662 17.177 10.818 17.342 12.387 L 17.59 14.617 C 17.755 16.021 18.003 19.159 21.058 23.618 C 22.875 25.93 26.343 28.738 30.637 29.646 C 37.244 30.39 42.694 30.472 47.236 24.609 L 47.319 24.444 C 47.484 24.196 47.566 24.031 47.732 24.031 L 48.062 24.031 L 48.062 28.408 C 48.062 28.408 48.062 29.399 48.062 29.729 L 55.081 29.729 L 55.081 8.506 C 54.586 8.506 48.557 8.506 48.062 8.506 L 48.062 12.139 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 39.556 0.908 C 29.729 0.578 26.591 4.955 25.517 7.515 C 23.948 11.644 25.352 16.681 29.068 19.902 C 31.546 21.471 33.032 21.884 35.262 22.049 C 36.831 22.049 37.987 21.801 38.648 21.471 C 39.474 21.141 39.969 20.232 40.134 19.572 C 40.134 19.407 40.217 19.241 40.217 19.076 C 40.217 18.498 40.052 18.003 39.886 17.755 C 39.061 16.268 37.574 16.103 36.005 15.855 L 34.271 15.525 C 33.115 15.195 32.619 14.782 31.711 13.708 C 31.298 13.048 31.05 12.139 31.05 11.231 C 31.05 10.488 31.215 9.662 31.711 9.001 C 32.289 8.01 33.115 7.102 35.675 6.937 C 35.675 6.937 54.503 6.937 55.081 6.937 C 55.081 6.606 55.081 5.946 55.081 5.946 C 55.081 5.946 55.081 1.321 55.081 0.826 C 53.017 0.908 39.556 0.908 39.556 0.908 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 18.828 23.123 C 18.085 23.123 8.175 23.123 8.175 23.123 L 8.01 23.123 C 7.597 23.123 7.432 23.04 7.019 22.71 C 6.937 22.544 6.854 22.379 6.854 22.214 C 6.854 22.132 6.854 22.132 6.937 22.049 C 7.019 21.719 7.185 21.471 7.597 21.471 C 7.597 21.471 17.177 21.471 18.003 21.471 C 17.259 19.819 16.516 17.672 16.268 14.699 C 15.112 14.699 6.524 14.782 6.524 14.782 C 5.037 14.864 3.881 15.277 2.808 16.186 C 0.826 17.755 0 19.572 0 22.214 C 0.165 25.022 1.074 26.921 3.055 28.243 C 5.037 29.564 6.606 29.894 9.992 29.977 C 9.992 29.977 24.196 29.894 26.096 29.894 C 23.04 28.243 20.976 26.426 18.828 23.123 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 24.609 3.634 C 25.6 3.634 26.426 2.89 26.426 1.817 C 26.426 0.743 25.6 0 24.609 0 C 23.618 0 22.792 0.826 22.792 1.817 C 22.792 2.808 23.618 3.551 24.609 3.634 Z M 24.609 0.248 C 25.435 0.248 26.095 0.908 26.095 1.734 C 26.095 2.643 25.435 3.303 24.609 3.303 C 23.783 3.303 23.123 2.643 23.123 1.817 C 23.123 0.991 23.783 0.248 24.609 0.248 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 24.196 1.899 L 24.609 1.899 L 25.187 2.808 L 25.517 2.808 L 24.939 1.899 C 25.187 1.899 25.435 1.734 25.435 1.321 C 25.435 0.908 25.187 0.743 24.692 0.743 L 23.866 0.743 L 23.866 2.808 L 24.196 2.808 Z M 24.196 0.991 L 24.609 0.991 C 24.857 0.991 25.105 1.074 25.105 1.321 C 25.105 1.652 24.857 1.652 24.609 1.652 L 24.196 1.652 Z\" fill=\"rgb(58, 84, 105)\"></path></svg>',svgContentId:11472442954,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.nsw.gov.au/?ref=supercharge.design\",nodeId:\"Ehts7t0uS\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1jeqc2i framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 Ausgov\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-t0b0mt\",\"data-framer-name\":\"Frame\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 45 48\"><g id=\"ss8960074344_1\"><path d=\"M 0 48 L 0 0 L 45 0 L 45 48 Z\" fill=\"transparent\"></path><path d=\"M 4.206 46.321 L 3.332 46.321 L 3.329 46.321 L 3.329 45.588 L 5.267 45.597 L 5.267 47.942 L 4.531 47.942 L 4.531 47.515 C 4.485 47.562 4.435 47.61 4.382 47.657 C 4.265 47.758 4.123 47.841 3.959 47.903 C 3.793 47.967 3.587 48 3.349 48 C 2.944 48 2.587 47.908 2.288 47.726 C 1.987 47.543 1.754 47.281 1.591 46.948 C 1.43 46.617 1.349 46.222 1.349 45.773 C 1.349 45.318 1.435 44.917 1.604 44.583 C 1.773 44.247 2.015 43.983 2.322 43.799 C 2.63 43.617 2.991 43.524 3.396 43.524 C 3.66 43.524 3.903 43.566 4.119 43.648 C 4.337 43.732 4.528 43.847 4.687 43.989 C 4.849 44.132 4.977 44.297 5.068 44.478 C 5.16 44.657 5.21 44.849 5.22 45.047 L 5.223 45.121 L 4.174 45.121 L 4.163 45.063 C 4.14 44.941 4.093 44.827 4.022 44.724 C 3.953 44.622 3.863 44.539 3.755 44.478 C 3.648 44.418 3.521 44.387 3.377 44.387 C 3.202 44.387 3.041 44.432 2.901 44.52 C 2.761 44.608 2.648 44.752 2.565 44.948 C 2.48 45.148 2.438 45.418 2.438 45.75 C 2.438 46.021 2.466 46.247 2.521 46.423 C 2.575 46.596 2.65 46.735 2.741 46.835 C 2.832 46.934 2.935 47.005 3.049 47.044 C 3.165 47.086 3.287 47.107 3.412 47.107 C 3.529 47.107 3.633 47.088 3.723 47.051 C 3.814 47.012 3.894 46.963 3.958 46.902 C 4.024 46.841 4.076 46.775 4.112 46.705 C 4.15 46.635 4.173 46.565 4.181 46.497 Z M 7.833 43.525 C 8.243 43.525 8.604 43.616 8.907 43.797 C 9.211 43.979 9.451 44.241 9.617 44.576 C 9.781 44.908 9.865 45.31 9.865 45.771 C 9.865 46.224 9.783 46.622 9.62 46.953 C 9.455 47.287 9.217 47.548 8.912 47.728 C 8.609 47.909 8.245 48 7.833 48 C 7.416 48 7.051 47.908 6.746 47.728 C 6.442 47.549 6.201 47.29 6.034 46.956 C 5.87 46.626 5.786 46.227 5.786 45.771 C 5.786 45.313 5.87 44.911 6.038 44.579 C 6.206 44.244 6.447 43.981 6.753 43.799 C 7.06 43.617 7.423 43.525 7.833 43.525 Z M 7.833 47.157 C 8.027 47.157 8.197 47.111 8.337 47.022 C 8.476 46.932 8.586 46.787 8.664 46.59 C 8.742 46.387 8.783 46.115 8.783 45.783 C 8.783 45.441 8.742 45.162 8.662 44.954 C 8.584 44.752 8.474 44.602 8.334 44.508 C 8.193 44.415 8.025 44.367 7.834 44.367 C 7.643 44.367 7.474 44.415 7.333 44.508 C 7.192 44.601 7.08 44.752 7.002 44.956 C 6.92 45.165 6.879 45.443 6.879 45.782 C 6.879 46.115 6.92 46.387 7.001 46.59 C 7.079 46.787 7.191 46.932 7.331 47.021 C 7.472 47.111 7.641 47.157 7.833 47.157 Z M 11.962 46.654 L 10.892 43.598 L 9.919 43.598 L 11.423 47.927 L 12.499 47.927 L 14.016 43.598 L 13.042 43.598 Z M 17.229 46.17 L 15.44 46.17 L 15.44 47.062 L 17.532 47.065 L 17.532 47.927 L 14.439 47.927 L 14.439 43.598 L 17.502 43.598 L 17.499 44.453 L 15.445 44.453 L 15.445 45.326 L 17.229 45.326 Z M 21.135 45.908 C 21.254 45.803 21.352 45.667 21.427 45.506 C 21.499 45.346 21.537 45.15 21.537 44.92 C 21.537 44.664 21.483 44.434 21.375 44.237 C 21.268 44.037 21.098 43.879 20.868 43.765 C 20.642 43.654 20.352 43.598 20.004 43.598 L 18.138 43.598 L 18.138 47.925 L 19.139 47.925 L 19.139 46.313 L 19.875 46.313 L 20.569 47.925 L 21.619 47.925 L 20.811 46.133 C 20.928 46.072 21.037 45.996 21.135 45.908 Z M 20.525 44.941 C 20.525 45.112 20.466 45.248 20.347 45.357 C 20.227 45.465 20.06 45.52 19.85 45.52 L 19.139 45.52 L 19.139 44.387 L 19.913 44.387 C 20.093 44.387 20.238 44.436 20.355 44.537 C 20.469 44.636 20.525 44.768 20.525 44.941 Z M 23.158 43.598 L 24.987 46.209 L 24.987 43.598 L 25.991 43.598 L 25.991 47.927 L 25.107 47.927 L 23.2 45.208 L 23.2 47.927 L 22.199 47.927 L 22.199 43.598 Z M 29.057 46.42 L 28.138 43.598 L 26.766 43.598 L 26.766 47.927 L 27.776 47.927 L 27.776 45.138 L 28.666 47.927 L 29.445 47.927 L 30.342 45.123 L 30.342 47.927 L 31.354 47.927 L 31.354 43.598 L 29.985 43.598 Z M 34.917 46.17 L 33.128 46.17 L 33.128 47.062 L 35.221 47.065 L 35.221 47.927 L 32.127 47.927 L 32.127 43.598 L 35.191 43.598 L 35.187 44.453 L 33.134 44.453 L 33.134 45.326 L 34.917 45.326 Z M 38.651 46.209 L 36.823 43.598 L 35.863 43.598 L 35.863 47.927 L 36.863 47.927 L 36.863 45.208 L 38.77 47.927 L 39.654 47.927 L 39.654 43.598 L 38.651 43.598 Z M 41.359 44.494 L 40.076 44.494 L 40.076 43.598 L 43.62 43.598 L 43.62 44.494 L 42.367 44.494 L 42.367 47.927 L 41.359 47.927 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 25.488 35.869 C 25.231 35.459 24.842 35.086 24.335 34.761 C 23.827 34.436 23.136 34.188 22.283 34.024 L 19.906 33.542 C 19.188 33.389 18.693 33.192 18.435 32.956 C 18.183 32.725 18.055 32.419 18.055 32.046 C 18.055 31.808 18.11 31.591 18.219 31.401 C 18.328 31.211 18.485 31.042 18.686 30.9 C 18.889 30.758 19.141 30.646 19.434 30.567 C 19.732 30.487 20.065 30.446 20.427 30.446 C 20.903 30.446 21.332 30.508 21.703 30.631 C 22.07 30.753 22.374 30.954 22.606 31.228 C 22.838 31.502 22.981 31.875 23.03 32.336 L 23.037 32.4 L 25.985 32.4 L 25.984 32.327 C 25.971 31.543 25.746 30.823 25.315 30.189 C 24.884 29.553 24.248 29.043 23.425 28.671 C 22.604 28.3 21.579 28.112 20.379 28.112 C 19.372 28.112 18.448 28.285 17.633 28.628 C 16.817 28.971 16.161 29.466 15.685 30.1 C 15.208 30.737 14.97 31.499 14.977 32.367 C 14.996 33.425 15.322 34.284 15.946 34.922 C 16.567 35.555 17.418 35.977 18.477 36.174 L 20.874 36.656 C 21.313 36.742 21.712 36.855 22.059 36.992 C 22.4 37.126 22.671 37.301 22.867 37.511 C 23.058 37.716 23.155 37.986 23.155 38.312 C 23.155 38.674 23.034 38.98 22.797 39.22 C 22.554 39.466 22.224 39.651 21.817 39.773 C 21.402 39.897 20.938 39.959 20.438 39.959 C 19.95 39.959 19.501 39.885 19.102 39.737 C 18.706 39.591 18.374 39.378 18.114 39.104 C 17.855 38.831 17.677 38.489 17.586 38.089 L 17.573 38.033 L 14.568 38.033 L 14.576 38.112 C 14.646 38.806 14.865 39.42 15.225 39.939 C 15.584 40.455 16.045 40.89 16.593 41.234 C 17.14 41.575 17.753 41.836 18.416 42.008 C 19.078 42.178 19.762 42.265 20.448 42.265 C 21.571 42.265 22.568 42.09 23.41 41.745 C 24.255 41.398 24.924 40.92 25.399 40.326 C 25.877 39.727 26.119 39.044 26.119 38.295 C 26.119 37.941 26.079 37.547 25.998 37.125 C 25.915 36.7 25.744 36.277 25.488 35.869 Z M 4.506 32.874 L 10.921 42.013 L 13.529 42.013 L 13.529 28.346 L 10.611 28.346 L 10.611 37.137 L 4.475 28.377 L 4.453 28.346 L 1.597 28.346 L 1.597 42.013 L 4.506 42.013 Z M 38.671 37.087 L 41.171 28.346 L 44.03 28.346 L 39.932 42.013 L 37.61 42.013 L 35.081 33.362 L 32.534 42.013 L 30.25 42.013 L 26.161 28.346 L 29.03 28.346 L 31.529 37.086 L 34.029 28.346 L 36.143 28.346 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 21.247 24.955 C 17.816 24.54 14.483 25.624 8.618 24.053 C 8.019 23.892 7.798 24.515 8.122 25.036 C 9.698 27.574 17.657 25.585 21.263 25.219 C 21.421 25.203 21.405 24.974 21.247 24.955 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 10.404 20.423 C 9.212 18.698 8.237 16.77 7.482 14.648 C 5.206 15.303 2.876 16.25 0.505 17.488 C 0.198 17.648 0.01 17.948 0 18.288 C -0.008 18.63 0.163 18.938 0.461 19.113 C 5.054 21.822 9.543 23.372 13.828 23.73 C 12.552 22.963 11.383 21.837 10.404 20.423 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 4.006 14.659 C 5.057 14.245 6.098 13.89 7.13 13.591 C 6.76 12.409 6.457 11.17 6.218 9.878 C 5.032 9.732 3.804 9.638 2.534 9.597 C 2.524 9.597 2.512 9.596 2.501 9.596 C 2.169 9.596 1.869 9.761 1.694 10.042 C 1.514 10.332 1.506 10.684 1.673 10.982 C 2.41 12.295 3.189 13.52 4.006 14.659 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 15.29 23.241 C 16.003 23.551 16.731 23.724 17.438 23.76 C 15.708 22.54 14.35 20.47 13.567 17.832 C 12.558 14.436 12.221 10.69 12.554 6.647 C 11.193 5.801 9.718 5.009 8.13 4.273 C 7.824 4.131 7.473 4.158 7.192 4.347 C 6.911 4.534 6.756 4.845 6.777 5.176 C 7.146 11.042 8.679 15.962 11.333 19.799 C 12.446 21.409 13.814 22.599 15.29 23.241 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 21.842 16.33 C 21.49 15.52 21.102 14.757 20.499 13.899 C 18.795 11.471 16.499 9.281 13.641 7.353 C 13.611 7.807 13.194 12.718 14.657 17.519 C 15.771 21.171 17.673 22.658 18.715 23.233 C 19.764 23.811 20.724 23.947 21.849 23.672 C 20.709 22.14 20.851 18.997 21.842 16.33 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 18.675 4.042 C 17.861 3.069 16.979 2.106 16.025 1.155 C 15.841 0.97 15.603 0.872 15.357 0.872 C 15.269 0.872 15.18 0.885 15.092 0.91 C 14.758 1.008 14.516 1.271 14.443 1.616 C 14.257 2.501 13.903 4.305 13.746 6.09 C 14.965 6.881 16.09 7.717 17.121 8.597 C 17.521 7.095 18.041 5.574 18.675 4.042 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 22.438 14.954 C 23.592 12.709 25.435 10.697 26.818 9.426 C 26.059 6.378 24.889 3.503 23.274 0.495 C 23.108 0.185 22.794 0 22.439 0 C 22.083 0 21.771 0.185 21.604 0.495 C 19.972 3.513 18.782 6.516 18.063 9.425 C 19.508 10.743 21.413 12.893 22.438 14.954 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 31.137 6.089 C 30.981 4.305 30.627 2.501 30.441 1.615 C 30.368 1.27 30.126 1.007 29.792 0.909 C 29.704 0.884 29.615 0.871 29.527 0.871 C 29.281 0.871 29.043 0.969 28.858 1.154 C 27.905 2.105 27.022 3.068 26.208 4.041 C 26.843 5.574 27.363 7.095 27.763 8.595 C 28.794 7.716 29.919 6.88 31.137 6.089 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 26.677 22.918 C 27.873 22.089 29.069 20.645 29.828 18.637 C 31.298 14.749 31.45 10.418 31.24 7.353 C 28.576 9.104 24.348 12.762 22.904 16.672 C 22.225 18.512 21.908 21.018 22.432 22.417 C 22.65 23.001 23.023 23.445 23.534 23.656 C 24.309 23.975 25.5 23.734 26.677 22.918 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 31.317 17.833 C 30.534 20.47 29.175 22.54 27.446 23.761 C 28.153 23.725 28.882 23.55 29.594 23.241 C 31.07 22.599 32.438 21.408 33.551 19.799 C 36.205 15.962 37.738 11.042 38.107 5.177 C 38.128 4.845 37.973 4.535 37.692 4.347 C 37.411 4.159 37.06 4.131 36.754 4.273 C 35.166 5.009 33.691 5.801 32.33 6.648 C 32.663 10.69 32.325 14.436 31.317 17.833 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 40.877 14.659 C 41.695 13.521 42.474 12.294 43.211 10.982 C 43.378 10.683 43.371 10.332 43.19 10.042 C 43.015 9.761 42.715 9.595 42.383 9.595 C 42.372 9.595 42.36 9.595 42.349 9.596 C 41.08 9.637 39.852 9.733 38.666 9.878 C 38.427 11.17 38.124 12.408 37.754 13.59 C 38.786 13.89 39.828 14.246 40.877 14.659 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 44.378 17.487 C 42.006 16.249 39.677 15.302 37.4 14.646 C 36.646 16.769 35.671 18.698 34.478 20.422 C 33.5 21.837 32.331 22.962 31.054 23.73 C 35.338 23.371 39.828 21.821 44.421 19.112 C 44.719 18.937 44.891 18.629 44.882 18.288 C 44.874 17.947 44.685 17.648 44.378 17.487 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 36.267 24.053 C 30.402 25.624 27.069 24.54 23.637 24.955 C 23.48 24.974 23.463 25.203 23.621 25.219 C 27.228 25.585 35.187 27.574 36.762 25.036 C 37.086 24.515 36.866 23.892 36.267 24.053 Z\" fill=\"rgb(58, 84, 105)\"></path></g></svg>',svgContentId:8960074344,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://flysoft.eu/?ref=supercharge.design\",nodeId:\"L3e73P_F3\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1j8ei9v framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 Flysoft\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ckpwr\",\"data-framer-name\":\"Vector\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 93 26\"><path d=\"M 41.519 20.667 C 39.147 20.667 37.062 20.06 35.261 18.849 C 35.03 18.688 34.915 18.492 34.915 18.26 C 34.915 18.082 34.977 17.905 35.101 17.726 L 36.252 16.202 C 36.429 15.97 36.634 15.855 36.866 15.855 C 37.044 15.855 37.205 15.899 37.347 15.988 C 37.989 16.345 38.67 16.63 39.392 16.844 C 40.114 17.057 40.806 17.164 41.464 17.164 C 42.07 17.164 42.574 17.04 42.975 16.79 C 43.376 16.541 43.577 16.228 43.577 15.855 C 43.577 15.515 43.39 15.265 43.015 15.105 C 42.643 14.946 42.159 14.82 41.572 14.732 L 40.742 14.624 C 39.513 14.428 38.541 14.196 37.828 13.929 C 37.115 13.663 36.464 13.234 35.877 12.647 C 35.236 12.006 34.915 11.122 34.915 9.999 C 34.915 8.323 35.517 7.129 36.719 6.416 C 37.922 5.705 39.343 5.346 40.983 5.346 C 42.017 5.346 42.975 5.481 43.858 5.748 C 44.74 6.015 45.6 6.425 46.437 6.977 C 46.686 7.12 46.812 7.316 46.812 7.566 C 46.812 7.727 46.741 7.904 46.598 8.1 L 45.475 9.598 C 45.296 9.83 45.093 9.945 44.861 9.945 C 44.682 9.945 44.513 9.9 44.352 9.812 C 43.123 9.152 41.955 8.823 40.85 8.823 C 40.369 8.823 39.928 8.925 39.526 9.13 C 39.125 9.335 38.924 9.598 38.924 9.918 C 38.924 10.311 39.171 10.595 39.661 10.774 C 40.151 10.951 40.832 11.105 41.706 11.228 C 43.131 11.478 44.186 11.724 44.873 11.965 C 45.557 12.205 46.17 12.61 46.706 13.181 C 47.275 13.84 47.56 14.741 47.56 15.881 C 47.56 17.415 47.033 18.595 45.983 19.423 C 44.932 20.251 43.443 20.667 41.519 20.667 Z M 78.588 5.854 L 78.588 2.647 C 78.588 2.397 78.66 2.2 78.802 2.059 C 78.942 1.917 79.14 1.845 79.389 1.845 L 81.743 1.845 C 81.992 1.845 82.19 1.917 82.33 2.059 C 82.472 2.2 82.544 2.399 82.544 2.647 L 82.544 5.854 L 84.684 5.854 C 84.933 5.854 85.13 5.926 85.271 6.068 C 85.414 6.211 85.485 6.412 85.485 6.657 L 85.485 8.475 C 85.485 8.72 85.412 8.922 85.271 9.064 C 85.131 9.204 84.929 9.278 84.684 9.278 L 82.544 9.278 L 82.544 14.838 C 82.544 15.56 82.668 16.119 82.906 16.482 C 83.145 16.845 83.632 17.031 84.362 17.031 L 84.55 17.031 C 85.102 17.031 85.379 17.289 85.379 17.806 L 85.379 19.57 C 85.379 19.82 85.311 20.021 85.178 20.173 C 85.044 20.323 84.852 20.409 84.603 20.427 C 84.371 20.444 84.033 20.453 83.588 20.453 C 82.394 20.453 81.457 20.354 80.779 20.159 C 80.102 19.963 79.566 19.606 79.175 19.09 C 78.784 18.573 78.588 17.806 78.588 16.79 L 78.588 9.278 L 71.85 9.278 L 71.85 19.517 C 71.85 19.767 71.779 19.963 71.636 20.105 C 71.494 20.248 71.298 20.319 71.049 20.319 L 68.642 20.319 C 68.392 20.319 68.196 20.248 68.053 20.105 C 67.911 19.963 67.84 19.767 67.84 19.517 L 67.84 9.278 L 66.984 9.278 C 66.735 9.278 66.539 9.205 66.396 9.064 C 66.253 8.921 66.182 8.724 66.182 8.475 L 66.182 6.657 C 66.182 6.407 66.253 6.211 66.396 6.068 C 66.539 5.926 66.735 5.854 66.984 5.854 L 67.84 5.854 C 67.911 3.948 68.45 2.495 69.458 1.496 C 70.464 0.499 71.876 0 73.695 0 C 74.034 0 74.372 0.027 74.711 0.08 C 75.21 0.151 75.442 0.455 75.406 0.989 L 75.299 2.646 C 75.281 3.109 75.12 3.341 74.818 3.341 L 74.149 3.314 C 73.258 3.314 72.653 3.528 72.331 3.956 C 72.011 4.384 71.85 5.017 71.85 5.854 Z M 57.317 20.667 C 55.874 20.667 54.542 20.322 53.321 19.637 C 52.101 18.951 51.133 18.02 50.42 16.844 C 49.707 15.685 49.35 14.401 49.35 12.993 C 49.35 11.621 49.707 10.346 50.42 9.17 C 51.133 7.994 52.104 7.058 53.334 6.363 C 54.546 5.686 55.874 5.346 57.317 5.346 C 58.762 5.346 60.099 5.69 61.328 6.377 C 62.557 7.063 63.539 7.994 64.269 9.17 C 64.982 10.328 65.339 11.603 65.339 12.993 C 65.339 14.366 64.977 15.641 64.256 16.817 C 63.534 17.993 62.557 18.929 61.328 19.624 C 60.099 20.319 58.762 20.667 57.317 20.667 Z M 57.317 8.85 C 56.587 8.85 55.908 9.031 55.285 9.397 C 54.662 9.762 54.171 10.258 53.816 10.882 C 53.458 11.541 53.281 12.245 53.281 12.994 C 53.281 13.795 53.455 14.513 53.802 15.145 C 54.149 15.777 54.636 16.273 55.259 16.63 C 55.883 17.004 56.569 17.19 57.317 17.19 C 58.067 17.19 58.749 17.007 59.362 16.643 C 59.976 16.277 60.463 15.774 60.821 15.132 C 61.176 14.472 61.355 13.759 61.355 12.994 C 61.355 12.228 61.181 11.527 60.834 10.895 C 60.487 10.262 60 9.759 59.376 9.384 C 58.753 9.027 58.067 8.85 57.317 8.85 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 5.668 19.692 C 5.668 19.941 5.597 20.137 5.454 20.279 C 5.312 20.422 5.116 20.493 4.867 20.493 L 2.46 20.493 C 2.211 20.493 2.014 20.422 1.871 20.279 C 1.729 20.137 1.659 19.941 1.659 19.692 L 1.659 9.452 L 0.803 9.452 C 0.553 9.452 0.357 9.379 0.214 9.238 C 0.071 9.095 0 8.898 0 8.649 L 0 6.831 C 0 6.581 0.071 6.385 0.214 6.242 C 0.357 6.1 0.553 6.028 0.803 6.028 L 1.659 6.028 C 1.729 4.122 2.268 2.669 3.276 1.67 C 4.282 0.673 5.695 0.174 7.513 0.174 C 7.852 0.174 8.19 0.201 8.53 0.254 C 9.028 0.325 9.26 0.629 9.225 1.163 L 9.117 2.82 C 9.099 3.283 8.938 3.515 8.636 3.515 L 7.967 3.488 C 7.076 3.488 6.471 3.702 6.149 4.13 C 5.829 4.558 5.668 5.191 5.668 6.028 L 7.513 6.028 C 7.762 6.028 7.958 6.1 8.102 6.242 C 8.243 6.385 8.315 6.581 8.315 6.831 L 8.315 8.649 C 8.315 8.898 8.243 9.095 8.102 9.238 C 7.958 9.379 7.762 9.452 7.513 9.452 L 5.668 9.452 Z M 90.377 15.437 C 91.71 15.437 92.794 16.522 92.794 17.854 C 92.794 19.19 91.71 20.274 90.377 20.274 C 89.042 20.274 87.957 19.19 87.957 17.854 C 87.957 16.522 89.042 15.437 90.377 15.437 Z M 25.67 25.385 C 25.509 25.795 25.206 26 24.761 26 L 22.034 26 C 21.57 26 21.338 25.813 21.338 25.439 C 21.338 25.332 21.365 25.208 21.418 25.064 L 23.558 19.959 L 17.676 6.776 C 17.623 6.635 17.596 6.5 17.596 6.376 C 17.596 6.216 17.654 6.086 17.769 5.988 C 17.885 5.891 18.051 5.841 18.263 5.841 L 21.206 5.841 C 21.65 5.841 21.954 6.046 22.113 6.456 L 25.59 15.199 L 28.772 6.483 C 28.913 6.055 29.226 5.841 29.707 5.841 L 32.622 5.841 C 32.853 5.841 33.032 5.895 33.156 6.002 C 33.281 6.108 33.343 6.251 33.343 6.429 C 33.343 6.518 33.317 6.635 33.264 6.776 Z M 12.471 20.493 C 12.222 20.493 12.025 20.42 11.882 20.279 C 11.739 20.136 11.668 19.94 11.668 19.69 L 11.668 1.082 C 11.668 0.832 11.739 0.636 11.882 0.494 C 12.025 0.351 12.222 0.28 12.471 0.28 L 14.876 0.28 C 15.127 0.28 15.322 0.351 15.465 0.494 C 15.608 0.636 15.679 0.832 15.679 1.082 L 15.679 19.69 C 15.679 19.94 15.608 20.136 15.465 20.279 C 15.322 20.42 15.127 20.493 14.876 20.493 Z\" fill=\"rgb(58, 84, 105)\"></path></svg>',svgContentId:11294084642,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://advesa.com/?ref=supercharge.design\",nodeId:\"xK4mUk6fH\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1hq1gdz framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 Advesa\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-10gracb\",\"data-framer-name\":\"09-advesadigital (Traced)\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 105 17\"><path d=\"M 19.436 0.205 C 19.067 0.314 18.63 0.44 18.465 0.484 L 18.165 0.564 L 18.165 2.369 L 18.165 4.175 L 17.661 3.7 C 14.436 0.657 9.535 3.733 9.984 8.519 C 10.367 12.598 14.879 14.652 17.671 12.018 L 18.165 11.552 L 18.165 12.268 L 18.165 12.984 L 19.206 12.965 L 20.247 12.945 L 20.247 6.493 C 20.247 2.25 20.223 0.035 20.177 0.024 C 20.138 0.014 19.805 0.096 19.436 0.205 Z M 68.398 0.297 L 67.778 0.587 L 67.799 2.624 C 67.817 4.419 67.807 4.642 67.718 4.498 C 66.505 2.541 62.613 2.107 60.663 3.712 L 60.494 3.85 L 60.649 4.264 C 60.734 4.492 60.818 4.7 60.834 4.727 C 60.851 4.754 61.175 4.62 61.554 4.43 C 64.786 2.807 67.922 4.665 67.764 8.11 C 67.614 11.377 64.667 12.973 61.513 11.495 C 60.805 11.163 60.783 11.175 60.811 11.856 L 60.832 12.377 L 61.114 12.536 C 63.329 13.788 66.553 13.184 67.718 11.299 C 67.809 11.152 67.819 11.23 67.819 12.075 L 67.819 13.016 L 68.472 13.036 L 69.125 13.056 L 69.125 6.525 C 69.125 2.933 69.101 -0.004 69.072 0 C 69.043 0.004 68.74 0.137 68.398 0.297 Z M 88.867 0.301 L 88.246 0.587 L 88.267 5.637 L 88.288 10.687 L 88.482 11.258 C 88.926 12.572 89.717 13.124 91.231 13.179 C 92.447 13.223 92.417 13.24 92.417 12.547 L 92.417 11.974 L 92.046 12.01 C 91.142 12.098 90.344 11.822 89.999 11.301 C 89.609 10.711 89.593 10.551 89.593 7.111 L 89.593 3.949 L 91.055 3.93 L 92.517 3.911 L 92.714 3.381 C 92.821 3.09 92.91 2.828 92.91 2.799 C 92.91 2.77 92.164 2.746 91.252 2.746 L 89.593 2.746 L 89.593 1.409 C 89.593 0.674 89.57 0.06 89.54 0.044 C 89.511 0.028 89.208 0.144 88.867 0.301 Z M 103.794 0.344 L 103.215 0.624 L 103.233 6.82 L 103.251 13.016 L 103.886 13.016 L 104.521 13.016 L 104.539 6.54 C 104.554 1.244 104.54 0.064 104.465 0.064 C 104.414 0.064 104.112 0.19 103.794 0.344 Z M 77.771 2.608 C 72.431 3.414 71.989 11.717 77.214 13.053 C 79.096 13.534 81.057 12.821 82.169 11.251 L 82.319 11.039 L 82.32 11.816 C 82.323 14.377 81.07 15.746 78.724 15.743 C 77.167 15.74 76.07 15.142 75.537 14.003 L 75.32 13.54 L 74.675 13.56 L 74.03 13.58 L 74.053 13.788 C 74.145 14.641 75.237 15.93 76.303 16.444 C 79.242 17.86 82.642 16.462 83.469 13.496 C 83.691 12.699 83.762 2.813 83.545 2.822 C 83.475 2.824 83.179 2.929 82.888 3.053 L 82.359 3.279 L 82.324 4.019 L 82.288 4.758 L 82.126 4.497 C 81.321 3.201 79.389 2.364 77.771 2.608 Z M 96.683 2.607 C 94.726 2.85 93.493 3.897 93.273 5.505 L 93.216 5.922 L 93.874 5.922 L 94.531 5.922 L 94.574 5.728 C 94.905 4.234 95.667 3.699 97.463 3.699 C 99.304 3.699 100.216 4.357 100.216 5.686 C 100.216 6.739 99.668 7.039 97.146 7.372 C 94.485 7.722 93.65 8.102 93.15 9.187 C 92.858 9.821 92.851 10.907 93.135 11.512 C 94.182 13.748 98.57 13.8 100.031 11.594 L 100.247 11.269 L 100.266 12.142 L 100.286 13.016 L 100.906 13.036 L 101.526 13.057 L 101.506 8.978 L 101.486 4.899 L 101.268 4.44 C 100.632 3.1 98.758 2.351 96.683 2.607 Z M 3.167 2.718 C 1.59 3.067 0.621 4.114 0.346 5.763 L 0.296 6.063 L 1.39 6.063 L 2.483 6.063 L 2.6 5.693 C 3.222 3.718 6.794 3.77 6.801 5.754 C 6.803 6.534 6.287 6.8 4.155 7.121 C 0.984 7.598 -0.008 8.356 0 10.298 C 0.008 12.235 1.406 13.283 3.831 13.17 C 5.14 13.11 5.942 12.837 6.563 12.242 L 6.872 11.946 L 6.872 12.463 L 6.872 12.98 L 7.896 12.98 L 8.919 12.98 L 8.919 9.243 C 8.919 4.816 8.894 4.628 8.196 3.83 C 7.318 2.827 4.995 2.313 3.167 2.718 Z M 34.274 2.743 C 29.43 4.049 29.304 11.563 34.102 12.992 C 36.166 13.606 38.403 12.89 39.757 11.182 C 39.872 11.037 40.327 10.148 40.328 10.069 C 40.328 10.04 39.811 10.016 39.178 10.016 L 38.029 10.016 L 37.774 10.357 C 36.369 12.24 33.307 11.42 32.742 9.01 L 32.647 8.604 L 36.627 8.604 L 40.607 8.604 L 40.654 8.418 C 40.803 7.827 40.512 6.152 40.118 5.326 C 39.134 3.265 36.56 2.127 34.274 2.743 Z M 43.883 2.745 C 42.066 3.221 41.062 4.602 41.388 6.177 C 41.678 7.584 42.444 8.098 45.057 8.64 C 47.411 9.128 48.168 10.027 47.112 11.083 C 46.155 12.04 43.433 11.351 43.433 10.151 C 43.433 9.968 43.294 9.945 42.192 9.945 C 41.018 9.945 41.065 9.906 41.321 10.667 C 42.44 13.987 48.772 14.08 49.615 10.79 C 50.125 8.801 49.007 7.601 46.059 6.979 C 43.926 6.528 43.504 6.282 43.504 5.49 C 43.505 4.204 45.797 3.778 46.792 4.88 C 47.086 5.205 47.245 5.545 47.245 5.849 L 47.245 6.063 L 48.374 6.063 L 49.503 6.063 L 49.503 5.902 C 49.503 3.724 46.526 2.052 43.883 2.745 Z M 53.617 2.737 C 52.004 3.146 51.113 4.131 50.817 5.834 L 50.777 6.063 L 51.89 6.063 L 53.003 6.063 L 53.129 5.693 C 53.406 4.879 53.914 4.431 54.719 4.289 C 56.193 4.029 57.595 4.963 57.273 5.99 C 57.069 6.642 56.675 6.812 54.661 7.119 C 52.722 7.415 51.884 7.712 51.224 8.337 C 50.235 9.272 50.2 11.129 51.15 12.181 C 52.295 13.448 55.388 13.551 56.932 12.373 L 57.338 12.063 L 57.338 12.522 L 57.338 12.98 L 58.396 12.98 L 59.455 12.98 L 59.455 9.243 C 59.455 4.691 59.412 4.428 58.532 3.637 C 57.552 2.756 55.223 2.329 53.617 2.737 Z M 71.419 3.021 L 70.784 3.286 L 70.784 8.151 L 70.784 13.016 L 71.402 13.036 C 71.858 13.051 72.03 13.032 72.056 12.965 C 72.075 12.915 72.082 10.598 72.072 7.815 L 72.054 2.756 Z M 20.997 3.011 C 21.089 3.25 24.376 12.924 24.376 12.957 C 24.376 12.97 25.041 12.98 25.854 12.98 C 27.461 12.98 27.361 13.003 27.452 12.61 C 27.459 12.581 27.472 12.541 27.482 12.522 C 27.492 12.502 27.508 12.454 27.517 12.416 C 27.527 12.377 27.543 12.329 27.553 12.31 C 27.562 12.29 27.578 12.243 27.588 12.204 C 27.598 12.165 27.613 12.117 27.623 12.098 C 27.633 12.079 27.645 12.039 27.651 12.01 C 27.656 11.981 27.68 11.925 27.703 11.886 C 27.74 11.824 28.623 9.217 28.653 9.081 C 28.659 9.052 28.672 9.012 28.682 8.993 C 28.692 8.973 28.707 8.925 28.717 8.887 C 28.727 8.848 28.743 8.8 28.752 8.781 C 28.762 8.761 28.778 8.714 28.788 8.675 C 28.797 8.636 28.813 8.588 28.823 8.569 C 28.833 8.55 28.847 8.51 28.856 8.481 C 28.864 8.452 28.891 8.38 28.915 8.322 C 29.068 7.963 29.866 5.569 29.833 5.569 C 29.812 5.569 29.833 5.522 29.882 5.463 C 29.93 5.405 29.946 5.358 29.917 5.358 C 29.888 5.358 29.908 5.305 29.961 5.241 C 30.015 5.177 30.05 5.113 30.041 5.1 C 30.031 5.086 30.027 5.059 30.032 5.04 C 30.056 4.943 30.074 4.89 30.117 4.793 C 30.143 4.735 30.287 4.322 30.438 3.875 C 30.59 3.429 30.736 3.007 30.765 2.938 C 30.813 2.821 30.745 2.814 29.697 2.832 L 28.578 2.852 L 27.236 6.994 C 26.498 9.272 25.87 11.154 25.841 11.176 C 25.812 11.198 25.801 11.197 25.817 11.175 C 25.833 11.153 25.751 10.859 25.635 10.522 C 25.519 10.185 25.413 9.862 25.4 9.804 C 25.386 9.746 25.369 9.69 25.361 9.681 C 25.353 9.671 25.339 9.631 25.329 9.592 C 25.32 9.554 25.304 9.506 25.294 9.487 C 25.284 9.467 25.268 9.42 25.259 9.381 C 25.249 9.342 25.233 9.294 25.223 9.275 C 25.214 9.255 25.198 9.208 25.188 9.169 C 25.178 9.13 25.162 9.083 25.153 9.063 C 25.143 9.044 25.127 8.996 25.118 8.957 C 25.108 8.918 25.093 8.879 25.086 8.869 C 25.078 8.859 25.061 8.797 25.048 8.73 C 25.025 8.61 24.685 7.536 24.606 7.334 C 24.584 7.276 24.558 7.204 24.55 7.175 C 24.542 7.146 24.527 7.106 24.518 7.087 C 24.508 7.067 24.492 7.02 24.482 6.981 C 24.473 6.942 24.457 6.894 24.447 6.875 C 24.437 6.856 24.421 6.808 24.412 6.769 C 24.402 6.73 24.386 6.683 24.376 6.663 C 24.367 6.644 24.354 6.604 24.349 6.575 C 24.343 6.546 24.314 6.483 24.283 6.434 C 24.252 6.385 24.244 6.346 24.265 6.346 C 24.285 6.346 24.156 5.927 23.978 5.414 C 23.8 4.902 23.644 4.433 23.632 4.373 C 23.621 4.313 23.604 4.256 23.597 4.246 C 23.589 4.236 23.574 4.197 23.565 4.158 C 23.555 4.119 23.539 4.071 23.529 4.052 C 23.52 4.032 23.504 3.985 23.494 3.946 C 23.484 3.907 23.47 3.867 23.462 3.858 C 23.454 3.848 23.438 3.792 23.427 3.732 C 23.415 3.673 23.348 3.443 23.278 3.221 L 23.151 2.817 L 22.036 2.817 L 20.921 2.817 Z M 85.852 3.053 L 85.323 3.28 L 85.323 8.148 L 85.323 13.016 L 85.958 13.016 L 86.594 13.016 L 86.612 7.916 C 86.629 3.091 86.623 2.817 86.506 2.822 C 86.438 2.824 86.144 2.929 85.852 3.053 Z M 79.669 3.954 C 81.207 4.468 82.18 5.996 82.18 7.899 C 82.18 13.217 75.133 13.495 74.724 8.192 C 74.495 5.218 77.007 3.065 79.669 3.954 Z M 15.573 4.544 C 19.147 5.301 18.961 10.687 15.342 11.219 C 13.496 11.491 11.981 10.227 11.783 8.251 C 11.541 5.85 13.357 4.074 15.573 4.544 Z M 36.873 4.661 C 37.721 5.054 38.345 5.885 38.522 6.857 L 38.57 7.122 L 35.628 7.122 L 32.687 7.122 L 32.734 6.822 C 33.02 4.979 35.153 3.865 36.873 4.661 Z M 100.179 9.518 C 99.435 12.503 94.263 13.188 94.253 10.303 C 94.249 9.086 94.879 8.706 97.547 8.316 C 98.911 8.117 99.658 7.94 100.039 7.726 L 100.216 7.627 L 100.237 8.416 C 100.248 8.849 100.222 9.345 100.179 9.518 Z M 6.86 8.728 C 6.782 10.331 5.57 11.424 3.868 11.427 C 2.621 11.429 1.899 10.782 2.142 9.88 C 2.313 9.247 2.911 8.972 4.908 8.608 C 5.556 8.49 6.239 8.333 6.426 8.259 C 6.613 8.185 6.794 8.121 6.828 8.117 C 6.862 8.113 6.876 8.388 6.86 8.728 Z M 57.238 9.477 C 56.661 11.461 53.148 12.25 52.677 10.501 C 52.411 9.514 53.018 9.062 55.134 8.668 C 55.783 8.547 56.537 8.378 56.809 8.293 L 57.303 8.139 L 57.323 8.625 C 57.336 8.912 57.301 9.261 57.238 9.477 Z\" fill=\"rgb(58, 84, 105)\"></path></svg>',svgContentId:10645870350,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.blinkin.io/?ref=supercharge.design\",nodeId:\"UhTLZhBwA\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-l53m7r framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 Blinkin\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1cbuea8\",\"data-framer-name\":\"image 1 (Traced)\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 66 40\"><path d=\"M 47.129 0.594 C 46.262 0.923 41.418 2.751 36.364 4.655 C 25.269 8.836 25.266 8.838 25.22 11.848 L 25.205 12.833 L 26.649 12.833 L 28.094 12.833 L 28.094 11.937 C 28.094 11.057 28.132 11.026 30.26 10.209 C 36.877 7.667 49.175 3.108 49.239 3.173 C 49.279 3.215 49.353 4.431 49.402 5.875 L 49.492 8.5 L 50.805 8.5 L 52.118 8.5 L 52.118 5 L 52.118 1.499 L 51.26 0.733 C 50.211 -0.204 49.306 -0.234 47.129 0.594 Z M 38.924 9.729 L 37.808 10.227 L 37.808 17.846 L 37.808 25.464 L 39.055 25.384 L 40.303 25.304 L 40.379 23.436 C 40.443 21.871 40.556 21.474 41.074 20.987 L 41.693 20.406 L 43.322 22.921 L 44.951 25.435 L 46.396 25.435 C 48.14 25.435 48.173 25.599 45.685 21.891 C 43.23 18.232 43.26 18.644 45.297 16.445 L 47.064 14.539 L 45.558 14.46 C 44.072 14.381 44.04 14.395 43.096 15.509 C 42.571 16.13 41.76 17.052 41.294 17.558 L 40.448 18.478 L 40.441 13.964 C 40.433 8.935 40.471 9.04 38.924 9.729 Z M 13.915 9.917 L 13.259 10.099 L 13.189 17.329 C 13.122 24.305 13.138 24.576 13.652 25.041 C 14.335 25.658 15.596 25.659 16.278 25.042 L 16.81 24.561 L 16.281 24.069 C 15.782 23.603 15.534 18.046 15.679 10.535 C 15.696 9.621 15.379 9.51 13.915 9.917 Z M 19.954 10.47 C 19.001 11.423 19.531 12.898 20.827 12.898 C 22.303 12.898 22.915 11.18 21.734 10.353 C 20.962 9.813 20.586 9.838 19.954 10.47 Z M 0 17.821 L 0 25.435 L 2.822 25.434 C 6.01 25.432 7.364 25.147 8.599 24.214 C 10.837 22.526 10.842 19.21 8.609 17.462 L 7.756 16.794 L 8.538 15.978 C 9.525 14.948 9.642 13.038 8.787 11.894 C 7.751 10.506 6.765 10.207 3.221 10.207 L 0 10.207 Z M 49.753 10.828 C 48.922 12.097 50.331 13.578 51.681 12.855 C 52.442 12.448 52.631 11.61 52.133 10.851 C 51.565 9.983 50.315 9.971 49.753 10.828 Z M 6.207 12.977 C 7.576 14.346 6.346 16.061 4.091 15.93 L 2.757 15.852 L 2.676 14.439 C 2.562 12.438 2.656 12.307 4.205 12.307 C 5.283 12.307 5.665 12.435 6.207 12.977 Z M 59.673 14.13 C 59.207 14.245 58.535 14.53 58.179 14.763 C 57.57 15.162 57.523 15.156 57.367 14.666 C 57.245 14.28 56.969 14.145 56.301 14.145 L 55.4 14.145 L 55.4 19.659 L 55.4 25.173 L 56.581 25.173 L 57.763 25.173 L 57.763 21.253 C 57.763 16.925 57.807 16.795 59.459 16.249 C 61.762 15.489 62.48 16.75 62.485 21.563 L 62.489 25.173 L 63.801 25.173 L 65.114 25.173 L 65.11 21.169 C 65.103 15.304 63.472 13.191 59.673 14.13 Z M 28.498 14.653 C 27.256 15.301 27.306 15.294 27.306 14.802 C 27.306 14.517 27.014 14.408 26.25 14.408 L 25.195 14.408 L 25.266 19.856 L 25.337 25.304 L 26.584 25.384 L 27.831 25.464 L 27.831 21.421 C 27.831 16.843 27.934 16.586 29.864 16.327 C 30.698 16.215 31.029 16.312 31.656 16.851 L 32.426 17.513 L 32.49 21.015 C 32.526 22.941 32.556 24.723 32.556 24.976 C 32.557 25.345 32.789 25.435 33.739 25.435 L 34.92 25.435 L 34.92 21.3 C 34.919 16.755 34.696 15.874 33.283 14.838 C 32.209 14.05 29.83 13.959 28.498 14.653 Z M 18.165 15.381 C 18.237 16.245 18.335 16.378 18.904 16.382 L 19.56 16.387 L 19.632 20.911 L 19.704 25.435 L 20.88 25.435 L 22.055 25.435 L 22.055 20.184 C 22.055 17.296 22.084 14.844 22.12 14.736 C 22.156 14.628 21.263 14.505 20.135 14.462 L 18.083 14.385 Z M 49.519 15.482 C 49.424 16.072 49.358 21.047 49.37 26.536 C 49.383 32.026 49.327 36.583 49.246 36.665 C 49.165 36.745 44.403 35.046 38.662 32.889 L 28.225 28.965 L 28.094 27.791 L 27.962 26.617 L 26.649 26.617 L 25.337 26.617 L 25.355 28.343 C 25.377 30.4 25.871 31.24 27.437 31.885 C 29.65 32.796 46.679 39.183 48.138 39.649 C 49.537 40.096 49.747 40.104 50.513 39.741 C 52.275 38.905 52.249 39.11 52.249 26.117 L 52.249 14.408 L 50.97 14.408 L 49.69 14.408 Z M 6.993 18.966 C 8.815 21.084 6.437 23.868 3.38 23.196 L 2.626 23.031 L 2.626 20.732 C 2.626 17.97 2.596 18.007 4.696 18.139 C 6.13 18.229 6.462 18.349 6.993 18.966 Z\" fill=\"rgb(58, 84, 105)\"></path></svg>',svgContentId:9759727461,withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13yqfjy\",\"data-framer-name\":\"Logo Tag \u2013 Hiq\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15g8cdd\",\"data-framer-name\":\"11-hiq (Traced)\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71 34\"><path d=\"M 44.995 0.853 C 39.75 3.724 34.035 11.681 32.333 18.479 C 31.846 20.426 31.69 20.577 29.401 21.303 C 25.878 22.421 25.807 22.379 26.819 19.795 C 27.951 16.903 27.474 16.4 23.337 16.135 C 21.72 16.032 20.397 15.825 20.397 15.677 C 20.397 15.529 21.431 12.763 22.696 9.532 C 25.453 2.486 25.488 2.17 23.5 2.18 C 21.078 2.191 19.798 4.293 16.279 14.036 C 15.257 16.866 15.245 16.878 12.681 17.612 C 9.406 18.55 9.47 18.813 11.642 13.327 C 13.797 7.882 13.882 7.26 12.466 7.27 C 10.63 7.282 10.095 8.042 7.515 14.283 C 4.996 20.379 4.963 20.429 2.573 21.802 C 1.249 22.563 0.166 23.422 0.166 23.712 C 0.166 24.358 1.661 25.772 2.343 25.772 C 2.697 25.772 2.696 26.242 2.339 27.411 C 1.898 28.857 1.957 29.168 2.837 30.054 C 4.129 31.354 4.57 30.922 6.388 26.566 C 7.744 23.318 7.847 23.204 10.195 22.354 C 13.367 21.207 13.37 21.219 11.268 26.524 C 9.425 31.178 9.415 31.385 10.976 33.397 C 12.162 34.927 12.974 33.814 15.693 26.919 C 18.729 19.223 18.075 20.16 20.604 19.874 C 23.023 19.599 22.971 19.482 21.776 22.532 C 20.058 26.921 21.663 27.931 27.294 26.003 C 31.513 24.559 31.186 24.511 31.83 26.673 C 33.869 33.523 40.854 31.371 49.363 21.271 C 50.62 19.78 56.143 18.746 66.525 18.06 C 70.638 17.788 71.935 17.322 70.316 16.697 C 69.955 16.558 67.368 16.621 64.569 16.838 C 61.769 17.055 59.479 17.088 59.479 16.912 C 59.479 16.735 60.772 16.471 62.352 16.323 C 67.949 15.801 67.915 15.657 62.237 15.842 C 59.076 15.945 55.435 16.164 54.145 16.329 L 51.801 16.63 L 52.625 13.45 C 55.02 4.203 51.001 -2.433 44.995 0.853 Z M 48.795 5.875 C 49.597 7.413 49.173 10.74 47.706 14.428 L 46.554 17.323 L 41.637 18.309 C 38.932 18.851 36.573 19.294 36.395 19.294 C 35.507 19.293 38.946 11.942 41.454 8.48 C 44.293 4.559 47.514 3.416 48.795 5.875 Z M 28.556 6.916 C 26.066 8.83 25.77 14.204 28.156 14.204 C 28.858 14.204 31.91 8.067 31.895 6.684 C 31.889 6.116 29.369 6.291 28.556 6.916 Z M 41.666 23.96 C 38.677 26.853 35.8 27.186 35.8 24.639 C 35.8 23.348 35.962 23.231 38.788 22.485 C 44.106 21.082 44.455 21.261 41.666 23.96 Z\" fill=\"rgb(58, 84, 105)\"></path></svg>',svgContentId:10099722684,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.interhyp.de/?ref=supercharge.design\",nodeId:\"R9IAEJ9H_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1u56tzt framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 Interhyp\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-utaxk6\",\"data-framer-name\":\"12-interhyp (Traced)\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 104 22\"><path d=\"M 8.14 0.181 C -1.904 2.246 -2.725 16.313 7.012 19.491 C 16.049 22.441 23.722 11.989 18.227 4.215 C 16.027 1.102 11.827 -0.577 8.14 0.181 Z M 25.635 2.54 C 24.843 2.791 24.378 3.932 24.764 4.678 C 25.52 6.141 27.727 5.636 27.727 4 C 27.727 2.92 26.698 2.202 25.635 2.54 Z M 69.669 9.964 L 69.669 17.477 L 70.994 17.477 L 72.32 17.477 L 72.345 14.237 C 72.37 11.086 72.376 10.986 72.559 10.643 C 73.423 9.027 75.655 8.813 76.478 10.266 L 76.745 10.739 L 76.77 14.108 L 76.795 17.477 L 78.127 17.477 L 79.458 17.477 L 79.424 13.85 C 79.387 9.938 79.377 9.841 78.893 8.851 C 77.746 6.504 74.662 6.024 72.716 7.89 L 72.33 8.26 L 72.307 5.379 L 72.285 2.498 L 70.977 2.474 L 69.669 2.45 Z M 11.86 2.806 C 16.911 3.989 19.131 10.315 15.948 14.454 C 11.609 20.098 2.754 17.088 2.74 9.966 C 2.731 5.112 7.092 1.688 11.86 2.806 Z M 43.238 5.186 C 43.191 7.032 43.08 7.175 41.686 7.176 L 41.107 7.176 L 41.107 8.378 L 41.107 9.58 L 42.044 9.58 L 42.98 9.58 L 43.014 12.348 C 43.053 15.424 43.09 15.654 43.689 16.489 C 44.46 17.564 46.252 18.019 47.819 17.538 L 48.312 17.386 L 48.312 16.187 C 48.312 14.867 48.332 14.906 47.755 15.114 C 46.914 15.417 46.118 15.209 45.828 14.609 C 45.665 14.271 45.653 14.088 45.653 11.913 L 45.653 9.58 L 46.811 9.58 L 47.969 9.58 L 47.969 8.378 L 47.969 7.176 L 46.813 7.176 L 45.657 7.176 L 45.634 5.524 L 45.61 3.871 L 44.441 3.847 L 43.272 3.824 Z M 34.717 6.901 C 34.108 7.112 33.506 7.483 33.077 7.912 L 32.709 8.281 L 32.684 7.621 L 32.659 6.962 L 31.373 6.962 L 30.086 6.962 L 30.064 12.219 L 30.042 17.477 L 31.372 17.477 L 32.702 17.477 L 32.702 14.388 C 32.702 10.992 32.72 10.853 33.257 10.148 C 34.148 8.979 36.264 9.072 36.9 10.308 L 37.119 10.734 L 37.143 14.105 L 37.168 17.477 L 38.5 17.477 L 39.832 17.477 L 39.801 13.807 C 39.766 9.828 39.762 9.793 39.249 8.778 C 38.452 7.204 36.353 6.335 34.717 6.901 Z M 53.591 6.885 C 49.629 7.844 48.086 12.817 50.803 15.869 C 52.809 18.12 56.741 18.346 58.992 16.338 C 59.568 15.824 59.586 15.959 58.811 14.988 C 58.02 13.995 58.14 14.033 57.433 14.547 C 55.616 15.869 53.262 15.5 52.448 13.765 C 52.343 13.542 52.257 13.339 52.257 13.315 C 52.257 13.291 53.965 13.27 56.053 13.27 C 58.261 13.269 59.901 13.235 59.975 13.188 C 60.161 13.07 60.142 11.353 59.947 10.616 C 59.21 7.834 56.425 6.199 53.591 6.885 Z M 66.415 6.921 C 65.828 7.132 65.373 7.432 64.9 7.919 L 64.53 8.3 L 64.505 7.631 L 64.48 6.962 L 63.193 6.962 L 61.907 6.962 L 61.884 12.219 L 61.862 17.477 L 63.188 17.477 L 64.514 17.477 L 64.54 14.451 L 64.565 11.425 L 64.788 10.953 C 65.305 9.853 65.952 9.451 67.203 9.451 L 68.039 9.451 L 68.039 8.099 L 68.039 6.747 L 67.46 6.75 C 67.109 6.752 66.698 6.819 66.415 6.921 Z M 97.174 6.876 C 96.514 7.057 95.874 7.409 95.409 7.846 L 94.977 8.252 L 94.952 7.607 L 94.928 6.962 L 93.641 6.962 L 92.355 6.962 L 92.333 14.451 L 92.311 21.941 L 93.641 21.941 L 94.971 21.941 L 94.971 19.053 L 94.971 16.165 L 95.442 16.61 C 97.967 19.001 102.171 17.355 102.994 13.653 C 103.895 9.598 100.721 5.9 97.174 6.876 Z M 24.871 6.974 C 24.838 7.006 24.811 9.383 24.811 12.255 L 24.811 17.477 L 26.141 17.477 L 27.471 17.477 L 27.449 12.219 L 27.427 6.962 L 26.179 6.938 C 25.492 6.925 24.903 6.941 24.871 6.974 Z M 80.218 7.029 C 80.218 7.123 81.178 9.561 84.163 17.052 L 84.319 17.441 L 84.072 18.019 C 83.501 19.361 82.745 19.775 81.54 19.409 C 80.868 19.205 80.904 19.145 80.904 20.477 L 80.904 21.675 L 81.226 21.776 C 83.363 22.446 85.185 21.597 86.281 19.42 C 86.532 18.922 91.053 7.511 91.175 7.069 C 91.229 6.876 88.537 6.834 88.392 7.026 C 88.347 7.085 87.736 8.705 87.033 10.627 C 86.331 12.549 85.745 14.11 85.732 14.096 C 85.719 14.083 85.096 12.472 84.349 10.517 L 82.991 6.962 L 81.605 6.938 C 80.493 6.919 80.218 6.937 80.218 7.029 Z M 55.671 9.339 C 56.289 9.496 57.232 10.523 57.232 11.038 C 57.232 11.094 56.364 11.125 54.745 11.125 C 53.377 11.125 52.257 11.104 52.257 11.079 C 52.257 9.866 54.084 8.935 55.671 9.339 Z M 98.875 9.567 C 101.628 10.87 100.737 15.129 97.715 15.112 C 95.193 15.098 94.002 11.922 95.831 10.085 C 96.609 9.304 97.868 9.09 98.875 9.567 Z\" fill=\"rgb(58, 84, 105)\"></path></svg>',svgContentId:10828466360,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.nttdata.com/global/en/?ref=supercharge.design\",nodeId:\"x7TnK8SQV\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1mx2d3j framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 NTT Data\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-djw9ph\",\"data-framer-name\":\"Frame\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 106 15\"><g id=\"ss10833976627_1\"><path d=\"M 0 15 L 0 0 L 106 0 L 106 15 Z\" fill=\"transparent\"></path><path d=\"M 16.413 0 L 16.413 3.119 L 21.212 3.119 L 21.212 14.822 L 24.608 14.822 L 24.608 3.119 L 29.407 3.119 L 29.407 0 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 67.397 11.655 C 66.875 11.655 66.292 11.395 66.292 10.125 C 66.292 8.855 66.87 8.63 67.397 8.63 L 73.877 8.63 L 73.877 11.655 Z M 72.387 0 L 63.731 0 L 63.731 3.146 L 72.157 3.146 C 73.394 3.146 73.876 3.697 73.876 5.118 C 73.876 5.124 73.876 5.52 73.876 5.641 L 66.893 5.641 C 64.237 5.641 62.916 6.943 62.916 9.884 L 62.916 10.585 C 62.916 13.612 64.284 14.822 67.037 14.822 L 77.277 14.822 L 77.277 5.078 C 77.277 1.343 76.018 0 72.387 0 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 96.12 11.655 C 95.6 11.655 95.015 11.395 95.015 10.125 C 95.015 8.855 95.594 8.63 96.12 8.63 L 102.605 8.63 L 102.605 11.655 Z M 101.109 0 L 92.453 0 L 92.453 3.146 L 100.884 3.146 C 102.116 3.146 102.603 3.697 102.603 5.118 L 102.603 5.641 L 95.618 5.641 C 92.961 5.641 91.639 6.943 91.639 9.884 L 91.639 10.585 C 91.639 13.612 93.01 14.822 95.76 14.822 L 106 14.822 L 106 5.078 C 106 1.343 104.748 0 101.107 0\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 30.09 0 L 30.09 3.119 L 34.887 3.119 L 34.887 14.822 L 38.287 14.822 L 38.287 3.119 L 43.084 3.119 L 43.084 0 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 77.961 0 L 77.961 3.119 L 82.76 3.119 L 82.76 14.822 L 86.156 14.822 L 86.156 3.119 L 90.955 3.119 L 90.955 0 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 58.686 9.698 C 58.686 11.122 58.193 11.671 56.944 11.671 L 51.343 11.671 L 51.343 3.156 L 56.944 3.156 C 58.193 3.156 58.686 3.708 58.686 5.131 Z M 62.232 9.631 L 62.232 5.196 C 62.232 1.308 60.677 0 57.174 0 L 47.871 0 L 47.871 14.822 L 57.335 14.822 C 61.059 14.822 62.232 13.032 62.232 9.631 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 11.332 11.2 C 11.258 11.069 6.626 2.497 6.06 1.653 C 5.78 1.139 5.352 0.711 4.826 0.419 C 4.301 0.127 3.698 -0.018 3.089 0.002 C 1.676 0.002 0 0.596 0 3.823 L 0 14.654 L 3.416 14.654 L 3.416 5.62 C 3.416 4.972 3.373 4.012 3.366 3.819 C 3.358 3.658 3.366 3.507 3.451 3.46 C 3.549 3.407 3.647 3.496 3.714 3.616 C 3.781 3.736 8.073 11.801 8.984 13.165 C 9.265 13.678 9.692 14.107 10.218 14.399 C 10.743 14.693 11.345 14.839 11.954 14.821 C 13.368 14.821 15.045 14.219 15.045 10.994 L 15.045 0.159 L 11.627 0.159 L 11.627 9.195 C 11.627 9.844 11.67 10.808 11.678 10.999 C 11.687 11.16 11.678 11.306 11.593 11.358 C 11.496 11.409 11.397 11.319 11.332 11.2 Z\" fill=\"rgb(58, 84, 105)\"></path></g></svg>',svgContentId:10833976627,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.zurich.com/?ref=supercharge.design\",nodeId:\"mgGLkCpNj\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-4t5v5t framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 Zurich\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1sx8clb\",\"data-framer-name\":\"20-zurich (Traced)\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71 44\"><path d=\"M 31.456 0.099 C 23.852 1.091 19.095 8.652 21.517 15.896 C 21.883 16.991 23.014 19.125 23.332 19.322 C 23.378 19.35 33.278 6.393 33.33 6.238 C 33.364 6.136 29.542 6.212 28.781 6.327 C 27.3 6.551 26.565 7.04 25.839 8.28 L 25.615 8.664 L 25.375 8.624 C 25.243 8.602 25.125 8.574 25.112 8.562 C 25.085 8.538 25.99 4.985 26.047 4.893 C 26.071 4.854 28.169 4.839 32.269 4.849 L 38.455 4.864 L 33.515 11.462 C 30.798 15.09 28.575 18.069 28.575 18.08 C 28.575 18.091 29.02 18.089 29.564 18.075 C 30.184 18.059 31.439 18.099 32.926 18.182 C 35.534 18.328 36.274 18.307 37.157 18.061 C 38.447 17.702 39.648 16.704 40.327 15.427 L 40.54 15.028 L 40.788 15.091 L 41.036 15.153 L 40.83 15.766 C 39.912 18.499 38.25 19.966 35.865 20.151 C 35.199 20.203 34.355 20.122 31.897 19.772 C 28.746 19.324 27.869 19.283 26.257 19.512 C 25.441 19.627 24.876 19.772 24.397 19.988 L 24.018 20.159 L 24.48 20.611 C 31.544 27.524 43.418 23.483 44.833 13.685 C 45.947 5.967 39.177 -0.91 31.456 0.099 Z M 68.222 27.908 C 67.581 28.206 67.331 29.03 67.675 29.706 C 68.255 30.844 70.052 30.482 70.133 29.21 C 70.203 28.106 69.227 27.44 68.222 27.908 Z M 69.243 28.063 C 70.184 28.42 70.081 29.878 69.097 30.114 C 68.182 30.334 67.492 29.421 67.914 28.548 C 68.135 28.093 68.739 27.872 69.243 28.063 Z M 68.321 29.029 C 68.321 29.725 68.327 29.764 68.438 29.764 C 68.539 29.764 68.556 29.725 68.556 29.5 C 68.556 29.236 68.557 29.235 68.763 29.235 C 68.949 29.235 68.982 29.261 69.098 29.5 C 69.195 29.699 69.259 29.764 69.361 29.764 C 69.532 29.764 69.53 29.744 69.344 29.426 L 69.192 29.166 L 69.315 29.035 C 69.671 28.656 69.323 28.296 68.6 28.295 L 68.321 28.294 Z M 69.115 28.765 C 69.115 28.898 69.089 28.913 68.835 28.93 C 68.558 28.947 68.556 28.946 68.556 28.765 C 68.556 28.583 68.558 28.582 68.835 28.6 C 69.089 28.616 69.115 28.631 69.115 28.765 Z M 49.182 31.824 C 45.333 32.141 42.882 34.703 42.996 38.29 C 43.135 42.718 47.473 45.058 52.519 43.427 L 52.799 43.337 L 52.799 42.283 C 52.799 41.704 52.786 41.23 52.77 41.23 C 52.755 41.23 52.59 41.327 52.405 41.445 C 48.648 43.849 44.547 40.963 45.6 36.657 C 46.304 33.777 49.719 32.527 52.392 34.171 C 52.552 34.27 52.696 34.35 52.711 34.35 C 52.727 34.35 52.74 33.863 52.74 33.267 L 52.74 32.184 L 52.549 32.122 C 52.153 31.994 51.492 31.883 50.768 31.824 C 49.961 31.759 49.972 31.759 49.182 31.824 Z M 1.286 33.271 C 0.983 33.939 0.726 34.507 0.716 34.533 C 0.706 34.56 0.892 34.492 1.131 34.381 C 2.419 33.786 3.191 33.641 5.277 33.603 C 6.19 33.586 6.938 33.59 6.938 33.611 C 6.938 33.633 5.377 35.883 3.469 38.612 C 1.561 41.341 0 43.588 0 43.607 C 0 43.682 9.92 43.642 9.978 43.567 C 10.035 43.491 11.112 41.035 11.112 40.98 C 11.112 40.963 10.828 41.09 10.48 41.263 C 9.179 41.91 8.36 42.057 5.854 42.096 L 3.976 42.125 L 4.086 41.956 C 4.146 41.864 5.687 39.638 7.51 37.009 C 9.332 34.38 10.839 32.191 10.857 32.144 C 10.886 32.068 10.317 32.057 6.363 32.057 L 1.837 32.057 Z M 12.935 32.092 C 12.935 32.111 13.028 32.236 13.142 32.369 C 13.508 32.796 13.523 32.918 13.527 35.611 C 13.536 40.765 13.611 41.316 14.437 42.358 C 16.158 44.526 20.786 44.553 22.573 42.405 C 23.423 41.384 23.517 40.799 23.518 36.543 C 23.518 32.993 23.542 32.8 24.042 32.326 C 24.142 32.231 24.224 32.131 24.224 32.105 C 24.224 32.079 23.404 32.057 22.401 32.057 C 21.399 32.057 20.579 32.073 20.579 32.091 C 20.579 32.11 20.662 32.209 20.764 32.311 C 21.206 32.753 21.194 32.642 21.214 36.32 C 21.238 40.671 21.191 41.037 20.52 41.664 C 19.419 42.694 17.203 42.532 16.421 41.365 C 16.028 40.778 16.022 40.714 16.022 36.82 C 16.022 32.918 16.01 33.039 16.439 32.402 C 16.549 32.238 16.639 32.094 16.639 32.081 C 16.639 32.068 15.806 32.057 14.787 32.057 C 13.768 32.057 12.935 32.073 12.935 32.092 Z M 26.105 32.105 C 26.105 32.131 26.187 32.231 26.287 32.326 C 26.804 32.817 26.821 33.014 26.799 38.274 L 26.782 42.552 L 26.645 42.853 C 26.57 43.019 26.418 43.242 26.307 43.35 C 26.196 43.458 26.105 43.567 26.105 43.593 C 26.105 43.619 26.926 43.64 27.928 43.64 C 28.931 43.64 29.751 43.624 29.751 43.605 C 29.751 43.585 29.675 43.472 29.582 43.355 C 29.152 42.807 29.093 42.418 29.116 40.293 L 29.133 38.739 L 30.454 40.323 C 33.059 43.444 33.245 43.569 35.38 43.624 C 36.673 43.658 36.786 43.638 36.473 43.433 C 36.214 43.264 34.839 41.898 34.136 41.112 C 33.266 40.14 31.847 38.465 31.875 38.444 C 31.887 38.434 32.116 38.34 32.385 38.233 C 35.713 36.91 35.526 33.109 32.093 32.294 C 31.258 32.096 26.105 31.933 26.105 32.105 Z M 37.699 32.278 C 37.816 32.399 37.973 32.617 38.049 32.763 L 38.188 33.027 L 38.188 37.79 L 38.188 42.552 L 38.057 42.836 C 37.985 42.993 37.846 43.221 37.748 43.345 C 37.65 43.468 37.571 43.585 37.571 43.605 C 37.571 43.624 38.391 43.64 39.393 43.64 C 40.396 43.64 41.216 43.619 41.216 43.592 C 41.216 43.566 41.138 43.47 41.044 43.38 C 40.546 42.902 40.512 42.569 40.515 38.084 C 40.518 33.042 40.542 32.783 41.063 32.297 C 41.147 32.219 41.216 32.133 41.216 32.106 C 41.216 32.079 40.377 32.057 39.352 32.057 L 37.488 32.057 Z M 54.68 32.106 C 54.68 32.133 54.749 32.219 54.833 32.297 C 55.375 32.804 55.385 32.899 55.385 37.882 C 55.386 42.807 55.379 42.881 54.862 43.372 C 54.762 43.467 54.68 43.566 54.68 43.592 C 54.68 43.619 55.5 43.64 56.503 43.64 C 57.505 43.64 58.326 43.627 58.326 43.611 C 58.326 43.595 58.233 43.453 58.12 43.295 C 57.721 42.741 57.717 42.713 57.692 40.45 L 57.669 38.407 L 60.238 38.407 L 62.806 38.407 L 62.78 40.392 C 62.75 42.632 62.728 42.768 62.323 43.282 C 62.194 43.445 62.088 43.592 62.088 43.609 C 62.088 43.626 62.909 43.64 63.911 43.64 C 64.914 43.64 65.734 43.627 65.734 43.611 C 65.734 43.595 65.637 43.456 65.519 43.303 C 65.087 42.739 65.116 43.124 65.116 37.966 C 65.116 32.673 65.096 32.909 65.592 32.358 L 65.862 32.057 L 63.975 32.057 C 62.938 32.057 62.088 32.079 62.088 32.106 C 62.088 32.133 62.157 32.219 62.241 32.297 C 62.698 32.723 62.791 33.24 62.793 35.365 L 62.794 36.937 L 60.231 36.937 L 57.669 36.937 L 57.691 35.1 C 57.716 33.039 57.746 32.873 58.179 32.367 C 58.292 32.235 58.384 32.111 58.384 32.092 C 58.384 32.073 57.551 32.057 56.532 32.057 C 55.514 32.057 54.68 32.079 54.68 32.106 Z M 30.587 33.554 C 31.746 33.8 32.248 34.369 32.248 35.438 C 32.248 36.724 31.31 37.49 29.573 37.624 L 29.104 37.66 L 29.104 35.564 L 29.104 33.468 L 29.648 33.469 C 29.947 33.47 30.37 33.508 30.587 33.554 Z\" fill=\"rgb(58, 84, 105)\"></path></svg>',svgContentId:12104528902,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://serato.com/?ref=supercharge.design\",nodeId:\"bLFoWFocd\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-6z3ujp framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 Serato\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ndpw8r\",\"data-framer-name\":\"Vector\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 89 21\"><path d=\"M 72.05 8.196 C 73.351 5.965 75.786 4.423 79.521 4.423 C 85.45 4.423 88.126 8.326 88.126 12.693 C 88.126 17.079 85.45 21 79.521 21 C 75.786 21 73.333 19.439 72.032 17.19 L 72.032 17.209 L 72.032 20.591 C 70.805 20.591 69.449 20.777 68.166 20.777 C 65.602 20.777 62.777 20.387 62.777 16.057 L 62.777 8.53 L 60.12 8.53 L 60.12 8.511 C 60.212 9.181 60.212 9.887 60.212 10.593 L 60.212 17.079 C 60.212 18.268 60.268 19.606 60.937 20.61 L 54.786 20.61 C 54.637 20.182 54.544 19.55 54.563 19.123 L 54.507 19.123 C 53.225 20.573 51.366 21 49.434 21 C 46.386 21 43.858 19.532 43.858 16.224 C 43.858 11.243 49.694 11.411 52.779 10.835 C 53.596 10.686 54.433 10.444 54.433 9.441 C 54.433 8.381 53.429 7.973 52.463 7.973 C 50.604 7.973 50.233 8.92 50.214 9.589 L 44.62 9.589 L 44.639 9.589 L 44.639 9.98 C 44.026 9.775 43.487 9.589 42.26 9.589 C 39.881 9.589 38.618 10.983 38.618 14.366 L 38.618 20.591 L 32.596 20.591 L 32.596 14.068 L 21.204 14.068 C 21.353 15.871 22.394 17.134 24.271 17.134 C 25.237 17.134 26.315 16.781 26.798 16.02 L 32.429 16.02 C 31.221 19.42 27.895 21 24.308 21 C 20.275 21 17.042 19.104 15.908 15.666 L 15.908 15.722 C 15.722 19.866 11.634 21 7.88 21 C 4.163 21 0.093 19.513 0 15.443 L 5.742 15.443 C 5.78 15.982 6.021 16.447 6.467 16.837 C 6.765 17.116 7.359 17.302 8.084 17.302 C 8.883 17.302 10.128 17.004 10.128 16.075 C 10.128 15.165 9.608 14.886 6.82 14.403 C 2.212 13.604 0.372 12.135 0.372 9.441 C 0.372 5.445 4.665 4.423 7.824 4.423 C 11.225 4.423 15.332 5.371 15.499 9.404 L 10.017 9.404 C 9.98 8.883 9.719 8.493 9.311 8.214 C 8.939 7.917 8.456 7.75 7.973 7.75 C 7.118 7.75 6.151 7.935 6.151 8.976 C 6.151 9.441 6.523 9.645 6.858 9.794 C 7.861 10.221 10.147 10.333 12.154 11.002 C 13.566 11.448 14.849 12.173 15.499 13.455 L 15.499 13.473 C 15.48 13.232 15.462 12.99 15.462 12.749 C 15.462 8.158 18.807 4.423 23.806 4.423 C 29.177 4.423 31.927 6.988 32.615 11.578 L 32.615 11.504 L 32.615 4.813 L 38.395 4.813 L 38.395 7.341 L 38.45 7.341 C 39.417 5.445 40.699 4.423 42.892 4.423 C 43.505 4.423 44.081 4.516 44.657 4.665 L 44.657 9.292 L 44.657 9.348 C 44.974 5.129 49.099 4.423 52.76 4.423 C 58.391 4.423 59.785 6.17 60.138 8.326 L 60.138 8.344 L 60.138 4.813 L 62.814 4.813 L 62.814 0 L 68.835 0 L 68.835 4.813 L 72.05 4.813 Z M 26.984 10.927 C 26.984 9.459 25.888 8.288 24.345 8.288 C 22.543 8.288 21.52 9.236 21.242 10.927 Z M 54.451 13.511 C 53.727 13.882 52.909 14.087 52.073 14.273 C 50.735 14.57 50.028 14.904 50.028 15.982 C 50.028 16.707 50.827 17.45 51.924 17.45 C 53.299 17.45 54.358 16.633 54.451 14.979 Z M 68.817 8.53 L 68.817 14.031 C 68.817 15.499 69.151 16.131 70.675 16.131 C 70.954 16.131 71.233 16.112 71.512 16.094 L 71.512 16.112 C 71.103 15.053 70.898 13.901 70.898 12.693 C 70.898 11.206 71.214 9.757 71.846 8.512 Z M 79.521 8.79 C 77.235 8.79 76.938 11.002 76.938 12.693 C 76.938 14.365 77.235 16.614 79.521 16.614 C 81.807 16.614 82.104 14.365 82.104 12.693 C 82.104 11.02 81.807 8.79 79.521 8.79 Z\" fill=\"rgb(58, 84, 105)\"></path></svg>',svgContentId:11105502088,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.tericsoft.com/?ref=supercharge.design\",nodeId:\"Xq82C62xS\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-plduib framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 Tericsoft\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1o5gqg6\",\"data-framer-name\":\"Vector\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 106 20\"><path d=\"M 28.439 3.989 L 37.254 3.989 L 37.254 6.079 L 34.024 6.079 L 34.024 16.182 L 31.668 16.182 L 31.668 6.079 L 28.439 6.079 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 44.307 13.377 L 45.599 14.666 C 45.178 15.152 44.649 15.534 44.055 15.781 C 43.446 16.045 42.789 16.181 42.126 16.181 C 40.845 16.181 39.786 15.778 38.948 14.971 C 38.11 14.163 37.691 13.104 37.691 11.792 C 37.691 10.573 38.072 9.533 38.834 8.674 C 39.597 7.814 40.589 7.384 41.811 7.385 C 42.963 7.385 43.917 7.806 44.674 8.648 C 45.431 9.49 45.809 10.509 45.809 11.705 C 45.811 11.921 45.794 12.136 45.757 12.349 L 39.891 12.349 C 39.911 12.627 39.987 12.897 40.113 13.145 C 40.238 13.393 40.412 13.614 40.624 13.795 C 41.054 14.167 41.609 14.366 42.178 14.352 C 42.992 14.352 43.702 14.027 44.307 13.377 Z M 39.996 10.694 L 43.487 10.694 C 43.449 10.294 43.259 9.922 42.954 9.658 C 42.646 9.366 42.236 9.207 41.811 9.214 C 41.369 9.21 40.94 9.368 40.606 9.658 C 40.28 9.915 40.062 10.285 39.996 10.694 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 53.576 7.629 L 53.314 9.737 C 53.046 9.668 52.77 9.638 52.494 9.65 C 52.048 9.647 51.612 9.781 51.245 10.033 C 50.911 10.242 50.633 10.53 50.434 10.87 L 50.434 16.183 L 48.164 16.183 L 48.164 7.734 L 50.346 7.734 L 50.346 8.587 C 50.904 7.902 51.725 7.56 52.808 7.56 C 53.065 7.566 53.322 7.589 53.576 7.629 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 55.846 6.375 C 55.708 6.241 55.599 6.081 55.523 5.905 C 55.448 5.728 55.41 5.539 55.41 5.347 C 55.41 5.155 55.448 4.965 55.523 4.789 C 55.599 4.612 55.708 4.452 55.846 4.319 C 56.129 4.051 56.504 3.901 56.894 3.901 C 57.284 3.901 57.658 4.051 57.941 4.319 C 58.079 4.452 58.189 4.612 58.264 4.789 C 58.339 4.965 58.377 5.155 58.377 5.347 C 58.377 5.539 58.339 5.728 58.264 5.905 C 58.189 6.081 58.079 6.241 57.941 6.375 C 57.658 6.643 57.284 6.792 56.894 6.792 C 56.504 6.792 56.129 6.643 55.846 6.375 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 58.029 7.734 L 55.76 7.734 L 55.76 16.182 L 58.029 16.182 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 67.02 12.976 L 68.766 14.283 C 67.811 15.549 66.531 16.182 64.925 16.181 C 63.621 16.181 62.539 15.758 61.678 14.91 C 60.817 14.062 60.386 13.023 60.386 11.792 C 60.375 11.209 60.486 10.629 60.711 10.091 C 60.937 9.553 61.272 9.067 61.695 8.665 C 62.568 7.811 63.651 7.385 64.942 7.385 C 65.625 7.382 66.299 7.533 66.915 7.825 C 67.532 8.118 68.075 8.545 68.504 9.074 L 66.898 10.485 C 66.386 9.812 65.734 9.475 64.942 9.475 C 64.638 9.467 64.336 9.523 64.055 9.639 C 63.774 9.754 63.52 9.927 63.31 10.146 C 63.096 10.362 62.928 10.62 62.815 10.903 C 62.703 11.185 62.648 11.488 62.656 11.792 C 62.656 12.454 62.874 13.002 63.31 13.438 C 63.746 13.873 64.308 14.091 64.995 14.091 C 65.41 14.095 65.818 13.983 66.173 13.768 C 66.511 13.57 66.8 13.299 67.02 12.976 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 70.11 15.049 L 71.21 13.429 C 71.827 13.986 72.6 14.265 73.532 14.265 C 73.802 14.274 74.069 14.204 74.3 14.065 C 74.51 13.931 74.615 13.76 74.615 13.551 C 74.615 13.319 74.475 13.121 74.195 12.959 C 73.871 12.777 73.529 12.631 73.174 12.523 C 72.772 12.395 72.368 12.247 71.961 12.079 C 71.555 11.912 71.2 11.642 70.93 11.296 C 70.647 10.93 70.499 10.477 70.511 10.015 C 70.511 9.237 70.835 8.604 71.481 8.116 C 72.127 7.628 72.886 7.384 73.759 7.385 C 74.304 7.388 74.845 7.473 75.365 7.637 C 75.912 7.806 76.331 8.006 76.622 8.238 L 75.557 9.876 C 75.021 9.492 74.48 9.301 73.933 9.301 C 73.649 9.291 73.367 9.354 73.113 9.484 C 72.892 9.606 72.781 9.771 72.781 9.98 C 72.781 10.178 72.921 10.346 73.2 10.485 C 73.532 10.646 73.877 10.779 74.23 10.886 C 74.643 11.016 75.048 11.17 75.443 11.347 C 75.851 11.532 76.203 11.82 76.464 12.183 C 76.743 12.561 76.883 13.023 76.883 13.569 C 76.883 14.347 76.554 14.977 75.897 15.458 C 75.24 15.94 74.446 16.181 73.515 16.181 C 72.286 16.187 71.089 15.789 70.11 15.049 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 80.007 14.91 C 79.145 14.062 78.715 13.023 78.715 11.792 C 78.716 10.561 79.146 9.518 80.007 8.665 C 80.868 7.811 81.939 7.385 83.219 7.385 C 84.5 7.385 85.57 7.811 86.431 8.665 C 87.293 9.519 87.724 10.561 87.724 11.792 C 87.724 13.023 87.293 14.062 86.431 14.91 C 85.57 15.758 84.5 16.181 83.219 16.181 C 81.939 16.181 80.868 15.758 80.007 14.91 Z M 81.613 10.146 C 81.195 10.591 80.969 11.182 80.985 11.792 C 80.977 12.093 81.028 12.392 81.136 12.673 C 81.243 12.954 81.406 13.211 81.613 13.429 C 82.032 13.871 82.567 14.091 83.219 14.091 C 83.871 14.091 84.406 13.871 84.825 13.429 C 85.033 13.211 85.195 12.954 85.303 12.673 C 85.411 12.392 85.462 12.093 85.454 11.792 C 85.47 11.182 85.244 10.591 84.825 10.146 C 84.407 9.699 83.871 9.475 83.219 9.475 C 82.567 9.474 82.032 9.698 81.613 10.146 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 96.104 3.976 L 95.756 5.909 C 95.534 5.85 95.305 5.821 95.075 5.823 C 94.504 5.823 94.079 5.985 93.8 6.31 C 93.591 6.577 93.486 7.024 93.486 7.651 L 93.486 7.913 L 96.104 7.913 L 96.104 9.829 L 93.486 9.829 L 93.486 16.182 L 91.217 16.182 L 91.217 9.829 L 89.034 9.829 L 89.034 7.913 L 91.217 7.913 L 91.217 7.564 C 91.217 6.31 91.519 5.393 92.125 4.812 C 92.811 4.15 93.69 3.819 94.761 3.819 C 95.213 3.815 95.665 3.868 96.104 3.976 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 104.659 14.091 L 105.008 16.007 C 104.682 16.123 104.211 16.181 103.594 16.181 C 102.244 16.181 101.266 15.775 100.661 14.962 C 100.242 14.405 100.032 13.563 100.032 12.436 L 100.032 9.831 L 97.675 9.831 L 97.675 7.915 L 100.032 7.915 L 100.032 5.207 L 102.302 5.207 L 102.302 7.915 L 105.095 7.915 L 105.095 9.831 L 102.302 9.831 L 102.302 12.697 C 102.302 13.185 102.395 13.54 102.581 13.76 C 102.826 14.039 103.21 14.178 103.733 14.178 C 104.044 14.183 104.354 14.154 104.659 14.091 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 14.185 5.289 C 13.32 5.191 12.448 5.19 11.583 5.284 C 9.378 5.522 7.288 6.382 5.555 7.762 L 7.426 9.629 C 8.646 8.721 10.075 8.134 11.583 7.923 C 12.446 7.801 13.322 7.803 14.185 7.929 C 15.676 8.146 17.09 8.73 18.297 9.629 L 20.168 7.762 C 18.448 6.391 16.373 5.534 14.185 5.289 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 11.582 10.556 L 11.582 16.329 L 14.184 13.732 L 14.184 10.565 C 13.326 10.388 12.441 10.385 11.582 10.556 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 23.88 4.059 C 21.157 1.729 17.761 0.326 14.185 0.051 C 13.748 0.017 13.307 0 12.861 0 C 12.431 0 12.005 0.016 11.583 0.048 C 7.991 0.314 4.578 1.719 1.843 4.059 C 1.183 4.622 0.567 5.235 0 5.892 L 5.58 11.461 C 6.105 10.766 6.727 10.149 7.426 9.629 L 5.555 7.762 L 3.721 5.933 C 5.95 4.081 8.693 2.953 11.582 2.698 C 12.004 2.661 12.43 2.641 12.861 2.641 C 13.307 2.641 13.748 2.662 14.184 2.702 C 17.057 2.965 19.783 4.091 22.001 5.933 C 22.669 6.487 23.286 7.101 23.843 7.766 L 25.721 5.892 C 25.155 5.235 24.54 4.622 23.88 4.059 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 20.168 7.762 L 18.297 9.629 L 11.584 16.328 L 11.584 20 L 22.012 9.595 C 21.467 8.918 20.848 8.304 20.168 7.762 Z\" fill=\"rgb(58, 84, 105)\"></path></svg>',svgContentId:9252497852,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.swarthmore.edu/?ref=supercharge.design\",nodeId:\"WrSfHmaV8\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-s34du6 framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 Swarthmore\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2xsmp\",\"data-framer-name\":\"Frame\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 116 12\"><g id=\"ss10864827753_1\"><path d=\"M 0 12 L 0 0 L 116 0 L 116 12 Z\" fill=\"transparent\"></path><path d=\"M 2.219 3 C 2.219 1.9 3.329 1.5 4.237 1.5 C 5.144 1.5 6.052 1.9 6.657 2.5 L 6.657 0.7 C 5.951 0.5 5.144 0.3 4.337 0.3 C 2.421 0.3 0.404 1.1 0.404 3.1 C 0.404 6.5 5.85 6.1 5.85 8.6 C 5.85 9.7 4.539 10.3 3.631 10.3 C 2.421 10.3 1.11 9.8 0.202 9 L 0.706 11 C 1.614 11.3 2.522 11.5 3.53 11.5 C 5.951 11.5 7.767 9.9 7.767 8.2 C 7.565 5.2 2.219 5.2 2.219 3 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 20.88 0.7 C 22.09 1.1 21.586 2.4 21.283 3.4 L 19.468 9.3 L 17.249 2.3 C 17.047 1.6 16.946 1.1 17.047 0.7 L 14.828 0.7 C 15.736 1.2 15.332 2.2 15.03 3.2 L 13.214 9.3 L 10.894 1.8 C 10.793 1.5 10.692 1 10.692 0.6 L 8.372 0.6 C 9.179 1.1 9.381 2.2 9.683 3.1 L 11.499 9 C 12.003 10.7 12.205 10.5 13.617 11.6 L 16.038 3.5 L 17.753 9 C 18.257 10.7 18.358 10.6 19.871 11.6 L 23.2 0.5 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 32.883 8.9 L 29.656 0.7 L 27.134 0.7 L 27.134 0.8 C 27.84 1 27.638 1.7 27.336 2.3 L 24.713 9 C 24.41 9.9 24.108 10.8 23.2 11.3 L 26.125 11.3 C 25.419 11 25.52 10.5 25.823 9.6 L 26.63 7.3 L 30.563 7.3 L 31.37 9.6 C 31.774 10.7 31.875 10.9 31.169 11.3 L 34.397 11.3 C 33.59 10.7 33.287 9.8 32.883 8.9 Z M 27.033 6.1 L 28.647 2 L 30.16 6.1 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 42.163 9 L 39.944 6.1 C 41.256 5.8 42.466 4.7 42.466 3.3 C 42.466 1.8 41.356 0.7 39.238 0.7 L 35.506 0.7 C 36.313 1 36.212 2.2 36.212 2.9 L 36.212 9 C 36.212 9.7 36.313 10.9 35.506 11.2 L 38.532 11.2 C 37.725 10.9 37.826 9.7 37.826 9 L 37.826 1.8 C 38.23 1.7 38.532 1.7 38.936 1.7 C 39.944 1.7 40.953 2.3 40.953 3.5 C 40.953 5 39.44 5.6 38.23 5.8 L 39.642 8.1 L 41.558 10.5 C 42.063 11.1 42.567 11.3 43.374 11.3 L 44.786 11.3 C 43.878 10.6 42.87 9.8 42.163 9 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 51.948 0.6 L 46.097 0.6 L 45.694 0.6 C 45.492 0.6 45.291 0.6 45.089 0.5 L 44.584 2.4 C 44.988 2 45.694 1.8 46.4 1.8 L 47.812 1.8 L 47.812 9 C 47.812 9.7 47.913 10.9 47.106 11.2 L 50.233 11.2 C 49.426 10.7 49.426 10.1 49.426 9.2 L 49.426 1.8 L 50.838 1.8 C 51.343 1.8 51.948 1.9 52.15 2.4 L 52.654 0.5 C 52.452 0.6 52.251 0.6 51.948 0.6 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 62.337 0.7 C 63.144 1 63.043 2.2 63.043 2.9 L 63.043 4.9 L 57.395 4.9 L 57.395 2.9 C 57.395 2.2 57.294 1 58.101 0.7 L 55.075 0.7 C 55.882 1 55.781 2.2 55.781 2.9 L 55.781 9 C 55.781 9.7 55.882 10.9 55.075 11.2 L 58.101 11.2 C 57.294 10.9 57.395 9.7 57.395 9 L 57.395 6.1 L 63.043 6.1 L 63.043 9 C 63.043 9.7 63.144 10.9 62.337 11.2 L 65.363 11.2 C 64.456 10.9 64.556 9.7 64.556 9 L 64.556 2.9 C 64.556 2.2 64.456 1 65.263 0.7 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 81.704 9.5 L 80.696 1.6 C 80.696 1.2 80.797 0.8 81.2 0.7 L 78.477 0.7 C 78.477 1 78.376 1.4 78.275 1.7 L 75.652 8.5 L 72.626 1.4 C 72.525 1.2 72.424 0.9 72.424 0.7 L 69.701 0.7 C 70.407 1.1 70.205 1.7 70.205 2.2 L 69.297 8.9 C 69.197 9.8 69.096 10.6 68.39 11.2 L 70.911 11.2 C 70.205 10.9 70.306 10.2 70.407 9.2 L 71.315 2.3 L 74.341 9.5 C 74.744 10.4 74.946 10.8 75.753 11.4 L 79.284 2.2 L 80.191 9.9 C 80.191 10.4 80.091 10.9 79.586 11.1 L 82.612 11.1 C 81.906 10.7 81.805 10.3 81.704 9.5 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 90.278 0.4 C 86.95 0.3 84.428 2.9 84.428 5.9 C 84.428 9.2 87.05 11.5 90.177 11.5 C 93.304 11.5 95.927 9.1 95.927 5.8 C 95.927 2.9 93.607 0.4 90.278 0.4 Z M 90.278 10.3 C 87.857 10.3 86.243 8 86.243 5.7 C 86.243 3.3 87.756 1.5 90.278 1.5 C 92.8 1.5 94.212 3.8 94.212 6.1 C 94.111 8.5 92.598 10.3 90.278 10.3 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 105.005 9 L 102.786 6.1 C 104.097 5.8 105.308 4.7 105.308 3.3 C 105.308 1.8 104.198 0.7 102.08 0.7 L 98.348 0.7 C 99.155 1 99.054 2.2 99.054 2.9 L 99.054 9 C 99.054 9.7 99.155 10.9 98.348 11.2 L 101.374 11.2 C 100.567 10.9 100.668 9.7 100.668 9 L 100.668 1.8 C 101.071 1.7 101.374 1.7 101.777 1.7 C 102.786 1.7 103.795 2.3 103.795 3.5 C 103.795 5 102.383 5.6 101.071 5.8 L 102.484 8.1 L 104.4 10.5 C 104.904 11.1 105.409 11.3 106.216 11.3 L 107.628 11.3 C 106.619 10.6 105.611 9.8 105.005 9 Z\" fill=\"rgb(58, 84, 105)\"></path><path d=\"M 112.974 10.1 L 110.956 9.9 L 110.956 6.1 L 112.167 6.1 C 112.671 6.1 113.276 6.1 113.579 6.5 L 113.579 4.8 C 113.377 4.9 113.176 4.9 112.873 4.9 L 110.956 4.9 L 110.956 1.9 C 111.461 1.8 111.965 1.8 112.57 1.8 C 113.276 1.8 113.983 1.9 114.386 2.4 L 114.386 0.6 C 114.184 0.7 113.882 0.7 113.68 0.7 L 108.636 0.7 C 109.443 1 109.343 2.2 109.343 2.9 L 109.343 9 C 109.343 9.7 109.443 10.9 108.636 11.2 L 115.193 11.2 L 115.899 9.1 C 115.092 9.8 113.983 10.2 112.974 10.1 Z\" fill=\"rgb(58, 84, 105)\"></path></g></svg>',svgContentId:10864827753,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.toptal.com/?ref=supercharge.design\",nodeId:\"TMqqn2QyU\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1q8n2j6 framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 Toptal\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-pimlsf\",\"data-framer-name\":\"16-toptal (Traced)\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 93 26\"><path d=\"M 6.234 1.25 C 5.537 1.936 4.967 2.515 4.967 2.538 C 4.967 2.56 5.794 3.407 6.805 4.418 L 8.643 6.258 L 4.582 10.31 L 0.522 14.361 L 5.987 19.857 C 8.993 22.879 11.474 25.352 11.499 25.351 C 11.525 25.35 12.111 24.784 12.801 24.093 L 14.056 22.837 L 12.185 20.965 L 10.314 19.093 L 14.393 15.011 L 18.473 10.929 L 13.01 5.463 C 10.006 2.457 7.537 -0.001 7.524 0 C 7.511 0.001 6.931 0.564 6.234 1.25 Z M 19.659 4.068 L 19.659 5.766 L 22.983 5.766 L 26.307 5.766 L 26.307 13.72 L 26.307 21.674 L 28.097 21.674 L 29.887 21.674 L 29.887 13.72 L 29.887 5.766 L 33.141 5.766 L 36.396 5.766 L 36.396 4.068 L 36.396 2.37 L 28.027 2.37 L 19.659 2.37 Z M 64.058 4.626 L 64.058 6.649 L 62.652 6.649 L 61.246 6.649 L 62.652 8.057 L 64.058 9.464 L 64.058 13.807 C 64.058 18.529 64.066 18.689 64.322 19.506 C 64.919 21.414 66.592 22.239 68.91 21.768 C 69.243 21.701 69.471 21.632 69.485 21.594 C 69.51 21.53 69.232 18.694 69.198 18.66 C 69.187 18.65 69.072 18.664 68.941 18.693 C 68.381 18.813 68.039 18.713 67.811 18.362 C 67.548 17.956 67.545 17.907 67.545 13.513 L 67.545 9.487 L 69.103 9.487 L 70.66 9.487 L 70.66 8.068 L 70.66 6.649 L 69.103 6.649 L 67.545 6.649 L 67.545 4.626 L 67.545 2.603 L 65.802 2.603 L 64.058 2.603 Z M 84.84 12.138 L 84.84 21.674 L 86.398 21.674 L 87.955 21.674 L 87.955 12.138 L 87.955 2.603 L 86.398 2.603 L 84.84 2.603 Z M 54.929 6.491 C 53.823 6.691 52.58 7.379 51.545 8.364 L 51.087 8.799 L 51.087 7.701 L 51.087 6.603 L 49.344 6.603 L 47.6 6.603 L 47.6 14.243 C 47.6 18.445 47.586 22.81 47.569 23.942 L 47.539 26 L 49.29 26 L 51.041 26 L 51.041 23.065 L 51.041 20.13 L 51.276 20.332 C 54.11 22.766 58.67 22.231 60.909 19.203 C 62.846 16.583 62.978 12.093 61.197 9.417 C 59.768 7.27 57.215 6.078 54.929 6.491 Z M 37.923 6.531 C 33.565 7.154 30.978 11.132 31.818 15.918 C 32.938 22.304 41.438 24.055 45.067 18.648 C 46.784 16.091 46.784 12.233 45.068 9.677 C 43.477 7.305 40.788 6.122 37.923 6.531 Z M 76.542 6.491 C 74.463 6.787 73.226 7.471 72.36 8.801 C 71.799 9.663 71.404 10.853 71.404 11.679 L 71.404 11.906 L 72.09 11.906 C 72.467 11.906 73.168 11.892 73.647 11.875 L 74.519 11.844 L 74.52 11.701 C 74.529 10.028 76.225 8.802 78.006 9.179 C 79.185 9.429 79.809 10.27 79.763 11.548 L 79.75 11.923 L 77.471 12.28 C 74.268 12.783 73.611 12.971 72.543 13.687 C 69.582 15.674 69.964 20.152 73.212 21.535 C 75.367 22.453 77.925 22.022 79.389 20.495 L 79.773 20.095 L 79.773 20.884 L 79.773 21.674 L 81.54 21.674 L 83.306 21.674 L 83.306 16.383 C 83.306 10.668 83.308 10.728 83.055 9.858 C 82.523 8.029 81.23 6.969 79.052 6.577 C 78.651 6.505 76.872 6.444 76.542 6.491 Z M 11.267 9.161 C 11.607 9.372 13.057 10.961 13.057 11.124 C 13.057 11.262 12.841 11.491 10.604 13.735 C 8.269 16.077 7.973 16.347 7.805 16.29 C 7.68 16.248 5.904 14.453 5.876 14.339 C 5.827 14.145 5.955 14.004 8.441 11.522 C 11.066 8.901 10.972 8.979 11.267 9.161 Z M 39.91 9.628 C 44.056 10.582 44.142 17.606 40.021 18.674 C 36.967 19.466 34.413 16.651 35.021 13.163 C 35.468 10.595 37.555 9.086 39.91 9.628 Z M 55.899 9.737 C 59.918 10.831 59.946 17.363 55.936 18.522 C 53.713 19.165 51.498 17.688 50.966 15.208 C 50.254 11.884 52.92 8.926 55.899 9.737 Z M 79.773 14.946 C 79.773 17.395 77.625 19.399 75.502 18.931 C 73.823 18.56 73.536 16.487 75.054 15.689 C 75.535 15.437 78.747 14.752 79.691 14.701 C 79.759 14.697 79.773 14.738 79.773 14.946 Z M 90.466 19.327 C 90.045 19.457 89.697 19.877 89.645 20.315 C 89.514 21.42 90.824 22.114 91.656 21.381 C 92.66 20.497 91.751 18.927 90.466 19.327 Z M 91.257 19.606 C 91.813 19.887 91.966 20.612 91.57 21.092 C 91.092 21.673 90.183 21.481 89.972 20.754 C 89.742 19.963 90.544 19.246 91.257 19.606 Z M 90.373 20.488 L 90.373 21.162 L 90.512 21.162 L 90.652 21.162 L 90.652 20.883 C 90.652 20.518 90.735 20.515 90.943 20.872 C 91.075 21.098 91.122 21.141 91.247 21.154 C 91.429 21.172 91.43 21.16 91.257 20.855 L 91.119 20.609 L 91.257 20.471 C 91.602 20.126 91.37 19.813 90.77 19.813 L 90.373 19.813 Z M 91.102 20.122 C 91.152 20.252 91.05 20.347 90.845 20.363 C 90.652 20.377 90.652 20.377 90.652 20.211 C 90.652 20.022 91.035 19.946 91.102 20.122 Z\" fill=\"rgb(58, 84, 105)\"></path></svg>',svgContentId:12136707735,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.serapion.net/?ref=supercharge.design\",nodeId:\"oXHOjfIPa\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1mwfu0w framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 Serapion\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15iri4u\",\"data-framer-name\":\"image 2 (Traced)\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 110 26\"><path d=\"M 9.688 0.924 C 8.823 1.433 6.361 2.853 4.217 4.081 C 2.073 5.308 0.241 6.383 0.146 6.468 C 0.012 6.589 -0.018 7.927 0.009 12.597 L 0.045 18.572 L 2.165 17.328 C 3.331 16.643 4.516 15.936 4.798 15.756 L 5.311 15.428 L 5.311 12.573 L 5.311 9.718 L 8.215 8.027 C 9.812 7.097 11.164 6.316 11.22 6.292 C 11.277 6.267 11.924 6.604 12.66 7.04 C 13.395 7.476 14.213 7.948 14.476 8.089 C 14.739 8.23 15.201 8.485 15.502 8.655 L 16.049 8.965 L 18.443 7.484 C 19.759 6.67 20.929 5.947 21.042 5.878 C 21.314 5.712 21.686 5.948 16.596 3.055 C 14.113 1.645 11.898 0.38 11.672 0.245 L 11.261 0 Z M 20.488 8.825 C 19.401 9.474 18.214 10.171 17.851 10.375 L 17.191 10.744 L 17.206 13.625 L 17.221 16.505 L 15.883 17.284 C 15.147 17.712 13.99 18.386 13.313 18.78 C 12.636 19.175 11.89 19.607 11.654 19.741 L 11.226 19.986 L 9.466 18.991 C 8.497 18.444 7.476 17.85 7.195 17.672 C 6.915 17.493 6.616 17.347 6.531 17.347 C 6.352 17.347 1.351 20.389 1.347 20.5 C 1.345 20.566 2.347 21.173 3.934 22.068 C 5.339 22.86 6.285 23.397 8.544 24.686 C 11.479 26.361 11.117 26.318 12.993 25.212 C 13.822 24.723 14.572 24.363 14.659 24.413 C 14.747 24.463 14.772 24.453 14.716 24.391 C 14.613 24.277 14.945 24.045 16.186 23.36 C 16.936 22.946 22.454 19.791 22.518 19.739 C 22.583 19.686 22.589 7.77 22.524 7.705 C 22.491 7.672 21.575 8.176 20.488 8.825 Z M 10.981 8.301 C 10.91 8.366 10.482 8.618 10.031 8.86 C 9.579 9.103 8.67 9.612 8.01 9.992 L 6.81 10.682 L 6.847 13.213 L 6.884 15.744 L 9.005 16.952 C 11.551 18.402 10.934 18.398 13.42 16.979 C 15.958 15.53 15.709 15.945 15.693 13.19 C 15.676 10.448 15.901 10.809 13.245 9.26 C 11.358 8.159 11.207 8.095 10.981 8.301 Z M 31.779 9.441 C 30.468 9.804 29.661 10.669 29.66 11.712 C 29.658 13.175 30.309 13.638 33.352 14.338 C 34.931 14.701 35.3 14.907 35.241 15.393 C 35.12 16.403 32.843 16.688 30.983 15.925 C 30.47 15.715 30.031 15.564 30.008 15.59 C 29.985 15.616 29.835 15.898 29.675 16.216 L 29.383 16.794 L 30.049 17.132 C 32.676 18.463 36.767 17.67 37.126 15.76 C 37.409 14.25 36.501 13.399 34.073 12.901 C 31.991 12.474 31.505 12.218 31.597 11.593 C 31.728 10.709 33.719 10.408 35.441 11.011 L 36.23 11.288 L 36.5 10.678 C 36.648 10.342 36.739 10.019 36.702 9.959 C 36.399 9.468 32.978 9.108 31.779 9.441 Z M 40.089 9.389 L 39.781 9.433 L 39.781 13.527 L 39.781 17.621 L 43.482 17.621 L 47.183 17.621 L 47.141 16.971 L 47.099 16.321 L 44.432 16.253 L 41.765 16.185 L 41.724 15.193 L 41.684 14.201 L 43.283 14.201 L 44.881 14.201 L 45.615 13.574 C 46.6 12.733 46.537 12.7 43.985 12.721 L 41.771 12.738 L 41.723 11.763 L 41.675 10.788 L 44.306 10.75 L 46.936 10.713 L 46.926 10.132 C 46.92 9.812 46.91 9.504 46.905 9.448 C 46.895 9.35 40.736 9.297 40.089 9.389 Z M 49.967 9.395 C 49.94 9.422 49.913 11.284 49.907 13.532 L 49.896 17.621 L 50.926 17.621 L 51.955 17.621 L 51.955 14.201 L 51.955 10.781 L 53.125 10.781 C 56.309 10.781 57.543 12.993 54.815 13.811 C 53.868 14.094 54.007 14.946 55.246 16.449 L 56.212 17.621 L 57.237 17.621 C 58.428 17.621 58.438 17.731 57.103 16.139 C 56.188 15.048 56.091 14.762 56.635 14.75 C 56.689 14.749 56.96 14.549 57.237 14.306 C 58.763 12.966 58.264 10.619 56.264 9.732 C 55.766 9.512 50.15 9.211 49.967 9.395 Z M 63.933 9.402 C 63.907 9.446 63.563 10.098 63.17 10.85 C 62.776 11.602 62.224 12.649 61.941 13.175 C 60.577 15.722 59.629 17.589 59.676 17.637 C 59.705 17.665 60.154 17.669 60.674 17.645 L 61.62 17.6 L 63.234 14.363 L 64.847 11.127 L 66.472 14.374 L 68.097 17.621 L 69.13 17.621 L 70.164 17.621 L 69.266 15.945 C 68.773 15.024 67.8 13.177 67.105 11.842 L 65.841 9.414 L 65.224 9.402 C 64.885 9.396 64.467 9.375 64.294 9.356 C 64.122 9.337 63.959 9.358 63.933 9.402 Z M 72.256 9.402 C 72.225 9.434 72.199 11.296 72.199 13.54 L 72.199 17.621 L 73.157 17.621 L 74.114 17.621 L 74.114 16.471 L 74.114 15.322 L 75.995 15.271 C 79.128 15.187 80.304 14.381 80.304 12.316 C 80.304 10.833 79.137 9.67 77.465 9.489 C 76.611 9.396 72.333 9.325 72.256 9.402 Z M 91.314 9.418 C 86.645 10.585 86.499 16.336 91.108 17.563 C 95.512 18.735 99.439 15.33 97.724 11.825 C 96.781 9.897 93.831 8.789 91.314 9.418 Z M 100.894 13.483 C 100.873 15.772 100.877 17.665 100.903 17.691 C 100.93 17.718 101.376 17.297 101.895 16.757 L 102.839 15.775 L 102.839 14.065 L 102.839 12.355 L 103.831 13.382 C 104.376 13.947 105.516 15.132 106.363 16.015 L 107.903 17.621 L 108.654 17.621 L 109.405 17.621 L 109.405 13.529 L 109.405 9.438 L 108.572 9.392 C 107.523 9.333 107.627 9.033 107.627 12.133 L 107.627 14.806 L 105.884 12.965 C 102.209 9.081 102.599 9.418 101.714 9.367 L 100.932 9.323 Z M 83.856 10.272 L 83.005 11.131 L 83.005 14.376 L 83.005 17.621 L 83.963 17.621 L 84.92 17.621 L 84.92 13.517 C 84.92 11.26 84.872 9.414 84.814 9.414 C 84.755 9.414 84.324 9.8 83.856 10.272 Z M 77.701 11.168 C 78.254 11.51 78.354 11.696 78.354 12.375 C 78.354 13.512 77.76 13.841 75.687 13.851 L 74.183 13.859 L 74.144 12.303 L 74.105 10.747 L 75.658 10.806 C 76.956 10.856 77.291 10.915 77.701 11.168 Z M 94.09 10.918 C 95.866 11.411 96.693 13.407 95.742 14.907 C 94.369 17.071 90.25 16.547 89.737 14.143 C 89.257 11.892 91.532 10.207 94.09 10.918 Z\" fill=\"rgb(58, 84, 105)\"></path></svg>',svgContentId:8712547458,withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gcs3f9\",\"data-framer-name\":\"Logo Tag \u2013 Venice\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1avry8f\",\"data-framer-name\":\"image 3 (Traced)\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 100 20\"><path d=\"M 15.759 0.037 C 15.691 0.058 15.311 0.242 14.915 0.445 C 14.518 0.648 13.821 1.004 13.365 1.236 C 12.909 1.469 12.232 1.814 11.861 2.004 C 11.489 2.194 10.771 2.56 10.265 2.818 C 8.92 3.501 7.877 4.033 7.042 4.459 C 6.244 4.867 5.086 5.457 3.896 6.063 C 0.206 7.941 0.344 7.869 0.177 8.009 C -0.063 8.209 -0.059 8.327 0.19 8.437 C 0.402 8.531 1.219 8.563 1.461 8.486 C 1.542 8.46 1.795 8.389 2.023 8.327 C 2.251 8.266 2.52 8.19 2.622 8.159 C 2.723 8.128 2.944 8.066 3.113 8.021 C 3.282 7.975 3.503 7.914 3.604 7.884 C 3.705 7.853 3.899 7.797 4.034 7.759 C 4.169 7.721 4.39 7.657 4.525 7.617 C 4.862 7.518 5.647 7.295 5.722 7.277 C 5.756 7.269 5.866 7.238 5.967 7.208 C 6.531 7.042 7.536 6.754 7.686 6.716 C 7.737 6.703 7.951 6.641 8.162 6.578 C 8.528 6.469 8.684 6.425 9.206 6.28 C 9.852 6.101 10.01 6.257 9.747 6.815 C 9.639 7.046 9.419 7.536 8.959 8.573 C 8.699 9.157 8.19 10.356 8.04 10.737 C 8.01 10.813 7.902 11.082 7.801 11.335 C 7.499 12.09 7.274 12.669 7.181 12.931 C 7.151 13.016 7.098 13.161 7.064 13.254 C 6.117 15.816 5.667 17.599 5.663 18.809 L 5.66 19.438 L 5.75 19.591 C 6.233 20.413 7.562 20.009 10.141 18.257 C 10.236 18.192 10.418 18.066 10.633 17.916 C 11.237 17.494 12.75 16.332 13.609 15.632 C 13.961 15.345 14.333 15.042 14.436 14.959 C 14.915 14.569 15.885 13.763 15.912 13.732 C 15.929 13.712 16.15 13.526 16.403 13.318 C 16.657 13.109 16.878 12.922 16.895 12.903 C 16.911 12.884 17.063 12.752 17.232 12.612 C 17.401 12.471 17.622 12.283 17.723 12.194 C 17.825 12.105 18.116 11.855 18.37 11.638 C 18.624 11.421 19.023 11.077 19.257 10.875 C 19.49 10.672 19.732 10.465 19.793 10.414 C 19.985 10.256 20.76 9.587 20.793 9.552 C 20.81 9.534 20.996 9.375 21.207 9.2 C 21.418 9.025 21.605 8.866 21.621 8.847 C 21.638 8.829 21.825 8.67 22.036 8.495 C 22.247 8.32 22.461 8.139 22.512 8.093 C 22.933 7.711 25.269 5.848 25.734 5.523 C 26.374 5.076 27.038 4.67 27.223 4.613 C 27.371 4.568 27.584 4.447 27.603 4.397 C 27.82 3.832 26.569 3.448 25.581 3.776 C 25 3.969 24.696 4.088 24.077 4.366 C 23.062 4.822 21.42 5.682 20.332 6.326 C 20.248 6.376 20.137 6.441 20.087 6.47 C 19.781 6.643 18.763 7.264 18.383 7.508 C 18.29 7.568 18.125 7.674 18.015 7.744 C 17.683 7.957 16.48 8.756 16.235 8.928 C 15.817 9.22 15.647 9.339 15.549 9.409 C 15.496 9.447 15.404 9.511 15.344 9.552 C 14.976 9.804 13.995 10.547 13.151 11.214 C 11.409 12.589 11.028 12.154 11.927 9.816 C 12.223 9.044 13.22 6.95 13.716 6.056 C 13.772 5.954 13.869 5.775 13.933 5.657 C 14.16 5.231 14.252 5.064 14.601 4.444 C 14.94 3.842 15.039 3.67 15.121 3.538 C 15.153 3.486 15.223 3.366 15.467 2.943 C 15.546 2.806 15.657 2.622 15.728 2.511 C 15.765 2.451 15.937 2.175 16.109 1.897 C 16.282 1.618 16.497 1.276 16.586 1.136 C 16.761 0.864 16.806 0.705 16.76 0.51 C 16.673 0.141 16.172 -0.095 15.759 0.037 Z M 65.382 0.183 C 65.327 0.198 65.204 0.262 65.11 0.325 C 65.015 0.387 64.917 0.453 64.891 0.469 C 64.233 0.904 62.535 2.558 61.978 3.309 C 61.654 3.746 61.723 4.604 62.125 5.125 C 62.773 5.966 64.031 5.688 64.816 4.529 C 64.881 4.433 65.01 4.267 65.102 4.161 C 65.277 3.96 65.998 3.149 66.08 3.062 C 66.96 2.126 67.349 1.548 67.276 1.286 C 67.145 0.82 65.837 0.057 65.382 0.183 Z M 95.656 3.451 C 94.849 3.615 94.343 4.018 94.063 4.719 C 93.931 5.052 93.925 5.752 94.053 6.078 C 94.915 8.286 98.117 7.481 97.854 5.124 C 97.738 4.079 96.647 3.25 95.656 3.451 Z M 42.985 3.677 C 42.722 3.722 42.344 3.906 42.043 4.135 C 41.964 4.196 41.854 4.279 41.798 4.322 C 41.245 4.741 40.388 5.85 39.746 6.977 C 39.717 7.027 39.611 7.207 39.51 7.376 C 39.348 7.647 39.22 7.863 39.04 8.174 C 38.682 8.789 38.532 9.048 38.488 9.125 C 38.096 9.814 37.521 10.743 37.439 10.818 C 37.375 10.877 35.874 11.884 35.303 12.251 C 35.181 12.33 34.988 12.454 34.874 12.528 C 34.213 12.955 33.146 13.593 32.595 13.89 C 32.485 13.949 32.305 14.047 32.196 14.106 C 31.54 14.464 30.359 15.006 29.617 15.29 C 28.837 15.589 27.741 15.955 27.209 16.094 C 27.124 16.116 26.893 16.177 26.696 16.228 C 23.966 16.943 23.06 16.283 23.986 14.251 C 24.121 13.955 24.099 13.977 24.205 14.03 C 24.816 14.339 26.235 14.145 27.576 13.57 C 27.936 13.416 28.04 13.368 28.328 13.225 C 28.911 12.935 29.407 12.647 29.986 12.261 C 32.38 10.667 34.039 8.764 34.3 7.314 C 34.66 5.312 32.306 4.542 29.479 5.737 C 29.361 5.787 29.223 5.845 29.173 5.865 C 28.977 5.944 27.843 6.525 27.675 6.633 C 27.578 6.695 27.491 6.746 27.483 6.746 C 27.474 6.746 27.409 6.783 27.338 6.829 C 27.266 6.874 27.139 6.955 27.054 7.008 C 21.052 10.795 18.005 16.23 20.51 18.683 C 21.785 19.931 24.019 20.107 26.793 19.178 C 26.886 19.146 27.011 19.107 27.07 19.09 C 27.161 19.064 27.815 18.834 28.175 18.7 C 28.361 18.631 29.102 18.33 29.326 18.232 C 29.444 18.18 29.713 18.063 29.924 17.97 C 31.001 17.499 32.47 16.754 33.592 16.107 C 34.307 15.696 34.47 15.599 34.682 15.462 C 34.758 15.413 34.841 15.363 34.866 15.351 C 34.928 15.322 35.569 14.913 35.661 14.843 C 35.767 14.763 35.767 14.775 35.674 15.145 C 35.494 15.862 35.559 16.918 35.812 17.367 C 36.672 18.894 39.632 19.004 41.763 17.587 C 41.857 17.525 41.956 17.46 41.983 17.443 C 42.464 17.148 43.502 16.201 44.204 15.42 C 44.357 15.25 44.526 15.062 44.579 15.003 C 44.769 14.794 45.845 13.481 45.993 13.278 C 46.026 13.231 46.159 13.059 46.286 12.894 C 46.679 12.387 46.919 12.071 47.507 11.289 C 48.207 10.359 48.167 10.4 48.077 10.71 C 48.036 10.851 47.983 11.036 47.96 11.12 C 47.936 11.205 47.866 11.446 47.804 11.657 C 47.691 12.038 47.659 12.148 47.543 12.563 C 47.51 12.681 47.448 12.902 47.405 13.054 C 47.053 14.295 46.791 15.359 46.618 16.262 C 46.516 16.791 46.521 17.507 46.63 17.951 C 47.109 19.9 48.742 20.045 51.575 18.388 C 52.102 18.08 52.985 17.479 53.531 17.057 C 54.159 16.572 54.379 16.397 54.564 16.238 C 54.777 16.054 54.781 16.058 54.697 16.349 C 54.427 17.287 54.439 18.177 54.728 18.748 C 55.324 19.927 57.11 20.121 59.145 19.228 C 59.88 18.906 60.719 18.375 61.263 17.889 C 61.322 17.836 61.543 17.656 61.754 17.489 C 61.965 17.322 62.601 16.813 63.166 16.359 C 63.732 15.905 64.198 15.536 64.203 15.54 C 64.207 15.544 64.189 15.635 64.161 15.743 C 64.071 16.096 64.064 17.165 64.149 17.506 C 64.665 19.565 67.125 19.679 71.592 17.85 C 73.407 17.107 76.242 15.604 78.436 14.223 C 78.607 14.116 78.715 14.064 78.718 14.089 C 79.003 16.223 80.026 17.846 81.552 18.58 C 82.628 19.097 83.374 19.019 84.739 18.245 C 84.897 18.155 86.912 17.152 87.368 16.936 C 87.569 16.841 87.997 16.647 88.243 16.541 C 88.37 16.486 88.529 16.417 88.596 16.387 C 89.027 16.196 89.772 15.885 90.036 15.786 C 90.139 15.747 90.272 15.694 90.331 15.668 C 90.39 15.642 90.611 15.557 90.822 15.478 C 91.033 15.4 91.274 15.31 91.359 15.278 C 91.756 15.129 92.953 14.728 93.339 14.614 C 93.482 14.572 93.717 14.503 93.86 14.461 C 94.564 14.254 95.494 14.029 96.239 13.887 C 97.111 13.72 97.769 13.644 98.688 13.602 C 99.192 13.579 99.262 13.553 99.144 13.427 C 99.044 13.321 98.423 13.012 97.989 12.854 C 97.904 12.823 97.739 12.761 97.62 12.716 C 97.223 12.566 96.74 12.403 96.208 12.24 C 95.443 12.005 95.115 12.005 93.998 12.243 C 93.542 12.34 92.105 12.757 91.512 12.964 C 91.428 12.993 91.29 13.041 91.205 13.07 C 90.776 13.219 89.85 13.554 89.64 13.637 C 89.539 13.677 89.359 13.746 89.241 13.79 C 89.123 13.834 88.964 13.896 88.888 13.928 C 88.812 13.96 88.515 14.078 88.228 14.191 C 87.941 14.304 87.623 14.431 87.522 14.473 C 87.421 14.514 87.276 14.574 87.2 14.606 C 87.02 14.68 86.626 14.845 86.509 14.896 C 86.458 14.918 86.334 14.971 86.233 15.014 C 86.132 15.056 85.828 15.187 85.558 15.304 C 84.368 15.82 84.391 15.813 83.869 15.815 C 83.18 15.818 82.84 15.57 82.607 14.896 C 82.491 14.559 82.484 13.702 82.592 13.208 C 82.63 13.039 82.668 12.849 82.678 12.785 C 82.699 12.652 82.7 12.652 82.843 12.728 C 84.574 13.656 88.245 12.208 90.189 9.831 C 90.414 9.557 90.54 9.378 90.797 8.971 C 91.901 7.22 91.234 5.213 89.348 4.612 C 88.085 4.21 85.915 4.699 84.119 5.79 C 84.004 5.86 83.904 5.918 83.897 5.918 C 83.886 5.918 83.339 6.266 83.204 6.358 C 82.404 6.909 82.044 7.208 81.382 7.867 C 80.47 8.775 79.487 10.225 79.238 11.031 C 79.219 11.091 78.957 11.28 78.344 11.674 C 77.864 11.982 77.771 12.04 77.316 12.317 C 77.071 12.466 76.823 12.618 76.764 12.656 C 76.667 12.717 76.453 12.841 75.48 13.397 C 75.322 13.487 75.187 13.561 75.179 13.561 C 75.172 13.561 75.052 13.625 74.913 13.704 C 73.366 14.585 71.156 15.537 69.981 15.831 C 66.989 16.578 67.498 14.469 71.411 9.905 C 72.325 8.839 73.589 8.076 73.779 8.475 C 73.846 8.614 73.855 8.674 73.863 9.033 C 73.887 10.039 74.37 10.47 75.225 10.248 C 76.198 9.996 76.784 9.339 77.093 8.153 L 77.239 7.59 L 77.239 7.038 C 77.24 5.839 76.748 5.172 75.662 4.899 C 75.07 4.751 74.027 4.87 73.311 5.167 C 73.26 5.188 73.115 5.244 72.988 5.291 C 72.764 5.374 71.928 5.769 71.746 5.878 C 71.695 5.908 71.55 5.994 71.423 6.068 C 70.155 6.811 68.682 8.097 67.569 9.434 C 67.402 9.636 67.257 9.807 67.247 9.816 C 67.212 9.848 66.765 10.43 66.604 10.654 C 66.511 10.783 66.366 10.94 66.282 11.002 C 66.197 11.065 65.652 11.496 65.069 11.96 C 63.213 13.439 63.192 13.455 62.675 13.853 C 62.481 14.002 62.212 14.209 62.076 14.313 C 60.385 15.614 58.954 16.476 58.487 16.476 C 58.037 16.476 58.206 15.661 58.903 14.463 C 58.943 14.394 59.063 14.187 59.17 14.003 C 59.465 13.491 59.812 12.933 60.358 12.092 C 60.476 11.91 60.634 11.665 60.709 11.548 C 60.784 11.431 60.921 11.218 61.013 11.074 C 61.214 10.761 61.371 10.514 61.462 10.368 C 61.499 10.309 61.566 10.202 61.611 10.131 C 61.656 10.06 61.693 9.992 61.693 9.98 C 61.693 9.968 61.712 9.937 61.735 9.91 C 61.759 9.884 61.843 9.738 61.922 9.586 C 62.59 8.307 62.436 7.463 61.473 7.126 C 60.425 6.76 59.123 7.678 57.724 9.77 C 57.403 10.251 57.39 10.271 57.099 10.779 C 56.876 11.165 56.948 11.088 55.893 12.089 C 55.865 12.115 55.643 12.313 55.399 12.53 C 55.155 12.746 54.942 12.939 54.925 12.959 C 54.908 12.978 54.694 13.165 54.449 13.374 C 54.204 13.583 53.886 13.854 53.743 13.977 C 53.15 14.484 52.131 15.292 51.697 15.601 C 49.599 17.09 49.291 16.883 49.984 14.451 C 50.006 14.375 50.093 14.105 50.177 13.852 C 50.313 13.447 50.423 13.132 50.723 12.287 C 50.765 12.169 50.818 12.017 50.841 11.949 C 50.864 11.882 50.954 11.626 51.042 11.381 C 51.337 10.557 51.606 9.682 51.733 9.142 C 52.258 6.893 50.478 6.075 48.065 7.456 C 47.288 7.9 46.356 8.755 45.091 10.184 C 44.815 10.497 44.545 10.8 44.491 10.859 C 44.437 10.919 44.221 11.167 44.011 11.412 C 43.802 11.657 43.533 11.968 43.415 12.104 C 43.296 12.24 43.082 12.487 42.939 12.654 C 40.444 15.554 39.497 16.239 39.334 15.262 C 39.236 14.676 40.149 12.541 41.358 10.528 C 41.375 10.499 41.45 10.372 41.524 10.246 C 42.115 9.237 42.855 8.059 43.854 6.533 C 44.36 5.762 44.535 5.358 44.535 4.963 C 44.535 4.2 43.748 3.548 42.985 3.677 Z M 96.248 3.879 C 98.038 4.247 97.746 6.958 95.916 6.961 C 94.153 6.964 93.773 4.356 95.472 3.911 C 95.834 3.816 95.925 3.813 96.248 3.879 Z M 95.231 4.588 C 95.202 4.617 95.207 6.171 95.237 6.218 C 95.255 6.246 95.325 6.256 95.474 6.249 L 95.687 6.24 L 95.695 6.002 L 95.704 5.764 L 95.824 5.764 C 95.939 5.764 95.948 5.772 96.103 6.01 L 96.262 6.255 L 96.489 6.255 C 96.759 6.255 96.759 6.253 96.575 5.974 C 96.393 5.696 96.391 5.69 96.483 5.618 C 96.837 5.339 96.702 4.769 96.246 4.616 C 96.096 4.566 95.276 4.543 95.231 4.588 Z M 96.112 4.999 C 96.323 5.165 96.175 5.396 95.857 5.396 L 95.702 5.396 L 95.702 5.166 L 95.702 4.935 L 95.867 4.935 C 95.987 4.935 96.053 4.953 96.112 4.999 Z M 88.211 7.69 C 87.682 8.633 86.951 9.374 86.156 9.771 C 85.664 10.018 85.274 10.145 84.744 10.232 C 84.413 10.287 84.429 10.288 84.472 10.207 C 84.849 9.495 85.606 8.742 86.4 8.289 C 86.932 7.985 87.968 7.561 88.284 7.517 C 88.299 7.515 88.266 7.593 88.211 7.69 Z M 30.95 8.335 C 29.57 10.057 28.328 10.927 26.632 11.361 C 26.424 11.414 26.419 11.431 26.738 11.044 C 27.121 10.578 27.797 9.952 28.282 9.613 C 29.017 9.1 29.876 8.644 30.799 8.277 C 31.083 8.164 31.086 8.165 30.95 8.335 Z\" fill=\"rgb(58, 84, 105)\"></path></svg>',svgContentId:12652345140,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.nrg.com/?ref=supercharge.design\",nodeId:\"agDMzmo2P\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-6a5jze framer-jxbss8\",\"data-framer-name\":\"Logo Tag \u2013 nrg\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1w37h4h\",\"data-framer-name\":\"18-nrg (Traced)\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 63 43\"><path d=\"M 47.74 2.617 L 47.74 4.736 L 49.054 4.736 L 50.368 4.736 L 50.368 2.617 L 50.368 0.499 L 49.054 0.499 L 47.74 0.499 Z M 43.234 6.345 L 43.234 7.686 L 45.326 7.686 L 47.418 7.686 L 47.418 6.345 L 47.418 5.004 L 45.326 5.004 L 43.234 5.004 Z M 50.69 6.345 L 50.69 7.686 L 52.782 7.686 L 54.874 7.686 L 54.874 6.345 L 54.874 5.004 L 52.782 5.004 L 50.69 5.004 Z M 47.74 10.1 L 47.74 12.192 L 49.054 12.192 L 50.368 12.192 L 50.368 10.1 L 50.368 8.008 L 49.054 8.008 L 47.74 8.008 Z M 55.196 10.1 L 55.196 12.192 L 56.51 12.192 L 57.824 12.192 L 57.824 10.1 L 57.824 8.008 L 56.51 8.008 L 55.196 8.008 Z M 43.234 13.801 L 43.234 15.142 L 45.326 15.142 L 47.418 15.142 L 47.418 13.801 L 47.418 12.46 L 45.326 12.46 L 43.234 12.46 Z M 50.69 13.801 L 50.69 15.142 L 52.782 15.142 L 54.874 15.142 L 54.874 13.801 L 54.874 12.46 L 52.782 12.46 L 50.69 12.46 Z M 58.146 13.801 L 58.146 15.142 L 60.238 15.142 L 62.33 15.142 L 62.33 13.801 L 62.33 12.46 L 60.238 12.46 L 58.146 12.46 Z M 47.74 17.528 L 47.74 19.648 L 49.055 19.648 L 50.369 19.648 L 50.355 17.543 L 50.341 15.437 L 49.04 15.423 L 47.74 15.408 Z M 55.196 17.528 L 55.196 19.648 L 56.51 19.648 L 57.825 19.648 L 57.811 17.543 L 57.797 15.437 L 56.496 15.423 L 55.196 15.408 Z M 35.483 19.253 C 30.017 19.622 26.683 23.815 27.577 29.196 C 28.043 32 29.709 34.04 32.217 34.877 C 34.2 35.539 36.952 35.451 38.728 34.67 C 39.008 34.547 39.272 34.431 39.313 34.413 C 39.556 34.309 39.254 36.146 38.922 36.793 C 37.801 38.981 34.39 39.569 30.799 38.194 C 30.495 38.078 30.233 37.995 30.218 38.01 C 30.107 38.121 29.122 41.39 29.187 41.432 C 29.97 41.929 32.769 42.499 34.429 42.498 C 38.685 42.497 41.678 40.661 42.776 37.378 C 43.221 36.049 43.198 36.505 43.219 28.487 L 43.238 21.368 L 43.025 21.234 C 40.878 19.878 37.88 19.091 35.483 19.253 Z M 7.697 19.33 C 6.297 19.521 4.802 20.2 4.053 20.985 C 3.838 21.21 3.808 21.195 3.808 20.863 C 3.808 20.705 3.793 20.355 3.774 20.085 L 3.739 19.594 L 1.869 19.594 L 0 19.594 L 0 27.265 L 0 34.935 L 1.958 34.935 L 3.916 34.935 L 3.916 30.022 L 3.916 25.108 L 4.117 24.725 C 5.352 22.366 9.243 21.924 10.245 24.029 C 10.605 24.783 10.589 24.525 10.608 29.987 L 10.625 34.935 L 12.554 34.935 L 14.483 34.935 L 14.482 29.773 C 14.482 24.253 14.476 24.099 14.209 23.137 C 13.466 20.457 10.811 18.905 7.697 19.33 Z M 25.33 19.381 C 23.901 19.528 22.48 20.238 21.653 21.218 C 21.39 21.53 21.358 21.495 21.352 20.882 C 21.35 20.66 21.333 20.28 21.314 20.037 L 21.279 19.594 L 19.437 19.594 L 17.594 19.594 L 17.594 27.265 L 17.594 34.935 L 19.552 34.935 L 21.51 34.935 L 21.51 30.116 L 21.51 25.297 L 21.668 24.98 C 22.503 23.314 24.799 22.521 26.774 23.218 C 26.898 23.262 27.017 23.279 27.037 23.256 C 27.08 23.209 28.198 20.032 28.224 19.885 C 28.277 19.59 26.429 19.268 25.33 19.381 Z M 36.823 22.547 C 37.688 22.646 38.508 22.902 39.09 23.255 L 39.372 23.425 L 39.372 27.244 L 39.372 31.062 L 39.117 31.225 C 38.409 31.679 37.537 31.945 36.451 32.039 C 33.319 32.308 31.415 30.597 31.409 27.506 C 31.403 24.27 33.677 22.187 36.823 22.547 Z M 45.856 31.949 C 44.952 32.287 44.589 33.176 45.01 34.019 C 45.673 35.345 47.62 34.922 47.727 33.429 C 47.799 32.431 46.762 31.61 45.856 31.949 Z M 46.757 32.33 C 47.22 32.546 47.473 33.078 47.359 33.595 C 47.066 34.914 45.195 34.707 45.199 33.355 C 45.202 32.486 45.985 31.971 46.757 32.33 Z M 45.755 33.321 L 45.755 34.077 L 45.916 34.077 C 46.073 34.077 46.077 34.071 46.077 33.809 C 46.077 33.433 46.232 33.433 46.439 33.808 C 46.569 34.043 46.607 34.076 46.761 34.076 C 46.973 34.077 46.973 34.071 46.781 33.758 L 46.627 33.508 L 46.754 33.361 C 47.094 32.966 46.832 32.613 46.18 32.583 L 45.755 32.564 Z M 46.422 32.896 C 46.686 32.996 46.562 33.273 46.254 33.273 C 46.083 33.273 46.077 33.265 46.077 33.058 C 46.077 32.823 46.146 32.791 46.422 32.896 Z\" fill=\"rgb(58, 84, 105)\"></path></svg>',svgContentId:9634272281,withExternalLayout:true})})})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q14nne\",\"data-framer-name\":\"Frame 1321314958\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s9arlt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-2nx2ke\",\"data-styles-preset\":\"PBZ031t2q\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(115, 168, 255)\"},children:\"Become a UI Grids & Layouts Master\"})}),className:\"framer-xtwf4y\",\"data-framer-name\":\"Let\u2019s start with the basics\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-16959a1\",\"data-styles-preset\":\"SgWJ3LhP0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-00e8397f-a2ab-4d76-9c28-77f8efb143bc, rgb(255, 255, 255))\"},children:\"Invest in your UX/UI design future today\"})}),className:\"framer-1vcdia6\",\"data-framer-name\":\"There is no user interface without user interface elements\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-xwll57\",\"data-styles-preset\":\"AulFOp9tt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(197, 204, 222)\"},children:[\"It\u2019s time to learn all the secrets of UI grids and layouts, and feel confident in your design decisions. \",/*#__PURE__*/_jsx(\"strong\",{children:\"Take your designs from average to exceptional\"}),\" by enrolling in this engaging, practical, and all-inclusive video course.\"]})})},JzFPzPkCn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-xwll57\",\"data-styles-preset\":\"AulFOp9tt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(197, 204, 222)\"},children:[\"It\u2019s time to learn all the secrets of UI grids and layouts, and feel confident in your design decisions. \",/*#__PURE__*/_jsx(\"strong\",{children:\"Take your designs from average to exceptional\"}),\" by enrolling in this engaging, practical, and all-inclusive video course.\"]})})},UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-xwll57\",\"data-styles-preset\":\"AulFOp9tt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(197, 204, 222)\"},children:[\"It\u2019s time to learn all the secrets of UI grids and layouts, and feel confident in your design decisions. \",/*#__PURE__*/_jsx(\"strong\",{children:\"Take your designs from average to exceptional\"}),\" by enrolling in this engaging, practical, and all-inclusive video course.\"]})})},yv6tABt87:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-xwll57\",\"data-styles-preset\":\"AulFOp9tt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(197, 204, 222)\"},children:[\"It\u2019s time to learn all the secrets of UI grids and layouts, and feel confident in your design decisions. \",/*#__PURE__*/_jsx(\"strong\",{children:\"Take your designs from average to exceptional\"}),\" by enrolling in this engaging, practical, and all-inclusive video course.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-s8i137\",\"data-styles-preset\":\"jtE9a8MQM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(197, 204, 222)\"},children:[\"It\u2019s time to learn all the secrets of UI grids and layouts, and feel confident in your design decisions. \",/*#__PURE__*/_jsx(\"strong\",{children:\"Take your designs from average to exceptional\"}),\" by enrolling in this engaging, practical, and all-inclusive video course.\"]})}),className:\"framer-bqnt0p\",\"data-framer-name\":\"It\u2019s time to learn all the secrets of UI grids and layouts, and feel confident in your design decisions. Take your designs from average to exceptional by enrolling in this engaging, practical, and \\u2028all-inclusive video course.\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d5jllj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dqkpyt\",\"data-framer-name\":\"Frame 1321314112\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1gpq2xz\",\"data-styles-preset\":\"xarLYEhM7\",style:{\"--framer-text-color\":\"rgb(13, 9, 4)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(230deg, rgb(40, 158, 245) 0%, rgb(0, 102, 178) 100%)\"},children:\"The Ultimate UI Grids & Layouts Masterclass\"})})}),className:\"framer-19bjpyo\",\"data-framer-name\":\"Core\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qhtrbm\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e0shvh\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rd5yc0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e8m8ob\",\"data-styles-preset\":\"AZ3uZjZdT\",style:{\"--framer-text-color\":\"rgb(2, 106, 183)\"},children:\"full access\"})}),className:\"framer-xs4l0d\",\"data-framer-name\":\"Core\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yv6tABt87:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"52px\",\"--framer-text-color\":\"rgb(2, 106, 183)\"},children:\"$249\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"56px\",\"--framer-text-color\":\"rgb(2, 106, 183)\"},children:\"$249\"})}),className:\"framer-sd14vc\",\"data-framer-name\":\"$219\",fonts:[\"CUSTOM;Biennale SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Biennale Regular\", \"Biennale Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(80, 100, 115)\"},children:\"Inclusive of VAT, if applicable\"})}),className:\"framer-y7fml5\",\"data-framer-name\":\"Inclusive of VAT, if applicable\",fonts:[\"CUSTOM;Biennale Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cpa14q-container\",style:{transformPerspective:1200},whileHover:animation3,whileTap:animation4,children:/*#__PURE__*/_jsx(RandomRotation,{default:{max:0,min:0},height:\"100%\",hover:{max:5,min:-5},id:\"CMJdC36AI\",layer:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"352px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qp6a4y-container\",children:/*#__PURE__*/_jsx(ButtonsProductsButtonApplyDataAttributesWithMappedReactProps1gy9njo,{BKZRzEod0:\"var(--token-90bcb052-e0bd-4394-9b0b-8857307bbc04, rgb(14, 10, 27))\",f9C4xGWuD:\"var(--token-00e8397f-a2ab-4d76-9c28-77f8efb143bc, rgb(255, 255, 255))\",height:\"100%\",id:\"H85Mubsw_\",jDo9irJ97:true,jPdqKiphw:\"https://sso.teachable.com/secure/1102338/checkout/5577288/the-ultimate-ui-grids-layouts-masterclass\",KFkBaqV5U:\"Go to Checkout\",l7Ni60uGj:\"The Ultimate Grids & Layouts Masterclass\",layoutId:\"H85Mubsw_\",qysDuaiad:0,slzkUGqCY:false,style:{height:\"100%\",width:\"100%\"},TFE_mZArs:\"111.00\",variant:\"U1kH0CuPr\",width:\"100%\"})})})],layoutId:\"CMJdC36AI\",pressed:{max:6,min:-6},style:{width:\"100%\"},transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{width:`max(min(${componentViewport?.width||\"100vw\"} - 230px, 1008px) / 1.5, 1px)`},JzFPzPkCn:{height:709,width:`max(min(${componentViewport?.width||\"100vw\"} - 192px, 1008px) / 1.5, 1px)`},UqsXmKWpT:{height:605,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1008px)`},yv6tABt87:{height:657,width:`max(min(${componentViewport?.width||\"100vw\"} - 96px, 1008px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:741,width:`max(min(${componentViewport?.width||\"100vw\"} - 300px, 1008px) / 1.5, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:10,rotateY:10,scale:1.2,skewX:0,skewY:0,x:0,y:-50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ngxkuj-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(UIFramerSelection,{height:\"100%\",id:\"uNuzwC4yN\",layoutId:\"uNuzwC4yN\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n3zwa0\",\"data-framer-name\":\"Frame 1321314112\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 230px, 1008px) / 3, 1px) - 96px)`},JzFPzPkCn:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 192px, 1008px) / 3, 1px) - 96px)`},UqsXmKWpT:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1008px) - 48px)`},yv6tABt87:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 96px, 1008px) / 2, 1px) - 64px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 300px, 1008px) / 3, 1px) - 96px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dvzen3-container\",children:/*#__PURE__*/_jsx(ListItemPricingCardNew,{aloAOh2r1:\"rgb(191, 228, 255)\",gLi93Tys6:\"var(--token-00e8397f-a2ab-4d76-9c28-77f8efb143bc, rgb(255, 255, 255))\",gSe2_aF8n:\"rgba(86, 168, 227, 0.23)\",height:\"100%\",id:\"o6wI2Cw58\",layoutId:\"o6wI2Cw58\",style:{width:\"100%\"},width:\"100%\",x2V6263O9:\"40+ video lessons\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 230px, 1008px) / 3, 1px) - 96px)`},JzFPzPkCn:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 192px, 1008px) / 3, 1px) - 96px)`},UqsXmKWpT:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1008px) - 48px)`},yv6tABt87:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 96px, 1008px) / 2, 1px) - 64px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 300px, 1008px) / 3, 1px) - 96px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18w8xq1-container\",children:/*#__PURE__*/_jsx(ListItemPricingCardNew,{aloAOh2r1:\"rgb(191, 228, 255)\",gLi93Tys6:\"var(--token-00e8397f-a2ab-4d76-9c28-77f8efb143bc, rgb(255, 255, 255))\",gSe2_aF8n:\"rgba(86, 168, 227, 0.23)\",height:\"100%\",id:\"sBIBLUCHu\",layoutId:\"sBIBLUCHu\",style:{width:\"100%\"},width:\"100%\",x2V6263O9:\"7+ hours of video content\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 230px, 1008px) / 3, 1px) - 96px)`},JzFPzPkCn:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 192px, 1008px) / 3, 1px) - 96px)`},UqsXmKWpT:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1008px) - 48px)`},yv6tABt87:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 96px, 1008px) / 2, 1px) - 64px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 300px, 1008px) / 3, 1px) - 96px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3j82d9-container\",children:/*#__PURE__*/_jsx(ListItemPricingCardNew,{aloAOh2r1:\"rgb(191, 228, 255)\",gLi93Tys6:\"var(--token-00e8397f-a2ab-4d76-9c28-77f8efb143bc, rgb(255, 255, 255))\",gSe2_aF8n:\"rgba(86, 168, 227, 0.23)\",height:\"100%\",id:\"QMFw41MhH\",layoutId:\"QMFw41MhH\",style:{width:\"100%\"},width:\"100%\",x2V6263O9:\"Responsive design techniques\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 230px, 1008px) / 3, 1px) - 96px)`},JzFPzPkCn:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 192px, 1008px) / 3, 1px) - 96px)`},UqsXmKWpT:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1008px) - 48px)`},yv6tABt87:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 96px, 1008px) / 2, 1px) - 64px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 300px, 1008px) / 3, 1px) - 96px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-902yh0-container\",children:/*#__PURE__*/_jsx(ListItemPricingCardNew,{aloAOh2r1:\"rgb(191, 228, 255)\",gLi93Tys6:\"var(--token-00e8397f-a2ab-4d76-9c28-77f8efb143bc, rgb(255, 255, 255))\",gSe2_aF8n:\"rgba(86, 168, 227, 0.23)\",height:\"100%\",id:\"hF6knOwif\",layoutId:\"hF6knOwif\",style:{width:\"100%\"},width:\"100%\",x2V6263O9:\"Visual hierarchy and composition principles\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 230px, 1008px) / 3, 1px) - 96px)`},JzFPzPkCn:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 192px, 1008px) / 3, 1px) - 96px)`},UqsXmKWpT:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1008px) - 48px)`},yv6tABt87:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 96px, 1008px) / 2, 1px) - 64px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 300px, 1008px) / 3, 1px) - 96px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-k392px-container\",children:/*#__PURE__*/_jsx(ListItemPricingCardNew,{aloAOh2r1:\"rgb(191, 228, 255)\",gLi93Tys6:\"var(--token-00e8397f-a2ab-4d76-9c28-77f8efb143bc, rgb(255, 255, 255))\",gSe2_aF8n:\"rgba(86, 168, 227, 0.23)\",height:\"100%\",id:\"E_lSJlItZ\",layoutId:\"E_lSJlItZ\",style:{width:\"100%\"},width:\"100%\",x2V6263O9:\"Hands-on Figma demos\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 230px, 1008px) / 3, 1px) - 96px)`},JzFPzPkCn:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 192px, 1008px) / 3, 1px) - 96px)`},UqsXmKWpT:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1008px) - 48px)`},yv6tABt87:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 96px, 1008px) / 2, 1px) - 64px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 300px, 1008px) / 3, 1px) - 96px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-djt4f7-container\",children:/*#__PURE__*/_jsx(ListItemPricingCardNew,{aloAOh2r1:\"rgb(191, 228, 255)\",gLi93Tys6:\"var(--token-00e8397f-a2ab-4d76-9c28-77f8efb143bc, rgb(255, 255, 255))\",gSe2_aF8n:\"rgba(86, 168, 227, 0.23)\",height:\"100%\",id:\"ljeNzqCtH\",layoutId:\"ljeNzqCtH\",style:{width:\"100%\"},width:\"100%\",x2V6263O9:\"Practical assignments and quizzes\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 230px, 1008px) / 3, 1px) - 96px)`},JzFPzPkCn:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 192px, 1008px) / 3, 1px) - 96px)`},UqsXmKWpT:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1008px) - 48px)`},yv6tABt87:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 96px, 1008px) / 2, 1px) - 64px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 300px, 1008px) / 3, 1px) - 96px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15nly9f-container\",children:/*#__PURE__*/_jsx(ListItemPricingCardNew,{aloAOh2r1:\"rgb(191, 228, 255)\",gLi93Tys6:\"var(--token-00e8397f-a2ab-4d76-9c28-77f8efb143bc, rgb(255, 255, 255))\",gSe2_aF8n:\"rgba(86, 168, 227, 0.23)\",height:\"100%\",id:\"oHgPvsecq\",layoutId:\"oHgPvsecq\",style:{width:\"100%\"},width:\"100%\",x2V6263O9:\"In-depth guides, glossary, Figma files, and checklists\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 230px, 1008px) / 3, 1px) - 96px)`},JzFPzPkCn:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 192px, 1008px) / 3, 1px) - 96px)`},UqsXmKWpT:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1008px) - 48px)`},yv6tABt87:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 96px, 1008px) / 2, 1px) - 64px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 300px, 1008px) / 3, 1px) - 96px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nq2ipi-container\",children:/*#__PURE__*/_jsx(ListItemPricingCardNew,{aloAOh2r1:\"rgb(191, 228, 255)\",gLi93Tys6:\"var(--token-00e8397f-a2ab-4d76-9c28-77f8efb143bc, rgb(255, 255, 255))\",gSe2_aF8n:\"rgba(86, 168, 227, 0.23)\",height:\"100%\",id:\"D39PaC0sX\",layoutId:\"D39PaC0sX\",style:{width:\"100%\"},width:\"100%\",x2V6263O9:\"Lifetime access & certificate\"})})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jb9ivq-container\",id:elementId14,ref:ref19,children:/*#__PURE__*/_jsx(LEDMatrix,{animSpeed:70,gap:2,height:\"100%\",id:\"UvqZaGFBR\",layoutId:\"UvqZaGFBR\",primaryColor:\"rgba(148, 210, 255, 0.39)\",probability:12,radius:0,secondaryColor:\"rgba(25, 27, 28, 0)\",shapeType:\"Square\",size:200,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kd2zby\",\"data-framer-name\":\"7-day-money-back\",id:elementId15,ref:ref20,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u1s7km\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yrzmuy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-35kv8r\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-8cqlmb\",\"data-styles-preset\":\"f5krt1lEn\",style:{\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Risk-free purchase\"})}),className:\"framer-19eywyj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-16959a1\",\"data-styles-preset\":\"SgWJ3LhP0\",style:{\"--framer-text-color\":\"var(--token-4b8c49e9-929d-4638-b308-b86574102ec6, rgb(14, 10, 27))\"},children:\"Supercharge Design 7-day money back\\xa0guarantee\"})}),className:\"framer-15qsfh5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-xwll57\",\"data-styles-preset\":\"AulFOp9tt\",style:{\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"We offer a 7-day \",/*#__PURE__*/_jsx(\"strong\",{children:\"no-questions-asked\"}),\" guarantee for our video courses through Teachable, one of the most well-known educational platforms in the world.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-xwll57\",\"data-styles-preset\":\"AulFOp9tt\",style:{\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"We are confident you\u2019ll love our products and that they will help you \",/*#__PURE__*/_jsx(\"strong\",{children:\"reach your goals\"}),\", but we also know it\u2019s a lot easier to make a decision once you know there\u2019s \",/*#__PURE__*/_jsx(\"strong\",{children:\"no risk\"}),\" for you. \uD83E\uDD17\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xwll57\",\"data-styles-preset\":\"AulFOp9tt\",style:{\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Best case scenario \u2014 you become a Figma pro and supercharge your design career with us. Worst case scenario \u2014 we give your money back, shake hands, and part our ways hassle-free.\"})]}),className:\"framer-1j1mkr9\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:'Badge with the text \"7-day money back guarantee\"',fit:\"fit\",intrinsicHeight:792,intrinsicWidth:792,pixelHeight:792,pixelWidth:792,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 400px, 1px), 1304px) * 0.3836)`,src:\"https://framerusercontent.com/images/jN8Xftb9qiZqBqyVI2ffTtoTzrg.png\",srcSet:\"https://framerusercontent.com/images/jN8Xftb9qiZqBqyVI2ffTtoTzrg.png?scale-down-to=512 512w,https://framerusercontent.com/images/jN8Xftb9qiZqBqyVI2ffTtoTzrg.png 840w\"}},JzFPzPkCn:{background:{alt:'Badge with the text \"7-day money back guarantee\"',fit:\"fit\",intrinsicHeight:792,intrinsicWidth:792,pixelHeight:792,pixelWidth:792,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 400px, 1px), 1304px) * 0.3836)`,src:\"https://framerusercontent.com/images/jN8Xftb9qiZqBqyVI2ffTtoTzrg.png\",srcSet:\"https://framerusercontent.com/images/jN8Xftb9qiZqBqyVI2ffTtoTzrg.png?scale-down-to=512 512w,https://framerusercontent.com/images/jN8Xftb9qiZqBqyVI2ffTtoTzrg.png 840w\"}},UqsXmKWpT:{background:{alt:'Badge with the text \"7-day money back guarantee\"',fit:\"fit\",intrinsicHeight:792,intrinsicWidth:792,pixelHeight:792,pixelWidth:792,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1304px) * 0.7)`,src:\"https://framerusercontent.com/images/jN8Xftb9qiZqBqyVI2ffTtoTzrg.png\",srcSet:\"https://framerusercontent.com/images/jN8Xftb9qiZqBqyVI2ffTtoTzrg.png?scale-down-to=512 512w,https://framerusercontent.com/images/jN8Xftb9qiZqBqyVI2ffTtoTzrg.png 840w\"}},yv6tABt87:{background:{alt:'Badge with the text \"7-day money back guarantee\"',fit:\"fit\",intrinsicHeight:792,intrinsicWidth:792,pixelHeight:792,pixelWidth:792,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1304px) * 0.3836)`,src:\"https://framerusercontent.com/images/jN8Xftb9qiZqBqyVI2ffTtoTzrg.png\",srcSet:\"https://framerusercontent.com/images/jN8Xftb9qiZqBqyVI2ffTtoTzrg.png?scale-down-to=512 512w,https://framerusercontent.com/images/jN8Xftb9qiZqBqyVI2ffTtoTzrg.png 840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:'Badge with the text \"7-day money back guarantee\"',fit:\"fit\",intrinsicHeight:792,intrinsicWidth:792,pixelHeight:792,pixelWidth:792,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 616px, 1px), 1304px) * 0.3836)`,src:\"https://framerusercontent.com/images/jN8Xftb9qiZqBqyVI2ffTtoTzrg.png\",srcSet:\"https://framerusercontent.com/images/jN8Xftb9qiZqBqyVI2ffTtoTzrg.png?scale-down-to=512 512w,https://framerusercontent.com/images/jN8Xftb9qiZqBqyVI2ffTtoTzrg.png 840w\"},className:\"framer-u7n34z\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q9qa27\",\"data-framer-name\":\"Instructor 6\",id:elementId16,ref:ref8,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x5s2o6\",\"data-framer-name\":\"Frame 1321314983\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rpumas\",\"data-framer-name\":\"Andrija\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lvllb1\",\"data-framer-name\":\"Polaroid Btm\",style:{rotate:-1},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8deofd\",\"data-framer-name\":\"Frame 1321314942\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:\"Portrait photo of Andrija Prelec\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 320px) / 3.587 - 48px)`,src:\"https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png\",srcSet:\"https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png?scale-down-to=1024 910w,https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png 1280w\"}},JzFPzPkCn:{background:{alt:\"Portrait photo of Andrija Prelec\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 144px) * 0.3373 - 48px)`,src:\"https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png\",srcSet:\"https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png?scale-down-to=1024 910w,https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png 1280w\"}},UqsXmKWpT:{background:{alt:\"Portrait photo of Andrija Prelec\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 48px) * 0.7667 - 48px)`,src:\"https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png\",srcSet:\"https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png?scale-down-to=1024 910w,https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png 1280w\"}},yv6tABt87:{background:{alt:\"Portrait photo of Andrija Prelec\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 144px) * 0.3373 - 48px)`,src:\"https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png\",srcSet:\"https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png?scale-down-to=1024 910w,https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Portrait photo of Andrija Prelec\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"320px\",src:\"https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png\",srcSet:\"https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png?scale-down-to=1024 910w,https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png 1280w\"},className:\"framer-1la1wct\",\"data-framer-name\":\"Rectangle 1192\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Fkb3JhYmxlIFF1b3RlcyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Adorable Quotes Display Regular\", \"Adorable Quotes Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3afd0400-0481-4074-a67d-ced718e451ba, rgb(77, 38, 137))\"},children:\"Andrija\"})}),className:\"framer-1cu9c3a\",\"data-framer-name\":\"Andrija\",fonts:[\"CUSTOM;Adorable Quotes Display Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lc62go\",\"data-framer-name\":\"Polaroid Middle\",style:{rotate:-6},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x0qu3p\",\"data-framer-name\":\"Frame 1321314942\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:\"Portrait photo of Andrija Prelec\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 320px) / 3.587 - 48px)`,src:\"https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png\",srcSet:\"https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png?scale-down-to=1024 910w,https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png 1280w\"}},JzFPzPkCn:{background:{alt:\"Portrait photo of Andrija Prelec\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 144px) * 0.3373 - 48px)`,src:\"https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png\",srcSet:\"https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png?scale-down-to=1024 910w,https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png 1280w\"}},UqsXmKWpT:{background:{alt:\"Portrait photo of Andrija Prelec\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 48px) * 0.7667 - 48px)`,src:\"https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png\",srcSet:\"https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png?scale-down-to=1024 910w,https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png 1280w\"}},yv6tABt87:{background:{alt:\"Portrait photo of Andrija Prelec\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 144px) * 0.3373 - 48px)`,src:\"https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png\",srcSet:\"https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png?scale-down-to=1024 910w,https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Portrait photo of Andrija Prelec\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"320px\",src:\"https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png\",srcSet:\"https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png?scale-down-to=1024 910w,https://framerusercontent.com/images/2h6qKvi5U8OEXwH76agKdoR9D14.png 1280w\"},className:\"framer-13yq4fl\",\"data-framer-name\":\"Rectangle 1192\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Fkb3JhYmxlIFF1b3RlcyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Adorable Quotes Display Regular\", \"Adorable Quotes Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3afd0400-0481-4074-a67d-ced718e451ba, rgb(77, 38, 137))\"},children:\"Andrija\"})}),className:\"framer-i9ztg8\",\"data-framer-name\":\"Andrija\",fonts:[\"CUSTOM;Adorable Quotes Display Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15w0sra\",\"data-framer-name\":\"Polaroid Top\",style:{rotate:6},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wilqy5\",\"data-framer-name\":\"Frame 1321314942\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Portrait photo of Andrija Prelec, mentor of Figma Course\",fit:\"fill\",pixelHeight:1269,pixelWidth:1196,src:\"https://framerusercontent.com/images/o82gZyhgKfvHWerh1iua8R6YgxQ.jpg\"},className:\"framer-1a2tus8\",\"data-framer-name\":\"Rectangle 1192\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Fkb3JhYmxlIFF1b3RlcyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Adorable Quotes Display Regular\", \"Adorable Quotes Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4b8c49e9-929d-4638-b308-b86574102ec6, rgb(14, 10, 27))\"},children:\"Andrija\"})}),className:\"framer-1r8hrsn\",\"data-framer-name\":\"Andrija\",fonts:[\"CUSTOM;Adorable Quotes Display Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-131mp1a\",\"data-framer-name\":\"Frame 1321314982\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bmorc5\",\"data-framer-name\":\"Frame 1321314969\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-8cqlmb\",\"data-styles-preset\":\"f5krt1lEn\",style:{\"--framer-text-color\":\"rgb(133, 133, 133)\"},children:\"Meet your instructor\"})}),className:\"framer-1mrzdqx\",\"data-framer-name\":\"Meet your instructor\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithTextBalancer,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-h2b5h9\",\"data-styles-preset\":\"PfA3Wkpup\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(2594deg, rgb(51, 51, 51) 0%, rgb(102, 102, 102) 34.5063%, rgb(51, 51, 51) 99.4792%)\"},children:\"Learn from Andrija, master of product design\"})})}),className:\"framer-143dbt0\",\"data-framer-name\":\"Andrija, master of product design\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-xwll57\",\"data-styles-preset\":\"AulFOp9tt\",style:{\"--framer-text-color\":\"var(--token-4b8c49e9-929d-4638-b308-b86574102ec6, rgb(14, 10, 27))\"},children:[\"Benefit from the unparalleled expertise of The Ultimate UI Grids & Layouts Masterclass instructor with \",/*#__PURE__*/_jsx(\"strong\",{children:\"over 10 years\"}),\" of relevant design and teaching \",/*#__PURE__*/_jsx(\"strong\",{children:\"experience\"}),\".\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-xwll57\",\"data-styles-preset\":\"AulFOp9tt\",style:{\"--framer-text-color\":\"var(--token-4b8c49e9-929d-4638-b308-b86574102ec6, rgb(14, 10, 27))\"},children:[\"This course is your opportunity to learn from \",/*#__PURE__*/_jsx(\"strong\",{children:\"a seasoned professional\"}),\" who has played a pivotal role in transforming hundreds of ideas into tangible, successful products. The course goes beyond just basic UI grids & layouts skills, and gives you a deeper understanding of the transformative power of structure within UI/UX design.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xwll57\",\"data-styles-preset\":\"AulFOp9tt\",style:{\"--framer-text-color\":\"var(--token-4b8c49e9-929d-4638-b308-b86574102ec6, rgb(14, 10, 27))\"},children:\"Andrija has worked on 50+ complex digital products, and his work has improved the lives of millions of users worldwide. Currently, he works as a CEO and a product design lead at Sharc and Supercharge Design, and as a UX lecturer and team lead at Algebra, a rewarded educational institution and college in Croatia.\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-xwll57\",\"data-styles-preset\":\"AulFOp9tt\",style:{\"--framer-text-color\":\"var(--token-4b8c49e9-929d-4638-b308-b86574102ec6, rgb(14, 10, 27))\"},children:[\"Over the years, \",/*#__PURE__*/_jsx(\"strong\",{children:\"he mentored tens of thousands\"}),\" of budding designers, through different mediums like lectures, workshops, in-person boot camps, and online video courses.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xwll57\",\"data-styles-preset\":\"AulFOp9tt\",style:{\"--framer-text-color\":\"var(--token-4b8c49e9-929d-4638-b308-b86574102ec6, rgb(14, 10, 27))\"},children:\"Learn the secrets of UI grids and layouts and beyond \u2013 directly from a user experience and interface design master who doesn\u2019t just teach but inspires.\"})]}),className:\"framer-1jzywgm\",\"data-framer-name\":\"The majority of Figma users don\u2019t comprehend or utilize the full capacity of Figma. Because of the many functionalities Figma offers, there are many ways to achieve similar outcomes. But are all outcomes truly of equal quality, and how comparable is the time spent?\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j2w9wg\",\"data-framer-name\":\"Group 967\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{transformTemplate:undefined}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rsy1gx\",\"data-framer-name\":\"Frame 1321314941\",style:{rotate:4},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-130zi1w\",\"data-framer-name\":\"mentor-handwriting\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-e8m8ob\",\"data-styles-preset\":\"AZ3uZjZdT\",style:{\"--framer-text-color\":\"rgb(14, 10, 27)\"},children:[\"Enviable\",/*#__PURE__*/_jsx(\"br\",{}),\"experience\"]})}),className:\"framer-uhqsd0\",\"data-framer-name\":\"SEASONED\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-n7z2ju\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:88,intrinsicWidth:88,svg:'<svg width=\"88\" height=\"88\" viewBox=\"0 0 88 88\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M28.6534 62.9265C35.3184 58.86 39.4257 51.8321 41.9061 44.5924C45.0018 35.5575 47.427 24.3866 59.4219 25.041\" stroke=\"#0E0A1B\" stroke-width=\"2.5\" stroke-miterlimit=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M28.6525 62.9266C31.9347 62.2619 35.0932 61.2075 38.3396 60.4174L28.6525 62.9266ZM28.6525 62.9266C29.683 59.9334 30.3676 56.8436 30.9781 53.7408\" stroke=\"#0E0A1B\" stroke-width=\"4\" stroke-miterlimit=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-132e38t\",\"data-framer-name\":\"Frame 1321314942\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:\"Group of employees\",fit:\"fill\",sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.2325 - 48px) * 1.0093)`,src:\"https://framerusercontent.com/images/0ep0DiwVacchubo2cUtLbY7M.png\",srcSet:\"https://framerusercontent.com/images/0ep0DiwVacchubo2cUtLbY7M.png?scale-down-to=512 512w,https://framerusercontent.com/images/0ep0DiwVacchubo2cUtLbY7M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0ep0DiwVacchubo2cUtLbY7M.png 1711w\"}},JzFPzPkCn:{background:{alt:\"Group of employees\",fit:\"fill\",sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.2325 - 48px) * 1.0093)`,src:\"https://framerusercontent.com/images/0ep0DiwVacchubo2cUtLbY7M.png\",srcSet:\"https://framerusercontent.com/images/0ep0DiwVacchubo2cUtLbY7M.png?scale-down-to=512 512w,https://framerusercontent.com/images/0ep0DiwVacchubo2cUtLbY7M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0ep0DiwVacchubo2cUtLbY7M.png 1711w\"}},UqsXmKWpT:{background:{alt:\"Group of employees\",fit:\"fill\",sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.8964 - 48px) * 1.0093)`,src:\"https://framerusercontent.com/images/0ep0DiwVacchubo2cUtLbY7M.png\",srcSet:\"https://framerusercontent.com/images/0ep0DiwVacchubo2cUtLbY7M.png?scale-down-to=512 512w,https://framerusercontent.com/images/0ep0DiwVacchubo2cUtLbY7M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0ep0DiwVacchubo2cUtLbY7M.png 1711w\"}},yv6tABt87:{background:{alt:\"Group of employees\",fit:\"fill\",sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.2325 - 48px) * 1.0093)`,src:\"https://framerusercontent.com/images/0ep0DiwVacchubo2cUtLbY7M.png\",srcSet:\"https://framerusercontent.com/images/0ep0DiwVacchubo2cUtLbY7M.png?scale-down-to=512 512w,https://framerusercontent.com/images/0ep0DiwVacchubo2cUtLbY7M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0ep0DiwVacchubo2cUtLbY7M.png 1711w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Group of employees\",fit:\"fill\",sizes:\"324.1677px\",src:\"https://framerusercontent.com/images/0ep0DiwVacchubo2cUtLbY7M.png\",srcSet:\"https://framerusercontent.com/images/0ep0DiwVacchubo2cUtLbY7M.png?scale-down-to=512 512w,https://framerusercontent.com/images/0ep0DiwVacchubo2cUtLbY7M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0ep0DiwVacchubo2cUtLbY7M.png 1711w\"},className:\"framer-sg1l7v\",\"data-framer-name\":\"Rectangle 1165\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/pT5rvlPiil4ilVcoXowP79Q3iso.png\"},className:\"framer-1r1cid2\",\"data-framer-name\":\"image 11\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yq7ia6\",\"data-framer-name\":\"Group 227\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1syi01u\",\"data-framer-name\":\"Group 217\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kcbban\",\"data-framer-name\":\"Rectangle 1183\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PgPvfT9WqDONMRVLj62jrXUv4.png\"},className:\"framer-va2vv6\",\"data-framer-name\":\"Rectangle 1165\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17a8uht\",\"data-framer-name\":\"Group 219\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1buzcli\",\"data-framer-name\":\"Rectangle 1187\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JWgJfHcMZZjWbLWOgMKyIfKUPc.png\"},className:\"framer-1on621l\",\"data-framer-name\":\"Rectangle 1174\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-33qzxu\",\"data-framer-name\":\"Group 218\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11mi4pn\",\"data-framer-name\":\"Rectangle 1184\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sPRckYRi8rI3dYgWENFbbjhY.png\"},className:\"framer-y9jn0\",\"data-framer-name\":\"Rectangle 1168\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j09cyv\",\"data-framer-name\":\"Group 216\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dpdm5g\",\"data-framer-name\":\"Rectangle 1175\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/fv7LuRduxUGqMaP5VTR7IHHNCu0.png\"},className:\"framer-1jj06e0\",\"data-framer-name\":\"Rectangle 1163\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wmim6q\",\"data-framer-name\":\"Group 226\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v1zz0r\",\"data-framer-name\":\"Rectangle 1180\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/oQ49HlF0EQ7rHVzjZ4yrrkHtcQ.png\"},className:\"framer-13eoxfc\",\"data-framer-name\":\"Rectangle 1167\"})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-8147cafb-f81f-4852-ac97-960979254a99, rgb(35, 22, 61))\"},children:\"Andrija has worked at multiple award-winning product design agencies with ratings exceeding 4.9 on Clutch\"})})},JzFPzPkCn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-8147cafb-f81f-4852-ac97-960979254a99, rgb(35, 22, 61))\"},children:\"Andrija has worked at multiple award-winning product design agencies with ratings exceeding 4.9 on Clutch\"})})},UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-8147cafb-f81f-4852-ac97-960979254a99, rgb(35, 22, 61))\"},children:\"Andrija has worked at multiple award-winning product design agencies with ratings exceeding 4.9 on Clutch\"})})},yv6tABt87:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-8147cafb-f81f-4852-ac97-960979254a99, rgb(35, 22, 61))\"},children:\"Andrija has worked at multiple award-winning product design agencies with ratings exceeding 4.9 on Clutch\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-8147cafb-f81f-4852-ac97-960979254a99, rgb(35, 22, 61))\"},children:\"Andrija has worked at multiple award-winning product design agencies with ratings exceeding 4.9 on Clutch\"})}),className:\"framer-1qviuoi\",\"data-framer-name\":\"Worked at multiple product design agencies, his work improved the lives of 10M+ users worldwide.\",fonts:[\"CUSTOM;Biennale SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h0u5f6\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-5llme5\",\"data-framer-name\":\"Vector\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 31 49\"><path d=\"M 4.744 20.68 C 4.987 21.115 5.41 21.341 5.752 21.666 C 6.367 22.252 6.971 22.857 7.595 23.429 C 8.987 24.704 9.821 26.546 10.18 28.799 C 10.414 30.283 10.598 31.793 10.677 33.306 C 10.791 35.406 10.766 37.523 10.84 39.631 C 10.877 40.678 10.922 41.751 11.125 42.745 C 11.246 43.343 11.681 43.814 11.852 44.115 C 12.684 44.548 13.364 44.325 13.792 43.363 C 14.404 41.984 14.94 40.52 15.406 39.03 C 16.513 35.505 18.401 33.167 20.85 31.737 C 22.064 31.027 23.34 30.452 24.627 30.113 C 26.653 29.578 27.208 27.395 25.536 25.48 C 23.397 23.025 22.535 19.681 22.336 15.923 C 22.217 13.705 22.202 11.476 22.14 9.252 C 22.115 8.316 22.175 7.357 22.044 6.45 C 21.972 5.95 21.646 5.404 21.327 5.13 C 20.862 4.731 20.348 5.026 19.984 5.541 C 19.637 6.034 19.349 6.614 19.062 7.186 C 18.296 8.715 17.571 10.282 16.787 11.786 C 15.589 14.081 14.091 15.887 12.291 17.189 C 10.627 18.39 8.924 19.006 7.041 18.363 C 6.424 18.151 5.738 18.219 5.1 18.328 C 4.835 18.371 4.412 18.817 4.394 19.12 C 4.364 19.627 4.514 20.259 4.743 20.666 Z M 13.943 19.569 C 14.986 18.664 15.981 17.594 16.874 16.41 C 17.767 15.23 18.513 13.824 19.7 11.909 C 19.966 17.693 20.286 22.707 23.061 26.788 C 21.744 27.496 20.584 27.976 19.523 28.735 C 18.358 29.569 17.208 30.526 16.191 31.677 C 15.252 32.741 14.497 34.14 13.513 35.614 C 13.239 32.98 13.051 30.615 12.735 28.29 C 12.424 25.99 11.737 23.885 10.491 21.956 C 11.779 21.079 12.917 20.457 13.943 19.569 Z\" fill=\"rgb(115, 168, 255)\"></path></svg>',svgContentId:11167728609,withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{transformTemplate:undefined}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nuzeb0\",\"data-framer-name\":\"Frame 1321314941\",style:{rotate:-4},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z3h8e6\",\"data-framer-name\":\"mentor-handwriting\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-e8m8ob\",\"data-styles-preset\":\"AZ3uZjZdT\",style:{\"--framer-text-color\":\"rgb(14, 10, 27)\"},children:[\"Seasoned\",/*#__PURE__*/_jsx(\"br\",{}),\"lecturer\"]})}),className:\"framer-ujrj7c\",\"data-framer-name\":\"Lecturer\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-epem30\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:64,intrinsicWidth:65,svg:'<svg width=\"65\" height=\"64\" viewBox=\"0 0 65 64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_936_2691)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M33.0359 11.66C37.5713 15.4854 38.9867 27.4706 36.6693 42.1368C36.2868 44.5551 36.006 46.2134 35.9797 48.5979C35.9725 48.7495 36.5848 47.7957 37.337 46.4535C39.1178 43.2754 40.4457 41.9704 41.7925 42.0896C42.4428 42.1557 42.4131 42.4633 41.6598 43.5067C39.4929 46.4943 38.0582 49.9571 36.8655 55.1637C36.3943 57.2081 34.4266 59.1921 32.9903 54.0946C31.7754 49.7825 30.7033 47.2753 28.4552 43.6034C27.0024 41.22 27.714 39.5567 29.6745 40.7331C30.3543 41.14 31.9386 43.6359 33.2866 46.4144L33.9693 47.8345C34.8988 41.8709 34.9771 41.4998 35.4124 36.6729C36.4346 25.1976 35.2543 16.4993 31.4927 13.2372C23.9555 5.85801 26.7235 5.47975 33.0359 11.66Z\" fill=\"#0E0A1B\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_936_2691\">\\n<rect width=\"41.93\" height=\"49.3242\" fill=\"white\" transform=\"translate(0.335938 33.3877) rotate(-52.2365)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2omy0g\",\"data-framer-name\":\"Frame 1321314942\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:\"Andrija Prelec holding a talk at a conference\",fit:\"fill\",pixelHeight:798,pixelWidth:1134,sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.2325 - 48px) * 0.9969)`,src:\"https://framerusercontent.com/images/ySLEakNT1lT1HxXa35WEYld1tx4.jpg\",srcSet:\"https://framerusercontent.com/images/ySLEakNT1lT1HxXa35WEYld1tx4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ySLEakNT1lT1HxXa35WEYld1tx4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ySLEakNT1lT1HxXa35WEYld1tx4.jpg 1134w\"}},JzFPzPkCn:{background:{alt:\"Andrija Prelec holding a talk at a conference\",fit:\"fill\",pixelHeight:798,pixelWidth:1134,sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.2325 - 48px) * 0.9969)`,src:\"https://framerusercontent.com/images/ySLEakNT1lT1HxXa35WEYld1tx4.jpg\",srcSet:\"https://framerusercontent.com/images/ySLEakNT1lT1HxXa35WEYld1tx4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ySLEakNT1lT1HxXa35WEYld1tx4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ySLEakNT1lT1HxXa35WEYld1tx4.jpg 1134w\"}},UqsXmKWpT:{background:{alt:\"Andrija Prelec holding a talk at a conference\",fit:\"fill\",pixelHeight:798,pixelWidth:1134,sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.8964 - 48px) * 0.9969)`,src:\"https://framerusercontent.com/images/ySLEakNT1lT1HxXa35WEYld1tx4.jpg\",srcSet:\"https://framerusercontent.com/images/ySLEakNT1lT1HxXa35WEYld1tx4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ySLEakNT1lT1HxXa35WEYld1tx4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ySLEakNT1lT1HxXa35WEYld1tx4.jpg 1134w\"}},yv6tABt87:{background:{alt:\"Andrija Prelec holding a talk at a conference\",fit:\"fill\",pixelHeight:798,pixelWidth:1134,sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.2325 - 48px) * 0.9969)`,src:\"https://framerusercontent.com/images/ySLEakNT1lT1HxXa35WEYld1tx4.jpg\",srcSet:\"https://framerusercontent.com/images/ySLEakNT1lT1HxXa35WEYld1tx4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ySLEakNT1lT1HxXa35WEYld1tx4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ySLEakNT1lT1HxXa35WEYld1tx4.jpg 1134w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Andrija Prelec holding a talk at a conference\",fit:\"fill\",pixelHeight:798,pixelWidth:1134,sizes:\"320.1656px\",src:\"https://framerusercontent.com/images/ySLEakNT1lT1HxXa35WEYld1tx4.jpg\",srcSet:\"https://framerusercontent.com/images/ySLEakNT1lT1HxXa35WEYld1tx4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ySLEakNT1lT1HxXa35WEYld1tx4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ySLEakNT1lT1HxXa35WEYld1tx4.jpg 1134w\"},className:\"framer-suj9h\",\"data-framer-name\":\"Rectangle 1192\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/jwKnLscdmu6zhR16iJCVgpGc8.png\"},className:\"framer-mruf0s\",\"data-framer-name\":\"Rectangle 1165\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sLDdlqB62uNbJHdjLQeti9koMw.png\"},className:\"framer-11nzvav\",\"data-framer-name\":\"Rectangle 1164\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-8147cafb-f81f-4852-ac97-960979254a99, rgb(35, 22, 61))\"},children:\"Andrija shines as an educator, having taught numerous in-person boot camps and workshops and nurturing thousands of students enrolled in online courses\"})})},JzFPzPkCn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-8147cafb-f81f-4852-ac97-960979254a99, rgb(35, 22, 61))\"},children:\"Andrija shines as an educator, having taught numerous in-person boot camps and workshops and nurturing thousands of students enrolled in online courses\"})})},UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-8147cafb-f81f-4852-ac97-960979254a99, rgb(35, 22, 61))\"},children:\"Andrija shines as an educator, having taught numerous in-person boot camps and workshops and nurturing thousands of students enrolled in online courses\"})})},yv6tABt87:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-8147cafb-f81f-4852-ac97-960979254a99, rgb(35, 22, 61))\"},children:\"Andrija shines as an educator, having taught numerous in-person boot camps and workshops and nurturing thousands of students enrolled in online courses\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-8147cafb-f81f-4852-ac97-960979254a99, rgb(35, 22, 61))\"},children:\"Andrija shines as an educator, having taught numerous in-person boot camps and workshops and nurturing thousands of students enrolled in online courses\"})}),className:\"framer-l0aqo6\",\"data-framer-name\":\"He has experience in lecturing, hiring, mentoring, managing teams, building client relationships, and more.\",fonts:[\"CUSTOM;Biennale SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{transformTemplate:undefined}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17h1qkq\",\"data-framer-name\":\"Frame 1321314943\",style:{rotate:5},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fy9l8i\",\"data-framer-name\":\"mentor-handwriting\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-e8m8ob\",\"data-styles-preset\":\"AZ3uZjZdT\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(14, 10, 27)\"},children:[\"Inspiring\",/*#__PURE__*/_jsx(\"br\",{}),\"leader\"]})}),className:\"framer-19o7bcd\",\"data-framer-name\":\"Leader\",fonts:[\"Inter\"],style:{rotate:8},transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15pjumc\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"80\" viewBox=\"0 0 80 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.0117 54.7467C15.0223 58.3057 17.0087 62.6528 20.0254 66.1733C20.5371 66.7699 21.7179 69.086 22.5331 69.2898C23.5923 69.5548 24.9445 66.9754 25.2769 66.3824C26.9528 63.3937 29.8269 58.1544 31.2946 54.71\" stroke=\"#0E0A1B\" stroke-width=\"2.5\" stroke-miterlimit=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M38.4706 29.9295C37.5749 34.0054 42.9034 43.3845 47.4184 40.0013C51.9334 36.6172 46.1501 27.2679 38.4706 29.9295Z\" stroke=\"#0E0A1B\" stroke-width=\"2.5\" stroke-miterlimit=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M38.4692 29.9287C35.3081 31.0247 32.6614 32.9726 30.396 35.3954C21.7744 44.6205 22.6167 60.5552 23.1625 69.0832\" stroke=\"#0E0A1B\" stroke-width=\"2.5\" stroke-miterlimit=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M38.4688 29.9289C39.4125 25.6316 43.3231 22.4959 47.4166 20.8822C55.1399 17.8383 64.8889 19.181 72.035 22.7251\" stroke=\"#0E0A1B\" stroke-width=\"2.5\" stroke-miterlimit=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:\"Group of employees of Supercharge design standing\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.2327 - 48px)`,src:\"https://framerusercontent.com/images/Wqv72sLQFjnqyZ1bAx1LLn1qk.png\",srcSet:\"https://framerusercontent.com/images/Wqv72sLQFjnqyZ1bAx1LLn1qk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Wqv72sLQFjnqyZ1bAx1LLn1qk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wqv72sLQFjnqyZ1bAx1LLn1qk.png 1280w\"}},JzFPzPkCn:{background:{alt:\"Group of employees of Supercharge design standing\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.2327 - 48px)`,src:\"https://framerusercontent.com/images/Wqv72sLQFjnqyZ1bAx1LLn1qk.png\",srcSet:\"https://framerusercontent.com/images/Wqv72sLQFjnqyZ1bAx1LLn1qk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Wqv72sLQFjnqyZ1bAx1LLn1qk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wqv72sLQFjnqyZ1bAx1LLn1qk.png 1280w\"}},UqsXmKWpT:{background:{alt:\"Group of employees of Supercharge design standing\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8964 - 48px)`,src:\"https://framerusercontent.com/images/Wqv72sLQFjnqyZ1bAx1LLn1qk.png\",srcSet:\"https://framerusercontent.com/images/Wqv72sLQFjnqyZ1bAx1LLn1qk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Wqv72sLQFjnqyZ1bAx1LLn1qk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wqv72sLQFjnqyZ1bAx1LLn1qk.png 1280w\"}},yv6tABt87:{background:{alt:\"Group of employees of Supercharge design standing\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.2327 - 48px)`,src:\"https://framerusercontent.com/images/Wqv72sLQFjnqyZ1bAx1LLn1qk.png\",srcSet:\"https://framerusercontent.com/images/Wqv72sLQFjnqyZ1bAx1LLn1qk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Wqv72sLQFjnqyZ1bAx1LLn1qk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wqv72sLQFjnqyZ1bAx1LLn1qk.png 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Group of employees of Supercharge design standing\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"321.1661px\",src:\"https://framerusercontent.com/images/Wqv72sLQFjnqyZ1bAx1LLn1qk.png\",srcSet:\"https://framerusercontent.com/images/Wqv72sLQFjnqyZ1bAx1LLn1qk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Wqv72sLQFjnqyZ1bAx1LLn1qk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wqv72sLQFjnqyZ1bAx1LLn1qk.png 1280w\"},className:\"framer-uv2qq1\",\"data-framer-name\":\"Frame 1321314942\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qgvpza\",\"data-framer-name\":\"Shape\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:45,style:{rotate:-5},svg:'<svg width=\"45\" height=\"17\" viewBox=\"0 0 45 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_d_352_7483)\">\\n<path d=\"M24.1218 6.31303C25.1508 6.40306 25.8453 6.84348 26.2053 7.6343L26.2304 7.69138L26.5249 6.75286L29.5499 7.01752L27.1126 14.595L24.0876 14.3304L24.2315 13.8991C23.591 14.2869 22.8938 14.4555 22.1262 14.3884C21.9473 14.3727 21.776 14.347 21.6125 14.3112C20.7997 14.1334 20.1785 13.7072 19.7577 13.0332C19.2523 12.2237 19.143 11.2192 19.4437 10.0364C19.7456 8.83831 20.3286 7.89443 21.1927 7.20472C22.0568 6.51502 23.0382 6.21823 24.1218 6.31303ZM6.8016 2.30283L6.78522 2.3167C7.94405 2.41809 8.88598 2.7454 9.59461 3.31249C10.2818 3.8624 10.6813 4.60304 10.8057 5.54945L10.8166 5.63877L7.63043 6.00287C7.61584 5.64956 7.50431 5.36429 7.28079 5.14576C7.05727 4.92723 6.78063 4.79588 6.43448 4.7656C6.17864 4.74321 5.96262 4.78554 5.78644 4.89257C5.61026 4.99961 5.50535 5.15879 5.48807 5.35626C5.46773 5.58873 5.60494 5.76496 5.91053 5.91269L5.95325 5.93267L7.51308 6.65076C8.2567 6.99133 8.79936 7.37554 9.12334 7.83245C9.44733 8.28937 9.57743 8.88238 9.51497 9.5963C9.41928 10.69 8.92081 11.5341 8.01955 12.1287C7.11828 12.7233 5.99042 12.9614 4.62088 12.8416C3.37175 12.7323 2.34351 12.3515 1.5375 11.6841C0.753881 11.0351 0.339708 10.2594 0.296209 9.3429L0.293388 9.264L3.61236 8.94213C3.70747 9.76167 4.15318 10.2139 4.96587 10.285C5.26687 10.3114 5.52803 10.273 5.73298 10.1838C5.93793 10.0946 6.0579 9.93669 6.07783 9.70884C6.09962 9.45984 5.89132 9.26187 5.44302 9.07289L4.45561 8.66387C3.59159 8.31277 2.96395 7.8599 2.55232 7.3647C2.1407 6.86951 1.96678 6.25736 2.02924 5.54345C2.12625 4.43459 2.60968 3.58913 3.47951 3.00708C4.32583 2.44075 5.40219 2.19884 6.69349 2.29411L6.8016 2.30283ZM41.0566 7.79464C42.0649 7.88285 42.8824 8.24519 43.4941 8.88034C44.0878 9.4968 44.3546 10.2577 44.2945 11.163L44.2881 11.2457L41.3834 11.512C41.414 11.1626 41.3476 10.8813 41.1693 10.6667C40.9909 10.4521 40.7443 10.3234 40.4283 10.2958C40.0219 10.2602 39.6625 10.3818 39.3349 10.6593C39.0074 10.9368 38.7949 11.2855 38.6824 11.7042C38.585 12.1243 38.6283 12.4954 38.8138 12.8025C38.9908 13.0955 39.261 13.2713 39.6386 13.3176L39.6933 13.3233C40.0093 13.3509 40.2869 13.2987 40.545 13.1223C40.7858 12.9576 40.98 12.7223 41.1276 12.4161L41.1585 12.3494L43.8263 13.0573C43.4416 13.9879 42.8169 14.7139 41.9387 15.2187C41.0605 15.7235 40.1172 15.9318 39.0938 15.8422C37.8898 15.7369 36.9598 15.2729 36.3189 14.4515C35.6781 13.6302 35.4922 12.6343 35.7778 11.4501C36.0784 10.2672 36.7367 9.32995 37.7513 8.65341C38.7659 7.97687 39.8676 7.69062 41.0566 7.79464ZM17.0411 6.32839C17.8395 6.39824 18.6901 6.8408 19.0358 7.29357C19.3816 7.74635 19.2092 8.38108 19.0153 9.00758L18.9878 9.09344L17.4922 13.7075L14.4672 13.4428L15.7782 9.37895C15.8813 9.06655 15.8738 8.80569 15.7556 8.59638C15.6375 8.38706 15.4361 8.2623 15.1351 8.23597C14.819 8.20831 14.5225 8.30481 14.2591 8.54197C14.0121 8.76431 13.8243 9.07254 13.6833 9.46556L13.6557 9.5453L13.6406 9.54398L12.4342 13.2802L9.40917 13.0156L10.9785 8.16733L11.0619 8.17531C12.3606 8.28893 13.626 7.90977 14.6355 7.10667L14.7055 7.04995C15.3596 6.51006 16.1892 6.25386 17.0411 6.32839ZM36.1421 7.50243C36.2866 7.51507 36.4302 7.53743 36.573 7.56951L36.6799 7.5954L35.5581 10.7115L35.1066 10.672C34.3089 10.6022 33.6472 10.7127 33.1213 11.0034C32.6136 11.2841 32.225 11.8178 31.957 12.5908L31.9287 12.6746L31.2013 14.9221L28.1763 14.6575L30.6109 7.11034L33.6359 7.375L33.1595 8.83331C34.0338 7.85369 35.0284 7.405 36.1421 7.50243ZM24.2597 8.89651C23.8383 8.85964 23.4638 8.97994 23.1362 9.2574C22.8269 9.51945 22.6201 9.84509 22.5023 10.246L22.4824 10.3175L22.466 10.3314C22.3522 10.7653 22.3956 11.1365 22.581 11.4435C22.7665 11.7505 23.0692 11.9301 23.4906 11.967C23.897 12.0025 24.2715 11.8822 24.6141 11.6061C24.9567 11.3299 25.1842 10.9825 25.2967 10.5638C25.4105 10.1298 25.3671 9.7587 25.168 9.43515C24.9688 9.11161 24.666 8.93206 24.2597 8.89651ZM16.1438 1.81916L14.704 6.2532C14.704 6.2532 14.624 6.32325 14.5822 6.35776C14.0845 6.76841 13.6062 6.93472 12.8346 6.94079L12.6994 6.94028L12.5581 6.93672C12.5099 6.93503 12.4607 6.93286 12.4103 6.93021L12.2558 6.92084C12.1768 6.91546 12.0951 6.90904 12.0105 6.90164C11.8111 6.8842 11.6166 6.8407 11.4283 6.77721L12.1914 4.41978C12.4742 3.38259 12.9042 2.67404 13.4816 2.29415C14.059 1.91425 14.9464 1.75592 16.1438 1.81916Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_352_7483\" x=\"-2.5784\" y=\"0.848399\" width=\"49.7529\" height=\"19.8002\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1.91453\"/>\\n<feGaussianBlur stdDeviation=\"1.4359\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_352_7483\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_352_7483\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-8147cafb-f81f-4852-ac97-960979254a99, rgb(35, 22, 61))\"},children:\"Andrija leads a team of 30+ UX design lecturers of in-person boot camps besides spending years mentoring design teams as a CEO and lead designer\"})})},JzFPzPkCn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-8147cafb-f81f-4852-ac97-960979254a99, rgb(35, 22, 61))\"},children:\"Andrija leads a team of 30+ UX design lecturers of in-person boot camps besides spending years mentoring design teams as a CEO and lead designer\"})})},UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-8147cafb-f81f-4852-ac97-960979254a99, rgb(35, 22, 61))\"},children:\"Andrija leads a team of 30+ UX design lecturers of in-person boot camps besides spending years mentoring design teams as a CEO and lead designer\"})})},yv6tABt87:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-8147cafb-f81f-4852-ac97-960979254a99, rgb(35, 22, 61))\"},children:\"Andrija leads a team of 30+ UX design lecturers of in-person boot camps besides spending years mentoring design teams as a CEO and lead designer\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-8147cafb-f81f-4852-ac97-960979254a99, rgb(35, 22, 61))\"},children:\"Andrija leads a team of 30+ UX design lecturers of in-person boot camps besides spending years mentoring design teams as a CEO and lead designer\"})}),className:\"framer-1xav2nv\",\"data-framer-name\":\"Currently, he works as a CEO and a product design lead at Sharc.\",fonts:[\"CUSTOM;Biennale SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b8n19r\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-174yn15\",\"data-framer-name\":\"Vector\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 43 34\"><path d=\"M 36.061 22.428 C 36.929 23.216 36.632 24.895 36.465 26.357 C 36.298 27.82 36.127 29.437 35.781 30.675 C 35.5 31.731 34.76 33.615 33.62 33.143 C 32.569 32.709 33.315 31.247 33.539 30.489 C 34.216 28.055 34.416 24.346 36.062 22.427 Z M 26.77 14.36 C 26.474 17.035 24.289 18.706 22.618 20.408 C 21.685 21.381 18.939 25.16 17.062 24.26 C 14.874 23.201 18.009 21.088 18.858 20.348 C 20.663 18.855 22.269 17.338 23.936 15.794 C 24.721 15.082 25.577 14.03 26.77 14.362 Z M 19.706 4.216 C 19.678 5.728 18.086 5.777 16.922 6.086 C 14.673 6.633 12.613 7.244 9.963 7.591 C 8.631 7.788 5.453 8.148 5.944 6.229 C 7.852 5.032 10.289 4.978 12.624 4.622 C 14.879 4.345 17.367 3.571 19.706 4.216 Z\" fill=\"rgb(115, 168, 255)\"></path></svg>',svgContentId:12463280432,withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{transformTemplate:undefined}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8fqe09\",\"data-framer-name\":\"Frame 1321314944\",style:{rotate:-11},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bnzkiv\",\"data-framer-name\":\"mentor-handwriting\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-e8m8ob\",\"data-styles-preset\":\"AZ3uZjZdT\",style:{\"--framer-text-color\":\"rgb(14, 10, 27)\"},children:[\"Master\",/*#__PURE__*/_jsx(\"br\",{}),\"of design\"]})}),className:\"framer-18mqcp8\",\"data-framer-name\":\"master\",fonts:[\"Inter\"],style:{rotate:-12},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-js55j5\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:62,intrinsicWidth:57,svg:'<svg width=\"57\" height=\"62\" viewBox=\"0 0 57 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_936_2687)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M39.5994 13.8549C41.4572 19.4898 36.3814 30.439 26.7214 41.7151C25.1283 43.5743 24.02 44.8395 22.748 46.8565C22.6624 46.9819 23.6837 46.4904 25.0278 45.7415C28.2101 43.9681 30.0249 43.5526 31.1094 44.36C31.6286 44.7571 31.4421 45.0035 30.2538 45.4973C26.8425 46.9061 23.8058 49.1034 20.0613 52.9126C18.5886 54.4068 15.873 55.0653 17.3213 49.9712C18.5465 45.6619 18.9474 42.9648 18.9572 38.6593C18.9689 35.8681 20.4467 34.8245 21.4998 36.8539C21.8656 37.5567 21.9068 40.5126 21.5987 43.5855L21.4359 45.1527C25.3529 40.5609 25.6141 40.2858 28.5145 36.403C35.3991 27.1656 38.9525 19.1391 37.4585 14.3894C34.9066 4.15467 37.4623 5.28319 39.5994 13.8549Z\" fill=\"#0E0A1B\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_936_2687\">\\n<rect width=\"41.93\" height=\"49.3242\" fill=\"white\" transform=\"translate(0.363281 15.2227) rotate(-20.63)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mq4e4c\",\"data-framer-name\":\"Frame 1321314943\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{background:{alt:\"Andrija Prelec in Supercharge Design studio\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.2325 - 48px) * 0.9969)`,src:\"https://framerusercontent.com/images/fcUxXLnOVGGBmGWx1AHs8g5cdo.png\",srcSet:\"https://framerusercontent.com/images/fcUxXLnOVGGBmGWx1AHs8g5cdo.png?scale-down-to=512 512w,https://framerusercontent.com/images/fcUxXLnOVGGBmGWx1AHs8g5cdo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fcUxXLnOVGGBmGWx1AHs8g5cdo.png 1280w\"}},JzFPzPkCn:{background:{alt:\"Andrija Prelec in Supercharge Design studio\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.2325 - 48px) * 0.9969)`,src:\"https://framerusercontent.com/images/fcUxXLnOVGGBmGWx1AHs8g5cdo.png\",srcSet:\"https://framerusercontent.com/images/fcUxXLnOVGGBmGWx1AHs8g5cdo.png?scale-down-to=512 512w,https://framerusercontent.com/images/fcUxXLnOVGGBmGWx1AHs8g5cdo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fcUxXLnOVGGBmGWx1AHs8g5cdo.png 1280w\"}},UqsXmKWpT:{background:{alt:\"Andrija Prelec in Supercharge Design studio\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.8964 - 48px) * 0.9969)`,src:\"https://framerusercontent.com/images/fcUxXLnOVGGBmGWx1AHs8g5cdo.png\",srcSet:\"https://framerusercontent.com/images/fcUxXLnOVGGBmGWx1AHs8g5cdo.png?scale-down-to=512 512w,https://framerusercontent.com/images/fcUxXLnOVGGBmGWx1AHs8g5cdo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fcUxXLnOVGGBmGWx1AHs8g5cdo.png 1280w\"}},yv6tABt87:{background:{alt:\"Andrija Prelec in Supercharge Design studio\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.2325 - 48px) * 0.9969)`,src:\"https://framerusercontent.com/images/fcUxXLnOVGGBmGWx1AHs8g5cdo.png\",srcSet:\"https://framerusercontent.com/images/fcUxXLnOVGGBmGWx1AHs8g5cdo.png?scale-down-to=512 512w,https://framerusercontent.com/images/fcUxXLnOVGGBmGWx1AHs8g5cdo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fcUxXLnOVGGBmGWx1AHs8g5cdo.png 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Andrija Prelec in Supercharge Design studio\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"320.1656px\",src:\"https://framerusercontent.com/images/fcUxXLnOVGGBmGWx1AHs8g5cdo.png\",srcSet:\"https://framerusercontent.com/images/fcUxXLnOVGGBmGWx1AHs8g5cdo.png?scale-down-to=512 512w,https://framerusercontent.com/images/fcUxXLnOVGGBmGWx1AHs8g5cdo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fcUxXLnOVGGBmGWx1AHs8g5cdo.png 1280w\"},className:\"framer-ukli9q\",\"data-framer-name\":\"Rectangle 1192\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/XaD8F5cOvBd4MiPOH7iokMGVZ0.png\"},className:\"framer-1uwnbmc\",\"data-framer-name\":\"image 12\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-8147cafb-f81f-4852-ac97-960979254a99, rgb(35, 22, 61))\"},children:\"He is one of the top 3% of freelance UX/UI and product designers in the world, according to Toptal\"})})},JzFPzPkCn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-8147cafb-f81f-4852-ac97-960979254a99, rgb(35, 22, 61))\"},children:\"He is one of the top 3% of freelance UX/UI and product designers in the world, according to Toptal\"})})},UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-8147cafb-f81f-4852-ac97-960979254a99, rgb(35, 22, 61))\"},children:\"He is one of the top 3% of freelance UX/UI and product designers in the world, according to Toptal\"})})},yv6tABt87:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-8147cafb-f81f-4852-ac97-960979254a99, rgb(35, 22, 61))\"},children:\"He is one of the top 3% of freelance UX/UI and product designers in the world, according to Toptal\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JpZW5uYWxlIFNlbWlCb2xk\",\"--framer-font-family\":'\"Biennale SemiBold\", \"Biennale SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-8147cafb-f81f-4852-ac97-960979254a99, rgb(35, 22, 61))\"},children:\"He is one of the top 3% of freelance UX/UI and product designers in the world, according to Toptal\"})}),className:\"framer-1swldum\",\"data-framer-name\":\"He is one of the top 3% of freelance UX/UI and product designers worldwide, according to Toptal.\",fonts:[\"CUSTOM;Biennale SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1poxyjx\",\"data-framer-name\":\"FAQ 1\",id:elementId17,ref:ref9,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y3cogo\",\"data-framer-name\":\"Frame 1321314969\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UqsXmKWpT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-8cqlmb\",\"data-styles-preset\":\"f5krt1lEn\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(121, 157, 181)\"},children:\"Frequently asked questions\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-8cqlmb\",\"data-styles-preset\":\"f5krt1lEn\",style:{\"--framer-text-color\":\"rgb(121, 157, 181)\"},children:\"Frequently asked questions\"})}),className:\"framer-1dekk87\",\"data-framer-name\":\"Frequently asked questions\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-16959a1\",\"data-styles-preset\":\"SgWJ3LhP0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(10, 31, 46)\"},children:\"Got Questions? We\u2019ve Got Answers\"})}),className:\"framer-19p193c\",\"data-framer-name\":\"You asked, we answered!\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t6d3qh\",\"data-framer-name\":\"faq-list\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 480px)`},JzFPzPkCn:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 96px)`},UqsXmKWpT:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px)`},yv6tABt87:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 96px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 880px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rnll5b-container\",children:/*#__PURE__*/_jsx(FaqItem,{buJSGsBet:\"What is The Ultimate UI Grids & Layouts Masterclass?\",FcTjO7zkd:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"The Ultimate UI Grids & Layouts Masterclass is a comprehensive, \",/*#__PURE__*/_jsx(\"strong\",{children:\"self-paced video course\"}),\" designed to teach you everything you need to know about creating effective and visually appealing UI grids and layouts. The course includes \",/*#__PURE__*/_jsx(\"strong\",{children:\"in-depth tutorials, practical exercises, and cheat sheets\"}),\" to help you master these essential design skills.\"]})}),height:\"100%\",id:\"ZfUcCaK9G\",layoutId:\"ZfUcCaK9G\",style:{width:\"100%\"},variant:\"TE8PqKFnx\",width:\"100%\",ZfPEexcCo:0})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 480px)`},JzFPzPkCn:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 96px)`},UqsXmKWpT:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px)`},yv6tABt87:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 96px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 880px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i2tame-container\",children:/*#__PURE__*/_jsx(FaqItem,{buJSGsBet:\"Who is this course for?\",FcTjO7zkd:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"This course is perfect for UI/UX designers, product designers, web designers, and anyone looking to improve their understanding of grid systems and layout design for the context of digital interfaces. \",/*#__PURE__*/_jsx(\"strong\",{children:\"Whether you're a beginner or an experienced designer\"}),\", you'll find \",/*#__PURE__*/_jsx(\"strong\",{children:\"valuable insights and techniques\"}),\" in this masterclass.\"]})}),height:\"100%\",id:\"hviyht1f2\",layoutId:\"hviyht1f2\",style:{width:\"100%\"},variant:\"TE8PqKFnx\",width:\"100%\",ZfPEexcCo:0})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 480px)`},JzFPzPkCn:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 96px)`},UqsXmKWpT:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px)`},yv6tABt87:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 96px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 880px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vb8e93-container\",children:/*#__PURE__*/_jsx(FaqItem,{buJSGsBet:\"Do I need any special software for this course?\",FcTjO7zkd:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"While the course demonstrates grid and layout techniques using a popular design tool Figma, you can follow along with any design software that supports grid systems. The principles and techniques taught are \",/*#__PURE__*/_jsx(\"strong\",{children:\"applicable across various tools.\"})]})}),height:\"100%\",id:\"k4O_gi1Vt\",layoutId:\"k4O_gi1Vt\",style:{width:\"100%\"},variant:\"TE8PqKFnx\",width:\"100%\",ZfPEexcCo:0})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 480px)`},JzFPzPkCn:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 96px)`},UqsXmKWpT:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px)`},yv6tABt87:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 96px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 880px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s201qx-container\",children:/*#__PURE__*/_jsx(FaqItem,{buJSGsBet:\"What if I have questions or need help?\",FcTjO7zkd:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"You'll have access to our private design community where you can ask questions, share your work, and get feedback from fellow students and the instructor.\"})}),height:\"100%\",id:\"TpGKhOtqU\",layoutId:\"TpGKhOtqU\",style:{width:\"100%\"},variant:\"TE8PqKFnx\",width:\"100%\",ZfPEexcCo:0})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 480px)`},JzFPzPkCn:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 96px)`},UqsXmKWpT:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px)`},yv6tABt87:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 96px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 880px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10bggf-container\",children:/*#__PURE__*/_jsx(FaqItem,{buJSGsBet:\"How long do I have access to the course?\",FcTjO7zkd:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Once you enroll, you have \",/*#__PURE__*/_jsx(\"strong\",{children:\"lifetime access\"}),\" to the course materials, including any \",/*#__PURE__*/_jsx(\"strong\",{children:\"future updates.\"}),\" This allows you to learn at your own pace and revisit the content whenever you need while also staying up to date with any future advancements in the field.\"]})}),height:\"100%\",id:\"woSyoIxBK\",layoutId:\"woSyoIxBK\",style:{width:\"100%\"},variant:\"TE8PqKFnx\",width:\"100%\",ZfPEexcCo:0})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 480px)`},JzFPzPkCn:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 96px)`},UqsXmKWpT:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px)`},yv6tABt87:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 96px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 880px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-sb1tr1-container\",children:/*#__PURE__*/_jsx(FaqItem,{buJSGsBet:\"Is there a money-back guarantee?\",FcTjO7zkd:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Yes, we offer a 7-day money-back guarantee. If you're not satisfied with the course for any reason, you can request a full refund within 7 days of purchase.\"})}),height:\"100%\",id:\"Ho_757LGF\",layoutId:\"Ho_757LGF\",style:{width:\"100%\"},variant:\"TE8PqKFnx\",width:\"100%\",ZfPEexcCo:0})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 480px)`},JzFPzPkCn:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 96px)`},UqsXmKWpT:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px)`},yv6tABt87:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 96px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 880px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uc6s86-container\",children:/*#__PURE__*/_jsx(FaqItem,{buJSGsBet:\"Can I get my company to pay for this fantastic learning resource?\",FcTjO7zkd:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Yes! There are a ton of benefits for employers to invest in the education of their employees, so feel free to reach out to your employer and ask them to use a bit of their education budget on this bundle for you (and other teammates).\"}),/*#__PURE__*/_jsx(\"p\",{children:\"It\u2019s a very common request, and we love helping teams design better! In case your employer enrolls 3 or more students, they also get access to discounted rates per seat!\"}),/*#__PURE__*/_jsxs(\"p\",{children:[\"Contact us \",/*#__PURE__*/_jsx(Link,{href:\"mailto:hello@supercharge.design\",nodeId:\"uVX_M_KPp\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"here\"})})}),\".\"]})]}),height:\"100%\",id:\"uVX_M_KPp\",layoutId:\"uVX_M_KPp\",style:{width:\"100%\"},variant:\"TE8PqKFnx\",width:\"100%\",ZfPEexcCo:0})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 480px)`},JzFPzPkCn:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 96px)`},UqsXmKWpT:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px)`},yv6tABt87:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 96px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 880px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yrrakb-container\",children:/*#__PURE__*/_jsx(FaqItem,{buJSGsBet:\"I\u2019m not a native English speaker \u2013 does this course have captions?\",FcTjO7zkd:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Yes! All the videos have English captions you can turn on and off easily.\"})}),height:\"100%\",id:\"I2yt9Vllr\",layoutId:\"I2yt9Vllr\",style:{width:\"100%\"},variant:\"TE8PqKFnx\",width:\"100%\",ZfPEexcCo:0})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DkbOqTVHM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 480px)`},JzFPzPkCn:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 96px)`},UqsXmKWpT:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 48px)`},yv6tABt87:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 96px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 880px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bwbyn9-container\",children:/*#__PURE__*/_jsx(FaqItem,{buJSGsBet:\"Who is Supercharge Design?\",FcTjO7zkd:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(Link,{href:\"https://supercharge.design/learn\",nodeId:\"iNbngIf1c\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"Supercharge Design\"})}),\" is a team of \",/*#__PURE__*/_jsx(\"strong\",{children:\"seasoned professionals\"}),\" with a deep-rooted passion for UX/UI design and knowledge sharing. Frustrated by scattered, superficial, and unreliable resources, we decided to \",/*#__PURE__*/_jsx(\"strong\",{children:\"redefine learning in design\"}),\" and offer better, more reliable options with our courses, products, and freebies.\"]}),/*#__PURE__*/_jsxs(\"p\",{children:[\"Our main instructor, \",/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/andrijaprelec/\",nodeId:\"iNbngIf1c\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"Andrija Prelec\"})}),\", has over \",/*#__PURE__*/_jsx(\"strong\",{children:\"10 years of rich and relevant experience\"}),\" in design and education. He\u2019s a CEO, a product design lead, and a UX lecturer and mentor.\"]}),/*#__PURE__*/_jsxs(\"p\",{children:[\"We\u2019re not just experienced in building successful, user-centric digital product designs but also in effectively teaching design and imparting this knowledge. We have \",/*#__PURE__*/_jsx(\"strong\",{children:\"successfully mentored thousands\"}),\" of aspiring designers and our students consistently praise the real-world relevance and practicality of our courses.\"]}),/*#__PURE__*/_jsx(\"p\",{children:\"Our courses and products blend learning with real-world application and design expertise. Unlock the secrets of the design world, learning directly from a master who doesn\u2019t just teach but inspires. Become a part of a community that values efficient, empathetic, and impactful learning experience!\"})]}),height:\"100%\",id:\"iNbngIf1c\",layoutId:\"iNbngIf1c\",style:{width:\"100%\"},variant:\"TE8PqKFnx\",width:\"100%\",ZfPEexcCo:0})})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-3bh3j6-container\",id:elementId18,ref:ref10,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JzFPzPkCn:{variant:\"O4ifwvKZ1\"},UqsXmKWpT:{variant:\"O4ifwvKZ1\"},yv6tABt87:{variant:\"O4ifwvKZ1\"}},children:/*#__PURE__*/_jsx(PageSectionsFooter,{height:\"100%\",id:\"GDl5a1Uek\",kjYkLM3ov:\"rgb(17, 9, 31)\",layoutId:\"GDl5a1Uek\",style:{width:\"100%\"},variant:\"r6vEPWIG2\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9YWKc.framer-jxbss8, .framer-9YWKc .framer-jxbss8 { display: block; }\",\".framer-9YWKc.framer-9u1kxi { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1920px; }\",\".framer-9YWKc .framer-1e9bz63 { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(5, 14, 20, 0.88) 0%, rgba(5, 15, 23, 0) 91.7282516891892%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 50%; overflow: visible; padding: 32px 148px 64px 148px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-9YWKc .framer-ld2z7t-container { flex: none; height: 24px; position: relative; width: 188px; }\",\".framer-9YWKc .framer-1d6islv { --border-bottom-width: 1px; --border-color: rgba(135, 94, 61, 0.12); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(26px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(26px); background-color: rgba(22, 63, 135, 0.08); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 10; }\",\".framer-9YWKc .framer-12bmxpt-container, .framer-9YWKc .framer-mmnufk-container, .framer-9YWKc .framer-18ngob0-container, .framer-9YWKc .framer-xosyrk-container, .framer-9YWKc .framer-1rm8pyw-container, .framer-9YWKc .framer-1kvtol9-container, .framer-9YWKc .framer-1oxflye-container { flex: none; height: 48px; position: relative; width: auto; }\",\".framer-9YWKc .framer-3t265v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 128px; height: min-content; justify-content: center; overflow: hidden; padding: 168px 150px 168px 150px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-typ88h { background: linear-gradient(270deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 70%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\".framer-9YWKc .framer-1vqqb3l { bottom: 0px; flex: none; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 70%; z-index: 1; }\",\".framer-9YWKc .framer-1cbr9kh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; max-width: 1560px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-1u2eksi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 5; }\",\".framer-9YWKc .framer-1w8off4, .framer-9YWKc .framer-1rugsr6, .framer-9YWKc .framer-1di0a7z, .framer-9YWKc .framer-qv3hsu, .framer-9YWKc .framer-1x75r9n, .framer-9YWKc .framer-1dekk87 { --framer-paragraph-spacing: 12px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-9YWKc .framer-kov0rs { flex: none; height: 16px; position: relative; width: 92px; }\",\".framer-9YWKc .framer-w1i94m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 50%; z-index: 5; }\",\".framer-9YWKc .framer-1jdl56i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-1edl6mu { 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; position: relative; width: 100%; }\",\".framer-9YWKc .framer-16rp7sv, .framer-9YWKc .framer-159m2f9, .framer-9YWKc .framer-z9c1dp, .framer-9YWKc .framer-ae5uox, .framer-9YWKc .framer-1mctoch, .framer-9YWKc .framer-fudwki, .framer-9YWKc .framer-xtwf4y { --framer-paragraph-spacing: 12px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9YWKc .framer-wrklcd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-1mebeqx, .framer-9YWKc .framer-1bc6pkm, .framer-9YWKc .framer-atu08g, .framer-9YWKc .framer-3mjtn6, .framer-9YWKc .framer-15cv0x1, .framer-9YWKc .framer-1rshmaj, .framer-9YWKc .framer-255t6a { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9YWKc .framer-yhl75i { --framer-paragraph-spacing: 16px; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-9YWKc .framer-5a4bri { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9YWKc .framer-m0egsk-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-9YWKc .framer-zcdq7n { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 24px 48px 24px 48px; position: relative; text-decoration: none; width: min-content; }\",\".framer-9YWKc .framer-9ofsxa-container { flex: none; height: 100%; left: 0px; pointer-events: none; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-9YWKc .framer-1l0nor2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; min-height: 28px; min-width: 121px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9YWKc .framer-9k9p39 { align-content: center; align-items: center; background: linear-gradient(180deg, #f2fafa 0%, rgba(255, 255, 255, 1) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 128px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-ojwki9 { 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: visible; padding: 0px; position: relative; width: 784px; }\",\".framer-9YWKc .framer-1arzmwm { --framer-paragraph-spacing: 12px; flex: none; height: auto; opacity: 0.5; position: relative; white-space: pre-wrap; width: 784px; word-break: break-word; word-wrap: break-word; }\",\".framer-9YWKc .framer-b8z5w9 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 784px; word-break: break-word; word-wrap: break-word; }\",\".framer-9YWKc .framer-o06j4k { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 784px; word-break: break-word; word-wrap: break-word; }\",\".framer-9YWKc .framer-1rzfnv1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 128px 0px 128px 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-5li97t { -webkit-user-select: none; background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.75) 50.49999952316284%, rgba(255, 255, 255, 1) 100%); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; pointer-events: none; position: absolute; top: calc(50.00000000000002% - 100% / 2); user-select: none; width: 100%; z-index: 0; }\",\".framer-9YWKc .framer-1m2bz3a { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 2; }\",\".framer-9YWKc .framer-1ptb0w8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 208px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-9YWKc .framer-hzyl8v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 384px; }\",\".framer-9YWKc .framer-11kendy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-1qxeva4, .framer-9YWKc .framer-i3mcvt, .framer-9YWKc .framer-wq2gj, .framer-9YWKc .framer-as1mvi, .framer-9YWKc .framer-jf0a8w, .framer-9YWKc .framer-19b0vel, .framer-9YWKc .framer-ne3496, .framer-9YWKc .framer-eaeumt, .framer-9YWKc .framer-up1uo, .framer-9YWKc .framer-iloc86, .framer-9YWKc .framer-v1c82u, .framer-9YWKc .framer-1kkj4w, .framer-9YWKc .framer-n0w4bc, .framer-9YWKc .framer-q1j1aq, .framer-9YWKc .framer-gxxy0k { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-9YWKc .framer-1ez20cb, .framer-9YWKc .framer-tfptji, .framer-9YWKc .framer-r52eva, .framer-9YWKc .framer-1bkj8th, .framer-9YWKc .framer-1opwcvo, .framer-9YWKc .framer-1n4c7ao { --border-bottom-width: 1px; --border-color: #c8c8c8; --border-left-width: 1px; --border-right-width: 1px; --border-style: dashed; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; box-shadow: 6px 4px 16px 0px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 24px 40px 24px 40px; position: relative; width: min-content; }\",\".framer-9YWKc .framer-14tclty { flex: none; height: 97px; left: calc(35.20599250936332% - 110px / 2); position: absolute; top: calc(57.89473684210529% - 97px / 2); width: 110px; z-index: 1; }\",\".framer-9YWKc .framer-1p2pdfc, .framer-9YWKc .framer-7p2tbz, .framer-9YWKc .framer-4sy25, .framer-9YWKc .framer-xuc3q9, .framer-9YWKc .framer-mavjx4, .framer-9YWKc .framer-ozff2z, .framer-9YWKc .framer-10nbgua, .framer-9YWKc .framer-12ae0kc, .framer-9YWKc .framer-albuym, .framer-9YWKc .framer-11irbcn, .framer-9YWKc .framer-25z39e, .framer-9YWKc .framer-1m63ny1 { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-9YWKc .framer-7s2qtm { flex: none; height: 97px; left: calc(29.433962264150964% - 110px / 2); position: absolute; top: calc(57.89473684210529% - 97px / 2); width: 110px; z-index: 1; }\",\".framer-9YWKc .framer-4639cq { flex: none; height: 50px; left: calc(34.701492537313456% - 106px / 2); position: absolute; top: calc(50.00000000000002% - 50px / 2); width: 106px; z-index: 1; }\",\".framer-9YWKc .framer-hpxfm2 { 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; overflow: visible; padding: 96px 0px 0px 0px; position: relative; width: 384px; }\",\".framer-9YWKc .framer-1mq0wo9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-1aj65qb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-wym61r, .framer-9YWKc .framer-1mqyl46, .framer-9YWKc .framer-wic3wt, .framer-9YWKc .framer-t3zlux, .framer-9YWKc .framer-19pyxul, .framer-9YWKc .framer-4rkzq4 { --border-bottom-width: 1px; --border-color: #ececec; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 20px 32px 20px 32px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-490rfe { flex: none; height: 53px; left: calc(58.59375000000002% - 129px / 2); position: absolute; top: calc(50.00000000000002% - 53px / 2); width: 129px; z-index: 1; }\",\".framer-9YWKc .framer-m9y0q5 { flex: none; height: 58px; left: calc(41.92708333333336% - 125px / 2); position: absolute; top: calc(50.00000000000002% - 58px / 2); width: 125px; z-index: 1; }\",\".framer-9YWKc .framer-1q0t8zh { flex: none; height: 58px; left: calc(36.71875000000002% - 146px / 2); position: absolute; top: calc(50.00000000000002% - 58px / 2); width: 146px; z-index: 1; }\",\".framer-9YWKc .framer-bzeqdo { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 96px 0px 64px 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-18i32xe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1366px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-quzeo9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-9YWKc .framer-1r3ykbx { border-bottom-left-radius: 96px; border-bottom-right-radius: 96px; border-top-left-radius: 96px; border-top-right-radius: 96px; flex: none; height: 96px; position: relative; width: 96px; }\",\".framer-9YWKc .framer-eosedy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9YWKc .framer-d4c190, .framer-9YWKc .framer-1xj68oo, .framer-9YWKc .framer-sd14vc, .framer-9YWKc .framer-1cu9c3a, .framer-9YWKc .framer-i9ztg8, .framer-9YWKc .framer-1r8hrsn, .framer-9YWKc .framer-19p193c { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-9YWKc .framer-1hrs6nn { --framer-paragraph-spacing: 8px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-9YWKc .framer-1m2atb1 { align-content: center; align-items: center; background: linear-gradient(101deg, #f7f7f7 0%, rgba(247, 247, 247, 0) 31.15856677663652%); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 3 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 32px 48px 32px 48px; position: relative; width: 1px; }\",\".framer-9YWKc .framer-1web6zy { flex: none; height: 36px; left: -16px; overflow: hidden; position: absolute; top: 42px; width: 18px; z-index: 1; }\",\".framer-9YWKc .framer-18n3m71 { flex: none; height: 36px; left: calc(50.00000000000002% - 18px / 2); position: absolute; top: calc(50.00000000000002% - 36px / 2); width: 18px; }\",\".framer-9YWKc .framer-1ue5xau { --framer-paragraph-spacing: 16px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-9YWKc .framer-1sh8iwr { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 96px 0px 64px 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-1j7xrod { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1920px; overflow: visible; padding: 0px 160px 0px 160px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-fn7n3l-container { flex: none; height: 76px; position: relative; width: 263px; }\",\".framer-9YWKc .framer-ru49z6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1920px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-ii3sgf-container, .framer-9YWKc .framer-w52ie-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-9YWKc .framer-1c99d9x-container, .framer-9YWKc .framer-43pacq-container, .framer-9YWKc .framer-1lnrt7i-container, .framer-9YWKc .framer-rjv140-container, .framer-9YWKc .framer-nlrdgk-container, .framer-9YWKc .framer-1iun77g-container, .framer-9YWKc .framer-bjb3ri-container { height: auto; position: relative; width: 340px; }\",\".framer-9YWKc .framer-1rbdv5s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 128px; height: min-content; justify-content: center; overflow: visible; padding: 144px 160px 144px 160px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-crhikp { align-content: flex-start; align-items: flex-start; background-color: var(--token-00e8397f-a2ab-4d76-9c28-77f8efb143bc, #ffffff); box-shadow: 0px 1.7467887353082188px 7.336512688294519px -0.625px rgba(227, 238, 255, 0.39), 0px 4.1401977423229255px 17.388830517756286px -1.25px rgba(227, 238, 255, 0.38408), 0px 7.5521486344863655px 31.719024264842734px -1.875px rgba(227, 238, 255, 0.37095), 0px 12.555431944143493px 52.73281416540267px -2.5px rgba(227, 238, 255, 0.35171), 0px 20.27599883083487px 85.15919508950645px -3.125px rgba(227, 238, 255, 0.32202), 0px 33.1897983117192px 139.39715290922064px -3.75px rgba(227, 238, 255, 0.27235), 0px 57.15059143390274px 240.03248402239151px -4.375px rgba(227, 238, 255, 0.18019), 0px 104px 436.8px -5px rgba(227, 238, 255, 0); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: visible; padding: 56px 64px 48px 64px; position: relative; width: 1px; z-index: 2; }\",\".framer-9YWKc .framer-3sfza1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-uzsyq0, .framer-9YWKc .framer-1g5ub7x, .framer-9YWKc .framer-1vcdia6, .framer-9YWKc .framer-19bjpyo, .framer-9YWKc .framer-xs4l0d, .framer-9YWKc .framer-y7fml5, .framer-9YWKc .framer-1mrzdqx, .framer-9YWKc .framer-143dbt0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9YWKc .framer-1qqwpe0, .framer-9YWKc .framer-1yionl3, .framer-9YWKc .framer-tgavw3, .framer-9YWKc .framer-1wxakhc, .framer-9YWKc .framer-tbw9jg, .framer-9YWKc .framer-1r8t4f8, .framer-9YWKc .framer-bqnt0p, .framer-9YWKc .framer-1jzywgm, .framer-9YWKc .framer-1qviuoi, .framer-9YWKc .framer-l0aqo6, .framer-9YWKc .framer-1xav2nv, .framer-9YWKc .framer-1swldum { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9YWKc .framer-11zj6av { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",'.framer-9YWKc .framer-14mylst, .framer-9YWKc .framer-nvsilw { --framer-input-background: #f2f4f7; --framer-input-border-bottom-width: 1px; --framer-input-border-color: #e6ebed; --framer-input-border-left-width: 1px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-background: #ffffff; --framer-input-focused-border-color: #3b7eec; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 2px; --framer-input-font-color: var(--token-4b8c49e9-929d-4638-b308-b86574102ec6, #0e0a1b); --framer-input-font-family: \"Biennale Regular\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 24px; --framer-input-font-size: 17px; --framer-input-font-text-alignment: left; --framer-input-icon-color: #999999; --framer-input-padding: 20px 24px 20px 24px; --framer-input-placeholder-color: rgba(15, 10, 28, 0.6); --framer-input-wrapper-height: auto; flex: none; height: auto; position: relative; width: 100%; }',\".framer-9YWKc .framer-1lz2pft { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-1w8h8dm { flex: none; height: 25px; overflow: hidden; position: relative; width: 21px; }\",\".framer-9YWKc .framer-1wf95h5 { --framer-input-background: rgba(187, 187, 187, 0.2); --framer-input-boolean-checked-background: #0099ff; --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.2); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 4px; --framer-input-border-radius-bottom-right: 4px; --framer-input-border-radius-top-left: 4px; --framer-input-border-radius-top-right: 4px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-icon-color: #ffffff; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); left: 0px; position: absolute; right: 0px; top: 48%; transform: translateY(-50%); }\",\".framer-9YWKc .framer-12txvej { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-9YWKc .framer-528k75-container, .framer-9YWKc .framer-cpa14q-container, .framer-9YWKc .framer-1dvzen3-container, .framer-9YWKc .framer-18w8xq1-container, .framer-9YWKc .framer-3j82d9-container, .framer-9YWKc .framer-902yh0-container, .framer-9YWKc .framer-k392px-container, .framer-9YWKc .framer-djt4f7-container, .framer-9YWKc .framer-15nly9f-container, .framer-9YWKc .framer-1nq2ipi-container, .framer-9YWKc .framer-rnll5b-container, .framer-9YWKc .framer-1i2tame-container, .framer-9YWKc .framer-1vb8e93-container, .framer-9YWKc .framer-1s201qx-container, .framer-9YWKc .framer-10bggf-container, .framer-9YWKc .framer-sb1tr1-container, .framer-9YWKc .framer-uc6s86-container, .framer-9YWKc .framer-yrrakb-container, .framer-9YWKc .framer-bwbyn9-container, .framer-9YWKc .framer-3bh3j6-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-9YWKc.framer-u8q6ay { background-color: rgba(0, 0, 0, 0.85); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-9YWKc.framer-isg2jn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 100%; z-index: 10; }\",\".framer-9YWKc .framer-miuudk, .framer-9YWKc .framer-1dzltni { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-9YWKc .framer-57q03o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 128px 0px 128px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-oo646e, .framer-9YWKc .framer-122h4yh, .framer-9YWKc .framer-mk6sg2 { aspect-ratio: 1.7765957446808511 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 113px); overflow: hidden; position: relative; text-decoration: none; width: 1px; z-index: 1; }\",\".framer-9YWKc .framer-kws5ap, .framer-9YWKc .framer-7uuwt4, .framer-9YWKc .framer-10xnyp8, .framer-9YWKc .framer-cstee7, .framer-9YWKc .framer-izwwmg, .framer-9YWKc .framer-1x8fz80 { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.63) 100%); bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; left: 0px; overflow: hidden; padding: 24px; position: absolute; width: 100%; }\",\".framer-9YWKc .framer-7na4zb, .framer-9YWKc .framer-yda8xa, .framer-9YWKc .framer-vr3uqg, .framer-9YWKc .framer-1g1ctk9, .framer-9YWKc .framer-gbvt5i, .framer-9YWKc .framer-901exc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.41); white-space: pre; width: auto; }\",\".framer-9YWKc .framer-1lkx4xw-container { aspect-ratio: 1.7840909090909092 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 112px); position: relative; width: 1px; z-index: 1; }\",\".framer-9YWKc .framer-khw538, .framer-9YWKc .framer-1anmac0 { aspect-ratio: 1.7765957446808511 / 1; height: var(--framer-aspect-ratio-supported, 300px); overflow: hidden; position: relative; width: 533px; z-index: 1; }\",\".framer-9YWKc .framer-1embl4w { aspect-ratio: 1.7765957446808511 / 1; height: var(--framer-aspect-ratio-supported, 299px); overflow: hidden; position: relative; width: 533px; z-index: 1; }\",\".framer-9YWKc .framer-1xbsnub { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 128px; height: min-content; justify-content: center; overflow: visible; padding: 128px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-1hcq16o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1560px; overflow: visible; padding: 0px 180px 0px 180px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-4hcd2i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: visible; padding: 0px 128px 0px 128px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-1wyhq9x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 52%; overflow: visible; padding: 0px; position: absolute; top: -56px; transform: translateX(-50%); width: min-content; z-index: 0; }\",\".framer-9YWKc .framer-12v34mp-container { aspect-ratio: 1 / 1; bottom: -15px; flex: none; left: -54px; position: absolute; top: -1px; width: var(--framer-aspect-ratio-supported, 48px); z-index: 1; }\",\".framer-9YWKc .framer-11keyys-container, .framer-9YWKc .framer-1aq1d04-container { aspect-ratio: 0.6994301994301995 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 286px); max-width: 444px; position: relative; width: 1px; z-index: 2; }\",\".framer-9YWKc .framer-vjupxk-container { aspect-ratio: 0.698005698005698 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 287px); max-width: 444px; position: relative; width: 1px; z-index: 2; }\",\".framer-9YWKc .framer-1ruicka { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 112px; height: min-content; justify-content: flex-start; max-width: 1920px; overflow: visible; padding: 0px 180px 128px 180px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-h35l6s, .framer-9YWKc .framer-kd2m11, .framer-9YWKc .framer-qk3tl9, .framer-9YWKc .framer-1s3f0rg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1560px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-26cxsr, .framer-9YWKc .framer-7nlqc1, .framer-9YWKc .framer-14woiqc, .framer-9YWKc .framer-ae8h9p { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-9YWKc .framer-bxrp44, .framer-9YWKc .framer-gkvlzb, .framer-9YWKc .framer-effupg, .framer-9YWKc .framer-11srl42 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-tw2cjy, .framer-9YWKc .framer-a35p5g, .framer-9YWKc .framer-uyto84, .framer-9YWKc .framer-j0h7zi { display: grid; flex: none; gap: 16px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-noz271, .framer-9YWKc .framer-2snpsi, .framer-9YWKc .framer-1g1szyg, .framer-9YWKc .framer-1mwkxqv, .framer-9YWKc .framer-1ovhiva, .framer-9YWKc .framer-13ao7sv, .framer-9YWKc .framer-1ewye0a, .framer-9YWKc .framer-1a2nrzf, .framer-9YWKc .framer-ask8f0, .framer-9YWKc .framer-unimoi, .framer-9YWKc .framer-zr3i85, .framer-9YWKc .framer-mjwofk, .framer-9YWKc .framer-bn0wk2 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: auto; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-1xnf660, .framer-9YWKc .framer-1y2dol3, .framer-9YWKc .framer-bgwd20, .framer-9YWKc .framer-2szoes { aspect-ratio: 1 / 1; background-color: #eaf4fc; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 28px; overflow: hidden; position: relative; width: var(--framer-aspect-ratio-supported, 28px); will-change: var(--framer-will-change-override, transform); }\",\".framer-9YWKc .framer-rnuch9-container, .framer-9YWKc .framer-17t4je7-container, .framer-9YWKc .framer-d10dg4-container, .framer-9YWKc .framer-ubbr7m-container, .framer-9YWKc .framer-fst3d5-container, .framer-9YWKc .framer-1wki3qb-container, .framer-9YWKc .framer-1n3m32t-container, .framer-9YWKc .framer-1innq9i-container, .framer-9YWKc .framer-4kma8m-container, .framer-9YWKc .framer-1h89wuu-container, .framer-9YWKc .framer-1kw1kpd-container, .framer-9YWKc .framer-ho1bf9-container, .framer-9YWKc .framer-nfh8m6-container { flex: none; height: 14px; left: calc(50.00000000000002% - 14px / 2); position: absolute; top: calc(50.00000000000002% - 14px / 2); width: 14px; }\",\".framer-9YWKc .framer-1equ1is, .framer-9YWKc .framer-lc8v5m, .framer-9YWKc .framer-v42eg1, .framer-9YWKc .framer-jo1114, .framer-9YWKc .framer-f5doo1, .framer-9YWKc .framer-1urhxgd, .framer-9YWKc .framer-1h6gb6e, .framer-9YWKc .framer-wnypnu, .framer-9YWKc .framer-1q5zikp { background-color: #eaf4fc; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 28px; overflow: hidden; position: relative; width: 29px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9YWKc .framer-zzket5, .framer-9YWKc .framer-1vfyike, .framer-9YWKc .framer-nceq3n, .framer-9YWKc .framer-zlwyjt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-9YWKc .framer-1y9v4n4, .framer-9YWKc .framer-32uefw { aspect-ratio: 1.4230769230769231 / 1; background-color: #dee1e3; flex: none; height: var(--framer-aspect-ratio-supported, 141px); overflow: hidden; position: relative; width: 100%; }\",\".framer-9YWKc .framer-6wat3s { aspect-ratio: 1.78 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 8px 24px 0px rgba(31, 32, 41, 0.08); flex: none; height: var(--framer-aspect-ratio-supported, 112px); left: 50%; position: absolute; top: 37%; transform: translate(-50%, -50%); width: 72%; }\",\".framer-9YWKc .framer-1tqxynd { -webkit-filter: drop-shadow(0px 8px 11px rgba(31, 32, 41, 0.08)); aspect-ratio: 1.78 / 1; filter: drop-shadow(0px 8px 11px rgba(31, 32, 41, 0.08)); flex: none; height: var(--framer-aspect-ratio-supported, 112px); left: 15%; position: absolute; top: 81%; transform: translate(-50%, -50%); width: 48%; }\",\".framer-9YWKc .framer-1hv6i2c { -webkit-filter: drop-shadow(0px 8.800000190734863px 12px rgba(31, 32, 41, 0.08)); aspect-ratio: 1.7818181818181817 / 1; filter: drop-shadow(0px 8.800000190734863px 12px rgba(31, 32, 41, 0.08)); flex: none; height: var(--framer-aspect-ratio-supported, 112px); left: 49%; position: absolute; top: 81%; transform: translate(-50%, -50%); width: 53%; }\",\".framer-9YWKc .framer-1frgq76 { -webkit-filter: drop-shadow(0px 9.600000381469727px 13px rgba(31, 32, 41, 0.08)); aspect-ratio: 1.7759336099585061 / 1; filter: drop-shadow(0px 9.600000381469727px 13px rgba(31, 32, 41, 0.08)); flex: none; height: var(--framer-aspect-ratio-supported, 113px); left: 83%; position: absolute; top: 81%; transform: translate(-50%, -50%); width: 58%; }\",\".framer-9YWKc .framer-1fy3lrf { aspect-ratio: 1.4230769230769231 / 1; background-color: #f7eceb; flex: none; height: var(--framer-aspect-ratio-supported, 141px); overflow: hidden; position: relative; width: 100%; }\",\".framer-9YWKc .framer-c4cnfv { aspect-ratio: 1.78 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 8px 24px 0px rgba(31, 32, 41, 0.08); flex: none; height: var(--framer-aspect-ratio-supported, 112px); left: 51%; position: absolute; top: 52%; transform: translate(-50%, -50%); width: 72%; }\",\".framer-9YWKc .framer-y5mjci { -webkit-filter: drop-shadow(0px 9.600000381469727px 13px rgba(31, 32, 41, 0.08)); aspect-ratio: 1.8 / 1; filter: drop-shadow(0px 9.600000381469727px 13px rgba(31, 32, 41, 0.08)); flex: none; height: var(--framer-aspect-ratio-supported, 111px); left: 25%; position: absolute; top: 27%; transform: translate(-50%, -50%); width: 36%; }\",\".framer-9YWKc .framer-muiogi { -webkit-filter: drop-shadow(0px 9.600000381469727px 13px rgba(31, 32, 41, 0.08)); aspect-ratio: 0.45925925925925926 / 1; filter: drop-shadow(0px 9.600000381469727px 13px rgba(31, 32, 41, 0.08)); flex: none; height: var(--framer-aspect-ratio-supported, 435px); left: 85%; position: absolute; top: 65%; transform: translate(-50%, -50%); width: 17%; }\",\".framer-9YWKc .framer-1wcjujs { aspect-ratio: 1.4230769230769231 / 1; background-color: #fff4fe; flex: none; height: var(--framer-aspect-ratio-supported, 141px); overflow: hidden; position: relative; width: 100%; }\",\".framer-9YWKc .framer-aqq5kg { -webkit-filter: drop-shadow(0px 8px 11px rgba(31, 32, 41, 0.08)); aspect-ratio: 1.064066852367688 / 1; filter: drop-shadow(0px 8px 11px rgba(31, 32, 41, 0.08)); flex: none; height: var(--framer-aspect-ratio-supported, 188px); left: 43%; position: absolute; top: 52%; transform: translate(-50%, -50%); width: 52%; }\",\".framer-9YWKc .framer-ksyjs8 { --border-bottom-width: 16px; --border-color: #ffffff; --border-left-width: 16px; --border-right-width: 16px; --border-style: solid; --border-top-width: 16px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; box-shadow: 0px 8px 24px 0px rgba(31, 32, 41, 0.08); flex: none; height: var(--framer-aspect-ratio-supported, 200px); left: 69%; position: absolute; top: 52%; transform: translate(-50%, -50%); width: 32%; }\",\".framer-9YWKc .framer-fz2usv { -webkit-filter: blur(1.5px); aspect-ratio: 1.422680412371134 / 1; bottom: -80px; filter: blur(1.5px); flex: none; height: var(--framer-aspect-ratio-supported, 679px); left: -113px; opacity: 0.3; position: absolute; right: -113px; }\",\".framer-9YWKc .framer-xlcexk { aspect-ratio: 1.7806451612903227 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 8px 24px 0px rgba(31, 32, 41, 0.08); flex: none; height: var(--framer-aspect-ratio-supported, 112px); left: 29%; position: absolute; top: 23%; transform: translate(-50%, -50%); width: 37%; }\",\".framer-9YWKc .framer-121h4k9 { aspect-ratio: 1.7806451612903227 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 8px 24px 0px rgba(31, 32, 41, 0.08); flex: none; height: var(--framer-aspect-ratio-supported, 112px); left: 71%; position: absolute; top: 23%; transform: translate(-50%, -50%); width: 37%; }\",\".framer-9YWKc .framer-1wl0iv0 { aspect-ratio: 1.7806451612903227 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 8px 24px 0px rgba(31, 32, 41, 0.08); flex: none; height: var(--framer-aspect-ratio-supported, 112px); left: 29%; position: absolute; top: 77%; transform: translate(-50%, -50%); width: 37%; }\",\".framer-9YWKc .framer-hjlkhj { aspect-ratio: 1.7806451612903227 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 8px 24px 0px rgba(31, 32, 41, 0.08); flex: none; height: var(--framer-aspect-ratio-supported, 112px); left: 71%; position: absolute; top: 77%; transform: translate(-50%, -50%); width: 37%; }\",\".framer-9YWKc .framer-ynd3hy { aspect-ratio: 1.7806451612903227 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 8px 24px 0px rgba(31, 32, 41, 0.08); flex: none; height: var(--framer-aspect-ratio-supported, 112px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 37%; }\",\".framer-9YWKc .framer-1n8l948 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-1wgraqb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; max-width: 1920px; overflow: hidden; padding: 96px 180px 96px 180px; position: relative; width: 1px; }\",\".framer-9YWKc .framer-6sfnx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-9YWKc .framer-125w7se { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-1v9hvjt { aspect-ratio: 1.5021739130434784 / 1; background: radial-gradient(50% 50% at 50.00000885860759% 49.99999758885969%, #c2e4fc 0%, rgb(255, 255, 255) 91.20565878378379%); flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 133px); overflow: visible; position: relative; width: 1px; }\",\".framer-9YWKc .framer-jpuzla-container { aspect-ratio: 3.449275362318841 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 58px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 138%; }\",\".framer-9YWKc .framer-1xu01q3 { aspect-ratio: 1.7808219178082192 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 16px 72px 0px rgba(47, 73, 82, 0.6); flex: none; height: var(--framer-aspect-ratio-supported, 112px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 66%; }\",\".framer-9YWKc .framer-1w4nrhu { bottom: 16px; flex: none; height: 24px; position: absolute; right: 16px; width: 96px; }\",\".framer-9YWKc .framer-nvemeg { bottom: 16px; flex: none; height: 24px; left: 16px; position: absolute; width: 132px; }\",\".framer-9YWKc .framer-ayqn96 { background-color: rgba(255, 255, 255, 0.5); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; bottom: 64px; flex: none; height: 4px; left: 56px; overflow: hidden; position: absolute; right: 56px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9YWKc .framer-1bgqes7 { background-color: #ffffff; bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 155px; }\",\".framer-9YWKc .framer-1w9qf5b { --framer-paragraph-spacing: 0px; bottom: 60px; flex: none; height: auto; left: 16px; position: absolute; white-space: pre; width: auto; }\",\".framer-9YWKc .framer-cpiwwr { --framer-paragraph-spacing: 0px; bottom: 60px; flex: none; height: auto; position: absolute; right: 16px; white-space: pre; width: auto; }\",\".framer-9YWKc .framer-dizgf1 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #141414; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 8px 32px 0px rgba(11, 28, 33, 0.6); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 16px 12px 16px 12px; position: absolute; top: -56px; transform: translateX(-50%); width: min-content; }\",\".framer-9YWKc .framer-1fhxuz2 { align-content: center; align-items: center; background-color: #1f1f1f; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-1pqff4x, .framer-9YWKc .framer-1eznbkt, .framer-9YWKc .framer-ahy5w5, .framer-9YWKc .framer-iif4vc, .framer-9YWKc .framer-1jnvk5t, .framer-9YWKc .framer-1toyabd { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-9YWKc .framer-1745yk8, .framer-9YWKc .framer-1v3mx5, .framer-9YWKc .framer-1glwta2, .framer-9YWKc .framer-4nbes0, .framer-9YWKc .framer-zd02rf { align-content: center; align-items: center; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-2nx0so { align-content: center; align-items: center; background: radial-gradient(45.6% 53.5% at 50% 50%, #e6f2f7 0%, rgb(255, 255, 255) 80.0974802927928%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: hidden; padding: 128px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-j48tp0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1920px; overflow: visible; padding: 0px 160px 0px 160px; position: relative; width: 100%; z-index: 3; }\",\".framer-9YWKc .framer-1iixvl7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1920px; overflow: hidden; padding: 0px 180px 80px 180px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-sdgdfz { align-content: flex-start; align-items: flex-start; cursor: default; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-11hrzpf-container, .framer-9YWKc .framer-zaatrt-container, .framer-9YWKc .framer-14xzfae-container, .framer-9YWKc .framer-sl3d2h-container, .framer-9YWKc .framer-14lob3s-container { height: auto; position: relative; width: 408px; }\",\".framer-9YWKc .framer-1he8jd2 { align-content: center; align-items: center; background-color: #e9ebf1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 0px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 24px 48px 24px 48px; position: absolute; transform: translateX(-50%); width: min-content; z-index: 3; }\",\".framer-9YWKc .framer-vcpnsb { -webkit-user-select: none; background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 77.08333134651184%); bottom: 0px; flex: none; height: 280px; left: 0px; position: absolute; user-select: none; width: 100%; z-index: 2; }\",\".framer-9YWKc .framer-5vs284 { align-content: center; align-items: center; background: radial-gradient(44.6% 50% at 50% 100%, #0a3d63 0%, rgb(11, 39, 59) 53.610641891891895%, rgb(11, 15, 18) 99.01991835585585%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 150px 168px 150px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-dkbnjr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 32px 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-9YWKc .framer-13ypevi-container { flex: none; height: 64px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-1r45hz3, .framer-9YWKc .framer-zc2d3y, .framer-9YWKc .framer-i3mdqn, .framer-9YWKc .framer-2o03j5, .framer-9YWKc .framer-8bj5k9, .framer-9YWKc .framer-1f5hjf5, .framer-9YWKc .framer-11gxw3m, .framer-9YWKc .framer-76rexo, .framer-9YWKc .framer-sppc2i, .framer-9YWKc .framer-x32h0f, .framer-9YWKc .framer-1ffp7ik, .framer-9YWKc .framer-127xvz4, .framer-9YWKc .framer-1jeqc2i, .framer-9YWKc .framer-1j8ei9v, .framer-9YWKc .framer-1hq1gdz, .framer-9YWKc .framer-l53m7r, .framer-9YWKc .framer-1u56tzt, .framer-9YWKc .framer-1mx2d3j, .framer-9YWKc .framer-4t5v5t, .framer-9YWKc .framer-6z3ujp, .framer-9YWKc .framer-plduib, .framer-9YWKc .framer-s34du6, .framer-9YWKc .framer-1q8n2j6, .framer-9YWKc .framer-1mwfu0w, .framer-9YWKc .framer-6a5jze { background-color: #0d1726; height: 64px; overflow: hidden; position: relative; text-decoration: none; width: 144px; }\",\".framer-9YWKc .framer-1sopqgl { background-color: #0d1726; flex: none; height: 28px; left: calc(47.22222222222224% - 85px / 2); position: absolute; top: 14px; width: 85px; }\",\".framer-9YWKc .framer-nl2a6v { background-color: #0d1726; flex: none; height: 23px; left: calc(50.00000000000002% - 113px / 2); position: absolute; top: calc(50.00000000000002% - 23px / 2); width: 113px; }\",\".framer-9YWKc .framer-abhnm8 { background-color: #0d1726; bottom: 12px; flex: none; height: 32px; left: calc(50.00000000000002% - 107px / 2); position: absolute; width: 107px; }\",\".framer-9YWKc .framer-1gqhfov { background-color: #0d1726; flex: none; height: 26px; left: calc(50.00000000000002% - 106px / 2); position: absolute; top: calc(50.00000000000002% - 26px / 2); width: 106px; }\",\".framer-9YWKc .framer-1lg5v7y { background-color: #0d1726; flex: none; height: 30px; left: calc(50.00000000000002% - 100px / 2); position: absolute; top: calc(50.00000000000002% - 30px / 2); width: 100px; }\",\".framer-9YWKc .framer-tt6jnp { background-color: #0d1726; flex: none; height: 18px; left: calc(50.00000000000002% - 114px / 2); position: absolute; top: calc(50.00000000000002% - 18px / 2); width: 114px; }\",\".framer-9YWKc .framer-1sbmd4b { background-color: #0d1726; flex: none; height: 28px; left: calc(49.30555555555558% - 98px / 2); position: absolute; top: calc(48.43750000000002% - 28px / 2); width: 98px; }\",\".framer-9YWKc .framer-p3iscx { background-color: #0d1726; flex: none; height: 50px; left: calc(50.00000000000002% - 100px / 2); position: absolute; top: calc(50.00000000000002% - 50px / 2); width: 100px; }\",\".framer-9YWKc .framer-ej7560 { background-color: #0d1726; flex: none; height: 28px; left: calc(50.00000000000002% - 83px / 2); position: absolute; top: calc(50.00000000000002% - 28px / 2); width: 83px; }\",\".framer-9YWKc .framer-1sx7e3f { background-color: #0d1726; flex: none; height: 30px; left: calc(50.694444444444464% - 69px / 2); position: absolute; top: calc(48.43750000000002% - 30px / 2); width: 69px; }\",\".framer-9YWKc .framer-f23twr { background-color: #0d1726; flex: none; height: 40px; left: calc(50.00000000000002% - 44px / 2); position: absolute; top: 8px; width: 44px; }\",\".framer-9YWKc .framer-z8z7pm { background-color: #0d1726; flex: none; height: 30px; left: calc(50.00000000000002% - 56px / 2); position: absolute; top: calc(50.00000000000002% - 30px / 2); width: 56px; }\",\".framer-9YWKc .framer-t0b0mt { background-color: #0d1726; flex: none; height: 48px; left: calc(50.00000000000002% - 45px / 2); position: absolute; top: calc(50.00000000000002% - 48px / 2); width: 45px; }\",\".framer-9YWKc .framer-1ckpwr { background-color: #0d1726; flex: none; height: 26px; left: calc(50.694444444444464% - 93px / 2); position: absolute; top: calc(51.56250000000002% - 26px / 2); width: 93px; }\",\".framer-9YWKc .framer-10gracb { background-color: #0d1726; flex: none; height: 17px; left: calc(50.00000000000002% - 105px / 2); position: absolute; top: calc(51.56250000000002% - 17px / 2); width: 105px; }\",\".framer-9YWKc .framer-1cbuea8 { background-color: #0d1726; flex: none; height: 40px; left: calc(49.30555555555558% - 66px / 2); position: absolute; top: calc(51.56250000000002% - 40px / 2); width: 66px; }\",\".framer-9YWKc .framer-13yqfjy, .framer-9YWKc .framer-1gcs3f9 { background-color: #0d1726; height: 64px; overflow: hidden; position: relative; width: 144px; }\",\".framer-9YWKc .framer-15g8cdd { background-color: #0d1726; flex: none; height: 34px; left: calc(52.7777777777778% - 71px / 2); position: absolute; top: calc(48.43750000000002% - 34px / 2); width: 71px; }\",\".framer-9YWKc .framer-utaxk6 { background-color: #0d1726; flex: none; height: 22px; left: calc(50.00000000000002% - 104px / 2); position: absolute; top: calc(50.00000000000002% - 22px / 2); width: 104px; }\",\".framer-9YWKc .framer-djw9ph { background-color: #0d1726; flex: none; height: 15px; left: calc(50.00000000000002% - 106px / 2); position: absolute; top: calc(50.00000000000002% - 15px / 2); width: 106px; }\",\".framer-9YWKc .framer-1sx8clb { background-color: #0d1726; flex: none; height: 44px; left: calc(50.00000000000002% - 71px / 2); position: absolute; top: 6px; width: 71px; }\",\".framer-9YWKc .framer-ndpw8r { background-color: #0d1726; flex: none; height: 21px; left: calc(50.00000000000002% - 89px / 2); position: absolute; top: calc(46.87500000000002% - 21px / 2); width: 89px; }\",\".framer-9YWKc .framer-1o5gqg6 { background-color: #0d1726; flex: none; height: 20px; left: calc(50.00000000000002% - 106px / 2); position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 106px; }\",\".framer-9YWKc .framer-2xsmp { background-color: #0d1726; flex: none; height: 12px; left: calc(50.00000000000002% - 116px / 2); position: absolute; top: calc(50.00000000000002% - 12px / 2); width: 116px; }\",\".framer-9YWKc .framer-pimlsf { background-color: #0d1726; flex: none; height: 26px; left: calc(48.611111111111136% - 93px / 2); position: absolute; top: calc(50.00000000000002% - 26px / 2); width: 93px; }\",\".framer-9YWKc .framer-15iri4u { background-color: #0d1726; flex: none; height: 26px; left: calc(50.00000000000002% - 110px / 2); position: absolute; top: calc(50.00000000000002% - 26px / 2); width: 110px; }\",\".framer-9YWKc .framer-1avry8f { background-color: #0d1726; flex: none; height: 20px; left: calc(50.00000000000002% - 100px / 2); position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 100px; }\",\".framer-9YWKc .framer-1w37h4h { background-color: #0d1726; flex: none; height: 43px; left: calc(54.166666666666686% - 63px / 2); position: absolute; top: calc(45.31250000000002% - 43px / 2); width: 63px; }\",\".framer-9YWKc .framer-1q14nne { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 808px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-9YWKc .framer-1s9arlt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-d5jllj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1008px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-9YWKc .framer-1dqkpyt { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px; position: relative; width: 1px; }\",\".framer-9YWKc .framer-qhtrbm { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-e0shvh { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-9YWKc .framer-1rd5yc0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-1qp6a4y-container { height: 64px; position: relative; width: 352px; }\",\".framer-9YWKc .framer-1ngxkuj-container { bottom: 0px; flex: none; left: 0px; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-9YWKc .framer-1n3zwa0 { -webkit-backdrop-filter: blur(6px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(6px); background-color: rgba(50, 77, 102, 0.6); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 32px 48px 32px 48px; position: relative; width: 1px; }\",\".framer-9YWKc .framer-jb9ivq-container { bottom: 0px; flex: none; left: 0px; mix-blend-mode: overlay; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-9YWKc .framer-kd2zby { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 256px 96px 360px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-1u1s7km { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1304px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-9YWKc .framer-1yrzmuy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 57%; }\",\".framer-9YWKc .framer-35kv8r { 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-9YWKc .framer-19eywyj, .framer-9YWKc .framer-15qsfh5, .framer-9YWKc .framer-1j1mkr9 { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9YWKc .framer-u7n34z { -webkit-filter: hue-rotate(307deg); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; filter: hue-rotate(307deg); flex: none; height: 280px; position: relative; width: 38%; }\",\".framer-9YWKc .framer-q9qa27 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 156px 0px 200px 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-1x5s2o6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1320px; }\",\".framer-9YWKc .framer-rpumas { aspect-ratio: 0.8450704225352113 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 237px); overflow: visible; position: sticky; top: 0px; width: 36%; will-change: transform; z-index: 1; }\",\".framer-9YWKc .framer-1lvllb1 { align-content: center; align-items: center; background-color: #cfcfcf; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; box-shadow: 4px 6px 24px 0px rgba(20, 14, 32, 0.04); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 49%; overflow: hidden; padding: 24px 24px 20px 24px; position: absolute; top: 49%; transform: translate(-50%, -50%); width: 77%; will-change: var(--framer-will-change-override, transform); }\",\".framer-9YWKc .framer-8deofd, .framer-9YWKc .framer-1x0qu3p, .framer-9YWKc .framer-wilqy5 { aspect-ratio: 0.8888888888888888 / 1; background-color: #f5f5f5; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.4); flex: none; height: var(--framer-aspect-ratio-supported, 225px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-9YWKc .framer-1la1wct, .framer-9YWKc .framer-13yq4fl, .framer-9YWKc .framer-1a2tus8 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-9YWKc .framer-1lc62go { align-content: center; align-items: center; background-color: #ebebeb; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; box-shadow: 4px 6px 24px 0px rgba(20, 14, 32, 0.04); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 47%; overflow: hidden; padding: 24px 24px 20px 24px; position: absolute; top: 49%; transform: translate(-50%, -50%); width: 77%; will-change: var(--framer-will-change-override, transform); }\",\".framer-9YWKc .framer-15w0sra { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; box-shadow: 4px 6px 24px 0px rgba(20, 14, 32, 0.04), 0px 2px 36px 0px rgba(21, 11, 38, 0.08); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 24px 24px 20px 24px; position: absolute; top: 49%; transform: translate(-50%, -50%); width: 77%; will-change: var(--framer-will-change-override, transform); }\",\".framer-9YWKc .framer-131mp1a { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-9YWKc .framer-1bmorc5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-1j2w9wg { flex: none; height: 700px; overflow: visible; position: relative; width: 1483px; }\",\".framer-9YWKc .framer-rsy1gx { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; box-shadow: 0.24087492070975713px 0.6021873017743928px 2.464587177262247px -1px rgba(15, 6, 31, 0.07), 0.9154133212973828px 2.288533303243457px 9.366338043482276px -2px rgba(15, 6, 31, 0.06651), 4px 10px 40.927252534222234px -3px rgba(15, 6, 31, 0.048); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 13%; overflow: visible; padding: 24px; position: absolute; top: 37%; transform: translate(-50%, -50%); width: 25%; }\",\".framer-9YWKc .framer-130zi1w { flex: none; height: 86px; overflow: visible; position: absolute; right: -13px; top: -83px; width: 156px; z-index: 1; }\",\".framer-9YWKc .framer-uhqsd0 { flex: none; height: auto; position: absolute; right: -11px; top: 7px; white-space: pre; width: auto; }\",\".framer-9YWKc .framer-n7z2ju { flex: none; height: 88px; left: 0px; position: absolute; top: 0px; width: 88px; }\",\".framer-9YWKc .framer-132e38t, .framer-9YWKc .framer-2omy0g, .framer-9YWKc .framer-1mq4e4c { aspect-ratio: 2.0253164556962027 / 1; background-color: #f5f5f5; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.4); flex: none; height: var(--framer-aspect-ratio-supported, 99px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-9YWKc .framer-sg1l7v { aspect-ratio: 1.653061224489796 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 121px); left: 0px; position: absolute; top: -11px; width: 101%; }\",\".framer-9YWKc .framer-1r1cid2 { aspect-ratio: 1 / 1; bottom: -6px; flex: none; height: var(--framer-aspect-ratio-supported, 48px); mix-blend-mode: lighten; position: absolute; right: 1px; width: 48px; }\",\".framer-9YWKc .framer-1yq7ia6 { aspect-ratio: 0.445859872611465 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 449px); left: 14px; overflow: visible; position: absolute; top: 8px; width: 22%; }\",\".framer-9YWKc .framer-1syi01u { flex: none; height: 29px; left: 0px; overflow: visible; position: absolute; top: 64px; width: 70px; }\",\".framer-9YWKc .framer-kcbban, .framer-9YWKc .framer-1buzcli, .framer-9YWKc .framer-11mi4pn, .framer-9YWKc .framer-dpdm5g, .framer-9YWKc .framer-1v1zz0r { -webkit-backdrop-filter: blur(3.48888897895813px); backdrop-filter: blur(3.48888897895813px); background-color: rgba(245, 245, 245, 0.7); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-9YWKc .framer-va2vv6 { border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 1px; flex: none; left: 5px; mix-blend-mode: multiply; opacity: 0.75; position: absolute; right: 5px; top: 3px; }\",\".framer-9YWKc .framer-17a8uht { flex: none; height: 29px; left: 0px; overflow: visible; position: absolute; top: 96px; width: 70px; }\",\".framer-9YWKc .framer-1on621l { border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 10px; flex: none; left: 6px; mix-blend-mode: multiply; opacity: 0.9; position: absolute; right: 7px; top: 11px; }\",\".framer-9YWKc .framer-33qzxu { flex: none; height: 29px; left: 0px; overflow: visible; position: absolute; top: 128px; width: 70px; }\",\".framer-9YWKc .framer-y9jn0 { border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 1px; flex: none; left: 5px; mix-blend-mode: multiply; opacity: 0.7; position: absolute; right: 3px; top: 1px; }\",\".framer-9YWKc .framer-j09cyv { flex: none; height: 29px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 70px; }\",\".framer-9YWKc .framer-1jj06e0, .framer-9YWKc .framer-13eoxfc { border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 1px; flex: none; left: 3px; mix-blend-mode: multiply; opacity: 0.7; position: absolute; right: 4px; top: 1px; }\",\".framer-9YWKc .framer-1wmim6q { flex: none; height: 29px; left: 0px; overflow: visible; position: absolute; top: 32px; width: 70px; }\",\".framer-9YWKc .framer-h0u5f6 { bottom: -48px; flex: none; height: 53px; left: -40px; overflow: hidden; position: absolute; width: 35px; z-index: 1; }\",\".framer-9YWKc .framer-5llme5 { flex: none; height: 49px; left: calc(48.57142857142859% - 31px / 2); position: absolute; top: calc(49.056603773584925% - 49px / 2); width: 31px; }\",\".framer-9YWKc .framer-nuzeb0 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; box-shadow: 0.24087492070975713px 0.6021873017743928px 2.464587177262247px -1px rgba(15, 6, 31, 0.07), 0.9154133212973828px 2.288533303243457px 9.366338043482276px -2px rgba(15, 6, 31, 0.06651), 4px 10px 40.927252534222234px -3px rgba(15, 6, 31, 0.048); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 38%; overflow: visible; padding: 24px; position: absolute; top: 67%; transform: translate(-50%, -50%); width: 25%; }\",\".framer-9YWKc .framer-z3h8e6 { flex: none; height: 67px; overflow: visible; position: absolute; right: 89px; top: -81px; width: 127px; z-index: 1; }\",\".framer-9YWKc .framer-ujrj7c { flex: none; height: auto; left: -5px; position: absolute; top: -6px; white-space: pre; width: auto; }\",\".framer-9YWKc .framer-epem30 { flex: none; height: 64px; position: absolute; right: 0px; top: 0px; width: 65px; }\",\".framer-9YWKc .framer-suj9h, .framer-9YWKc .framer-ukli9q { aspect-ratio: 2.0253164556962027 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 99px); left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-9YWKc .framer-mruf0s { aspect-ratio: 1.7017543859649122 / 1; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; bottom: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 118px); left: 12px; position: absolute; width: 30%; }\",\".framer-9YWKc .framer-11nzvav { aspect-ratio: 1.7321428571428572 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 115px); left: 12px; position: absolute; top: 12px; width: 30%; }\",\".framer-9YWKc .framer-17h1qkq { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; box-shadow: 0.24087492070975713px 0.6021873017743928px 2.464587177262247px -1px rgba(15, 6, 31, 0.07), 0.9154133212973828px 2.288533303243457px 9.366338043482276px -2px rgba(15, 6, 31, 0.06651), 4px 10px 40.927252534222234px -3px rgba(15, 6, 31, 0.048); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 86%; overflow: visible; padding: 24px; position: absolute; top: 78%; transform: translate(-50%, -50%); width: 25%; }\",\".framer-9YWKc .framer-fy9l8i { flex: none; height: 80px; overflow: visible; position: absolute; right: -24px; top: -92px; width: 171px; z-index: 1; }\",\".framer-9YWKc .framer-19o7bcd { flex: none; height: auto; left: 83px; position: absolute; top: 50%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-9YWKc .framer-15pjumc { flex: none; height: 80px; left: 0px; position: absolute; top: 0px; width: 80px; }\",\".framer-9YWKc .framer-uv2qq1 { aspect-ratio: 2.0253164556962027 / 1; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.4); flex: none; height: var(--framer-aspect-ratio-supported, 99px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-9YWKc .framer-qgvpza { bottom: 15px; flex: none; height: 17px; position: absolute; right: 13px; width: 45px; }\",\".framer-9YWKc .framer-b8n19r { bottom: -32px; flex: none; height: 38px; left: -40px; overflow: hidden; position: absolute; width: 47px; z-index: 1; }\",\".framer-9YWKc .framer-174yn15 { flex: none; height: 34px; left: calc(48.93617021276598% - 43px / 2); position: absolute; top: calc(50.00000000000002% - 34px / 2); width: 43px; }\",\".framer-9YWKc .framer-8fqe09 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; box-shadow: 0.24087492070975713px 0.6021873017743928px 2.464587177262247px -1px rgba(15, 6, 31, 0.07), 0.9154133212973828px 2.288533303243457px 9.366338043482276px -2px rgba(15, 6, 31, 0.06651), 4px 10px 40.927252534222234px -3px rgba(15, 6, 31, 0.048); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 66%; overflow: visible; padding: 24px; position: absolute; top: 39%; transform: translate(-50%, -50%); width: 25%; }\",\".framer-9YWKc .framer-1bnzkiv { flex: none; height: 85px; overflow: visible; position: absolute; right: -88px; top: -16px; width: 74px; z-index: 1; }\",\".framer-9YWKc .framer-18mqcp8 { flex: none; height: auto; left: 54%; position: absolute; top: -15px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-9YWKc .framer-js55j5 { bottom: -1px; flex: none; height: 62px; left: calc(48.648648648648674% - 57px / 2); position: absolute; width: 57px; }\",\".framer-9YWKc .framer-1uwnbmc { aspect-ratio: 1 / 1; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; bottom: 12px; box-shadow: 0px 3.1111111640930176px 6.222222328186035px 0px rgba(0, 0, 0, 0.25); flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: absolute; right: 12px; width: 40px; }\",\".framer-9YWKc .framer-1poxyjx { align-content: center; align-items: center; background-color: #f2f5f7; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 128px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-1y3cogo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1920px; overflow: visible; padding: 0px 160px 0px 160px; position: relative; width: 100%; }\",\".framer-9YWKc .framer-1t6d3qh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1920px; overflow: hidden; padding: 96px 440px 96px 440px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9YWKc.framer-9u1kxi, .framer-9YWKc .framer-1d6islv, .framer-9YWKc .framer-3t265v, .framer-9YWKc .framer-1cbr9kh, .framer-9YWKc .framer-1u2eksi, .framer-9YWKc .framer-w1i94m, .framer-9YWKc .framer-1jdl56i, .framer-9YWKc .framer-1edl6mu, .framer-9YWKc .framer-wrklcd, .framer-9YWKc .framer-5a4bri, .framer-9YWKc .framer-zcdq7n, .framer-9YWKc .framer-1l0nor2, .framer-9YWKc .framer-9k9p39, .framer-9YWKc .framer-ojwki9, .framer-9YWKc .framer-1rzfnv1, .framer-9YWKc .framer-1ptb0w8, .framer-9YWKc .framer-hzyl8v, .framer-9YWKc .framer-11kendy, .framer-9YWKc .framer-1ez20cb, .framer-9YWKc .framer-tfptji, .framer-9YWKc .framer-r52eva, .framer-9YWKc .framer-1bkj8th, .framer-9YWKc .framer-1opwcvo, .framer-9YWKc .framer-1n4c7ao, .framer-9YWKc .framer-hpxfm2, .framer-9YWKc .framer-1mq0wo9, .framer-9YWKc .framer-1aj65qb, .framer-9YWKc .framer-wym61r, .framer-9YWKc .framer-1mqyl46, .framer-9YWKc .framer-wic3wt, .framer-9YWKc .framer-t3zlux, .framer-9YWKc .framer-19pyxul, .framer-9YWKc .framer-4rkzq4, .framer-9YWKc .framer-bzeqdo, .framer-9YWKc .framer-18i32xe, .framer-9YWKc .framer-quzeo9, .framer-9YWKc .framer-eosedy, .framer-9YWKc .framer-1m2atb1, .framer-9YWKc .framer-1sh8iwr, .framer-9YWKc .framer-ru49z6, .framer-9YWKc .framer-1rbdv5s, .framer-9YWKc .framer-crhikp, .framer-9YWKc .framer-3sfza1, .framer-9YWKc .framer-11zj6av, .framer-9YWKc .framer-1lz2pft, .framer-9YWKc.framer-isg2jn, .framer-9YWKc .framer-57q03o, .framer-9YWKc .framer-kws5ap, .framer-9YWKc .framer-7uuwt4, .framer-9YWKc .framer-10xnyp8, .framer-9YWKc .framer-cstee7, .framer-9YWKc .framer-izwwmg, .framer-9YWKc .framer-1x8fz80, .framer-9YWKc .framer-1xbsnub, .framer-9YWKc .framer-1hcq16o, .framer-9YWKc .framer-4hcd2i, .framer-9YWKc .framer-1wyhq9x, .framer-9YWKc .framer-1ruicka, .framer-9YWKc .framer-h35l6s, .framer-9YWKc .framer-26cxsr, .framer-9YWKc .framer-bxrp44, .framer-9YWKc .framer-noz271, .framer-9YWKc .framer-2snpsi, .framer-9YWKc .framer-1g1szyg, .framer-9YWKc .framer-zzket5, .framer-9YWKc .framer-kd2m11, .framer-9YWKc .framer-7nlqc1, .framer-9YWKc .framer-gkvlzb, .framer-9YWKc .framer-1mwkxqv, .framer-9YWKc .framer-1ovhiva, .framer-9YWKc .framer-13ao7sv, .framer-9YWKc .framer-1ewye0a, .framer-9YWKc .framer-1vfyike, .framer-9YWKc .framer-qk3tl9, .framer-9YWKc .framer-14woiqc, .framer-9YWKc .framer-effupg, .framer-9YWKc .framer-1a2nrzf, .framer-9YWKc .framer-ask8f0, .framer-9YWKc .framer-unimoi, .framer-9YWKc .framer-nceq3n, .framer-9YWKc .framer-1s3f0rg, .framer-9YWKc .framer-ae8h9p, .framer-9YWKc .framer-11srl42, .framer-9YWKc .framer-zr3i85, .framer-9YWKc .framer-mjwofk, .framer-9YWKc .framer-bn0wk2, .framer-9YWKc .framer-zlwyjt, .framer-9YWKc .framer-1n8l948, .framer-9YWKc .framer-1wgraqb, .framer-9YWKc .framer-6sfnx, .framer-9YWKc .framer-125w7se, .framer-9YWKc .framer-dizgf1, .framer-9YWKc .framer-1fhxuz2, .framer-9YWKc .framer-1745yk8, .framer-9YWKc .framer-1v3mx5, .framer-9YWKc .framer-1glwta2, .framer-9YWKc .framer-4nbes0, .framer-9YWKc .framer-zd02rf, .framer-9YWKc .framer-2nx0so, .framer-9YWKc .framer-j48tp0, .framer-9YWKc .framer-1iixvl7, .framer-9YWKc .framer-sdgdfz, .framer-9YWKc .framer-1he8jd2, .framer-9YWKc .framer-5vs284, .framer-9YWKc .framer-dkbnjr, .framer-9YWKc .framer-1q14nne, .framer-9YWKc .framer-1s9arlt, .framer-9YWKc .framer-d5jllj, .framer-9YWKc .framer-1dqkpyt, .framer-9YWKc .framer-qhtrbm, .framer-9YWKc .framer-e0shvh, .framer-9YWKc .framer-1rd5yc0, .framer-9YWKc .framer-1n3zwa0, .framer-9YWKc .framer-kd2zby, .framer-9YWKc .framer-1u1s7km, .framer-9YWKc .framer-1yrzmuy, .framer-9YWKc .framer-35kv8r, .framer-9YWKc .framer-q9qa27, .framer-9YWKc .framer-1x5s2o6, .framer-9YWKc .framer-1lvllb1, .framer-9YWKc .framer-1lc62go, .framer-9YWKc .framer-15w0sra, .framer-9YWKc .framer-131mp1a, .framer-9YWKc .framer-1bmorc5, .framer-9YWKc .framer-rsy1gx, .framer-9YWKc .framer-nuzeb0, .framer-9YWKc .framer-17h1qkq, .framer-9YWKc .framer-8fqe09, .framer-9YWKc .framer-1poxyjx, .framer-9YWKc .framer-1y3cogo, .framer-9YWKc .framer-1t6d3qh { gap: 0px; } .framer-9YWKc.framer-9u1kxi > *, .framer-9YWKc .framer-wrklcd > *, .framer-9YWKc .framer-hzyl8v > *, .framer-9YWKc .framer-bzeqdo > *, .framer-9YWKc .framer-zzket5 > *, .framer-9YWKc .framer-1vfyike > *, .framer-9YWKc .framer-nceq3n > *, .framer-9YWKc .framer-zlwyjt > *, .framer-9YWKc .framer-1iixvl7 > *, .framer-9YWKc .framer-1poxyjx > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9YWKc.framer-9u1kxi > :first-child, .framer-9YWKc .framer-3t265v > :first-child, .framer-9YWKc .framer-1cbr9kh > :first-child, .framer-9YWKc .framer-w1i94m > :first-child, .framer-9YWKc .framer-1jdl56i > :first-child, .framer-9YWKc .framer-1edl6mu > :first-child, .framer-9YWKc .framer-wrklcd > :first-child, .framer-9YWKc .framer-5a4bri > :first-child, .framer-9YWKc .framer-9k9p39 > :first-child, .framer-9YWKc .framer-ojwki9 > :first-child, .framer-9YWKc .framer-1rzfnv1 > :first-child, .framer-9YWKc .framer-hzyl8v > :first-child, .framer-9YWKc .framer-hpxfm2 > :first-child, .framer-9YWKc .framer-1aj65qb > :first-child, .framer-9YWKc .framer-bzeqdo > :first-child, .framer-9YWKc .framer-eosedy > :first-child, .framer-9YWKc .framer-1sh8iwr > :first-child, .framer-9YWKc .framer-crhikp > :first-child, .framer-9YWKc .framer-3sfza1 > :first-child, .framer-9YWKc .framer-11zj6av > :first-child, .framer-9YWKc.framer-isg2jn > :first-child, .framer-9YWKc .framer-1xbsnub > :first-child, .framer-9YWKc .framer-1hcq16o > :first-child, .framer-9YWKc .framer-1wyhq9x > :first-child, .framer-9YWKc .framer-1ruicka > :first-child, .framer-9YWKc .framer-26cxsr > :first-child, .framer-9YWKc .framer-bxrp44 > :first-child, .framer-9YWKc .framer-zzket5 > :first-child, .framer-9YWKc .framer-7nlqc1 > :first-child, .framer-9YWKc .framer-gkvlzb > :first-child, .framer-9YWKc .framer-1vfyike > :first-child, .framer-9YWKc .framer-14woiqc > :first-child, .framer-9YWKc .framer-effupg > :first-child, .framer-9YWKc .framer-nceq3n > :first-child, .framer-9YWKc .framer-ae8h9p > :first-child, .framer-9YWKc .framer-11srl42 > :first-child, .framer-9YWKc .framer-zlwyjt > :first-child, .framer-9YWKc .framer-6sfnx > :first-child, .framer-9YWKc .framer-125w7se > :first-child, .framer-9YWKc .framer-dizgf1 > :first-child, .framer-9YWKc .framer-2nx0so > :first-child, .framer-9YWKc .framer-j48tp0 > :first-child, .framer-9YWKc .framer-1iixvl7 > :first-child, .framer-9YWKc .framer-5vs284 > :first-child, .framer-9YWKc .framer-dkbnjr > :first-child, .framer-9YWKc .framer-1q14nne > :first-child, .framer-9YWKc .framer-1s9arlt > :first-child, .framer-9YWKc .framer-1dqkpyt > :first-child, .framer-9YWKc .framer-e0shvh > :first-child, .framer-9YWKc .framer-1rd5yc0 > :first-child, .framer-9YWKc .framer-1n3zwa0 > :first-child, .framer-9YWKc .framer-1yrzmuy > :first-child, .framer-9YWKc .framer-35kv8r > :first-child, .framer-9YWKc .framer-q9qa27 > :first-child, .framer-9YWKc .framer-1lvllb1 > :first-child, .framer-9YWKc .framer-1lc62go > :first-child, .framer-9YWKc .framer-15w0sra > :first-child, .framer-9YWKc .framer-131mp1a > :first-child, .framer-9YWKc .framer-1bmorc5 > :first-child, .framer-9YWKc .framer-rsy1gx > :first-child, .framer-9YWKc .framer-nuzeb0 > :first-child, .framer-9YWKc .framer-17h1qkq > :first-child, .framer-9YWKc .framer-8fqe09 > :first-child, .framer-9YWKc .framer-1poxyjx > :first-child, .framer-9YWKc .framer-1y3cogo > :first-child, .framer-9YWKc .framer-1t6d3qh > :first-child { margin-top: 0px; } .framer-9YWKc.framer-9u1kxi > :last-child, .framer-9YWKc .framer-3t265v > :last-child, .framer-9YWKc .framer-1cbr9kh > :last-child, .framer-9YWKc .framer-w1i94m > :last-child, .framer-9YWKc .framer-1jdl56i > :last-child, .framer-9YWKc .framer-1edl6mu > :last-child, .framer-9YWKc .framer-wrklcd > :last-child, .framer-9YWKc .framer-5a4bri > :last-child, .framer-9YWKc .framer-9k9p39 > :last-child, .framer-9YWKc .framer-ojwki9 > :last-child, .framer-9YWKc .framer-1rzfnv1 > :last-child, .framer-9YWKc .framer-hzyl8v > :last-child, .framer-9YWKc .framer-hpxfm2 > :last-child, .framer-9YWKc .framer-1aj65qb > :last-child, .framer-9YWKc .framer-bzeqdo > :last-child, .framer-9YWKc .framer-eosedy > :last-child, .framer-9YWKc .framer-1sh8iwr > :last-child, .framer-9YWKc .framer-crhikp > :last-child, .framer-9YWKc .framer-3sfza1 > :last-child, .framer-9YWKc .framer-11zj6av > :last-child, .framer-9YWKc.framer-isg2jn > :last-child, .framer-9YWKc .framer-1xbsnub > :last-child, .framer-9YWKc .framer-1hcq16o > :last-child, .framer-9YWKc .framer-1wyhq9x > :last-child, .framer-9YWKc .framer-1ruicka > :last-child, .framer-9YWKc .framer-26cxsr > :last-child, .framer-9YWKc .framer-bxrp44 > :last-child, .framer-9YWKc .framer-zzket5 > :last-child, .framer-9YWKc .framer-7nlqc1 > :last-child, .framer-9YWKc .framer-gkvlzb > :last-child, .framer-9YWKc .framer-1vfyike > :last-child, .framer-9YWKc .framer-14woiqc > :last-child, .framer-9YWKc .framer-effupg > :last-child, .framer-9YWKc .framer-nceq3n > :last-child, .framer-9YWKc .framer-ae8h9p > :last-child, .framer-9YWKc .framer-11srl42 > :last-child, .framer-9YWKc .framer-zlwyjt > :last-child, .framer-9YWKc .framer-6sfnx > :last-child, .framer-9YWKc .framer-125w7se > :last-child, .framer-9YWKc .framer-dizgf1 > :last-child, .framer-9YWKc .framer-2nx0so > :last-child, .framer-9YWKc .framer-j48tp0 > :last-child, .framer-9YWKc .framer-1iixvl7 > :last-child, .framer-9YWKc .framer-5vs284 > :last-child, .framer-9YWKc .framer-dkbnjr > :last-child, .framer-9YWKc .framer-1q14nne > :last-child, .framer-9YWKc .framer-1s9arlt > :last-child, .framer-9YWKc .framer-1dqkpyt > :last-child, .framer-9YWKc .framer-e0shvh > :last-child, .framer-9YWKc .framer-1rd5yc0 > :last-child, .framer-9YWKc .framer-1n3zwa0 > :last-child, .framer-9YWKc .framer-1yrzmuy > :last-child, .framer-9YWKc .framer-35kv8r > :last-child, .framer-9YWKc .framer-q9qa27 > :last-child, .framer-9YWKc .framer-1lvllb1 > :last-child, .framer-9YWKc .framer-1lc62go > :last-child, .framer-9YWKc .framer-15w0sra > :last-child, .framer-9YWKc .framer-131mp1a > :last-child, .framer-9YWKc .framer-1bmorc5 > :last-child, .framer-9YWKc .framer-rsy1gx > :last-child, .framer-9YWKc .framer-nuzeb0 > :last-child, .framer-9YWKc .framer-17h1qkq > :last-child, .framer-9YWKc .framer-8fqe09 > :last-child, .framer-9YWKc .framer-1poxyjx > :last-child, .framer-9YWKc .framer-1y3cogo > :last-child, .framer-9YWKc .framer-1t6d3qh > :last-child { margin-bottom: 0px; } .framer-9YWKc .framer-1d6islv > *, .framer-9YWKc .framer-d5jllj > *, .framer-9YWKc .framer-qhtrbm > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-9YWKc .framer-1d6islv > :first-child, .framer-9YWKc .framer-1u2eksi > :first-child, .framer-9YWKc .framer-zcdq7n > :first-child, .framer-9YWKc .framer-1l0nor2 > :first-child, .framer-9YWKc .framer-1ptb0w8 > :first-child, .framer-9YWKc .framer-11kendy > :first-child, .framer-9YWKc .framer-1ez20cb > :first-child, .framer-9YWKc .framer-tfptji > :first-child, .framer-9YWKc .framer-r52eva > :first-child, .framer-9YWKc .framer-1bkj8th > :first-child, .framer-9YWKc .framer-1opwcvo > :first-child, .framer-9YWKc .framer-1n4c7ao > :first-child, .framer-9YWKc .framer-1mq0wo9 > :first-child, .framer-9YWKc .framer-wym61r > :first-child, .framer-9YWKc .framer-1mqyl46 > :first-child, .framer-9YWKc .framer-wic3wt > :first-child, .framer-9YWKc .framer-t3zlux > :first-child, .framer-9YWKc .framer-19pyxul > :first-child, .framer-9YWKc .framer-4rkzq4 > :first-child, .framer-9YWKc .framer-18i32xe > :first-child, .framer-9YWKc .framer-quzeo9 > :first-child, .framer-9YWKc .framer-1m2atb1 > :first-child, .framer-9YWKc .framer-ru49z6 > :first-child, .framer-9YWKc .framer-1rbdv5s > :first-child, .framer-9YWKc .framer-1lz2pft > :first-child, .framer-9YWKc .framer-57q03o > :first-child, .framer-9YWKc .framer-kws5ap > :first-child, .framer-9YWKc .framer-7uuwt4 > :first-child, .framer-9YWKc .framer-10xnyp8 > :first-child, .framer-9YWKc .framer-cstee7 > :first-child, .framer-9YWKc .framer-izwwmg > :first-child, .framer-9YWKc .framer-1x8fz80 > :first-child, .framer-9YWKc .framer-4hcd2i > :first-child, .framer-9YWKc .framer-h35l6s > :first-child, .framer-9YWKc .framer-noz271 > :first-child, .framer-9YWKc .framer-2snpsi > :first-child, .framer-9YWKc .framer-1g1szyg > :first-child, .framer-9YWKc .framer-kd2m11 > :first-child, .framer-9YWKc .framer-1mwkxqv > :first-child, .framer-9YWKc .framer-1ovhiva > :first-child, .framer-9YWKc .framer-13ao7sv > :first-child, .framer-9YWKc .framer-1ewye0a > :first-child, .framer-9YWKc .framer-qk3tl9 > :first-child, .framer-9YWKc .framer-1a2nrzf > :first-child, .framer-9YWKc .framer-ask8f0 > :first-child, .framer-9YWKc .framer-unimoi > :first-child, .framer-9YWKc .framer-1s3f0rg > :first-child, .framer-9YWKc .framer-zr3i85 > :first-child, .framer-9YWKc .framer-mjwofk > :first-child, .framer-9YWKc .framer-bn0wk2 > :first-child, .framer-9YWKc .framer-1n8l948 > :first-child, .framer-9YWKc .framer-1wgraqb > :first-child, .framer-9YWKc .framer-1fhxuz2 > :first-child, .framer-9YWKc .framer-1745yk8 > :first-child, .framer-9YWKc .framer-1v3mx5 > :first-child, .framer-9YWKc .framer-1glwta2 > :first-child, .framer-9YWKc .framer-4nbes0 > :first-child, .framer-9YWKc .framer-zd02rf > :first-child, .framer-9YWKc .framer-sdgdfz > :first-child, .framer-9YWKc .framer-1he8jd2 > :first-child, .framer-9YWKc .framer-d5jllj > :first-child, .framer-9YWKc .framer-qhtrbm > :first-child, .framer-9YWKc .framer-kd2zby > :first-child, .framer-9YWKc .framer-1u1s7km > :first-child, .framer-9YWKc .framer-1x5s2o6 > :first-child { margin-left: 0px; } .framer-9YWKc .framer-1d6islv > :last-child, .framer-9YWKc .framer-1u2eksi > :last-child, .framer-9YWKc .framer-zcdq7n > :last-child, .framer-9YWKc .framer-1l0nor2 > :last-child, .framer-9YWKc .framer-1ptb0w8 > :last-child, .framer-9YWKc .framer-11kendy > :last-child, .framer-9YWKc .framer-1ez20cb > :last-child, .framer-9YWKc .framer-tfptji > :last-child, .framer-9YWKc .framer-r52eva > :last-child, .framer-9YWKc .framer-1bkj8th > :last-child, .framer-9YWKc .framer-1opwcvo > :last-child, .framer-9YWKc .framer-1n4c7ao > :last-child, .framer-9YWKc .framer-1mq0wo9 > :last-child, .framer-9YWKc .framer-wym61r > :last-child, .framer-9YWKc .framer-1mqyl46 > :last-child, .framer-9YWKc .framer-wic3wt > :last-child, .framer-9YWKc .framer-t3zlux > :last-child, .framer-9YWKc .framer-19pyxul > :last-child, .framer-9YWKc .framer-4rkzq4 > :last-child, .framer-9YWKc .framer-18i32xe > :last-child, .framer-9YWKc .framer-quzeo9 > :last-child, .framer-9YWKc .framer-1m2atb1 > :last-child, .framer-9YWKc .framer-ru49z6 > :last-child, .framer-9YWKc .framer-1rbdv5s > :last-child, .framer-9YWKc .framer-1lz2pft > :last-child, .framer-9YWKc .framer-57q03o > :last-child, .framer-9YWKc .framer-kws5ap > :last-child, .framer-9YWKc .framer-7uuwt4 > :last-child, .framer-9YWKc .framer-10xnyp8 > :last-child, .framer-9YWKc .framer-cstee7 > :last-child, .framer-9YWKc .framer-izwwmg > :last-child, .framer-9YWKc .framer-1x8fz80 > :last-child, .framer-9YWKc .framer-4hcd2i > :last-child, .framer-9YWKc .framer-h35l6s > :last-child, .framer-9YWKc .framer-noz271 > :last-child, .framer-9YWKc .framer-2snpsi > :last-child, .framer-9YWKc .framer-1g1szyg > :last-child, .framer-9YWKc .framer-kd2m11 > :last-child, .framer-9YWKc .framer-1mwkxqv > :last-child, .framer-9YWKc .framer-1ovhiva > :last-child, .framer-9YWKc .framer-13ao7sv > :last-child, .framer-9YWKc .framer-1ewye0a > :last-child, .framer-9YWKc .framer-qk3tl9 > :last-child, .framer-9YWKc .framer-1a2nrzf > :last-child, .framer-9YWKc .framer-ask8f0 > :last-child, .framer-9YWKc .framer-unimoi > :last-child, .framer-9YWKc .framer-1s3f0rg > :last-child, .framer-9YWKc .framer-zr3i85 > :last-child, .framer-9YWKc .framer-mjwofk > :last-child, .framer-9YWKc .framer-bn0wk2 > :last-child, .framer-9YWKc .framer-1n8l948 > :last-child, .framer-9YWKc .framer-1wgraqb > :last-child, .framer-9YWKc .framer-1fhxuz2 > :last-child, .framer-9YWKc .framer-1745yk8 > :last-child, .framer-9YWKc .framer-1v3mx5 > :last-child, .framer-9YWKc .framer-1glwta2 > :last-child, .framer-9YWKc .framer-4nbes0 > :last-child, .framer-9YWKc .framer-zd02rf > :last-child, .framer-9YWKc .framer-sdgdfz > :last-child, .framer-9YWKc .framer-1he8jd2 > :last-child, .framer-9YWKc .framer-d5jllj > :last-child, .framer-9YWKc .framer-qhtrbm > :last-child, .framer-9YWKc .framer-kd2zby > :last-child, .framer-9YWKc .framer-1u1s7km > :last-child, .framer-9YWKc .framer-1x5s2o6 > :last-child { margin-right: 0px; } .framer-9YWKc .framer-3t265v > *, .framer-9YWKc .framer-1xbsnub > * { margin: 0px; margin-bottom: calc(128px / 2); margin-top: calc(128px / 2); } .framer-9YWKc .framer-1cbr9kh > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-9YWKc .framer-1u2eksi > *, .framer-9YWKc .framer-1l0nor2 > *, .framer-9YWKc .framer-quzeo9 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-9YWKc .framer-w1i94m > *, .framer-9YWKc .framer-1rzfnv1 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-9YWKc .framer-1jdl56i > *, .framer-9YWKc.framer-isg2jn > *, .framer-9YWKc .framer-dkbnjr > *, .framer-9YWKc .framer-1q14nne > *, .framer-9YWKc .framer-1yrzmuy > *, .framer-9YWKc .framer-131mp1a > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-9YWKc .framer-1edl6mu > *, .framer-9YWKc .framer-5a4bri > *, .framer-9YWKc .framer-3sfza1 > *, .framer-9YWKc .framer-1hcq16o > *, .framer-9YWKc .framer-26cxsr > *, .framer-9YWKc .framer-7nlqc1 > *, .framer-9YWKc .framer-14woiqc > *, .framer-9YWKc .framer-ae8h9p > *, .framer-9YWKc .framer-6sfnx > *, .framer-9YWKc .framer-j48tp0 > *, .framer-9YWKc .framer-1dqkpyt > *, .framer-9YWKc .framer-1bmorc5 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-9YWKc .framer-zcdq7n > *, .framer-9YWKc .framer-11kendy > *, .framer-9YWKc .framer-1mq0wo9 > *, .framer-9YWKc .framer-1m2atb1 > *, .framer-9YWKc .framer-ru49z6 > *, .framer-9YWKc .framer-1lz2pft > *, .framer-9YWKc .framer-kws5ap > *, .framer-9YWKc .framer-7uuwt4 > *, .framer-9YWKc .framer-10xnyp8 > *, .framer-9YWKc .framer-cstee7 > *, .framer-9YWKc .framer-izwwmg > *, .framer-9YWKc .framer-1x8fz80 > *, .framer-9YWKc .framer-1n8l948 > *, .framer-9YWKc .framer-1u1s7km > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9YWKc .framer-9k9p39 > *, .framer-9YWKc .framer-1sh8iwr > *, .framer-9YWKc .framer-crhikp > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-9YWKc .framer-ojwki9 > *, .framer-9YWKc .framer-hpxfm2 > *, .framer-9YWKc .framer-11zj6av > *, .framer-9YWKc .framer-35kv8r > *, .framer-9YWKc .framer-rsy1gx > *, .framer-9YWKc .framer-nuzeb0 > *, .framer-9YWKc .framer-17h1qkq > *, .framer-9YWKc .framer-8fqe09 > *, .framer-9YWKc .framer-1y3cogo > *, .framer-9YWKc .framer-1t6d3qh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-9YWKc .framer-1ptb0w8 > * { margin: 0px; margin-left: calc(208px / 2); margin-right: calc(208px / 2); } .framer-9YWKc .framer-1ez20cb > *, .framer-9YWKc .framer-tfptji > *, .framer-9YWKc .framer-r52eva > *, .framer-9YWKc .framer-1bkj8th > *, .framer-9YWKc .framer-1opwcvo > *, .framer-9YWKc .framer-1n4c7ao > *, .framer-9YWKc .framer-wym61r > *, .framer-9YWKc .framer-1mqyl46 > *, .framer-9YWKc .framer-wic3wt > *, .framer-9YWKc .framer-t3zlux > *, .framer-9YWKc .framer-19pyxul > *, .framer-9YWKc .framer-4rkzq4 > *, .framer-9YWKc .framer-noz271 > *, .framer-9YWKc .framer-2snpsi > *, .framer-9YWKc .framer-1g1szyg > *, .framer-9YWKc .framer-1mwkxqv > *, .framer-9YWKc .framer-1ovhiva > *, .framer-9YWKc .framer-13ao7sv > *, .framer-9YWKc .framer-1ewye0a > *, .framer-9YWKc .framer-1a2nrzf > *, .framer-9YWKc .framer-ask8f0 > *, .framer-9YWKc .framer-unimoi > *, .framer-9YWKc .framer-zr3i85 > *, .framer-9YWKc .framer-mjwofk > *, .framer-9YWKc .framer-bn0wk2 > *, .framer-9YWKc .framer-1fhxuz2 > *, .framer-9YWKc .framer-1745yk8 > *, .framer-9YWKc .framer-1v3mx5 > *, .framer-9YWKc .framer-1glwta2 > *, .framer-9YWKc .framer-4nbes0 > *, .framer-9YWKc .framer-zd02rf > *, .framer-9YWKc .framer-1he8jd2 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-9YWKc .framer-1aj65qb > *, .framer-9YWKc .framer-1s9arlt > *, .framer-9YWKc .framer-1lvllb1 > *, .framer-9YWKc .framer-1lc62go > *, .framer-9YWKc .framer-15w0sra > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-9YWKc .framer-18i32xe > *, .framer-9YWKc .framer-sdgdfz > *, .framer-9YWKc .framer-kd2zby > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-9YWKc .framer-eosedy > *, .framer-9YWKc .framer-bxrp44 > *, .framer-9YWKc .framer-gkvlzb > *, .framer-9YWKc .framer-effupg > *, .framer-9YWKc .framer-11srl42 > *, .framer-9YWKc .framer-125w7se > *, .framer-9YWKc .framer-e0shvh > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-9YWKc .framer-1rbdv5s > * { margin: 0px; margin-left: calc(128px / 2); margin-right: calc(128px / 2); } .framer-9YWKc .framer-57q03o > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-9YWKc .framer-4hcd2i > *, .framer-9YWKc .framer-1wgraqb > * { margin: 0px; margin-left: calc(96px / 2); margin-right: calc(96px / 2); } .framer-9YWKc .framer-1wyhq9x > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9YWKc .framer-1ruicka > * { margin: 0px; margin-bottom: calc(112px / 2); margin-top: calc(112px / 2); } .framer-9YWKc .framer-h35l6s > *, .framer-9YWKc .framer-kd2m11 > *, .framer-9YWKc .framer-qk3tl9 > *, .framer-9YWKc .framer-1s3f0rg > *, .framer-9YWKc .framer-1x5s2o6 > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-9YWKc .framer-dizgf1 > *, .framer-9YWKc .framer-1rd5yc0 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-9YWKc .framer-2nx0so > *, .framer-9YWKc .framer-5vs284 > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-9YWKc .framer-1n3zwa0 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-9YWKc .framer-q9qa27 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,...sharedStyle15.css,...sharedStyle16.css,...sharedStyle17.css,'.framer-9YWKc[data-border=\"true\"]::after, .framer-9YWKc [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1440px) and (max-width: 1919px) { .framer-9YWKc.framer-9u1kxi { width: 1440px; } .framer-9YWKc .framer-3t265v { padding: 168px 128px 168px 128px; } .framer-9YWKc .framer-w1i94m { width: 58%; } .framer-9YWKc .framer-18i32xe { max-width: 1182px; } .framer-9YWKc .framer-1j7xrod { padding: 0px 120px 0px 120px; } .framer-9YWKc .framer-1rbdv5s { gap: 80px; max-width: 1440px; padding: 144px 96px 144px 96px; } .framer-9YWKc .framer-1hcq16o { padding: 0px 100px 0px 100px; } .framer-9YWKc .framer-4hcd2i { gap: 80px; } .framer-9YWKc .framer-1ruicka { gap: 80px; padding: 0px 100px 128px 100px; } .framer-9YWKc .framer-1wgraqb { gap: 80px; padding: 96px; } .framer-9YWKc .framer-1iixvl7 { padding: 0px 80px 80px 80px; } .framer-9YWKc .framer-5vs284 { padding: 64px 150px 168px 80px; } .framer-9YWKc .framer-kd2zby { padding: 96px 160px 96px 240px; } .framer-9YWKc .framer-q9qa27 { padding: 128px 0px 200px 0px; } .framer-9YWKc .framer-1x5s2o6 { align-content: center; align-items: center; padding: 0px 160px 0px 160px; width: 100%; } .framer-9YWKc .framer-1j2w9wg { aspect-ratio: 2.4536423841059603 / 1; height: var(--framer-aspect-ratio-supported, 82px); width: 93%; } .framer-9YWKc .framer-17h1qkq { left: 86%; top: 81%; width: 25%; } .framer-9YWKc .framer-1t6d3qh { padding: 96px 240px 96px 240px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9YWKc .framer-1rbdv5s, .framer-9YWKc .framer-4hcd2i, .framer-9YWKc .framer-1ruicka, .framer-9YWKc .framer-1wgraqb { gap: 0px; } .framer-9YWKc .framer-1rbdv5s > *, .framer-9YWKc .framer-4hcd2i > *, .framer-9YWKc .framer-1wgraqb > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-9YWKc .framer-1rbdv5s > :first-child, .framer-9YWKc .framer-4hcd2i > :first-child, .framer-9YWKc .framer-1wgraqb > :first-child { margin-left: 0px; } .framer-9YWKc .framer-1rbdv5s > :last-child, .framer-9YWKc .framer-4hcd2i > :last-child, .framer-9YWKc .framer-1wgraqb > :last-child { margin-right: 0px; } .framer-9YWKc .framer-1ruicka > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-9YWKc .framer-1ruicka > :first-child { margin-top: 0px; } .framer-9YWKc .framer-1ruicka > :last-child { margin-bottom: 0px; } }}\",\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-9YWKc.framer-9u1kxi { width: 1200px; } .framer-9YWKc .framer-1e9bz63 { padding: 32px 24px 64px 24px; } .framer-9YWKc .framer-ld2z7t-container { aspect-ratio: 7.8125 / 1; height: var(--framer-aspect-ratio-supported, 24px); } .framer-9YWKc .framer-3t265v { gap: 96px; padding: 96px 96px 120px 96px; } .framer-9YWKc .framer-w1i94m { width: 58%; } .framer-9YWKc .framer-18i32xe { max-width: 960px; } .framer-9YWKc .framer-1j7xrod { padding: 0px 96px 0px 96px; } .framer-9YWKc .framer-1rbdv5s { gap: 120px; padding: 144px 96px 144px 96px; } .framer-9YWKc .framer-crhikp { max-width: 640px; } .framer-9YWKc .framer-1hcq16o { padding: 0px 100px 0px 100px; } .framer-9YWKc .framer-4hcd2i { gap: 32px; padding: 0px 80px 0px 80px; } .framer-9YWKc .framer-1ruicka { gap: 80px; padding: 0px 100px 128px 100px; } .framer-9YWKc .framer-1wgraqb { flex-direction: column; gap: 32px; padding: 64px 96px 0px 96px; } .framer-9YWKc .framer-6sfnx, .framer-9YWKc .framer-1v9hvjt { flex: none; width: 100%; } .framer-9YWKc .framer-1xu01q3 { left: 50%; top: 50%; width: 66%; } .framer-9YWKc .framer-dizgf1 { left: 50%; top: -51px; } .framer-9YWKc .framer-1iixvl7 { padding: 0px 80px 80px 80px; } .framer-9YWKc .framer-5vs284 { padding: 64px 96px 168px 96px; } .framer-9YWKc .framer-1dqkpyt { padding: 64px; } .framer-9YWKc .framer-kd2zby { padding: 96px 160px 96px 240px; } .framer-9YWKc .framer-q9qa27 { padding: 88px 0px 200px 0px; } .framer-9YWKc .framer-1x5s2o6 { gap: 48px; padding: 0px 48px 0px 96px; width: 100%; } .framer-9YWKc .framer-rpumas { width: 44%; } .framer-9YWKc .framer-1j2w9wg { aspect-ratio: 2.4536423841059603 / 1; height: var(--framer-aspect-ratio-supported, 82px); width: 93%; } .framer-9YWKc .framer-17h1qkq { left: 86%; top: 81%; width: 25%; } .framer-9YWKc .framer-1y3cogo { padding: 0px 48px 0px 48px; } .framer-9YWKc .framer-19p193c { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-9YWKc .framer-1t6d3qh { padding: 64px 48px 64px 48px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9YWKc .framer-3t265v, .framer-9YWKc .framer-1rbdv5s, .framer-9YWKc .framer-4hcd2i, .framer-9YWKc .framer-1ruicka, .framer-9YWKc .framer-1wgraqb, .framer-9YWKc .framer-1x5s2o6 { gap: 0px; } .framer-9YWKc .framer-3t265v > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-9YWKc .framer-3t265v > :first-child, .framer-9YWKc .framer-1ruicka > :first-child, .framer-9YWKc .framer-1wgraqb > :first-child { margin-top: 0px; } .framer-9YWKc .framer-3t265v > :last-child, .framer-9YWKc .framer-1ruicka > :last-child, .framer-9YWKc .framer-1wgraqb > :last-child { margin-bottom: 0px; } .framer-9YWKc .framer-1rbdv5s > * { margin: 0px; margin-left: calc(120px / 2); margin-right: calc(120px / 2); } .framer-9YWKc .framer-1rbdv5s > :first-child, .framer-9YWKc .framer-4hcd2i > :first-child, .framer-9YWKc .framer-1x5s2o6 > :first-child { margin-left: 0px; } .framer-9YWKc .framer-1rbdv5s > :last-child, .framer-9YWKc .framer-4hcd2i > :last-child, .framer-9YWKc .framer-1x5s2o6 > :last-child { margin-right: 0px; } .framer-9YWKc .framer-4hcd2i > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-9YWKc .framer-1ruicka > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-9YWKc .framer-1wgraqb > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-9YWKc .framer-1x5s2o6 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-9YWKc.framer-9u1kxi { width: 810px; } .framer-9YWKc .framer-1e9bz63 { flex-direction: column; gap: 16px; justify-content: flex-start; left: 0px; padding: 0px; right: 0px; transform: unset; width: unset; } .framer-9YWKc .framer-1d6islv { --border-left-width: 0px; --border-right-width: 0px; overflow: auto; width: 100%; } .framer-9YWKc .framer-3t265v { gap: 528px; padding: 104px 80px 64px 80px; } .framer-9YWKc .framer-typ88h { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 70%); } .framer-9YWKc .framer-1vqqb3l, .framer-9YWKc .framer-1arzmwm, .framer-9YWKc .framer-b8z5w9, .framer-9YWKc .framer-o06j4k { width: 100%; } .framer-9YWKc .framer-1cbr9kh { gap: 360px; } .framer-9YWKc .framer-w1i94m { align-content: center; align-items: center; gap: 48px; width: 100%; } .framer-9YWKc .framer-1jdl56i { gap: 32px; } .framer-9YWKc .framer-1edl6mu, .framer-9YWKc .framer-1ptb0w8 { gap: 24px; } .framer-9YWKc .framer-5a4bri { align-content: center; align-items: center; } .framer-9YWKc .framer-9k9p39 { gap: 48px; padding: 64px 40px 24px 40px; } .framer-9YWKc .framer-ojwki9 { gap: 16px; width: 100%; } .framer-9YWKc .framer-hzyl8v, .framer-9YWKc .framer-hpxfm2 { width: 344px; } .framer-9YWKc .framer-18i32xe { max-width: 960px; } .framer-9YWKc .framer-1j7xrod, .framer-9YWKc .framer-1y3cogo { padding: 0px 48px 0px 48px; } .framer-9YWKc .framer-1rbdv5s { flex-direction: column; gap: 80px; padding: 96px 48px 64px 48px; } .framer-9YWKc .framer-crhikp { flex: none; gap: 48px; max-width: 640px; width: 100%; } .framer-9YWKc .framer-57q03o { flex-direction: column; padding: 0px 48px 0px 48px; } .framer-9YWKc .framer-oo646e, .framer-9YWKc .framer-122h4yh, .framer-9YWKc .framer-mk6sg2 { flex: none; height: var(--framer-aspect-ratio-supported, 187px); width: 332px; } .framer-9YWKc .framer-1lkx4xw-container { flex: none; max-width: 640px; width: 100%; } .framer-9YWKc .framer-1hcq16o { padding: 0px 72px 0px 72px; } .framer-9YWKc .framer-1di0a7z, .framer-9YWKc .framer-19p193c { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-9YWKc .framer-4hcd2i { gap: 24px; padding: 0px 48px 0px 48px; } .framer-9YWKc .framer-1ruicka { gap: 80px; padding: 0px 72px 128px 72px; } .framer-9YWKc .framer-h35l6s, .framer-9YWKc .framer-kd2m11, .framer-9YWKc .framer-qk3tl9, .framer-9YWKc .framer-1s3f0rg { flex-direction: column; gap: 48px; } .framer-9YWKc .framer-26cxsr, .framer-9YWKc .framer-zzket5, .framer-9YWKc .framer-7nlqc1, .framer-9YWKc .framer-1vfyike, .framer-9YWKc .framer-14woiqc, .framer-9YWKc .framer-nceq3n, .framer-9YWKc .framer-ae8h9p, .framer-9YWKc .framer-zlwyjt, .framer-9YWKc .framer-6sfnx, .framer-9YWKc .framer-1v9hvjt, .framer-9YWKc .framer-e0shvh { flex: none; width: 100%; } .framer-9YWKc .framer-1wgraqb { flex-direction: column; gap: 32px; padding: 64px 48px 0px 48px; } .framer-9YWKc .framer-1xu01q3 { left: 50%; width: 76%; } .framer-9YWKc .framer-dizgf1 { left: 50%; top: -51px; } .framer-9YWKc .framer-1iixvl7 { padding: 0px 80px 80px 80px; } .framer-9YWKc .framer-5vs284 { gap: 48px; padding: 64px 48px 64px 48px; } .framer-9YWKc .framer-dkbnjr { order: 3; } .framer-9YWKc .framer-1q14nne { gap: 24px; order: 0; } .framer-9YWKc .framer-d5jllj { order: 1; } .framer-9YWKc .framer-1dqkpyt { flex: 1 0 0px; gap: 24px; padding: 48px 32px 48px 32px; } .framer-9YWKc .framer-qhtrbm { flex-direction: column; gap: 32px; } .framer-9YWKc .framer-1n3zwa0 { justify-content: flex-start; padding: 32px; } .framer-9YWKc .framer-jb9ivq-container { order: 2; } .framer-9YWKc .framer-kd2zby { padding: 96px 80px 96px 80px; } .framer-9YWKc .framer-q9qa27 { gap: 170px; } .framer-9YWKc .framer-1x5s2o6 { gap: 48px; padding: 0px 48px 0px 96px; width: 100%; } .framer-9YWKc .framer-rpumas { width: 44%; } .framer-9YWKc .framer-1j2w9wg { aspect-ratio: 2.4536423841059603 / 1; height: var(--framer-aspect-ratio-supported, 82px); width: 93%; } .framer-9YWKc .framer-130zi1w { right: 27px; } .framer-9YWKc .framer-z3h8e6 { right: 1px; top: -49px; } .framer-9YWKc .framer-17h1qkq { left: 86%; top: 81%; width: 25%; } .framer-9YWKc .framer-fy9l8i { right: 0px; top: -68px; } .framer-9YWKc .framer-1bnzkiv { right: -50px; top: -48px; } .framer-9YWKc .framer-1t6d3qh { padding: 64px 48px 64px 48px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9YWKc .framer-1e9bz63, .framer-9YWKc .framer-3t265v, .framer-9YWKc .framer-1cbr9kh, .framer-9YWKc .framer-w1i94m, .framer-9YWKc .framer-1jdl56i, .framer-9YWKc .framer-1edl6mu, .framer-9YWKc .framer-9k9p39, .framer-9YWKc .framer-ojwki9, .framer-9YWKc .framer-1ptb0w8, .framer-9YWKc .framer-1rbdv5s, .framer-9YWKc .framer-crhikp, .framer-9YWKc .framer-57q03o, .framer-9YWKc .framer-4hcd2i, .framer-9YWKc .framer-1ruicka, .framer-9YWKc .framer-h35l6s, .framer-9YWKc .framer-kd2m11, .framer-9YWKc .framer-qk3tl9, .framer-9YWKc .framer-1s3f0rg, .framer-9YWKc .framer-1wgraqb, .framer-9YWKc .framer-5vs284, .framer-9YWKc .framer-1q14nne, .framer-9YWKc .framer-1dqkpyt, .framer-9YWKc .framer-qhtrbm, .framer-9YWKc .framer-q9qa27, .framer-9YWKc .framer-1x5s2o6 { gap: 0px; } .framer-9YWKc .framer-1e9bz63 > *, .framer-9YWKc .framer-ojwki9 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-9YWKc .framer-1e9bz63 > :first-child, .framer-9YWKc .framer-3t265v > :first-child, .framer-9YWKc .framer-1cbr9kh > :first-child, .framer-9YWKc .framer-w1i94m > :first-child, .framer-9YWKc .framer-1jdl56i > :first-child, .framer-9YWKc .framer-1edl6mu > :first-child, .framer-9YWKc .framer-9k9p39 > :first-child, .framer-9YWKc .framer-ojwki9 > :first-child, .framer-9YWKc .framer-1rbdv5s > :first-child, .framer-9YWKc .framer-crhikp > :first-child, .framer-9YWKc .framer-57q03o > :first-child, .framer-9YWKc .framer-1ruicka > :first-child, .framer-9YWKc .framer-h35l6s > :first-child, .framer-9YWKc .framer-kd2m11 > :first-child, .framer-9YWKc .framer-qk3tl9 > :first-child, .framer-9YWKc .framer-1s3f0rg > :first-child, .framer-9YWKc .framer-1wgraqb > :first-child, .framer-9YWKc .framer-5vs284 > :first-child, .framer-9YWKc .framer-1q14nne > :first-child, .framer-9YWKc .framer-1dqkpyt > :first-child, .framer-9YWKc .framer-qhtrbm > :first-child, .framer-9YWKc .framer-q9qa27 > :first-child { margin-top: 0px; } .framer-9YWKc .framer-1e9bz63 > :last-child, .framer-9YWKc .framer-3t265v > :last-child, .framer-9YWKc .framer-1cbr9kh > :last-child, .framer-9YWKc .framer-w1i94m > :last-child, .framer-9YWKc .framer-1jdl56i > :last-child, .framer-9YWKc .framer-1edl6mu > :last-child, .framer-9YWKc .framer-9k9p39 > :last-child, .framer-9YWKc .framer-ojwki9 > :last-child, .framer-9YWKc .framer-1rbdv5s > :last-child, .framer-9YWKc .framer-crhikp > :last-child, .framer-9YWKc .framer-57q03o > :last-child, .framer-9YWKc .framer-1ruicka > :last-child, .framer-9YWKc .framer-h35l6s > :last-child, .framer-9YWKc .framer-kd2m11 > :last-child, .framer-9YWKc .framer-qk3tl9 > :last-child, .framer-9YWKc .framer-1s3f0rg > :last-child, .framer-9YWKc .framer-1wgraqb > :last-child, .framer-9YWKc .framer-5vs284 > :last-child, .framer-9YWKc .framer-1q14nne > :last-child, .framer-9YWKc .framer-1dqkpyt > :last-child, .framer-9YWKc .framer-qhtrbm > :last-child, .framer-9YWKc .framer-q9qa27 > :last-child { margin-bottom: 0px; } .framer-9YWKc .framer-3t265v > * { margin: 0px; margin-bottom: calc(528px / 2); margin-top: calc(528px / 2); } .framer-9YWKc .framer-1cbr9kh > * { margin: 0px; margin-bottom: calc(360px / 2); margin-top: calc(360px / 2); } .framer-9YWKc .framer-w1i94m > *, .framer-9YWKc .framer-9k9p39 > *, .framer-9YWKc .framer-crhikp > *, .framer-9YWKc .framer-h35l6s > *, .framer-9YWKc .framer-kd2m11 > *, .framer-9YWKc .framer-qk3tl9 > *, .framer-9YWKc .framer-1s3f0rg > *, .framer-9YWKc .framer-5vs284 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-9YWKc .framer-1jdl56i > *, .framer-9YWKc .framer-57q03o > *, .framer-9YWKc .framer-1wgraqb > *, .framer-9YWKc .framer-qhtrbm > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-9YWKc .framer-1edl6mu > *, .framer-9YWKc .framer-1q14nne > *, .framer-9YWKc .framer-1dqkpyt > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-9YWKc .framer-1ptb0w8 > *, .framer-9YWKc .framer-4hcd2i > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-9YWKc .framer-1ptb0w8 > :first-child, .framer-9YWKc .framer-4hcd2i > :first-child, .framer-9YWKc .framer-1x5s2o6 > :first-child { margin-left: 0px; } .framer-9YWKc .framer-1ptb0w8 > :last-child, .framer-9YWKc .framer-4hcd2i > :last-child, .framer-9YWKc .framer-1x5s2o6 > :last-child { margin-right: 0px; } .framer-9YWKc .framer-1rbdv5s > *, .framer-9YWKc .framer-1ruicka > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-9YWKc .framer-q9qa27 > * { margin: 0px; margin-bottom: calc(170px / 2); margin-top: calc(170px / 2); } .framer-9YWKc .framer-1x5s2o6 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } }}\",\"@media (max-width: 809px) { .framer-9YWKc.framer-9u1kxi { width: 390px; } .framer-9YWKc .framer-1e9bz63 { flex-direction: column; gap: 16px; justify-content: flex-start; left: 0px; padding: 0px; right: 0px; transform: unset; width: unset; } .framer-9YWKc .framer-1d6islv { --border-left-width: 0px; --border-right-width: 0px; overflow: auto; width: 100%; } .framer-9YWKc .framer-3t265v { gap: 448px; padding: 64px 24px 40px 24px; } .framer-9YWKc .framer-typ88h { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 53%, rgb(0, 0, 0) 75%); } .framer-9YWKc .framer-1vqqb3l { bottom: unset; height: 75%; width: 100%; } .framer-9YWKc .framer-1u2eksi { flex-direction: column; flex-wrap: wrap; gap: 8px; justify-content: center; padding: 0px 24px 0px 24px; width: 100%; z-index: 2; } .framer-9YWKc .framer-1w8off4 { opacity: 0.7; order: 1; } .framer-9YWKc .framer-kov0rs, .framer-9YWKc .framer-dkbnjr { order: 0; } .framer-9YWKc .framer-w1i94m { align-content: center; align-items: center; gap: 48px; width: 100%; } .framer-9YWKc .framer-1jdl56i { gap: 24px; } .framer-9YWKc .framer-1edl6mu { gap: 16px; } .framer-9YWKc .framer-5a4bri { align-content: center; align-items: center; width: 100%; } .framer-9YWKc .framer-m0egsk-container, .framer-9YWKc .framer-1arzmwm, .framer-9YWKc .framer-b8z5w9, .framer-9YWKc .framer-o06j4k, .framer-9YWKc .framer-hzyl8v, .framer-9YWKc .framer-rpumas { width: 100%; } .framer-9YWKc .framer-1l0nor2 { justify-content: center; min-width: unset; width: 100%; } .framer-9YWKc .framer-9k9p39 { gap: 48px; padding: 64px 24px 24px 24px; } .framer-9YWKc .framer-ojwki9 { gap: 16px; width: 100%; } .framer-9YWKc .framer-1ptb0w8 { align-content: center; align-items: center; flex-direction: column; gap: 80px; } .framer-9YWKc .framer-1ez20cb, .framer-9YWKc .framer-tfptji, .framer-9YWKc .framer-r52eva, .framer-9YWKc .framer-1bkj8th, .framer-9YWKc .framer-1opwcvo, .framer-9YWKc .framer-1n4c7ao { padding: 20px 40px 20px 40px; } .framer-9YWKc .framer-hpxfm2 { max-width: 392px; padding: 0px 24px 0px 24px; width: 100%; } .framer-9YWKc .framer-18i32xe { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; max-width: 1182px; padding: 0px 24px 0px 24px; } .framer-9YWKc .framer-quzeo9 { flex: none; width: min-content; } .framer-9YWKc .framer-1m2atb1 { flex: none; padding: 24px 24px 24px 32px; width: 100%; } .framer-9YWKc .framer-1web6zy { left: 40px; top: -24px; } .framer-9YWKc .framer-1sh8iwr { gap: 48px; padding: 64px 0px 64px 0px; } .framer-9YWKc .framer-1j7xrod { flex-direction: column; gap: 32px; justify-content: flex-start; padding: 0px 24px 0px 24px; } .framer-9YWKc .framer-1rbdv5s { flex-direction: column; gap: 32px; padding: 16px 16px 64px 16px; } .framer-9YWKc .framer-crhikp { flex: none; gap: 40px; order: 1; padding: 32px; width: 100%; } .framer-9YWKc .framer-miuudk { white-space: pre-wrap; width: 74%; word-break: break-word; word-wrap: break-word; } .framer-9YWKc .framer-57q03o { flex-direction: column; gap: 16px; padding: 0px 24px 0px 24px; } .framer-9YWKc .framer-oo646e, .framer-9YWKc .framer-122h4yh, .framer-9YWKc .framer-mk6sg2 { flex: none; height: var(--framer-aspect-ratio-supported, 143px); width: 254px; } .framer-9YWKc .framer-1lkx4xw-container, .framer-9YWKc .framer-zzket5, .framer-9YWKc .framer-1vfyike, .framer-9YWKc .framer-nceq3n, .framer-9YWKc .framer-zlwyjt { flex: none; order: 0; width: 100%; } .framer-9YWKc .framer-1xbsnub { gap: 80px; padding: 64px 0px 0px 0px; } .framer-9YWKc .framer-1hcq16o { gap: 24px; padding: 0px 24px 0px 24px; } .framer-9YWKc .framer-4hcd2i { gap: 16px; padding: 0px 24px 0px 24px; } .framer-9YWKc .framer-1wyhq9x { left: 61%; top: -40px; } .framer-9YWKc .framer-12v34mp-container { bottom: -11px; height: var(--framer-aspect-ratio-supported, 30px); left: -37px; top: unset; width: 30px; } .framer-9YWKc .framer-1ruicka, .framer-9YWKc .framer-1iixvl7 { padding: 0px 24px 48px 24px; } .framer-9YWKc .framer-h35l6s, .framer-9YWKc .framer-kd2m11, .framer-9YWKc .framer-qk3tl9, .framer-9YWKc .framer-1s3f0rg { flex-direction: column; gap: 32px; } .framer-9YWKc .framer-26cxsr, .framer-9YWKc .framer-7nlqc1, .framer-9YWKc .framer-14woiqc, .framer-9YWKc .framer-ae8h9p { flex: none; order: 1; width: 100%; } .framer-9YWKc .framer-tw2cjy, .framer-9YWKc .framer-a35p5g, .framer-9YWKc .framer-uyto84, .framer-9YWKc .framer-j0h7zi { gap: 12px; grid-template-columns: repeat(1, minmax(200px, 1fr)); justify-content: start; } .framer-9YWKc .framer-1wgraqb { flex-direction: column; gap: 48px; overflow: visible; padding: 96px 24px 16px 24px; } .framer-9YWKc .framer-6sfnx, .framer-9YWKc .framer-131mp1a { flex: none; width: 100%; } .framer-9YWKc .framer-1v9hvjt { aspect-ratio: 1.0058823529411764 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 199px); width: 100%; } .framer-9YWKc .framer-jpuzla-container { left: 50%; top: -43px; transform: translateX(-50%); } .framer-9YWKc .framer-1xu01q3 { left: 50%; top: 55%; width: 100%; } .framer-9YWKc .framer-j48tp0, .framer-9YWKc .framer-1y3cogo { padding: 0px 24px 0px 24px; } .framer-9YWKc .framer-sdgdfz { height: 1200px; overflow: hidden; } .framer-9YWKc .framer-5vs284 { gap: 64px; padding: 64px 24px 168px 24px; } .framer-9YWKc .framer-1q14nne { gap: 16px; order: 1; } .framer-9YWKc .framer-d5jllj { flex-direction: column; gap: 24px; order: 2; } .framer-9YWKc .framer-1dqkpyt { flex: none; gap: 24px; padding: 20px; width: 100%; } .framer-9YWKc .framer-1n3zwa0 { flex: none; gap: 24px; justify-content: flex-start; padding: 24px; width: 100%; } .framer-9YWKc .framer-jb9ivq-container { order: 3; } .framer-9YWKc .framer-kd2zby { flex-direction: column; gap: 32px; padding: 64px 24px 96px 24px; } .framer-9YWKc .framer-1u1s7km { flex: none; flex-direction: column; width: 100%; } .framer-9YWKc .framer-1yrzmuy { gap: 32px; order: 1; width: 100%; } .framer-9YWKc .framer-u7n34z { order: 0; width: 70%; } .framer-9YWKc .framer-q9qa27 { padding: 0px 0px 88px 0px; } .framer-9YWKc .framer-1x5s2o6 { align-content: center; align-items: center; flex-direction: column; gap: 24px; padding: 0px 24px 0px 24px; width: 100%; } .framer-9YWKc .framer-1j2w9wg { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 104px; height: min-content; justify-content: center; padding: 72px 0px 0px 0px; width: 93%; } .framer-9YWKc .framer-rsy1gx, .framer-9YWKc .framer-nuzeb0, .framer-9YWKc .framer-17h1qkq, .framer-9YWKc .framer-8fqe09 { left: unset; position: relative; top: unset; transform: unset; width: 96%; } .framer-9YWKc .framer-130zi1w { right: 51px; } .framer-9YWKc .framer-z3h8e6 { left: 68px; right: unset; top: -65px; } .framer-9YWKc .framer-fy9l8i { right: 40px; top: -84px; } .framer-9YWKc .framer-1bnzkiv { left: 90px; right: unset; top: -64px; } .framer-9YWKc .framer-1poxyjx { padding: 80px 0px 0px 0px; } .framer-9YWKc .framer-1dekk87, .framer-9YWKc .framer-19p193c { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-9YWKc .framer-1t6d3qh { gap: 16px; padding: 48px 24px 64px 24px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9YWKc .framer-1e9bz63, .framer-9YWKc .framer-3t265v, .framer-9YWKc .framer-1u2eksi, .framer-9YWKc .framer-w1i94m, .framer-9YWKc .framer-1jdl56i, .framer-9YWKc .framer-1edl6mu, .framer-9YWKc .framer-9k9p39, .framer-9YWKc .framer-ojwki9, .framer-9YWKc .framer-1ptb0w8, .framer-9YWKc .framer-18i32xe, .framer-9YWKc .framer-1sh8iwr, .framer-9YWKc .framer-1j7xrod, .framer-9YWKc .framer-1rbdv5s, .framer-9YWKc .framer-crhikp, .framer-9YWKc .framer-57q03o, .framer-9YWKc .framer-1xbsnub, .framer-9YWKc .framer-1hcq16o, .framer-9YWKc .framer-4hcd2i, .framer-9YWKc .framer-h35l6s, .framer-9YWKc .framer-tw2cjy, .framer-9YWKc .framer-kd2m11, .framer-9YWKc .framer-a35p5g, .framer-9YWKc .framer-qk3tl9, .framer-9YWKc .framer-uyto84, .framer-9YWKc .framer-1s3f0rg, .framer-9YWKc .framer-j0h7zi, .framer-9YWKc .framer-1wgraqb, .framer-9YWKc .framer-5vs284, .framer-9YWKc .framer-1q14nne, .framer-9YWKc .framer-d5jllj, .framer-9YWKc .framer-1dqkpyt, .framer-9YWKc .framer-1n3zwa0, .framer-9YWKc .framer-kd2zby, .framer-9YWKc .framer-1u1s7km, .framer-9YWKc .framer-1yrzmuy, .framer-9YWKc .framer-1x5s2o6, .framer-9YWKc .framer-1j2w9wg, .framer-9YWKc .framer-1t6d3qh { gap: 0px; } .framer-9YWKc .framer-1e9bz63 > *, .framer-9YWKc .framer-1edl6mu > *, .framer-9YWKc .framer-ojwki9 > *, .framer-9YWKc .framer-57q03o > *, .framer-9YWKc .framer-1q14nne > *, .framer-9YWKc .framer-1t6d3qh > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-9YWKc .framer-1e9bz63 > :first-child, .framer-9YWKc .framer-3t265v > :first-child, .framer-9YWKc .framer-1u2eksi > :first-child, .framer-9YWKc .framer-w1i94m > :first-child, .framer-9YWKc .framer-1jdl56i > :first-child, .framer-9YWKc .framer-1edl6mu > :first-child, .framer-9YWKc .framer-9k9p39 > :first-child, .framer-9YWKc .framer-ojwki9 > :first-child, .framer-9YWKc .framer-1ptb0w8 > :first-child, .framer-9YWKc .framer-18i32xe > :first-child, .framer-9YWKc .framer-1sh8iwr > :first-child, .framer-9YWKc .framer-1j7xrod > :first-child, .framer-9YWKc .framer-1rbdv5s > :first-child, .framer-9YWKc .framer-crhikp > :first-child, .framer-9YWKc .framer-57q03o > :first-child, .framer-9YWKc .framer-1xbsnub > :first-child, .framer-9YWKc .framer-1hcq16o > :first-child, .framer-9YWKc .framer-h35l6s > :first-child, .framer-9YWKc .framer-kd2m11 > :first-child, .framer-9YWKc .framer-qk3tl9 > :first-child, .framer-9YWKc .framer-1s3f0rg > :first-child, .framer-9YWKc .framer-1wgraqb > :first-child, .framer-9YWKc .framer-5vs284 > :first-child, .framer-9YWKc .framer-1q14nne > :first-child, .framer-9YWKc .framer-d5jllj > :first-child, .framer-9YWKc .framer-1dqkpyt > :first-child, .framer-9YWKc .framer-1n3zwa0 > :first-child, .framer-9YWKc .framer-kd2zby > :first-child, .framer-9YWKc .framer-1u1s7km > :first-child, .framer-9YWKc .framer-1yrzmuy > :first-child, .framer-9YWKc .framer-1x5s2o6 > :first-child, .framer-9YWKc .framer-1j2w9wg > :first-child, .framer-9YWKc .framer-1t6d3qh > :first-child { margin-top: 0px; } .framer-9YWKc .framer-1e9bz63 > :last-child, .framer-9YWKc .framer-3t265v > :last-child, .framer-9YWKc .framer-1u2eksi > :last-child, .framer-9YWKc .framer-w1i94m > :last-child, .framer-9YWKc .framer-1jdl56i > :last-child, .framer-9YWKc .framer-1edl6mu > :last-child, .framer-9YWKc .framer-9k9p39 > :last-child, .framer-9YWKc .framer-ojwki9 > :last-child, .framer-9YWKc .framer-1ptb0w8 > :last-child, .framer-9YWKc .framer-18i32xe > :last-child, .framer-9YWKc .framer-1sh8iwr > :last-child, .framer-9YWKc .framer-1j7xrod > :last-child, .framer-9YWKc .framer-1rbdv5s > :last-child, .framer-9YWKc .framer-crhikp > :last-child, .framer-9YWKc .framer-57q03o > :last-child, .framer-9YWKc .framer-1xbsnub > :last-child, .framer-9YWKc .framer-1hcq16o > :last-child, .framer-9YWKc .framer-h35l6s > :last-child, .framer-9YWKc .framer-kd2m11 > :last-child, .framer-9YWKc .framer-qk3tl9 > :last-child, .framer-9YWKc .framer-1s3f0rg > :last-child, .framer-9YWKc .framer-1wgraqb > :last-child, .framer-9YWKc .framer-5vs284 > :last-child, .framer-9YWKc .framer-1q14nne > :last-child, .framer-9YWKc .framer-d5jllj > :last-child, .framer-9YWKc .framer-1dqkpyt > :last-child, .framer-9YWKc .framer-1n3zwa0 > :last-child, .framer-9YWKc .framer-kd2zby > :last-child, .framer-9YWKc .framer-1u1s7km > :last-child, .framer-9YWKc .framer-1yrzmuy > :last-child, .framer-9YWKc .framer-1x5s2o6 > :last-child, .framer-9YWKc .framer-1j2w9wg > :last-child, .framer-9YWKc .framer-1t6d3qh > :last-child { margin-bottom: 0px; } .framer-9YWKc .framer-3t265v > * { margin: 0px; margin-bottom: calc(448px / 2); margin-top: calc(448px / 2); } .framer-9YWKc .framer-1u2eksi > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-9YWKc .framer-w1i94m > *, .framer-9YWKc .framer-9k9p39 > *, .framer-9YWKc .framer-1sh8iwr > *, .framer-9YWKc .framer-1wgraqb > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-9YWKc .framer-1jdl56i > *, .framer-9YWKc .framer-18i32xe > *, .framer-9YWKc .framer-1hcq16o > *, .framer-9YWKc .framer-d5jllj > *, .framer-9YWKc .framer-1dqkpyt > *, .framer-9YWKc .framer-1n3zwa0 > *, .framer-9YWKc .framer-1x5s2o6 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-9YWKc .framer-1ptb0w8 > *, .framer-9YWKc .framer-1xbsnub > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-9YWKc .framer-1j7xrod > *, .framer-9YWKc .framer-1rbdv5s > *, .framer-9YWKc .framer-h35l6s > *, .framer-9YWKc .framer-kd2m11 > *, .framer-9YWKc .framer-qk3tl9 > *, .framer-9YWKc .framer-1s3f0rg > *, .framer-9YWKc .framer-kd2zby > *, .framer-9YWKc .framer-1yrzmuy > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-9YWKc .framer-crhikp > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-9YWKc .framer-4hcd2i > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-9YWKc .framer-4hcd2i > :first-child { margin-left: 0px; } .framer-9YWKc .framer-4hcd2i > :last-child { margin-right: 0px; } .framer-9YWKc .framer-tw2cjy > *, .framer-9YWKc .framer-tw2cjy > :first-child, .framer-9YWKc .framer-tw2cjy > :last-child, .framer-9YWKc .framer-a35p5g > *, .framer-9YWKc .framer-a35p5g > :first-child, .framer-9YWKc .framer-a35p5g > :last-child, .framer-9YWKc .framer-uyto84 > *, .framer-9YWKc .framer-uyto84 > :first-child, .framer-9YWKc .framer-uyto84 > :last-child, .framer-9YWKc .framer-j0h7zi > *, .framer-9YWKc .framer-j0h7zi > :first-child, .framer-9YWKc .framer-j0h7zi > :last-child { margin: 0px; } .framer-9YWKc .framer-5vs284 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-9YWKc .framer-1u1s7km > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9YWKc .framer-1j2w9wg > * { margin: 0px; margin-bottom: calc(104px / 2); margin-top: calc(104px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 16514\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"DkbOqTVHM\":{\"layout\":[\"fixed\",\"auto\"]},\"JzFPzPkCn\":{\"layout\":[\"fixed\",\"auto\"]},\"yv6tABt87\":{\"layout\":[\"fixed\",\"auto\"]},\"UqsXmKWpT\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerResponsiveScreen\n */const FramerURGdo9NKO=withCSS(Component,css,\"framer-9YWKc\");export default FramerURGdo9NKO;FramerURGdo9NKO.displayName=\"Products / Ui Grids And Layouts\";FramerURGdo9NKO.defaultProps={height:16514,width:1920};addFonts(FramerURGdo9NKO,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Biennale Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/f7h3Y7X9bRSjSJNxpUn7Hcvmjs.otf\"},{family:\"Biennale Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/xi02ap7hUGVdqKIGZ34Ef060MUQ.otf\"},{family:\"Biennale Black\",source:\"custom\",url:\"https://framerusercontent.com/assets/Ooilr7NgOysHbKwYOMdSIzDk38.otf\"},{family:\"Biennale SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/UXHUYYCGJ8VuzwqkvxNXOZrf64.woff\"},{family:\"Adorable Quotes Display Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/9X1j4VF7rKpehEdviIgcsOauSmw.woff2\"}]},...LogoFonts,...NavItemFonts,...ButtonsProductsButtonFonts,...UIFramerSelectionFonts,...RandomRotationFonts,...SegmentedControlLightFonts,...SyllabusCardBWFonts,...CarouselFonts,...FormButtonsGridsFonts,...SlideshowFonts,...SVG1Fonts,...BookSimpleFlipHoverFonts,...HeroFonts,...SubtitlesTickerFonts,...TestimonialsTestimonialCardGridsFonts,...MasonryLayoutFonts,...TickerFonts,...ListItemPricingCardNewFonts,...LEDMatrixFonts,...FaqItemFonts,...PageSectionsFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...getFontsFromSharedStyle(sharedStyle15.fonts),...getFontsFromSharedStyle(sharedStyle16.fonts),...getFontsFromSharedStyle(sharedStyle17.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerURGdo9NKO\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"16514\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DkbOqTVHM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JzFPzPkCn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yv6tABt87\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UqsXmKWpT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1920\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "sync", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "radiusForCorner", "value", "cornerIndex", "segments", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "click", "errorText", "height", "id", "radius", "succesText", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "owvtFx4R6", "dOrkaB52f", "FoZgQpKIz", "SXCbKDSo7", "BDOy5eyJV", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap12mo881", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramereHJmZa7p4", "withCSS", "eHJmZa7p4_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "radiusForCorner", "value", "cornerIndex", "segments", "transition1", "toResponsiveImage", "isSet", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "avatar", "height", "id", "link", "name1", "radius", "showAvatar", "text", "username", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "j51UPcPUf", "s6weZ9qiW", "x7DGBWrrV", "aL8n1ZiKL", "bmwYwvpz_", "ynU7tX4cK", "fJmjMaVNY", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "visible", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Link", "Image2", "getLoadingLazyAtYPosition", "RichText2", "SVG", "css", "FramerPczC_9xZX", "withCSS", "PczC_9xZX_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SVGFonts", "getFonts", "SVG_Prod_default", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "circleColor", "height", "iconColor", "id", "text", "textColor", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "x2V6263O9", "gLi93Tys6", "gSe2_aF8n", "aloAOh2r1", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "SVG_Prod_default", "RichText2", "css", "FramerW8NGIYwK6", "withCSS", "W8NGIYwK6_default", "addPropertyControls", "ControlType", "addFonts", "SVGFonts", "LogoFonts", "getFonts", "rMEog3O1g_default", "NavItemFonts", "yOay3VsD3_default", "NavItemWithVariantAppearEffect", "withVariantAppearEffect", "ButtonsProductsButtonFonts", "FoJGBhV5J_default", "MotionHeaderWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "UIFramerSelectionFonts", "C0OO4GKoy_default", "RandomRotationFonts", "RandomRotation", "MotionDivWithFX", "SegmentedControlLightFonts", "q5JblU3sz_default", "SegmentedControlLightWithTogglePeriodWithMappedReactProps1sikimv", "withMappedReactProps", "withTogglePeriod", "q5JblU3sz_exports", "SyllabusCardBWFonts", "rZzf4c8Eq_default", "SyllabusCardBWWithSyllabusCardWithMappedReactProps15131rd", "withSyllabusCard", "rZzf4c8Eq_exports", "CarouselFonts", "Carousel", "CarouselWithTogglePeriod", "FormButtonsGridsFonts", "eHJmZa7p4_default", "SlideshowFonts", "Slideshow", "SVG1Fonts", "SVG_Prod_default", "BookSimpleFlipHoverFonts", "aBM0ZOmjC_default", "HeroFonts", "Icon", "ImageWithFX", "Image2", "ImageWithIntesity3", "withIntesity3", "SubtitlesTickerFonts", "AhFkQa4DS_default", "TestimonialsTestimonialCardGridsFonts", "PczC_9xZX_default", "MasonryLayoutFonts", "x", "MotionDivWithExpandButtonWithOptimizedAppearEffect", "withExpandButton", "MotionDivWithFadeOut", "withFadeOut", "MotionDivWithToggleTestimonials", "withToggleTestimonials", "TickerFonts", "Ticker", "ButtonsProductsButtonApplyDataAttributesWithMappedReactProps1gy9njo", "applyDataAttributes", "FoJGBhV5J_exports", "ContainerWithFX", "Container", "ListItemPricingCardNewFonts", "W8NGIYwK6_default", "LEDMatrixFonts", "LedMatrix", "RichTextWithTextBalancer", "withTextBalancer", "RichText2", "FaqItemFonts", "iIhMp9uFS_default", "PageSectionsFooterFonts", "vpmBxpnkA_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "animation2", "transition2", "animation3", "animation4", "animation5", "transition3", "getTextEffect", "ref", "animation6", "transition4", "transition5", "transition6", "transition7", "transition8", "getTextEffect1", "animation7", "addImageAlt", "image", "alt", "formVariants", "form", "variants", "currentVariant", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation8", "transition9", "animation9", "animation10", "transformTemplate2", "animation11", "transition10", "animation12", "transition11", "animation13", "transition12", "animation14", "transition13", "animation15", "animation16", "transition14", "animation17", "animation18", "animation19", "transition15", "animation20", "transition16", "transition17", "transition18", "transition19", "animation21", "transition20", "animation22", "animation23", "transformTemplate3", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onLoading3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "ref1", "pe", "ref2", "isDisplayed", "router", "useRouter", "ref3", "ref4", "ref5", "ref6", "ref7", "ref8", "ref9", "ref10", "elementId", "useRouteElementId", "elementId1", "ref11", "elementId2", "ref12", "elementId3", "ref13", "elementId4", "elementId5", "elementId6", "elementId7", "ref14", "elementId8", "ref15", "elementId9", "ref16", "elementId10", "ref17", "elementId11", "isDisplayed1", "elementId12", "elementId13", "ref18", "elementId14", "ref19", "elementId15", "ref20", "elementId16", "elementId17", "elementId18", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "SVG", "Link", "l", "FormContainer", "formState", "FormPlainTextInput2", "FormBooleanInput", "AnimatePresence", "Ga", "css", "FramerURGdo9NKO", "withCSS", "URGdo9NKO_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
