{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/fU5j7fFlZYPzNcRCNGZV/AYDNvJxHZdP3ECD6kKDW/EVJ3av4P9.js", "ssg:https://framerusercontent.com/modules/DA9LNcUV5lyRwIzW32KG/AKXxh7zg9ArlwqzxXNLm/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{startTransition(()=>setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches));},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (50a537b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";const VideoFonts=getFonts(Video);const FeatherFonts=getFonts(Feather);const VideoControls=getPropertyControls(Video);const cycleOrder=[\"RBVZxi07_\",\"EfqHp59xv\"];const serializationHash=\"framer-abpje\";const variantClassNames={EfqHp59xv:\"framer-v-yth0qn\",RBVZxi07_:\"framer-v-w2py2l\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"RBVZxi07_\",\"Variant 2\":\"EfqHp59xv\"};const getProps=({certification,cover,file,height,id,name1,subtext,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,JovVoa3Rr:(_ref=subtext!==null&&subtext!==void 0?subtext:props.JovVoa3Rr)!==null&&_ref!==void 0?_ref:\"Practicing Advocate at Delhi High Court.\",odkjOYEZa:(_ref1=certification!==null&&certification!==void 0?certification:props.odkjOYEZa)!==null&&_ref1!==void 0?_ref1:\"Certification in Mergers and Acquisitions\",OtVCDef4s:cover!==null&&cover!==void 0?cover:props.OtVCDef4s,qDkOtgrcJ:(_ref2=file!==null&&file!==void 0?file:props.qDkOtgrcJ)!==null&&_ref2!==void 0?_ref2:\"https://framerusercontent.com/assets/HtsHlcFVSEiwNrnqptLlTUZgbk.mp4\",rofeQqNDz:(_ref3=name1!==null&&name1!==void 0?name1:props.rofeQqNDz)!==null&&_ref3!==void 0?_ref3:\"Tarun Sharma\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"RBVZxi07_\"};};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,rofeQqNDz,JovVoa3Rr,qDkOtgrcJ,OtVCDef4s,odkjOYEZa,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"RBVZxi07_\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1mkspye=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"EfqHp59xv\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"EfqHp59xv\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-w2py2l\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"RBVZxi07_\",onTap:onTap1mkspye,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({EfqHp59xv:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rujqvx-container\",layoutDependency:layoutDependency,layoutId:\"sHMTjfS9Y-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,controls:true,height:\"100%\",id:\"sHMTjfS9Y\",isMixedBorderRadius:false,layoutId:\"sHMTjfS9Y\",loop:true,muted:false,objectFit:\"cover\",playing:false,poster:toImageSrc(OtVCDef4s),posterEnabled:true,srcFile:qDkOtgrcJ,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:16,topRightRadius:16,volume:51,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-12k3l2\",\"data-framer-name\":\"PLAY\",layoutDependency:layoutDependency,layoutId:\"Axe35Ji9J\",style:{backgroundColor:\"rgba(255, 255, 255, 0.6)\",borderBottomLeftRadius:44,borderBottomRightRadius:44,borderTopLeftRadius:44,borderTopRightRadius:44},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5t4szk-container\",layoutDependency:layoutDependency,layoutId:\"hLoBJ21I0-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-f1804730-6905-4b48-965a-62b6170a88df, rgb(242, 135, 76))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"play\",id:\"hLoBJ21I0\",layoutId:\"hLoBJ21I0\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i0f487\",layoutDependency:layoutDependency,layoutId:\"Ljz81lryX\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x9uc17\",layoutDependency:layoutDependency,layoutId:\"QfOKrloeC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-56b7112a-d292-41ce-9ea0-07245415e0d0, rgb(255, 255, 255)))\"},children:\"Tarun Sharma\"})}),className:\"framer-2h8o3f\",fonts:[\"GF;Open Sans-600\"],layoutDependency:layoutDependency,layoutId:\"L6gmFkIIj\",style:{\"--extracted-r6o4lv\":\"var(--token-56b7112a-d292-41ce-9ea0-07245415e0d0, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:rofeQqNDz,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-56b7112a-d292-41ce-9ea0-07245415e0d0, rgb(255, 255, 255)))\"},children:\"Practicing Advocate at Delhi High Court.\"})}),className:\"framer-tfhpsx\",fonts:[\"GF;Open Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"r3Vd2i2G3\",style:{\"--extracted-r6o4lv\":\"var(--token-56b7112a-d292-41ce-9ea0-07245415e0d0, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:JovVoa3Rr,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f1804730-6905-4b48-965a-62b6170a88df, rgb(242, 135, 76)))\"},children:\"Certification in Mergers and Acquisitions\"})}),className:\"framer-1i7evbn\",fonts:[\"GF;Open Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"WchugYbr_\",style:{\"--extracted-r6o4lv\":\"var(--token-f1804730-6905-4b48-965a-62b6170a88df, rgb(242, 135, 76))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:odkjOYEZa,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-abpje.framer-m6ysjb, .framer-abpje .framer-m6ysjb { display: block; }\",\".framer-abpje.framer-w2py2l { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 328px; }\",\".framer-abpje .framer-1rujqvx-container { flex: none; height: 440px; position: relative; width: 328px; }\",\".framer-abpje .framer-12k3l2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 64px; justify-content: center; left: calc(50.00000000000002% - 64px / 2); overflow: hidden; padding: 16px; position: absolute; top: 172px; width: 64px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-abpje .framer-5t4szk-container { flex: none; height: 32px; left: calc(53.12500000000002% - 32px / 2); position: absolute; top: calc(50.00000000000002% - 32px / 2); width: 32px; z-index: 1; }\",\".framer-abpje .framer-1i0f487 { 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: hidden; padding: 0px; pointer-events: none; position: relative; width: 100%; z-index: 1; }\",\".framer-abpje .framer-1x9uc17 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-abpje .framer-2h8o3f, .framer-abpje .framer-tfhpsx { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-abpje .framer-1i7evbn { 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-abpje.framer-w2py2l, .framer-abpje .framer-12k3l2, .framer-abpje .framer-1i0f487, .framer-abpje .framer-1x9uc17 { gap: 0px; } .framer-abpje.framer-w2py2l > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-abpje.framer-w2py2l > :first-child, .framer-abpje .framer-1i0f487 > :first-child, .framer-abpje .framer-1x9uc17 > :first-child { margin-top: 0px; } .framer-abpje.framer-w2py2l > :last-child, .framer-abpje .framer-1i0f487 > :last-child, .framer-abpje .framer-1x9uc17 > :last-child { margin-bottom: 0px; } .framer-abpje .framer-12k3l2 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-abpje .framer-12k3l2 > :first-child { margin-left: 0px; } .framer-abpje .framer-12k3l2 > :last-child { margin-right: 0px; } .framer-abpje .framer-1i0f487 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-abpje .framer-1x9uc17 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 523\n * @framerIntrinsicWidth 328\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"EfqHp59xv\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"rofeQqNDz\":\"name1\",\"JovVoa3Rr\":\"subtext\",\"qDkOtgrcJ\":\"file\",\"OtVCDef4s\":\"cover\",\"odkjOYEZa\":\"certification\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEVJ3av4P9=withCSS(Component,css,\"framer-abpje\");export default FramerEVJ3av4P9;FramerEVJ3av4P9.displayName=\"Video Testimonial Card\";FramerEVJ3av4P9.defaultProps={height:523,width:328};addPropertyControls(FramerEVJ3av4P9,{variant:{options:[\"RBVZxi07_\",\"EfqHp59xv\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},rofeQqNDz:{defaultValue:\"Tarun Sharma\",displayTextArea:false,title:\"Name\",type:ControlType.String},JovVoa3Rr:{defaultValue:\"Practicing Advocate at Delhi High Court.\",displayTextArea:false,title:\"Subtext\",type:ControlType.String},qDkOtgrcJ:(VideoControls===null||VideoControls===void 0?void 0:VideoControls[\"srcFile\"])&&{...VideoControls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,HtsHlcFVSEiwNrnqptLlTUZgbk.mp4?originalFilename=TLS+Testimonial-4.mp4\",description:undefined,hidden:undefined,title:\"File\"},OtVCDef4s:{title:\"Cover\",type:ControlType.ResponsiveImage},odkjOYEZa:{defaultValue:\"Certification in Mergers and Acquisitions\",displayTextArea:false,placeholder:\"\",title:\"Certification\",type:ControlType.String}});addFonts(FramerEVJ3av4P9,[{explicitInter:true,fonts:[{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4iY1M2xLER.woff2\",weight:\"600\"},{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4iY1M2xLER.woff2\",weight:\"400\"}]},...VideoFonts,...FeatherFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEVJ3av4P9\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"328\",\"framerVariables\":\"{\\\"rofeQqNDz\\\":\\\"name1\\\",\\\"JovVoa3Rr\\\":\\\"subtext\\\",\\\"qDkOtgrcJ\\\":\\\"file\\\",\\\"OtVCDef4s\\\":\\\"cover\\\",\\\"odkjOYEZa\\\":\\\"certification\\\"}\",\"framerIntrinsicHeight\":\"523\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EfqHp59xv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EVJ3av4P9.map", "// Generated by Framer (ae50a0d)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js\";import{onCloseClick,onCloseParentClick}from\"https://framerusercontent.com/modules/Zhh2w8DpBFQGjr3iL3HR/wUFQVYjgKgHJs6H8omPB/close_popup.js\";import FooterCopy from\"#framer/local/canvasComponent/AhCgB9VBj/AhCgB9VBj.js\";import LeadForm from\"#framer/local/canvasComponent/BE5tZhB5N/BE5tZhB5N.js\";import ProgramCard from\"#framer/local/canvasComponent/CAKxYLmXN/CAKxYLmXN.js\";import VideoTestimonialCard from\"#framer/local/canvasComponent/EVJ3av4P9/EVJ3av4P9.js\";import Header from\"#framer/local/canvasComponent/LBHv5lwdg/LBHv5lwdg.js\";import BrochureFormParalegal from\"#framer/local/canvasComponent/SDIVAPEyk/SDIVAPEyk.js\";import MainButton from\"#framer/local/canvasComponent/Uji96ap3R/Uji96ap3R.js\";import Program from\"#framer/local/collection/dMO7eu5it/dMO7eu5it.js\";import*as sharedStyle2 from\"#framer/local/css/d18Wzr7Cl/d18Wzr7Cl.js\";import*as sharedStyle1 from\"#framer/local/css/Dbvcho_cw/Dbvcho_cw.js\";import*as sharedStyle3 from\"#framer/local/css/MyN1bbIcU/MyN1bbIcU.js\";import*as sharedStyle from\"#framer/local/css/nROLyPhJ0/nROLyPhJ0.js\";import*as sharedStyle4 from\"#framer/local/css/TnM2O04mg/TnM2O04mg.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const HeaderFonts=getFonts(Header);const LeadFormFonts=getFonts(LeadForm);const MainButtonFonts=getFonts(MainButton);const BrochureFormParalegalFonts=getFonts(BrochureFormParalegal);const TickerFonts=getFonts(Ticker);const ProgramCardFonts=getFonts(ProgramCard);const VideoTestimonialCardFonts=getFonts(VideoTestimonialCard);const CarouselFonts=getFonts(Carousel);const FooterCopyFonts=getFonts(FooterCopy);const MotionDivWithFX=withFX(motion.div);const FeatherFonts=getFonts(Feather);const FeatherOnCloseClickpf3cyd=withCodeBoundaryForOverrides(Feather,{nodeId:\"U2cwSgrnD\",override:onCloseClick,scopeId:\"augiA20Il\"});const MotionDivOnCloseParentClick1bfk67aWithOptimizedAppearEffect=withOptimizedAppearEffect(withCodeBoundaryForOverrides(motion.div,{nodeId:\"OIlGLk6Tp\",override:onCloseParentClick,scopeId:\"augiA20Il\"}));const FeatherOnCloseClick1mfneq5=withCodeBoundaryForOverrides(Feather,{nodeId:\"IYjPqoyvp\",override:onCloseClick,scopeId:\"augiA20Il\"});const MotionDivOnCloseParentClick1rcvp2fWithOptimizedAppearEffect=withOptimizedAppearEffect(withCodeBoundaryForOverrides(motion.div,{nodeId:\"MWvQrYs2G\",override:onCloseParentClick,scopeId:\"augiA20Il\"}));const breakpoints={C64c7WEDa:\"(max-width: 809px)\",Eln0kxZ8s:\"(min-width: 810px) and (max-width: 1199px)\",O57vNi4Po:\"(min-width: 1390px) and (max-width: 1439px)\",tuUn99Siu:\"(min-width: 1920px)\",WQLkyLRf1:\"(min-width: 1440px) and (max-width: 1919px)\",Yy6226C2c:\"(min-width: 1200px) and (max-width: 1389px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-2b8tj\";const variantClassNames={C64c7WEDa:\"framer-v-1t1hlid\",Eln0kxZ8s:\"framer-v-1pet8py\",O57vNi4Po:\"framer-v-1u46yxb\",tuUn99Siu:\"framer-v-1f2bvdf\",WQLkyLRf1:\"framer-v-72rtr7\",Yy6226C2c:\"framer-v-1atmeze\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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 transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const numberToString=(value,options={},activeLocale)=>{const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const{useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition2={delay:5,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Cheetah \":\"tuUn99Siu\",\"WEB 1200\":\"Yy6226C2c\",\"Web Custom\":\"O57vNi4Po\",Desktop:\"WQLkyLRf1\",Phone:\"C64c7WEDa\",Tablet:\"Eln0kxZ8s\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,fEq6ctP0Jr_DHji05u,kkNLZPUspr_DHji05u,hLeruf9Y8r_DHji05u,LeRk2ioSlr_DHji05u,aq7YH7_cPr_DHji05u,A4UvQ6_OQr_DHji05u,p2V39Xdlcr_DHji05u,idr_DHji05u,xp1GShlBL,...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 xp1GShlBL3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const Oph0cM2IU3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"jyqlxb6hB\");const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"C64c7WEDa\")return false;return true;};const elementId1=useRouteElementId(\"oSZOdygb2\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"Bz8BNoYZp\");const ref3=React.useRef(null);const activeLocaleCode=useLocaleCode();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"C64c7WEDa\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"Yy6226C2c\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"C64c7WEDa\",\"Eln0kxZ8s\",\"Yy6226C2c\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"Eln0kxZ8s\")return true;return false;};const elementId3=useRouteElementId(\"Vnyt6cSEe\");const ref4=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"100vw\",y:0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1ud2umu-container\",id:\"1ud2umu\",layoutScroll:true,nodeId:\"GPxRZwmIr\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{style:{width:\"100%\"},variant:overlay.visible?\"HAHjtnhEQ\":\"CW4dK_r4s\"},Eln0kxZ8s:{variant:\"CW4dK_r4s\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"GPxRZwmIr\",iPkMo4fGJ:\"0px 108px 0px 108px\",layoutId:\"GPxRZwmIr\",LpUQBM4LO:false,pA0MLEvrn:\"Book a Free Session\",style:{height:\"100%\",width:\"100%\"},variant:\"hUC2BMKO0\",width:\"100%\",xp1GShlBL:xp1GShlBL3bnx0g({overlay})})}),/*#__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:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1uqemc6\"),\"data-framer-portal-id\":\"1ud2umu\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"HpEe2wLH0\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{width:\"90vw\"},Eln0kxZ8s:{width:\"70vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"809px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1awmapt-container\"),\"data-framer-portal-id\":\"1ud2umu\",inComponentSlot:true,nodeId:\"z5A4nFe_3\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{o2uP9OJxo:false},Eln0kxZ8s:{o2uP9OJxo:false}},children:/*#__PURE__*/_jsx(LeadForm,{height:\"100%\",id:\"z5A4nFe_3\",layoutId:\"z5A4nFe_3\",o2uP9OJxo:true,style:{width:\"100%\"},variant:\"l2G3bzkVN\",width:\"100%\"})})})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nirmqk\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ppx5o4\",\"data-framer-name\":\"Frame 1261155597\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Eln0kxZ8s:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+26),pixelHeight:756,pixelWidth:1440,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/rF6EgjYbfXFqQ9Aj1T86cD6Pw.jpg\",srcSet:\"https://framerusercontent.com/images/rF6EgjYbfXFqQ9Aj1T86cD6Pw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rF6EgjYbfXFqQ9Aj1T86cD6Pw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rF6EgjYbfXFqQ9Aj1T86cD6Pw.jpg 1440w\"}},Yy6226C2c:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+-18),pixelHeight:756,pixelWidth:1440,sizes:`calc(${componentViewport?.width||\"100vw\"} + 209px)`,src:\"https://framerusercontent.com/images/rF6EgjYbfXFqQ9Aj1T86cD6Pw.jpg\",srcSet:\"https://framerusercontent.com/images/rF6EgjYbfXFqQ9Aj1T86cD6Pw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rF6EgjYbfXFqQ9Aj1T86cD6Pw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rF6EgjYbfXFqQ9Aj1T86cD6Pw.jpg 1440w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0),pixelHeight:756,pixelWidth:1440,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/rF6EgjYbfXFqQ9Aj1T86cD6Pw.jpg\",srcSet:\"https://framerusercontent.com/images/rF6EgjYbfXFqQ9Aj1T86cD6Pw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rF6EgjYbfXFqQ9Aj1T86cD6Pw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rF6EgjYbfXFqQ9Aj1T86cD6Pw.jpg 1440w\"},className:\"framer-1uv6ole\",\"data-framer-name\":\"ScreenshotXX 2024-07-12 at 1.21.37\u202FAM 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+920-241),pixelHeight:1266,pixelWidth:866,positionX:\"center\",positionY:\"center\",sizes:\"165px\",src:\"https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png\",srcSet:\"https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png?scale-down-to=1024 700w,https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png 866w\"},transformTemplate:transformTemplate2},Eln0kxZ8s:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+940-583),pixelHeight:1266,pixelWidth:866,positionX:\"center\",positionY:\"center\",sizes:\"417px\",src:\"https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png\",srcSet:\"https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png?scale-down-to=1024 700w,https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png 866w\"}},O57vNi4Po:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+940-642),pixelHeight:1266,pixelWidth:866,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 1023px)`,src:\"https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png\",srcSet:\"https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png?scale-down-to=1024 700w,https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png 866w\"}},Yy6226C2c:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+940-749.7055359246172),pixelHeight:1266,pixelWidth:866,positionX:\"center\",positionY:\"center\",sizes:\"512.8317px\",src:\"https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png\",srcSet:\"https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png?scale-down-to=1024 700w,https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png 866w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+940-750),pixelHeight:1266,pixelWidth:866,positionX:\"center\",positionY:\"center\",sizes:\"513.0332px\",src:\"https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png\",srcSet:\"https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png?scale-down-to=1024 700w,https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png 866w\"},className:\"framer-1s2g53d\",\"data-framer-name\":\"dada\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1281ht4\",\"data-framer-name\":\"Frame 1116600478\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3t1oeg\",\"data-framer-name\":\"Frame 1116600477\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1peuhg9\",\"data-framer-name\":\"Frame 1261155612\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7S2hhbmQtcmVndWxhcg==\",\"--framer-font-family\":'\"Khand\", \"Khand Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(254, 254, 254)\",\"--framer-text-transform\":\"uppercase\"},children:[\"Advance Your Legal Career\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\"},children:\" \"})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7S2hhbmQtNzAw\",\"--framer-font-family\":'\"Khand\", \"Khand Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(242, 135, 75)\",\"--framer-text-transform\":\"uppercase\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"with \"}),\"The Legal School\"]})]})},Eln0kxZ8s:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2hhbmQtcmVndWxhcg==\",\"--framer-font-family\":'\"Khand\", \"Khand Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"49px\",\"--framer-text-color\":\"rgb(254, 254, 254)\",\"--framer-text-transform\":\"uppercase\"},children:\"Advance Your Legal Career \"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7S2hhbmQtNzAw\",\"--framer-font-family\":'\"Khand\", \"Khand Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"49px\",\"--framer-text-color\":\"rgb(242, 135, 75)\",\"--framer-text-transform\":\"uppercase\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"with \"}),\"The Legal School\"]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2hhbmQtcmVndWxhcg==\",\"--framer-font-family\":'\"Khand\", \"Khand Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"74px\",\"--framer-text-color\":\"rgb(254, 254, 254)\",\"--framer-text-transform\":\"uppercase\"},children:\"Advance Your Legal Career \"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7S2hhbmQtNzAw\",\"--framer-font-family\":'\"Khand\", \"Khand Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"74px\",\"--framer-text-color\":\"rgb(242, 135, 75)\",\"--framer-text-transform\":\"uppercase\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"with \"}),\"The Legal School\"]})]}),className:\"framer-1gd5fpa\",\"data-framer-name\":\"Advance Your Legal Career with The Legal School\",fonts:[\"GF;Khand-regular\",\"GF;Khand-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:[\"Learn from \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTYwMA==\",\"--framer-font-weight\":\"600\"},children:\"top NLU faculty\"}),\" and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTYwMA==\",\"--framer-font-weight\":\"600\"},children:\"Partners from renowned law firms\"}),\". Gain practical experience and get \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTYwMA==\",\"--framer-font-weight\":\"600\"},children:\"certification from IndusLaw\"}),\". Join us for a successful legal career!\"]})}),fonts:[\"GF;Open Sans-300\",\"GF;Open Sans-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:[\"Learn from top faculty from top NLUs and Partners from the renowned\",/*#__PURE__*/_jsx(\"strong\",{children:\" \"}),\"law firms, gain practical experience, and receive certification from top law firm IndusLaw. \"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Join us today and step into a successful legal career!\"})]}),className:\"framer-ykx8kj\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Open Sans-600\",\"GF;Open Sans-700\",\"GF;Open Sans-300\",\"GF;Open Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17usjx0\",\"data-framer-name\":\"Frame 1261155611\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"l92lr9nyX\"},implicitPathVariables:undefined},{href:{webPageId:\"l92lr9nyX\"},implicitPathVariables:undefined},{href:{webPageId:\"l92lr9nyX\"},implicitPathVariables:undefined},{href:{webPageId:\"l92lr9nyX\"},implicitPathVariables:undefined},{href:{webPageId:\"l92lr9nyX\"},implicitPathVariables:undefined},{href:{webPageId:\"l92lr9nyX\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+0+0+0+104+0+482+0+0},Eln0kxZ8s:{y:(componentViewport?.y||0)+0+0+0+0+159.5+0+916+0},Yy6226C2c:{y:(componentViewport?.y||0)+0+0+0+0+187.5+0+1184+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+0+0+0+-144.99999999999977+0+1184+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m4uwhs-container\",nodeId:\"ZoGsKTPfO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{rV5V1gWDC:resolvedLinks[1],style:{width:\"100%\"}},Eln0kxZ8s:{rV5V1gWDC:resolvedLinks[2]},O57vNi4Po:{rV5V1gWDC:resolvedLinks[4]},tuUn99Siu:{rV5V1gWDC:resolvedLinks[5]},Yy6226C2c:{rV5V1gWDC:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(MainButton,{dEJLOvmQA:false,dkXe8JOXg:\"arrow-right\",EKyc_GZAJ:\"rgb(255, 255, 255)\",g0B72lv5Y:true,GGtJFmgLr:\"var(--token-f1804730-6905-4b48-965a-62b6170a88df, rgb(242, 135, 76))\",height:\"100%\",id:\"ZoGsKTPfO\",layoutId:\"ZoGsKTPfO\",rV5V1gWDC:resolvedLinks[0],teH0PKZ_G:\"Explore program\",variant:\"IKPUq5Er9\",W3ssZ6zb0:{borderColor:\"rgba(255, 255, 255, 0.1)\",borderStyle:\"solid\",borderWidth:1},width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+0+0+0+104+0+482+0+62},Eln0kxZ8s:{y:(componentViewport?.y||0)+0+0+0+0+159.5+0+916+0},Yy6226C2c:{y:(componentViewport?.y||0)+0+0+0+0+187.5+0+1184+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+0+0+0+-144.99999999999977+0+1184+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-10ny23t-container\",id:\"10ny23t\",nodeId:\"dyy111ZkS\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(MainButton,{dEJLOvmQA:true,dkXe8JOXg:\"download\",EKyc_GZAJ:\"rgb(255, 255, 255)\",g0B72lv5Y:true,GGtJFmgLr:\"rgba(255, 255, 255, 0)\",height:\"100%\",id:\"dyy111ZkS\",layoutId:\"dyy111ZkS\",Oph0cM2IU:Oph0cM2IU3bnx0g({overlay:overlay1}),teH0PKZ_G:\"Download Brochure\",variant:\"IKPUq5Er9\",W3ssZ6zb0:{borderColor:\"rgb(255, 255, 255)\",borderStyle:\"solid\",borderWidth:1},width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-3zp1fa\"),\"data-framer-portal-id\":\"10ny23t\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"MX4n8jy5Y\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{width:\"90vw\"},Eln0kxZ8s:{width:\"70vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1z0xomn-container\"),\"data-framer-portal-id\":\"10ny23t\",inComponentSlot:true,nodeId:\"AU6Q9V6ug\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{style:{width:\"100%\"}},Eln0kxZ8s:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(BrochureFormParalegal,{height:\"100%\",id:\"AU6Q9V6ug\",layoutId:\"AU6Q9V6ug\",uzehgggPh:false,variant:\"LxFvgiihA\",width:\"100%\"})})})})})]}),getContainer())})})]})})})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-amjtuf hidden-1t1hlid\",\"data-framer-name\":\"Frame 1261155602\"}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ihtz8i hidden-1t1hlid\",\"data-framer-name\":\"Frame 1116600483\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTYwMGl0YWxpYw==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Powered by\"})}),className:\"framer-b3x40g\",\"data-framer-name\":\"A product by\",fonts:[\"GF;Open Sans-600italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q15xvd\",\"data-framer-name\":\"Frame 1261155678\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aoven4\",\"data-framer-name\":\"Frame 1261155613\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Eln0kxZ8s:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+940-64+0+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GEW6blGqShqXYhP4LRPGHlcuXw.png\"}},Yy6226C2c:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+940-84+0+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GEW6blGqShqXYhP4LRPGHlcuXw.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+940-74+0+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GEW6blGqShqXYhP4LRPGHlcuXw.png\"},className:\"framer-cq5fv4\",\"data-framer-name\":\"image 261\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Eln0kxZ8s:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+940-64+0+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4A0LkelSOVyBAab4oyotQwU5tOg.png\"}},Yy6226C2c:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+940-84+0+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4A0LkelSOVyBAab4oyotQwU5tOg.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+940-74+0+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4A0LkelSOVyBAab4oyotQwU5tOg.png\"},className:\"framer-k7zxwq\",\"data-framer-name\":\"image 262\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-itnifk\",\"data-framer-name\":\"Frame 1261155614\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kl1z7a\",\"data-framer-name\":\"Testbook Logo\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-f99yzg\",\"data-framer-name\":\"Icon\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 19.211 23.611 L 4.264 23.611 C 2.042 23.611 0.24 21.781 0.24 19.522 L 0.24 4.332 C 0.24 2.073 2.042 0.242 4.264 0.242 L 19.211 0.242 C 21.434 0.242 23.235 2.073 23.235 4.332 L 23.235 19.522 C 23.235 21.781 21.434 23.611 19.211 23.611\" fill=\"rgb(254,254,254)\"></path><path d=\"M 19.211 23.611 L 4.264 23.611 C 2.042 23.611 0.24 21.781 0.24 19.522 L 0.24 4.332 C 0.24 2.073 2.042 0.242 4.264 0.242 L 19.211 0.242 C 21.434 0.242 23.235 2.073 23.235 4.332 L 23.235 19.522 C 23.235 21.781 21.434 23.611 19.211 23.611 Z\" fill=\"transparent\" stroke-width=\"0.5\" stroke=\"rgb(186,187,196)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 19.211 23.611 L 4.264 23.611 C 2.042 23.611 0.24 21.781 0.24 19.522 L 0.24 4.332 C 0.24 2.073 2.042 0.242 4.264 0.242 L 19.211 0.242 C 21.434 0.242 23.235 2.073 23.235 4.332 L 23.235 19.522 C 23.235 21.781 21.434 23.611 19.211 23.611\" fill=\"rgb(254,254,254)\"></path><path d=\"M 19.211 23.611 L 4.264 23.611 C 2.042 23.611 0.24 21.781 0.24 19.522 L 0.24 4.332 C 0.24 2.073 2.042 0.242 4.264 0.242 L 19.211 0.242 C 21.434 0.242 23.235 2.073 23.235 4.332 L 23.235 19.522 C 23.235 21.781 21.434 23.611 19.211 23.611 Z\" fill=\"transparent\" stroke-width=\"0.5\" stroke=\"rgb(186,187,196)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 4.433 20.342 L 11.635 16.473 L 11.635 3.466 L 4.433 8.323 Z\" fill=\"rgb(10,208,244)\"></path><path d=\"M 18.837 20.342 L 11.635 16.473 L 11.635 3.466 L 18.837 8.323 Z\" fill=\"rgb(22,22,37)\"></path></svg>',svgContentId:11311693893,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1cfk5xg\",\"data-framer-name\":\"Typeface\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:83,svg:'<svg width=\"83\" height=\"18\" viewBox=\"0 0 83 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.30852 0.590332L5.26885 0.590332V4.9803L7.02523 4.9803L7.02523 7.55237L5.26885 7.55237V16.8904H2.30852L2.30852 7.55237H0.790283L0.790283 4.9803H2.30852L2.30852 0.590332Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.9509 10.1197C14.9062 9.02101 14.1958 7.94508 12.5084 7.94508C10.9752 7.94508 10.1319 9.11091 10.0654 10.1197H14.9509ZM17.7042 13.7295C17.1493 15.6352 15.4171 17.2266 12.7296 17.2266C9.73218 17.2266 7.08936 15.0519 7.08936 11.3307C7.08936 7.81084 9.66569 5.52393 12.4632 5.52393C15.8394 5.52393 17.8601 7.69857 17.8601 11.2404C17.8601 11.6667 17.815 12.115 17.815 12.1597H9.99851C10.0654 13.6172 11.2867 14.6708 12.7521 14.6708C14.129 14.6708 14.8844 13.9756 15.239 12.9896L17.7042 13.7295Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.0132 13.2582C21.0801 14.1328 21.7244 14.9398 23.0122 14.9398C23.9889 14.9398 24.455 14.424 24.455 13.8411C24.455 13.3481 24.1222 12.9446 23.2789 12.7652L21.8352 12.4288C19.725 11.9577 18.7701 10.68 18.7701 9.13304C18.7701 7.16016 20.5027 5.52368 22.8566 5.52368C25.9656 5.52368 27.0088 7.51894 27.1426 8.70714L24.6775 9.26768C24.5884 8.61724 24.1222 7.78782 22.8792 7.78782C22.1015 7.78782 21.4794 8.25887 21.4794 8.88653C21.4794 9.4247 21.8791 9.76111 22.4787 9.87297L24.0332 10.2094C26.1876 10.6572 27.276 11.9805 27.276 13.5946C27.276 15.3881 25.8987 17.2263 23.0339 17.2263C19.7476 17.2263 18.6154 15.0741 18.4812 13.8187L21.0132 13.2582Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.1528 0.590332L32.1131 0.590332V4.9803L33.8699 4.9803V7.55237L32.1131 7.55237V16.8904H29.1528V7.55237H27.6345V4.9803H29.1528V0.590332Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M40.3517 8.23643C38.8641 8.23643 37.6198 9.33514 37.6198 11.3528C37.6198 13.3484 38.8641 14.4915 40.3517 14.4915C41.8619 14.4915 43.061 13.3708 43.061 11.3528C43.061 9.33514 41.8619 8.23643 40.3517 8.23643V8.23643ZM34.7554 16.8903V0.658936L37.6649 0.658936V7.0706C38.1529 6.28592 39.3528 5.56836 40.9734 5.56836C44.1715 5.56836 46.0145 8.05744 46.0145 11.3304C46.0145 14.6709 43.9716 17.1595 40.8622 17.1595C39.3528 17.1595 38.1976 16.4871 37.6198 15.545V16.8903H34.7554Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M55.2527 11.375C55.2527 9.2903 53.9206 8.23633 52.4769 8.23633C51.034 8.23633 49.7011 9.2903 49.7011 11.375C49.7011 13.4378 51.034 14.5142 52.4769 14.5142C53.9206 14.5142 55.2527 13.4602 55.2527 11.375M58.207 11.375C58.207 14.7603 55.7415 17.2266 52.4769 17.2266C49.2124 17.2266 46.748 14.7603 46.748 11.375C46.748 7.96745 49.2124 5.52393 52.4769 5.52393C55.7415 5.52393 58.207 7.96745 58.207 11.375\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M67.445 11.375C67.445 9.2903 66.1125 8.23633 64.6688 8.23633C63.2259 8.23633 61.893 9.2903 61.893 11.375C61.893 13.4378 63.2259 14.5142 64.6688 14.5142C66.1125 14.5142 67.445 13.4602 67.445 11.375M70.3989 11.375C70.3989 14.7603 67.9338 17.2266 64.6688 17.2266C61.4043 17.2266 58.9399 14.7603 58.9399 11.375C58.9399 7.96745 61.4043 5.52393 64.6688 5.52393C67.9338 5.52393 70.3989 7.96745 70.3989 11.375\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M78.1714 10.5007L82.6347 16.8904H79.0147L76.1281 12.6754L74.9064 13.9754V16.8904H71.9534V0.658691L74.9064 0.658691V9.96256L78.6819 5.85978H82.5456L78.1714 10.5007Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})})]})]})]})}),/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k337ck\",\"data-framer-name\":\"Marquee\",id:\"1k337ck\",onTap:onTap3bnx0g({overlay:overlay2}),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nbzfsz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"C95PC7TPE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.5,id:\"C95PC7TPE\",layoutId:\"C95PC7TPE\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-spn173\",\"data-framer-name\":\"Frame 1116600480\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book a Free Counselling Session with the Experts | BOOK NOW\"})}),className:\"framer-1hq1oh2\",\"data-framer-name\":\"Book a Free Counselling Session with the Experts | BOOK NOW\",fonts:[\"GF;Open Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book a Free Counselling Session with the Experts | BOOK NOW\"})}),className:\"framer-1gucmzu\",\"data-framer-name\":\"Book a Free Counselling Session with the Experts | BOOK NOW\",fonts:[\"GF;Open Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book a Free Counselling Session with the Experts | BOOK NOW\"})}),className:\"framer-1frspul\",\"data-framer-name\":\"Book a Free Counselling Session with the Experts | BOOK NOW\",fonts:[\"GF;Open Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book a Free Counselling Session with the Experts | BOOK NOW\"})}),className:\"framer-12dq5f\",\"data-framer-name\":\"Book a Free Counselling Session with the Experts | BOOK NOW\",fonts:[\"GF;Open Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-zu60cn\"),\"data-framer-portal-id\":\"1k337ck\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"j7UNvqI0H\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{width:\"90vw\"},Eln0kxZ8s:{width:\"70vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"809px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1poptpm-container\"),\"data-framer-portal-id\":\"1k337ck\",nodeId:\"pC1avhWLp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{o2uP9OJxo:false},Eln0kxZ8s:{o2uP9OJxo:false}},children:/*#__PURE__*/_jsx(LeadForm,{height:\"100%\",id:\"pC1avhWLp\",layoutId:\"pC1avhWLp\",o2uP9OJxo:true,style:{width:\"100%\"},variant:\"l2G3bzkVN\",width:\"100%\"})})})})})]}),getContainer())})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qdtzhl\",\"data-framer-name\":\"Why \",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-x12isp\",\"data-framer-name\":\"Frame 1116600477\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-zyt50i\",\"data-styles-preset\":\"nROLyPhJ0\",children:\"Why Choose The Legal School?\"})}),className:\"framer-5fwzsv\",\"data-framer-name\":\"Why Choose The Legal School?\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+968+1638.8-803),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png\",srcSet:\"https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png?scale-down-to=512 512w,https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png 2880w\"}},Eln0kxZ8s:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+988+-18),positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 571px)`,src:\"https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png\",srcSet:\"https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png?scale-down-to=512 512w,https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png 2880w\"}},O57vNi4Po:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+988+848-803),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png\",srcSet:\"https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png?scale-down-to=512 512w,https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png 2880w\"}},tuUn99Siu:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+988+848-803),positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"}, 1920px)`,src:\"https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png\",srcSet:\"https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png?scale-down-to=512 512w,https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png 2880w\"}},Yy6226C2c:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+988+824-803),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png\",srcSet:\"https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png?scale-down-to=512 512w,https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+988+848-803),positionX:\"center\",positionY:\"center\",sizes:\"1440px\",src:\"https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png\",srcSet:\"https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png?scale-down-to=512 512w,https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xnmBuf36L6W5IcBTah4Wslas.png 2880w\"},className:\"framer-wljxtx\",\"data-framer-name\":\"image 310\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hfc7w3\",\"data-framer-name\":\"Main Frame \",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15o8bvp\",\"data-border\":true,\"data-framer-name\":\"Frame 1261155606\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tqnx3g\",\"data-framer-name\":\"Frame 1261155609\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-okg743\",\"data-framer-name\":\"Frame 1261155647\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1egzjwp\",\"data-framer-name\":\"Media controls\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1rrhk7u\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"22\" viewBox=\"-1 -1 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.93322 14.4674L14.2572 11.052C15.024 10.5602 15.024 9.43965 14.2572 8.94778L8.93322 5.53244C8.10128 4.99874 7.00829 5.59615 7.00829 6.58456L7.00829 13.4152C7.00829 14.4037 8.10128 15.0011 8.93322 14.4674ZM8.50829 7.04195L13.1193 9.9999L8.50829 12.9578V7.04195Z\" fill=\"#FEFEFE\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 0C9.6353 0 9.2749 0.0195542 8.91984 0.0577223C8.55325 0.0971298 8.19245 0.156368 7.83857 0.234365C7.08171 0.401184 6.357 0.653705 5.67527 0.98116C4.40861 1.58957 3.29057 2.45651 2.38911 3.51325C0.899787 5.25911 0 7.52544 0 10C0 15.5228 4.47715 20 10 20C15.5228 20 20 15.5228 20 10C20 7.52544 19.1002 5.25911 17.6109 3.51325C16.7094 2.45651 15.5914 1.58957 14.3247 0.98116C13.643 0.653705 12.9183 0.401184 12.1614 0.234365C11.8076 0.156368 11.4468 0.0971298 11.0802 0.0577223C10.7251 0.0195542 10.3647 0 10 0ZM9.08016 1.54913C9.38208 1.51668 9.68896 1.5 10 1.5C10.311 1.5 10.6179 1.51668 10.9198 1.54913C11.2316 1.58264 11.5381 1.63298 11.8386 1.69921C12.4811 1.84082 13.0963 2.05518 13.6753 2.33327C14.7513 2.85014 15.7025 3.58735 16.4697 4.48675C17.7362 5.97137 18.5 7.89553 18.5 10C18.5 14.6944 14.6944 18.5 10 18.5C5.30558 18.5 1.5 14.6944 1.5 10C1.5 7.89553 2.26383 5.97137 3.53029 4.48675C4.29753 3.58735 5.24865 2.85014 6.32473 2.33327C6.90369 2.05518 7.51891 1.84082 8.16143 1.69921C8.4619 1.63298 8.76844 1.58264 9.08016 1.54913Z\" fill=\"#FEFEFE\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-2awuv1\",\"data-styles-preset\":\"Dbvcho_cw\",children:\"Live Training Sessions\"})}),className:\"framer-w6ri7r\",\"data-framer-name\":\"Live Training Sessions\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6mr00z\",\"data-framer-name\":\"Line 21\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:330,svg:'<svg width=\"330\" height=\"4\" viewBox=\"-1 -1 330 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M327 1L1 0.999972\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"State-of-the-art LMS with Live video lectures and 24/7 access to recorded study materials.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"State-of-the-art LMS with Live video lectures and 24/7 access to recorded study materials.\"})}),className:\"framer-1n9ee5v\",\"data-framer-name\":\"State-of-the-art LMS with Live video lectures and 24/7 access to recorded study materials.\",fonts:[\"GF;Open Sans-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-196u8bf\",\"data-border\":true,\"data-framer-name\":\"Frame 1116600440\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t1lwhh\",\"data-framer-name\":\"Frame 1261155610\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rr90h0\",\"data-framer-name\":\"Frame 1261155649\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-4nvjpy\",\"data-framer-name\":\"Notes\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ha8wu2\",\"data-framer-name\":\"user\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9zfeye\",\"data-framer-name\":\"vuesax/outline/user\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 12.75C8.83 12.75 6.25 10.17 6.25 7C6.25 3.83 8.83 1.25 12 1.25C15.17 1.25 17.75 3.83 17.75 7C17.75 10.17 15.17 12.75 12 12.75ZM12 2.75C9.66 2.75 7.75 4.66 7.75 7C7.75 9.34 9.66 11.25 12 11.25C14.34 11.25 16.25 9.34 16.25 7C16.25 4.66 14.34 2.75 12 2.75Z\" fill=\"white\"/>\\n<path d=\"M20.5901 22.75C20.1801 22.75 19.8401 22.41 19.8401 22C19.8401 18.55 16.3202 15.75 12.0002 15.75C7.68015 15.75 4.16016 18.55 4.16016 22C4.16016 22.41 3.82016 22.75 3.41016 22.75C3.00016 22.75 2.66016 22.41 2.66016 22C2.66016 17.73 6.85015 14.25 12.0002 14.25C17.1502 14.25 21.3401 17.73 21.3401 22C21.3401 22.41 21.0001 22.75 20.5901 22.75Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-2awuv1\",\"data-styles-preset\":\"Dbvcho_cw\",children:\"Expert Faculty \"})}),className:\"framer-wy9khv\",\"data-framer-name\":\"Monthly Assignments\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-k4qppn\",\"data-framer-name\":\"Line 21\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:330,svg:'<svg width=\"330\" height=\"4\" viewBox=\"-1 -1 330 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M327 1L1 0.999972\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Learn from the industry's finest - esteemed faculty from top NLUs and partners from the renowned law firm, IndusLaw.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Learn from the industry's finest - esteemed faculty from top NLUs and partners from the renowned law firm, IndusLaw.\"})}),className:\"framer-19vr35g\",\"data-framer-name\":\"Monthly assignments with detailed feedback to enhance your performance\",fonts:[\"GF;Open Sans-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xroipl\",\"data-border\":true,\"data-framer-name\":\"Frame 1116600440\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m9jsb3\",\"data-framer-name\":\"Frame 1261155610\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-e4blow\",\"data-framer-name\":\"Frame 1261155648\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uo323b\",\"data-framer-name\":\"Briefcase\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1em8a4u\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"19\" viewBox=\"0 0 20 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.70398 2.09116C5.70398 1.07432 6.52829 0.25 7.54514 0.25H12.4554C13.4722 0.25 14.2965 1.07431 14.2965 2.09116L14.2965 4.15895H17.9088C18.9257 4.15895 19.75 4.98326 19.75 6.00011V16.3395C19.75 17.3564 18.9257 18.1807 17.9088 18.1807H2.09116C1.07432 18.1807 0.25 17.3564 0.25 16.3395V6.00011C0.25 4.98326 1.07432 4.15895 2.09116 4.15895H5.70399L5.70398 2.09116ZM12.7965 2.09116L12.7965 4.15895H7.20399L7.20398 2.09116C7.20398 1.90274 7.35672 1.75 7.54514 1.75H12.4554C12.6438 1.75 12.7965 1.90274 12.7965 2.09116ZM18.25 8.71816V6.00011C18.25 5.81169 18.0973 5.65895 17.9088 5.65895H2.09116C1.90274 5.65895 1.75 5.81169 1.75 6.00011V8.70669C1.75 8.84412 1.83061 8.96008 1.94331 9.00776C4.20862 9.96607 5.6395 10.2755 8.0565 10.4663H8.71648C9.06383 10.1753 9.51152 10.0001 10.0001 10.0001C10.4887 10.0001 10.9364 10.1753 11.2838 10.4663H12.0087C14.6469 10.229 16.0559 9.89344 18.0631 9.01532C18.1714 8.96794 18.25 8.85469 18.25 8.71816ZM8.0004 11.9663C8.00022 11.9775 8.00012 11.9888 8.00012 12.0001C8.00012 13.1046 8.89555 14.0001 10.0001 14.0001C11.1047 14.0001 12.0001 13.1046 12.0001 12.0001C12.0001 11.9888 12 11.9775 11.9998 11.9663H12.0757L12.1089 11.9633C14.7162 11.7305 16.2641 11.3954 18.25 10.5668V16.3395C18.25 16.5279 18.0973 16.6807 17.9088 16.6807H2.09116C1.90274 16.6807 1.75 16.5279 1.75 16.3395V10.5517C3.97591 11.4584 5.53342 11.7734 7.96853 11.964L7.99775 11.9663H8.0004Z\" fill=\"#FEFEFE\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-2awuv1\",\"data-styles-preset\":\"Dbvcho_cw\",children:\"Real Life Case Studies\"})}),className:\"framer-ulhwxg\",\"data-framer-name\":\"Hands-On Projects\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5c0vz\",\"data-framer-name\":\"Line 21\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:330,svg:'<svg width=\"330\" height=\"4\" viewBox=\"-1 -1 330 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M327 1L1 0.999972\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Practical capstone projects and complete case studies, providing real-world legal experience and application.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Practical capstone projects and complete case studies, providing real-world legal experience and application.\"})}),className:\"framer-8syif8\",\"data-framer-name\":\"Practical capstone projects and complete case studies, providing real-world legal experience and application.\",fonts:[\"GF;Open Sans-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1st6c8c\",\"data-border\":true,\"data-framer-name\":\"Frame 1261155604\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-109mkil\",\"data-framer-name\":\"Frame 1261155608\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jxr2gt\",\"data-framer-name\":\"Frame 1261155646\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-mku4zo\",\"data-framer-name\":\"Help\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17maeul\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"22\" viewBox=\"-1 -1 18 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 2C4.77004 2 2.13618 4.55223 2.00511 7.75H2.375C4.23896 7.75 5.75 9.26104 5.75 11.125C5.75 12.989 4.23896 14.5 2.375 14.5H2.17071C2.58254 15.6652 3.69378 16.5 5 16.5H5.87803C6.18691 15.6261 7.02034 15 8 15H8.75C9.99264 15 11 16.0074 11 17.25C11 18.4926 9.99264 19.5 8.75 19.5H8C7.02034 19.5 6.18691 18.8739 5.87803 18H5C2.51472 18 0.5 15.9853 0.5 13.5V7.75H0.504088C0.63596 3.72359 3.94152 0.5 8 0.5C12.0585 0.5 15.364 3.72359 15.4959 7.75H15.5V13C15.5 13.8284 14.8284 14.5 14 14.5H13.625C11.761 14.5 10.25 12.989 10.25 11.125C10.25 9.26104 11.761 7.75 13.625 7.75H13.9949C13.8638 4.55223 11.23 2 8 2ZM2.375 13H2V9.25H2.375C3.41053 9.25 4.25 10.0895 4.25 11.125C4.25 12.1605 3.41053 13 2.375 13ZM13.625 13H14V9.25H13.625C12.5895 9.25 11.75 10.0895 11.75 11.125C11.75 12.1605 12.5895 13 13.625 13ZM7.25 17.25C7.25 16.8358 7.58579 16.5 8 16.5H8.75C9.16421 16.5 9.5 16.8358 9.5 17.25C9.5 17.6642 9.16421 18 8.75 18H8C7.58579 18 7.25 17.6642 7.25 17.25Z\" fill=\"#FEFEFE\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-2awuv1\",\"data-styles-preset\":\"Dbvcho_cw\",children:\"Placement assistance\"})}),className:\"framer-12eijh1\",\"data-framer-name\":\"Placement assistance\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-w2voc6\",\"data-framer-name\":\"Line 21\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:330,svg:'<svg width=\"330\" height=\"4\" viewBox=\"-1 -1 330 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M327 1L1 0.999972\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Job and internship assistance to kickstart your career at top law firms and startups.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Job and internship assistance to kickstart your career at top law firms and startups.\"})}),className:\"framer-757mbv\",\"data-framer-name\":\"Job and internship assistance to kickstart your career at top law firms and startups.\",fonts:[\"GF;Open Sans-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15zfg5p\",\"data-border\":true,\"data-framer-name\":\"Frame 1261155604\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t9yepy\",\"data-framer-name\":\"Frame 1261155608\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lgmtbx\",\"data-framer-name\":\"Frame 1261155649\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-mq1dbt\",\"data-framer-name\":\"Teacher\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-o4jpg1\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"20\" viewBox=\"-1 -1 24 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.44953 0.748913C2.44953 0.3353 2.77692 0 3.18078 0L18.8187 0C20.2996 0 21.5 1.22943 21.5 2.74601V15.2279C21.5 16.7445 20.2996 17.9739 18.8187 17.9739H10.0062C9.60236 17.9739 9.27497 17.6386 9.27497 17.225C9.27497 16.8114 9.60236 16.4761 10.0062 16.4761H18.8187C19.4918 16.4761 20.0375 15.9172 20.0375 15.2279V2.74601C20.0375 2.05666 19.4918 1.49783 18.8187 1.49783H3.18078C2.77692 1.49783 2.44953 1.16253 2.44953 0.748913Z\" fill=\"#FEFEFE\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.42501 3.00638C1.94419 3.00638 0.743751 4.23581 0.743751 5.75239C0.743751 7.26897 1.94419 8.4984 3.42501 8.4984C4.90583 8.4984 6.10627 7.26897 6.10627 5.75239C6.10627 4.23581 4.90583 3.00638 3.42501 3.00638ZM2.20626 5.75239C2.20626 5.06304 2.75191 4.5042 3.42501 4.5042C4.09811 4.5042 4.64376 5.06304 4.64376 5.75239C4.64376 6.44175 4.09811 7.00058 3.42501 7.00058C2.75191 7.00058 2.20626 6.44175 2.20626 5.75239Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M9.03128 3.00638C8.62742 3.00638 8.30002 3.34168 8.30002 3.75529C8.30002 4.1689 8.62742 4.5042 9.03128 4.5042L17.8438 4.5042C18.2477 4.5042 18.5751 4.1689 18.5751 3.75529C18.5751 3.34168 18.2477 3.00638 17.8438 3.00638L9.03128 3.00638Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M17.8438 6.98985H12.9313C12.5274 6.98985 12.2 6.65455 12.2 6.24094C12.2 5.82733 12.5274 5.49203 12.9313 5.49203H17.8438C18.2477 5.49203 18.5751 5.82733 18.5751 6.24094C18.5751 6.65455 18.2477 6.98985 17.8438 6.98985Z\" fill=\"#FEFEFE\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.6421 8.77933C12.168 8.10872 11.4029 7.96768 10.7909 8.06385C10.3982 8.12555 10.0332 8.30833 9.7445 8.58784L8.1199 10.1608L8.10681 10.1738L6.27798 9.5053C6.19396 9.47459 6.10516 9.45988 6.01597 9.46191L2.90626 9.53254C2.11264 9.53582 1.50572 9.97642 1.12332 10.4484C0.754081 10.9041 0.5 11.5033 0.5 12.0244V17.2511C0.5 17.6647 0.827393 18 1.23125 18H6.09213C6.49599 18 6.82338 17.6647 6.82338 17.2511V14.3922L8.53046 14.914C8.96893 15.048 9.44375 14.9192 9.75995 14.5805L12.3309 11.8263C12.6432 11.4918 12.9259 11.0705 13.0493 10.5836C13.1791 10.0712 13.1222 9.51674 12.7947 9.00589C12.745 8.92847 12.6938 8.85245 12.6421 8.77933ZM11.0127 9.54435C11.2825 9.50194 11.4084 9.5883 11.4575 9.65779C11.496 9.71222 11.5346 9.76946 11.5721 9.82801C11.6561 9.95898 11.6677 10.073 11.6337 10.2073C11.5932 10.3671 11.4795 10.5709 11.2738 10.7913L8.80585 13.4351L7.20918 12.947L7.16949 12.9348C7.02405 12.89 6.84272 12.834 6.68218 12.8089C6.50478 12.781 6.16368 12.7569 5.85834 13.0031L5.8476 13.0117C5.77921 13.0662 5.60613 13.2041 5.49231 13.4509C5.38436 13.6851 5.36087 13.9417 5.36087 14.19V16.5022H1.9625V12.0244C1.9625 11.9421 2.03419 11.6698 2.24881 11.4049C2.44884 11.158 2.68077 11.0303 2.91518 11.0303L2.93139 11.0302L5.91348 10.9624L7.62719 11.5889L7.63934 11.5931C8.16113 11.7734 8.73722 11.6381 9.13015 11.2439L10.7492 9.67628C10.8219 9.6059 10.9138 9.55988 11.0127 9.54435Z\" fill=\"#FEFEFE\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-2awuv1\",\"data-styles-preset\":\"Dbvcho_cw\",children:\"Mentorship\"})}),className:\"framer-r5gqaw\",\"data-framer-name\":\"Personalised Training\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1uw9zkc\",\"data-framer-name\":\"Line 21\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:330,svg:'<svg width=\"330\" height=\"4\" viewBox=\"-1 -1 330 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M327 1L1 0.999972\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Sessions with mentors from the top law firms of the India catering to students\u2019 specific needs and desired outcomes.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Sessions with mentors from the top law firms of the India catering to students\u2019 specific needs and desired outcomes.\"})}),className:\"framer-1hc3y6u\",\"data-framer-name\":\"1:1 personalised training with mentors from the top law firms of the India catering to students\u2019 specific needs and desired outcomes.\",fonts:[\"GF;Open Sans-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gsvrap\",\"data-border\":true,\"data-framer-name\":\"Frame 1116600440\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v5ip6m\",\"data-framer-name\":\"Frame 1261155607\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y8pn8\",\"data-framer-name\":\"Frame 1261155645\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-v6y13k\",\"data-framer-name\":\"Certificate\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-c83837\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"-1 -1 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.75 0C1.23122 0 0 1.23122 0 2.75V11.25C0 12.7688 1.23122 14 2.75 14H9.25C9.66421 14 10 13.6642 10 13.25C10 12.8358 9.66421 12.5 9.25 12.5H2.75C2.05964 12.5 1.5 11.9404 1.5 11.25V2.75C1.5 2.05964 2.05964 1.5 2.75 1.5H15.25C15.9404 1.5 16.5 2.05964 16.5 2.75V4.25C16.5 4.66421 16.8358 5 17.25 5C17.6642 5 18 4.66421 18 4.25V2.75C18 1.23122 16.7688 0 15.25 0H2.75Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M14.75 9.25C14.75 9.80229 14.3023 10.25 13.75 10.25C13.1977 10.25 12.75 9.80229 12.75 9.25C12.75 8.69771 13.1977 8.25 13.75 8.25C14.3023 8.25 14.75 8.69771 14.75 9.25Z\" fill=\"#FEFEFE\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.75 5C11.4028 5 9.5 6.90279 9.5 9.25C9.5 10.7554 10.2827 12.0779 11.4632 12.833L10.5179 17.0872C10.4528 17.3798 10.5683 17.6831 10.8115 17.8583C11.0546 18.0336 11.3788 18.0473 11.6359 17.893L13.75 16.6246L15.8641 17.893C16.1212 18.0473 16.4454 18.0336 16.6885 17.8583C16.9317 17.6831 17.0472 17.3798 16.9821 17.0872L16.0368 12.833C17.2173 12.0779 18 10.7554 18 9.25C18 6.90279 16.0972 5 13.75 5ZM11 9.25C11 7.73122 12.2312 6.5 13.75 6.5C15.2688 6.5 16.5 7.73122 16.5 9.25C16.5 10.7688 15.2688 12 13.75 12C12.2312 12 11 10.7688 11 9.25ZM14.6282 13.4092C14.3448 13.4687 14.0511 13.5 13.75 13.5C13.4489 13.5 13.1552 13.4687 12.8718 13.4092L12.3608 15.7088L13.3641 15.1068C13.6016 14.9643 13.8984 14.9643 14.1359 15.1068L15.1392 15.7088L14.6282 13.4092Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M3 4.75C3 4.33579 3.33579 4 3.75 4H9.25C9.66421 4 10 4.33579 10 4.75C10 5.16421 9.66421 5.5 9.25 5.5H3.75C3.33579 5.5 3 5.16421 3 4.75Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M3.75 7.5C3.33579 7.5 3 7.83579 3 8.25C3 8.66421 3.33579 9 3.75 9H7.25C7.66421 9 8 8.66421 8 8.25C8 7.83579 7.66421 7.5 7.25 7.5H3.75Z\" fill=\"#FEFEFE\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-2awuv1\",\"data-styles-preset\":\"Dbvcho_cw\",children:\"Industry Powered Certification\"})}),className:\"framer-afdcug\",\"data-framer-name\":\"Certification\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6ijre8\",\"data-framer-name\":\"Line 21\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:330,svg:'<svg width=\"330\" height=\"4\" viewBox=\"-1 -1 330 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M327 1L1 0.999972\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Eln0kxZ8s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-line-height\":\"59px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Receive certificate of completion from Top tier law firms like IndusLaw & Khaitan & Co. upon successful completion.\"})})},Yy6226C2c:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Receive certification from \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"upon completion.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Receive certificate of completion from Top tier law firms like IndusLaw & Khaitan & Co. upon successful completion.\"})}),className:\"framer-12ucusa\",\"data-framer-name\":\"Receive certification from upon completion.\",fonts:[\"GF;Open Sans-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2606.8),pixelHeight:1492,pixelWidth:3504,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png\",srcSet:\"https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png?scale-down-to=512 512w,https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png 3504w\"}},Eln0kxZ8s:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1726),pixelHeight:1492,pixelWidth:3504,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png\",srcSet:\"https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png?scale-down-to=512 512w,https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png 3504w\"}},O57vNi4Po:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1836),pixelHeight:1492,pixelWidth:3504,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png\",srcSet:\"https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png?scale-down-to=512 512w,https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png 3504w\"}},tuUn99Siu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1836),pixelHeight:1492,pixelWidth:3504,sizes:`min(${componentViewport?.width||\"100vw\"}, 1920px)`,src:\"https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png\",srcSet:\"https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png?scale-down-to=512 512w,https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png 3504w\"}},Yy6226C2c:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1812),pixelHeight:1492,pixelWidth:3504,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png\",srcSet:\"https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png?scale-down-to=512 512w,https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png 3504w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1836),pixelHeight:1492,pixelWidth:3504,sizes:\"1440px\",src:\"https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png\",srcSet:\"https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png?scale-down-to=512 512w,https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/77uTGYNbxANGVVzEmRoOkIJsg.png 3504w\"},className:\"framer-1z0p6z0\",\"data-framer-name\":\"Why \",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3fyb67\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qt22jo\",\"data-framer-name\":\"Frame 1116600477\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-zyt50i\",\"data-styles-preset\":\"nROLyPhJ0\",children:\"our programs\"})}),className:\"framer-1s5jwy2\",\"data-framer-name\":\"Why Choose The Legal School?\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pqb1s6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"r_DHji05u\",data:Program,type:\"Collection\"},orderBy:[{collection:\"r_DHji05u\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"r_DHji05u\",name:\"fEq6ctP0J\",type:\"Identifier\"},{collection:\"r_DHji05u\",name:\"kkNLZPUsp\",type:\"Identifier\"},{collection:\"r_DHji05u\",name:\"hLeruf9Y8\",type:\"Identifier\"},{collection:\"r_DHji05u\",name:\"LeRk2ioSl\",type:\"Identifier\"},{collection:\"r_DHji05u\",name:\"aq7YH7_cP\",type:\"Identifier\"},{collection:\"r_DHji05u\",name:\"A4UvQ6_OQ\",type:\"Identifier\"},{collection:\"r_DHji05u\",name:\"p2V39Xdlc\",type:\"Identifier\"},{collection:\"r_DHji05u\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"r_DHji05u\",name:\"DGVRvkkEs\",type:\"Identifier\"},operator:\">\",right:{type:\"LiteralValue\",value:0},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"r_DHji05u\",name:\"PmH0dkZrg\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({A4UvQ6_OQ:A4UvQ6_OQr_DHji05u,aq7YH7_cP:aq7YH7_cPr_DHji05u,fEq6ctP0J:fEq6ctP0Jr_DHji05u,hLeruf9Y8:hLeruf9Y8r_DHji05u,id:idr_DHji05u,kkNLZPUsp:kkNLZPUspr_DHji05u,LeRk2ioSl:LeRk2ioSlr_DHji05u,p2V39Xdlc:p2V39Xdlcr_DHji05u},index)=>{fEq6ctP0Jr_DHji05u??=\"\";kkNLZPUspr_DHji05u??=\"\";LeRk2ioSlr_DHji05u??=\"\";aq7YH7_cPr_DHji05u??=\"\";A4UvQ6_OQr_DHji05u??=0;p2V39Xdlcr_DHji05u??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`r_DHji05u-${idr_DHji05u}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kkNLZPUsp:kkNLZPUspr_DHji05u},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:fEq6ctP0Jr_DHji05u,implicitPathVariables:{kkNLZPUsp:kkNLZPUspr_DHji05u}},{href:fEq6ctP0Jr_DHji05u,implicitPathVariables:{kkNLZPUsp:kkNLZPUspr_DHji05u}},{href:fEq6ctP0Jr_DHji05u,implicitPathVariables:{kkNLZPUsp:kkNLZPUspr_DHji05u}},{href:fEq6ctP0Jr_DHji05u,implicitPathVariables:{kkNLZPUsp:kkNLZPUspr_DHji05u}},{href:fEq6ctP0Jr_DHji05u,implicitPathVariables:{kkNLZPUsp:kkNLZPUspr_DHji05u}},{href:fEq6ctP0Jr_DHji05u,implicitPathVariables:{kkNLZPUsp:kkNLZPUspr_DHji05u}}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1360px), 50px)`,y:(componentViewport?.y||0)+0+2606.8+40+78+0+0},Eln0kxZ8s:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 20px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1726+40+84+0+0},O57vNi4Po:{width:`max((min(${componentViewport?.width||\"100vw\"} - 286px, 1360px) - 48px) / 3, 50px)`},tuUn99Siu:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 480px, 1360px) - 48px) / 3, 50px)`},Yy6226C2c:{width:`max((min(${componentViewport?.width||\"100vw\"} - 243px, 1360px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1812+80+104+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:500,width:\"368.6667px\",y:(componentViewport?.y||0)+0+1836+80+104+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wsvtvu-container\",nodeId:\"QKeZ_5YTD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{variant:\"KqOal8asX\",Y9QlTxLPY:resolvedLinks1[1]},Eln0kxZ8s:{variant:\"KqOal8asX\",Y9QlTxLPY:resolvedLinks1[2]},O57vNi4Po:{Y9QlTxLPY:resolvedLinks1[4]},tuUn99Siu:{Y9QlTxLPY:resolvedLinks1[5]},Yy6226C2c:{Y9QlTxLPY:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(ProgramCard,{DSc6Acbfe:toResponsiveImage(hLeruf9Y8r_DHji05u),e6hMgvjaL:numberToString(A4UvQ6_OQr_DHji05u,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode),edGJCWFMh:aq7YH7_cPr_DHji05u,F8N8HGhm2:true,fWSthMJQR:true,height:\"100%\",id:\"QKeZ_5YTD\",K_TYmjy0D:LeRk2ioSlr_DHji05u,layoutId:\"QKeZ_5YTD\",style:{width:\"100%\"},TIMIBUxfK:p2V39Xdlcr_DHji05u,variant:\"eXl7gpbFK\",width:\"100%\",Y9QlTxLPY:resolvedLinks1[0]})})})})})})})},idr_DHji05u);})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-76uve5\",\"data-framer-name\":\"About indus law \",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oxeuos\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k16qs4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fy2ez9\",\"data-framer-name\":\"Frame 1261155715\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-qx9a38\",\"data-styles-preset\":\"d18Wzr7Cl\",children:\"About IndusLaw?\"})}),className:\"framer-1b0cmj4\",\"data-framer-name\":\"Who is this course for?\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-plz71r\",\"data-border\":true,\"data-framer-name\":\"Frame 1261155712\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14bfsro\",\"data-framer-name\":\"Frame 1261155711\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(242, 135, 75)\"},children:\"01\"})}),className:\"framer-1wt66uo\",\"data-framer-name\":\"01\",fonts:[\"Inter-ExtraBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lw15vr\",\"data-framer-name\":\"Frame 1261155713\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1ijzdd8\",\"data-styles-preset\":\"MyN1bbIcU\",style:{\"--framer-text-color\":\"var(--token-1d0955c6-cec1-4ac6-ae4f-6b671acb7734, rgb(17, 17, 17))\"},children:\"Over 25 years of experience with offices in Bengaluru, Chennai, Hyderabad, and Delhi NCR.\"})}),className:\"framer-jnhgbh\",\"data-framer-name\":\"Over 25 years of experience with offices in Bengaluru, Chennai, Hyderabad, and Delhi NCR.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xq8dad\",\"data-border\":true,\"data-framer-name\":\"Frame 1261155713\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6rhmnp\",\"data-framer-name\":\"Frame 1261155711\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(242, 135, 75)\"},children:\"02\"})}),className:\"framer-1gt34zl\",\"data-framer-name\":\"02\",fonts:[\"Inter-ExtraBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-78rc4n\",\"data-framer-name\":\"Frame 1261155713\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1ijzdd8\",\"data-styles-preset\":\"MyN1bbIcU\",style:{\"--framer-text-color\":\"var(--token-1d0955c6-cec1-4ac6-ae4f-6b671acb7734, rgb(17, 17, 17))\"},children:\"Provide expert guidance on Indian law to national and international clients, including corporates, startups, and financial institutions.\"})}),className:\"framer-1w8kuc4\",\"data-framer-name\":\"Provide expert guidance on Indian law to national and international clients, including corporates, startups, and financial institutions.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uwrsk1\",\"data-border\":true,\"data-framer-name\":\"Frame 1261155714\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19kfncx\",\"data-framer-name\":\"Frame 1261155711\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(242, 135, 75)\"},children:\"03\"})}),className:\"framer-870736\",\"data-framer-name\":\"03\",fonts:[\"Inter-ExtraBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qqy2eb\",\"data-framer-name\":\"Frame 1261155713\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1ijzdd8\",\"data-styles-preset\":\"MyN1bbIcU\",style:{\"--framer-text-color\":\"var(--token-1d0955c6-cec1-4ac6-ae4f-6b671acb7734, rgb(17, 17, 17))\"},children:\"Specialize in transactions (M&A,PE,VC), advisory, regulatory compliance, and effective dispute resolution.\"})}),className:\"framer-1yjw6j5\",\"data-framer-name\":\"Specialize in transactions (M&A,PE,VC), advisory, regulatory compliance, and effective dispute resolution.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1chn6al\",\"data-framer-name\":\"Frame 1261155715\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-qx9a38\",\"data-styles-preset\":\"d18Wzr7Cl\",children:\"about Khaitan & Co. ?\"})}),className:\"framer-qnioe4\",\"data-framer-name\":\"Who is this course for?\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gpcqnp\",\"data-border\":true,\"data-framer-name\":\"Frame 1261155712\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14ppj7m\",\"data-framer-name\":\"Frame 1261155711\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(242, 135, 75)\"},children:\"01\"})}),className:\"framer-1ph5y3x\",\"data-framer-name\":\"01\",fonts:[\"Inter-ExtraBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-poah8h\",\"data-framer-name\":\"Frame 1261155713\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1ijzdd8\",\"data-styles-preset\":\"MyN1bbIcU\",style:{\"--framer-text-color\":\"var(--token-1d0955c6-cec1-4ac6-ae4f-6b671acb7734, rgb(17, 17, 17))\"},children:\"One of India\u2019s oldest law firm established 113 years ago with presence in Kolkata, New Delhi, Bangalore, Mumbai, Chennai, Pune, Ahmedabad & Singapore\"})}),className:\"framer-e1xr23\",\"data-framer-name\":\"Over 25 years of experience with offices in Bengaluru, Chennai, Hyderabad, and Delhi NCR.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kk006f\",\"data-border\":true,\"data-framer-name\":\"Frame 1261155713\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5pnqsk\",\"data-framer-name\":\"Frame 1261155711\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(242, 135, 75)\"},children:\"02\"})}),className:\"framer-92reo3\",\"data-framer-name\":\"02\",fonts:[\"Inter-ExtraBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2b7hyu\",\"data-framer-name\":\"Frame 1261155713\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1ijzdd8\",\"data-styles-preset\":\"MyN1bbIcU\",style:{\"--framer-text-color\":\"var(--token-1d0955c6-cec1-4ac6-ae4f-6b671acb7734, rgb(17, 17, 17))\"},children:\"A full service law firm which specializes in Intellectual Property, Dispute Resolution, M&A & Media and Telecom.\"})}),className:\"framer-d3i4yn\",\"data-framer-name\":\"Provide expert guidance on Indian law to national and international clients, including corporates, startups, and financial institutions.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-64dj4v\",\"data-border\":true,\"data-framer-name\":\"Frame 1261155714\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qridt0\",\"data-framer-name\":\"Frame 1261155711\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(242, 135, 75)\"},children:\"03\"})}),className:\"framer-4tcngl\",\"data-framer-name\":\"03\",fonts:[\"Inter-ExtraBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1etszaf\",\"data-framer-name\":\"Frame 1261155713\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1ijzdd8\",\"data-styles-preset\":\"MyN1bbIcU\",style:{\"--framer-text-color\":\"var(--token-1d0955c6-cec1-4ac6-ae4f-6b671acb7734, rgb(17, 17, 17))\"},children:\"Boasts 100+ partners & 450+ fee-earners across the nation.\"})}),className:\"framer-1ww9n6l\",\"data-framer-name\":\"Specialize in transactions (M&A,PE,VC), advisory, regulatory compliance, and effective dispute resolution.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-167w8lz\",\"data-border\":true,\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-qx9a38\",\"data-styles-preset\":\"d18Wzr7Cl\",children:\"Recognised by \"})}),className:\"framer-1r7i94r\",\"data-framer-name\":\"Who is this course for?\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14y2whr-container hidden-1t1hlid\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YA5ItuNbm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"YA5ItuNbm\",layoutId:\"YA5ItuNbm\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12l1i9j\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/hErhSMwYJq2USiUJJg2LxyYPE.png\"},className:\"framer-1o7eegw\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/ECQuT0pvoXWF3yLMFVMoI5ivmZg.png\"},className:\"framer-17lilqo\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/WFu8o7JwB3JdHIWWyDqLE5PJBIw.png\"},className:\"framer-pualqv\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/GLNfV7BjSGDfQL0GNQ0l3Z0Qst0.png\"},className:\"framer-18izf03\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/qG8m0s5ICNbAYXNGuYiaBQrhZTg.png\"},className:\"framer-hv84br\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/QYCwj7aC6wRunwBBdct5a23Sf6s.png\"},className:\"framer-unpx9s\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/bJTawVnAFMTxOmTik4HDJFDHk.png\"},className:\"framer-132jbhn\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/sMedZ7Ks4aSI0lLfRaOelngONoQ.png\"},className:\"framer-ck6ef7\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/pDQAxHYDoczWPVLxY4c3hV11DA.png\"},className:\"framer-xznwbs\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/EXs7Ajfa8WtTqwuzH9S3y4Doe4c.png\"},className:\"framer-r8ujr0\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/tM4d3p0dc2VdIsrMaCFBqBOnpZY.png\"},className:\"framer-1jmswhl\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/7QdWZXrBjIh65stWlXgV4V26Uaw.png\"},className:\"framer-2oajet\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/fQTxvwnRjfMp67PzCFmtE2L1xY.png\"},className:\"framer-rvjnkx\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:163,pixelWidth:404,src:\"https://framerusercontent.com/images/4ZEwL2yxsVxLjBmpLeMYt3tbNRw.png\"},className:\"framer-op1il6\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/ztKxkXrRrX8xckUqFDJEGLlYao.png\"},className:\"framer-10mjtuf\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/wrlGe2GSXfYi0uWSWDIneszpoDY.png\"},className:\"framer-1d681k5\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/7Uu6xEHPCRVzrTtzq3cJwgxFyk.png\"},className:\"framer-lxe4og\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/0hwsC3mxRydyAkJoeIim6Mxf3G0.png\"},className:\"framer-gw3t09\",\"data-framer-name\":\"image\"})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-h7l4sh-container hidden-72rtr7 hidden-1pet8py hidden-1atmeze hidden-1u46yxb hidden-1f2bvdf\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"TI6M8Ve4g\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"TI6M8Ve4g\",layoutId:\"TI6M8Ve4g\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tpx1b1\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/hErhSMwYJq2USiUJJg2LxyYPE.png\"},className:\"framer-1yq0k7z\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/ECQuT0pvoXWF3yLMFVMoI5ivmZg.png\"},className:\"framer-7a2nc9\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/WFu8o7JwB3JdHIWWyDqLE5PJBIw.png\"},className:\"framer-u44ps4\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/GLNfV7BjSGDfQL0GNQ0l3Z0Qst0.png\"},className:\"framer-xshpv2\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/qG8m0s5ICNbAYXNGuYiaBQrhZTg.png\"},className:\"framer-13u5gim\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/QYCwj7aC6wRunwBBdct5a23Sf6s.png\"},className:\"framer-1xuntv9\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/bJTawVnAFMTxOmTik4HDJFDHk.png\"},className:\"framer-1b4jb7v\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/sMedZ7Ks4aSI0lLfRaOelngONoQ.png\"},className:\"framer-nhefgk\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/pDQAxHYDoczWPVLxY4c3hV11DA.png\"},className:\"framer-t7yl2x\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/EXs7Ajfa8WtTqwuzH9S3y4Doe4c.png\"},className:\"framer-1xsfi76\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/tM4d3p0dc2VdIsrMaCFBqBOnpZY.png\"},className:\"framer-uhxav\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/7QdWZXrBjIh65stWlXgV4V26Uaw.png\"},className:\"framer-c6xe2k\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/fQTxvwnRjfMp67PzCFmtE2L1xY.png\"},className:\"framer-7m3auq\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:163,pixelWidth:404,src:\"https://framerusercontent.com/images/4ZEwL2yxsVxLjBmpLeMYt3tbNRw.png\"},className:\"framer-1twd7xk\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/ztKxkXrRrX8xckUqFDJEGLlYao.png\"},className:\"framer-1gmmpl3\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/wrlGe2GSXfYi0uWSWDIneszpoDY.png\"},className:\"framer-j2pnm\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/7Uu6xEHPCRVzrTtzq3cJwgxFyk.png\"},className:\"framer-13bcf0i\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/0hwsC3mxRydyAkJoeIim6Mxf3G0.png\"},className:\"framer-1dptwv1\",\"data-framer-name\":\"image\"})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-imnfiy-container hidden-72rtr7 hidden-1pet8py hidden-1atmeze hidden-1u46yxb hidden-1f2bvdf\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Npf29bARN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"Npf29bARN\",layoutId:\"Npf29bARN\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t5z9y5\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/EXs7Ajfa8WtTqwuzH9S3y4Doe4c.png\"},className:\"framer-fet9qs\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/tM4d3p0dc2VdIsrMaCFBqBOnpZY.png\"},className:\"framer-dcldm8\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/7QdWZXrBjIh65stWlXgV4V26Uaw.png\"},className:\"framer-671fxb\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/fQTxvwnRjfMp67PzCFmtE2L1xY.png\"},className:\"framer-10xjmjq\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:163,pixelWidth:404,src:\"https://framerusercontent.com/images/4ZEwL2yxsVxLjBmpLeMYt3tbNRw.png\"},className:\"framer-qupo8w\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/ztKxkXrRrX8xckUqFDJEGLlYao.png\"},className:\"framer-d2s9cq\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/wrlGe2GSXfYi0uWSWDIneszpoDY.png\"},className:\"framer-1qzyvox\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/7Uu6xEHPCRVzrTtzq3cJwgxFyk.png\"},className:\"framer-1dvgh5s\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:202,pixelHeight:248,pixelWidth:404,src:\"https://framerusercontent.com/images/0hwsC3mxRydyAkJoeIim6Mxf3G0.png\"},className:\"framer-1hfvtgx\",\"data-framer-name\":\"image\"})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wmw2m9\",\"data-framer-name\":\"Frame 1116600399\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qoge4a\",\"data-framer-name\":\"Frame 1116600499\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-zyt50i\",\"data-styles-preset\":\"nROLyPhJ0\",children:\"Meet our Founders\"})}),className:\"framer-1y4swg9\",\"data-framer-name\":\"Meet our Founders\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fi0v86\",\"data-framer-name\":\"Ellipse 34\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nqimyp\",\"data-framer-name\":\"Frame 1116600467\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p4y9zg\",\"data-border\":true,\"data-framer-name\":\"Frame 1116600481\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14vjbw4\",\"data-framer-name\":\"Frame 1116600373\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wl7x2s\",\"data-framer-name\":\"Frame 1261155654\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-17yuvxf hidden-1t1hlid\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-cbtxt\",\"data-framer-name\":\"Frame 1261155655\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:53,intrinsicWidth:52,svg:'<svg width=\"52\" height=\"53\" viewBox=\"0 0 52 53\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.1\">\\n<path d=\"M0 33.1164C0 31.8358 0.116424 30.4969 0.349272 29.0998C1.62994 20.368 5.76299 12.3347 12.7484 5L16.2412 7.61954C12.0499 12.0437 9.89605 16.0021 9.77962 19.4948C9.89605 21.474 11.3514 22.8711 14.1455 23.6861C14.9605 23.9189 15.8337 24.21 16.7651 24.5593C21.3056 26.6549 23.5759 30.2058 23.5759 35.2121C23.5759 37.0748 23.1684 38.8212 22.3534 40.4511C20.2578 44.8753 16.8815 47.0873 12.2245 47.0873C10.5946 47.0873 9.08108 46.7963 7.68399 46.2141C2.56133 44.3514 0 39.9854 0 33.1164ZM28.1164 33.1164C28.1164 31.8358 28.2328 30.4969 28.4657 29.0998C29.7464 20.368 33.8794 12.3347 40.8649 5L44.3576 7.61954C40.1663 12.0437 38.0125 16.0021 37.896 19.4948C38.0125 21.474 39.4678 22.8711 42.262 23.6861C43.0769 23.9189 43.9501 24.21 44.8815 24.5593C49.422 26.6549 51.6923 30.2058 51.6923 35.2121C51.6923 37.0748 51.2848 38.8212 50.4698 40.4511C48.3742 44.8753 44.9979 47.0873 40.341 47.0873C38.711 47.0873 37.1975 46.7963 35.8004 46.2141C30.6778 44.3514 28.1164 39.9854 28.1164 33.1164Z\" fill=\"#FEFEFE\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-wpk89v hidden-72rtr7 hidden-1t1hlid hidden-1pet8py hidden-1u46yxb hidden-1f2bvdf\",children:isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-g0eyo1 hidden-72rtr7\",\"data-framer-name\":\"Frame 1261155655\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:53,intrinsicWidth:52,style:{rotate:180},svg:'<svg width=\"52\" height=\"53\" viewBox=\"0 0 52 53\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.1\">\\n<path d=\"M0 33.1164C0 31.8358 0.116424 30.4969 0.349272 29.0998C1.62994 20.368 5.76299 12.3347 12.7484 5L16.2412 7.61954C12.0499 12.0437 9.89605 16.0021 9.77962 19.4948C9.89605 21.474 11.3514 22.8711 14.1455 23.6861C14.9605 23.9189 15.8337 24.21 16.7651 24.5593C21.3056 26.6549 23.5759 30.2058 23.5759 35.2121C23.5759 37.0748 23.1684 38.8212 22.3534 40.4511C20.2578 44.8753 16.8815 47.0873 12.2245 47.0873C10.5946 47.0873 9.08108 46.7963 7.68399 46.2141C2.56133 44.3514 0 39.9854 0 33.1164ZM28.1164 33.1164C28.1164 31.8358 28.2328 30.4969 28.4657 29.0998C29.7464 20.368 33.8794 12.3347 40.8649 5L44.3576 7.61954C40.1663 12.0437 38.0125 16.0021 37.896 19.4948C38.0125 21.474 39.4678 22.8711 42.262 23.6861C43.0769 23.9189 43.9501 24.21 44.8815 24.5593C49.422 26.6549 51.6923 30.2058 51.6923 35.2121C51.6923 37.0748 51.2848 38.8212 50.4698 40.4511C48.3742 44.8753 44.9979 47.0873 40.341 47.0873C38.711 47.0873 37.1975 46.7963 35.8004 46.2141C30.6778 44.3514 28.1164 39.9854 28.1164 33.1164Z\" fill=\"#FEFEFE\"/>\\n</g>\\n</svg>\\n',transformTemplate:transformTemplate3,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTYwMGl0YWxpYw==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"155%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"We are on a mission to enhance Indian legal practice by offering comprehensive education, practical training, and real-world legal exposure. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTYwMGl0YWxpYw==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"155%\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"We are on a mission to enhance Indian legal practice by offering comprehensive education, practical training, and real-world legal exposure. \"})}),className:\"framer-uqoay5\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Open Sans-600italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"180%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Despite the booming legal industry in India and internationally, there remains a significant gap between the potential and actual preparedness of legal professionals.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Despite the booming legal industry in India and internationally, there remains a significant gap between the potential and actual preparedness of legal professionals.\"})}),className:\"framer-3if2iu\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Open Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-rddhh hidden-1t1hlid hidden-1pet8py hidden-1atmeze\",\"data-framer-name\":\"Frame 1261155656\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:43,intrinsicWidth:524,svg:'<svg width=\"524\" height=\"43\" viewBox=\"0 0 524 43\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.1\">\\n<path d=\"M524 14.0582C524 15.3389 523.884 16.6777 523.651 18.0748C522.37 26.8066 518.237 34.8399 511.252 42.1746L507.759 39.5551C511.95 35.131 514.104 31.1725 514.22 27.6798C514.104 25.7006 512.649 24.3035 509.854 23.4886C509.04 23.2557 508.166 22.9646 507.235 22.6154C502.694 20.5197 500.424 16.9688 500.424 11.9626C500.424 10.0998 500.832 8.35342 501.647 6.72348C503.742 2.29936 507.119 0.0873032 511.775 0.0873032C513.405 0.0873032 514.919 0.378365 516.316 0.960484C521.439 2.82327 524 7.18917 524 14.0582ZM495.884 14.0582C495.884 15.3389 495.767 16.6777 495.534 18.0748C494.254 26.8066 490.121 34.8399 483.135 42.1746L479.642 39.5551C483.834 35.131 485.988 31.1725 486.104 27.6798C485.988 25.7006 484.532 24.3035 481.738 23.4886C480.923 23.2557 480.05 22.9646 479.119 22.6154C474.578 20.5197 472.308 16.9688 472.308 11.9626C472.308 10.0998 472.715 8.35342 473.53 6.72348C475.626 2.29936 479.002 0.0873032 483.659 0.0873032C485.289 0.0873032 486.802 0.378365 488.2 0.960484C493.322 2.82327 495.884 7.18917 495.884 14.0582Z\" fill=\"#FEFEFE\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-yv4zg6 hidden-72rtr7 hidden-1t1hlid hidden-1atmeze hidden-1u46yxb hidden-1f2bvdf\",\"data-framer-name\":\"Frame 1261155655\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:53,intrinsicWidth:52,style:{rotate:180},svg:'<svg width=\"52\" height=\"53\" viewBox=\"0 0 52 53\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.1\">\\n<path d=\"M0 33.1164C0 31.8358 0.116424 30.4969 0.349272 29.0998C1.62994 20.368 5.76299 12.3347 12.7484 5L16.2412 7.61954C12.0499 12.0437 9.89605 16.0021 9.77962 19.4948C9.89605 21.474 11.3514 22.8711 14.1455 23.6861C14.9605 23.9189 15.8337 24.21 16.7651 24.5593C21.3056 26.6549 23.5759 30.2058 23.5759 35.2121C23.5759 37.0748 23.1684 38.8212 22.3534 40.4511C20.2578 44.8753 16.8815 47.0873 12.2245 47.0873C10.5946 47.0873 9.08108 46.7963 7.68399 46.2141C2.56133 44.3514 0 39.9854 0 33.1164ZM28.1164 33.1164C28.1164 31.8358 28.2328 30.4969 28.4657 29.0998C29.7464 20.368 33.8794 12.3347 40.8649 5L44.3576 7.61954C40.1663 12.0437 38.0125 16.0021 37.896 19.4948C38.0125 21.474 39.4678 22.8711 42.262 23.6861C43.0769 23.9189 43.9501 24.21 44.8815 24.5593C49.422 26.6549 51.6923 30.2058 51.6923 35.2121C51.6923 37.0748 51.2848 38.8212 50.4698 40.4511C48.3742 44.8753 44.9979 47.0873 40.341 47.0873C38.711 47.0873 37.1975 46.7963 35.8004 46.2141C30.6778 44.3514 28.1164 39.9854 28.1164 33.1164Z\" fill=\"#FEFEFE\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-yw3rbs hidden-72rtr7 hidden-1pet8py hidden-1atmeze hidden-1u46yxb hidden-1f2bvdf\",\"data-framer-name\":\"Frame 1261155655\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:53,intrinsicWidth:52,style:{rotate:180},svg:'<svg width=\"52\" height=\"53\" viewBox=\"0 0 52 53\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.1\">\\n<path d=\"M0 33.1164C0 31.8358 0.116424 30.4969 0.349272 29.0998C1.62994 20.368 5.76299 12.3347 12.7484 5L16.2412 7.61954C12.0499 12.0437 9.89605 16.0021 9.77962 19.4948C9.89605 21.474 11.3514 22.8711 14.1455 23.6861C14.9605 23.9189 15.8337 24.21 16.7651 24.5593C21.3056 26.6549 23.5759 30.2058 23.5759 35.2121C23.5759 37.0748 23.1684 38.8212 22.3534 40.4511C20.2578 44.8753 16.8815 47.0873 12.2245 47.0873C10.5946 47.0873 9.08108 46.7963 7.68399 46.2141C2.56133 44.3514 0 39.9854 0 33.1164ZM28.1164 33.1164C28.1164 31.8358 28.2328 30.4969 28.4657 29.0998C29.7464 20.368 33.8794 12.3347 40.8649 5L44.3576 7.61954C40.1663 12.0437 38.0125 16.0021 37.896 19.4948C38.0125 21.474 39.4678 22.8711 42.262 23.6861C43.0769 23.9189 43.9501 24.21 44.8815 24.5593C49.422 26.6549 51.6923 30.2058 51.6923 35.2121C51.6923 37.0748 51.2848 38.8212 50.4698 40.4511C48.3742 44.8753 44.9979 47.0873 40.341 47.0873C38.711 47.0873 37.1975 46.7963 35.8004 46.2141C30.6778 44.3514 28.1164 39.9854 28.1164 33.1164Z\" fill=\"#FEFEFE\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-tcecij hidden-72rtr7 hidden-1pet8py hidden-1atmeze hidden-1u46yxb hidden-1f2bvdf\",\"data-framer-name\":\"Frame 1261155655\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:53,intrinsicWidth:52,svg:'<svg width=\"52\" height=\"53\" viewBox=\"0 0 52 53\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.1\">\\n<path d=\"M0 33.1164C0 31.8358 0.116424 30.4969 0.349272 29.0998C1.62994 20.368 5.76299 12.3347 12.7484 5L16.2412 7.61954C12.0499 12.0437 9.89605 16.0021 9.77962 19.4948C9.89605 21.474 11.3514 22.8711 14.1455 23.6861C14.9605 23.9189 15.8337 24.21 16.7651 24.5593C21.3056 26.6549 23.5759 30.2058 23.5759 35.2121C23.5759 37.0748 23.1684 38.8212 22.3534 40.4511C20.2578 44.8753 16.8815 47.0873 12.2245 47.0873C10.5946 47.0873 9.08108 46.7963 7.68399 46.2141C2.56133 44.3514 0 39.9854 0 33.1164ZM28.1164 33.1164C28.1164 31.8358 28.2328 30.4969 28.4657 29.0998C29.7464 20.368 33.8794 12.3347 40.8649 5L44.3576 7.61954C40.1663 12.0437 38.0125 16.0021 37.896 19.4948C38.0125 21.474 39.4678 22.8711 42.262 23.6861C43.0769 23.9189 43.9501 24.21 44.8815 24.5593C49.422 26.6549 51.6923 30.2058 51.6923 35.2121C51.6923 37.0748 51.2848 38.8212 50.4698 40.4511C48.3742 44.8753 44.9979 47.0873 40.341 47.0873C38.711 47.0873 37.1975 46.7963 35.8004 46.2141C30.6778 44.3514 28.1164 39.9854 28.1164 33.1164Z\" fill=\"#FEFEFE\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:191.5,intrinsicWidth:249,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6468.8+40+78+0+0+0+0+16+0),pixelHeight:383,pixelWidth:498,src:\"https://framerusercontent.com/images/sjG3JpJw18K4O4TXIIDvv11Oc.png\"}},Eln0kxZ8s:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:191.5,intrinsicWidth:249,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3572+40+104+0+0+0+0+24+0),pixelHeight:383,pixelWidth:498,src:\"https://framerusercontent.com/images/sjG3JpJw18K4O4TXIIDvv11Oc.png\"}},Yy6226C2c:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:191.5,intrinsicWidth:249,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3770+80+104+0+0+0+0+114.33684738955824),pixelHeight:383,pixelWidth:498,src:\"https://framerusercontent.com/images/sjG3JpJw18K4O4TXIIDvv11Oc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:191.5,intrinsicWidth:249,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3794+80+104+0+0+0+0+60),pixelHeight:383,pixelWidth:498,src:\"https://framerusercontent.com/images/sjG3JpJw18K4O4TXIIDvv11Oc.png\"},className:\"framer-79vjgl\",\"data-framer-name\":\"Frame_111s6600371\"})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kyde0a\",\"data-framer-name\":\"Ellipse 33\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6df3p8\",\"data-framer-name\":\"Advisors\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-sasoxh\",\"data-framer-name\":\"Frame 1116600477\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-zyt50i\",\"data-styles-preset\":\"nROLyPhJ0\",children:\"Supporters and Advisors\"})}),className:\"framer-1i68g4h\",\"data-framer-name\":\"Supporters and Advisors\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-be3g82\",\"data-framer-name\":\"Frame 12307\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-i122p9\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mj7qx7\",\"data-framer-name\":\"Frame 12314\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7137.084522706209+40+78+0+0+0+14+0),positionX:\"center\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/NsFszBOjIzaNds7rMhAF9yhxRmY.png\",srcSet:\"https://framerusercontent.com/images/NsFszBOjIzaNds7rMhAF9yhxRmY.png 809w\"}},Eln0kxZ8s:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4700.847389558233+40+104+0+0+0+0+0),positionX:\"center\",positionY:\"center\",sizes:\"202px\",src:\"https://framerusercontent.com/images/NsFszBOjIzaNds7rMhAF9yhxRmY.png\",srcSet:\"https://framerusercontent.com/images/NsFszBOjIzaNds7rMhAF9yhxRmY.png 809w\"}},Yy6226C2c:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4553+80+104+0+0+0+32+0),positionX:\"center\",positionY:\"center\",sizes:\"202px\",src:\"https://framerusercontent.com/images/NsFszBOjIzaNds7rMhAF9yhxRmY.png\",srcSet:\"https://framerusercontent.com/images/NsFszBOjIzaNds7rMhAF9yhxRmY.png 809w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4522+80+104+0+0+0+32+0),positionX:\"center\",positionY:\"center\",sizes:\"202px\",src:\"https://framerusercontent.com/images/NsFszBOjIzaNds7rMhAF9yhxRmY.png\",srcSet:\"https://framerusercontent.com/images/NsFszBOjIzaNds7rMhAF9yhxRmY.png 809w\"},className:\"framer-1ajarzx\",\"data-framer-name\":\"Frame 12302\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1377km2\",\"data-framer-name\":\"Frame 47\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nzcfyf\",\"data-framer-name\":\"Frame 119\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-2awuv1\",\"data-styles-preset\":\"Dbvcho_cw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Sourav Ganguly\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Sourav Ganguly\"})}),className:\"framer-xro27f\",\"data-framer-name\":\"Sourav Ganguly\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ztmcq8\",\"data-styles-preset\":\"TnM2O04mg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Classplus Brand Ambassador\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"16px\"},children:\"Classplus \"}),\"Brand Ambassador\"]})}),className:\"framer-1fmuzit\",\"data-framer-name\":\"Former Indian Cricket Team Captain, Brand Ambassador at Classplus\",fonts:[\"GF;Open Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kqj7rg\",\"data-framer-name\":\"Frame 1261155613\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7137.084522706209+40+78+0+0+0+14+403.8+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GEW6blGqShqXYhP4LRPGHlcuXw.png\"}},Eln0kxZ8s:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4700.847389558233+40+104+0+0+0+0+408.8+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GEW6blGqShqXYhP4LRPGHlcuXw.png\"}},Yy6226C2c:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4553+80+104+0+0+0+32+432.8+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GEW6blGqShqXYhP4LRPGHlcuXw.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4522+80+104+0+0+0+32+329+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GEW6blGqShqXYhP4LRPGHlcuXw.png\"},className:\"framer-1hcp7ka\",\"data-framer-name\":\"image 261\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7137.084522706209+40+78+0+0+0+14+403.8+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4A0LkelSOVyBAab4oyotQwU5tOg.png\"}},Eln0kxZ8s:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4700.847389558233+40+104+0+0+0+0+408.8+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4A0LkelSOVyBAab4oyotQwU5tOg.png\"}},Yy6226C2c:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4553+80+104+0+0+0+32+432.8+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4A0LkelSOVyBAab4oyotQwU5tOg.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4522+80+104+0+0+0+32+329+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4A0LkelSOVyBAab4oyotQwU5tOg.png\"},className:\"framer-1j5sw6q\",\"data-framer-name\":\"image 262\"})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tzwevj\",\"data-framer-name\":\"Frame 12311\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nqj9ye\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7137.084522706209+40+78+0+0+14+0+0+0),positionX:\"center\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/RhHPTW9Ve47y4MIOAR78e1JfKo.png\",srcSet:\"https://framerusercontent.com/images/RhHPTW9Ve47y4MIOAR78e1JfKo.png 811w\"}},Eln0kxZ8s:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4700.847389558233+40+104+0+0+0+0+0+0),positionX:\"center\",positionY:\"center\",sizes:\"203px\",src:\"https://framerusercontent.com/images/RhHPTW9Ve47y4MIOAR78e1JfKo.png\",srcSet:\"https://framerusercontent.com/images/RhHPTW9Ve47y4MIOAR78e1JfKo.png 811w\"}},Yy6226C2c:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4553+80+104+0+0+32+0+0+0),positionX:\"center\",positionY:\"center\",sizes:\"203px\",src:\"https://framerusercontent.com/images/RhHPTW9Ve47y4MIOAR78e1JfKo.png\",srcSet:\"https://framerusercontent.com/images/RhHPTW9Ve47y4MIOAR78e1JfKo.png 811w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4522+80+104+0+0+32+0+0+0),positionX:\"center\",positionY:\"center\",sizes:\"203px\",src:\"https://framerusercontent.com/images/RhHPTW9Ve47y4MIOAR78e1JfKo.png\",srcSet:\"https://framerusercontent.com/images/RhHPTW9Ve47y4MIOAR78e1JfKo.png 811w\"},className:\"framer-20c1ck\",\"data-framer-name\":\"Frame 12302\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3w0ir\",\"data-framer-name\":\"Frame 47\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18xv80f\",\"data-framer-name\":\"Frame 119\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-2awuv1\",\"data-styles-preset\":\"Dbvcho_cw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Alvin Tse\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-2awuv1\",\"data-styles-preset\":\"Dbvcho_cw\",children:\"Alvin Tse\"})}),className:\"framer-fjawj5\",\"data-framer-name\":\"Alvin Tse\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ztmcq8\",\"data-styles-preset\":\"TnM2O04mg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Former CEO, Xiaomi India\"})})},Yy6226C2c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ztmcq8\",\"data-styles-preset\":\"TnM2O04mg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Former CEO, Xiaomi India\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ztmcq8\",\"data-styles-preset\":\"TnM2O04mg\",children:\"Former CEO, Xiaomi India\"})}),className:\"framer-vtskxd\",\"data-framer-name\":\"Former CEO, Xiaomi India\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uy5mih\",\"data-framer-name\":\"Frame 1116600375\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7137.084522706209+40+78+0+0+14+0+0+179+0+226.8+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/n4U4nKmGFKu5tXA9mfbk9kcJw.png\"}},Eln0kxZ8s:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4700.847389558233+40+104+0+0+0+0+0+234+0+226.8+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/n4U4nKmGFKu5tXA9mfbk9kcJw.png\"}},Yy6226C2c:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4553+80+104+0+0+32+0+0+237+0+226.8+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/n4U4nKmGFKu5tXA9mfbk9kcJw.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4522+80+104+0+0+32+0+0+231+0+226.8+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/n4U4nKmGFKu5tXA9mfbk9kcJw.png\"},className:\"framer-rvkpde\",\"data-framer-name\":\"image 61\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7137.084522706209+40+78+0+0+14+0+0+179+0+226.8+7.724386987407179),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/u4Xe3HB0noIiaLJIjM0fs0f5YeA.png\"}},Eln0kxZ8s:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4700.847389558233+40+104+0+0+0+0+0+234+0+226.8+11),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/u4Xe3HB0noIiaLJIjM0fs0f5YeA.png\"}},Yy6226C2c:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4553+80+104+0+0+32+0+0+237+0+226.8+11),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/u4Xe3HB0noIiaLJIjM0fs0f5YeA.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4522+80+104+0+0+32+0+0+231+0+226.8+11),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/u4Xe3HB0noIiaLJIjM0fs0f5YeA.png\"},className:\"framer-1kx75vc\",\"data-framer-name\":\"image 60\"})})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xwobtj\",\"data-framer-name\":\"Frame 12309\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7137.084522706209+40+78+0+332+12+-74.9),positionX:\"center\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/S7Bi4Ru3t14kx6qk2WfR71sZYQ.png\",srcSet:\"https://framerusercontent.com/images/S7Bi4Ru3t14kx6qk2WfR71sZYQ.png 810w\"}},Eln0kxZ8s:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4700.847389558233+40+104+0+0+24+-96.90445556640626),positionX:\"center\",positionY:\"center\",sizes:\"203px\",src:\"https://framerusercontent.com/images/S7Bi4Ru3t14kx6qk2WfR71sZYQ.png\",srcSet:\"https://framerusercontent.com/images/S7Bi4Ru3t14kx6qk2WfR71sZYQ.png 810w\"}},Yy6226C2c:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4553+80+104+0+0+32+1.0002441406249716),positionX:\"center\",positionY:\"center\",sizes:\"203px\",src:\"https://framerusercontent.com/images/S7Bi4Ru3t14kx6qk2WfR71sZYQ.png\",srcSet:\"https://framerusercontent.com/images/S7Bi4Ru3t14kx6qk2WfR71sZYQ.png 810w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4522+80+104+0+0+32+1.0002441406249716),positionX:\"center\",positionY:\"center\",sizes:\"203px\",src:\"https://framerusercontent.com/images/S7Bi4Ru3t14kx6qk2WfR71sZYQ.png\",srcSet:\"https://framerusercontent.com/images/S7Bi4Ru3t14kx6qk2WfR71sZYQ.png 810w\"},className:\"framer-1s172an\",\"data-framer-name\":\"Frame 12302\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p0tmqg\",\"data-framer-name\":\"Frame 47\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qrgfis\",\"data-framer-name\":\"Frame 119\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-2awuv1\",\"data-styles-preset\":\"Dbvcho_cw\",children:\"Kunal Shah\"})}),className:\"framer-wmk9gl\",\"data-framer-name\":\"Kunal Shah\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ztmcq8\",\"data-styles-preset\":\"TnM2O04mg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Founder, CRED\"})}),className:\"framer-19x5za9\",\"data-framer-name\":\"Founder, CRED\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7137.084522706209+40+78+0+332+12+108.1+0+226.8),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/VyXsjibvOfG1lGlNdg7QDHB9Q.png\"}},Eln0kxZ8s:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4700.847389558233+40+104+0+0+24+140.09554443359374+0+226.8),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/VyXsjibvOfG1lGlNdg7QDHB9Q.png\"}},Yy6226C2c:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4553+80+104+0+0+32+238.00024414062497+0+226.8),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/VyXsjibvOfG1lGlNdg7QDHB9Q.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4522+80+104+0+0+32+238.00024414062497+0+226.8),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/VyXsjibvOfG1lGlNdg7QDHB9Q.png\"},className:\"framer-3qpezf\",\"data-framer-name\":\"image 59\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6g3z12\",\"data-framer-name\":\"Frame 12310\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7137.084522706209+40+78+0+332+14+0),positionX:\"center\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/bV2lg61LSZVga3Kyb837qgqfY.png\",srcSet:\"https://framerusercontent.com/images/bV2lg61LSZVga3Kyb837qgqfY.png 810w\"}},Eln0kxZ8s:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4700.847389558233+40+104+0+548.8+24+0),positionX:\"center\",positionY:\"center\",sizes:\"203px\",src:\"https://framerusercontent.com/images/bV2lg61LSZVga3Kyb837qgqfY.png\",srcSet:\"https://framerusercontent.com/images/bV2lg61LSZVga3Kyb837qgqfY.png 810w\"}},Yy6226C2c:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4553+80+104+0+599.80048828125+32+0),positionX:\"center\",positionY:\"center\",sizes:\"203px\",src:\"https://framerusercontent.com/images/bV2lg61LSZVga3Kyb837qgqfY.png\",srcSet:\"https://framerusercontent.com/images/bV2lg61LSZVga3Kyb837qgqfY.png 810w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4522+80+104+0+599.80048828125+32+0),positionX:\"center\",positionY:\"center\",sizes:\"203px\",src:\"https://framerusercontent.com/images/bV2lg61LSZVga3Kyb837qgqfY.png\",srcSet:\"https://framerusercontent.com/images/bV2lg61LSZVga3Kyb837qgqfY.png 810w\"},className:\"framer-1vj1v44\",\"data-framer-name\":\"Frame 12302\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u8buwe\",\"data-framer-name\":\"Frame 47\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m571za\",\"data-framer-name\":\"Frame 119\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-2awuv1\",\"data-styles-preset\":\"Dbvcho_cw\",children:\"Sriharsha M.\"})}),className:\"framer-18awlzl\",\"data-framer-name\":\"Sriharsha M.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ztmcq8\",\"data-styles-preset\":\"TnM2O04mg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Co-founder, Swiggy\"})}),className:\"framer-5glp2y\",\"data-framer-name\":\"Co-founder, Swiggy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7137.084522706209+40+78+0+332+14+184+0+226.8),positionX:\"center\",positionY:\"center\",sizes:\"112px\",src:\"https://framerusercontent.com/images/wGuABSei0UF3Vpkly9RMUhXBCg.png\",srcSet:\"https://framerusercontent.com/images/wGuABSei0UF3Vpkly9RMUhXBCg.png?scale-down-to=512 512w,https://framerusercontent.com/images/wGuABSei0UF3Vpkly9RMUhXBCg.png 548w\"}},Eln0kxZ8s:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4700.847389558233+40+104+0+548.8+24+237+0+226.8),positionX:\"center\",positionY:\"center\",sizes:\"136.4983px\",src:\"https://framerusercontent.com/images/wGuABSei0UF3Vpkly9RMUhXBCg.png\",srcSet:\"https://framerusercontent.com/images/wGuABSei0UF3Vpkly9RMUhXBCg.png?scale-down-to=512 512w,https://framerusercontent.com/images/wGuABSei0UF3Vpkly9RMUhXBCg.png 548w\"}},Yy6226C2c:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4553+80+104+0+599.80048828125+32+237+0+226.8),positionX:\"center\",positionY:\"center\",sizes:\"136.4983px\",src:\"https://framerusercontent.com/images/wGuABSei0UF3Vpkly9RMUhXBCg.png\",srcSet:\"https://framerusercontent.com/images/wGuABSei0UF3Vpkly9RMUhXBCg.png?scale-down-to=512 512w,https://framerusercontent.com/images/wGuABSei0UF3Vpkly9RMUhXBCg.png 548w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4522+80+104+0+599.80048828125+32+237+0+226.8),positionX:\"center\",positionY:\"center\",sizes:\"136.4983px\",src:\"https://framerusercontent.com/images/wGuABSei0UF3Vpkly9RMUhXBCg.png\",srcSet:\"https://framerusercontent.com/images/wGuABSei0UF3Vpkly9RMUhXBCg.png?scale-down-to=512 512w,https://framerusercontent.com/images/wGuABSei0UF3Vpkly9RMUhXBCg.png 548w\"},className:\"framer-1b0v27a\",\"data-framer-name\":\"image 59\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w1gjdb\",\"data-framer-name\":\"Frame 12312\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7137.084522706209+40+78+0+664+16+0),positionX:\"center\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/EfBQLRt1JI4u4ptBCcrLS7ktXk.png\",srcSet:\"https://framerusercontent.com/images/EfBQLRt1JI4u4ptBCcrLS7ktXk.png 811w\"}},Eln0kxZ8s:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4700.847389558233+40+104+0+548.8+24+0),positionX:\"center\",positionY:\"center\",sizes:\"203px\",src:\"https://framerusercontent.com/images/EfBQLRt1JI4u4ptBCcrLS7ktXk.png\",srcSet:\"https://framerusercontent.com/images/EfBQLRt1JI4u4ptBCcrLS7ktXk.png 811w\"}},Yy6226C2c:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4553+80+104+0+599.80048828125+32+0),positionX:\"center\",positionY:\"center\",sizes:\"203px\",src:\"https://framerusercontent.com/images/EfBQLRt1JI4u4ptBCcrLS7ktXk.png\",srcSet:\"https://framerusercontent.com/images/EfBQLRt1JI4u4ptBCcrLS7ktXk.png 811w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4522+80+104+0+599.80048828125+32+0),positionX:\"center\",positionY:\"center\",sizes:\"203px\",src:\"https://framerusercontent.com/images/EfBQLRt1JI4u4ptBCcrLS7ktXk.png\",srcSet:\"https://framerusercontent.com/images/EfBQLRt1JI4u4ptBCcrLS7ktXk.png 811w\"},className:\"framer-5an80a\",\"data-framer-name\":\"Frame 12302\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-169luts\",\"data-framer-name\":\"Frame 47\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tue0wr\",\"data-framer-name\":\"Frame 119\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-2awuv1\",\"data-styles-preset\":\"Dbvcho_cw\",children:\"Arpan Sheth\"})}),className:\"framer-batrpv\",\"data-framer-name\":\"Arpan Sheth\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"Global Partner, Bain & Co.\"})}),className:\"framer-1kbfhzy\",\"data-framer-name\":\"Global Partner, Bain & Co.\",fonts:[\"GF;Montserrat-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7137.084522706209+40+78+0+664+16+183.47783251231527+0+174.79999999999998),positionX:\"center\",positionY:\"center\",sizes:\"103.1776px\",src:\"https://framerusercontent.com/images/rLVhBINlDQkW0H1HFFNDg0OgAc.png\",srcSet:\"https://framerusercontent.com/images/rLVhBINlDQkW0H1HFFNDg0OgAc.png?scale-down-to=512 512w,https://framerusercontent.com/images/rLVhBINlDQkW0H1HFFNDg0OgAc.png 516w\"}},Eln0kxZ8s:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4700.847389558233+40+104+0+548.8+24+237+0+174.79999999999998),positionX:\"center\",positionY:\"center\",sizes:\"128.972px\",src:\"https://framerusercontent.com/images/rLVhBINlDQkW0H1HFFNDg0OgAc.png\",srcSet:\"https://framerusercontent.com/images/rLVhBINlDQkW0H1HFFNDg0OgAc.png?scale-down-to=512 512w,https://framerusercontent.com/images/rLVhBINlDQkW0H1HFFNDg0OgAc.png 516w\"}},Yy6226C2c:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4553+80+104+0+599.80048828125+32+237+0+174.79999999999998),positionX:\"center\",positionY:\"center\",sizes:\"128.972px\",src:\"https://framerusercontent.com/images/rLVhBINlDQkW0H1HFFNDg0OgAc.png\",srcSet:\"https://framerusercontent.com/images/rLVhBINlDQkW0H1HFFNDg0OgAc.png?scale-down-to=512 512w,https://framerusercontent.com/images/rLVhBINlDQkW0H1HFFNDg0OgAc.png 516w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4522+80+104+0+599.80048828125+32+237+0+174.79999999999998),positionX:\"center\",positionY:\"center\",sizes:\"128.972px\",src:\"https://framerusercontent.com/images/rLVhBINlDQkW0H1HFFNDg0OgAc.png\",srcSet:\"https://framerusercontent.com/images/rLVhBINlDQkW0H1HFFNDg0OgAc.png?scale-down-to=512 512w,https://framerusercontent.com/images/rLVhBINlDQkW0H1HFFNDg0OgAc.png 516w\"},className:\"framer-sl2car\",\"data-framer-name\":\"image 62\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-198bvso\",\"data-framer-name\":\"Frame 12313\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7137.084522706209+40+78+0+664+16+0),positionX:\"center\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/ptkYwitoO83tH3HGHuVkcLEegn4.png\",srcSet:\"https://framerusercontent.com/images/ptkYwitoO83tH3HGHuVkcLEegn4.png 810w\"}},Eln0kxZ8s:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4700.847389558233+40+104+0+548.8+24+0),positionX:\"center\",positionY:\"center\",sizes:\"203px\",src:\"https://framerusercontent.com/images/ptkYwitoO83tH3HGHuVkcLEegn4.png\",srcSet:\"https://framerusercontent.com/images/ptkYwitoO83tH3HGHuVkcLEegn4.png 810w\"}},Yy6226C2c:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4553+80+104+0+599.80048828125+32+0),positionX:\"center\",positionY:\"center\",sizes:\"203px\",src:\"https://framerusercontent.com/images/ptkYwitoO83tH3HGHuVkcLEegn4.png\",srcSet:\"https://framerusercontent.com/images/ptkYwitoO83tH3HGHuVkcLEegn4.png 810w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4522+80+104+0+599.80048828125+32+0),positionX:\"center\",positionY:\"center\",sizes:\"203px\",src:\"https://framerusercontent.com/images/ptkYwitoO83tH3HGHuVkcLEegn4.png\",srcSet:\"https://framerusercontent.com/images/ptkYwitoO83tH3HGHuVkcLEegn4.png 810w\"},className:\"framer-z0wbyk\",\"data-framer-name\":\"Frame 12302\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1skjj19\",\"data-framer-name\":\"Frame 47\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ka2shc\",\"data-framer-name\":\"Frame 119\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-2awuv1\",\"data-styles-preset\":\"Dbvcho_cw\",children:\"Deborah Quazzo\"})}),className:\"framer-15ay8dt\",\"data-framer-name\":\"Deborah Quazzo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ztmcq8\",\"data-styles-preset\":\"TnM2O04mg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Managing Partner, GSV Ventures\"})}),className:\"framer-r1577o\",\"data-framer-name\":\"Managing Partner, GSV Ventures\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7137.084522706209+40+78+0+664+16+183.47783251231527+0+226.8),positionX:\"center\",positionY:\"center\",sizes:\"131.3195px\",src:\"https://framerusercontent.com/images/xJlONhmH8v1pG0n0QzVfLdQ4c.png\",srcSet:\"https://framerusercontent.com/images/xJlONhmH8v1pG0n0QzVfLdQ4c.png?scale-down-to=512 512w,https://framerusercontent.com/images/xJlONhmH8v1pG0n0QzVfLdQ4c.png 692w\"}},Eln0kxZ8s:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4700.847389558233+40+104+0+548.8+24+237+0+212.8),positionX:\"center\",positionY:\"center\",sizes:\"172.3589px\",src:\"https://framerusercontent.com/images/xJlONhmH8v1pG0n0QzVfLdQ4c.png\",srcSet:\"https://framerusercontent.com/images/xJlONhmH8v1pG0n0QzVfLdQ4c.png?scale-down-to=512 512w,https://framerusercontent.com/images/xJlONhmH8v1pG0n0QzVfLdQ4c.png 692w\"}},Yy6226C2c:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4553+80+104+0+599.80048828125+32+237+0+226.8),positionX:\"center\",positionY:\"center\",sizes:\"172.3589px\",src:\"https://framerusercontent.com/images/xJlONhmH8v1pG0n0QzVfLdQ4c.png\",srcSet:\"https://framerusercontent.com/images/xJlONhmH8v1pG0n0QzVfLdQ4c.png?scale-down-to=512 512w,https://framerusercontent.com/images/xJlONhmH8v1pG0n0QzVfLdQ4c.png 692w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4522+80+104+0+599.80048828125+32+237+0+226.8),positionX:\"center\",positionY:\"center\",sizes:\"172.3589px\",src:\"https://framerusercontent.com/images/xJlONhmH8v1pG0n0QzVfLdQ4c.png\",srcSet:\"https://framerusercontent.com/images/xJlONhmH8v1pG0n0QzVfLdQ4c.png?scale-down-to=512 512w,https://framerusercontent.com/images/xJlONhmH8v1pG0n0QzVfLdQ4c.png 692w\"},className:\"framer-wkceyf\",\"data-framer-name\":\"Outlined-Blue-2d 1\"})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q5r5th\",\"data-framer-name\":\"Ellipse 31\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d8tykd\",\"data-framer-name\":\"Ellipse 32\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-svbaog\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-x2ynp5\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2hhbmQtNzAw\",\"--framer-font-family\":'\"Khand\", \"Khand Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"44px\",\"--framer-text-color\":\"rgb(19, 19, 19)\",\"--framer-text-transform\":\"uppercase\"},children:\"potential Placement Partners\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2hhbmQtNzAw\",\"--framer-font-family\":'\"Khand\", \"Khand Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"44px\",\"--framer-text-color\":\"rgb(19, 19, 19)\",\"--framer-text-transform\":\"uppercase\"},children:\"potential Placement Partners\"})}),className:\"framer-1epqft0\",\"data-framer-name\":\"Our Placement Partners\",fonts:[\"GF;Khand-700\"],verticalAlignment:\"center\",withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wzdyhs-container hidden-1t1hlid\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"C5t2dSuNR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"C5t2dSuNR\",layoutId:\"C5t2dSuNR\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8swsfd\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:450,pixelHeight:600,pixelWidth:602,sizes:\"90px\",src:\"https://framerusercontent.com/images/WzoY0mTPKPufYBs4FdzDV1MIrd0.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/WzoY0mTPKPufYBs4FdzDV1MIrd0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WzoY0mTPKPufYBs4FdzDV1MIrd0.jpg 602w\"},className:\"framer-g2ak45\",\"data-framer-name\":\"TTA_LOGO\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:450,pixelHeight:600,pixelWidth:580,sizes:\"90px\",src:\"https://framerusercontent.com/images/aIttw9gKOiRQMapL02QVbQr4lao.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/aIttw9gKOiRQMapL02QVbQr4lao.jpg 580w\"},className:\"framer-1cstnvt\",\"data-framer-name\":\"Phoenix_Legal_Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:450,pixelHeight:600,pixelWidth:530,sizes:\"90px\",src:\"https://framerusercontent.com/images/YkCiUKcr5sHEtYjwNOesnqRBpx8.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/YkCiUKcr5sHEtYjwNOesnqRBpx8.jpg 530w\"},className:\"framer-1yttmiw\",\"data-framer-name\":\"Luthra_Luthra_logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:195,intrinsicWidth:195,pixelHeight:390,pixelWidth:390,src:\"https://framerusercontent.com/images/QAbizwpup9LxtzXVfJj41riq3rA.png\"},className:\"framer-qis08p\",\"data-framer-name\":\"Anand_and_Ansand_Leading_India_Law_Firms_India_Business_Law_Directory_\\xe6_\\xe5_\\xe7_\\xe6_\\xe5_\\xe7_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:150,pixelHeight:200,pixelWidth:300,src:\"https://framerusercontent.com/images/7eyrSn1g5BXnVKgbkPVU76c9L3I.png\"},className:\"framer-1bcrkd8\",\"data-framer-name\":\"Trilegal_Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:84,intrinsicWidth:150,pixelHeight:168,pixelWidth:223,src:\"https://framerusercontent.com/images/S7lhIHkPcMeVgNSVb4faxHig98.png\"},className:\"framer-rw6tx5\",\"data-framer-name\":\"images_1_\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-136df0f\",\"data-framer-name\":\"logo\",fill:\"black\",intrinsicHeight:271,intrinsicWidth:715,svg:'<svg data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 715.11 271.2\"><path d=\"M38.36 237.44c0 8.22-8.58 9.9-12.77 9.9a18.14 18.14 0 0 1-9.34-2.34l.64-6.94h1.58c1.42 4.35 3.6 7.06 7 7.06s7.08-2.39 7.08-6.34c0-5.27-16-6.07-16-14.47 0-6.51 5.91-9.1 10.94-9.1a17.85 17.85 0 0 1 9.51 2.36l-.62 6.71h-1.57c-1.51-3.91-3.06-6.83-7.29-6.83-2.88 0-5.75 1.64-5.75 4.83 0 5 16.59 6.44 16.59 15.16m6.73-21.03-2.65-.88v-1.07l7.81-.88v12.86a15.55 15.55 0 0 1 7.58-2.29c4.11 0 6.34 2.35 6.34 6.24v14l2.83 1.37v1.11H56.71v-1.11l2.29-1.34v-12.07c0-2.71-.7-4.78-4.08-4.78a23.31 23.31 0 0 0-4.69.65v16.2l2.29 1.34v1.11H42.3v-1.11l2.79-1.34ZM73 226.23c2.47-1.52 4.42-2.08 8.69-2.08s8.24 2.11 8.24 7.7v12.53s2.79.4 2.79.44v1.11l-6.21.94-.82-2.4c-1 1.73-3.65 2.87-6.74 2.87-4.15 0-7.78-1-7.78-6.83 0-5.19 3.63-6.56 8.6-6.66 1.57 0 3.28.1 5 .27v-3.33c0-2.7-1.56-4.07-4.54-4.07-2 0-3.72.44-5.38 3.86h-1.27Zm3.76 14.05c0 2.28.44 4.63 3.64 4.63 1.87 0 4.41-1 4.41-3.11v-6c-7.21 0-8 1.06-8 4.43m19.54 5.53 2.8-1.34V227l-2.66-.88V225l6.78-.87.81 3.28a7 7 0 0 1 5.63-3.28c1.91 0 4 1 4.59 2 0 0-.74 4.39-.74 4.43h-1.68c-.13-.84-1.54-3-3.14-3-2 0-3.39.45-4.44 2.84v14l2.79 1.34v1.11H96.35Zm31.54 1.58c-5.73 0-10.51-3.94-10.51-11.29 0-6.1 2.92-11.9 8.92-11.9 2.2 0 4.84 1.19 6.73 2.25v-10l-2.67-.88v-1.07l7.83-.88v31.3s2.8.56 2.8.61v1.1l-5.64.75-1.35-2.55a8.91 8.91 0 0 1-6.08 2.56m-4.67-11.89c0 8.22 3.16 9.18 5.15 9.18a7.47 7.47 0 0 0 4.66-2.12v-14.29a19 19 0 0 0-4.75-.65c-2.12 0-5.06.61-5.06 7.88m32.49 8.49a23.47 23.47 0 0 0 4.72-.63V227l-2.67-.88V225l7.8-.87v20.42l2.64.87v1.06l-6.1.84-1.28-2.46a16.58 16.58 0 0 1-8 2.46c-4.12 0-6.33-2.34-6.33-6.24V227l-2.68-.88V225l7.8-.87v15c0 2.72.73 4.81 4.1 4.81m19.24-27.53-2.67-.88v-1.07l7.81-.88v30.84l2.85 1.33v1.12h-10.78v-1.12l2.79-1.33v-28.01zm41.57-.61 11.26 28.71c.76.27 3.23 1.21 3.23 1.21v1.15h-12.41v-1.11s2.71-1.25 2.83-1.34l-3.22-8.29h-9.33l-3.2 8.44 2.88 1.15v1.15h-9.05v-1.11s2.45-1 3.22-1.25L214 215Zm-6.81 18h7.59l-3.86-9.8Zm54.03-1.45c0-2.71-.7-4.78-4.09-4.78a24.23 24.23 0 0 0-4.74.65 11 11 0 0 1 .36 2.8v13.4l2.32 1.34v1.11h-9.76v-1.11l2.32-1.34v-12.07c0-2.71-.74-4.78-4.1-4.78a24.47 24.47 0 0 0-4.48.61v16.24l2.32 1.34v1.11h-10.27v-1.11l2.78-1.34V227l-2.64-.88V225l6.39-.87 1 2.39a15.78 15.78 0 0 1 7.75-2.39c2.58 0 4.44.79 5.48 2.6a16.51 16.51 0 0 1 8.14-2.6c4.14 0 6.35 2 6.35 6.87v13.4l2.78 1.34v1.11h-10.19v-1.11l2.28-1.34Zm13.71-6.12c2.48-1.52 4.43-2.08 8.68-2.08s8.25 2.11 8.25 7.7v12.53s2.8.4 2.8.44v1.11l-6.23.94-.81-2.4c-1 1.73-3.66 2.87-6.76 2.87-4.12 0-7.77-1-7.77-6.83 0-5.19 3.65-6.56 8.61-6.66 1.57 0 3.26.1 5 .27v-3.33c0-2.7-1.54-4.07-4.54-4.07-2 0-3.7.44-5.35 3.86h-1.29Zm3.75 14.05c0 2.28.45 4.63 3.65 4.63 1.87 0 4.39-1 4.39-3.11v-6c-7.19 0-8 1.06-8 4.43m19.57 5.53 2.8-1.34V227l-2.64-.9V225l6.79-.87.81 3.28a7 7 0 0 1 5.63-3.28c1.92 0 4 1 4.6 2 0 0-.73 4.39-.73 4.43h-1.71c-.13-.84-1.55-3-3.13-3-2 0-3.38.45-4.45 2.84v14l2.81 1.34v1.11h-10.78Zm21.33-10.02c0-6.9 4.52-11.59 12.06-11.59a13.23 13.23 0 0 1 7.22 2l-.6 5.35h-1.43c-.89-3.89-2-4.81-5.19-4.81-4.88 0-6.17 3.14-6.17 9s1.29 9 6.17 9c1.95 0 3.68-.49 5.33-3.87l1.29.06.6 4.34a13.06 13.06 0 0 1-7.22 2c-7.54 0-12.06-4.64-12.06-11.6m25.59-19.21-2.65-.88v-1.07l7.8-.88v12.86a15.62 15.62 0 0 1 7.59-2.29c4.1 0 6.32 2.35 6.32 6.24v14l2.81 1.34v1.11h-10.26v-1.11l2.3-1.34v-12.04c0-2.71-.69-4.78-4.07-4.78a23.13 23.13 0 0 0-4.69.65v16.2l2.3 1.34v1.11H345v-1.11l2.8-1.34Zm27.9 9.82c2.47-1.52 4.43-2.08 8.68-2.08s8.25 2.11 8.25 7.7v12.53s2.81.4 2.81.44v1.11l-6.22.94-.85-2.4c-1 1.73-3.64 2.87-6.71 2.87-4.15 0-7.8-1-7.8-6.83 0-5.19 3.65-6.56 8.6-6.66 1.58 0 3.29.1 5 .27v-3.33c0-2.7-1.56-4.07-4.55-4.07-2 0-3.7.44-5.34 3.86h-1.3Zm3.77 14.05c0 2.28.44 4.63 3.64 4.63 1.86 0 4.38-1 4.38-3.11v-6c-7.17 0-8 1.06-8 4.43M401.9 227l-2.67-.88V225l6.39-.87 1.05 2.47a16.21 16.21 0 0 1 8-2.47c4.11 0 6.34 2.35 6.34 6.24v14l2.79 1.34v1.11h-10.27v-1.11l2.3-1.34v-12.02c0-2.71-.71-4.78-4.09-4.78a23.22 23.22 0 0 0-4.69.65v16.2l2.3 1.34v1.11H399.1v-1.11l2.8-1.34Zm36.1 20.34c-5.74 0-10.52-3.94-10.52-11.29 0-6.1 2.93-11.9 8.92-11.9 2.22 0 4.84 1.19 6.76 2.25v-10l-2.68-.88v-1.07l7.81-.88v31.3s2.76.56 2.76.61v1.1l-5.62.75-1.43-2.55a8.89 8.89 0 0 1-6.07 2.56m-4.68-11.89c0 8.22 3.15 9.18 5.16 9.18a7.61 7.61 0 0 0 4.68-2.12v-14.29a19.3 19.3 0 0 0-4.75-.65c-2.16 0-5.09.61-5.09 7.88m41.45 8.97 2.91 1.34v1.11h-9.11v-1.11l3.48-1.34-.1-27.95v1.77s-3.45-1.29-3.45-1.34v-1.1h9.13l9.91 23.69L497 215.8h9.22v1.1l-3.45 1.34v26.18l3.45 1.34v1.11h-12.07v-1.11l2.89-1.34V223l-9.75 23.89h-2.8l-9.79-23.59Zm37.3-18.19c2.47-1.52 4.43-2.08 8.69-2.08s8.25 2.11 8.25 7.7v12.53s2.79.4 2.79.44v1.11l-6.23.94-.83-2.4c-1 1.73-3.62 2.87-6.74 2.87-4.13 0-7.76-1-7.76-6.83 0-5.19 3.63-6.56 8.61-6.66 1.55 0 3.29.1 5 .27v-3.33c0-2.7-1.54-4.07-4.49-4.07-2 0-3.76.44-5.4 3.86h-1.28Zm3.78 14.05c0 2.28.41 4.63 3.63 4.63 1.85 0 4.36-1 4.36-3.11v-6c-7.17 0-8 1.06-8 4.43M538.24 227l-2.67-.88V225l6.39-.87 1 2.47a16.31 16.31 0 0 1 8-2.47c4.13 0 6.35 2.35 6.35 6.24v14l2.79 1.34v1.11h-10.27v-1.11l2.34-1.34v-12.02c0-2.71-.72-4.78-4.1-4.78a23.57 23.57 0 0 0-4.72.65v16.2l2.33 1.34v1.11h-10.26v-1.11l2.82-1.34Zm40.39-2 7-.64v2.7h-1.6l-3.29-.68a8 8 0 0 1 2.47 6.17c0 5.19-3.63 8.34-9.08 8.34a10.66 10.66 0 0 1-5.85-1.46 2.12 2.12 0 0 0-.83 1.87c0 1.47 1.71 1.86 3.62 2l7.06.4c5.33.27 8 1.64 8 5.19 0 4.74-4.17 9-12.27 9s-12.71-3.19-12.71-6.82c0-2.56 2.18-4.41 4.47-5.07a4.88 4.88 0 0 1-1.28-3.5c0-2.63 2.54-4.31 2.54-4.31a8 8 0 0 1-1.93-5.68c0-5.37 3.39-8.42 9.15-8.42a12 12 0 0 1 4.48.87m-10.69 22.32a3.3 3.3 0 0 0-2.21 3.24c0 2.79 3.45 4.79 8.18 4.79 3.35 0 7.88-1 7.88-4.74 0-2.31-3.28-2.44-5.55-2.58l-6-.3a8.19 8.19 0 0 1-2.26-.41m6.21-8.72c3.05 0 3.58-2.42 3.58-6 0-3.24-.53-6.17-3.58-6.17s-3.63 2.47-3.63 6.17c0 3.18.44 6 3.63 6M591 226.23c2.48-1.52 4.43-2.08 8.72-2.08s8.22 2.11 8.22 7.7v12.53s2.8.4 2.8.44v1.11l-6.2.94-.86-2.4c-1 1.73-3.63 2.87-6.74 2.87-4.13 0-7.78-1-7.78-6.83 0-5.19 3.65-6.56 8.63-6.66 1.54 0 3.27.1 5 .27v-3.33c0-2.7-1.55-4.07-4.52-4.07-2 0-3.73.44-5.36 3.86h-1.3Zm3.78 14.05c0 2.28.45 4.63 3.62 4.63 1.88 0 4.4-1 4.4-3.11v-6c-7.17 0-8 1.06-8 4.43m22.55-23.82-2.66-.88v-1.07l7.79-.88v30.84l2.85 1.33v1.12h-10.76v-1.12l2.78-1.33v-28.01zm22.34 30.93c-5.73 0-10.5-3.94-10.5-11.29 0-6.1 2.93-11.9 8.92-11.9 2.21 0 4.83 1.19 6.71 2.25v-10l-2.62-.88v-1.07l7.8-.88v31.3s2.79.56 2.79.61v1.1l-5.65.75-1.38-2.56a8.77 8.77 0 0 1-6.07 2.56m-4.64-11.89c0 8.22 3.16 9.18 5.16 9.18a7.45 7.45 0 0 0 4.61-2.12v-14.28a18.77 18.77 0 0 0-4.7-.65c-2.14 0-5.07.61-5.07 7.88m23.33-9.22c2.47-1.52 4.42-2.08 8.69-2.08s8.24 2.11 8.24 7.7v12.53s2.79.4 2.79.44v1.11l-6.19.94-.86-2.4c-1 1.73-3.62 2.87-6.75 2.87-4.09 0-7.76-1-7.76-6.83 0-5.19 3.67-6.56 8.62-6.66 1.54 0 3.27.1 5 .27v-3.33c0-2.7-1.56-4.07-4.51-4.07-2 0-3.73.44-5.39 3.86h-1.27Zm3.77 14.05c0 2.28.43 4.63 3.63 4.63 1.84 0 4.38-1 4.38-3.11v-6c-7.18 0-8 1.06-8 4.43m36.7.13c0 6.23-6.05 7-9.55 7a13.93 13.93 0 0 1-7.4-1.9l.66-4.3h1.3a5.61 5.61 0 0 0 5.37 3.9c2.82 0 4.7-1.06 4.7-3.61 0-4.12-11.77-2.7-11.77-10.08 0-4.87 4.83-7.16 8.26-7.16a12 12 0 0 1 7.19 2l-.63 4.29h-1.32c-.9-3.14-2.69-3.9-5.24-3.9-2.37 0-3.73 1.21-3.73 3 0 4.58 12.16 3.09 12.16 10.84M354.67 44.34a15.06 15.06 0 0 0 3.09.19 15.6 15.6 0 0 0 15-16.17 15.76 15.76 0 0 0-5-10.86 16 16 0 0 0-11.19-4.14 15.61 15.61 0 0 0-10 27 15.37 15.37 0 0 0 8.12 4m-5.21-20.08a8.8 8.8 0 0 1 1.1-1.45 7.73 7.73 0 0 1 1.32-1.17 8.83 8.83 0 0 1 9.06-.84 9.72 9.72 0 0 1 2.36 1.55 9.12 9.12 0 0 1 1.05 1.18A9 9 0 0 1 357.49 38a8.59 8.59 0 0 1-1.76-.1 9 9 0 0 1-6.27-13.59m-31.22 35.47a15.83 15.83 0 0 0 2.46-1.85 15.59 15.59 0 0 0 1.11-22A15.49 15.49 0 0 0 311 30.78a15.79 15.79 0 0 0-3.08.16 15.6 15.6 0 1 0 10.3 28.84m-16.91-12a9.1 9.1 0 0 1-.1-1.82 12.65 12.65 0 0 1 .27-1.76 8.82 8.82 0 0 1 6.43-6.46 9.14 9.14 0 0 1 2.78-.33 9.83 9.83 0 0 1 1.58.22 9 9 0 0 1 4 15.45 11 11 0 0 1-1.44 1.07 9 9 0 0 1-11.29-1.7 8.86 8.86 0 0 1-2.24-4.67m-.89 47.12a16.79 16.79 0 0 0 .71-3 15.59 15.59 0 0 0-24.87-14.57 16.61 16.61 0 0 0-2.25 2.09 15.63 15.63 0 0 0-3.78 8.24 15.6 15.6 0 0 0 13.35 17.56 15.4 15.4 0 0 0 11.55-3 15.58 15.58 0 0 0 5.31-7.31m-20.67 1.66a8.71 8.71 0 0 1-2.18-2.85 9.07 9.07 0 0 1-.82-5.17 8.81 8.81 0 0 1 1.58-3.9 8.62 8.62 0 0 1 1.92-2 11 11 0 0 1 1.35-.85 9 9 0 0 1 11.25 2.59A8.89 8.89 0 0 1 294.6 91a8.27 8.27 0 0 1-.43 1.73 8.77 8.77 0 0 1-3.06 4.27 9 9 0 0 1-6.67 1.74 8.81 8.81 0 0 1-4.7-2.14m29.62 36.52a14.35 14.35 0 0 0-1.37-2.78 15.62 15.62 0 0 0-21.52-4.9 15.68 15.68 0 0 0-6.91 9.74 17.65 17.65 0 0 0-.38 3.06 15.45 15.45 0 0 0 2.41 8.71 15.45 15.45 0 0 0 9.73 6.9A15.57 15.57 0 0 0 310 142.11a15.3 15.3 0 0 0-.64-9m-14.77 14.54a7.4 7.4 0 0 1-1.8-.23 8.4 8.4 0 0 1-1.69-.57 8.8 8.8 0 0 1-3.94-3.41 8.5 8.5 0 0 1-1.31-4 8.65 8.65 0 0 1 .15-2.82 9.43 9.43 0 0 1 .5-1.5 9 9 0 0 1 15.92-1.28 9.85 9.85 0 0 1 .78 1.6 8.77 8.77 0 0 1 .37 5.19 9.05 9.05 0 0 1-4 5.64 9 9 0 0 1-5 1.38m46.03 8.88a16 16 0 0 0-2.83-1.22 15.61 15.61 0 0 0-19.63 10.07 15.58 15.58 0 0 0 1 11.9 15 15 0 0 0 1.67 2.6 15.77 15.77 0 0 0 7.44 5.14 15.61 15.61 0 0 0 12.37-28.49m-2 20.66a9.46 9.46 0 0 1-1.52 1 9 9 0 0 1-1.63.64 9.15 9.15 0 0 1-5.26-.07 9 9 0 0 1-3.58-2.23 9.22 9.22 0 0 1-1.66-2.26 8.89 8.89 0 0 1-.6-1.47 8.88 8.88 0 0 1 4.52-10.64 8.87 8.87 0 0 1 6.85-.58 9.94 9.94 0 0 1 1.62.72 8.78 8.78 0 0 1 3.63 3.76 9 9 0 0 1-2.37 11.14m40.98-22.57a14.79 14.79 0 0 0-3 .88 15.61 15.61 0 0 0-.17 28.82 14.76 14.76 0 0 0 2.95.9 15.53 15.53 0 0 0 9-.83 15.39 15.39 0 0 0 8.49-8.37 15.57 15.57 0 0 0-8.32-20.43 15.37 15.37 0 0 0-9-1m11.74 17.07a8.37 8.37 0 0 1-.52 1.75A11.47 11.47 0 0 1 390 175a9 9 0 0 1-4.06 3.27 9.21 9.21 0 0 1-4.17.59 8.25 8.25 0 0 1-2.73-.65 9.36 9.36 0 0 1-1.4-.74 9 9 0 0 1-3.45-4.16 9 9 0 0 1 5-11.74 9.18 9.18 0 0 1 1.72-.5 9 9 0 0 1 10 5.46 9.05 9.05 0 0 1 .49 5.14m16.8-43.57a15.61 15.61 0 0 0 16.7 24.78 16.34 16.34 0 0 0 2.85-1.2 15.6 15.6 0 0 0-.17-27.51 15.58 15.58 0 0 0-19.38 3.93m20 5.55a8.47 8.47 0 0 1 .71 1.67 9.85 9.85 0 0 1 .37 1.73 8.85 8.85 0 0 1-3.83 8.26 8.22 8.22 0 0 1-2.51 1.26 6.7 6.7 0 0 1-1.54.32 9 9 0 0 1-5.31-.95 8.9 8.9 0 0 1-4.41-5.32 8.8 8.8 0 0 1 .65-6.87 9.55 9.55 0 0 1 1-1.48 8.75 8.75 0 0 1 4.31-2.91 9 9 0 0 1 10.57 4.29M413.08 89.4a19.29 19.29 0 0 0 .36 3.07 15.59 15.59 0 0 0 28.36 5.15 14.89 14.89 0 0 0 1.4-2.72 15.4 15.4 0 0 0 .73-9 15.59 15.59 0 0 0-28.35-5.16 15.31 15.31 0 0 0-2.5 8.68M432 80.77a8.26 8.26 0 0 1 1.62.83 8.55 8.55 0 0 1 1.4 1.11 9 9 0 0 1 2.54 4.55 8.89 8.89 0 0 1-.14 4.23 9.26 9.26 0 0 1-1.12 2.58 8.67 8.67 0 0 1-1 1.25 9.08 9.08 0 0 1-4.7 2.67 9 9 0 0 1-10.7-6.92 7.65 7.65 0 0 1-.23-1.75 9 9 0 0 1 7.14-8.94 8.84 8.84 0 0 1 5.15.39M392.1 56.45a15.47 15.47 0 0 0 2.23 2.12 15.62 15.62 0 0 0 21.9-2.74 15.45 15.45 0 0 0 3.15-11.52 16.26 16.26 0 0 0-.66-3 15.47 15.47 0 0 0-5.24-7.36A15.34 15.34 0 0 0 402 30.77a15.67 15.67 0 0 0-10.4 5.91 15.49 15.49 0 0 0-3.14 11.5 15.33 15.33 0 0 0 3.66 8.27M401 37.72a9.83 9.83 0 0 1 1.78-.43 9 9 0 0 1 1.8 0 9.29 9.29 0 0 1 8.28 7.88 10.26 10.26 0 0 1 .05 1.57A9 9 0 0 1 405 55.2a8.85 8.85 0 0 1-6.62-1.84 7.59 7.59 0 0 1-1.3-1.22 9 9 0 0 1-.29-11.43 8.76 8.76 0 0 1 4.19-3m-43.04 16.07a48.5 48.5 0 1 0 48 49 48.56 48.56 0 0 0-48-49m-1 90.07a41.58 41.58 0 1 1 42-41.14 41.62 41.62 0 0 1-42 41.14\" style=\"fill:#bc955c\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:148,intrinsicWidth:589.5,pixelHeight:296,pixelWidth:1179,sizes:\"238.9865px\",src:\"https://framerusercontent.com/images/jTIUVwN30eJk5WUBNtkBdhZR60.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/jTIUVwN30eJk5WUBNtkBdhZR60.png?scale-down-to=512 512w,https://framerusercontent.com/images/jTIUVwN30eJk5WUBNtkBdhZR60.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jTIUVwN30eJk5WUBNtkBdhZR60.png 1179w\"},className:\"framer-dyq80\",\"data-framer-name\":\"cropped_JSA30_years_logo_V1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:36.5,intrinsicWidth:123.5,pixelHeight:73,pixelWidth:247,src:\"https://framerusercontent.com/images/Ajz4BJnffvrYXtFRXH4G7JqHNkQ.png\"},className:\"framer-1lw4d89\",\"data-framer-name\":\"DSK_Legal_Logo_Small\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:26,intrinsicWidth:119.5,pixelHeight:52,pixelWidth:239,src:\"https://framerusercontent.com/images/aDYC8B3O6xp4htvyzUHs4cbLWY.svg\"},className:\"framer-1sy3g3w\",\"data-framer-name\":\"logo_1_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:112.5,pixelHeight:225,pixelWidth:225,src:\"https://framerusercontent.com/images/3n3zTFjzbP4bfka7RNa45aw3bo.png\"},className:\"framer-1e7ljqi\",\"data-framer-name\":\"images\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/NKhbJRXjC9zHxR7bcvVY6qAAxY.jpg\"},className:\"framer-uplspi\",\"data-framer-name\":\"picture\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/2mClG1I2jYa7QdjJAino8leinyg.jpg\"},className:\"framer-18vkwf8\",\"data-framer-name\":\"sr_associates_logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/XfnXwBoUTaaooZSW7L8OGkf3s04.jpg\"},className:\"framer-1jgn9ts\",\"data-framer-name\":\"images\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/k8ywXttJ5NaQQ9wpuVFS3xso.jpg\"},className:\"framer-10nrnlc\",\"data-framer-name\":\"$1630645929355\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/LJdhKTzEJmS9ihFqXLBm4Qywnk8.jpg\"},className:\"framer-4eqmd\",\"data-framer-name\":\"images_1_\"})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rsog5p-container hidden-72rtr7 hidden-1pet8py hidden-1atmeze hidden-1u46yxb hidden-1f2bvdf\",\"data-framer-name\":\"m web placement\",isAuthoredByUser:true,isModuleExternal:true,name:\"m web placement\",nodeId:\"m4ImT4T2i\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"m4ImT4T2i\",layoutId:\"m4ImT4T2i\",name:\"m web placement\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mty7cw\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:450,pixelHeight:600,pixelWidth:602,sizes:\"45px\",src:\"https://framerusercontent.com/images/WzoY0mTPKPufYBs4FdzDV1MIrd0.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/WzoY0mTPKPufYBs4FdzDV1MIrd0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WzoY0mTPKPufYBs4FdzDV1MIrd0.jpg 602w\"},className:\"framer-1t7eslj\",\"data-framer-name\":\"TTA_LOGO\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:450,pixelHeight:600,pixelWidth:580,sizes:\"45px\",src:\"https://framerusercontent.com/images/aIttw9gKOiRQMapL02QVbQr4lao.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/aIttw9gKOiRQMapL02QVbQr4lao.jpg 580w\"},className:\"framer-xxyvk7\",\"data-framer-name\":\"Phoenix_Legal_Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:450,pixelHeight:600,pixelWidth:530,sizes:\"45px\",src:\"https://framerusercontent.com/images/YkCiUKcr5sHEtYjwNOesnqRBpx8.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/YkCiUKcr5sHEtYjwNOesnqRBpx8.jpg 530w\"},className:\"framer-1xowwt5\",\"data-framer-name\":\"Luthra_Luthra_logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:195,intrinsicWidth:195,pixelHeight:390,pixelWidth:390,src:\"https://framerusercontent.com/images/QAbizwpup9LxtzXVfJj41riq3rA.png\"},className:\"framer-m8y0es\",\"data-framer-name\":\"Anand_and_Ansand_Leading_India_Law_Firms_India_Business_Law_Directory_\\xe6_\\xe5_\\xe7_\\xe6_\\xe5_\\xe7_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:150,pixelHeight:200,pixelWidth:300,src:\"https://framerusercontent.com/images/7eyrSn1g5BXnVKgbkPVU76c9L3I.png\"},className:\"framer-1dg00mb\",\"data-framer-name\":\"Trilegal_Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:84,intrinsicWidth:150,pixelHeight:168,pixelWidth:223,src:\"https://framerusercontent.com/images/S7lhIHkPcMeVgNSVb4faxHig98.png\"},className:\"framer-1kv9o2m\",\"data-framer-name\":\"images_1_\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14smdvv\",\"data-framer-name\":\"logo\",fill:\"black\",intrinsicHeight:271,intrinsicWidth:715,svg:'<svg data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 715.11 271.2\"><path d=\"M38.36 237.44c0 8.22-8.58 9.9-12.77 9.9a18.14 18.14 0 0 1-9.34-2.34l.64-6.94h1.58c1.42 4.35 3.6 7.06 7 7.06s7.08-2.39 7.08-6.34c0-5.27-16-6.07-16-14.47 0-6.51 5.91-9.1 10.94-9.1a17.85 17.85 0 0 1 9.51 2.36l-.62 6.71h-1.57c-1.51-3.91-3.06-6.83-7.29-6.83-2.88 0-5.75 1.64-5.75 4.83 0 5 16.59 6.44 16.59 15.16m6.73-21.03-2.65-.88v-1.07l7.81-.88v12.86a15.55 15.55 0 0 1 7.58-2.29c4.11 0 6.34 2.35 6.34 6.24v14l2.83 1.37v1.11H56.71v-1.11l2.29-1.34v-12.07c0-2.71-.7-4.78-4.08-4.78a23.31 23.31 0 0 0-4.69.65v16.2l2.29 1.34v1.11H42.3v-1.11l2.79-1.34ZM73 226.23c2.47-1.52 4.42-2.08 8.69-2.08s8.24 2.11 8.24 7.7v12.53s2.79.4 2.79.44v1.11l-6.21.94-.82-2.4c-1 1.73-3.65 2.87-6.74 2.87-4.15 0-7.78-1-7.78-6.83 0-5.19 3.63-6.56 8.6-6.66 1.57 0 3.28.1 5 .27v-3.33c0-2.7-1.56-4.07-4.54-4.07-2 0-3.72.44-5.38 3.86h-1.27Zm3.76 14.05c0 2.28.44 4.63 3.64 4.63 1.87 0 4.41-1 4.41-3.11v-6c-7.21 0-8 1.06-8 4.43m19.54 5.53 2.8-1.34V227l-2.66-.88V225l6.78-.87.81 3.28a7 7 0 0 1 5.63-3.28c1.91 0 4 1 4.59 2 0 0-.74 4.39-.74 4.43h-1.68c-.13-.84-1.54-3-3.14-3-2 0-3.39.45-4.44 2.84v14l2.79 1.34v1.11H96.35Zm31.54 1.58c-5.73 0-10.51-3.94-10.51-11.29 0-6.1 2.92-11.9 8.92-11.9 2.2 0 4.84 1.19 6.73 2.25v-10l-2.67-.88v-1.07l7.83-.88v31.3s2.8.56 2.8.61v1.1l-5.64.75-1.35-2.55a8.91 8.91 0 0 1-6.08 2.56m-4.67-11.89c0 8.22 3.16 9.18 5.15 9.18a7.47 7.47 0 0 0 4.66-2.12v-14.29a19 19 0 0 0-4.75-.65c-2.12 0-5.06.61-5.06 7.88m32.49 8.49a23.47 23.47 0 0 0 4.72-.63V227l-2.67-.88V225l7.8-.87v20.42l2.64.87v1.06l-6.1.84-1.28-2.46a16.58 16.58 0 0 1-8 2.46c-4.12 0-6.33-2.34-6.33-6.24V227l-2.68-.88V225l7.8-.87v15c0 2.72.73 4.81 4.1 4.81m19.24-27.53-2.67-.88v-1.07l7.81-.88v30.84l2.85 1.33v1.12h-10.78v-1.12l2.79-1.33v-28.01zm41.57-.61 11.26 28.71c.76.27 3.23 1.21 3.23 1.21v1.15h-12.41v-1.11s2.71-1.25 2.83-1.34l-3.22-8.29h-9.33l-3.2 8.44 2.88 1.15v1.15h-9.05v-1.11s2.45-1 3.22-1.25L214 215Zm-6.81 18h7.59l-3.86-9.8Zm54.03-1.45c0-2.71-.7-4.78-4.09-4.78a24.23 24.23 0 0 0-4.74.65 11 11 0 0 1 .36 2.8v13.4l2.32 1.34v1.11h-9.76v-1.11l2.32-1.34v-12.07c0-2.71-.74-4.78-4.1-4.78a24.47 24.47 0 0 0-4.48.61v16.24l2.32 1.34v1.11h-10.27v-1.11l2.78-1.34V227l-2.64-.88V225l6.39-.87 1 2.39a15.78 15.78 0 0 1 7.75-2.39c2.58 0 4.44.79 5.48 2.6a16.51 16.51 0 0 1 8.14-2.6c4.14 0 6.35 2 6.35 6.87v13.4l2.78 1.34v1.11h-10.19v-1.11l2.28-1.34Zm13.71-6.12c2.48-1.52 4.43-2.08 8.68-2.08s8.25 2.11 8.25 7.7v12.53s2.8.4 2.8.44v1.11l-6.23.94-.81-2.4c-1 1.73-3.66 2.87-6.76 2.87-4.12 0-7.77-1-7.77-6.83 0-5.19 3.65-6.56 8.61-6.66 1.57 0 3.26.1 5 .27v-3.33c0-2.7-1.54-4.07-4.54-4.07-2 0-3.7.44-5.35 3.86h-1.29Zm3.75 14.05c0 2.28.45 4.63 3.65 4.63 1.87 0 4.39-1 4.39-3.11v-6c-7.19 0-8 1.06-8 4.43m19.57 5.53 2.8-1.34V227l-2.64-.9V225l6.79-.87.81 3.28a7 7 0 0 1 5.63-3.28c1.92 0 4 1 4.6 2 0 0-.73 4.39-.73 4.43h-1.71c-.13-.84-1.55-3-3.13-3-2 0-3.38.45-4.45 2.84v14l2.81 1.34v1.11h-10.78Zm21.33-10.02c0-6.9 4.52-11.59 12.06-11.59a13.23 13.23 0 0 1 7.22 2l-.6 5.35h-1.43c-.89-3.89-2-4.81-5.19-4.81-4.88 0-6.17 3.14-6.17 9s1.29 9 6.17 9c1.95 0 3.68-.49 5.33-3.87l1.29.06.6 4.34a13.06 13.06 0 0 1-7.22 2c-7.54 0-12.06-4.64-12.06-11.6m25.59-19.21-2.65-.88v-1.07l7.8-.88v12.86a15.62 15.62 0 0 1 7.59-2.29c4.1 0 6.32 2.35 6.32 6.24v14l2.81 1.34v1.11h-10.26v-1.11l2.3-1.34v-12.04c0-2.71-.69-4.78-4.07-4.78a23.13 23.13 0 0 0-4.69.65v16.2l2.3 1.34v1.11H345v-1.11l2.8-1.34Zm27.9 9.82c2.47-1.52 4.43-2.08 8.68-2.08s8.25 2.11 8.25 7.7v12.53s2.81.4 2.81.44v1.11l-6.22.94-.85-2.4c-1 1.73-3.64 2.87-6.71 2.87-4.15 0-7.8-1-7.8-6.83 0-5.19 3.65-6.56 8.6-6.66 1.58 0 3.29.1 5 .27v-3.33c0-2.7-1.56-4.07-4.55-4.07-2 0-3.7.44-5.34 3.86h-1.3Zm3.77 14.05c0 2.28.44 4.63 3.64 4.63 1.86 0 4.38-1 4.38-3.11v-6c-7.17 0-8 1.06-8 4.43M401.9 227l-2.67-.88V225l6.39-.87 1.05 2.47a16.21 16.21 0 0 1 8-2.47c4.11 0 6.34 2.35 6.34 6.24v14l2.79 1.34v1.11h-10.27v-1.11l2.3-1.34v-12.02c0-2.71-.71-4.78-4.09-4.78a23.22 23.22 0 0 0-4.69.65v16.2l2.3 1.34v1.11H399.1v-1.11l2.8-1.34Zm36.1 20.34c-5.74 0-10.52-3.94-10.52-11.29 0-6.1 2.93-11.9 8.92-11.9 2.22 0 4.84 1.19 6.76 2.25v-10l-2.68-.88v-1.07l7.81-.88v31.3s2.76.56 2.76.61v1.1l-5.62.75-1.43-2.55a8.89 8.89 0 0 1-6.07 2.56m-4.68-11.89c0 8.22 3.15 9.18 5.16 9.18a7.61 7.61 0 0 0 4.68-2.12v-14.29a19.3 19.3 0 0 0-4.75-.65c-2.16 0-5.09.61-5.09 7.88m41.45 8.97 2.91 1.34v1.11h-9.11v-1.11l3.48-1.34-.1-27.95v1.77s-3.45-1.29-3.45-1.34v-1.1h9.13l9.91 23.69L497 215.8h9.22v1.1l-3.45 1.34v26.18l3.45 1.34v1.11h-12.07v-1.11l2.89-1.34V223l-9.75 23.89h-2.8l-9.79-23.59Zm37.3-18.19c2.47-1.52 4.43-2.08 8.69-2.08s8.25 2.11 8.25 7.7v12.53s2.79.4 2.79.44v1.11l-6.23.94-.83-2.4c-1 1.73-3.62 2.87-6.74 2.87-4.13 0-7.76-1-7.76-6.83 0-5.19 3.63-6.56 8.61-6.66 1.55 0 3.29.1 5 .27v-3.33c0-2.7-1.54-4.07-4.49-4.07-2 0-3.76.44-5.4 3.86h-1.28Zm3.78 14.05c0 2.28.41 4.63 3.63 4.63 1.85 0 4.36-1 4.36-3.11v-6c-7.17 0-8 1.06-8 4.43M538.24 227l-2.67-.88V225l6.39-.87 1 2.47a16.31 16.31 0 0 1 8-2.47c4.13 0 6.35 2.35 6.35 6.24v14l2.79 1.34v1.11h-10.27v-1.11l2.34-1.34v-12.02c0-2.71-.72-4.78-4.1-4.78a23.57 23.57 0 0 0-4.72.65v16.2l2.33 1.34v1.11h-10.26v-1.11l2.82-1.34Zm40.39-2 7-.64v2.7h-1.6l-3.29-.68a8 8 0 0 1 2.47 6.17c0 5.19-3.63 8.34-9.08 8.34a10.66 10.66 0 0 1-5.85-1.46 2.12 2.12 0 0 0-.83 1.87c0 1.47 1.71 1.86 3.62 2l7.06.4c5.33.27 8 1.64 8 5.19 0 4.74-4.17 9-12.27 9s-12.71-3.19-12.71-6.82c0-2.56 2.18-4.41 4.47-5.07a4.88 4.88 0 0 1-1.28-3.5c0-2.63 2.54-4.31 2.54-4.31a8 8 0 0 1-1.93-5.68c0-5.37 3.39-8.42 9.15-8.42a12 12 0 0 1 4.48.87m-10.69 22.32a3.3 3.3 0 0 0-2.21 3.24c0 2.79 3.45 4.79 8.18 4.79 3.35 0 7.88-1 7.88-4.74 0-2.31-3.28-2.44-5.55-2.58l-6-.3a8.19 8.19 0 0 1-2.26-.41m6.21-8.72c3.05 0 3.58-2.42 3.58-6 0-3.24-.53-6.17-3.58-6.17s-3.63 2.47-3.63 6.17c0 3.18.44 6 3.63 6M591 226.23c2.48-1.52 4.43-2.08 8.72-2.08s8.22 2.11 8.22 7.7v12.53s2.8.4 2.8.44v1.11l-6.2.94-.86-2.4c-1 1.73-3.63 2.87-6.74 2.87-4.13 0-7.78-1-7.78-6.83 0-5.19 3.65-6.56 8.63-6.66 1.54 0 3.27.1 5 .27v-3.33c0-2.7-1.55-4.07-4.52-4.07-2 0-3.73.44-5.36 3.86h-1.3Zm3.78 14.05c0 2.28.45 4.63 3.62 4.63 1.88 0 4.4-1 4.4-3.11v-6c-7.17 0-8 1.06-8 4.43m22.55-23.82-2.66-.88v-1.07l7.79-.88v30.84l2.85 1.33v1.12h-10.76v-1.12l2.78-1.33v-28.01zm22.34 30.93c-5.73 0-10.5-3.94-10.5-11.29 0-6.1 2.93-11.9 8.92-11.9 2.21 0 4.83 1.19 6.71 2.25v-10l-2.62-.88v-1.07l7.8-.88v31.3s2.79.56 2.79.61v1.1l-5.65.75-1.38-2.56a8.77 8.77 0 0 1-6.07 2.56m-4.64-11.89c0 8.22 3.16 9.18 5.16 9.18a7.45 7.45 0 0 0 4.61-2.12v-14.28a18.77 18.77 0 0 0-4.7-.65c-2.14 0-5.07.61-5.07 7.88m23.33-9.22c2.47-1.52 4.42-2.08 8.69-2.08s8.24 2.11 8.24 7.7v12.53s2.79.4 2.79.44v1.11l-6.19.94-.86-2.4c-1 1.73-3.62 2.87-6.75 2.87-4.09 0-7.76-1-7.76-6.83 0-5.19 3.67-6.56 8.62-6.66 1.54 0 3.27.1 5 .27v-3.33c0-2.7-1.56-4.07-4.51-4.07-2 0-3.73.44-5.39 3.86h-1.27Zm3.77 14.05c0 2.28.43 4.63 3.63 4.63 1.84 0 4.38-1 4.38-3.11v-6c-7.18 0-8 1.06-8 4.43m36.7.13c0 6.23-6.05 7-9.55 7a13.93 13.93 0 0 1-7.4-1.9l.66-4.3h1.3a5.61 5.61 0 0 0 5.37 3.9c2.82 0 4.7-1.06 4.7-3.61 0-4.12-11.77-2.7-11.77-10.08 0-4.87 4.83-7.16 8.26-7.16a12 12 0 0 1 7.19 2l-.63 4.29h-1.32c-.9-3.14-2.69-3.9-5.24-3.9-2.37 0-3.73 1.21-3.73 3 0 4.58 12.16 3.09 12.16 10.84M354.67 44.34a15.06 15.06 0 0 0 3.09.19 15.6 15.6 0 0 0 15-16.17 15.76 15.76 0 0 0-5-10.86 16 16 0 0 0-11.19-4.14 15.61 15.61 0 0 0-10 27 15.37 15.37 0 0 0 8.12 4m-5.21-20.08a8.8 8.8 0 0 1 1.1-1.45 7.73 7.73 0 0 1 1.32-1.17 8.83 8.83 0 0 1 9.06-.84 9.72 9.72 0 0 1 2.36 1.55 9.12 9.12 0 0 1 1.05 1.18A9 9 0 0 1 357.49 38a8.59 8.59 0 0 1-1.76-.1 9 9 0 0 1-6.27-13.59m-31.22 35.47a15.83 15.83 0 0 0 2.46-1.85 15.59 15.59 0 0 0 1.11-22A15.49 15.49 0 0 0 311 30.78a15.79 15.79 0 0 0-3.08.16 15.6 15.6 0 1 0 10.3 28.84m-16.91-12a9.1 9.1 0 0 1-.1-1.82 12.65 12.65 0 0 1 .27-1.76 8.82 8.82 0 0 1 6.43-6.46 9.14 9.14 0 0 1 2.78-.33 9.83 9.83 0 0 1 1.58.22 9 9 0 0 1 4 15.45 11 11 0 0 1-1.44 1.07 9 9 0 0 1-11.29-1.7 8.86 8.86 0 0 1-2.24-4.67m-.89 47.12a16.79 16.79 0 0 0 .71-3 15.59 15.59 0 0 0-24.87-14.57 16.61 16.61 0 0 0-2.25 2.09 15.63 15.63 0 0 0-3.78 8.24 15.6 15.6 0 0 0 13.35 17.56 15.4 15.4 0 0 0 11.55-3 15.58 15.58 0 0 0 5.31-7.31m-20.67 1.66a8.71 8.71 0 0 1-2.18-2.85 9.07 9.07 0 0 1-.82-5.17 8.81 8.81 0 0 1 1.58-3.9 8.62 8.62 0 0 1 1.92-2 11 11 0 0 1 1.35-.85 9 9 0 0 1 11.25 2.59A8.89 8.89 0 0 1 294.6 91a8.27 8.27 0 0 1-.43 1.73 8.77 8.77 0 0 1-3.06 4.27 9 9 0 0 1-6.67 1.74 8.81 8.81 0 0 1-4.7-2.14m29.62 36.52a14.35 14.35 0 0 0-1.37-2.78 15.62 15.62 0 0 0-21.52-4.9 15.68 15.68 0 0 0-6.91 9.74 17.65 17.65 0 0 0-.38 3.06 15.45 15.45 0 0 0 2.41 8.71 15.45 15.45 0 0 0 9.73 6.9A15.57 15.57 0 0 0 310 142.11a15.3 15.3 0 0 0-.64-9m-14.77 14.54a7.4 7.4 0 0 1-1.8-.23 8.4 8.4 0 0 1-1.69-.57 8.8 8.8 0 0 1-3.94-3.41 8.5 8.5 0 0 1-1.31-4 8.65 8.65 0 0 1 .15-2.82 9.43 9.43 0 0 1 .5-1.5 9 9 0 0 1 15.92-1.28 9.85 9.85 0 0 1 .78 1.6 8.77 8.77 0 0 1 .37 5.19 9.05 9.05 0 0 1-4 5.64 9 9 0 0 1-5 1.38m46.03 8.88a16 16 0 0 0-2.83-1.22 15.61 15.61 0 0 0-19.63 10.07 15.58 15.58 0 0 0 1 11.9 15 15 0 0 0 1.67 2.6 15.77 15.77 0 0 0 7.44 5.14 15.61 15.61 0 0 0 12.37-28.49m-2 20.66a9.46 9.46 0 0 1-1.52 1 9 9 0 0 1-1.63.64 9.15 9.15 0 0 1-5.26-.07 9 9 0 0 1-3.58-2.23 9.22 9.22 0 0 1-1.66-2.26 8.89 8.89 0 0 1-.6-1.47 8.88 8.88 0 0 1 4.52-10.64 8.87 8.87 0 0 1 6.85-.58 9.94 9.94 0 0 1 1.62.72 8.78 8.78 0 0 1 3.63 3.76 9 9 0 0 1-2.37 11.14m40.98-22.57a14.79 14.79 0 0 0-3 .88 15.61 15.61 0 0 0-.17 28.82 14.76 14.76 0 0 0 2.95.9 15.53 15.53 0 0 0 9-.83 15.39 15.39 0 0 0 8.49-8.37 15.57 15.57 0 0 0-8.32-20.43 15.37 15.37 0 0 0-9-1m11.74 17.07a8.37 8.37 0 0 1-.52 1.75A11.47 11.47 0 0 1 390 175a9 9 0 0 1-4.06 3.27 9.21 9.21 0 0 1-4.17.59 8.25 8.25 0 0 1-2.73-.65 9.36 9.36 0 0 1-1.4-.74 9 9 0 0 1-3.45-4.16 9 9 0 0 1 5-11.74 9.18 9.18 0 0 1 1.72-.5 9 9 0 0 1 10 5.46 9.05 9.05 0 0 1 .49 5.14m16.8-43.57a15.61 15.61 0 0 0 16.7 24.78 16.34 16.34 0 0 0 2.85-1.2 15.6 15.6 0 0 0-.17-27.51 15.58 15.58 0 0 0-19.38 3.93m20 5.55a8.47 8.47 0 0 1 .71 1.67 9.85 9.85 0 0 1 .37 1.73 8.85 8.85 0 0 1-3.83 8.26 8.22 8.22 0 0 1-2.51 1.26 6.7 6.7 0 0 1-1.54.32 9 9 0 0 1-5.31-.95 8.9 8.9 0 0 1-4.41-5.32 8.8 8.8 0 0 1 .65-6.87 9.55 9.55 0 0 1 1-1.48 8.75 8.75 0 0 1 4.31-2.91 9 9 0 0 1 10.57 4.29M413.08 89.4a19.29 19.29 0 0 0 .36 3.07 15.59 15.59 0 0 0 28.36 5.15 14.89 14.89 0 0 0 1.4-2.72 15.4 15.4 0 0 0 .73-9 15.59 15.59 0 0 0-28.35-5.16 15.31 15.31 0 0 0-2.5 8.68M432 80.77a8.26 8.26 0 0 1 1.62.83 8.55 8.55 0 0 1 1.4 1.11 9 9 0 0 1 2.54 4.55 8.89 8.89 0 0 1-.14 4.23 9.26 9.26 0 0 1-1.12 2.58 8.67 8.67 0 0 1-1 1.25 9.08 9.08 0 0 1-4.7 2.67 9 9 0 0 1-10.7-6.92 7.65 7.65 0 0 1-.23-1.75 9 9 0 0 1 7.14-8.94 8.84 8.84 0 0 1 5.15.39M392.1 56.45a15.47 15.47 0 0 0 2.23 2.12 15.62 15.62 0 0 0 21.9-2.74 15.45 15.45 0 0 0 3.15-11.52 16.26 16.26 0 0 0-.66-3 15.47 15.47 0 0 0-5.24-7.36A15.34 15.34 0 0 0 402 30.77a15.67 15.67 0 0 0-10.4 5.91 15.49 15.49 0 0 0-3.14 11.5 15.33 15.33 0 0 0 3.66 8.27M401 37.72a9.83 9.83 0 0 1 1.78-.43 9 9 0 0 1 1.8 0 9.29 9.29 0 0 1 8.28 7.88 10.26 10.26 0 0 1 .05 1.57A9 9 0 0 1 405 55.2a8.85 8.85 0 0 1-6.62-1.84 7.59 7.59 0 0 1-1.3-1.22 9 9 0 0 1-.29-11.43 8.76 8.76 0 0 1 4.19-3m-43.04 16.07a48.5 48.5 0 1 0 48 49 48.56 48.56 0 0 0-48-49m-1 90.07a41.58 41.58 0 1 1 42-41.14 41.62 41.62 0 0 1-42 41.14\" style=\"fill:#bc955c\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:148,intrinsicWidth:589.5,pixelHeight:296,pixelWidth:1179,sizes:\"119.4932px\",src:\"https://framerusercontent.com/images/jTIUVwN30eJk5WUBNtkBdhZR60.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/jTIUVwN30eJk5WUBNtkBdhZR60.png?scale-down-to=512 512w,https://framerusercontent.com/images/jTIUVwN30eJk5WUBNtkBdhZR60.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jTIUVwN30eJk5WUBNtkBdhZR60.png 1179w\"},className:\"framer-1psj4l2\",\"data-framer-name\":\"cropped_JSA30_years_logo_V1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:36.5,intrinsicWidth:123.5,pixelHeight:73,pixelWidth:247,src:\"https://framerusercontent.com/images/Ajz4BJnffvrYXtFRXH4G7JqHNkQ.png\"},className:\"framer-1e64kjt\",\"data-framer-name\":\"DSK_Legal_Logo_Small\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:26,intrinsicWidth:119.5,pixelHeight:52,pixelWidth:239,src:\"https://framerusercontent.com/images/aDYC8B3O6xp4htvyzUHs4cbLWY.svg\"},className:\"framer-1nhqisi\",\"data-framer-name\":\"logo_1_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:112.5,pixelHeight:225,pixelWidth:225,src:\"https://framerusercontent.com/images/3n3zTFjzbP4bfka7RNa45aw3bo.png\"},className:\"framer-1ypoqo\",\"data-framer-name\":\"images\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/NKhbJRXjC9zHxR7bcvVY6qAAxY.jpg\"},className:\"framer-nt21y9\",\"data-framer-name\":\"picture\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/2mClG1I2jYa7QdjJAino8leinyg.jpg\"},className:\"framer-1fe0i52\",\"data-framer-name\":\"sr_associates_logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/XfnXwBoUTaaooZSW7L8OGkf3s04.jpg\"},className:\"framer-o4a66o\",\"data-framer-name\":\"images\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/k8ywXttJ5NaQQ9wpuVFS3xso.jpg\"},className:\"framer-n6x24v\",\"data-framer-name\":\"$1630645929355\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/LJdhKTzEJmS9ihFqXLBm4Qywnk8.jpg\"},className:\"framer-ktwhd7\",\"data-framer-name\":\"images_1_\"})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lttght-container hidden-72rtr7 hidden-1pet8py hidden-1atmeze hidden-1u46yxb hidden-1f2bvdf\",\"data-framer-name\":\"M web placement \",isAuthoredByUser:true,isModuleExternal:true,name:\"M web placement \",nodeId:\"fpjOAGqyE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"fpjOAGqyE\",layoutId:\"fpjOAGqyE\",name:\"M web placement \",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10q4ped\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:36.5,intrinsicWidth:123.5,pixelHeight:73,pixelWidth:247,src:\"https://framerusercontent.com/images/Ajz4BJnffvrYXtFRXH4G7JqHNkQ.png\"},className:\"framer-19ys7xl\",\"data-framer-name\":\"DSK_Legal_Logo_Small\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:26,intrinsicWidth:119.5,pixelHeight:52,pixelWidth:239,src:\"https://framerusercontent.com/images/aDYC8B3O6xp4htvyzUHs4cbLWY.svg\"},className:\"framer-1wkbnmf\",\"data-framer-name\":\"logo_1_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:112.5,pixelHeight:225,pixelWidth:225,src:\"https://framerusercontent.com/images/3n3zTFjzbP4bfka7RNa45aw3bo.png\"},className:\"framer-1r3pun6\",\"data-framer-name\":\"images\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/NKhbJRXjC9zHxR7bcvVY6qAAxY.jpg\"},className:\"framer-1mbnu8y\",\"data-framer-name\":\"picture\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/2mClG1I2jYa7QdjJAino8leinyg.jpg\"},className:\"framer-j465ud\",\"data-framer-name\":\"sr_associates_logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/XfnXwBoUTaaooZSW7L8OGkf3s04.jpg\"},className:\"framer-do2x21\",\"data-framer-name\":\"images\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/k8ywXttJ5NaQQ9wpuVFS3xso.jpg\"},className:\"framer-vjm2lh\",\"data-framer-name\":\"$1630645929355\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/LJdhKTzEJmS9ihFqXLBm4Qywnk8.jpg\"},className:\"framer-o4cwcp\",\"data-framer-name\":\"images_1_\"})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-klqm5s\",\"data-framer-name\":\"Frame 1261155670\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1156310\",\"data-framer-name\":\"Frame 1261155603\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7S2hhbmQtNjAw\",\"--framer-font-family\":'\"Khand\", \"Khand Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"134%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(254, 254, 254)\",\"--framer-text-transform\":\"uppercase\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-text-transform\":\"none\"},children:\"Need more info about us ?\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"32px\"},children:\"Download Brochure to Know more\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-transform\":\"none\"},children:\"  \"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7S2hhbmQtNjAw\",\"--framer-font-family\":'\"Khand\", \"Khand Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"134%\",\"--framer-text-color\":\"rgb(254, 254, 254)\",\"--framer-text-transform\":\"uppercase\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-text-transform\":\"none\"},children:\"Need more info about us ?\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"32px\"},children:\"Download Brochure to Know more\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-transform\":\"none\"},children:\"  \"})]})}),className:\"framer-1tkywdr\",\"data-framer-name\":\"Need more info about us ?\\u2028Download Brochure to Know more\",fonts:[\"GF;Khand-600\",\"GF;Open Sans-500\",\"GF;Montserrat-500\"],verticalAlignment:\"bottom\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Overlay,{children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{y:(componentViewport?.y||0)+0+8295.08452270621+0+0+24+230.4},Eln0kxZ8s:{y:(componentViewport?.y||0)+0+6344.446901276982+0+0+57},Yy6226C2c:{y:(componentViewport?.y||0)+0+6346.6009765625+0+0+57}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:\"230px\",y:(componentViewport?.y||0)+0+6315.6009765625+0+0+57,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-5mu9aw-container\",id:\"5mu9aw\",nodeId:\"vofzRMvKl\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(MainButton,{dEJLOvmQA:true,dkXe8JOXg:\"download\",EKyc_GZAJ:\"rgb(255, 255, 255)\",g0B72lv5Y:true,GGtJFmgLr:\"rgba(255, 255, 255, 0)\",height:\"100%\",id:\"vofzRMvKl\",layoutId:\"vofzRMvKl\",Oph0cM2IU:Oph0cM2IU3bnx0g({overlay:overlay3}),style:{width:\"100%\"},teH0PKZ_G:\"Download Brochure\",variant:\"IKPUq5Er9\",W3ssZ6zb0:{borderColor:\"rgb(255, 255, 255)\",borderStyle:\"solid\",borderWidth:1},width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-wka63d\"),\"data-framer-portal-id\":\"5mu9aw\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay3.hide()},\"GE4M2MwoG\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{width:\"90vw\"},Eln0kxZ8s:{width:\"70vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-185mpz5-container\"),\"data-framer-portal-id\":\"5mu9aw\",inComponentSlot:true,nodeId:\"laZFbSqTd\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{style:{width:\"100%\"}},Eln0kxZ8s:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(BrochureFormParalegal,{height:\"100%\",id:\"laZFbSqTd\",layoutId:\"laZFbSqTd\",uzehgggPh:false,variant:\"LxFvgiihA\",width:\"100%\"})})})})})]}),getContainer())})})]})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-187t3ou\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-u1hwt8\",\"data-framer-name\":\"Frame 1116600477\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-zyt50i\",\"data-styles-preset\":\"nROLyPhJ0\",children:\"Student's Testimonials\"})}),className:\"framer-1dqab5e\",\"data-framer-name\":\"Supporters and Advisors\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12r4t07-container hidden-1t1hlid\",isModuleExternal:true,nodeId:\"Qt8WqBpIN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:24,height:\"100%\",id:\"Qt8WqBpIN\",layoutId:\"Qt8WqBpIN\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:523,width:\"328px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-gxcrkr-container\",\"data-framer-name\":\"V1\",inComponentSlot:true,name:\"V1\",nodeId:\"BIXQqafAM\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(VideoTestimonialCard,{height:\"100%\",id:\"BIXQqafAM\",JovVoa3Rr:\"Practicing Advocate at Delhi High Court.\",layoutId:\"BIXQqafAM\",name:\"V1\",odkjOYEZa:\"Certification in Mergers and Acquisitions\",OtVCDef4s:addImageAlt({src:\"https://framerusercontent.com/images/a0V9ZrDHtAsoRpLJgPss4Tzwo.jpeg\",srcSet:\"https://framerusercontent.com/images/a0V9ZrDHtAsoRpLJgPss4Tzwo.jpeg?scale-down-to=1024 819w,https://framerusercontent.com/images/a0V9ZrDHtAsoRpLJgPss4Tzwo.jpeg 1280w\"},\"\"),qDkOtgrcJ:\"https://framerusercontent.com/assets/cvQ5ABpyTJeqwsAczZ7TAxKOU.mp4\",rofeQqNDz:\"Tarun Sharma\",style:{width:\"100%\"},variant:\"RBVZxi07_\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:523,width:\"328px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bo5bfy-container\",\"data-framer-name\":\"V2\",inComponentSlot:true,name:\"V2\",nodeId:\"E70wEs1xl\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(VideoTestimonialCard,{height:\"100%\",id:\"E70wEs1xl\",JovVoa3Rr:\"Pursuing BA LLB\",layoutId:\"E70wEs1xl\",name:\"V2\",odkjOYEZa:\"Certification in Mergers and Acquisitions\",OtVCDef4s:addImageAlt({src:\"https://framerusercontent.com/images/NGarePPMjuHijJ5QLs7JoZbT6Y.jpeg\",srcSet:\"https://framerusercontent.com/images/NGarePPMjuHijJ5QLs7JoZbT6Y.jpeg?scale-down-to=1024 576w,https://framerusercontent.com/images/NGarePPMjuHijJ5QLs7JoZbT6Y.jpeg 900w\"},\"\"),qDkOtgrcJ:\"https://framerusercontent.com/assets/w5paMbIU4AOazX0iNgbqyzCyK6g.mp4\",rofeQqNDz:\"Vijaya Laxmi\",style:{width:\"100%\"},variant:\"RBVZxi07_\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:523,width:\"328px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-14ag4yr-container\",\"data-framer-name\":\"V3\",inComponentSlot:true,name:\"V3\",nodeId:\"nX0_d8xf_\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(VideoTestimonialCard,{height:\"100%\",id:\"nX0_d8xf_\",JovVoa3Rr:\"Pursuing LLM at MIT School of Law Pune\",layoutId:\"nX0_d8xf_\",name:\"V3\",odkjOYEZa:\"Certification in Mergers and Acquisitions\",OtVCDef4s:addImageAlt({src:\"https://framerusercontent.com/images/Zse1djbVEcJTQ3lVjXWuUWHmyNs.jpeg\",srcSet:\"https://framerusercontent.com/images/Zse1djbVEcJTQ3lVjXWuUWHmyNs.jpeg?scale-down-to=1024 976w,https://framerusercontent.com/images/Zse1djbVEcJTQ3lVjXWuUWHmyNs.jpeg 1220w\"},\"\"),rofeQqNDz:\"Monika Atram\",style:{width:\"100%\"},variant:\"RBVZxi07_\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:523,width:\"328px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-z49unt-container\",\"data-framer-name\":\"V4\",inComponentSlot:true,name:\"V4\",nodeId:\"tX_malG0Z\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(VideoTestimonialCard,{height:\"100%\",id:\"tX_malG0Z\",JovVoa3Rr:\"Practicing Advocate at Bombay High Court\",layoutId:\"tX_malG0Z\",name:\"V4\",odkjOYEZa:\"Certification in Mergers and Acquisitions\",OtVCDef4s:addImageAlt({src:\"https://framerusercontent.com/images/nWhaDeEqolJISzHnWsof01SgA.jpeg\",srcSet:\"https://framerusercontent.com/images/nWhaDeEqolJISzHnWsof01SgA.jpeg?scale-down-to=1024 767w,https://framerusercontent.com/images/nWhaDeEqolJISzHnWsof01SgA.jpeg 959w\"},\"\"),qDkOtgrcJ:\"https://framerusercontent.com/assets/5KgK4ph5qfjiObKajkphEH13SYA.mp4\",rofeQqNDz:\"Anuj\",style:{width:\"100%\"},variant:\"RBVZxi07_\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lfipjn-container hidden-72rtr7 hidden-1pet8py hidden-1atmeze hidden-1u46yxb hidden-1f2bvdf\",\"data-framer-name\":\"carousel mobile\",isModuleExternal:true,name:\"carousel mobile\",nodeId:\"Of5IdYxJE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:0,arrowRadius:40,arrowSize:40,showMouseControls:true}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:24,height:\"100%\",id:\"Of5IdYxJE\",layoutId:\"Of5IdYxJE\",name:\"carousel mobile\",padding:16,paddingBottom:0,paddingLeft:16,paddingPerSide:true,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:523,width:\"328px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ti05j1-container\",\"data-framer-name\":\"V1\",inComponentSlot:true,name:\"V1\",nodeId:\"ch15joGh3\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(VideoTestimonialCard,{height:\"100%\",id:\"ch15joGh3\",JovVoa3Rr:\"Practicing Advocate at Delhi High Court.\",layoutId:\"ch15joGh3\",name:\"V1\",odkjOYEZa:\"Certification in Mergers and Acquisitions\",OtVCDef4s:addImageAlt({src:\"https://framerusercontent.com/images/a0V9ZrDHtAsoRpLJgPss4Tzwo.jpeg\",srcSet:\"https://framerusercontent.com/images/a0V9ZrDHtAsoRpLJgPss4Tzwo.jpeg?scale-down-to=1024 819w,https://framerusercontent.com/images/a0V9ZrDHtAsoRpLJgPss4Tzwo.jpeg 1280w\"},\"\"),qDkOtgrcJ:\"https://framerusercontent.com/assets/cvQ5ABpyTJeqwsAczZ7TAxKOU.mp4\",rofeQqNDz:\"Tarun Sharma\",style:{width:\"100%\"},variant:\"EfqHp59xv\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:523,width:\"328px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v6obkj-container\",\"data-framer-name\":\"V2\",inComponentSlot:true,name:\"V2\",nodeId:\"Jg_T9p9oN\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(VideoTestimonialCard,{height:\"100%\",id:\"Jg_T9p9oN\",JovVoa3Rr:\"Pursuing BA LLB\",layoutId:\"Jg_T9p9oN\",name:\"V2\",odkjOYEZa:\"Certification in Mergers and Acquisitions\",OtVCDef4s:addImageAlt({src:\"https://framerusercontent.com/images/NGarePPMjuHijJ5QLs7JoZbT6Y.jpeg\",srcSet:\"https://framerusercontent.com/images/NGarePPMjuHijJ5QLs7JoZbT6Y.jpeg?scale-down-to=1024 576w,https://framerusercontent.com/images/NGarePPMjuHijJ5QLs7JoZbT6Y.jpeg 900w\"},\"\"),qDkOtgrcJ:\"https://framerusercontent.com/assets/w5paMbIU4AOazX0iNgbqyzCyK6g.mp4\",rofeQqNDz:\"Vijaya Laxmi\",style:{width:\"100%\"},variant:\"EfqHp59xv\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:523,width:\"328px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-65d4qx-container\",\"data-framer-name\":\"V3\",inComponentSlot:true,name:\"V3\",nodeId:\"ZgKT1b01y\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(VideoTestimonialCard,{height:\"100%\",id:\"ZgKT1b01y\",JovVoa3Rr:\"Pursuing LLM at MIT School of Law Pune\",layoutId:\"ZgKT1b01y\",name:\"V3\",odkjOYEZa:\"Certification in Mergers and Acquisitions\",OtVCDef4s:addImageAlt({src:\"https://framerusercontent.com/images/Zse1djbVEcJTQ3lVjXWuUWHmyNs.jpeg\",srcSet:\"https://framerusercontent.com/images/Zse1djbVEcJTQ3lVjXWuUWHmyNs.jpeg?scale-down-to=1024 976w,https://framerusercontent.com/images/Zse1djbVEcJTQ3lVjXWuUWHmyNs.jpeg 1220w\"},\"\"),rofeQqNDz:\"Monika Atram\",style:{width:\"100%\"},variant:\"EfqHp59xv\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qja81o\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:523,width:\"328px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tit7i5-container\",\"data-framer-name\":\"V4\",inComponentSlot:true,name:\"V4\",nodeId:\"Cf3tFcwyT\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(VideoTestimonialCard,{height:\"100%\",id:\"Cf3tFcwyT\",JovVoa3Rr:\"Practicing Advocate at Bombay High Court\",layoutId:\"Cf3tFcwyT\",name:\"V4\",odkjOYEZa:\"Certification in Mergers and Acquisitions\",OtVCDef4s:addImageAlt({src:\"https://framerusercontent.com/images/nWhaDeEqolJISzHnWsof01SgA.jpeg\",srcSet:\"https://framerusercontent.com/images/nWhaDeEqolJISzHnWsof01SgA.jpeg?scale-down-to=1024 767w,https://framerusercontent.com/images/nWhaDeEqolJISzHnWsof01SgA.jpeg 959w\"},\"\"),qDkOtgrcJ:\"https://framerusercontent.com/assets/5KgK4ph5qfjiObKajkphEH13SYA.mp4\",rofeQqNDz:\"Anuj\",style:{width:\"100%\"},variant:\"EfqHp59xv\",width:\"100%\"})})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-158172y\",\"data-framer-name\":\"Free Session\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k8vgg1\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kqe65r\",\"data-framer-name\":\"Frame 1261155606\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-zyt50i\",\"data-styles-preset\":\"nROLyPhJ0\",style:{\"--framer-text-alignment\":\"center\"},children:\"Still have a Query ?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-zyt50i\",\"data-styles-preset\":\"nROLyPhJ0\",style:{\"--framer-text-alignment\":\"left\"},children:\"Still have a Query ?\"})}),className:\"framer-sug94l\",\"data-framer-name\":\"Still have a Query ?\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book Free Counselling Session with Experts or \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Download our App \"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book Free Counselling Session with Experts or \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Download our App \"})]}),className:\"framer-m18z6l\",\"data-framer-name\":\"Book Free Counselling Session with Experts\",fonts:[\"GF;Open Sans-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tsnpr2\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay4=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{y:(componentViewport?.y||0)+0+9003.484522706209+40+0+0+449.99999999999994+0+0},Eln0kxZ8s:{y:(componentViewport?.y||0)+0+6968.446901276982+0+0+459.49999999999994+0},Yy6226C2c:{y:(componentViewport?.y||0)+0+6970.6009765625+0+0+459.49999999999994+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+6939.6009765625+-14.5+0+473.99999999999994+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1e65om0-container\",id:\"1e65om0\",nodeId:\"ovfOvw7W3\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(MainButton,{dEJLOvmQA:true,dkXe8JOXg:\"arrow-right\",EKyc_GZAJ:\"rgb(255, 255, 255)\",g0B72lv5Y:true,GGtJFmgLr:\"var(--token-f1804730-6905-4b48-965a-62b6170a88df, rgb(242, 135, 76))\",height:\"100%\",id:\"ovfOvw7W3\",layoutId:\"ovfOvw7W3\",Oph0cM2IU:Oph0cM2IU3bnx0g({overlay:overlay4}),style:{height:\"100%\"},teH0PKZ_G:\"Book a Free Session\",variant:\"IKPUq5Er9\",W3ssZ6zb0:{borderColor:\"rgba(255, 255, 255, 0.1)\",borderStyle:\"solid\",borderWidth:1},width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay4.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-15ivlc2\"),\"data-framer-portal-id\":\"1e65om0\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay4.hide()},\"zorpbQLQF\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-19ue98v-container\"),\"data-framer-portal-id\":\"1e65om0\",inComponentSlot:true,nodeId:\"nOLygNcw9\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{o2uP9OJxo:false}},children:/*#__PURE__*/_jsx(LeadForm,{height:\"100%\",id:\"nOLygNcw9\",layoutId:\"nOLygNcw9\",o2uP9OJxo:true,variant:\"l2G3bzkVN\",width:\"100%\"})})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=co.nick.sjngt\",motionChild:true,nodeId:\"mNEtasqRx\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:607,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9003.484522706209+40+0+0+449.99999999999994+0+72),pixelHeight:1214,pixelWidth:4096,sizes:\"161.9506px\",src:\"https://framerusercontent.com/images/svAhLyLPXnjRNYpFQVxCKn0HzA.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/svAhLyLPXnjRNYpFQVxCKn0HzA.png?scale-down-to=512 512w,https://framerusercontent.com/images/svAhLyLPXnjRNYpFQVxCKn0HzA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/svAhLyLPXnjRNYpFQVxCKn0HzA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/svAhLyLPXnjRNYpFQVxCKn0HzA.png 4096w\"}},Eln0kxZ8s:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:607,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6968.446901276982+0+0+459.49999999999994+0),pixelHeight:1214,pixelWidth:4096,sizes:\"161.9506px\",src:\"https://framerusercontent.com/images/svAhLyLPXnjRNYpFQVxCKn0HzA.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/svAhLyLPXnjRNYpFQVxCKn0HzA.png?scale-down-to=512 512w,https://framerusercontent.com/images/svAhLyLPXnjRNYpFQVxCKn0HzA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/svAhLyLPXnjRNYpFQVxCKn0HzA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/svAhLyLPXnjRNYpFQVxCKn0HzA.png 4096w\"}},Yy6226C2c:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:607,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6970.6009765625+0+0+459.49999999999994+0),pixelHeight:1214,pixelWidth:4096,sizes:\"161.9506px\",src:\"https://framerusercontent.com/images/svAhLyLPXnjRNYpFQVxCKn0HzA.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/svAhLyLPXnjRNYpFQVxCKn0HzA.png?scale-down-to=512 512w,https://framerusercontent.com/images/svAhLyLPXnjRNYpFQVxCKn0HzA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/svAhLyLPXnjRNYpFQVxCKn0HzA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/svAhLyLPXnjRNYpFQVxCKn0HzA.png 4096w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:607,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6939.6009765625+-14.5+0+473.99999999999994+0),pixelHeight:1214,pixelWidth:4096,sizes:\"161.9506px\",src:\"https://framerusercontent.com/images/svAhLyLPXnjRNYpFQVxCKn0HzA.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/svAhLyLPXnjRNYpFQVxCKn0HzA.png?scale-down-to=512 512w,https://framerusercontent.com/images/svAhLyLPXnjRNYpFQVxCKn0HzA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/svAhLyLPXnjRNYpFQVxCKn0HzA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/svAhLyLPXnjRNYpFQVxCKn0HzA.png 4096w\"},className:\"framer-1nktm0z framer-lux5qc\",\"data-framer-name\":\"Image\"})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9003.484522706209+40+594),pixelHeight:1266,pixelWidth:866,sizes:\"346px\",src:\"https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png\",srcSet:\"https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png?scale-down-to=1024 700w,https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png 866w\"}},Eln0kxZ8s:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6968.446901276982+0),pixelHeight:1266,pixelWidth:866,sizes:\"346px\",src:\"https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png\",srcSet:\"https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png?scale-down-to=1024 700w,https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png 866w\"}},Yy6226C2c:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6970.6009765625+0),pixelHeight:1266,pixelWidth:866,sizes:\"346px\",src:\"https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png\",srcSet:\"https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png?scale-down-to=1024 700w,https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png 866w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6939.6009765625+0),pixelHeight:1266,pixelWidth:866,sizes:\"346px\",src:\"https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png\",srcSet:\"https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png?scale-down-to=1024 700w,https://framerusercontent.com/images/d5dNjXBYRy09ozMxdNHI0jRLp88.png 866w\"},className:\"framer-gba3sm\",\"data-framer-name\":\"Frame 1261155608\"})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5tz0cd hidden-72rtr7 hidden-1pet8py hidden-1atmeze hidden-1u46yxb hidden-1f2bvdf\",\"data-framer-name\":\"Frame 1261155605\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uisod6\",\"data-framer-name\":\"Frame 1116600477\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2hhbmQtNzAw\",\"--framer-font-family\":'\"Khand\", \"Khand Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(254, 254, 254)\",\"--framer-text-transform\":\"uppercase\"},children:\"Who is this course for?\"})}),className:\"framer-n4pp41\",\"data-framer-name\":\"Who is this course for?\",fonts:[\"GF;Khand-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1su1wto\",\"data-framer-name\":\"Frame 1261155625\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tox53w\",\"data-border\":true,\"data-framer-name\":\"Frame 1261155606\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-99p3zm\",\"data-framer-name\":\"Frame 1261155634\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u1i6py\",\"data-framer-name\":\"Frame 1261155640\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-5jfpgk\",\"data-framer-name\":\"Graduation Cap\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ca483e\",\"data-framer-name\":\"vuesax/outline/teacher\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.0098 17.5628C11.1598 17.5628 10.2998 17.3428 9.62982 16.9128L3.60982 12.9828C2.48982 12.2528 1.81982 11.0228 1.81982 9.68278C1.81982 8.34278 2.48982 7.11278 3.60982 6.38278L9.63982 2.46278C10.9798 1.59278 13.0698 1.59278 14.3998 2.47278L20.3898 6.40278C21.4998 7.13278 22.1698 8.36278 22.1698 9.69278C22.1698 11.0228 21.4998 12.2528 20.3898 12.9828L14.3998 16.9128C13.7298 17.3528 12.8698 17.5628 12.0098 17.5628ZM12.0098 3.31278C11.4398 3.31278 10.8698 3.44278 10.4598 3.72278L4.43982 7.64278C3.73982 8.10278 3.32982 8.84278 3.32982 9.68278C3.32982 10.5228 3.72982 11.2628 4.43982 11.7228L10.4598 15.6528C11.2898 16.1928 12.7498 16.1928 13.5798 15.6528L19.5698 11.7228C20.2698 11.2628 20.6698 10.5228 20.6698 9.68278C20.6698 8.84278 20.2698 8.10278 19.5698 7.64278L13.5798 3.71278C13.1598 3.45278 12.5898 3.31278 12.0098 3.31278Z\" fill=\"white\"/>\\n<path d=\"M11.9999 23.3126C11.5599 23.3126 11.1099 23.2526 10.7499 23.1326L7.55994 22.0726C6.04994 21.5726 4.85994 19.9226 4.86994 18.3326L4.87994 13.6426C4.87994 13.2326 5.21994 12.8926 5.62994 12.8926C6.03994 12.8926 6.37994 13.2326 6.37994 13.6426L6.36994 18.3326C6.36994 19.2726 7.14994 20.3526 8.03994 20.6526L11.2299 21.7126C11.6299 21.8426 12.3699 21.8426 12.7699 21.7126L15.9599 20.6526C16.8499 20.3526 17.6299 19.2726 17.6299 18.3426V13.7026C17.6299 13.2926 17.9699 12.9526 18.3799 12.9526C18.7899 12.9526 19.1299 13.2926 19.1299 13.7026V18.3426C19.1299 19.9326 17.9499 21.5726 16.4399 22.0826L13.2499 23.1426C12.8899 23.2526 12.4399 23.3126 11.9999 23.3126Z\" fill=\"white\"/>\\n<path d=\"M21.3999 16.3125C20.9899 16.3125 20.6499 15.9725 20.6499 15.5625V9.5625C20.6499 9.1525 20.9899 8.8125 21.3999 8.8125C21.8099 8.8125 22.1499 9.1525 22.1499 9.5625V15.5625C22.1499 15.9725 21.8099 16.3125 21.3999 16.3125Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Recent Graduates\"})}),className:\"framer-qeoosk\",\"data-framer-name\":\"Law Graduates\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-o5ghmj\",\"data-framer-name\":\"Line 21\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:325,svg:'<svg width=\"325\" height=\"4\" viewBox=\"-1 -1 325 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M321.667 0.5625L1.00008 0.562472\" stroke=\"#FEFEFE\" stroke-opacity=\"0.1\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"31px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Perfect for recent graduates who are graduating without a placement and are eager to upskill themselves though real-life project experience.\"})}),className:\"framer-1m6q9op\",\"data-framer-name\":\"Recent graduates eager to upskill, gain real-life project experience, build their own clientele, start earning while learning, and enhance their prospects for Tier 1 Law Firm placements.\",fonts:[\"GF;Open Sans-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rku0e6\",\"data-border\":true,\"data-framer-name\":\"Frame 1261155624\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-whftk8\",\"data-framer-name\":\"Frame 1261155634\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pe77st\",\"data-framer-name\":\"Frame 1261155641\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-183zhi5\",\"data-framer-name\":\"Rupee\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-11kc9vp\",\"data-framer-name\":\"\u20B9\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"17\" viewBox=\"0 0 12 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.3161 16.5625C8.94099 16.5625 8.59446 16.3621 8.40743 16.0369L5.77248 11.4561C5.47021 10.8963 5.14823 10.5105 4.80653 10.2987C4.47798 10.0717 4.03772 9.95824 3.48574 9.95824H1.60859C1.08843 9.95824 0.666748 9.53657 0.666748 9.0164C0.666748 8.49623 1.08843 8.07456 1.60859 8.07456H4.6094C5.55564 8.07456 6.28503 7.88543 6.79757 7.50718C7.32326 7.1138 7.64524 6.52373 7.76352 5.73697H1.49512C1.03762 5.73697 0.666748 5.36609 0.666748 4.9086C0.666748 4.4511 1.03762 4.08023 1.49512 4.08023H7.68467C7.32983 2.83957 6.34417 2.21924 4.72768 2.21924H1.49512C1.03762 2.21924 0.666748 1.84836 0.666748 1.39087C0.666748 0.933373 1.03762 0.5625 1.49512 0.5625H10.8384C11.2959 0.5625 11.6667 0.933373 11.6667 1.39087C11.6667 1.84836 11.2959 2.21924 10.8384 2.21924H8.78861C9.26173 2.7034 9.57057 3.32373 9.71513 4.08023H10.8384C11.2959 4.08023 11.6667 4.4511 11.6667 4.9086C11.6667 5.36609 11.2959 5.73697 10.8384 5.73697H9.79399C9.70199 6.8112 9.35372 7.69631 8.74918 8.39229C8.15779 9.08827 7.34954 9.5346 6.32445 9.73129C6.67929 9.82207 7.00128 10.0112 7.2904 10.2987C7.59267 10.571 7.88837 10.9568 8.1775 11.4561L10.2233 14.9889C10.6279 15.6878 10.1237 16.5625 9.3161 16.5625Z\" fill=\"#FEFEFE\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Practicing Lawyers\"})}),className:\"framer-w31rbt\",\"data-framer-name\":\"Invest in Your Future\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wxqa7q\",\"data-framer-name\":\"Line 21\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:324,svg:'<svg width=\"324\" height=\"4\" viewBox=\"-1 -1 324 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M321.333 0.5625L0.666807 0.562472\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Designed for lawyers wanting to expand practice areas and boost earnings by gaining new skills and knowledge.\"})}),className:\"framer-x1lvpy\",\"data-framer-name\":\"Lawyers aiming to expand their practice areas and increase their earnings. This program is an investment in your financial future. You'll learn in-demand skills that command premium rates and secure your place in a competitive market.\",fonts:[\"GF;Open Sans-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rdm195\",\"data-border\":true,\"data-framer-name\":\"Frame 1261155622\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15n8dzo\",\"data-framer-name\":\"Frame 1261155634\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p0snmc\",\"data-framer-name\":\"Frame 1261155642\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gdcday\",\"data-framer-name\":\"buildings\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-tqhfls\",\"data-framer-name\":\"vuesax/outline/buildings\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.3335 23.3125H5.3335C2.9135 23.3125 1.5835 21.9825 1.5835 19.5625V11.5625C1.5835 9.1425 2.9135 7.8125 5.3335 7.8125H10.3335C10.7435 7.8125 11.0835 8.1525 11.0835 8.5625V19.5625C11.0835 21.1425 11.7535 21.8125 13.3335 21.8125C13.7435 21.8125 14.0835 22.1525 14.0835 22.5625C14.0835 22.9725 13.7435 23.3125 13.3335 23.3125ZM5.3335 9.3125C3.7535 9.3125 3.0835 9.9825 3.0835 11.5625V19.5625C3.0835 21.1425 3.7535 21.8125 5.3335 21.8125H10.1335C9.77348 21.2225 9.5835 20.4725 9.5835 19.5625V9.3125H5.3335Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M10.3335 9.3125H5.3335C4.9235 9.3125 4.5835 8.9725 4.5835 8.5625V6.5625C4.5835 5.0425 5.8135 3.8125 7.3335 3.8125H10.4435C10.6735 3.8125 10.8935 3.92248 11.0335 4.10248C11.1735 4.29248 11.2235 4.5325 11.1635 4.7525C11.1035 4.9725 11.0835 5.2225 11.0835 5.5625V8.5625C11.0835 8.9725 10.7435 9.3125 10.3335 9.3125ZM6.0835 7.8125H9.5835V5.5625C9.5835 5.4725 9.5835 5.3925 9.5835 5.3125H7.3335C6.6435 5.3125 6.0835 5.8725 6.0835 6.5625V7.8125Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M14.3335 14.3125C13.9235 14.3125 13.5835 13.9725 13.5835 13.5625V8.5625C13.5835 8.1525 13.9235 7.8125 14.3335 7.8125C14.7435 7.8125 15.0835 8.1525 15.0835 8.5625V13.5625C15.0835 13.9725 14.7435 14.3125 14.3335 14.3125Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M18.3335 14.3125C17.9235 14.3125 17.5835 13.9725 17.5835 13.5625V8.5625C17.5835 8.1525 17.9235 7.8125 18.3335 7.8125C18.7435 7.8125 19.0835 8.1525 19.0835 8.5625V13.5625C19.0835 13.9725 18.7435 14.3125 18.3335 14.3125Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M18.3335 23.3125H14.3335C13.9235 23.3125 13.5835 22.9725 13.5835 22.5625V18.5625C13.5835 17.6025 14.3735 16.8125 15.3335 16.8125H17.3335C18.2935 16.8125 19.0835 17.6025 19.0835 18.5625V22.5625C19.0835 22.9725 18.7435 23.3125 18.3335 23.3125ZM15.0835 21.8125H17.5835V18.5625C17.5835 18.4225 17.4735 18.3125 17.3335 18.3125H15.3335C15.1935 18.3125 15.0835 18.4225 15.0835 18.5625V21.8125Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M6.3335 18.3125C5.9235 18.3125 5.5835 17.9725 5.5835 17.5625V13.5625C5.5835 13.1525 5.9235 12.8125 6.3335 12.8125C6.7435 12.8125 7.0835 13.1525 7.0835 13.5625V17.5625C7.0835 17.9725 6.7435 18.3125 6.3335 18.3125Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M19.3335 23.3125H13.3335C10.9135 23.3125 9.5835 21.9825 9.5835 19.5625V5.5625C9.5835 3.1425 10.9135 1.8125 13.3335 1.8125H19.3335C21.7535 1.8125 23.0835 3.1425 23.0835 5.5625V19.5625C23.0835 21.9825 21.7535 23.3125 19.3335 23.3125ZM13.3335 3.3125C11.7535 3.3125 11.0835 3.9825 11.0835 5.5625V19.5625C11.0835 21.1425 11.7535 21.8125 13.3335 21.8125H19.3335C20.9135 21.8125 21.5835 21.1425 21.5835 19.5625V5.5625C21.5835 3.9825 20.9135 3.3125 19.3335 3.3125H13.3335Z\" fill=\"#FEFEFE\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Career Advancement\"})}),className:\"framer-16ucb9s\",\"data-framer-name\":\"Beyond the Courtroom\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11532cj\",\"data-framer-name\":\"Line 21\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:325,svg:'<svg width=\"325\" height=\"4\" viewBox=\"-1 -1 325 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M322 0.5625L1.33331 0.562472\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Designed for lawyers aspiring to enter Investment Banks, Big 4 firms, and startups and looking for guidance for successful career transitions into these prestigious sectors.\"})}),className:\"framer-1d9kdl8\",\"data-framer-name\":\"Join the ranks of top legal minds shaping deals and building empires at Investment Banks and Big 4 firms. This course positions you to capitalise on the growing intersection of law, finance, and innovation in Investment Banks, Big 4 firms, and startups.\",fonts:[\"GF;Open Sans-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4890.8+1335-774),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/QMp4oprpukAhBD0HLGpGQmMD2As.png\",srcSet:\"https://framerusercontent.com/images/QMp4oprpukAhBD0HLGpGQmMD2As.png?scale-down-to=512 512w,https://framerusercontent.com/images/QMp4oprpukAhBD0HLGpGQmMD2As.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QMp4oprpukAhBD0HLGpGQmMD2As.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/QMp4oprpukAhBD0HLGpGQmMD2As.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/QMp4oprpukAhBD0HLGpGQmMD2As.png\",srcSet:\"https://framerusercontent.com/images/QMp4oprpukAhBD0HLGpGQmMD2As.png?scale-down-to=512 512w,https://framerusercontent.com/images/QMp4oprpukAhBD0HLGpGQmMD2As.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QMp4oprpukAhBD0HLGpGQmMD2As.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/QMp4oprpukAhBD0HLGpGQmMD2As.png 2880w\"},className:\"framer-opjkqw\",\"data-framer-name\":\"image 309\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{y:(componentViewport?.y||0)+0+10130.484522706209},Eln0kxZ8s:{y:(componentViewport?.y||0)+0+7461.446901276982},Yy6226C2c:{y:(componentViewport?.y||0)+0+7463.6009765625}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:274,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7432.6009765625,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13stob1-container\",nodeId:\"Z80IPAAzr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{variant:\"bw_h64aAc\"}},children:/*#__PURE__*/_jsx(FooterCopy,{height:\"100%\",id:\"Z80IPAAzr\",layoutId:\"Z80IPAAzr\",style:{width:\"100%\"},variant:\"qUb_qdMs2\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"up\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:74}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10pz79r hidden-72rtr7 hidden-1pet8py hidden-1atmeze hidden-1u46yxb hidden-1f2bvdf\",\"data-framer-name\":\"Sticky Button \",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(Overlay,{children:overlay5=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MJHZHjCQ7\"},implicitPathVariables:undefined},{href:{webPageId:\"MJHZHjCQ7\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{width:\"max(100vw - 48px, 1px)\",y:938}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-pj9pvz-container\",id:\"pj9pvz\",nodeId:\"tL9T2kliU\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{rV5V1gWDC:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(MainButton,{dEJLOvmQA:true,dkXe8JOXg:\"arrow-right\",EKyc_GZAJ:\"rgb(255, 255, 255)\",g0B72lv5Y:true,GGtJFmgLr:\"rgb(242, 135, 76)\",height:\"100%\",id:\"tL9T2kliU\",layoutId:\"tL9T2kliU\",Oph0cM2IU:Oph0cM2IU3bnx0g({overlay:overlay5}),rV5V1gWDC:resolvedLinks2[0],style:{width:\"100%\"},teH0PKZ_G:\"Book a Free Session\",variant:\"IKPUq5Er9\",W3ssZ6zb0:{borderColor:\"rgba(255, 255, 255, 0.1)\",borderStyle:\"solid\",borderWidth:1},width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay5.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1k454fe\"),\"data-framer-portal-id\":\"pj9pvz\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay5.hide()},\"wYCH0AJ4z\"),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{width:\"90vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:`${cx(scopingClassNames,\"framer-swkyyx-container\")} hidden-72rtr7`,\"data-framer-portal-id\":\"pj9pvz\",inComponentSlot:true,nodeId:\"s1t5YEAfx\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(LeadForm,{height:\"100%\",id:\"s1t5YEAfx\",layoutId:\"s1t5YEAfx\",o2uP9OJxo:false,variant:\"l2G3bzkVN\",width:\"100%\"})})})})})]}),getContainer())})})]})})})})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivOnCloseParentClick1bfk67aWithOptimizedAppearEffect,{animate:animation1,className:\"framer-1bfk67a hidden-1t1hlid\",\"data-framer-appear-id\":\"1bfk67a\",\"data-framer-name\":\"Popup overlay\",initial:animation2,optimized:true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pf3cyd-container\",\"data-framer-name\":\"Close\",isAuthoredByUser:true,isModuleExternal:true,name:\"Close\",nodeId:\"U2cwSgrnD\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatherOnCloseClickpf3cyd,{color:\"var(--token-56b7112a-d292-41ce-9ea0-07245415e0d0, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"U2cwSgrnD\",layoutId:\"U2cwSgrnD\",mirrored:false,name:\"Close\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Eln0kxZ8s:{width:\"70vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:500,y:-1636.4999999999998,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13kva5f-container\",nodeId:\"y1LIWVtZU\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Eln0kxZ8s:{o2uP9OJxo:false,style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(LeadForm,{height:\"100%\",id:\"y1LIWVtZU\",layoutId:\"y1LIWVtZU\",MOOovKpy9:addImageAlt({src:\"https://framerusercontent.com/images/aIjwSiMdfrb9B9T1hobM2tJsEIM.jpg\",srcSet:\"https://framerusercontent.com/images/aIjwSiMdfrb9B9T1hobM2tJsEIM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aIjwSiMdfrb9B9T1hobM2tJsEIM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aIjwSiMdfrb9B9T1hobM2tJsEIM.jpg 1600w\"},\"\"),o2uP9OJxo:true,variant:\"l2G3bzkVN\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(MotionDivOnCloseParentClick1rcvp2fWithOptimizedAppearEffect,{animate:animation1,className:\"framer-1rcvp2f\",\"data-framer-appear-id\":\"1rcvp2f\",\"data-framer-name\":\"Sale roadblock\",initial:animation2,optimized:true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mfneq5-container\",\"data-framer-name\":\"Close\",isAuthoredByUser:true,isModuleExternal:true,name:\"Close\",nodeId:\"IYjPqoyvp\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatherOnCloseClick1mfneq5,{color:\"var(--token-56b7112a-d292-41ce-9ea0-07245415e0d0, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"IYjPqoyvp\",layoutId:\"IYjPqoyvp\",mirrored:false,name:\"Close\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:\"https://forms.gle/tPwurGFoh3sWTRZo9\",motionChild:true,nodeId:\"ud3ez2eM8\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Eln0kxZ8s:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:333,loading:getLoadingLazyAtYPosition(-2922.75),pixelHeight:500,pixelWidth:666,sizes:\"90vw\",src:\"https://framerusercontent.com/images/nk2dWoWKsfH01cGtRjgnZSn5o.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nk2dWoWKsfH01cGtRjgnZSn5o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nk2dWoWKsfH01cGtRjgnZSn5o.jpg 666w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:333,loading:getLoadingLazyAtYPosition(-3024.736160188457),pixelHeight:500,pixelWidth:666,sizes:\"999.3922px\",src:\"https://framerusercontent.com/images/nk2dWoWKsfH01cGtRjgnZSn5o.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nk2dWoWKsfH01cGtRjgnZSn5o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nk2dWoWKsfH01cGtRjgnZSn5o.jpg 666w\"},className:\"framer-1ug6030 hidden-1t1hlid framer-lux5qc\",\"data-framer-name\":\"WhatsApp Image 2025-03-11 at 17.00.45\",transformTemplate:transformTemplate1})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:\"https://forms.gle/tPwurGFoh3sWTRZo9\",motionChild:true,nodeId:\"qUKj8_Mkh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C64c7WEDa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:540,loading:getLoadingLazyAtYPosition(-963.4999999999998),pixelHeight:1920,pixelWidth:1080,sizes:\"90vw\",src:\"https://framerusercontent.com/images/dt5aQQJMoTYM1haxi01hw4pyrsU.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/dt5aQQJMoTYM1haxi01hw4pyrsU.jpg?scale-down-to=1024 576w,https://framerusercontent.com/images/dt5aQQJMoTYM1haxi01hw4pyrsU.jpg 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:540,pixelHeight:1920,pixelWidth:1080,src:\"https://framerusercontent.com/images/dt5aQQJMoTYM1haxi01hw4pyrsU.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/dt5aQQJMoTYM1haxi01hw4pyrsU.jpg?scale-down-to=1024 576w,https://framerusercontent.com/images/dt5aQQJMoTYM1haxi01hw4pyrsU.jpg 1080w\"},className:\"framer-19xqhfp hidden-72rtr7 hidden-1pet8py hidden-1atmeze hidden-1u46yxb hidden-1f2bvdf framer-lux5qc\",\"data-framer-name\":\"1080 x 1920\",transformTemplate:transformTemplate1})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2b8tj.framer-lux5qc, .framer-2b8tj .framer-lux5qc { display: block; }\",\".framer-2b8tj.framer-72rtr7 { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-2b8tj .framer-1ud2umu-container { flex: none; height: 80px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 0px; width: 100%; z-index: 8; }\",\".framer-2b8tj.framer-1uqemc6, .framer-2b8tj.framer-zu60cn, .framer-2b8tj.framer-wka63d, .framer-2b8tj.framer-15ivlc2 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 9; }\",\".framer-2b8tj.framer-1awmapt-container, .framer-2b8tj.framer-1poptpm-container { flex: none; height: auto; left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 809px; z-index: 9; }\",\".framer-2b8tj .framer-nirmqk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 94vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-ppx5o4 { background-color: #ffffff; flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-2b8tj .framer-1uv6ole { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-2b8tj .framer-1s2g53d { aspect-ratio: 0.684044233807267 / 1; bottom: 0px; flex: none; height: 75vh; position: absolute; right: 115px; width: var(--framer-aspect-ratio-supported, 436px); }\",\".framer-2b8tj .framer-1281ht4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 46px; height: min-content; justify-content: flex-start; left: 113px; overflow: visible; padding: 0px; position: absolute; top: 50%; transform: translateY(-50%); width: 566px; }\",\".framer-2b8tj .framer-3t1oeg { 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-2b8tj .framer-1peuhg9, .framer-2b8tj .framer-tqnx3g, .framer-2b8tj .framer-t1lwhh, .framer-2b8tj .framer-m9jsb3, .framer-2b8tj .framer-1t9yepy, .framer-2b8tj .framer-1v5ip6m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-1gd5fpa, .framer-2b8tj .framer-ykx8kj { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 566px; word-break: break-word; word-wrap: break-word; }\",\".framer-2b8tj .framer-17usjx0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-1m4uwhs-container, .framer-2b8tj .framer-10ny23t-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-2b8tj.framer-3zp1fa, .framer-2b8tj.framer-1k454fe { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-2b8tj.framer-1z0xomn-container { flex: none; height: auto; left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: auto; }\",\".framer-2b8tj .framer-amjtuf { align-content: flex-start; align-items: flex-start; background-color: #010000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 50%; min-height: 80px; overflow: visible; padding: 0px; position: absolute; top: 0px; transform: translateX(-50%); width: 1440px; }\",\".framer-2b8tj .framer-1ihtz8i { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; bottom: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: 24px; justify-content: flex-start; left: 113px; overflow: visible; padding: 0px; position: absolute; width: min-content; }\",\".framer-2b8tj .framer-b3x40g, .framer-2b8tj .framer-1hq1oh2, .framer-2b8tj .framer-1gucmzu, .framer-2b8tj .framer-1frspul, .framer-2b8tj .framer-12dq5f, .framer-2b8tj .framer-1r7i94r, .framer-2b8tj .framer-xro27f, .framer-2b8tj .framer-fjawj5, .framer-2b8tj .framer-wmk9gl, .framer-2b8tj .framer-18awlzl, .framer-2b8tj .framer-batrpv, .framer-2b8tj .framer-15ay8dt, .framer-2b8tj .framer-1epqft0, .framer-2b8tj .framer-1tkywdr { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-2b8tj .framer-q15xvd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-2b8tj .framer-1aoven4, .framer-2b8tj .framer-itnifk, .framer-2b8tj .framer-kqj7rg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-2b8tj .framer-cq5fv4, .framer-2b8tj .framer-1hcp7ka { aspect-ratio: 0.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 18px; }\",\".framer-2b8tj .framer-k7zxwq, .framer-2b8tj .framer-1j5sw6q { aspect-ratio: 3.4583333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 83px; }\",\".framer-2b8tj .framer-1kl1z7a { flex: none; height: 24px; overflow: visible; position: relative; width: 110px; }\",\".framer-2b8tj .framer-f99yzg, .framer-2b8tj .framer-9zfeye { flex: none; height: 24px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-2b8tj .framer-1cfk5xg { flex: none; height: 18px; left: 27px; position: absolute; top: 3px; width: 83px; }\",\".framer-2b8tj .framer-1k337ck { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 78px; width: 100%; z-index: 1; }\",\".framer-2b8tj .framer-nbzfsz-container { flex: 1 0 0px; height: 48px; position: sticky; top: 77px; width: 1px; z-index: 2; }\",\".framer-2b8tj .framer-spn173 { align-content: center; align-items: center; background-color: #f2874b; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 14px; position: relative; width: min-content; }\",\".framer-2b8tj .framer-qdtzhl { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 143px 80px 143px; position: relative; width: 1440px; }\",\".framer-2b8tj .framer-x12isp, .framer-2b8tj .framer-sasoxh, .framer-2b8tj .framer-u1hwt8, .framer-2b8tj .framer-1uisod6, .framer-2b8tj .framer-1su1wto { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-5fwzsv, .framer-2b8tj .framer-1s5jwy2, .framer-2b8tj .framer-1i68g4h { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1154px; word-break: break-word; word-wrap: break-word; }\",\".framer-2b8tj .framer-wljxtx { aspect-ratio: 1.7841213310431285 / 1; bottom: -4px; flex: none; height: var(--framer-aspect-ratio-supported, 807px); left: 0px; opacity: 0.64; position: absolute; right: 0px; z-index: 1; }\",\".framer-2b8tj .framer-hfc7w3 { display: grid; flex: none; gap: 16px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 584px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-15o8bvp { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(9.5px); align-content: flex-start; align-items: flex-start; align-self: start; backdrop-filter: blur(9.5px); background-color: rgba(255, 255, 255, 0.06); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: flex-start; justify-self: start; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-okg743, .framer-2b8tj .framer-1rr90h0, .framer-2b8tj .framer-e4blow, .framer-2b8tj .framer-1jxr2gt, .framer-2b8tj .framer-1lgmtbx, .framer-2b8tj .framer-1y8pn8, .framer-2b8tj .framer-1u1i6py, .framer-2b8tj .framer-pe77st, .framer-2b8tj .framer-1p0snmc { align-content: center; align-items: center; background-color: #f2874b; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px; position: relative; width: min-content; }\",\".framer-2b8tj .framer-1egzjwp, .framer-2b8tj .framer-1uo323b, .framer-2b8tj .framer-mq1dbt, .framer-2b8tj .framer-v6y13k, .framer-2b8tj .framer-5jfpgk, .framer-2b8tj .framer-1gdcday { flex: none; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-2b8tj .framer-1rrhk7u { flex: none; height: 22px; left: 1px; position: absolute; top: 1px; width: 22px; }\",\".framer-2b8tj .framer-w6ri7r, .framer-2b8tj .framer-wy9khv, .framer-2b8tj .framer-ulhwxg, .framer-2b8tj .framer-r5gqaw { --framer-paragraph-spacing: 8px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 326px; word-break: break-word; word-wrap: break-word; }\",\".framer-2b8tj .framer-6mr00z, .framer-2b8tj .framer-k4qppn, .framer-2b8tj .framer-5c0vz, .framer-2b8tj .framer-w2voc6, .framer-2b8tj .framer-1uw9zkc, .framer-2b8tj .framer-6ijre8 { flex: none; height: 4px; position: relative; width: 330px; }\",\".framer-2b8tj .framer-1n9ee5v, .framer-2b8tj .framer-19vr35g, .framer-2b8tj .framer-8syif8, .framer-2b8tj .framer-757mbv, .framer-2b8tj .framer-1hc3y6u { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 326px; word-break: break-word; word-wrap: break-word; }\",\".framer-2b8tj .framer-196u8bf { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(5px); align-content: flex-start; align-items: flex-start; align-self: start; backdrop-filter: blur(5px); background-color: rgba(255, 255, 255, 0.06); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-2b8tj .framer-4nvjpy, .framer-2b8tj .framer-mku4zo, .framer-2b8tj .framer-183zhi5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; }\",\".framer-2b8tj .framer-1ha8wu2 { flex: none; height: 24px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 24px; }\",\".framer-2b8tj .framer-1xroipl, .framer-2b8tj .framer-15zfg5p { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(9.5px); align-content: flex-start; align-items: flex-start; align-self: start; backdrop-filter: blur(9.5px); background-color: rgba(255, 255, 255, 0.06); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-2b8tj .framer-1em8a4u { flex: none; height: 19px; left: 2px; position: absolute; top: 3px; width: 20px; }\",\".framer-2b8tj .framer-1st6c8c, .framer-2b8tj .framer-gsvrap { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(9.5px); align-content: flex-start; align-items: flex-start; align-self: start; backdrop-filter: blur(9.5px); background-color: rgba(255, 255, 255, 0.06); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-2b8tj .framer-109mkil { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 179px; }\",\".framer-2b8tj .framer-17maeul { flex: none; height: 22px; left: 3px; position: absolute; top: 1px; width: 18px; }\",\".framer-2b8tj .framer-12eijh1, .framer-2b8tj .framer-1wt66uo, .framer-2b8tj .framer-1ph5y3x { --framer-paragraph-spacing: 8px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-2b8tj .framer-o4jpg1 { flex: none; height: 20px; left: 0px; position: absolute; top: 2px; width: 24px; }\",\".framer-2b8tj .framer-c83837 { flex: none; height: 20px; left: 2px; position: absolute; top: 3px; width: 20px; }\",\".framer-2b8tj .framer-afdcug { --framer-paragraph-spacing: 8px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2b8tj .framer-12ucusa, .framer-2b8tj .framer-1b0cmj4, .framer-2b8tj .framer-qnioe4, .framer-2b8tj .framer-1y4swg9, .framer-2b8tj .framer-1fmuzit, .framer-2b8tj .framer-19x5za9, .framer-2b8tj .framer-5glp2y, .framer-2b8tj .framer-1kbfhzy, .framer-2b8tj .framer-r1577o, .framer-2b8tj .framer-1dqab5e, .framer-2b8tj .framer-sug94l, .framer-2b8tj .framer-n4pp41 { --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-2b8tj .framer-1z0p6z0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 143px 80px 143px; position: relative; width: 1440px; }\",\".framer-2b8tj .framer-3fyb67 { background-color: rgba(0, 0, 0, 0.2); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(49.87212276214836% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-2b8tj .framer-qt22jo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 80%; }\",\".framer-2b8tj .framer-1pqb1s6 { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; max-width: 1360px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-1wsvtvu-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-2b8tj .framer-76uve5 { align-content: center; align-items: center; background-color: #f7f5ee; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 60px 143px 60px 143px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-oxeuos { 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-2b8tj .framer-1k16qs4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-1fy2ez9, .framer-2b8tj .framer-1chn6al { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-2b8tj .framer-plz71r, .framer-2b8tj .framer-1uwrsk1, .framer-2b8tj .framer-gpcqnp, .framer-2b8tj .framer-64dj4v { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(9.5px); align-content: center; align-items: center; backdrop-filter: blur(9.5px); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 103px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-14bfsro, .framer-2b8tj .framer-6rhmnp, .framer-2b8tj .framer-19kfncx, .framer-2b8tj .framer-14ppj7m, .framer-2b8tj .framer-5pnqsk, .framer-2b8tj .framer-qridt0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 24px; position: relative; width: min-content; }\",\".framer-2b8tj .framer-lw15vr, .framer-2b8tj .framer-78rc4n, .framer-2b8tj .framer-1qqy2eb, .framer-2b8tj .framer-poah8h, .framer-2b8tj .framer-2b7hyu, .framer-2b8tj .framer-1etszaf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 16px 0px 16px; position: relative; width: 1px; }\",\".framer-2b8tj .framer-jnhgbh, .framer-2b8tj .framer-1w8kuc4, .framer-2b8tj .framer-1yjw6j5, .framer-2b8tj .framer-e1xr23, .framer-2b8tj .framer-d3i4yn, .framer-2b8tj .framer-1ww9n6l, .framer-2b8tj .framer-qeoosk, .framer-2b8tj .framer-w31rbt, .framer-2b8tj .framer-16ucb9s { --framer-paragraph-spacing: 8px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-2b8tj .framer-xq8dad, .framer-2b8tj .framer-kk006f { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(9.5px); align-content: center; align-items: center; backdrop-filter: blur(9.5px); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 102px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-1gt34zl, .framer-2b8tj .framer-92reo3 { --framer-paragraph-spacing: 8px; flex: none; height: 100%; position: relative; white-space: pre; width: auto; }\",\".framer-2b8tj .framer-870736, .framer-2b8tj .framer-4tcngl { --framer-paragraph-spacing: 8px; flex: none; height: 96px; position: relative; white-space: pre; width: auto; }\",\".framer-2b8tj .framer-167w8lz { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; opacity: 0.79; overflow: hidden; padding: 24px 0px 24px 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-2b8tj .framer-14y2whr-container { flex: none; height: 87px; position: relative; width: 876px; }\",\".framer-2b8tj .framer-12l1i9j { align-content: center; align-items: center; background-color: #f7f5ee; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-2b8tj .framer-1o7eegw, .framer-2b8tj .framer-17lilqo, .framer-2b8tj .framer-pualqv, .framer-2b8tj .framer-18izf03, .framer-2b8tj .framer-hv84br, .framer-2b8tj .framer-unpx9s, .framer-2b8tj .framer-132jbhn, .framer-2b8tj .framer-ck6ef7, .framer-2b8tj .framer-xznwbs, .framer-2b8tj .framer-r8ujr0, .framer-2b8tj .framer-1jmswhl, .framer-2b8tj .framer-2oajet, .framer-2b8tj .framer-rvjnkx, .framer-2b8tj .framer-op1il6, .framer-2b8tj .framer-10mjtuf, .framer-2b8tj .framer-1d681k5, .framer-2b8tj .framer-lxe4og, .framer-2b8tj .framer-gw3t09 { aspect-ratio: 1.6290322580645162 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 81px; }\",\".framer-2b8tj .framer-h7l4sh-container, .framer-2b8tj .framer-imnfiy-container { flex: 1 0 0px; height: 44px; position: relative; width: 1px; }\",\".framer-2b8tj .framer-1tpx1b1, .framer-2b8tj .framer-t5z9y5 { align-content: center; align-items: center; background-color: #f7f5ee; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 646px; }\",\".framer-2b8tj .framer-1yq0k7z, .framer-2b8tj .framer-7a2nc9, .framer-2b8tj .framer-u44ps4, .framer-2b8tj .framer-xshpv2, .framer-2b8tj .framer-13u5gim, .framer-2b8tj .framer-1xuntv9, .framer-2b8tj .framer-1b4jb7v, .framer-2b8tj .framer-nhefgk, .framer-2b8tj .framer-t7yl2x, .framer-2b8tj .framer-1xsfi76, .framer-2b8tj .framer-uhxav, .framer-2b8tj .framer-c6xe2k, .framer-2b8tj .framer-7m3auq, .framer-2b8tj .framer-1twd7xk, .framer-2b8tj .framer-1gmmpl3, .framer-2b8tj .framer-j2pnm, .framer-2b8tj .framer-13bcf0i, .framer-2b8tj .framer-1dptwv1, .framer-2b8tj .framer-fet9qs, .framer-2b8tj .framer-dcldm8, .framer-2b8tj .framer-671fxb, .framer-2b8tj .framer-10xjmjq, .framer-2b8tj .framer-qupo8w, .framer-2b8tj .framer-d2s9cq, .framer-2b8tj .framer-1qzyvox, .framer-2b8tj .framer-1dvgh5s, .framer-2b8tj .framer-1hfvtgx { aspect-ratio: 1.6290322580645162 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 49px; }\",\".framer-2b8tj .framer-wmw2m9 { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-qoge4a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-fi0v86 { -webkit-filter: blur(77px); aspect-ratio: 1 / 1; background-color: #f2874b; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(77px); flex: none; height: var(--framer-aspect-ratio-supported, 324px); left: 21px; opacity: 0.1; position: absolute; top: 80px; width: 324px; z-index: 1; }\",\".framer-2b8tj .framer-1nqimyp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 143px 0px 143px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-1p4y9zg { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; 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: 100%; }\",\".framer-2b8tj .framer-14vjbw4 { align-content: center; align-items: center; background: linear-gradient(99.0317793321878deg, rgba(240, 208, 190, 0.07) 0%, rgba(240, 208, 190, 0.08) 52.50861048698425%, rgba(255, 255, 255, 0.1) 100%); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 464px; justify-content: space-between; overflow: hidden; padding: 60px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-2b8tj .framer-1wl7x2s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-2b8tj .framer-17yuvxf { flex: none; height: 53px; overflow: hidden; position: relative; width: 52px; }\",\".framer-2b8tj .framer-cbtxt { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-2b8tj .framer-wpk89v { align-self: stretch; flex: none; height: 26px; overflow: hidden; position: relative; width: auto; }\",\".framer-2b8tj .framer-g0eyo1 { aspect-ratio: 0.9811320754716981 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 204px); left: 0px; position: absolute; top: 48%; transform: translateY(-50%); width: 100%; }\",\".framer-2b8tj .framer-uqoay5, .framer-2b8tj .framer-3if2iu { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 524px; word-break: break-word; word-wrap: break-word; }\",\".framer-2b8tj .framer-rddhh { flex: none; height: 43px; position: relative; width: 524px; }\",\".framer-2b8tj .framer-yv4zg6 { flex: none; height: 53px; position: relative; width: 52px; }\",\".framer-2b8tj .framer-yw3rbs, .framer-2b8tj .framer-tcecij { aspect-ratio: 0.9811320754716981 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-2b8tj .framer-79vjgl { aspect-ratio: 1.3002610966057442 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 448px); }\",\".framer-2b8tj .framer-1kyde0a { -webkit-filter: blur(77px); aspect-ratio: 1 / 1; background-color: #f2874b; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -31px; filter: blur(77px); flex: none; height: var(--framer-aspect-ratio-supported, 324px); opacity: 0.1; position: absolute; right: 0px; width: 324px; z-index: 1; }\",\".framer-2b8tj .framer-6df3p8, .framer-2b8tj .framer-187t3ou { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 143px 80px 143px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-be3g82 { display: grid; flex: none; gap: 30px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-i122p9 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-1mj7qx7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px; position: relative; width: min-content; }\",\".framer-2b8tj .framer-1ajarzx { flex: none; height: 212px; position: relative; width: 202px; }\",\".framer-2b8tj .framer-1377km2 { align-content: flex-start; align-items: flex-start; align-self: stretch; 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: auto; }\",\".framer-2b8tj .framer-nzcfyf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 97px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-tzwevj, .framer-2b8tj .framer-6g3z12, .framer-2b8tj .framer-1w1gjdb, .framer-2b8tj .framer-198bvso { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 100%; justify-content: flex-start; justify-self: start; overflow: visible; padding: 32px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-1nqj9ye { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-2b8tj .framer-20c1ck, .framer-2b8tj .framer-1s172an, .framer-2b8tj .framer-1vj1v44, .framer-2b8tj .framer-5an80a, .framer-2b8tj .framer-z0wbyk { flex: none; height: 205px; position: relative; width: 203px; }\",\".framer-2b8tj .framer-3w0ir { align-content: center; align-items: center; align-self: stretch; 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: auto; }\",\".framer-2b8tj .framer-18xv80f { 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: 0px; position: relative; width: 301px; }\",\".framer-2b8tj .framer-vtskxd { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 202px; word-break: break-word; word-wrap: break-word; }\",\".framer-2b8tj .framer-1uy5mih { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-2b8tj .framer-rvkpde { aspect-ratio: 1.0547945022583007 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 42px; }\",\".framer-2b8tj .framer-1kx75vc { aspect-ratio: 4.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); position: relative; width: 81px; }\",\".framer-2b8tj .framer-xwobtj { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 100%; justify-content: center; justify-self: start; overflow: visible; padding: 32px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-1p0tmqg, .framer-2b8tj .framer-u8buwe, .framer-2b8tj .framer-169luts, .framer-2b8tj .framer-1skjj19 { 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: 100%; }\",\".framer-2b8tj .framer-1qrgfis, .framer-2b8tj .framer-1m571za, .framer-2b8tj .framer-1tue0wr, .framer-2b8tj .framer-1ka2shc { 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: 0px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-3qpezf { aspect-ratio: 2.9714284896850587 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 119px; }\",\".framer-2b8tj .framer-1b0v27a { aspect-ratio: 3.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 39px); position: relative; width: 136px; }\",\".framer-2b8tj .framer-sl2car { aspect-ratio: 3.2242992401123045 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 129px; }\",\".framer-2b8tj .framer-wkceyf { aspect-ratio: 4.103734581536208 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); position: relative; width: 172px; }\",\".framer-2b8tj .framer-1q5r5th { -webkit-filter: blur(124.86683654785156px); aspect-ratio: 1 / 1; background-color: #f2874b; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(124.86683654785156px); flex: none; height: var(--framer-aspect-ratio-supported, 392px); left: -60px; opacity: 0.2; position: absolute; top: 54%; transform: translateY(-50%); width: 392px; z-index: 1; }\",\".framer-2b8tj .framer-1d8tykd { -webkit-filter: blur(124.86683654785156px); aspect-ratio: 1 / 1; background-color: #f2874b; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(124.86683654785156px); flex: none; height: var(--framer-aspect-ratio-supported, 392px); opacity: 0.2; position: absolute; right: -120px; top: 111px; width: 392px; z-index: 1; }\",\".framer-2b8tj .framer-svbaog { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 360px; justify-content: center; overflow: hidden; padding: 80px 143px 80px 143px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-x2ynp5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-2b8tj .framer-1wzdyhs-container { flex: 1 0 0px; height: 50%; position: relative; width: 1px; }\",\".framer-2b8tj .framer-8swsfd { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-2b8tj .framer-g2ak45, .framer-2b8tj .framer-1cstnvt, .framer-2b8tj .framer-1yttmiw, .framer-2b8tj .framer-1bcrkd8 { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; width: 90px; }\",\".framer-2b8tj .framer-qis08p, .framer-2b8tj .framer-1e7ljqi, .framer-2b8tj .framer-uplspi, .framer-2b8tj .framer-18vkwf8, .framer-2b8tj .framer-1jgn9ts, .framer-2b8tj .framer-10nrnlc, .framer-2b8tj .framer-4eqmd { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; width: 60px; }\",\".framer-2b8tj .framer-rw6tx5 { aspect-ratio: 1.7857142857142858 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; width: 107px; }\",\".framer-2b8tj .framer-136df0f { aspect-ratio: 2.6383763837638377 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 158px; }\",\".framer-2b8tj .framer-dyq80 { aspect-ratio: 3.983108108108108 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; width: 239px; }\",\".framer-2b8tj .framer-1lw4d89 { aspect-ratio: 3.3835616438356166 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; width: 203px; }\",\".framer-2b8tj .framer-1sy3g3w { aspect-ratio: 4.596153846153846 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; width: 276px; }\",\".framer-2b8tj .framer-1rsog5p-container, .framer-2b8tj .framer-1lttght-container { flex: 1 0 0px; height: 66px; position: relative; width: 1px; }\",\".framer-2b8tj .framer-mty7cw { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 645px; }\",\".framer-2b8tj .framer-1t7eslj, .framer-2b8tj .framer-xxyvk7, .framer-2b8tj .framer-1xowwt5, .framer-2b8tj .framer-1dg00mb { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 45px; }\",\".framer-2b8tj .framer-m8y0es, .framer-2b8tj .framer-1ypoqo, .framer-2b8tj .framer-nt21y9, .framer-2b8tj .framer-1fe0i52, .framer-2b8tj .framer-o4a66o, .framer-2b8tj .framer-n6x24v, .framer-2b8tj .framer-ktwhd7, .framer-2b8tj .framer-1r3pun6, .framer-2b8tj .framer-1mbnu8y, .framer-2b8tj .framer-j465ud, .framer-2b8tj .framer-do2x21, .framer-2b8tj .framer-vjm2lh, .framer-2b8tj .framer-o4cwcp { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 30px; }\",\".framer-2b8tj .framer-1kv9o2m { aspect-ratio: 1.7857142857142858 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 54px; }\",\".framer-2b8tj .framer-14smdvv { aspect-ratio: 2.6383763837638377 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 79px; }\",\".framer-2b8tj .framer-1psj4l2 { aspect-ratio: 3.983108108108108 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 119px; }\",\".framer-2b8tj .framer-1e64kjt, .framer-2b8tj .framer-19ys7xl { aspect-ratio: 3.3835616438356166 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 102px; }\",\".framer-2b8tj .framer-1nhqisi, .framer-2b8tj .framer-1wkbnmf { aspect-ratio: 4.596153846153846 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 138px; }\",\".framer-2b8tj .framer-10q4ped { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-2b8tj .framer-klqm5s { 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: 100%; }\",\".framer-2b8tj .framer-1156310 { align-content: center; align-items: center; background-color: #f2874b; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 160px; justify-content: space-between; overflow: visible; padding: 42px 143px 42px 143px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-5mu9aw-container { flex: none; height: auto; position: relative; width: 230px; }\",\".framer-2b8tj.framer-185mpz5-container { flex: none; height: auto; left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: auto; z-index: 9; }\",\".framer-2b8tj .framer-12r4t07-container, .framer-2b8tj .framer-lfipjn-container, .framer-2b8tj .framer-13stob1-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-2b8tj .framer-gxcrkr-container, .framer-2b8tj .framer-bo5bfy-container, .framer-2b8tj .framer-14ag4yr-container, .framer-2b8tj .framer-z49unt-container, .framer-2b8tj .framer-1ti05j1-container, .framer-2b8tj .framer-1v6obkj-container, .framer-2b8tj .framer-65d4qx-container { height: auto; position: relative; width: 328px; }\",\".framer-2b8tj .framer-1qja81o { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 523px; justify-content: flex-end; overflow: hidden; padding: 0px 16px 0px 0px; position: relative; width: min-content; }\",\".framer-2b8tj .framer-1tit7i5-container { flex: none; height: auto; position: relative; width: 328px; }\",\".framer-2b8tj .framer-158172y { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: 493px; justify-content: center; overflow: visible; padding: 0px 143px 0px 143px; position: relative; scroll-margin-top: 130px; width: 100%; }\",\".framer-2b8tj .framer-1k8vgg1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-2b8tj .framer-1kqe65r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-m18z6l { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2b8tj .framer-1tsnpr2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-1e65om0-container { flex: none; height: 48px; position: relative; width: auto; }\",\".framer-2b8tj.framer-19ue98v-container { flex: none; height: auto; left: 50%; position: fixed; top: 46%; transform: translate(-50%, -50%); width: auto; z-index: 9; }\",\".framer-2b8tj .framer-1nktm0z { aspect-ratio: 3.3739703459637562 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; text-decoration: none; width: 162px; }\",\".framer-2b8tj .framer-gba3sm { flex: none; height: 493px; position: relative; width: 346px; }\",\".framer-2b8tj .framer-5tz0cd { align-content: center; align-items: center; background-color: #010000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 16px 40px 16px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-1tox53w, .framer-2b8tj .framer-1rku0e6, .framer-2b8tj .framer-rdm195 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(9.5px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(9.5px); background-color: rgba(255, 255, 255, 0.06); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-2b8tj .framer-99p3zm, .framer-2b8tj .framer-whftk8, .framer-2b8tj .framer-15n8dzo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2b8tj .framer-ca483e { flex: none; height: 25px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-2b8tj .framer-o5ghmj, .framer-2b8tj .framer-11532cj { flex: none; height: 4px; position: relative; width: 325px; }\",\".framer-2b8tj .framer-1m6q9op, .framer-2b8tj .framer-x1lvpy, .framer-2b8tj .framer-1d9kdl8 { --framer-paragraph-spacing: 8px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 321px; word-break: break-word; word-wrap: break-word; }\",\".framer-2b8tj .framer-11kc9vp { bottom: 5px; flex: none; left: 6px; position: absolute; right: 8px; top: 3px; }\",\".framer-2b8tj .framer-1wxqa7q { flex: none; height: 4px; position: relative; width: 324px; }\",\".framer-2b8tj .framer-tqhfls { flex: none; height: 25px; left: 0px; position: absolute; top: 0px; width: 25px; }\",\".framer-2b8tj .framer-opjkqw { aspect-ratio: 1.5003750785070222 / 1; bottom: -186px; flex: none; height: var(--framer-aspect-ratio-supported, 960px); left: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-2b8tj .framer-10pz79r { align-content: center; align-items: center; background-color: #000000; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 16px 24px 16px 24px; position: fixed; transform: translateX(-50%); width: 100%; z-index: 5; }\",\".framer-2b8tj .framer-pj9pvz-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-2b8tj.framer-swkyyx-container { flex: none; height: auto; left: 49%; position: fixed; top: 49%; transform: translate(-50%, -50%); width: auto; }\",\".framer-2b8tj .framer-1bfk67a { background-color: rgba(0, 0, 0, 0.85); flex: none; height: 100vh; left: -41px; overflow: visible; position: fixed; top: -1886px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 8; }\",\".framer-2b8tj .framer-pf3cyd-container, .framer-2b8tj .framer-1mfneq5-container { flex: none; height: 32px; position: absolute; right: 40px; top: 40px; width: 32px; }\",\".framer-2b8tj .framer-13kva5f-container { flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: auto; }\",\".framer-2b8tj .framer-1rcvp2f { background-color: rgba(0, 0, 0, 0.85); flex: none; height: 100vh; left: 0px; overflow: visible; position: fixed; top: -3149px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 8; }\",\".framer-2b8tj .framer-1ug6030 { aspect-ratio: 1.332 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 75%; left: 50%; overflow: visible; position: absolute; text-decoration: none; top: 50%; transform: translate(-50%, -50%); width: var(--framer-aspect-ratio-supported, 849px); }\",\".framer-2b8tj .framer-19xqhfp { aspect-ratio: 0.5625 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 356px); left: 50%; overflow: visible; position: absolute; text-decoration: none; top: 50%; transform: translate(-50%, -50%); width: 90%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2b8tj.framer-72rtr7, .framer-2b8tj .framer-nirmqk, .framer-2b8tj .framer-1281ht4, .framer-2b8tj .framer-3t1oeg, .framer-2b8tj .framer-1peuhg9, .framer-2b8tj .framer-17usjx0, .framer-2b8tj .framer-amjtuf, .framer-2b8tj .framer-1ihtz8i, .framer-2b8tj .framer-q15xvd, .framer-2b8tj .framer-1aoven4, .framer-2b8tj .framer-itnifk, .framer-2b8tj .framer-1k337ck, .framer-2b8tj .framer-spn173, .framer-2b8tj .framer-qdtzhl, .framer-2b8tj .framer-x12isp, .framer-2b8tj .framer-15o8bvp, .framer-2b8tj .framer-tqnx3g, .framer-2b8tj .framer-okg743, .framer-2b8tj .framer-196u8bf, .framer-2b8tj .framer-t1lwhh, .framer-2b8tj .framer-1rr90h0, .framer-2b8tj .framer-1xroipl, .framer-2b8tj .framer-m9jsb3, .framer-2b8tj .framer-e4blow, .framer-2b8tj .framer-1st6c8c, .framer-2b8tj .framer-109mkil, .framer-2b8tj .framer-1jxr2gt, .framer-2b8tj .framer-15zfg5p, .framer-2b8tj .framer-1t9yepy, .framer-2b8tj .framer-1lgmtbx, .framer-2b8tj .framer-gsvrap, .framer-2b8tj .framer-1v5ip6m, .framer-2b8tj .framer-1y8pn8, .framer-2b8tj .framer-1z0p6z0, .framer-2b8tj .framer-qt22jo, .framer-2b8tj .framer-76uve5, .framer-2b8tj .framer-oxeuos, .framer-2b8tj .framer-1k16qs4, .framer-2b8tj .framer-1fy2ez9, .framer-2b8tj .framer-plz71r, .framer-2b8tj .framer-14bfsro, .framer-2b8tj .framer-lw15vr, .framer-2b8tj .framer-xq8dad, .framer-2b8tj .framer-6rhmnp, .framer-2b8tj .framer-78rc4n, .framer-2b8tj .framer-1uwrsk1, .framer-2b8tj .framer-19kfncx, .framer-2b8tj .framer-1qqy2eb, .framer-2b8tj .framer-1chn6al, .framer-2b8tj .framer-gpcqnp, .framer-2b8tj .framer-14ppj7m, .framer-2b8tj .framer-poah8h, .framer-2b8tj .framer-kk006f, .framer-2b8tj .framer-5pnqsk, .framer-2b8tj .framer-2b7hyu, .framer-2b8tj .framer-64dj4v, .framer-2b8tj .framer-qridt0, .framer-2b8tj .framer-1etszaf, .framer-2b8tj .framer-167w8lz, .framer-2b8tj .framer-12l1i9j, .framer-2b8tj .framer-1tpx1b1, .framer-2b8tj .framer-t5z9y5, .framer-2b8tj .framer-wmw2m9, .framer-2b8tj .framer-qoge4a, .framer-2b8tj .framer-1nqimyp, .framer-2b8tj .framer-1p4y9zg, .framer-2b8tj .framer-1wl7x2s, .framer-2b8tj .framer-6df3p8, .framer-2b8tj .framer-sasoxh, .framer-2b8tj .framer-i122p9, .framer-2b8tj .framer-1mj7qx7, .framer-2b8tj .framer-1377km2, .framer-2b8tj .framer-nzcfyf, .framer-2b8tj .framer-kqj7rg, .framer-2b8tj .framer-tzwevj, .framer-2b8tj .framer-1nqj9ye, .framer-2b8tj .framer-3w0ir, .framer-2b8tj .framer-18xv80f, .framer-2b8tj .framer-1uy5mih, .framer-2b8tj .framer-xwobtj, .framer-2b8tj .framer-1p0tmqg, .framer-2b8tj .framer-1qrgfis, .framer-2b8tj .framer-6g3z12, .framer-2b8tj .framer-u8buwe, .framer-2b8tj .framer-1m571za, .framer-2b8tj .framer-1w1gjdb, .framer-2b8tj .framer-169luts, .framer-2b8tj .framer-1tue0wr, .framer-2b8tj .framer-198bvso, .framer-2b8tj .framer-1skjj19, .framer-2b8tj .framer-1ka2shc, .framer-2b8tj .framer-svbaog, .framer-2b8tj .framer-x2ynp5, .framer-2b8tj .framer-8swsfd, .framer-2b8tj .framer-mty7cw, .framer-2b8tj .framer-10q4ped, .framer-2b8tj .framer-klqm5s, .framer-2b8tj .framer-187t3ou, .framer-2b8tj .framer-u1hwt8, .framer-2b8tj .framer-1qja81o, .framer-2b8tj .framer-158172y, .framer-2b8tj .framer-1k8vgg1, .framer-2b8tj .framer-1kqe65r, .framer-2b8tj .framer-1tsnpr2, .framer-2b8tj .framer-5tz0cd, .framer-2b8tj .framer-1uisod6, .framer-2b8tj .framer-1su1wto, .framer-2b8tj .framer-1tox53w, .framer-2b8tj .framer-99p3zm, .framer-2b8tj .framer-1u1i6py, .framer-2b8tj .framer-1rku0e6, .framer-2b8tj .framer-whftk8, .framer-2b8tj .framer-pe77st, .framer-2b8tj .framer-rdm195, .framer-2b8tj .framer-15n8dzo, .framer-2b8tj .framer-1p0snmc, .framer-2b8tj .framer-10pz79r { gap: 0px; } .framer-2b8tj.framer-72rtr7 > *, .framer-2b8tj .framer-nirmqk > *, .framer-2b8tj .framer-amjtuf > *, .framer-2b8tj .framer-1p4y9zg > *, .framer-2b8tj .framer-klqm5s > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2b8tj.framer-72rtr7 > :first-child, .framer-2b8tj .framer-nirmqk > :first-child, .framer-2b8tj .framer-1281ht4 > :first-child, .framer-2b8tj .framer-3t1oeg > :first-child, .framer-2b8tj .framer-1peuhg9 > :first-child, .framer-2b8tj .framer-amjtuf > :first-child, .framer-2b8tj .framer-qdtzhl > :first-child, .framer-2b8tj .framer-x12isp > :first-child, .framer-2b8tj .framer-15o8bvp > :first-child, .framer-2b8tj .framer-tqnx3g > :first-child, .framer-2b8tj .framer-196u8bf > :first-child, .framer-2b8tj .framer-t1lwhh > :first-child, .framer-2b8tj .framer-1xroipl > :first-child, .framer-2b8tj .framer-m9jsb3 > :first-child, .framer-2b8tj .framer-1st6c8c > :first-child, .framer-2b8tj .framer-109mkil > :first-child, .framer-2b8tj .framer-15zfg5p > :first-child, .framer-2b8tj .framer-1t9yepy > :first-child, .framer-2b8tj .framer-gsvrap > :first-child, .framer-2b8tj .framer-1v5ip6m > :first-child, .framer-2b8tj .framer-1z0p6z0 > :first-child, .framer-2b8tj .framer-qt22jo > :first-child, .framer-2b8tj .framer-76uve5 > :first-child, .framer-2b8tj .framer-oxeuos > :first-child, .framer-2b8tj .framer-1fy2ez9 > :first-child, .framer-2b8tj .framer-1chn6al > :first-child, .framer-2b8tj .framer-wmw2m9 > :first-child, .framer-2b8tj .framer-qoge4a > :first-child, .framer-2b8tj .framer-1nqimyp > :first-child, .framer-2b8tj .framer-1p4y9zg > :first-child, .framer-2b8tj .framer-1wl7x2s > :first-child, .framer-2b8tj .framer-6df3p8 > :first-child, .framer-2b8tj .framer-sasoxh > :first-child, .framer-2b8tj .framer-1mj7qx7 > :first-child, .framer-2b8tj .framer-1377km2 > :first-child, .framer-2b8tj .framer-nzcfyf > :first-child, .framer-2b8tj .framer-tzwevj > :first-child, .framer-2b8tj .framer-1nqj9ye > :first-child, .framer-2b8tj .framer-3w0ir > :first-child, .framer-2b8tj .framer-18xv80f > :first-child, .framer-2b8tj .framer-xwobtj > :first-child, .framer-2b8tj .framer-1p0tmqg > :first-child, .framer-2b8tj .framer-1qrgfis > :first-child, .framer-2b8tj .framer-6g3z12 > :first-child, .framer-2b8tj .framer-u8buwe > :first-child, .framer-2b8tj .framer-1m571za > :first-child, .framer-2b8tj .framer-1w1gjdb > :first-child, .framer-2b8tj .framer-169luts > :first-child, .framer-2b8tj .framer-1tue0wr > :first-child, .framer-2b8tj .framer-198bvso > :first-child, .framer-2b8tj .framer-1skjj19 > :first-child, .framer-2b8tj .framer-1ka2shc > :first-child, .framer-2b8tj .framer-x2ynp5 > :first-child, .framer-2b8tj .framer-klqm5s > :first-child, .framer-2b8tj .framer-187t3ou > :first-child, .framer-2b8tj .framer-u1hwt8 > :first-child, .framer-2b8tj .framer-1k8vgg1 > :first-child, .framer-2b8tj .framer-1kqe65r > :first-child, .framer-2b8tj .framer-5tz0cd > :first-child, .framer-2b8tj .framer-1uisod6 > :first-child, .framer-2b8tj .framer-1su1wto > :first-child, .framer-2b8tj .framer-1tox53w > :first-child, .framer-2b8tj .framer-1rku0e6 > :first-child, .framer-2b8tj .framer-rdm195 > :first-child { margin-top: 0px; } .framer-2b8tj.framer-72rtr7 > :last-child, .framer-2b8tj .framer-nirmqk > :last-child, .framer-2b8tj .framer-1281ht4 > :last-child, .framer-2b8tj .framer-3t1oeg > :last-child, .framer-2b8tj .framer-1peuhg9 > :last-child, .framer-2b8tj .framer-amjtuf > :last-child, .framer-2b8tj .framer-qdtzhl > :last-child, .framer-2b8tj .framer-x12isp > :last-child, .framer-2b8tj .framer-15o8bvp > :last-child, .framer-2b8tj .framer-tqnx3g > :last-child, .framer-2b8tj .framer-196u8bf > :last-child, .framer-2b8tj .framer-t1lwhh > :last-child, .framer-2b8tj .framer-1xroipl > :last-child, .framer-2b8tj .framer-m9jsb3 > :last-child, .framer-2b8tj .framer-1st6c8c > :last-child, .framer-2b8tj .framer-109mkil > :last-child, .framer-2b8tj .framer-15zfg5p > :last-child, .framer-2b8tj .framer-1t9yepy > :last-child, .framer-2b8tj .framer-gsvrap > :last-child, .framer-2b8tj .framer-1v5ip6m > :last-child, .framer-2b8tj .framer-1z0p6z0 > :last-child, .framer-2b8tj .framer-qt22jo > :last-child, .framer-2b8tj .framer-76uve5 > :last-child, .framer-2b8tj .framer-oxeuos > :last-child, .framer-2b8tj .framer-1fy2ez9 > :last-child, .framer-2b8tj .framer-1chn6al > :last-child, .framer-2b8tj .framer-wmw2m9 > :last-child, .framer-2b8tj .framer-qoge4a > :last-child, .framer-2b8tj .framer-1nqimyp > :last-child, .framer-2b8tj .framer-1p4y9zg > :last-child, .framer-2b8tj .framer-1wl7x2s > :last-child, .framer-2b8tj .framer-6df3p8 > :last-child, .framer-2b8tj .framer-sasoxh > :last-child, .framer-2b8tj .framer-1mj7qx7 > :last-child, .framer-2b8tj .framer-1377km2 > :last-child, .framer-2b8tj .framer-nzcfyf > :last-child, .framer-2b8tj .framer-tzwevj > :last-child, .framer-2b8tj .framer-1nqj9ye > :last-child, .framer-2b8tj .framer-3w0ir > :last-child, .framer-2b8tj .framer-18xv80f > :last-child, .framer-2b8tj .framer-xwobtj > :last-child, .framer-2b8tj .framer-1p0tmqg > :last-child, .framer-2b8tj .framer-1qrgfis > :last-child, .framer-2b8tj .framer-6g3z12 > :last-child, .framer-2b8tj .framer-u8buwe > :last-child, .framer-2b8tj .framer-1m571za > :last-child, .framer-2b8tj .framer-1w1gjdb > :last-child, .framer-2b8tj .framer-169luts > :last-child, .framer-2b8tj .framer-1tue0wr > :last-child, .framer-2b8tj .framer-198bvso > :last-child, .framer-2b8tj .framer-1skjj19 > :last-child, .framer-2b8tj .framer-1ka2shc > :last-child, .framer-2b8tj .framer-x2ynp5 > :last-child, .framer-2b8tj .framer-klqm5s > :last-child, .framer-2b8tj .framer-187t3ou > :last-child, .framer-2b8tj .framer-u1hwt8 > :last-child, .framer-2b8tj .framer-1k8vgg1 > :last-child, .framer-2b8tj .framer-1kqe65r > :last-child, .framer-2b8tj .framer-5tz0cd > :last-child, .framer-2b8tj .framer-1uisod6 > :last-child, .framer-2b8tj .framer-1su1wto > :last-child, .framer-2b8tj .framer-1tox53w > :last-child, .framer-2b8tj .framer-1rku0e6 > :last-child, .framer-2b8tj .framer-rdm195 > :last-child { margin-bottom: 0px; } .framer-2b8tj .framer-1281ht4 > * { margin: 0px; margin-bottom: calc(46px / 2); margin-top: calc(46px / 2); } .framer-2b8tj .framer-3t1oeg > *, .framer-2b8tj .framer-nzcfyf > *, .framer-2b8tj .framer-18xv80f > *, .framer-2b8tj .framer-1qrgfis > *, .framer-2b8tj .framer-1m571za > *, .framer-2b8tj .framer-1tue0wr > *, .framer-2b8tj .framer-1ka2shc > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-2b8tj .framer-1peuhg9 > *, .framer-2b8tj .framer-tqnx3g > *, .framer-2b8tj .framer-t1lwhh > *, .framer-2b8tj .framer-m9jsb3 > *, .framer-2b8tj .framer-109mkil > *, .framer-2b8tj .framer-1t9yepy > *, .framer-2b8tj .framer-1v5ip6m > *, .framer-2b8tj .framer-1mj7qx7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2b8tj .framer-17usjx0 > *, .framer-2b8tj .framer-1k16qs4 > *, .framer-2b8tj .framer-167w8lz > *, .framer-2b8tj .framer-12l1i9j > *, .framer-2b8tj .framer-1tpx1b1 > *, .framer-2b8tj .framer-t5z9y5 > *, .framer-2b8tj .framer-mty7cw > *, .framer-2b8tj .framer-10q4ped > *, .framer-2b8tj .framer-1tsnpr2 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-2b8tj .framer-17usjx0 > :first-child, .framer-2b8tj .framer-1ihtz8i > :first-child, .framer-2b8tj .framer-q15xvd > :first-child, .framer-2b8tj .framer-1aoven4 > :first-child, .framer-2b8tj .framer-itnifk > :first-child, .framer-2b8tj .framer-1k337ck > :first-child, .framer-2b8tj .framer-spn173 > :first-child, .framer-2b8tj .framer-okg743 > :first-child, .framer-2b8tj .framer-1rr90h0 > :first-child, .framer-2b8tj .framer-e4blow > :first-child, .framer-2b8tj .framer-1jxr2gt > :first-child, .framer-2b8tj .framer-1lgmtbx > :first-child, .framer-2b8tj .framer-1y8pn8 > :first-child, .framer-2b8tj .framer-1k16qs4 > :first-child, .framer-2b8tj .framer-plz71r > :first-child, .framer-2b8tj .framer-14bfsro > :first-child, .framer-2b8tj .framer-lw15vr > :first-child, .framer-2b8tj .framer-xq8dad > :first-child, .framer-2b8tj .framer-6rhmnp > :first-child, .framer-2b8tj .framer-78rc4n > :first-child, .framer-2b8tj .framer-1uwrsk1 > :first-child, .framer-2b8tj .framer-19kfncx > :first-child, .framer-2b8tj .framer-1qqy2eb > :first-child, .framer-2b8tj .framer-gpcqnp > :first-child, .framer-2b8tj .framer-14ppj7m > :first-child, .framer-2b8tj .framer-poah8h > :first-child, .framer-2b8tj .framer-kk006f > :first-child, .framer-2b8tj .framer-5pnqsk > :first-child, .framer-2b8tj .framer-2b7hyu > :first-child, .framer-2b8tj .framer-64dj4v > :first-child, .framer-2b8tj .framer-qridt0 > :first-child, .framer-2b8tj .framer-1etszaf > :first-child, .framer-2b8tj .framer-167w8lz > :first-child, .framer-2b8tj .framer-12l1i9j > :first-child, .framer-2b8tj .framer-1tpx1b1 > :first-child, .framer-2b8tj .framer-t5z9y5 > :first-child, .framer-2b8tj .framer-i122p9 > :first-child, .framer-2b8tj .framer-kqj7rg > :first-child, .framer-2b8tj .framer-1uy5mih > :first-child, .framer-2b8tj .framer-svbaog > :first-child, .framer-2b8tj .framer-8swsfd > :first-child, .framer-2b8tj .framer-mty7cw > :first-child, .framer-2b8tj .framer-10q4ped > :first-child, .framer-2b8tj .framer-1qja81o > :first-child, .framer-2b8tj .framer-158172y > :first-child, .framer-2b8tj .framer-1tsnpr2 > :first-child, .framer-2b8tj .framer-99p3zm > :first-child, .framer-2b8tj .framer-1u1i6py > :first-child, .framer-2b8tj .framer-whftk8 > :first-child, .framer-2b8tj .framer-pe77st > :first-child, .framer-2b8tj .framer-15n8dzo > :first-child, .framer-2b8tj .framer-1p0snmc > :first-child, .framer-2b8tj .framer-10pz79r > :first-child { margin-left: 0px; } .framer-2b8tj .framer-17usjx0 > :last-child, .framer-2b8tj .framer-1ihtz8i > :last-child, .framer-2b8tj .framer-q15xvd > :last-child, .framer-2b8tj .framer-1aoven4 > :last-child, .framer-2b8tj .framer-itnifk > :last-child, .framer-2b8tj .framer-1k337ck > :last-child, .framer-2b8tj .framer-spn173 > :last-child, .framer-2b8tj .framer-okg743 > :last-child, .framer-2b8tj .framer-1rr90h0 > :last-child, .framer-2b8tj .framer-e4blow > :last-child, .framer-2b8tj .framer-1jxr2gt > :last-child, .framer-2b8tj .framer-1lgmtbx > :last-child, .framer-2b8tj .framer-1y8pn8 > :last-child, .framer-2b8tj .framer-1k16qs4 > :last-child, .framer-2b8tj .framer-plz71r > :last-child, .framer-2b8tj .framer-14bfsro > :last-child, .framer-2b8tj .framer-lw15vr > :last-child, .framer-2b8tj .framer-xq8dad > :last-child, .framer-2b8tj .framer-6rhmnp > :last-child, .framer-2b8tj .framer-78rc4n > :last-child, .framer-2b8tj .framer-1uwrsk1 > :last-child, .framer-2b8tj .framer-19kfncx > :last-child, .framer-2b8tj .framer-1qqy2eb > :last-child, .framer-2b8tj .framer-gpcqnp > :last-child, .framer-2b8tj .framer-14ppj7m > :last-child, .framer-2b8tj .framer-poah8h > :last-child, .framer-2b8tj .framer-kk006f > :last-child, .framer-2b8tj .framer-5pnqsk > :last-child, .framer-2b8tj .framer-2b7hyu > :last-child, .framer-2b8tj .framer-64dj4v > :last-child, .framer-2b8tj .framer-qridt0 > :last-child, .framer-2b8tj .framer-1etszaf > :last-child, .framer-2b8tj .framer-167w8lz > :last-child, .framer-2b8tj .framer-12l1i9j > :last-child, .framer-2b8tj .framer-1tpx1b1 > :last-child, .framer-2b8tj .framer-t5z9y5 > :last-child, .framer-2b8tj .framer-i122p9 > :last-child, .framer-2b8tj .framer-kqj7rg > :last-child, .framer-2b8tj .framer-1uy5mih > :last-child, .framer-2b8tj .framer-svbaog > :last-child, .framer-2b8tj .framer-8swsfd > :last-child, .framer-2b8tj .framer-mty7cw > :last-child, .framer-2b8tj .framer-10q4ped > :last-child, .framer-2b8tj .framer-1qja81o > :last-child, .framer-2b8tj .framer-158172y > :last-child, .framer-2b8tj .framer-1tsnpr2 > :last-child, .framer-2b8tj .framer-99p3zm > :last-child, .framer-2b8tj .framer-1u1i6py > :last-child, .framer-2b8tj .framer-whftk8 > :last-child, .framer-2b8tj .framer-pe77st > :last-child, .framer-2b8tj .framer-15n8dzo > :last-child, .framer-2b8tj .framer-1p0snmc > :last-child, .framer-2b8tj .framer-10pz79r > :last-child { margin-right: 0px; } .framer-2b8tj .framer-1ihtz8i > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-2b8tj .framer-q15xvd > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-2b8tj .framer-1aoven4 > *, .framer-2b8tj .framer-itnifk > *, .framer-2b8tj .framer-kqj7rg > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-2b8tj .framer-1k337ck > *, .framer-2b8tj .framer-okg743 > *, .framer-2b8tj .framer-1rr90h0 > *, .framer-2b8tj .framer-e4blow > *, .framer-2b8tj .framer-1jxr2gt > *, .framer-2b8tj .framer-1lgmtbx > *, .framer-2b8tj .framer-1y8pn8 > *, .framer-2b8tj .framer-14bfsro > *, .framer-2b8tj .framer-lw15vr > *, .framer-2b8tj .framer-6rhmnp > *, .framer-2b8tj .framer-78rc4n > *, .framer-2b8tj .framer-19kfncx > *, .framer-2b8tj .framer-1qqy2eb > *, .framer-2b8tj .framer-14ppj7m > *, .framer-2b8tj .framer-poah8h > *, .framer-2b8tj .framer-5pnqsk > *, .framer-2b8tj .framer-2b7hyu > *, .framer-2b8tj .framer-qridt0 > *, .framer-2b8tj .framer-1etszaf > *, .framer-2b8tj .framer-i122p9 > *, .framer-2b8tj .framer-1qja81o > *, .framer-2b8tj .framer-1u1i6py > *, .framer-2b8tj .framer-pe77st > *, .framer-2b8tj .framer-1p0snmc > *, .framer-2b8tj .framer-10pz79r > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2b8tj .framer-spn173 > *, .framer-2b8tj .framer-158172y > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-2b8tj .framer-qdtzhl > *, .framer-2b8tj .framer-1z0p6z0 > *, .framer-2b8tj .framer-wmw2m9 > *, .framer-2b8tj .framer-1nqimyp > *, .framer-2b8tj .framer-6df3p8 > *, .framer-2b8tj .framer-187t3ou > *, .framer-2b8tj .framer-1k8vgg1 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-2b8tj .framer-x12isp > *, .framer-2b8tj .framer-15o8bvp > *, .framer-2b8tj .framer-196u8bf > *, .framer-2b8tj .framer-1xroipl > *, .framer-2b8tj .framer-15zfg5p > *, .framer-2b8tj .framer-qt22jo > *, .framer-2b8tj .framer-oxeuos > *, .framer-2b8tj .framer-1fy2ez9 > *, .framer-2b8tj .framer-1chn6al > *, .framer-2b8tj .framer-sasoxh > *, .framer-2b8tj .framer-u1hwt8 > *, .framer-2b8tj .framer-1uisod6 > *, .framer-2b8tj .framer-1su1wto > *, .framer-2b8tj .framer-1tox53w > *, .framer-2b8tj .framer-1rku0e6 > *, .framer-2b8tj .framer-rdm195 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-2b8tj .framer-1st6c8c > *, .framer-2b8tj .framer-gsvrap > *, .framer-2b8tj .framer-1wl7x2s > *, .framer-2b8tj .framer-1kqe65r > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-2b8tj .framer-76uve5 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-2b8tj .framer-plz71r > *, .framer-2b8tj .framer-xq8dad > *, .framer-2b8tj .framer-1uwrsk1 > *, .framer-2b8tj .framer-gpcqnp > *, .framer-2b8tj .framer-kk006f > *, .framer-2b8tj .framer-64dj4v > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-2b8tj .framer-qoge4a > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-2b8tj .framer-1377km2 > *, .framer-2b8tj .framer-3w0ir > *, .framer-2b8tj .framer-1p0tmqg > *, .framer-2b8tj .framer-u8buwe > *, .framer-2b8tj .framer-169luts > *, .framer-2b8tj .framer-1skjj19 > *, .framer-2b8tj .framer-5tz0cd > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-2b8tj .framer-tzwevj > *, .framer-2b8tj .framer-xwobtj > *, .framer-2b8tj .framer-6g3z12 > *, .framer-2b8tj .framer-1w1gjdb > *, .framer-2b8tj .framer-198bvso > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-2b8tj .framer-1nqj9ye > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-2b8tj .framer-1uy5mih > * { margin: 0px; margin-left: calc(8.930000305175781px / 2); margin-right: calc(8.930000305175781px / 2); } .framer-2b8tj .framer-svbaog > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-2b8tj .framer-x2ynp5 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-2b8tj .framer-8swsfd > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-2b8tj .framer-99p3zm > *, .framer-2b8tj .framer-whftk8 > *, .framer-2b8tj .framer-15n8dzo > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-2b8tj[data-border=\"true\"]::after, .framer-2b8tj [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 (max-width: 809px) { .framer-2b8tj.framer-72rtr7 { width: 390px; } .framer-2b8tj .framer-1ud2umu-container { height: auto; left: 50%; order: 13; transform: translateX(-50%); z-index: 6; } .framer-2b8tj.framer-1awmapt-container, .framer-2b8tj.framer-1poptpm-container, .framer-2b8tj.framer-185mpz5-container { width: 90%; } .framer-2b8tj .framer-nirmqk { height: 92vh; order: 0; overflow: visible; } .framer-2b8tj .framer-1uv6ole { height: 103%; } .framer-2b8tj .framer-1s2g53d { height: var(--framer-aspect-ratio-supported, 241px); left: 50%; right: unset; transform: translateX(-50%); width: 165px; } .framer-2b8tj .framer-1281ht4 { align-content: center; align-items: center; gap: 16px; justify-content: center; left: 50%; padding: 0px 16px 0px 16px; top: 104px; transform: translateX(-50%); width: 100%; } .framer-2b8tj .framer-3t1oeg { gap: 6px; order: 0; } .framer-2b8tj .framer-1gd5fpa, .framer-2b8tj .framer-ykx8kj, .framer-2b8tj .framer-1m4uwhs-container, .framer-2b8tj .framer-10ny23t-container, .framer-2b8tj .framer-5fwzsv, .framer-2b8tj .framer-6mr00z, .framer-2b8tj .framer-1n9ee5v, .framer-2b8tj .framer-k4qppn, .framer-2b8tj .framer-19vr35g, .framer-2b8tj .framer-5c0vz, .framer-2b8tj .framer-8syif8, .framer-2b8tj .framer-w2voc6, .framer-2b8tj .framer-757mbv, .framer-2b8tj .framer-1uw9zkc, .framer-2b8tj .framer-1hc3y6u, .framer-2b8tj .framer-6ijre8, .framer-2b8tj .framer-1s5jwy2, .framer-2b8tj .framer-1i68g4h, .framer-2b8tj .framer-18xv80f, .framer-2b8tj .framer-vtskxd { width: 100%; } .framer-2b8tj .framer-17usjx0 { align-content: center; align-items: center; flex-direction: column; gap: 16px; order: 1; padding: 0px 8px 0px 8px; } .framer-2b8tj.framer-3zp1fa { z-index: 9; } .framer-2b8tj.framer-1z0xomn-container { width: 90%; z-index: 9; } .framer-2b8tj .framer-1k337ck { order: 1; top: 58px; } .framer-2b8tj .framer-nbzfsz-container { position: relative; top: unset; z-index: 1; } .framer-2b8tj .framer-qdtzhl { gap: 24px; order: 2; padding: 40px 16px 40px 16px; width: 100%; } .framer-2b8tj .framer-wljxtx { height: var(--framer-aspect-ratio-supported, 219px); } .framer-2b8tj .framer-hfc7w3 { grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(3, min-content); height: min-content; } .framer-2b8tj .framer-15o8bvp, .framer-2b8tj .framer-196u8bf, .framer-2b8tj .framer-1xroipl, .framer-2b8tj .framer-1st6c8c, .framer-2b8tj .framer-gsvrap { padding: 12px; } .framer-2b8tj .framer-tqnx3g, .framer-2b8tj .framer-t1lwhh, .framer-2b8tj .framer-m9jsb3, .framer-2b8tj .framer-1t9yepy, .framer-2b8tj .framer-1v5ip6m { align-content: center; align-items: center; flex-direction: row; } .framer-2b8tj .framer-okg743 { gap: 6px; padding: 6px; } .framer-2b8tj .framer-1rrhk7u, .framer-2b8tj .framer-9zfeye, .framer-2b8tj .framer-c83837 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 16px); left: 50%; top: 50%; transform: translate(-50%, -50%); width: 16px; } .framer-2b8tj .framer-w6ri7r, .framer-2b8tj .framer-wy9khv, .framer-2b8tj .framer-ulhwxg, .framer-2b8tj .framer-r5gqaw, .framer-2b8tj .framer-afdcug { flex: 1 0 0px; width: 1px; } .framer-2b8tj .framer-1rr90h0, .framer-2b8tj .framer-e4blow, .framer-2b8tj .framer-1jxr2gt, .framer-2b8tj .framer-1lgmtbx, .framer-2b8tj .framer-1y8pn8 { padding: 6px; } .framer-2b8tj .framer-109mkil { align-content: center; align-items: center; flex-direction: row; width: 100%; } .framer-2b8tj .framer-12eijh1 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-2b8tj .framer-15zfg5p { height: min-content; padding: 12px; } .framer-2b8tj .framer-1z0p6z0 { gap: 24px; order: 3; padding: 40px 16px 40px 16px; width: 100%; } .framer-2b8tj .framer-1pqb1s6 { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-2b8tj .framer-76uve5 { gap: 24px; order: 4; padding: 40px 16px 40px 16px; } .framer-2b8tj .framer-1k16qs4, .framer-2b8tj .framer-1tsnpr2 { flex-direction: column; } .framer-2b8tj .framer-1fy2ez9, .framer-2b8tj .framer-1chn6al, .framer-2b8tj .framer-h7l4sh-container, .framer-2b8tj .framer-imnfiy-container, .framer-2b8tj .framer-1rsog5p-container, .framer-2b8tj .framer-1lttght-container { flex: none; width: 100%; } .framer-2b8tj .framer-14ppj7m, .framer-2b8tj .framer-5pnqsk, .framer-2b8tj .framer-qridt0, .framer-2b8tj .framer-gba3sm { order: 1; } .framer-2b8tj .framer-poah8h, .framer-2b8tj .framer-2b7hyu, .framer-2b8tj .framer-1etszaf, .framer-2b8tj .framer-qoge4a, .framer-2b8tj .framer-1epqft0 { order: 0; } .framer-2b8tj .framer-167w8lz { flex-direction: column; gap: 10px; padding: 16px; } .framer-2b8tj .framer-1r7i94r, .framer-2b8tj .framer-xro27f, .framer-2b8tj .framer-fjawj5, .framer-2b8tj .framer-1tkywdr { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-2b8tj .framer-wmw2m9 { gap: 24px; order: 7; padding: 40px 16px 40px 16px; } .framer-2b8tj .framer-fi0v86 { order: 2; } .framer-2b8tj .framer-1nqimyp { gap: 0px; order: 1; padding: 0px; } .framer-2b8tj .framer-14vjbw4 { flex-direction: column; gap: 16px; height: min-content; justify-content: center; padding: 16px; } .framer-2b8tj .framer-1wl7x2s { align-content: center; align-items: center; gap: 16px; order: 1; width: 100%; } .framer-2b8tj .framer-uqoay5 { order: 3; width: 100%; } .framer-2b8tj .framer-3if2iu { order: 4; width: 100%; } .framer-2b8tj .framer-yw3rbs { order: 7; } .framer-2b8tj .framer-tcecij { height: var(--framer-aspect-ratio-supported, 25px); order: 2; } .framer-2b8tj .framer-79vjgl { height: var(--framer-aspect-ratio-supported, 251px); order: 0; width: 100%; } .framer-2b8tj .framer-1kyde0a { order: 3; } .framer-2b8tj .framer-6df3p8 { gap: 24px; order: 8; padding: 40px 16px 60px 16px; } .framer-2b8tj .framer-be3g82 { gap: 16px; grid-auto-rows: 316px; grid-template-columns: repeat(2, minmax(1px, 1fr)); grid-template-rows: repeat(2, 316px); } .framer-2b8tj .framer-1mj7qx7 { align-content: flex-start; align-items: flex-start; align-self: stretch; flex: 1 0 0px; gap: 22px; height: auto; padding: 14px; width: 1px; } .framer-2b8tj .framer-1ajarzx { height: 157px; width: 150px; } .framer-2b8tj .framer-1377km2 { align-self: unset; width: 100%; } .framer-2b8tj .framer-nzcfyf { height: min-content; } .framer-2b8tj .framer-kqj7rg { justify-content: center; width: 100%; } .framer-2b8tj .framer-tzwevj { align-content: flex-start; align-items: flex-start; gap: 24px; padding: 14px; } .framer-2b8tj .framer-1nqj9ye { gap: 28px; } .framer-2b8tj .framer-20c1ck, .framer-2b8tj .framer-1s172an { height: 151px; width: 150px; } .framer-2b8tj .framer-rvkpde { height: var(--framer-aspect-ratio-supported, 30px); width: 32px; } .framer-2b8tj .framer-1kx75vc { height: var(--framer-aspect-ratio-supported, 15px); width: 67px; } .framer-2b8tj .framer-xwobtj { align-content: flex-start; align-items: flex-start; padding: 12px; } .framer-2b8tj .framer-3qpezf { height: var(--framer-aspect-ratio-supported, 32px); width: 95px; } .framer-2b8tj .framer-6g3z12 { align-content: flex-start; align-items: flex-start; padding: 14px; } .framer-2b8tj .framer-1vj1v44 { height: 152px; width: 150px; } .framer-2b8tj .framer-1b0v27a { height: var(--framer-aspect-ratio-supported, 32px); width: 112px; } .framer-2b8tj .framer-1w1gjdb, .framer-2b8tj .framer-198bvso { align-content: flex-start; align-items: flex-start; padding: 16px; } .framer-2b8tj .framer-5an80a, .framer-2b8tj .framer-z0wbyk { aspect-ratio: 0.9902439024390244 / 1; height: var(--framer-aspect-ratio-supported, 152px); width: 150px; } .framer-2b8tj .framer-1kbfhzy { width: 126px; } .framer-2b8tj .framer-sl2car { height: var(--framer-aspect-ratio-supported, 32px); width: 103px; } .framer-2b8tj .framer-wkceyf { height: var(--framer-aspect-ratio-supported, 32px); width: 131px; } .framer-2b8tj .framer-1q5r5th { bottom: 136px; left: -180px; top: unset; transform: unset; } .framer-2b8tj .framer-1d8tykd { right: -210px; top: 11px; } .framer-2b8tj .framer-svbaog { flex-direction: column; gap: 10px; height: min-content; order: 6; padding: 24px 16px 24px 16px; } .framer-2b8tj .framer-klqm5s { order: 10; } .framer-2b8tj .framer-1156310 { flex-direction: column; gap: 16px; height: min-content; justify-content: center; padding: 24px 16px 24px 16px; } .framer-2b8tj .framer-187t3ou { order: 11; padding: 40px 0px 40px 0px; } .framer-2b8tj .framer-158172y { flex-direction: column; gap: 24px; height: min-content; order: 12; padding: 40px 16px 0px 16px; } .framer-2b8tj .framer-1k8vgg1 { align-content: center; align-items: center; flex: none; gap: 32px; order: 0; width: 100%; } .framer-2b8tj .framer-1kqe65r { gap: 8px; } .framer-2b8tj .framer-5tz0cd { order: 5; } .framer-2b8tj .framer-opjkqw { height: var(--framer-aspect-ratio-supported, 260px); } .framer-2b8tj .framer-13stob1-container { order: 14; } .framer-2b8tj .framer-10pz79r { order: 15; } .framer-2b8tj.framer-swkyyx-container { left: 50%; top: 50%; width: 90%; } .framer-2b8tj .framer-1rcvp2f { left: unset; order: 17; right: -20px; top: -1151px; z-index: 6; } .framer-2b8tj .framer-1mfneq5-container { right: 20px; top: 20px; } .framer-2b8tj .framer-19xqhfp { height: var(--framer-aspect-ratio-supported, 624px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2b8tj .framer-1281ht4, .framer-2b8tj .framer-3t1oeg, .framer-2b8tj .framer-17usjx0, .framer-2b8tj .framer-qdtzhl, .framer-2b8tj .framer-tqnx3g, .framer-2b8tj .framer-okg743, .framer-2b8tj .framer-t1lwhh, .framer-2b8tj .framer-m9jsb3, .framer-2b8tj .framer-109mkil, .framer-2b8tj .framer-1t9yepy, .framer-2b8tj .framer-1v5ip6m, .framer-2b8tj .framer-1z0p6z0, .framer-2b8tj .framer-76uve5, .framer-2b8tj .framer-1k16qs4, .framer-2b8tj .framer-167w8lz, .framer-2b8tj .framer-wmw2m9, .framer-2b8tj .framer-1nqimyp, .framer-2b8tj .framer-14vjbw4, .framer-2b8tj .framer-1wl7x2s, .framer-2b8tj .framer-6df3p8, .framer-2b8tj .framer-be3g82, .framer-2b8tj .framer-1mj7qx7, .framer-2b8tj .framer-tzwevj, .framer-2b8tj .framer-1nqj9ye, .framer-2b8tj .framer-svbaog, .framer-2b8tj .framer-1156310, .framer-2b8tj .framer-158172y, .framer-2b8tj .framer-1k8vgg1, .framer-2b8tj .framer-1kqe65r, .framer-2b8tj .framer-1tsnpr2 { gap: 0px; } .framer-2b8tj .framer-1281ht4 > *, .framer-2b8tj .framer-17usjx0 > *, .framer-2b8tj .framer-14vjbw4 > *, .framer-2b8tj .framer-1wl7x2s > *, .framer-2b8tj .framer-1156310 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-2b8tj .framer-1281ht4 > :first-child, .framer-2b8tj .framer-3t1oeg > :first-child, .framer-2b8tj .framer-17usjx0 > :first-child, .framer-2b8tj .framer-qdtzhl > :first-child, .framer-2b8tj .framer-1z0p6z0 > :first-child, .framer-2b8tj .framer-76uve5 > :first-child, .framer-2b8tj .framer-1k16qs4 > :first-child, .framer-2b8tj .framer-167w8lz > :first-child, .framer-2b8tj .framer-wmw2m9 > :first-child, .framer-2b8tj .framer-1nqimyp > :first-child, .framer-2b8tj .framer-14vjbw4 > :first-child, .framer-2b8tj .framer-1wl7x2s > :first-child, .framer-2b8tj .framer-6df3p8 > :first-child, .framer-2b8tj .framer-1mj7qx7 > :first-child, .framer-2b8tj .framer-tzwevj > :first-child, .framer-2b8tj .framer-1nqj9ye > :first-child, .framer-2b8tj .framer-svbaog > :first-child, .framer-2b8tj .framer-1156310 > :first-child, .framer-2b8tj .framer-158172y > :first-child, .framer-2b8tj .framer-1k8vgg1 > :first-child, .framer-2b8tj .framer-1kqe65r > :first-child, .framer-2b8tj .framer-1tsnpr2 > :first-child { margin-top: 0px; } .framer-2b8tj .framer-1281ht4 > :last-child, .framer-2b8tj .framer-3t1oeg > :last-child, .framer-2b8tj .framer-17usjx0 > :last-child, .framer-2b8tj .framer-qdtzhl > :last-child, .framer-2b8tj .framer-1z0p6z0 > :last-child, .framer-2b8tj .framer-76uve5 > :last-child, .framer-2b8tj .framer-1k16qs4 > :last-child, .framer-2b8tj .framer-167w8lz > :last-child, .framer-2b8tj .framer-wmw2m9 > :last-child, .framer-2b8tj .framer-1nqimyp > :last-child, .framer-2b8tj .framer-14vjbw4 > :last-child, .framer-2b8tj .framer-1wl7x2s > :last-child, .framer-2b8tj .framer-6df3p8 > :last-child, .framer-2b8tj .framer-1mj7qx7 > :last-child, .framer-2b8tj .framer-tzwevj > :last-child, .framer-2b8tj .framer-1nqj9ye > :last-child, .framer-2b8tj .framer-svbaog > :last-child, .framer-2b8tj .framer-1156310 > :last-child, .framer-2b8tj .framer-158172y > :last-child, .framer-2b8tj .framer-1k8vgg1 > :last-child, .framer-2b8tj .framer-1kqe65r > :last-child, .framer-2b8tj .framer-1tsnpr2 > :last-child { margin-bottom: 0px; } .framer-2b8tj .framer-3t1oeg > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-2b8tj .framer-qdtzhl > *, .framer-2b8tj .framer-1z0p6z0 > *, .framer-2b8tj .framer-76uve5 > *, .framer-2b8tj .framer-1k16qs4 > *, .framer-2b8tj .framer-wmw2m9 > *, .framer-2b8tj .framer-6df3p8 > *, .framer-2b8tj .framer-tzwevj > *, .framer-2b8tj .framer-158172y > *, .framer-2b8tj .framer-1tsnpr2 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-2b8tj .framer-tqnx3g > *, .framer-2b8tj .framer-t1lwhh > *, .framer-2b8tj .framer-m9jsb3 > *, .framer-2b8tj .framer-109mkil > *, .framer-2b8tj .framer-1t9yepy > *, .framer-2b8tj .framer-1v5ip6m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2b8tj .framer-tqnx3g > :first-child, .framer-2b8tj .framer-okg743 > :first-child, .framer-2b8tj .framer-t1lwhh > :first-child, .framer-2b8tj .framer-m9jsb3 > :first-child, .framer-2b8tj .framer-109mkil > :first-child, .framer-2b8tj .framer-1t9yepy > :first-child, .framer-2b8tj .framer-1v5ip6m > :first-child { margin-left: 0px; } .framer-2b8tj .framer-tqnx3g > :last-child, .framer-2b8tj .framer-okg743 > :last-child, .framer-2b8tj .framer-t1lwhh > :last-child, .framer-2b8tj .framer-m9jsb3 > :last-child, .framer-2b8tj .framer-109mkil > :last-child, .framer-2b8tj .framer-1t9yepy > :last-child, .framer-2b8tj .framer-1v5ip6m > :last-child { margin-right: 0px; } .framer-2b8tj .framer-okg743 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-2b8tj .framer-167w8lz > *, .framer-2b8tj .framer-svbaog > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2b8tj .framer-1nqimyp > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2b8tj .framer-be3g82 > *, .framer-2b8tj .framer-be3g82 > :first-child, .framer-2b8tj .framer-be3g82 > :last-child { margin: 0px; } .framer-2b8tj .framer-1mj7qx7 > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-2b8tj .framer-1nqj9ye > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-2b8tj .framer-1k8vgg1 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-2b8tj .framer-1kqe65r > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-2b8tj.framer-72rtr7 { width: 810px; } .framer-2b8tj .framer-1ud2umu-container { order: 0; } .framer-2b8tj.framer-1awmapt-container, .framer-2b8tj.framer-1z0xomn-container, .framer-2b8tj.framer-1poptpm-container, .framer-2b8tj.framer-185mpz5-container, .framer-2b8tj .framer-13kva5f-container { width: 70%; } .framer-2b8tj .framer-nirmqk { order: 1; } .framer-2b8tj .framer-1uv6ole { height: 1015px; right: 0px; top: 26px; width: unset; } .framer-2b8tj .framer-1s2g53d { bottom: -26px; height: var(--framer-aspect-ratio-supported, 610px); right: 15px; width: 417px; } .framer-2b8tj .framer-1281ht4 { gap: 32px; left: 40px; top: 160px; transform: unset; width: 404px; } .framer-2b8tj .framer-3t1oeg { gap: 4px; } .framer-2b8tj .framer-1gd5fpa, .framer-2b8tj .framer-ykx8kj, .framer-2b8tj .framer-6mr00z, .framer-2b8tj .framer-1n9ee5v, .framer-2b8tj .framer-k4qppn, .framer-2b8tj .framer-19vr35g, .framer-2b8tj .framer-5c0vz, .framer-2b8tj .framer-8syif8, .framer-2b8tj .framer-1uw9zkc, .framer-2b8tj .framer-1hc3y6u, .framer-2b8tj .framer-6ijre8, .framer-2b8tj .framer-uqoay5, .framer-2b8tj .framer-3if2iu { width: 100%; } .framer-2b8tj .framer-17usjx0 { gap: 16px; } .framer-2b8tj .framer-1ihtz8i { bottom: 40px; left: 40px; } .framer-2b8tj .framer-1k337ck { order: 2; top: 58px; } .framer-2b8tj .framer-nbzfsz-container { position: relative; top: unset; } .framer-2b8tj .framer-qdtzhl { gap: 30px; height: 738px; order: 3; padding: 40px; width: 100%; } .framer-2b8tj .framer-wljxtx { bottom: unset; height: var(--framer-aspect-ratio-supported, 775px); left: -285px; right: -285px; top: -18px; } .framer-2b8tj .framer-hfc7w3 { flex: 1 0 0px; height: 1px; } .framer-2b8tj .framer-15o8bvp, .framer-2b8tj .framer-196u8bf, .framer-2b8tj .framer-1xroipl, .framer-2b8tj .framer-15zfg5p { gap: 14px; padding: 16px; } .framer-2b8tj .framer-tqnx3g, .framer-2b8tj .framer-t1lwhh, .framer-2b8tj .framer-m9jsb3, .framer-2b8tj .framer-109mkil, .framer-2b8tj .framer-1t9yepy, .framer-2b8tj .framer-1v5ip6m { align-content: center; align-items: center; flex-direction: row; } .framer-2b8tj .framer-w6ri7r, .framer-2b8tj .framer-wy9khv, .framer-2b8tj .framer-ulhwxg, .framer-2b8tj .framer-r5gqaw, .framer-2b8tj .framer-afdcug, .framer-2b8tj .framer-14y2whr-container { flex: 1 0 0px; width: 1px; } .framer-2b8tj .framer-1st6c8c, .framer-2b8tj .framer-gsvrap, .framer-2b8tj .framer-lw15vr, .framer-2b8tj .framer-poah8h { padding: 16px; } .framer-2b8tj .framer-12eijh1 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-2b8tj .framer-w2voc6, .framer-2b8tj .framer-757mbv { width: 185px; } .framer-2b8tj .framer-1z0p6z0 { gap: 30px; order: 4; padding: 40px; width: 100%; } .framer-2b8tj .framer-3fyb67 { height: 738px; top: calc(49.87212276214836% - 738px / 2); } .framer-2b8tj .framer-1pqb1s6 { gap: 20px; grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-2b8tj .framer-76uve5 { order: 5; padding: 40px; } .framer-2b8tj .framer-167w8lz { gap: 16px; padding: 40px 0px 40px 40px; } .framer-2b8tj .framer-wmw2m9 { order: 6; padding: 40px; } .framer-2b8tj .framer-1nqimyp { padding: 0px; } .framer-2b8tj .framer-14vjbw4 { flex-direction: column; gap: 24px; height: min-content; justify-content: flex-start; padding: 24px; } .framer-2b8tj .framer-1wl7x2s { align-content: center; align-items: center; order: 1; width: 100%; } .framer-2b8tj .framer-79vjgl { height: var(--framer-aspect-ratio-supported, 525px); order: 0; width: 100%; } .framer-2b8tj .framer-6df3p8 { order: 7; padding: 40px; } .framer-2b8tj .framer-be3g82 { gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, 230px); grid-template-rows: repeat(2, min-content); } .framer-2b8tj .framer-1mj7qx7 { gap: 20px; padding: 0px; } .framer-2b8tj .framer-nzcfyf { height: min-content; width: min-content; } .framer-2b8tj .framer-1fmuzit { width: 211px; } .framer-2b8tj .framer-tzwevj { height: min-content; padding: 0px 24px 24px 24px; } .framer-2b8tj .framer-1nqj9ye { gap: 29px; } .framer-2b8tj .framer-xwobtj { height: 358px; padding: 24px; } .framer-2b8tj .framer-6g3z12, .framer-2b8tj .framer-1w1gjdb, .framer-2b8tj .framer-198bvso { height: auto; padding: 24px; } .framer-2b8tj .framer-1skjj19 { gap: 10px; } .framer-2b8tj .framer-svbaog { flex-direction: column; gap: 32px; order: 9; padding: 40px; } .framer-2b8tj .framer-1wzdyhs-container { flex: none; width: 100%; } .framer-2b8tj .framer-klqm5s { order: 10; } .framer-2b8tj .framer-1156310 { padding: 42px 40px 42px 40px; } .framer-2b8tj .framer-187t3ou { order: 11; padding: 80px; } .framer-2b8tj .framer-158172y { gap: 40px; order: 12; padding: 0px 40px 0px 40px; } .framer-2b8tj .framer-1k8vgg1 { height: 100%; } .framer-2b8tj .framer-13stob1-container { order: 14; } .framer-2b8tj .framer-1bfk67a { order: 16; } .framer-2b8tj .framer-1rcvp2f { order: 17; } .framer-2b8tj .framer-1ug6030 { height: var(--framer-aspect-ratio-supported, 548px); top: 50%; width: 90%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2b8tj .framer-1281ht4, .framer-2b8tj .framer-3t1oeg, .framer-2b8tj .framer-17usjx0, .framer-2b8tj .framer-qdtzhl, .framer-2b8tj .framer-15o8bvp, .framer-2b8tj .framer-tqnx3g, .framer-2b8tj .framer-196u8bf, .framer-2b8tj .framer-t1lwhh, .framer-2b8tj .framer-1xroipl, .framer-2b8tj .framer-m9jsb3, .framer-2b8tj .framer-109mkil, .framer-2b8tj .framer-15zfg5p, .framer-2b8tj .framer-1t9yepy, .framer-2b8tj .framer-1v5ip6m, .framer-2b8tj .framer-1z0p6z0, .framer-2b8tj .framer-1pqb1s6, .framer-2b8tj .framer-167w8lz, .framer-2b8tj .framer-14vjbw4, .framer-2b8tj .framer-be3g82, .framer-2b8tj .framer-1mj7qx7, .framer-2b8tj .framer-1nqj9ye, .framer-2b8tj .framer-1skjj19, .framer-2b8tj .framer-svbaog, .framer-2b8tj .framer-158172y { gap: 0px; } .framer-2b8tj .framer-1281ht4 > *, .framer-2b8tj .framer-svbaog > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-2b8tj .framer-1281ht4 > :first-child, .framer-2b8tj .framer-3t1oeg > :first-child, .framer-2b8tj .framer-qdtzhl > :first-child, .framer-2b8tj .framer-15o8bvp > :first-child, .framer-2b8tj .framer-196u8bf > :first-child, .framer-2b8tj .framer-1xroipl > :first-child, .framer-2b8tj .framer-15zfg5p > :first-child, .framer-2b8tj .framer-1z0p6z0 > :first-child, .framer-2b8tj .framer-14vjbw4 > :first-child, .framer-2b8tj .framer-1mj7qx7 > :first-child, .framer-2b8tj .framer-1nqj9ye > :first-child, .framer-2b8tj .framer-1skjj19 > :first-child, .framer-2b8tj .framer-svbaog > :first-child { margin-top: 0px; } .framer-2b8tj .framer-1281ht4 > :last-child, .framer-2b8tj .framer-3t1oeg > :last-child, .framer-2b8tj .framer-qdtzhl > :last-child, .framer-2b8tj .framer-15o8bvp > :last-child, .framer-2b8tj .framer-196u8bf > :last-child, .framer-2b8tj .framer-1xroipl > :last-child, .framer-2b8tj .framer-15zfg5p > :last-child, .framer-2b8tj .framer-1z0p6z0 > :last-child, .framer-2b8tj .framer-14vjbw4 > :last-child, .framer-2b8tj .framer-1mj7qx7 > :last-child, .framer-2b8tj .framer-1nqj9ye > :last-child, .framer-2b8tj .framer-1skjj19 > :last-child, .framer-2b8tj .framer-svbaog > :last-child { margin-bottom: 0px; } .framer-2b8tj .framer-3t1oeg > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-2b8tj .framer-17usjx0 > *, .framer-2b8tj .framer-167w8lz > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-2b8tj .framer-17usjx0 > :first-child, .framer-2b8tj .framer-tqnx3g > :first-child, .framer-2b8tj .framer-t1lwhh > :first-child, .framer-2b8tj .framer-m9jsb3 > :first-child, .framer-2b8tj .framer-109mkil > :first-child, .framer-2b8tj .framer-1t9yepy > :first-child, .framer-2b8tj .framer-1v5ip6m > :first-child, .framer-2b8tj .framer-167w8lz > :first-child, .framer-2b8tj .framer-158172y > :first-child { margin-left: 0px; } .framer-2b8tj .framer-17usjx0 > :last-child, .framer-2b8tj .framer-tqnx3g > :last-child, .framer-2b8tj .framer-t1lwhh > :last-child, .framer-2b8tj .framer-m9jsb3 > :last-child, .framer-2b8tj .framer-109mkil > :last-child, .framer-2b8tj .framer-1t9yepy > :last-child, .framer-2b8tj .framer-1v5ip6m > :last-child, .framer-2b8tj .framer-167w8lz > :last-child, .framer-2b8tj .framer-158172y > :last-child { margin-right: 0px; } .framer-2b8tj .framer-qdtzhl > *, .framer-2b8tj .framer-1z0p6z0 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-2b8tj .framer-15o8bvp > *, .framer-2b8tj .framer-196u8bf > *, .framer-2b8tj .framer-1xroipl > *, .framer-2b8tj .framer-15zfg5p > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-2b8tj .framer-tqnx3g > *, .framer-2b8tj .framer-t1lwhh > *, .framer-2b8tj .framer-m9jsb3 > *, .framer-2b8tj .framer-109mkil > *, .framer-2b8tj .framer-1t9yepy > *, .framer-2b8tj .framer-1v5ip6m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2b8tj .framer-1pqb1s6 > *, .framer-2b8tj .framer-1pqb1s6 > :first-child, .framer-2b8tj .framer-1pqb1s6 > :last-child, .framer-2b8tj .framer-be3g82 > *, .framer-2b8tj .framer-be3g82 > :first-child, .framer-2b8tj .framer-be3g82 > :last-child { margin: 0px; } .framer-2b8tj .framer-14vjbw4 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-2b8tj .framer-1mj7qx7 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-2b8tj .framer-1nqj9ye > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-2b8tj .framer-1skjj19 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2b8tj .framer-158172y > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }}\",\"@media (min-width: 1200px) and (max-width: 1389px) { .framer-2b8tj.framer-72rtr7 { width: 1200px; } .framer-2b8tj .framer-1ud2umu-container { order: 2; } .framer-2b8tj .framer-nirmqk, .framer-2b8tj .framer-5fwzsv, .framer-2b8tj .framer-1s5jwy2 { order: 0; } .framer-2b8tj .framer-1uv6ole { height: 816px; left: -113px; right: -95px; top: -18px; width: unset; } .framer-2b8tj .framer-1s2g53d { height: 74.97055359246173vh; left: 693px; right: unset; } .framer-2b8tj .framer-1281ht4 { left: 93px; top: 188px; transform: unset; } .framer-2b8tj .framer-1ihtz8i { bottom: 60px; left: 93px; } .framer-2b8tj .framer-1k337ck { order: 1; } .framer-2b8tj .framer-qdtzhl { order: 3; padding: 80px 100px 80px 143px; width: 100%; } .framer-2b8tj .framer-wljxtx { height: var(--framer-aspect-ratio-supported, 673px); } .framer-2b8tj .framer-hfc7w3 { grid-auto-rows: min-content; grid-template-rows: repeat(2, min-content); height: 560px; } .framer-2b8tj .framer-w6ri7r, .framer-2b8tj .framer-6mr00z, .framer-2b8tj .framer-1n9ee5v, .framer-2b8tj .framer-wy9khv, .framer-2b8tj .framer-k4qppn, .framer-2b8tj .framer-19vr35g, .framer-2b8tj .framer-ulhwxg, .framer-2b8tj .framer-5c0vz, .framer-2b8tj .framer-8syif8, .framer-2b8tj .framer-109mkil, .framer-2b8tj .framer-w2voc6, .framer-2b8tj .framer-757mbv, .framer-2b8tj .framer-r5gqaw, .framer-2b8tj .framer-1uw9zkc, .framer-2b8tj .framer-1hc3y6u, .framer-2b8tj .framer-6ijre8, .framer-2b8tj .framer-vtskxd { width: 100%; } .framer-2b8tj .framer-1xroipl, .framer-2b8tj .framer-15zfg5p, .framer-2b8tj .framer-nzcfyf { height: min-content; } .framer-2b8tj .framer-1z0p6z0 { order: 4; padding: 80px 100px 80px 143px; width: 100%; } .framer-2b8tj .framer-76uve5 { gap: 32px; order: 5; padding: 60px 100px 60px 100px; } .framer-2b8tj .framer-167w8lz { gap: 20px; } .framer-2b8tj .framer-14y2whr-container { width: 150%; } .framer-2b8tj .framer-wmw2m9 { order: 6; } .framer-2b8tj .framer-14vjbw4 { gap: 32px; height: min-content; justify-content: flex-end; padding: 40px; } .framer-2b8tj .framer-1wl7x2s { align-content: center; align-items: center; flex: 1 0 0px; width: 1px; } .framer-2b8tj .framer-17yuvxf { height: 24px; order: 0; width: 100%; } .framer-2b8tj .framer-cbtxt { aspect-ratio: 0.9811320754716981 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 24px); } .framer-2b8tj .framer-wpk89v { align-self: unset; height: 25px; order: 3; width: 100%; } .framer-2b8tj .framer-g0eyo1 { height: var(--framer-aspect-ratio-supported, 24px); } .framer-2b8tj .framer-uqoay5 { order: 1; width: 100%; } .framer-2b8tj .framer-3if2iu { order: 2; width: 100%; } .framer-2b8tj .framer-79vjgl { height: var(--framer-aspect-ratio-supported, 291px); width: 378px; } .framer-2b8tj .framer-6df3p8 { order: 7; } .framer-2b8tj .framer-1mj7qx7, .framer-2b8tj .framer-1nqj9ye { gap: 32px; } .framer-2b8tj .framer-svbaog { flex-direction: column; gap: 50px; order: 8; padding: 80px 100px 80px 100px; } .framer-2b8tj .framer-x2ynp5 { align-content: center; align-items: center; width: 100%; } .framer-2b8tj .framer-1wzdyhs-container { flex: none; width: 100%; } .framer-2b8tj .framer-klqm5s { order: 10; } .framer-2b8tj .framer-1156310 { padding: 42px 100px 42px 100px; } .framer-2b8tj .framer-187t3ou { order: 11; padding: 80px 100px 80px 100px; } .framer-2b8tj .framer-158172y { order: 12; padding: 0px 100px 0px 100px; } .framer-2b8tj .framer-1k8vgg1 { height: 100%; } .framer-2b8tj .framer-13stob1-container { order: 14; } .framer-2b8tj .framer-1bfk67a { order: 16; } .framer-2b8tj .framer-1rcvp2f { order: 17; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2b8tj .framer-76uve5, .framer-2b8tj .framer-167w8lz, .framer-2b8tj .framer-14vjbw4, .framer-2b8tj .framer-1mj7qx7, .framer-2b8tj .framer-1nqj9ye, .framer-2b8tj .framer-svbaog { gap: 0px; } .framer-2b8tj .framer-76uve5 > *, .framer-2b8tj .framer-1mj7qx7 > *, .framer-2b8tj .framer-1nqj9ye > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-2b8tj .framer-76uve5 > :first-child, .framer-2b8tj .framer-1mj7qx7 > :first-child, .framer-2b8tj .framer-1nqj9ye > :first-child, .framer-2b8tj .framer-svbaog > :first-child { margin-top: 0px; } .framer-2b8tj .framer-76uve5 > :last-child, .framer-2b8tj .framer-1mj7qx7 > :last-child, .framer-2b8tj .framer-1nqj9ye > :last-child, .framer-2b8tj .framer-svbaog > :last-child { margin-bottom: 0px; } .framer-2b8tj .framer-167w8lz > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-2b8tj .framer-167w8lz > :first-child, .framer-2b8tj .framer-14vjbw4 > :first-child { margin-left: 0px; } .framer-2b8tj .framer-167w8lz > :last-child, .framer-2b8tj .framer-14vjbw4 > :last-child { margin-right: 0px; } .framer-2b8tj .framer-14vjbw4 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-2b8tj .framer-svbaog > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }}\",\"@media (min-width: 1390px) and (max-width: 1439px) { .framer-2b8tj.framer-72rtr7 { width: 1390px; } .framer-2b8tj .framer-1s2g53d { height: var(--framer-aspect-ratio-supported, 537px); left: 908px; width: unset; } .framer-2b8tj .framer-nbzfsz-container { position: relative; top: unset; } .framer-2b8tj .framer-qdtzhl, .framer-2b8tj .framer-1z0p6z0 { width: 100%; } .framer-2b8tj .framer-wljxtx { height: var(--framer-aspect-ratio-supported, 779px); }}\",\"@media (min-width: 1920px) { .framer-2b8tj.framer-72rtr7 { width: 1920px; } .framer-2b8tj .framer-1s2g53d { right: 240px; } .framer-2b8tj .framer-1281ht4, .framer-2b8tj .framer-1ihtz8i { left: 240px; } .framer-2b8tj .framer-qdtzhl, .framer-2b8tj .framer-1z0p6z0 { max-width: 1920px; padding: 80px 240px 80px 240px; width: 100%; } .framer-2b8tj .framer-wljxtx { height: var(--framer-aspect-ratio-supported, 1076px); } .framer-2b8tj .framer-76uve5 { max-width: 1920px; padding: 60px 240px 60px 240px; } .framer-2b8tj .framer-167w8lz { gap: unset; justify-content: space-between; padding: 24px 40px 24px 40px; } .framer-2b8tj .framer-wmw2m9 { max-width: 1920px; } .framer-2b8tj .framer-1nqimyp { padding: 0px 240px 0px 240px; } .framer-2b8tj .framer-6df3p8 { max-width: 1920px; padding: 80px 240px 80px 240px; } .framer-2b8tj .framer-svbaog { gap: unset; justify-content: space-between; padding: 80px 240px 80px 240px; } .framer-2b8tj .framer-1156310 { padding: 42px 240px 42px 240px; } .framer-2b8tj .framer-12r4t07-container { width: auto; } .framer-2b8tj .framer-158172y { max-width: 1920px; padding: 0px 240px 0px 240px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2b8tj .framer-167w8lz, .framer-2b8tj .framer-svbaog { gap: 0px; } .framer-2b8tj .framer-167w8lz > *, .framer-2b8tj .framer-167w8lz > :first-child, .framer-2b8tj .framer-167w8lz > :last-child, .framer-2b8tj .framer-svbaog > *, .framer-2b8tj .framer-svbaog > :first-child, .framer-2b8tj .framer-svbaog > :last-child { margin: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7706.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"C64c7WEDa\":{\"layout\":[\"fixed\",\"auto\"]},\"Eln0kxZ8s\":{\"layout\":[\"fixed\",\"auto\"]},\"Yy6226C2c\":{\"layout\":[\"fixed\",\"auto\"]},\"O57vNi4Po\":{\"layout\":[\"fixed\",\"auto\"]},\"tuUn99Siu\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"jyqlxb6hB\":{\"pattern\":\":jyqlxb6hB\",\"name\":\"hero\"},\"oSZOdygb2\":{\"pattern\":\":oSZOdygb2\",\"name\":\"why\"},\"Bz8BNoYZp\":{\"pattern\":\":Bz8BNoYZp\",\"name\":\"why\"},\"Vnyt6cSEe\":{\"pattern\":\":Vnyt6cSEe\",\"name\":\"free-session\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-2b8tj\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7706.5,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Khand\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/khand/v21/TwMA-IINQlQQ0YpQWHU_TBqO.woff2\",weight:\"400\"},{family:\"Khand\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/khand/v21/TwMN-IINQlQQ0bLpd1EyZwaH__-C.woff2\",weight:\"700\"},{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4iY1M2xLER.woff2\",weight:\"600\"},{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4iY1M2xLER.woff2\",weight:\"700\"},{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0C4iY1M2xLER.woff2\",weight:\"300\"},{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4iY1M2xLER.woff2\",weight:\"400\"},{family:\"Open Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/opensans/v40/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjaVIUwaERZjA.woff2\",weight:\"600\"},{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4iY1M2xLER.woff2\",weight:\"500\"},{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/PONfPc6h4EPYwJliXQBmjVx7QxI.woff2\",weight:\"800\"},{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/zsnJN7Z1wdzUvepJniD3rbvJIyU.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/UrzZBOy7RyJEWAZGduzOeHiHuY.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/996sR9SfSDuYELz8oHhDOcErkY.woff2\",weight:\"800\"},{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/ftN1HpyPVJEoEb4q36SOrNdLXU.woff2\",weight:\"800\"},{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/jN39PDxZWEwjG7Csryx3JN2r2Y.woff2\",weight:\"800\"},{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/JAur4lGGSGRGyrFi59JSIKqVgU.woff2\",weight:\"800\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w7Y3tcoqK5.woff2\",weight:\"600\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew7Y3tcoqK5.woff2\",weight:\"500\"},{family:\"Khand\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/khand/v21/TwMN-IINQlQQ0bKNdlEyZwaH__-C.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...HeaderFonts,...LeadFormFonts,...MainButtonFonts,...BrochureFormParalegalFonts,...TickerFonts,...ProgramCardFonts,...VideoTestimonialCardFonts,...CarouselFonts,...FooterCopyFonts,...FeatherFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C64c7WEDa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Eln0kxZ8s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Yy6226C2c\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"O57vNi4Po\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tuUn99Siu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"jyqlxb6hB\\\":{\\\"pattern\\\":\\\":jyqlxb6hB\\\",\\\"name\\\":\\\"hero\\\"},\\\"oSZOdygb2\\\":{\\\"pattern\\\":\\\":oSZOdygb2\\\",\\\"name\\\":\\\"why\\\"},\\\"Bz8BNoYZp\\\":{\\\"pattern\\\":\\\":Bz8BNoYZp\\\",\\\"name\\\":\\\"why\\\"},\\\"Vnyt6cSEe\\\":{\\\"pattern\\\":\\\":Vnyt6cSEe\\\",\\\"name\\\":\\\"free-session\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"7706.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "VideoFonts", "getFonts", "Video", "FeatherFonts", "Icon", "VideoControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toImageSrc", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "certification", "cover", "file", "height", "id", "name1", "subtext", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "rofeQqNDz", "JovVoa3Rr", "qDkOtgrcJ", "OtVCDef4s", "odkjOYEZa", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1mkspye", "args", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerEVJ3av4P9", "withCSS", "EVJ3av4P9_default", "addPropertyControls", "ControlType", "addFonts", "HeaderFonts", "getFonts", "LBHv5lwdg_default", "LeadFormFonts", "BE5tZhB5N_default", "MainButtonFonts", "Uji96ap3R_default", "BrochureFormParalegalFonts", "SDIVAPEyk_default", "TickerFonts", "Ticker", "ProgramCardFonts", "CAKxYLmXN_default", "VideoTestimonialCardFonts", "EVJ3av4P9_default", "CarouselFonts", "Carousel", "FooterCopyFonts", "AhCgB9VBj_default", "MotionDivWithFX", "withFX", "motion", "FeatherFonts", "Icon", "FeatherOnCloseClickpf3cyd", "withCodeBoundaryForOverrides", "onCloseClick", "MotionDivOnCloseParentClick1bfk67aWithOptimizedAppearEffect", "withOptimizedAppearEffect", "onCloseParentClick", "FeatherOnCloseClick1mfneq5", "MotionDivOnCloseParentClick1rcvp2fWithOptimizedAppearEffect", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transformTemplate2", "toResponsiveImage", "value", "numberToString", "options", "activeLocale", "fallbackLocale", "locale", "useGrouping", "notation", "compactDisplay", "style", "currency", "currencyDisplay", "unit", "unitDisplay", "minimumFractionDigits", "maximumFractionDigits", "minimumIntegerDigits", "formatOptions", "number", "QueryData", "query", "pageSize", "data", "useQueryData", "transformTemplate3", "addImageAlt", "image", "alt", "transition1", "animation", "transition2", "animation1", "animation2", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "className", "layoutId", "variant", "fEq6ctP0Jr_DHji05u", "kkNLZPUspr_DHji05u", "hLeruf9Y8r_DHji05u", "LeRk2ioSlr_DHji05u", "aq7YH7_cPr_DHji05u", "A4UvQ6_OQr_DHji05u", "p2V39Xdlcr_DHji05u", "idr_DHji05u", "xp1GShlBL", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "xp1GShlBL3bnx0g", "overlay", "loadMore", "args", "Oph0cM2IU3bnx0g", "onTap3bnx0g", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "router", "useRouter", "isDisplayed", "elementId1", "ref2", "elementId2", "ref3", "activeLocaleCode", "useLocaleCode", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "elementId3", "ref4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "l", "ComponentViewportProvider", "Container", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "getLoadingLazyAtYPosition", "Image2", "RichText2", "ResolveLinks", "resolvedLinks", "overlay1", "SVG", "overlay2", "ChildrenCanSuspend", "dMO7eu5it_default", "collection", "paginationInfo", "index", "PathVariablesContext", "resolvedLinks1", "overlay3", "overlay4", "Link", "overlay5", "resolvedLinks2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
