{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js", "ssg:https://framerusercontent.com/modules/p2TPRuTxLhwhT24I3Mwt/YS6Km13JBAdajQaYgaKt/btsl258uc.js", "ssg:https://framerusercontent.com/modules/YTBGDnGrQnLgT89nKsJo/obo8IkQLdIss7f8f9S5m/GnZHwpskF.js", "ssg:https://framerusercontent.com/modules/xOv3E29gI4mTft35w11D/NJfJ7YbqISkHRRq2YLDr/IhGAmn0sk.js", "ssg:https://framerusercontent.com/modules/wlEz4LnNptuIufAtzdCK/poTvqK6076FZlpk6zBsI/yd7nMFDHh.js"],
  "sourcesContent": ["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://framer.com/m/framer/default-utils.js@^0.45.0\";import{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 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 isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.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();},[]);return{play,pause,setProgress};}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;}/**\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 */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=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);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=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]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=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=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)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\",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\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",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:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];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\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},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\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...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\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}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(()=>{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\",{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\",{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\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (12ecc5e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ButtonNav from\"https://framerusercontent.com/modules/5isjocG8fzw7DfuKAWrz/pBKD8AbF5hzJjOa1zTCL/MHc54W6ze.js\";const ButtonNavFonts=getFonts(ButtonNav);const serializationHash=\"framer-NZsaK\";const variantClassNames={JiRUDbDoH:\"framer-v-11nvmpy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"JiRUDbDoH\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-11nvmpy\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"JiRUDbDoH\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:\"linear-gradient(284deg, rgba(0,0,0,0) 0%, #000000 100%)\",...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 170, 34))\"},children:\"Limited Time Offer:\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xkSXRhbGlj\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(255, 170, 34))\"},children:\"Use Coupon code 'PADHLE69' and get flat \u20B969/- discount on Batches/e-Books.\"})]}),className:\"framer-18q6hy2\",fonts:[\"Inter-Bold\",\"Inter-ExtraBoldItalic\"],layoutDependency:layoutDependency,layoutId:\"v5u7fEO5I\",style:{\"--extracted-2gxw0f\":\"rgb(255, 170, 34)\",\"--extracted-r6o4lv\":\"rgb(255, 170, 34)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||74)-0-43)/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7nen4s-container\",layoutDependency:layoutDependency,layoutId:\"ujCklzLbp-container\",children:/*#__PURE__*/_jsx(ButtonNav,{AIYkLNyqb:\"Enroll Now\",Deo_eE5Hq:false,DEX53qIxg:\"https://padhleakshay.classx.co.in/new-courses\",height:\"100%\",id:\"ujCklzLbp\",layoutId:\"ujCklzLbp\",variant:\"UYq6nen_u\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NZsaK.framer-m1dsda, .framer-NZsaK .framer-m1dsda { display: block; }\",\".framer-NZsaK.framer-11nvmpy { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: 74px; justify-content: space-between; padding: 0px 40px 0px 40px; position: relative; width: 580px; }\",\".framer-NZsaK .framer-18q6hy2 { flex: 1 0 0px; height: 100%; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-NZsaK .framer-7nen4s-container { flex: none; height: auto; position: relative; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 74\n * @framerIntrinsicWidth 580\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerbtsl258uc=withCSS(Component,css,\"framer-NZsaK\");export default Framerbtsl258uc;Framerbtsl258uc.displayName=\"Footer Strip\";Framerbtsl258uc.defaultProps={height:74,width:580};addFonts(Framerbtsl258uc,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/if4nAQEfO1l3iBiurvlUSTaMA.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/GdJ7SQjcmkU1sz7lk5lMpKUlKY.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/sOA6LVskcCqlqggyjIZe0Zh39UQ.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/zUCSsMbWBcHOQoATrhsPVigkc.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/6eYp9yIAUvPZY7o0yfI4e2OP6g.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/aKoimhPBfs6C7Am2HTTVjGcpE.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/L9nHaKi7ULzGWchEehsfwttxOwM.woff2\",weight:\"800\"}]},...ButtonNavFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerbtsl258uc\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"580\",\"framerIntrinsicHeight\":\"74\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./btsl258uc.map", "// Generated by Framer (aab6bf9)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"DpBDlho3e\"];const serializationHash=\"framer-PXKzD\";const variantClassNames={DpBDlho3e:\"framer-v-1udbdsd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"DpBDlho3e\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1udbdsd\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"DpBDlho3e\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(244, 169, 4)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style}})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PXKzD.framer-daffl6, .framer-PXKzD .framer-daffl6 { display: block; }\",\".framer-PXKzD.framer-1udbdsd { height: 20px; position: relative; width: 20px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 20\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGnZHwpskF=withCSS(Component,css,\"framer-PXKzD\");export default FramerGnZHwpskF;FramerGnZHwpskF.displayName=\"Cursor\";FramerGnZHwpskF.defaultProps={height:20,width:20};addFonts(FramerGnZHwpskF,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGnZHwpskF\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"20\",\"framerIntrinsicHeight\":\"20\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GnZHwpskF.map", "// Generated by Framer (41c59c7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/vX2EzgPJFb5wqdvp0m18/yfAnHGORUfWxMzn1yV3I/iLvBdfOs8.js\";const cycleOrder=[\"j7PAVVha3\"];const serializationHash=\"framer-SsgPL\";const variantClassNames={j7PAVVha3:\"framer-v-v4qbpw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({amount,height,id,title,width,...props})=>{var _ref,_ref1;return{...props,ODC_810_T:(_ref=amount!==null&&amount!==void 0?amount:props.ODC_810_T)!==null&&_ref!==void 0?_ref:\"15\",WmbsVaIgS:(_ref1=title!==null&&title!==void 0?title:props.WmbsVaIgS)!==null&&_ref1!==void 0?_ref1:\"Years of Experience\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ODC_810_T,WmbsVaIgS,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"j7PAVVha3\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-v4qbpw\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"j7PAVVha3\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backdropFilter:\"blur(5px)\",backgroundColor:\"var(--token-16cecdcd-c5a5-4884-abaa-e0abd93e3514, rgba(255, 255, 255, 0.1))\",borderBottomLeftRadius:240,borderBottomRightRadius:240,borderTopLeftRadius:240,borderTopRightRadius:240,WebkitBackdropFilter:\"blur(5px)\",...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-33ccxt\",layoutDependency:layoutDependency,layoutId:\"CfrF4iA2W\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"15\"})}),className:\"framer-1k3ljgi\",fonts:[\"GF;Unbounded-regular\"],layoutDependency:layoutDependency,layoutId:\"tOhURsI1h\",style:{\"--extracted-r6o4lv\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ODC_810_T,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-g6micz\",\"data-styles-preset\":\"iLvBdfOs8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d9d01f21-7a47-443c-a8bc-56cdb453de6f, rgba(255, 255, 255, 0.8)))\"},children:\"Years of Experience\"})}),className:\"framer-d7u0rd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LZyt5raFL\",style:{\"--extracted-r6o4lv\":\"var(--token-d9d01f21-7a47-443c-a8bc-56cdb453de6f, rgba(255, 255, 255, 0.8))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:WmbsVaIgS,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SsgPL.framer-nrtbwm, .framer-SsgPL .framer-nrtbwm { display: block; }\",\".framer-SsgPL.framer-v4qbpw { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: 187px; justify-content: center; overflow: hidden; padding: 54px 54px 54px 54px; position: relative; width: 187px; will-change: var(--framer-will-change-override, transform); }\",\".framer-SsgPL .framer-33ccxt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-SsgPL .framer-1k3ljgi { flex: none; height: 31px; position: relative; white-space: pre; width: auto; }\",\".framer-SsgPL .framer-d7u0rd { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SsgPL.framer-v4qbpw, .framer-SsgPL .framer-33ccxt { gap: 0px; } .framer-SsgPL.framer-v4qbpw > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-SsgPL.framer-v4qbpw > :first-child, .framer-SsgPL .framer-33ccxt > :first-child { margin-top: 0px; } .framer-SsgPL.framer-v4qbpw > :last-child, .framer-SsgPL .framer-33ccxt > :last-child { margin-bottom: 0px; } .framer-SsgPL .framer-33ccxt > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 187\n * @framerIntrinsicWidth 187\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"ODC_810_T\":\"amount\",\"WmbsVaIgS\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIhGAmn0sk=withCSS(Component,css,\"framer-SsgPL\");export default FramerIhGAmn0sk;FramerIhGAmn0sk.displayName=\"Stats\";FramerIhGAmn0sk.defaultProps={height:187,width:187};addPropertyControls(FramerIhGAmn0sk,{ODC_810_T:{defaultValue:\"15\",displayTextArea:false,title:\"Amount\",type:ControlType.String},WmbsVaIgS:{defaultValue:\"Years of Experience\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerIhGAmn0sk,[{explicitInter:true,fonts:[{family:\"Unbounded\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6xjx04jHgP6LR0Y.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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIhGAmn0sk\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"187\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"187\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"ODC_810_T\\\":\\\"amount\\\",\\\"WmbsVaIgS\\\":\\\"title\\\"}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Pattern from\"https://framerusercontent.com/modules/2rGdY3xNPdGAC1LGc2Ew/gQcpGdBaDKqalAQX5HN3/Pattern.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/qXyG1UgqGGx5DS4G9abM/Smooth_Scroll.js\";import FooterStrip from\"#framer/local/canvasComponent/btsl258uc/btsl258uc.js\";import Button from\"#framer/local/canvasComponent/cBQAwTefC/cBQAwTefC.js\";import Bullet from\"#framer/local/canvasComponent/f_SxhhPsu/f_SxhhPsu.js\";import Cursor from\"#framer/local/canvasComponent/GnZHwpskF/GnZHwpskF.js\";import Stats from\"#framer/local/canvasComponent/IhGAmn0sk/IhGAmn0sk.js\";import FAQListCommon from\"#framer/local/canvasComponent/iV8GXG0Ck/iV8GXG0Ck.js\";import NavigationBar from\"#framer/local/canvasComponent/Kg3jp8xZU/Kg3jp8xZU.js\";import Footer from\"#framer/local/canvasComponent/oGO_MGaZp/oGO_MGaZp.js\";import Heading from\"#framer/local/canvasComponent/QJ12gIOBS/QJ12gIOBS.js\";import*as sharedStyle2 from\"#framer/local/css/Bzf9tU22M/Bzf9tU22M.js\";import*as sharedStyle3 from\"#framer/local/css/BZqcnnsi4/BZqcnnsi4.js\";import*as sharedStyle1 from\"#framer/local/css/DuMLJ2VUN/DuMLJ2VUN.js\";import*as sharedStyle from\"#framer/local/css/hwFxtQiSW/hwFxtQiSW.js\";import*as sharedStyle4 from\"#framer/local/css/iLvBdfOs8/iLvBdfOs8.js\";import metadataProvider from\"#framer/local/webPageMetadata/yd7nMFDHh/yd7nMFDHh.js\";const PatternFonts=getFonts(Pattern);const NavigationBarFonts=getFonts(NavigationBar);const FooterStripFonts=getFonts(FooterStrip);const PhosphorFonts=getFonts(Phosphor);const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const StatsFonts=getFonts(Stats);const ContainerWithFX=withFX(Container);const ButtonFonts=getFonts(Button);const MotionSectionWithFX=withFX(motion.section);const HeadingFonts=getFonts(Heading);const CarouselFonts=getFonts(Carousel);const VideoFonts=getFonts(Video);const BulletFonts=getFonts(Bullet);const FAQListCommonFonts=getFonts(FAQListCommon);const FooterFonts=getFonts(Footer);const SmoothScrollFonts=getFonts(SmoothScroll);const CursorFonts=getFonts(Cursor);const breakpoints={OwNhynIYY:\"(min-width: 1200px)\",P7j2A2OCI:\"(max-width: 809px)\",WgNeKo_y1:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-HipSL\";const variantClassNames={OwNhynIYY:\"framer-v-hvzz3m\",P7j2A2OCI:\"framer-v-1zvqox\",WgNeKo_y1:\"framer-v-1b4lfhe\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-100};const transition1={damping:85,delay:.4,mass:1,stiffness:212,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:-100};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:170};const transition2={damping:85,delay:.2,mass:1,stiffness:212,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:170};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:32};const transition3={damping:30,delay:0,mass:1,stiffness:118,type:\"spring\"};const animation5={opacity:1,rotate:20,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-90};const transition4={damping:40,delay:.3,mass:.1,stiffness:232,type:\"spring\"};const animation6={opacity:1,rotate:20,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:-90};const inertia={bounceDamping:30,bounceStiffness:400,delay:0,type:\"inertia\"};const preventDefault=e=>e.preventDefault();const animation7={cursor:\"grabbing\"};const animation8={opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-90};const transition5={damping:40,delay:.3,mass:4.7,stiffness:232,type:\"spring\"};const animation9={opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:-90};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-100};const transition6={damping:40,delay:.3,mass:4.1,stiffness:232,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:-100};const transition7={damping:40,delay:.3,mass:10,stiffness:232,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:-100};const animation13={opacity:1,rotate:50,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-120};const animation14={opacity:1,rotate:50,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:-120};const animation15={opacity:1,rotate:-17,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-132};const animation16={opacity:1,rotate:-17,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:-132};const animation17={opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-130};const animation18={opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:-130};const animation19={opacity:1,rotate:24,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-140};const animation20={opacity:1,rotate:24,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:-140};const animation21={opacity:1,rotate:18,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const animation22={opacity:1,rotate:18,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:-150};const animation23={opacity:1,rotate:-33,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-110};const animation24={opacity:1,rotate:-33,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:-110};const animation25={opacity:1,rotate:-10,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-120};const animation26={opacity:1,rotate:-10,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:-120};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop-Wide\":\"OwNhynIYY\",Phone:\"P7j2A2OCI\",Tablet:\"WgNeKo_y1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"OwNhynIYY\"};};const cursor={component:Cursor,variant:\"oyYqst7s4\"};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,bUC28knVO,kwSYrqJyJ,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"jGFDk87Dh\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"MERXQpASN\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"vTTUKTKEu\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"XeAeqwWZC\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"rZyCoDj_M\");const ref5=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"P7j2A2OCI\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"P7j2A2OCI\")return true;return false;};const elementId5=useRouteElementId(\"ty2_oh6O2\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"om1250aoL\");const ref7=React.useRef(null);useCustomCursors({\"1bt7898\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"OwNhynIYY\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(0, 0, 0)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-hvzz3m\",className),\"data-framer-cursor\":\"1bt7898\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-123wqig\",\"data-framer-name\":\"Background\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bsjpkg\",\"data-framer-name\":\"Overlay\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ne3cqe-container\",isAuthoredByUser:true,isModuleExternal:true,layoutScroll:true,nodeId:\"uJPrb4EIT\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Pattern,{back:\"var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(0, 0, 0))\",diagonal:true,direction:\"left\",duration:5,front:\"rgb(23, 23, 23)\",height:\"100%\",id:\"uJPrb4EIT\",layoutId:\"uJPrb4EIT\",patternType:\"groovy\",radius:0,scale:54,shouldAnimate:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-icz1s2-container\",layoutScroll:true,nodeId:\"qucQ2rL9C\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{variant:\"qckzdw_18\"},WgNeKo_y1:{variant:\"qckzdw_18\"}},children:/*#__PURE__*/_jsx(NavigationBar,{gGSU0bs4G:\"jcV_yFltq\",height:\"100%\",id:\"qucQ2rL9C\",layoutId:\"qucQ2rL9C\",style:{width:\"100%\"},variant:\"lzTpoNZtf\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{height:106,y:896}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,width:componentViewport?.width||\"100vw\",y:926,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9x07u-container\",layoutScroll:true,nodeId:\"cPYxlhfxU\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(FooterStrip,{height:\"100%\",id:\"cPYxlhfxU\",layoutId:\"cPYxlhfxU\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1ma85oo\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-j1yqbq\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-j4z2v\",\"data-framer-name\":\"Hero Heading Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4w8l5h\",\"data-framer-name\":\"Heading & Subheading\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fo77gx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-m5rh52\",\"data-styles-preset\":\"hwFxtQiSW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Welcome to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"68px\"},children:/*#__PURE__*/_jsx(\"br\",{})})]})}),className:\"framer-jbkn8z\",fonts:[\"Inter\"],id:elementId,ref:ref1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-r4ysuh\",style:{rotate:3},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-m5rh52\",\"data-styles-preset\":\"hwFxtQiSW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(10, 10, 10))\"},children:\"PadhleAkshay\"})}),className:\"framer-n2iyub\",fonts:[\"Inter\"],id:elementId1,ref:ref2,style:{rotate:-3},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-smtg16\",\"data-styles-preset\":\"DuMLJ2VUN\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Padhleakshay has become a trusted source of belief for millions of students since the 2020 Boards Examinations after he provided the best possible notes and a set of all important questions designed by himself and his team to all the CBSE students via his YouTube channel Padhle (@Padhleakshay). Since then, the channel has been producing  CBSE Toppers every year.\"})}),className:\"framer-1c0jjav\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:{hash:\":XeAeqwWZC\",webPageId:\"yd7nMFDHh\"},motionChild:true,nodeId:\"R3KwVGiCW\",openInNewTab:false,scopeId:\"yd7nMFDHh\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1v0fo4u framer-k7qaoj\",\"data-border\":true,\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cw8kqr\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-text-transform\":\"uppercase\"},children:\"Select Your Class\"})}),className:\"framer-1hzlvm\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w2z4jf\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wmb9rv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"R3KwVGiCWtK6YDksjs\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:45},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"R3KwVGiCWtK6YDksjs\",layoutId:\"R3KwVGiCWtK6YDksjs\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o63r6a-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uf5zmnlx6\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{alignment:\"flex-start\"}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"uf5zmnlx6\",layoutId:\"uf5zmnlx6\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1732,intrinsicWidth:1732,pixelHeight:2380,pixelWidth:2380,sizes:\"320px\",src:\"https://framerusercontent.com/images/8MlDMp5N0D5mj7LDn7dwZ96elU.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/8MlDMp5N0D5mj7LDn7dwZ96elU.png?scale-down-to=512 512w,https://framerusercontent.com/images/8MlDMp5N0D5mj7LDn7dwZ96elU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8MlDMp5N0D5mj7LDn7dwZ96elU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8MlDMp5N0D5mj7LDn7dwZ96elU.png 2380w\"},className:\"framer-npr9dt\",\"data-framer-name\":\"Picsart_24_06_24_21_20_25_387\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1732,intrinsicWidth:1732,pixelHeight:2380,pixelWidth:2380,sizes:\"320px\",src:\"https://framerusercontent.com/images/k7vTWoU4e04TIgx8hi3KNPZyMBE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/k7vTWoU4e04TIgx8hi3KNPZyMBE.png?scale-down-to=512 512w,https://framerusercontent.com/images/k7vTWoU4e04TIgx8hi3KNPZyMBE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/k7vTWoU4e04TIgx8hi3KNPZyMBE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/k7vTWoU4e04TIgx8hi3KNPZyMBE.png 2380w\"},className:\"framer-1v6ikjb\",\"data-framer-name\":\"Picsart_24_06_24_21_13_38_406\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1732,intrinsicWidth:1732,pixelHeight:2380,pixelWidth:2380,sizes:\"320px\",src:\"https://framerusercontent.com/images/LJnWQE7BBvociNpF0NVKNxBTg.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/LJnWQE7BBvociNpF0NVKNxBTg.png?scale-down-to=512 512w,https://framerusercontent.com/images/LJnWQE7BBvociNpF0NVKNxBTg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LJnWQE7BBvociNpF0NVKNxBTg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/LJnWQE7BBvociNpF0NVKNxBTg.png 2380w\"},className:\"framer-10sgllq\",\"data-framer-name\":\"Picsart_24_06_24_21_18_50_868\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1732,intrinsicWidth:1732,pixelHeight:2380,pixelWidth:2380,sizes:\"320px\",src:\"https://framerusercontent.com/images/8aP6fH8ZPJ7Fx7w8RgCq4tSlsfQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/8aP6fH8ZPJ7Fx7w8RgCq4tSlsfQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/8aP6fH8ZPJ7Fx7w8RgCq4tSlsfQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8aP6fH8ZPJ7Fx7w8RgCq4tSlsfQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8aP6fH8ZPJ7Fx7w8RgCq4tSlsfQ.png 2380w\"},className:\"framer-1kis7qc\",\"data-framer-name\":\"Picsart_24_06_24_21_17_22_577\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1732,intrinsicWidth:1732,pixelHeight:2380,pixelWidth:2380,sizes:\"320px\",src:\"https://framerusercontent.com/images/xylkew77DR1thtxHWMSZDB2EDZI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/xylkew77DR1thtxHWMSZDB2EDZI.png?scale-down-to=512 512w,https://framerusercontent.com/images/xylkew77DR1thtxHWMSZDB2EDZI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xylkew77DR1thtxHWMSZDB2EDZI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xylkew77DR1thtxHWMSZDB2EDZI.png 2380w\"},className:\"framer-hhormq\",\"data-framer-name\":\"Picsart_24_06_24_21_17_22_577\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1732,intrinsicWidth:1732,pixelHeight:2380,pixelWidth:2380,sizes:\"320px\",src:\"https://framerusercontent.com/images/Dz3wTTJlg608mYmAg6J9elmg0lg.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Dz3wTTJlg608mYmAg6J9elmg0lg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Dz3wTTJlg608mYmAg6J9elmg0lg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Dz3wTTJlg608mYmAg6J9elmg0lg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Dz3wTTJlg608mYmAg6J9elmg0lg.png 2380w\"},className:\"framer-1agq9i8\",\"data-framer-name\":\"Picsart_24_06_24_21_17_22_577\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1732,intrinsicWidth:1732,pixelHeight:2380,pixelWidth:2380,sizes:\"320px\",src:\"https://framerusercontent.com/images/4nPs2PgYSTKmllzzSZS47UHDok.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/4nPs2PgYSTKmllzzSZS47UHDok.png?scale-down-to=512 512w,https://framerusercontent.com/images/4nPs2PgYSTKmllzzSZS47UHDok.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4nPs2PgYSTKmllzzSZS47UHDok.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4nPs2PgYSTKmllzzSZS47UHDok.png 2380w\"},className:\"framer-1tufv8m\",\"data-framer-name\":\"Picsart_24_06_24_21_17_22_577\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1urq87d\",\"data-framer-name\":\"Background Gradient\"}),/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:931,intrinsicWidth:1500},className:\"framer-1sk6zfr\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-m94qqz\",\"data-framer-name\":\"Gradient Overlay\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d4gaqj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EzdrIZE62\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:50,height:\"100%\",hoverFactor:1,id:\"EzdrIZE62\",layoutId:\"EzdrIZE62\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gfdqz2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"96px\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"PadhleAkshay\"})}),className:\"framer-1jdzw5z\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xv6dxv\",\"data-framer-name\":\"About\",id:elementId2,ref:ref3,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1333,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+932+0),pixelHeight:2895,pixelWidth:6e3,src:\"https://framerusercontent.com/images/SmT5tsBFtT8h41YUEQSWBxMLk.png?scale-down-to=1024\"},className:\"framer-b8yios\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-se0ayk\",\"data-framer-name\":\"Overlay\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fav9ul\",\"data-framer-name\":\"Statistics\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h9wx7j\",\"data-framer-name\":\"Statistics\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:(componentViewport?.y||0)+0+0+0+932+50+0+0+0+0},WgNeKo_y1:{y:(componentViewport?.y||0)+0+0+0+932+80+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:187,y:(componentViewport?.y||0)+0+0+0+932+40+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:212,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:70}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1oql35u-container\",nodeId:\"tPYNoB5bI\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Stats,{height:\"100%\",id:\"tPYNoB5bI\",layoutId:\"tPYNoB5bI\",ODC_810_T:\"4+ \",width:\"100%\",WmbsVaIgS:\"Successful years\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:(componentViewport?.y||0)+0+0+0+932+50+0+0+0+0},WgNeKo_y1:{y:(componentViewport?.y||0)+0+0+0+932+80+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:187,y:(componentViewport?.y||0)+0+0+0+932+40+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1azo9qp-container\",nodeId:\"iedHy9ZNQ\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Stats,{height:\"100%\",id:\"iedHy9ZNQ\",layoutId:\"iedHy9ZNQ\",ODC_810_T:\"12 Cr+\",width:\"100%\",WmbsVaIgS:\" views\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:(componentViewport?.y||0)+0+0+0+932+50+0+0+0+218},WgNeKo_y1:{y:(componentViewport?.y||0)+0+0+0+932+80+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:187,y:(componentViewport?.y||0)+0+0+0+932+40+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:212,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:70}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-113fw0w-container\",nodeId:\"GLSOJyWG4\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Stats,{height:\"100%\",id:\"GLSOJyWG4\",layoutId:\"GLSOJyWG4\",ODC_810_T:\"1M+\",width:\"100%\",WmbsVaIgS:\"Subscribers\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:(componentViewport?.y||0)+0+0+0+932+50+0+0+0+218},WgNeKo_y1:{y:(componentViewport?.y||0)+0+0+0+932+80+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:187,y:(componentViewport?.y||0)+0+0+0+932+40+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lxh66i-container\",nodeId:\"HlZ2U1_Pw\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Stats,{height:\"100%\",id:\"HlZ2U1_Pw\",layoutId:\"HlZ2U1_Pw\",ODC_810_T:\"1 lakh+\",width:\"100%\",WmbsVaIgS:\" Toppers produced\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:(componentViewport?.y||0)+0+0+0+932+50+505},WgNeKo_y1:{y:(componentViewport?.y||0)+0+0+0+932+80+327.963}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+0+0+0+932+40+397.963,children:/*#__PURE__*/_jsx(Container,{className:\"framer-908kvu-container\",nodeId:\"xzZz0va55\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{variant:\"YVt9h3DM_\"}},children:/*#__PURE__*/_jsx(Button,{AIYkLNyqb:\"Join Our Community For Free\",height:\"100%\",id:\"xzZz0va55\",layoutId:\"xzZz0va55\",variant:\"VYn33lVMS\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1587),pixelHeight:4e3,pixelWidth:5328,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/fCZWH4S1tnBigHFo8FoqH2JOc4Q.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/fCZWH4S1tnBigHFo8FoqH2JOc4Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fCZWH4S1tnBigHFo8FoqH2JOc4Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fCZWH4S1tnBigHFo8FoqH2JOc4Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/fCZWH4S1tnBigHFo8FoqH2JOc4Q.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/fCZWH4S1tnBigHFo8FoqH2JOc4Q.jpg 5328w\"}},WgNeKo_y1:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1469.963),pixelHeight:4e3,pixelWidth:5328,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/fCZWH4S1tnBigHFo8FoqH2JOc4Q.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/fCZWH4S1tnBigHFo8FoqH2JOc4Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fCZWH4S1tnBigHFo8FoqH2JOc4Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fCZWH4S1tnBigHFo8FoqH2JOc4Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/fCZWH4S1tnBigHFo8FoqH2JOc4Q.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/fCZWH4S1tnBigHFo8FoqH2JOc4Q.jpg 5328w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"header\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1469.963),pixelHeight:4e3,pixelWidth:5328,positionX:\"center\",positionY:\"center\",sizes:\"779px\",src:\"https://framerusercontent.com/images/fCZWH4S1tnBigHFo8FoqH2JOc4Q.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/fCZWH4S1tnBigHFo8FoqH2JOc4Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fCZWH4S1tnBigHFo8FoqH2JOc4Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fCZWH4S1tnBigHFo8FoqH2JOc4Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/fCZWH4S1tnBigHFo8FoqH2JOc4Q.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/fCZWH4S1tnBigHFo8FoqH2JOc4Q.jpg 5328w\"},className:\"framer-b65g9w\",\"data-framer-name\":\"Header Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:(componentViewport?.y||0)+0+0+0+1888},WgNeKo_y1:{y:(componentViewport?.y||0)+0+0+0+2069.963}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,y:(componentViewport?.y||0)+0+0+0+2054.963,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bmjcpe-container\",nodeId:\"E9fVGDByl\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Heading,{ExBt4bIY2:\"OUR BATCHES/BOOKS\",GqTmcaQLx:\"BATCHES\",height:\"100%\",id:\"E9fVGDByl\",kAHPdHlCh:\"\",layoutId:\"E9fVGDByl\",NlGfzfEF2:true,p1KubWiKz:false,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"KJ1G3Id0e\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1593082-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hFKBL14EV\",scopeId:\"yd7nMFDHh\",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:20,height:\"100%\",id:\"hFKBL14EV\",layoutId:\"hFKBL14EV\",padding:10,paddingBottom:30,paddingLeft:0,paddingPerSide:true,paddingRight:10,paddingTop:30,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__*/_jsxs(motion.div,{className:\"framer-qql7gy\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lsuewo\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12xr15i\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"profile image\",fit:\"fit\",intrinsicHeight:4082,intrinsicWidth:6016,pixelHeight:1316,pixelWidth:2370,positionX:\"left\",positionY:\"top\",sizes:\"321px\",src:\"https://framerusercontent.com/images/9PH9iXNPNRTEoHXveoUbyZ8ccI.png\",srcSet:\"https://framerusercontent.com/images/9PH9iXNPNRTEoHXveoUbyZ8ccI.png?scale-down-to=512 512w,https://framerusercontent.com/images/9PH9iXNPNRTEoHXveoUbyZ8ccI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9PH9iXNPNRTEoHXveoUbyZ8ccI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9PH9iXNPNRTEoHXveoUbyZ8ccI.png 2370w\"},className:\"framer-1pmcnky\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j75io\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Class 11th\"})})})}),className:\"framer-usq5ry\",fonts:[\"GF;Inter-600\",\"GF;Inter-900\",\"GF;Inter-900italic\",\"GF;Inter-600italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://padhleakshay.page.link/urWmzhJZc5yTPJrf6\",motionChild:true,nodeId:\"x96TQL8vS\",openInNewTab:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-rxr654 framer-k7qaoj\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-pncfiz\",\"data-border\":true,\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-htzfal\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-text-transform\":\"uppercase\"},children:\"Buy Now\"})}),className:\"framer-1v0n7wl\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p969gh\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16dkulk-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"s2_5H2Ud7\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:45},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"s2_5H2Ud7\",layoutId:\"s2_5H2Ud7\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sitjoj\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16dexx5\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"profile image\",fit:\"fit\",intrinsicHeight:4082,intrinsicWidth:6016,pixelHeight:1440,pixelWidth:2560,positionX:\"left\",positionY:\"top\",sizes:\"321px\",src:\"https://framerusercontent.com/images/oevgpvalWYreqc0KC2Vj4KOQ1Ww.png\",srcSet:\"https://framerusercontent.com/images/oevgpvalWYreqc0KC2Vj4KOQ1Ww.png?scale-down-to=512 512w,https://framerusercontent.com/images/oevgpvalWYreqc0KC2Vj4KOQ1Ww.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oevgpvalWYreqc0KC2Vj4KOQ1Ww.png 1599w\"},className:\"framer-1tax6u4\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vsy7o3\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Full Class 10th in 1 E-Book\"})})})}),className:\"framer-5zlgdl\",fonts:[\"GF;Inter-600\",\"GF;Inter-900\",\"GF;Inter-900italic\",\"GF;Inter-600italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://padhleakshay.page.link/RvVdZ6hpVC12DTTM7\",motionChild:true,nodeId:\"F59vXr_tY\",openInNewTab:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1f6vsv0 framer-k7qaoj\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1es3vbt\",\"data-border\":true,\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9lp0so\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-text-transform\":\"uppercase\"},children:\"Buy Now\"})}),className:\"framer-686gef\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y8xkc3\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rtmam3-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"n7FEMTgbb\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:45},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"n7FEMTgbb\",layoutId:\"n7FEMTgbb\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x98tfq\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18wp84z\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"profile image\",fit:\"fit\",intrinsicHeight:4082,intrinsicWidth:6016,pixelHeight:1440,pixelWidth:2560,positionX:\"center\",positionY:\"bottom\",sizes:\"321px\",src:\"https://framerusercontent.com/images/wWcyD96G2f3Wb5akgwlBgfFvJA4.png\",srcSet:\"https://framerusercontent.com/images/wWcyD96G2f3Wb5akgwlBgfFvJA4.png?scale-down-to=512 512w,https://framerusercontent.com/images/wWcyD96G2f3Wb5akgwlBgfFvJA4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wWcyD96G2f3Wb5akgwlBgfFvJA4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wWcyD96G2f3Wb5akgwlBgfFvJA4.png 2560w\"},className:\"framer-1j5stb7\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-snp4xa\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"CLASS 10th-99 Pages e-Book [Combo Pack]\"})}),className:\"framer-ynajcg\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://padhleakshay.classx.co.in/new-courses/30-class-10th-99-pages-e-book-combo-pack\",motionChild:true,nodeId:\"lQ3yU9Nop\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-k1ehvy framer-k7qaoj\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-3cy87n\",\"data-border\":true,\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-nme5kn\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-text-transform\":\"uppercase\"},children:\"Buy Now\"})}),className:\"framer-1rxj6vf\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13i150l\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e2xw15-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DDAMxjQrr\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:45},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"DDAMxjQrr\",layoutId:\"DDAMxjQrr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eeangb\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vb25b9\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"profile image\",fit:\"fit\",intrinsicHeight:4082,intrinsicWidth:6016,pixelHeight:1440,pixelWidth:2560,positionX:\"center\",positionY:\"bottom\",sizes:\"321px\",src:\"https://framerusercontent.com/images/dwK7S4rdOZhl8h8ipOQKV0SwnI.png\",srcSet:\"https://framerusercontent.com/images/dwK7S4rdOZhl8h8ipOQKV0SwnI.png?scale-down-to=512 512w,https://framerusercontent.com/images/dwK7S4rdOZhl8h8ipOQKV0SwnI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dwK7S4rdOZhl8h8ipOQKV0SwnI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/dwK7S4rdOZhl8h8ipOQKV0SwnI.png 2560w\"},className:\"framer-maehsp\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xb6dai\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"CLASS 11th-199 Pages e-Book\"})}),className:\"framer-1axq0jf\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://padhleakshay.classx.co.in/new-courses/44-class-11th-199-pages-e-book-physicschemistrymathematicsbiology\",motionChild:true,nodeId:\"lwfAAAFtJ\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1r2f2rz framer-k7qaoj\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-qnrkt5\",\"data-border\":true,\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yfewx9\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-text-transform\":\"uppercase\"},children:\"Buy Now\"})}),className:\"framer-zupv7w\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dr98w\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cspl1t-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tmH5GyIgk\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:45},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"tmH5GyIgk\",layoutId:\"tmH5GyIgk\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yl9ppv\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9hpo1d\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-4af5hh\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"profile image\",fit:\"fit\",intrinsicHeight:4082,intrinsicWidth:6016,pixelHeight:1440,pixelWidth:2560,positionX:\"center\",positionY:\"bottom\",sizes:\"321px\",src:\"https://framerusercontent.com/images/KjjkFu78RKpBjva2ZkuyQRW7kc.png\",srcSet:\"https://framerusercontent.com/images/KjjkFu78RKpBjva2ZkuyQRW7kc.png?scale-down-to=512 512w,https://framerusercontent.com/images/KjjkFu78RKpBjva2ZkuyQRW7kc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KjjkFu78RKpBjva2ZkuyQRW7kc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/KjjkFu78RKpBjva2ZkuyQRW7kc.png 2560w\"},className:\"framer-1xwq0wz\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vrpnku\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Class 11 Full CLASS 11th-199 Pages (PCM)\"})}),className:\"framer-s47nuj\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://padhleakshay.classx.co.in/new-courses/43-class-11th-199-pages-e-book-physicschemistrymathematics\",motionChild:true,nodeId:\"r8Or7Nv7_\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-b4spsv framer-k7qaoj\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-nlcksc\",\"data-border\":true,\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-aj49dy\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-text-transform\":\"uppercase\"},children:\"Buy Now\"})}),className:\"framer-2zowze\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-isq4o5\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15apwze-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"biVW1AmRm\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:45},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"biVW1AmRm\",layoutId:\"biVW1AmRm\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ykg6zg\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d2y66p\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"profile image\",fit:\"fit\",intrinsicHeight:4082,intrinsicWidth:6016,pixelHeight:1440,pixelWidth:2560,positionX:\"center\",positionY:\"bottom\",sizes:\"321px\",src:\"https://framerusercontent.com/images/3JIkHxFaVKvdb2gT5C4lxPgj2IE.png\",srcSet:\"https://framerusercontent.com/images/3JIkHxFaVKvdb2gT5C4lxPgj2IE.png?scale-down-to=512 512w,https://framerusercontent.com/images/3JIkHxFaVKvdb2gT5C4lxPgj2IE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3JIkHxFaVKvdb2gT5C4lxPgj2IE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3JIkHxFaVKvdb2gT5C4lxPgj2IE.png 2560w\"},className:\"framer-fdk6gf\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c4azg0\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"CLASS 11th-199 Pages e-Book(PCB)\"})}),className:\"framer-5cur3a\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://padhleakshay.classx.co.in/new-courses/42-class-11th-199-pages-e-book-physicschemistrybiology\",motionChild:true,nodeId:\"rsHgRT7d_\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ublfdq framer-k7qaoj\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-njhisf\",\"data-border\":true,\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-568lrc\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-text-transform\":\"uppercase\"},children:\"Buy Now\"})}),className:\"framer-1c0qg7i\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16o6o2u\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-134bbje-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BVxTqUw1B\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:45},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"BVxTqUw1B\",layoutId:\"BVxTqUw1B\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c6yjsm\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n9wr65\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"profile image\",fit:\"fit\",intrinsicHeight:4082,intrinsicWidth:6016,pixelHeight:1949,pixelWidth:3464,positionX:\"center\",positionY:\"bottom\",sizes:\"321px\",src:\"https://framerusercontent.com/images/uRZSb3xE0DHRV06xJwojS5UeI.jpeg\",srcSet:\"https://framerusercontent.com/images/uRZSb3xE0DHRV06xJwojS5UeI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/uRZSb3xE0DHRV06xJwojS5UeI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uRZSb3xE0DHRV06xJwojS5UeI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/uRZSb3xE0DHRV06xJwojS5UeI.jpeg 3464w\"},className:\"framer-sjskbw\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-abai52\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"ALL SUBJECT KOTA NEET NOTES\"})}),className:\"framer-1pg0coe\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://padhleakshay.classx.co.in/new-courses/26-all-subject-kota-neet-notes\",motionChild:true,nodeId:\"vUlQODwtA\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1vl6xir framer-k7qaoj\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1ph9rsq\",\"data-border\":true,\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cr4iay\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-text-transform\":\"uppercase\"},children:\"Buy Now\"})}),className:\"framer-epvvmx\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gscd9m\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pqu8yu-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NRv6o5oes\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:45},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"NRv6o5oes\",layoutId:\"NRv6o5oes\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vdjuf4\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18op1tj\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"profile image\",fit:\"fit\",intrinsicHeight:4082,intrinsicWidth:6016,pixelHeight:1949,pixelWidth:3464,positionX:\"center\",positionY:\"bottom\",sizes:\"321px\",src:\"https://framerusercontent.com/images/hna2wv8Cm8MD41u9QofylvKq8E.jpg\",srcSet:\"https://framerusercontent.com/images/hna2wv8Cm8MD41u9QofylvKq8E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hna2wv8Cm8MD41u9QofylvKq8E.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hna2wv8Cm8MD41u9QofylvKq8E.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hna2wv8Cm8MD41u9QofylvKq8E.jpg 3464w\"},className:\"framer-2duh4y\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-coxzqb\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"CLASS 11th-199 Pages e-Book (SCIENCE)\"})}),className:\"framer-ua9zgk\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://padhleakshay.classx.co.in/new-courses/31-class-10th-99-pages-e-book-science\",motionChild:true,nodeId:\"uoti29MI0\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-kao027 framer-k7qaoj\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-9v8k96\",\"data-border\":true,\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v4tf4p\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-text-transform\":\"uppercase\"},children:\"Buy Now\"})}),className:\"framer-1ksl8hn\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jf4s1\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fbyf2u-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"eSFaIA6WJ\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:45},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"eSFaIA6WJ\",layoutId:\"eSFaIA6WJ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hty5hu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-106w6mt\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1moi5jy\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"profile image\",fit:\"fit\",intrinsicHeight:4082,intrinsicWidth:6016,pixelHeight:1949,pixelWidth:3464,positionX:\"center\",positionY:\"bottom\",sizes:\"321px\",src:\"https://framerusercontent.com/images/otvCBSTXgAkrNxMGcDps5vZfpLw.jpeg\",srcSet:\"https://framerusercontent.com/images/otvCBSTXgAkrNxMGcDps5vZfpLw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/otvCBSTXgAkrNxMGcDps5vZfpLw.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/otvCBSTXgAkrNxMGcDps5vZfpLw.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/otvCBSTXgAkrNxMGcDps5vZfpLw.jpeg 3464w\"},className:\"framer-tg5sb9\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ju4aho\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"All Subject JEE KOTA Notes\"})}),className:\"framer-1fqzi28\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://padhleakshay.classx.co.in/new-courses/14-all-subject-jee-kota-notes\",motionChild:true,nodeId:\"EE2bWCxe9\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1a8vaqq framer-k7qaoj\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-141e2dg\",\"data-border\":true,\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-n9r3ys\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-text-transform\":\"uppercase\"},children:\"Buy Now\"})}),className:\"framer-xc3jq1\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bw3bnc\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-larxw8-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"HxCpTEESg\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:45},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"HxCpTEESg\",layoutId:\"HxCpTEESg\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ba9hb7\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uqacns\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"profile image\",fit:\"fit\",intrinsicHeight:4082,intrinsicWidth:6016,pixelHeight:1949,pixelWidth:3464,positionX:\"center\",positionY:\"bottom\",sizes:\"321px\",src:\"https://framerusercontent.com/images/n0p4EIwgoZtpl2ZfzS4mwu9lo.jpg\",srcSet:\"https://framerusercontent.com/images/n0p4EIwgoZtpl2ZfzS4mwu9lo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/n0p4EIwgoZtpl2ZfzS4mwu9lo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/n0p4EIwgoZtpl2ZfzS4mwu9lo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/n0p4EIwgoZtpl2ZfzS4mwu9lo.jpg 3464w\"},className:\"framer-1ksjnsh\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-okqyj5\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"CLASS 10th-99 Pages e-Book [MATHEMATICS]\"})}),className:\"framer-121z5zm\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://padhleakshay.classx.co.in/new-courses/33-class-10th-99-pages-e-book-mathematics\",motionChild:true,nodeId:\"W60Weukf1\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-10ncij1 framer-k7qaoj\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1pzvs66\",\"data-border\":true,\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m4sej4\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-text-transform\":\"uppercase\"},children:\"Buy Now\"})}),className:\"framer-1l10toc\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tnyvgn\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hwo01t-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FkLqSjT75\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:45},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"FkLqSjT75\",layoutId:\"FkLqSjT75\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5n556l\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-109wq8l\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"profile image\",fit:\"fit\",intrinsicHeight:4082,intrinsicWidth:6016,pixelHeight:1949,pixelWidth:3464,positionX:\"center\",positionY:\"bottom\",sizes:\"321px\",src:\"https://framerusercontent.com/images/hna2wv8Cm8MD41u9QofylvKq8E.jpg\",srcSet:\"https://framerusercontent.com/images/hna2wv8Cm8MD41u9QofylvKq8E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hna2wv8Cm8MD41u9QofylvKq8E.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hna2wv8Cm8MD41u9QofylvKq8E.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hna2wv8Cm8MD41u9QofylvKq8E.jpg 3464w\"},className:\"framer-21agx8\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mfg2fo\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"CLASS 10th-99 Pages e-Book [SOCIAL SCIENCE]\"})}),className:\"framer-y38d6s\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2i5ntu\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-eq1ej1\",\"data-border\":true,\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l6mrv\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-text-transform\":\"uppercase\"},children:\"Buy Now\"})}),className:\"framer-t7h4ui\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4aln0o\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1069cjb-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zIkFnOmBG\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:45},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"zIkFnOmBG\",layoutId:\"zIkFnOmBG\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12y3xi4\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mn06ky\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3a3xzy\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"profile image\",fit:\"fit\",intrinsicHeight:4082,intrinsicWidth:6016,pixelHeight:1949,pixelWidth:3464,positionX:\"center\",positionY:\"bottom\",sizes:\"321px\",src:\"https://framerusercontent.com/images/7QdHEieiCeXD1XaUbqNRoG9ix2Q.jpeg\",srcSet:\"https://framerusercontent.com/images/7QdHEieiCeXD1XaUbqNRoG9ix2Q.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/7QdHEieiCeXD1XaUbqNRoG9ix2Q.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7QdHEieiCeXD1XaUbqNRoG9ix2Q.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7QdHEieiCeXD1XaUbqNRoG9ix2Q.jpeg 3464w\"},className:\"framer-11pwaok\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17k6gkv\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"CLASS 11th-199 Pages e-Book (CHEMISTRY) \"})}),className:\"framer-1taikky\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://padhleakshay.classx.co.in/new-courses/39-class-11th-199-pages-e-book-chemistry\",motionChild:true,nodeId:\"oBrnY2Qbw\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-12k7d21 framer-k7qaoj\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-fn8m35\",\"data-border\":true,\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10hbduz\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-text-transform\":\"uppercase\"},children:\"Buy Now\"})}),className:\"framer-1021p5t\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t53mt3\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-aqmhks-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"V4wjNoxln\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:45},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"V4wjNoxln\",layoutId:\"V4wjNoxln\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5olfbg\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xfllyn\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"profile image\",fit:\"fit\",intrinsicHeight:4082,intrinsicWidth:6016,pixelHeight:1949,pixelWidth:3464,positionX:\"center\",positionY:\"bottom\",sizes:\"321px\",src:\"https://framerusercontent.com/images/dLQTs69sNhZrhD1Dy3zvheZNg.jpeg\",srcSet:\"https://framerusercontent.com/images/dLQTs69sNhZrhD1Dy3zvheZNg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/dLQTs69sNhZrhD1Dy3zvheZNg.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dLQTs69sNhZrhD1Dy3zvheZNg.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dLQTs69sNhZrhD1Dy3zvheZNg.jpeg 3464w\"},className:\"framer-pub1rd\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-avb1up\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"CLASS 11th-199 Pages e-Book (MATHS)\"})}),className:\"framer-5sdw2h\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://padhleakshay.classx.co.in/new-courses/38-class-11th-199-pages-e-book-mathematics\",motionChild:true,nodeId:\"F1lBnm8jB\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-dhwg4y framer-k7qaoj\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-qqnhdz\",\"data-border\":true,\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a3f8sx\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-text-transform\":\"uppercase\"},children:\"Buy Now\"})}),className:\"framer-1kcqm5v\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ugawt5\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-v1wjgi-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qscUGdadh\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:45},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"qscUGdadh\",layoutId:\"qscUGdadh\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fbbo50\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-wro1r3\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"profile image\",fit:\"fit\",intrinsicHeight:4082,intrinsicWidth:6016,pixelHeight:1949,pixelWidth:3464,positionX:\"center\",positionY:\"bottom\",sizes:\"321px\",src:\"https://framerusercontent.com/images/BL5efp7YSIj73FJnCFAJore6fA.jpeg\",srcSet:\"https://framerusercontent.com/images/BL5efp7YSIj73FJnCFAJore6fA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/BL5efp7YSIj73FJnCFAJore6fA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BL5efp7YSIj73FJnCFAJore6fA.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BL5efp7YSIj73FJnCFAJore6fA.jpeg 3464w\"},className:\"framer-u202kc\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kvp7ab\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"CLASS 11th-199 Pages e-Book (PHYSICS)\"})}),className:\"framer-ww59ow\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://padhleakshay.classx.co.in/new-courses/40-class-11th-199-pages-e-book-physics\",motionChild:true,nodeId:\"ea9xPIIR4\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-nxc2rn framer-k7qaoj\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1obv2f1\",\"data-border\":true,\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hygtwj\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-text-transform\":\"uppercase\"},children:\"Buy Now\"})}),className:\"framer-ofnzmn\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qzalco\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aku4wl-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ea9xPIIR4h3dCK2sW_tK6YDksjs\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:45},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"ea9xPIIR4h3dCK2sW_tK6YDksjs\",layoutId:\"ea9xPIIR4h3dCK2sW_tK6YDksjs\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v58hw1\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1750n0d\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1419uxu\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"profile image\",fit:\"fit\",intrinsicHeight:4082,intrinsicWidth:6016,pixelHeight:1949,pixelWidth:3464,positionX:\"center\",positionY:\"bottom\",sizes:\"321px\",src:\"https://framerusercontent.com/images/rZrBhig5UB0iwTwuuX9ikk9fQeY.jpeg\",srcSet:\"https://framerusercontent.com/images/rZrBhig5UB0iwTwuuX9ikk9fQeY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/rZrBhig5UB0iwTwuuX9ikk9fQeY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rZrBhig5UB0iwTwuuX9ikk9fQeY.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rZrBhig5UB0iwTwuuX9ikk9fQeY.jpeg 3464w\"},className:\"framer-f287kt\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fyh0ls\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"CLASS 11th-199 Pages e-Book (BIOLOGY) \"})}),className:\"framer-tn3cyz\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://padhleakshay.classx.co.in/new-courses/41-class-11th-199-pages-e-book-biology\",motionChild:true,nodeId:\"S6fZARTWz\",openInNewTab:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-43khsa framer-k7qaoj\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1b785i3\",\"data-border\":true,\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-swhxxw\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-text-transform\":\"uppercase\"},children:\"Buy Now\"})}),className:\"framer-ram04e\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-r9zw4s\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hpijnb-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"I4mlTHSsT\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:45},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"I4mlTHSsT\",layoutId:\"I4mlTHSsT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})})]})]})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:(componentViewport?.y||0)+0+0+0+2207},WgNeKo_y1:{y:(componentViewport?.y||0)+0+0+0+2388.963}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,y:(componentViewport?.y||0)+0+0+0+2373.963,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uwyxl9-container\",id:elementId3,nodeId:\"XeAeqwWZC\",ref:ref4,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Heading,{ExBt4bIY2:\"SELECT CLASSES\",GqTmcaQLx:\"CLASSES\",height:\"100%\",id:\"XeAeqwWZC\",kAHPdHlCh:\"\",layoutId:\"XeAeqwWZC\",NlGfzfEF2:true,p1KubWiKz:false,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"KJ1G3Id0e\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y3wopw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"pAelcoT46\",scopeId:\"yd7nMFDHh\",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:20,height:\"100%\",id:\"pAelcoT46\",layoutId:\"pAelcoT46\",padding:10,paddingBottom:30,paddingLeft:0,paddingPerSide:true,paddingRight:10,paddingTop:30,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__*/_jsxs(motion.div,{className:\"framer-9bpgvr\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-125mwbz\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:250,pixelWidth:251,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/lstrWzYXgdxv7ns3KsjZ0OxM.png\"},className:\"framer-uztxd0\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kzdrrm\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"53px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Class 9\"})}),className:\"framer-wpsr55\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://padhleakshay.classx.co.in/free-courses/8/content\",motionChild:true,nodeId:\"Zo8ffROI3\",openInNewTab:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-10x8h78 framer-k7qaoj\",\"data-border\":true,\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15gqme9\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-text-transform\":\"uppercase\"},children:\"Let's Begin\"})}),className:\"framer-8l0dsu\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t4q3jk\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jbanww-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"QFaK38Z03\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:45},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"QFaK38Z03\",layoutId:\"QFaK38Z03\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9csvth\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/60Aeg5bCLRZP9Q6TRvI5JLgKHc.png\"},className:\"framer-1vj0kh7\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f572zx\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"53px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Class 10\"})}),className:\"framer-18q2s0o\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://padhleakshay.classx.co.in/free-courses/1/content\",motionChild:true,nodeId:\"MW3ydwGof\",openInNewTab:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-105a0iq framer-k7qaoj\",\"data-border\":true,\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-44eog3\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-text-transform\":\"uppercase\"},children:\"Let's Begin\"})}),className:\"framer-12qleue\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nksz9q\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9yahb6-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"bYBl4M_I1\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:45},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"bYBl4M_I1\",layoutId:\"bYBl4M_I1\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fbnk87\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nbTIbAJ8i1mNAPZUFsYJKFuJzs.png\"},className:\"framer-1pdg233\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-elbi2r\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"53px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Class 11\"})}),className:\"framer-1uo8ns6\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://padhleakshay.classx.co.in/free-courses/9/content\",motionChild:true,nodeId:\"ygMtwbWdG\",openInNewTab:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-k7x900 framer-k7qaoj\",\"data-border\":true,\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jizksz\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-text-transform\":\"uppercase\"},children:\"Let's Begin\"})}),className:\"framer-1gvvtn6\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-werwha\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15jtbyx-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"QuCbSpBT6\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:45},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"QuCbSpBT6\",layoutId:\"QuCbSpBT6\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w2apru\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ki2n3z\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nTgMngieXwQ4KObYtBJUDMJqY.png\"},className:\"framer-kfmt7l\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zaw3sm\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"53px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Class 12\"})}),className:\"framer-3n3wan\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://padhleakshay.classx.co.in/free-courses/10/content\",motionChild:true,nodeId:\"ZWB0UfOMk\",openInNewTab:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-6obhzn framer-k7qaoj\",\"data-border\":true,\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-z2nu95\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-text-transform\":\"uppercase\"},children:\"Let's Begin\"})}),className:\"framer-gygntz\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13ebdv9\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iquo5l-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CEfMl9LKR\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:45},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"CEfMl9LKR\",layoutId:\"CEfMl9LKR\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6z97kr\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/F7ogwzqVxydN5nbPB640O54Nc.png\"},className:\"framer-17p39vd\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xsmcuw\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"53px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"NEET\"})}),className:\"framer-1t5m16y\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://padhleakshay.classx.co.in/free-courses/13/content\",motionChild:true,nodeId:\"NT32DP8E8\",openInNewTab:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1by4eoe framer-k7qaoj\",\"data-border\":true,\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-floz0a\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-text-transform\":\"uppercase\"},children:\"Let's Begin\"})}),className:\"framer-17fkpn4\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18xv2mx\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11rk6f7-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"J6I6lkn5G\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:45},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"J6I6lkn5G\",layoutId:\"J6I6lkn5G\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lv2egl\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/N8E1J9kYiU3y1HXF5kEWzu3X4a0.png\"},className:\"framer-1kyv3tw\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14paxix\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"53px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"JEE\"})}),className:\"framer-13s7vfh\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://padhleakshay.classx.co.in/free-courses/12/content\",motionChild:true,nodeId:\"pFyLG0ykS\",openInNewTab:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-15nkjtz framer-k7qaoj\",\"data-border\":true,\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r90mf9\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-text-transform\":\"uppercase\"},children:\"Let's Begin\"})}),className:\"framer-yn6d4\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lbd4cp\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tb2b74-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jyv2i65ZJ\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:45},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"jyv2i65ZJ\",layoutId:\"jyv2i65ZJ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})]})]})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jb38e3\",\"data-framer-name\":\"Testimonial\",id:elementId4,ref:ref5,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ckuq6i\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3ekjpl\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"67.37414965986395px\",\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"REVIEWS\"})}),viewBox:\"0 0 377 81\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"67.37414965986395px\",\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"TESTIMONIAL\"})}),className:\"framer-1cdop8l\",fonts:[\"GF;Unbounded-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",viewBox:\"0 0 566 81\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xrpcii\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2xzbt9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wkS2IcWnz\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{sizingOptions:{heightType:false,widthType:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:21,height:\"100%\",hoverFactor:.5,id:\"wkS2IcWnz\",layoutId:\"wkS2IcWnz\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:249.5,intrinsicWidth:540,pixelHeight:499,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/r8q7eM8Y1Yulo0NJq8yGR9wG7o.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/r8q7eM8Y1Yulo0NJq8yGR9wG7o.png?scale-down-to=512 512w,https://framerusercontent.com/images/r8q7eM8Y1Yulo0NJq8yGR9wG7o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/r8q7eM8Y1Yulo0NJq8yGR9wG7o.png 1080w\"},className:\"framer-1tm2oi2\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:252,intrinsicWidth:540,pixelHeight:504,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/QtzPg6zxIK2y5GCtnfoJWDhJas.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/QtzPg6zxIK2y5GCtnfoJWDhJas.png?scale-down-to=512 512w,https://framerusercontent.com/images/QtzPg6zxIK2y5GCtnfoJWDhJas.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QtzPg6zxIK2y5GCtnfoJWDhJas.png 1080w\"},className:\"framer-bz61mz\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:345.5,intrinsicWidth:540,pixelHeight:691,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/aDuPB6GZY3rknA69XWBnIBHtg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/aDuPB6GZY3rknA69XWBnIBHtg.png?scale-down-to=512 512w,https://framerusercontent.com/images/aDuPB6GZY3rknA69XWBnIBHtg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aDuPB6GZY3rknA69XWBnIBHtg.png 1080w\"},className:\"framer-1xsgwqm\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:220,intrinsicWidth:540,pixelHeight:440,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/nbc2az76p7VP2jlywcnbEnQESw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/nbc2az76p7VP2jlywcnbEnQESw.png?scale-down-to=512 512w,https://framerusercontent.com/images/nbc2az76p7VP2jlywcnbEnQESw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nbc2az76p7VP2jlywcnbEnQESw.png 1080w\"},className:\"framer-1trvvy7\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:220,intrinsicWidth:540,pixelHeight:440,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/nbc2az76p7VP2jlywcnbEnQESw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/nbc2az76p7VP2jlywcnbEnQESw.png?scale-down-to=512 512w,https://framerusercontent.com/images/nbc2az76p7VP2jlywcnbEnQESw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nbc2az76p7VP2jlywcnbEnQESw.png 1080w\"},className:\"framer-1trvvy7\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:219,intrinsicWidth:539,pixelHeight:438,pixelWidth:1078,sizes:\"539px\",src:\"https://framerusercontent.com/images/X0hS6qDMu8VZR4MB1na6EKfqjA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/X0hS6qDMu8VZR4MB1na6EKfqjA.png?scale-down-to=512 512w,https://framerusercontent.com/images/X0hS6qDMu8VZR4MB1na6EKfqjA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/X0hS6qDMu8VZR4MB1na6EKfqjA.png 1078w\"},className:\"framer-wsvusb\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:389.5,intrinsicWidth:540,pixelHeight:779,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/xSE4AgQZ1NssNbwAphwCNxq3VEM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/xSE4AgQZ1NssNbwAphwCNxq3VEM.png?scale-down-to=512 512w,https://framerusercontent.com/images/xSE4AgQZ1NssNbwAphwCNxq3VEM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xSE4AgQZ1NssNbwAphwCNxq3VEM.png 1080w\"},className:\"framer-1ruvp6l\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:242,intrinsicWidth:540,pixelHeight:484,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/fhGh02yA9h4OoUKpf4A72MN5gyo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/fhGh02yA9h4OoUKpf4A72MN5gyo.png?scale-down-to=512 512w,https://framerusercontent.com/images/fhGh02yA9h4OoUKpf4A72MN5gyo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fhGh02yA9h4OoUKpf4A72MN5gyo.png 1080w\"},className:\"framer-8cwc2n\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:242,intrinsicWidth:540,pixelHeight:484,pixelWidth:1080,sizes:\"540px\",src:\"https://framerusercontent.com/images/fhGh02yA9h4OoUKpf4A72MN5gyo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/fhGh02yA9h4OoUKpf4A72MN5gyo.png?scale-down-to=512 512w,https://framerusercontent.com/images/fhGh02yA9h4OoUKpf4A72MN5gyo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fhGh02yA9h4OoUKpf4A72MN5gyo.png 1080w\"},className:\"framer-8cwc2n\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:313.5,intrinsicWidth:539,pixelHeight:627,pixelWidth:1078,sizes:\"539px\",src:\"https://framerusercontent.com/images/tsb5e3jHgJeBNG6SiMKE1pA3ERI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/tsb5e3jHgJeBNG6SiMKE1pA3ERI.png?scale-down-to=512 512w,https://framerusercontent.com/images/tsb5e3jHgJeBNG6SiMKE1pA3ERI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tsb5e3jHgJeBNG6SiMKE1pA3ERI.png 1078w\"},className:\"framer-vz6ou8\",\"data-framer-name\":\"image\"})],speed:80,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ytbrlw\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10as3a1\",style:{rotate:180}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10j6tsv\",\"data-styles-preset\":\"Bzf9tU22M\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"2022-2023\"})}),className:\"framer-9cnlhe\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bpm6th-container hidden-1zvqox\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yZUxvuEoU\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:21,height:\"100%\",hoverFactor:.5,id:\"yZUxvuEoU\",layoutId:\"yZUxvuEoU\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12nxsbk-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kLwrCLsAq\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"kLwrCLsAq\",isMixedBorderRadius:false,layoutId:\"kLwrCLsAq\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/HTlhuNXjL1sPZjLAasDeju5PU.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qbj6dt-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"lPKsiWLnh\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"lPKsiWLnh\",isMixedBorderRadius:false,layoutId:\"lPKsiWLnh\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/fPs2Uf65Nux1Clc6gaFPrIlo.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1os91fg-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MFz_5oMoM\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"MFz_5oMoM\",isMixedBorderRadius:false,layoutId:\"MFz_5oMoM\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/qVWtXpVWX5hnNyyROvd6d3CvWk.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u1dp1a-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SefZGxMtQ\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"SefZGxMtQ\",isMixedBorderRadius:false,layoutId:\"SefZGxMtQ\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/1FkPlU8HLKKG0mMsETyp2z9sQ3I.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1coutfn-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"bSjzDtF85\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"bSjzDtF85\",isMixedBorderRadius:false,layoutId:\"bSjzDtF85\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/ndoDBBVlqOyHd5Bmn5Cz3futw.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hb0nsn-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ieHUURP_h\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"ieHUURP_h\",isMixedBorderRadius:false,layoutId:\"ieHUURP_h\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/l7Elr6yHaOraopwXW0eCkX4s.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y3i0nf-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"HII06GN8G\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"HII06GN8G\",isMixedBorderRadius:false,layoutId:\"HII06GN8G\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/bFZLXsIVXoLeGBREmwPovAVL90k.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10j6tsv\",\"data-styles-preset\":\"Bzf9tU22M\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"2023-2024\"})}),className:\"framer-8gcxwy\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2ioa40-container hidden-1zvqox\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mQgEj4HLT\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:21,height:\"100%\",hoverFactor:.5,id:\"mQgEj4HLT\",layoutId:\"mQgEj4HLT\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v2e8w1-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mMTHnV7fi\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"mMTHnV7fi\",isMixedBorderRadius:false,layoutId:\"mMTHnV7fi\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/Bjh83IYTkoY2YPwTzj1gZkab91A.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2ijrog-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"R_Q5MF8r8\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"R_Q5MF8r8\",isMixedBorderRadius:false,layoutId:\"R_Q5MF8r8\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/Ik4YxDxIuBAqtts62KgOHnWTLlY.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f9e25y-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NNjvYGfuS\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"NNjvYGfuS\",isMixedBorderRadius:false,layoutId:\"NNjvYGfuS\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/jmItuBXiAwhjTwARAJuoOOyZzLI.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jl7xv-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"aKA8LuWxU\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"aKA8LuWxU\",isMixedBorderRadius:false,layoutId:\"aKA8LuWxU\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/FJdlPOZD1FWfFNDcxU9JftY4dk.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wk6j20-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CHAkwX6Qb\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"CHAkwX6Qb\",isMixedBorderRadius:false,layoutId:\"CHAkwX6Qb\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/eMyoTviDENMbh3wbLPRBdiF3gE.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tz5qt-container hidden-hvzz3m hidden-1b4lfhe\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GZTf9m_96\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:21,height:\"100%\",hoverFactor:.5,id:\"GZTf9m_96\",layoutId:\"GZTf9m_96\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12nxsbk-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kLwrCLsAq\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"kLwrCLsAq\",isMixedBorderRadius:false,layoutId:\"kLwrCLsAq\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/HTlhuNXjL1sPZjLAasDeju5PU.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qbj6dt-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"lPKsiWLnh\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"lPKsiWLnh\",isMixedBorderRadius:false,layoutId:\"lPKsiWLnh\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/fPs2Uf65Nux1Clc6gaFPrIlo.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1os91fg-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MFz_5oMoM\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"MFz_5oMoM\",isMixedBorderRadius:false,layoutId:\"MFz_5oMoM\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/qVWtXpVWX5hnNyyROvd6d3CvWk.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u1dp1a-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SefZGxMtQ\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"SefZGxMtQ\",isMixedBorderRadius:false,layoutId:\"SefZGxMtQ\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/1FkPlU8HLKKG0mMsETyp2z9sQ3I.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1coutfn-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"bSjzDtF85\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"bSjzDtF85\",isMixedBorderRadius:false,layoutId:\"bSjzDtF85\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/ndoDBBVlqOyHd5Bmn5Cz3futw.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hb0nsn-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ieHUURP_h\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"ieHUURP_h\",isMixedBorderRadius:false,layoutId:\"ieHUURP_h\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/l7Elr6yHaOraopwXW0eCkX4s.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y3i0nf-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"HII06GN8G\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"HII06GN8G\",isMixedBorderRadius:false,layoutId:\"HII06GN8G\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/bFZLXsIVXoLeGBREmwPovAVL90k.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})],speed:10,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5hyg8u-container hidden-hvzz3m hidden-1b4lfhe\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qrEocH2Nl\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:21,height:\"100%\",hoverFactor:.5,id:\"qrEocH2Nl\",layoutId:\"qrEocH2Nl\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v2e8w1-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mMTHnV7fi\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"mMTHnV7fi\",isMixedBorderRadius:false,layoutId:\"mMTHnV7fi\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/Bjh83IYTkoY2YPwTzj1gZkab91A.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2ijrog-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"R_Q5MF8r8\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"R_Q5MF8r8\",isMixedBorderRadius:false,layoutId:\"R_Q5MF8r8\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/Ik4YxDxIuBAqtts62KgOHnWTLlY.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f9e25y-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NNjvYGfuS\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"NNjvYGfuS\",isMixedBorderRadius:false,layoutId:\"NNjvYGfuS\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/jmItuBXiAwhjTwARAJuoOOyZzLI.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jl7xv-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"aKA8LuWxU\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"aKA8LuWxU\",isMixedBorderRadius:false,layoutId:\"aKA8LuWxU\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/FJdlPOZD1FWfFNDcxU9JftY4dk.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wk6j20-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CHAkwX6Qb\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"CHAkwX6Qb\",isMixedBorderRadius:false,layoutId:\"CHAkwX6Qb\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/eMyoTviDENMbh3wbLPRBdiF3gE.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17tncu9\",\"data-framer-name\":\"Specialities\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mng6ye\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:`min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+0+0+4823+50+0+0},WgNeKo_y1:{y:(componentViewport?.y||0)+0+0+0+5122.963+80+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+0+0+5087.963+100+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18fk8li-container\",id:elementId5,nodeId:\"ty2_oh6O2\",ref:ref6,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{variant:\"KJ1G3Id0e\"},WgNeKo_y1:{variant:\"KJ1G3Id0e\"}},children:/*#__PURE__*/_jsx(Heading,{ExBt4bIY2:\"Why Padhle Akshay\",GqTmcaQLx:\"Why Us\",height:\"100%\",id:\"ty2_oh6O2\",kAHPdHlCh:\"Padhleakshay has become a trusted source of belief for lakhs of students since the 2020 Boards Examinations after he provided the best possible notes and a set of all important questions designed by himself and his team to all the CBSE students via his YouTube channel Padhle (@Padhleakshay).\",layoutId:\"ty2_oh6O2\",NlGfzfEF2:true,p1KubWiKz:true,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"u4P6wTRAk\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x3dn5k\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wd7iy1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:667,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4823+50+0+159+0+0+0+0),pixelHeight:3702,pixelWidth:5547,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1440px)`,src:\"https://framerusercontent.com/images/mP6YGHtjQJKcV9rveqDqexWfQk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mP6YGHtjQJKcV9rveqDqexWfQk.png?scale-down-to=512 512w,https://framerusercontent.com/images/mP6YGHtjQJKcV9rveqDqexWfQk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mP6YGHtjQJKcV9rveqDqexWfQk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mP6YGHtjQJKcV9rveqDqexWfQk.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/mP6YGHtjQJKcV9rveqDqexWfQk.png 5547w\"}},WgNeKo_y1:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:667,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5122.963+80+0+149+0+0+81.489),pixelHeight:3702,pixelWidth:5547,positionX:\"center\",positionY:\"center\",sizes:`calc(max(${componentViewport?.width||\"100vw\"} - 80px, 1px) * 0.6151)`,src:\"https://framerusercontent.com/images/mP6YGHtjQJKcV9rveqDqexWfQk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mP6YGHtjQJKcV9rveqDqexWfQk.png?scale-down-to=512 512w,https://framerusercontent.com/images/mP6YGHtjQJKcV9rveqDqexWfQk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mP6YGHtjQJKcV9rveqDqexWfQk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mP6YGHtjQJKcV9rveqDqexWfQk.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/mP6YGHtjQJKcV9rveqDqexWfQk.png 5547w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:667,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5087.963+100+0+179+0+0+0),pixelHeight:3702,pixelWidth:5547,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) * 0.6107)`,src:\"https://framerusercontent.com/images/mP6YGHtjQJKcV9rveqDqexWfQk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mP6YGHtjQJKcV9rveqDqexWfQk.png?scale-down-to=512 512w,https://framerusercontent.com/images/mP6YGHtjQJKcV9rveqDqexWfQk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mP6YGHtjQJKcV9rveqDqexWfQk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mP6YGHtjQJKcV9rveqDqexWfQk.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/mP6YGHtjQJKcV9rveqDqexWfQk.png 5547w\"},className:\"framer-1s6yyb6\",children:isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e8ossu hidden-1zvqox\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3wze62\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ftuw84\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10j6tsv\",\"data-styles-preset\":\"Bzf9tU22M\",children:\"2024\"})}),className:\"framer-tgmao9\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-39le6\",\"data-styles-preset\":\"BZqcnnsi4\",children:\"Topper\"})}),className:\"framer-1nxcxry\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4823+50+0+159+0+0+0+259+30+223),pixelHeight:3531,pixelWidth:3398,positionX:\"left\",positionY:\"top\",sizes:\"270px\",src:\"https://framerusercontent.com/images/bMzwke0js6fY6B301yyzgh8MEpM.jpeg\",srcSet:\"https://framerusercontent.com/images/bMzwke0js6fY6B301yyzgh8MEpM.jpeg?scale-down-to=1024 985w,https://framerusercontent.com/images/bMzwke0js6fY6B301yyzgh8MEpM.jpeg?scale-down-to=2048 1970w,https://framerusercontent.com/images/bMzwke0js6fY6B301yyzgh8MEpM.jpeg 3398w\"}},WgNeKo_y1:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5122.963+80+0+149+0+0+0+30+188.5),pixelHeight:3531,pixelWidth:3398,positionX:\"left\",positionY:\"top\",sizes:\"223px\",src:\"https://framerusercontent.com/images/bMzwke0js6fY6B301yyzgh8MEpM.jpeg\",srcSet:\"https://framerusercontent.com/images/bMzwke0js6fY6B301yyzgh8MEpM.jpeg?scale-down-to=1024 985w,https://framerusercontent.com/images/bMzwke0js6fY6B301yyzgh8MEpM.jpeg?scale-down-to=2048 1970w,https://framerusercontent.com/images/bMzwke0js6fY6B301yyzgh8MEpM.jpeg 3398w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5087.963+100+0+179+0+0+0+30+110.5),pixelHeight:3531,pixelWidth:3398,positionX:\"left\",positionY:\"top\",sizes:\"270px\",src:\"https://framerusercontent.com/images/bMzwke0js6fY6B301yyzgh8MEpM.jpeg\",srcSet:\"https://framerusercontent.com/images/bMzwke0js6fY6B301yyzgh8MEpM.jpeg?scale-down-to=1024 985w,https://framerusercontent.com/images/bMzwke0js6fY6B301yyzgh8MEpM.jpeg?scale-down-to=2048 1970w,https://framerusercontent.com/images/bMzwke0js6fY6B301yyzgh8MEpM.jpeg 3398w\"},className:\"framer-1l4gopw\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g6micz\",\"data-styles-preset\":\"iLvBdfOs8\",children:\"We help score better in your Board examinations.\"})}),className:\"framer-k3hsuw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-te7zln\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4500,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4823+50+0+159+0+991+0+0),pixelHeight:4500,pixelWidth:3e3,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/QHwiFG8CdFS1wdIHWtWHvAuzLAM.jpg?scale-down-to=1024\"}},WgNeKo_y1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4500,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5122.963+80+0+149+0+470+0),pixelHeight:4500,pixelWidth:3e3,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/QHwiFG8CdFS1wdIHWtWHvAuzLAM.jpg?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4500,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5087.963+100+0+179+0+470+0),pixelHeight:4500,pixelWidth:3e3,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/QHwiFG8CdFS1wdIHWtWHvAuzLAM.jpg?scale-down-to=1024\"},className:\"framer-1smoyra\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13o8rur\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:(componentViewport?.y||0)+0+0+0+4823+50+0+159+0+991+0+0+0+0+366-44},WgNeKo_y1:{y:(componentViewport?.y||0)+0+0+0+5122.963+80+0+149+0+470+0+0+47+366-44}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+0+5087.963+100+0+179+0+470+0+0+47+366-44,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{drag:undefined,whileTap:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jmnool-container\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,nodeId:\"p7AMn55yN\",onMouseDown:preventDefault,rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{transformPerspective:1200},transformTemplate:transformTemplate1,whileTap:animation7,children:/*#__PURE__*/_jsx(Bullet,{ej_oyrdNG:\"Sample Paper\",height:\"100%\",id:\"p7AMn55yN\",layoutId:\"p7AMn55yN\",variant:\"yWlmd8pQp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:(componentViewport?.y||0)+0+0+0+4823+50+0+159+0+991+0+0+0+0+366-91.0052},WgNeKo_y1:{y:(componentViewport?.y||0)+0+0+0+5122.963+80+0+149+0+470+0+0+47+366-91.0052}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+0+5087.963+100+0+179+0+470+0+0+47+366-91.0052,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{drag:undefined,whileTap:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1r0o321-container\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,nodeId:\"oXyw3aYrr\",onMouseDown:preventDefault,rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:2,transformPerspective:1200},whileTap:animation7,children:/*#__PURE__*/_jsx(Bullet,{ej_oyrdNG:\"Videos\",height:\"100%\",id:\"oXyw3aYrr\",layoutId:\"oXyw3aYrr\",variant:\"yWlmd8pQp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:(componentViewport?.y||0)+0+0+0+4823+50+0+159+0+991+0+0+0+0+366-80.9869},WgNeKo_y1:{y:(componentViewport?.y||0)+0+0+0+5122.963+80+0+149+0+470+0+0+47+366-80.9869}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+0+5087.963+100+0+179+0+470+0+0+47+366-80.9869,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{drag:undefined,whileTap:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-trja7f-container\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,nodeId:\"X8QqHiYuz\",onMouseDown:preventDefault,rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:-4,transformPerspective:1200},whileTap:animation7,children:/*#__PURE__*/_jsx(Bullet,{ej_oyrdNG:\"Notes\",height:\"100%\",id:\"X8QqHiYuz\",layoutId:\"X8QqHiYuz\",variant:\"yWlmd8pQp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:(componentViewport?.y||0)+0+0+0+4823+50+0+159+0+991+0+0+0+0+366-134.968},WgNeKo_y1:{y:(componentViewport?.y||0)+0+0+0+5122.963+80+0+149+0+470+0+0+47+366-134.968}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+0+5087.963+100+0+179+0+470+0+0+47+366-134.968,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{drag:undefined,whileTap:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mvrr88-container\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,nodeId:\"HASNsDcS3\",onMouseDown:preventDefault,rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:-17,transformPerspective:1200},whileTap:animation7,children:/*#__PURE__*/_jsx(Bullet,{ej_oyrdNG:\"Lectures\",height:\"100%\",id:\"HASNsDcS3\",layoutId:\"HASNsDcS3\",variant:\"yWlmd8pQp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:(componentViewport?.y||0)+0+0+0+4823+50+0+159+0+991+0+0+0+0+366-145.051},WgNeKo_y1:{y:(componentViewport?.y||0)+0+0+0+5122.963+80+0+149+0+470+0+0+47+366-145.051}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+0+5087.963+100+0+179+0+470+0+0+47+366-145.051,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{drag:undefined,whileTap:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-p5yo2r-container\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,nodeId:\"Blh9QJ6z1\",onMouseDown:preventDefault,rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:-14,transformPerspective:1200},transformTemplate:transformTemplate1,whileTap:animation7,children:/*#__PURE__*/_jsx(Bullet,{ej_oyrdNG:\"DPP\",height:\"100%\",id:\"Blh9QJ6z1\",layoutId:\"Blh9QJ6z1\",variant:\"yWlmd8pQp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:(componentViewport?.y||0)+0+0+0+4823+50+0+159+0+991+0+0+0+0+366-195.0074},WgNeKo_y1:{y:(componentViewport?.y||0)+0+0+0+5122.963+80+0+149+0+470+0+0+47+366-195.0074}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+0+5087.963+100+0+179+0+470+0+0+47+366-195.0074,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{drag:undefined,whileTap:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3063ph-container\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,nodeId:\"O_tHxRvOp\",onMouseDown:preventDefault,rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:11,transformPerspective:1200},whileTap:animation7,children:/*#__PURE__*/_jsx(Bullet,{ej_oyrdNG:\"Worksheet\",height:\"100%\",id:\"O_tHxRvOp\",layoutId:\"O_tHxRvOp\",variant:\"yWlmd8pQp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:(componentViewport?.y||0)+0+0+0+4823+50+0+159+0+991+0+0+0+0+366-198},WgNeKo_y1:{y:(componentViewport?.y||0)+0+0+0+5122.963+80+0+149+0+470+0+0+47+366-198}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+0+5087.963+100+0+179+0+470+0+0+47+366-198,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{drag:undefined,whileTap:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation17,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rsmndz-container\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,nodeId:\"pLGjURVVi\",onMouseDown:preventDefault,rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:11,transformPerspective:1200},whileTap:animation7,children:/*#__PURE__*/_jsx(Bullet,{ej_oyrdNG:\"Notes\",height:\"100%\",id:\"pLGjURVVi\",layoutId:\"pLGjURVVi\",variant:\"yWlmd8pQp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:(componentViewport?.y||0)+0+0+0+4823+50+0+159+0+991+0+0+0+0+366-252},WgNeKo_y1:{y:(componentViewport?.y||0)+0+0+0+5122.963+80+0+149+0+470+0+0+47+366-252}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+0+5087.963+100+0+179+0+470+0+0+47+366-252,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{drag:undefined,whileTap:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation19,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-t2hhas-container\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,nodeId:\"pn_Wu45YU\",onMouseDown:preventDefault,rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:-15,transformPerspective:1200},whileTap:animation7,children:/*#__PURE__*/_jsx(Bullet,{ej_oyrdNG:\"Quizes\",height:\"100%\",id:\"pn_Wu45YU\",layoutId:\"pn_Wu45YU\",variant:\"yWlmd8pQp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:(componentViewport?.y||0)+0+0+0+4823+50+0+159+0+991+0+0+0+0+366-238},WgNeKo_y1:{y:(componentViewport?.y||0)+0+0+0+5122.963+80+0+149+0+470+0+0+47+366-238}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+0+5087.963+100+0+179+0+470+0+0+47+366-238,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{drag:undefined,whileTap:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation21,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mb7acv-container\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,nodeId:\"REdf2YXuu\",onMouseDown:preventDefault,rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:3,transformPerspective:1200},whileTap:animation7,children:/*#__PURE__*/_jsx(Bullet,{ej_oyrdNG:\"Strategy\",height:\"100%\",id:\"REdf2YXuu\",layoutId:\"REdf2YXuu\",variant:\"yWlmd8pQp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:(componentViewport?.y||0)+0+0+0+4823+50+0+159+0+991+0+0+0+0+366-299},WgNeKo_y1:{y:(componentViewport?.y||0)+0+0+0+5122.963+80+0+149+0+470+0+0+47+366-299}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+0+5087.963+100+0+179+0+470+0+0+47+366-299,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{drag:undefined,whileTap:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1aorcb3-container\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,nodeId:\"xLvN11CHg\",onMouseDown:preventDefault,rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:24,transformPerspective:1200},whileTap:animation7,children:/*#__PURE__*/_jsx(Bullet,{ej_oyrdNG:\"Sample Paper\",height:\"100%\",id:\"xLvN11CHg\",layoutId:\"xLvN11CHg\",variant:\"yWlmd8pQp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:(componentViewport?.y||0)+0+0+0+4823+50+0+159+0+991+0+0+0+0+366-317},WgNeKo_y1:{y:(componentViewport?.y||0)+0+0+0+5122.963+80+0+149+0+470+0+0+47+366-317}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+0+5087.963+100+0+179+0+470+0+0+47+366-317,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{drag:undefined,whileTap:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation25,__framer__exit:animation26,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6cy7es-container\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,nodeId:\"ABFtcuw84\",onMouseDown:preventDefault,rendersWithMotion:true,scopeId:\"yd7nMFDHh\",style:{rotate:-28,transformPerspective:1200},whileTap:animation7,children:/*#__PURE__*/_jsx(Bullet,{ej_oyrdNG:\"Animated lecture\",height:\"100%\",id:\"ABFtcuw84\",layoutId:\"ABFtcuw84\",variant:\"yWlmd8pQp\",width:\"100%\"})})})})})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://amzn.to/3UWTQmD\",motionChild:true,nodeId:\"CKKawQFCA\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-n263oc framer-k7qaoj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-elyyqd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-39le6\",\"data-styles-preset\":\"BZqcnnsi4\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\"},children:\"Latest Book  By\"})}),className:\"framer-g4ukzm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\"},children:\"Padhle Akshay\"})})},WgNeKo_y1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\"},children:\"Padhle Akshay\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\"},children:\"Padhle Akshay\"})}),className:\"framer-1b8zfmf\",fonts:[\"GF;Unbounded-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4823+50+0+159+0+991+0+376+30+223),pixelHeight:600,pixelWidth:970,positionX:\"center\",positionY:\"center\",sizes:\"314px\",src:\"https://framerusercontent.com/images/QfK0mlhMH3meNupLGjnxwfj3LM.jpg\",srcSet:\"https://framerusercontent.com/images/QfK0mlhMH3meNupLGjnxwfj3LM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QfK0mlhMH3meNupLGjnxwfj3LM.jpg 970w\"}},WgNeKo_y1:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5122.963+80+0+149+0+470+0+30+276.8),pixelHeight:600,pixelWidth:970,positionX:\"center\",positionY:\"center\",sizes:\"274px\",src:\"https://framerusercontent.com/images/QfK0mlhMH3meNupLGjnxwfj3LM.jpg\",srcSet:\"https://framerusercontent.com/images/QfK0mlhMH3meNupLGjnxwfj3LM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QfK0mlhMH3meNupLGjnxwfj3LM.jpg 970w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5087.963+100+0+179+0+470+0+30+74.75),pixelHeight:600,pixelWidth:970,positionX:\"center\",positionY:\"center\",sizes:\"434px\",src:\"https://framerusercontent.com/images/QfK0mlhMH3meNupLGjnxwfj3LM.jpg\",srcSet:\"https://framerusercontent.com/images/QfK0mlhMH3meNupLGjnxwfj3LM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QfK0mlhMH3meNupLGjnxwfj3LM.jpg 970w\"},className:\"framer-13q9ede\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WgNeKo_y1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\"},children:\"Grab your book instantly by Clicking and Start your 33 Days Challenge today!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\"},children:\"Grab your book instantly by Clicking and Start your 33 Days Challenge today!\"})}),className:\"framer-1rxwpr7\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-o6dgbz\",\"data-framer-name\":\"FAQ\",id:elementId6,ref:ref7,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19j62tj\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:`min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+0+0+7087.5+50+0+0},WgNeKo_y1:{width:`min(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1000px), 1440px)`,y:(componentViewport?.y||0)+0+0+0+6361.963+80+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+0+0+6396.963+100+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f2u7rm-container\",nodeId:\"WoYkGo2hS\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Heading,{ExBt4bIY2:\"Got Questions?\\nWe've Got Answers!\",GqTmcaQLx:\"Frequently Asked Questions\",height:\"100%\",id:\"WoYkGo2hS\",kAHPdHlCh:\"\",layoutId:\"WoYkGo2hS\",NlGfzfEF2:true,p1KubWiKz:false,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"KJ1G3Id0e\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:`min(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1440px), 1000px)`,y:(componentViewport?.y||0)+0+0+0+7087.5+50+0+159},WgNeKo_y1:{width:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1000px)`,y:(componentViewport?.y||0)+0+0+0+6361.963+80+0+179}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:638,width:`min(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px), 1000px)`,y:(componentViewport?.y||0)+0+0+0+6396.963+100+0+179,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dv02ol-container\",nodeId:\"Vf0IQ65Mm\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(FAQListCommon,{height:\"100%\",id:\"Vf0IQ65Mm\",layoutId:\"Vf0IQ65Mm\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p5toq1\",\"data-framer-name\":\"2 Columns Text Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9h0r09\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15r6d16\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Download Our App\"})})},WgNeKo_y1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Download Our App\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Download Our App\"})}),className:\"framer-1vm0cj4\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(61, 61, 61)\"},children:\"Padhle Akshay Official App of the most loved Digital Notes, Quiz, Animated lectures & More at 0 cost for all the CBSE students.\"})}),className:\"framer-1b13485\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=com.padhleakshay.app\",motionChild:true,nodeId:\"HjDEuzIA5\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:90.5,intrinsicWidth:305.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7984.5+0+400+0+20+106),pixelHeight:181,pixelWidth:611,sizes:\"230px\",src:\"https://framerusercontent.com/images/KFhT4RNAx20IAPP8FaLfA8Eg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KFhT4RNAx20IAPP8FaLfA8Eg.png?scale-down-to=512 512w,https://framerusercontent.com/images/KFhT4RNAx20IAPP8FaLfA8Eg.png 611w\"}},WgNeKo_y1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:90.5,intrinsicWidth:305.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7338.963+0+117+40+118),pixelHeight:181,pixelWidth:611,sizes:\"230px\",src:\"https://framerusercontent.com/images/KFhT4RNAx20IAPP8FaLfA8Eg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KFhT4RNAx20IAPP8FaLfA8Eg.png?scale-down-to=512 512w,https://framerusercontent.com/images/KFhT4RNAx20IAPP8FaLfA8Eg.png 611w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:90.5,intrinsicWidth:305.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7413.963+0+201+0+130),pixelHeight:181,pixelWidth:611,sizes:\"230px\",src:\"https://framerusercontent.com/images/KFhT4RNAx20IAPP8FaLfA8Eg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KFhT4RNAx20IAPP8FaLfA8Eg.png?scale-down-to=512 512w,https://framerusercontent.com/images/KFhT4RNAx20IAPP8FaLfA8Eg.png 611w\"},className:\"framer-177vv3c framer-k7qaoj\",\"data-framer-name\":\"image_246\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n58404\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:331.5,intrinsicWidth:188,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7984.5+0+0+0+-37),pixelHeight:544,pixelWidth:376,sizes:\"269px\",src:\"https://framerusercontent.com/images/nEIyLwKQLcfHUNkcymtsPuvj6g.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nEIyLwKQLcfHUNkcymtsPuvj6g.png 376w\"}},WgNeKo_y1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:331.5,intrinsicWidth:188,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7338.963+0+0+13),pixelHeight:544,pixelWidth:376,sizes:\"269px\",src:\"https://framerusercontent.com/images/nEIyLwKQLcfHUNkcymtsPuvj6g.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nEIyLwKQLcfHUNkcymtsPuvj6g.png 376w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:331.5,intrinsicWidth:188,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7413.963+0+0+63),pixelHeight:544,pixelWidth:376,sizes:\"269px\",src:\"https://framerusercontent.com/images/nEIyLwKQLcfHUNkcymtsPuvj6g.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nEIyLwKQLcfHUNkcymtsPuvj6g.png 376w\"},className:\"framer-14rumow\",\"data-framer-name\":\"image_removebg_preview_9_\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:(componentViewport?.y||0)+0+8598.5},WgNeKo_y1:{y:(componentViewport?.y||0)+0+7838.963}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:581,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+8013.963,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q3g1oe-container\",nodeId:\"S6HR3Mlhv\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{variant:\"BsZlXwif2\"},WgNeKo_y1:{variant:\"mKXCPqfUG\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"S6HR3Mlhv\",layoutId:\"S6HR3Mlhv\",style:{width:\"100%\"},variant:\"zQXPtCkn3\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bn53kh-container\",isAuthoredByUser:true,isModuleExternal:true,layoutScroll:true,nodeId:\"ZCezUq2zT\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"ZCezUq2zT\",intensity:12,layoutId:\"ZCezUq2zT\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HipSL.framer-k7qaoj, .framer-HipSL .framer-k7qaoj { display: block; }\",\".framer-HipSL.framer-hvzz3m { align-content: center; align-items: center; background-color: var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, #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: 1200px; }\",\".framer-HipSL .framer-123wqig { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: fixed; top: 0px; width: 100%; z-index: 0; }\",'.framer-HipSL .framer-1bsjpkg { background: radial-gradient(43.2% 25% at 50% 18.8%, rgba(84, 84, 84, 0) 0%, var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(10, 10, 10)) /* {\"name\":\"Dark Green\"} */ 100%); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }',\".framer-HipSL .framer-ne3cqe-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: relative; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-HipSL .framer-icz1s2-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-HipSL .framer-9x07u-container { bottom: 0px; flex: none; height: auto; left: 0px; position: fixed; right: 0px; z-index: 10; }\",\".framer-HipSL .framer-1ma85oo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-HipSL .framer-j1yqbq { align-content: center; align-items: center; background: radial-gradient(126% 39% at 50% 65.3%, #f4a904 0%, rgb(0, 0, 0) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: 932px; justify-content: flex-start; overflow: visible; padding: 180px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-HipSL .framer-j4z2v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-HipSL .framer-4w8l5h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HipSL .framer-fo77gx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HipSL .framer-jbkn8z { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 740px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-HipSL .framer-r4ysuh { align-content: center; align-items: center; background-color: #f4a904; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-HipSL .framer-n2iyub, .framer-HipSL .framer-1jdzw5z { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HipSL .framer-1c0jjav { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HipSL .framer-1v0fo4u, .framer-HipSL .framer-10x8h78, .framer-HipSL .framer-105a0iq, .framer-HipSL .framer-k7x900, .framer-HipSL .framer-6obhzn, .framer-HipSL .framer-1by4eoe, .framer-HipSL .framer-15nkjtz { --border-bottom-width: 1px; --border-color: var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, #d97c1d); --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: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-HipSL .framer-cw8kqr { align-content: center; align-items: center; background-color: #ffb820; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: flex-start; overflow: visible; padding: 25px 30px 25px 30px; position: relative; width: min-content; }\",\".framer-HipSL .framer-1hzlvm, .framer-HipSL .framer-1v0n7wl, .framer-HipSL .framer-686gef, .framer-HipSL .framer-1rxj6vf, .framer-HipSL .framer-zupv7w, .framer-HipSL .framer-2zowze, .framer-HipSL .framer-1c0qg7i, .framer-HipSL .framer-epvvmx, .framer-HipSL .framer-1ksl8hn, .framer-HipSL .framer-xc3jq1, .framer-HipSL .framer-1l10toc, .framer-HipSL .framer-t7h4ui, .framer-HipSL .framer-1021p5t, .framer-HipSL .framer-1kcqm5v, .framer-HipSL .framer-ofnzmn, .framer-HipSL .framer-ram04e, .framer-HipSL .framer-8l0dsu, .framer-HipSL .framer-12qleue, .framer-HipSL .framer-1gvvtn6, .framer-HipSL .framer-gygntz, .framer-HipSL .framer-17fkpn4, .framer-HipSL .framer-yn6d4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-HipSL .framer-w2z4jf, .framer-HipSL .framer-p969gh, .framer-HipSL .framer-1y8xkc3, .framer-HipSL .framer-13i150l, .framer-HipSL .framer-dr98w, .framer-HipSL .framer-isq4o5, .framer-HipSL .framer-16o6o2u, .framer-HipSL .framer-1gscd9m, .framer-HipSL .framer-jf4s1, .framer-HipSL .framer-bw3bnc, .framer-HipSL .framer-tnyvgn, .framer-HipSL .framer-4aln0o, .framer-HipSL .framer-1t53mt3, .framer-HipSL .framer-1ugawt5, .framer-HipSL .framer-qzalco, .framer-HipSL .framer-r9zw4s, .framer-HipSL .framer-1t4q3jk, .framer-HipSL .framer-1nksz9q, .framer-HipSL .framer-werwha, .framer-HipSL .framer-13ebdv9, .framer-HipSL .framer-18xv2mx, .framer-HipSL .framer-1lbd4cp { align-content: center; align-items: center; align-self: stretch; background-color: #ffb820; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 50px; }\",\".framer-HipSL .framer-1wmb9rv-container, .framer-HipSL .framer-16dkulk-container, .framer-HipSL .framer-rtmam3-container, .framer-HipSL .framer-1e2xw15-container, .framer-HipSL .framer-1cspl1t-container, .framer-HipSL .framer-15apwze-container, .framer-HipSL .framer-134bbje-container, .framer-HipSL .framer-pqu8yu-container, .framer-HipSL .framer-fbyf2u-container, .framer-HipSL .framer-larxw8-container, .framer-HipSL .framer-1hwo01t-container, .framer-HipSL .framer-1069cjb-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 20px; }\",\".framer-HipSL .framer-1o63r6a-container { flex: none; height: 392px; position: relative; width: 107%; }\",\".framer-HipSL .framer-npr9dt, .framer-HipSL .framer-1v6ikjb, .framer-HipSL .framer-10sgllq, .framer-HipSL .framer-1kis7qc, .framer-HipSL .framer-hhormq, .framer-HipSL .framer-1agq9i8, .framer-HipSL .framer-1tufv8m { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: 0px 1px 40px 0px #ffcc66; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 320px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 320px; }\",'.framer-HipSL .framer-1urq87d { background: linear-gradient(180deg, rgba(191, 51, 19, 0) 16.353996101364523%, var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(191, 51, 19)) /* {\"name\":\"Light Green\"} */ 77.35485380116958%); bottom: 0px; flex: none; height: 855px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; z-index: -1; }',\".framer-HipSL .framer-1sk6zfr { -webkit-filter: contrast(1.23) grayscale(0.14); filter: contrast(1.23) grayscale(0.14); flex: none; height: 245px; overflow: visible; position: relative; width: 100%; }\",'.framer-HipSL .framer-m94qqz { background: linear-gradient(180deg, rgba(84, 84, 84, 0) 41.63993900835976%, var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(0, 0, 0)) /* {\"name\":\"Dark Green\"} */ 100%); bottom: 0px; flex: none; height: 182px; left: 0px; overflow: hidden; position: absolute; width: 100%; }',\".framer-HipSL .framer-1d4gaqj-container { flex: none; height: 320px; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: -74px; width: 100%; z-index: -1; }\",\".framer-HipSL .framer-1gfdqz2 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 127px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HipSL .framer-xv6dxv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 53.79629629629631vh; justify-content: space-between; overflow: visible; padding: 40px 20px 50px 20px; position: relative; width: 100%; z-index: 1; }\",\".framer-HipSL .framer-b8yios { -webkit-filter: contrast(2) grayscale(0); filter: contrast(2) grayscale(0); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",'.framer-HipSL .framer-se0ayk { background: radial-gradient(45.1% 44.7% at 52.6% 42.8%, #b27b0c 0%, var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(0, 0, 0)) /* {\"name\":\"Dark Green\"} */ 100%); bottom: 0px; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); mix-blend-mode: multiply; opacity: 0.91; overflow: hidden; position: absolute; width: 100%; z-index: 1; }',\".framer-HipSL .framer-fav9ul { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 16px 0px 0px; position: relative; width: min-content; }\",\".framer-HipSL .framer-1h9wx7j { display: grid; flex: none; gap: 31px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(170px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-HipSL .framer-1oql35u-container, .framer-HipSL .framer-1azo9qp-container, .framer-HipSL .framer-113fw0w-container, .framer-HipSL .framer-1lxh66i-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-HipSL .framer-908kvu-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-HipSL .framer-b65g9w { align-content: center; align-items: center; border-bottom-left-radius: 63px; border-bottom-right-radius: 63px; border-top-left-radius: 63px; border-top-right-radius: 63px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 585px; justify-content: center; overflow: hidden; padding: 60px; position: relative; width: 779px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HipSL .framer-bmjcpe-container, .framer-HipSL .framer-1uwyxl9-container, .framer-HipSL .framer-1f2u7rm-container { flex: none; height: auto; max-width: 1440px; position: relative; width: 100%; z-index: 1; }\",\".framer-HipSL .framer-1593082-container, .framer-HipSL .framer-1y3wopw-container, .framer-HipSL .framer-q3g1oe-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-HipSL .framer-qql7gy { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 1760px; }\",\".framer-HipSL .framer-1lsuewo, .framer-HipSL .framer-sitjoj, .framer-HipSL .framer-x98tfq, .framer-HipSL .framer-1eeangb, .framer-HipSL .framer-9hpo1d, .framer-HipSL .framer-ykg6zg, .framer-HipSL .framer-c6yjsm, .framer-HipSL .framer-vdjuf4, .framer-HipSL .framer-106w6mt, .framer-HipSL .framer-1ba9hb7, .framer-HipSL .framer-5n556l, .framer-HipSL .framer-mn06ky, .framer-HipSL .framer-5olfbg, .framer-HipSL .framer-1fbbo50, .framer-HipSL .framer-1750n0d { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 5px 51px 0px rgba(255, 204, 102, 0.46); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HipSL .framer-12xr15i, .framer-HipSL .framer-16dexx5 { align-content: center; align-items: center; background: linear-gradient(180deg, #000000 26%, rgb(255, 186, 42) 100%); border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 5px 51px 0px rgba(255, 204, 102, 0.46); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 273px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-HipSL .framer-1pmcnky, .framer-HipSL .framer-1tax6u4 { border-top-left-radius: 11px; border-top-right-radius: 11px; box-shadow: 0px 5px 51px 0px rgba(255, 204, 102, 0.46); flex: none; height: 182px; overflow: hidden; position: relative; width: 321px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HipSL .framer-1j75io, .framer-HipSL .framer-1vsy7o3, .framer-HipSL .framer-snp4xa { align-content: center; align-items: center; background: linear-gradient(180deg, #ffb820 0%, rgb(255, 244, 219) 46.679757882882875%); box-shadow: 0px 5px 51px 0px rgba(255, 204, 102, 0.46); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 100%; }\",\".framer-HipSL .framer-usq5ry, .framer-HipSL .framer-5zlgdl, .framer-HipSL .framer-ynajcg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; text-shadow: 0px 5px 51px rgba(255, 204, 102, 0.46); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HipSL .framer-rxr654, .framer-HipSL .framer-1f6vsv0, .framer-HipSL .framer-k1ehvy, .framer-HipSL .framer-1r2f2rz, .framer-HipSL .framer-b4spsv, .framer-HipSL .framer-ublfdq, .framer-HipSL .framer-1vl6xir, .framer-HipSL .framer-kao027, .framer-HipSL .framer-1a8vaqq, .framer-HipSL .framer-10ncij1, .framer-HipSL .framer-12k7d21, .framer-HipSL .framer-dhwg4y, .framer-HipSL .framer-nxc2rn, .framer-HipSL .framer-43khsa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-HipSL .framer-pncfiz, .framer-HipSL .framer-1es3vbt, .framer-HipSL .framer-3cy87n, .framer-HipSL .framer-qnrkt5, .framer-HipSL .framer-nlcksc, .framer-HipSL .framer-njhisf, .framer-HipSL .framer-1ph9rsq, .framer-HipSL .framer-9v8k96, .framer-HipSL .framer-141e2dg, .framer-HipSL .framer-1pzvs66, .framer-HipSL .framer-eq1ej1, .framer-HipSL .framer-fn8m35, .framer-HipSL .framer-qqnhdz, .framer-HipSL .framer-1obv2f1, .framer-HipSL .framer-1b785i3 { --border-bottom-width: 1px; --border-color: var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, #d97c1d); --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: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-HipSL .framer-htzfal, .framer-HipSL .framer-9lp0so, .framer-HipSL .framer-nme5kn, .framer-HipSL .framer-1yfewx9, .framer-HipSL .framer-aj49dy, .framer-HipSL .framer-568lrc, .framer-HipSL .framer-1cr4iay, .framer-HipSL .framer-1v4tf4p, .framer-HipSL .framer-n9r3ys, .framer-HipSL .framer-1m4sej4, .framer-HipSL .framer-1l6mrv, .framer-HipSL .framer-10hbduz, .framer-HipSL .framer-1a3f8sx, .framer-HipSL .framer-1hygtwj, .framer-HipSL .framer-swhxxw, .framer-HipSL .framer-15gqme9, .framer-HipSL .framer-44eog3, .framer-HipSL .framer-1jizksz, .framer-HipSL .framer-z2nu95, .framer-HipSL .framer-floz0a, .framer-HipSL .framer-1r90mf9 { align-content: center; align-items: center; background-color: #ffb820; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: flex-start; overflow: visible; padding: 25px 30px 25px 30px; position: relative; width: min-content; }\",\".framer-HipSL .framer-18wp84z { aspect-ratio: 1.3333333333333333 / 1; background-color: #000000; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 5px 51px 0px rgba(255, 204, 102, 0.46); flex: none; height: var(--framer-aspect-ratio-supported, 240px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HipSL .framer-1j5stb7 { border-top-left-radius: 11px; border-top-right-radius: 11px; bottom: 0px; box-shadow: 0px 5px 51px 0px rgba(255, 204, 102, 0.46); flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HipSL .framer-1vb25b9, .framer-HipSL .framer-18op1tj { aspect-ratio: 1.3333333333333333 / 1; background-color: #000000; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 23px 51px 0px rgba(255, 204, 102, 0.46); flex: none; height: var(--framer-aspect-ratio-supported, 240px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HipSL .framer-maehsp, .framer-HipSL .framer-1xwq0wz, .framer-HipSL .framer-fdk6gf, .framer-HipSL .framer-sjskbw, .framer-HipSL .framer-2duh4y, .framer-HipSL .framer-tg5sb9, .framer-HipSL .framer-1ksjnsh, .framer-HipSL .framer-21agx8, .framer-HipSL .framer-11pwaok, .framer-HipSL .framer-pub1rd, .framer-HipSL .framer-u202kc, .framer-HipSL .framer-f287kt { border-top-left-radius: 11px; border-top-right-radius: 11px; bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HipSL .framer-xb6dai, .framer-HipSL .framer-coxzqb { align-content: center; align-items: center; background: linear-gradient(180deg, #ffb820 0%, rgb(255, 244, 219) 46.679757882882875%); box-shadow: 0px 23px 51px 0px rgba(255, 204, 102, 0.46); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 100%; }\",\".framer-HipSL .framer-1axq0jf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; text-shadow: 0px 23px 51px rgba(255, 204, 102, 0.46); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HipSL .framer-yl9ppv { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-HipSL .framer-4af5hh, .framer-HipSL .framer-1d2y66p, .framer-HipSL .framer-1n9wr65, .framer-HipSL .framer-1moi5jy, .framer-HipSL .framer-1uqacns, .framer-HipSL .framer-109wq8l { aspect-ratio: 1.3333333333333333 / 1; background-color: #000000; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 240px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HipSL .framer-1vrpnku, .framer-HipSL .framer-1c4azg0, .framer-HipSL .framer-abai52, .framer-HipSL .framer-1ju4aho, .framer-HipSL .framer-okqyj5, .framer-HipSL .framer-1mfg2fo, .framer-HipSL .framer-17k6gkv, .framer-HipSL .framer-avb1up, .framer-HipSL .framer-kvp7ab, .framer-HipSL .framer-1fyh0ls { align-content: center; align-items: center; background: linear-gradient(180deg, #ffb820 0%, rgb(255, 244, 219) 46.679757882882875%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 100%; }\",\".framer-HipSL .framer-s47nuj, .framer-HipSL .framer-5cur3a, .framer-HipSL .framer-1pg0coe, .framer-HipSL .framer-ua9zgk, .framer-HipSL .framer-1fqzi28, .framer-HipSL .framer-121z5zm, .framer-HipSL .framer-y38d6s, .framer-HipSL .framer-1taikky, .framer-HipSL .framer-5sdw2h, .framer-HipSL .framer-ww59ow, .framer-HipSL .framer-tn3cyz, .framer-HipSL .framer-wpsr55, .framer-HipSL .framer-18q2s0o, .framer-HipSL .framer-1uo8ns6, .framer-HipSL .framer-3n3wan, .framer-HipSL .framer-1t5m16y, .framer-HipSL .framer-13s7vfh, .framer-HipSL .framer-1vm0cj4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HipSL .framer-hty5hu, .framer-HipSL .framer-12y3xi4 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-HipSL .framer-2i5ntu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-HipSL .framer-3a3xzy, .framer-HipSL .framer-xfllyn, .framer-HipSL .framer-wro1r3, .framer-HipSL .framer-1419uxu { aspect-ratio: 1.3333333333333333 / 1; background-color: #000000; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 150px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HipSL .framer-aqmhks-container, .framer-HipSL .framer-v1wjgi-container, .framer-HipSL .framer-1aku4wl-container, .framer-HipSL .framer-1hpijnb-container, .framer-HipSL .framer-1jbanww-container, .framer-HipSL .framer-9yahb6-container, .framer-HipSL .framer-15jtbyx-container, .framer-HipSL .framer-1iquo5l-container, .framer-HipSL .framer-11rk6f7-container, .framer-HipSL .framer-tb2b74-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 20px; }\",\".framer-HipSL .framer-1v58hw1 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-HipSL .framer-9bpgvr, .framer-HipSL .framer-1w2apru { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1008px; }\",\".framer-HipSL .framer-125mwbz, .framer-HipSL .framer-9csvth, .framer-HipSL .framer-1fbnk87, .framer-HipSL .framer-ki2n3z, .framer-HipSL .framer-6z97kr, .framer-HipSL .framer-1lv2egl { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HipSL .framer-uztxd0, .framer-HipSL .framer-1vj0kh7, .framer-HipSL .framer-1pdg233, .framer-HipSL .framer-kfmt7l, .framer-HipSL .framer-17p39vd, .framer-HipSL .framer-1kyv3tw { aspect-ratio: 1.3333333333333333 / 1; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 150px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HipSL .framer-kzdrrm, .framer-HipSL .framer-1f572zx, .framer-HipSL .framer-elbi2r, .framer-HipSL .framer-zaw3sm, .framer-HipSL .framer-xsmcuw, .framer-HipSL .framer-14paxix { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 100%; }\",\".framer-HipSL .framer-1jb38e3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-HipSL .framer-ckuq6i { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 0px 0px 100px 0px; position: relative; width: 1px; }\",\".framer-HipSL .framer-3ekjpl { -webkit-filter: blur(67px); background-color: var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, #bf3313); border-bottom-left-radius: 210px; border-bottom-right-radius: 210px; border-top-left-radius: 210px; border-top-right-radius: 210px; filter: blur(67px); flex: none; height: 148px; left: calc(46.66666666666669% - 589px / 2); overflow: hidden; position: absolute; top: -107px; width: 589px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-HipSL .framer-1cdop8l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; opacity: 0.23; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre; width: 100%; z-index: 0; }\",\".framer-HipSL .framer-1xrpcii { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HipSL .framer-2xzbt9-container { flex: none; height: 805px; position: relative; width: 659px; z-index: 1; }\",\".framer-HipSL .framer-1tm2oi2 { aspect-ratio: 2.164328657314629 / 1; border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; height: var(--framer-aspect-ratio-supported, 250px); overflow: visible; position: relative; width: 540px; }\",\".framer-HipSL .framer-bz61mz { aspect-ratio: 2.142857142857143 / 1; border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; height: var(--framer-aspect-ratio-supported, 252px); overflow: visible; position: relative; width: 540px; }\",\".framer-HipSL .framer-1xsgwqm { aspect-ratio: 1.5629522431259044 / 1; border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; height: var(--framer-aspect-ratio-supported, 346px); overflow: visible; position: relative; width: 540px; }\",\".framer-HipSL .framer-1trvvy7 { aspect-ratio: 2.4545454545454546 / 1; border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; height: var(--framer-aspect-ratio-supported, 220px); overflow: visible; position: relative; width: 540px; }\",\".framer-HipSL .framer-wsvusb { aspect-ratio: 2.461187214611872 / 1; border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; height: var(--framer-aspect-ratio-supported, 219px); overflow: visible; position: relative; width: 539px; }\",\".framer-HipSL .framer-1ruvp6l { aspect-ratio: 1.386392811296534 / 1; border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; height: var(--framer-aspect-ratio-supported, 390px); overflow: visible; position: relative; width: 540px; }\",\".framer-HipSL .framer-8cwc2n { aspect-ratio: 2.231404958677686 / 1; border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; height: var(--framer-aspect-ratio-supported, 242px); overflow: visible; position: relative; width: 540px; }\",\".framer-HipSL .framer-vz6ou8 { aspect-ratio: 1.719298245614035 / 1; border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; height: var(--framer-aspect-ratio-supported, 314px); overflow: visible; position: relative; width: 539px; }\",'.framer-HipSL .framer-ytbrlw { background: linear-gradient(0deg, var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, #000000) /* {\"name\":\"Dark Green\"} */ 0%, rgba(0, 0, 0, 0) 100%); bottom: 0px; flex: none; height: 90px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; z-index: 1; }','.framer-HipSL .framer-10as3a1 { background: radial-gradient(69.3% 75% at 50% 100%, var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, #bf3313) /* {\"name\":\"Light Green\"} */ 0%, rgba(0, 0, 0, 0) 100%); flex: none; height: 105px; left: calc(50.00000000000002% - 330px / 2); overflow: hidden; position: absolute; top: 0px; width: 330px; z-index: 1; }',\".framer-HipSL .framer-9cnlhe, .framer-HipSL .framer-8gcxwy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 969px; word-break: break-word; word-wrap: break-word; }\",\".framer-HipSL .framer-bpm6th-container, .framer-HipSL .framer-2ioa40-container, .framer-HipSL .framer-1tz5qt-container, .framer-HipSL .framer-5hyg8u-container { flex: none; height: 425px; position: relative; width: 100%; z-index: 1; }\",\".framer-HipSL .framer-12nxsbk-container, .framer-HipSL .framer-1coutfn-container, .framer-HipSL .framer-1hb0nsn-container, .framer-HipSL .framer-1y3i0nf-container, .framer-HipSL .framer-1v2e8w1-container, .framer-HipSL .framer-2ijrog-container, .framer-HipSL .framer-1f9e25y-container, .framer-HipSL .framer-1jl7xv-container, .framer-HipSL .framer-1wk6j20-container { height: 320px; position: relative; width: 180px; }\",\".framer-HipSL .framer-qbj6dt-container, .framer-HipSL .framer-1os91fg-container, .framer-HipSL .framer-u1dp1a-container { height: 320px; position: relative; width: 176px; }\",\".framer-HipSL .framer-17tncu9, .framer-HipSL .framer-o6dgbz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-HipSL .framer-1mng6ye { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-HipSL .framer-18fk8li-container { flex: none; height: auto; max-width: 1440px; position: relative; width: 100%; }\",\".framer-HipSL .framer-x3dn5k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HipSL .framer-1wd7iy1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 460px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HipSL .framer-1s6yyb6 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-end; overflow: hidden; padding: 30px; position: relative; width: 61%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HipSL .framer-1e8ossu { 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: center; min-height: 52px; overflow: hidden; padding: 0px; position: relative; width: 50%; }\",\".framer-HipSL .framer-3wze62 { align-content: flex-start; align-items: flex-start; background-color: var(--token-2c77483b-74d5-40f8-b894-5fb4dc69010e, #1f1d1d); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HipSL .framer-ftuw84, .framer-HipSL .framer-elyyqd { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HipSL .framer-tgmao9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 90px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HipSL .framer-1nxcxry, .framer-HipSL .framer-g4ukzm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-HipSL .framer-1l4gopw { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 279px; overflow: hidden; position: relative; width: 270px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HipSL .framer-k3hsuw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.8; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HipSL .framer-te7zln { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 460px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HipSL .framer-1smoyra { align-content: center; align-items: center; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HipSL .framer-13o8rur { --border-bottom-width: 1px; --border-color: var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(8px); aspect-ratio: 1 / 1; backdrop-filter: blur(8px); border-bottom-left-radius: 350px; border-bottom-right-radius: 350px; border-top-left-radius: 350px; border-top-right-radius: 350px; flex: none; height: var(--framer-aspect-ratio-supported, 366px); overflow: hidden; position: relative; width: 366px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HipSL .framer-1jmnool-container { bottom: 0px; cursor: grab; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); width: auto; z-index: 1; }\",\".framer-HipSL .framer-1r0o321-container { bottom: 47px; cursor: grab; flex: none; height: auto; left: 47px; position: absolute; width: auto; z-index: 1; }\",\".framer-HipSL .framer-trja7f-container { bottom: 37px; cursor: grab; flex: none; height: auto; left: 222px; position: absolute; width: auto; z-index: 1; }\",\".framer-HipSL .framer-mvrr88-container { bottom: 91px; cursor: grab; flex: none; height: auto; left: 201px; position: absolute; width: auto; z-index: 1; }\",\".framer-HipSL .framer-p5yo2r-container { bottom: 101px; cursor: grab; flex: none; height: auto; left: 48%; position: absolute; transform: translateX(-50%); width: auto; z-index: 1; }\",\".framer-HipSL .framer-3063ph-container { bottom: 151px; cursor: grab; flex: none; height: auto; left: -5px; position: absolute; width: auto; z-index: 1; }\",\".framer-HipSL .framer-1rsmndz-container { bottom: 154px; cursor: grab; flex: none; height: auto; left: 125px; position: absolute; width: auto; z-index: 1; }\",\".framer-HipSL .framer-t2hhas-container { bottom: 208px; cursor: grab; flex: none; height: auto; left: 17px; position: absolute; width: auto; z-index: 1; }\",\".framer-HipSL .framer-1mb7acv-container { bottom: 194px; cursor: grab; flex: none; height: auto; position: absolute; right: -16px; width: auto; z-index: 1; }\",\".framer-HipSL .framer-1aorcb3-container { bottom: 255px; cursor: grab; flex: none; height: auto; left: 192px; position: absolute; width: auto; z-index: 1; }\",\".framer-HipSL .framer-6cy7es-container { bottom: 273px; cursor: grab; flex: none; height: auto; left: 28px; position: absolute; width: auto; z-index: 1; }\",\".framer-HipSL .framer-n263oc { align-content: flex-end; align-items: flex-end; background: linear-gradient(180deg, #fff4db -75%, rgb(255, 184, 32) 67%); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 30px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HipSL .framer-1b8zfmf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 46px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HipSL .framer-13q9ede { border-bottom-left-radius: 19px; border-bottom-right-radius: 19px; border-top-left-radius: 19px; border-top-right-radius: 19px; flex: none; height: 269px; overflow: hidden; position: relative; width: 434px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HipSL .framer-1rxwpr7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HipSL .framer-19j62tj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-HipSL .framer-dv02ol-container { flex: none; height: auto; max-width: 1000px; position: relative; width: 100%; }\",\".framer-HipSL .framer-1p5toq1 { align-content: center; align-items: center; background: conic-gradient(from 0deg at 50% 50%, #FFF29F 0deg, #FFA52C 360deg); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-HipSL .framer-9h0r09 { align-content: center; align-items: center; align-self: stretch; background: radial-gradient(313% 50% at 50% 50%, #FFF29F 0%, #FFA52C 100%); border-bottom-right-radius: 60px; border-top-right-radius: 60px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HipSL .framer-15r6d16 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 400px; }\",\".framer-HipSL .framer-1b13485 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HipSL .framer-177vv3c { aspect-ratio: 3.3756906077348066 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 69px); overflow: visible; position: relative; text-decoration: none; width: 230px; }\",\".framer-HipSL .framer-n58404 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HipSL .framer-14rumow { aspect-ratio: 0.5671191553544495 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 475px); overflow: visible; position: relative; width: 269px; }\",\".framer-HipSL .framer-1bn53kh-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-HipSL.framer-hvzz3m, .framer-HipSL .framer-123wqig, .framer-HipSL .framer-1ma85oo, .framer-HipSL .framer-j1yqbq, .framer-HipSL .framer-j4z2v, .framer-HipSL .framer-4w8l5h, .framer-HipSL .framer-fo77gx, .framer-HipSL .framer-r4ysuh, .framer-HipSL .framer-1v0fo4u, .framer-HipSL .framer-cw8kqr, .framer-HipSL .framer-w2z4jf, .framer-HipSL .framer-npr9dt, .framer-HipSL .framer-1v6ikjb, .framer-HipSL .framer-10sgllq, .framer-HipSL .framer-1kis7qc, .framer-HipSL .framer-hhormq, .framer-HipSL .framer-1agq9i8, .framer-HipSL .framer-1tufv8m, .framer-HipSL .framer-1gfdqz2, .framer-HipSL .framer-fav9ul, .framer-HipSL .framer-b65g9w, .framer-HipSL .framer-qql7gy, .framer-HipSL .framer-1lsuewo, .framer-HipSL .framer-12xr15i, .framer-HipSL .framer-1j75io, .framer-HipSL .framer-rxr654, .framer-HipSL .framer-pncfiz, .framer-HipSL .framer-htzfal, .framer-HipSL .framer-p969gh, .framer-HipSL .framer-sitjoj, .framer-HipSL .framer-16dexx5, .framer-HipSL .framer-1vsy7o3, .framer-HipSL .framer-1f6vsv0, .framer-HipSL .framer-1es3vbt, .framer-HipSL .framer-9lp0so, .framer-HipSL .framer-1y8xkc3, .framer-HipSL .framer-x98tfq, .framer-HipSL .framer-snp4xa, .framer-HipSL .framer-k1ehvy, .framer-HipSL .framer-3cy87n, .framer-HipSL .framer-nme5kn, .framer-HipSL .framer-13i150l, .framer-HipSL .framer-1eeangb, .framer-HipSL .framer-xb6dai, .framer-HipSL .framer-1r2f2rz, .framer-HipSL .framer-qnrkt5, .framer-HipSL .framer-1yfewx9, .framer-HipSL .framer-dr98w, .framer-HipSL .framer-yl9ppv, .framer-HipSL .framer-9hpo1d, .framer-HipSL .framer-1vrpnku, .framer-HipSL .framer-b4spsv, .framer-HipSL .framer-nlcksc, .framer-HipSL .framer-aj49dy, .framer-HipSL .framer-isq4o5, .framer-HipSL .framer-ykg6zg, .framer-HipSL .framer-1c4azg0, .framer-HipSL .framer-ublfdq, .framer-HipSL .framer-njhisf, .framer-HipSL .framer-568lrc, .framer-HipSL .framer-16o6o2u, .framer-HipSL .framer-c6yjsm, .framer-HipSL .framer-abai52, .framer-HipSL .framer-1vl6xir, .framer-HipSL .framer-1ph9rsq, .framer-HipSL .framer-1cr4iay, .framer-HipSL .framer-1gscd9m, .framer-HipSL .framer-vdjuf4, .framer-HipSL .framer-coxzqb, .framer-HipSL .framer-kao027, .framer-HipSL .framer-9v8k96, .framer-HipSL .framer-1v4tf4p, .framer-HipSL .framer-jf4s1, .framer-HipSL .framer-hty5hu, .framer-HipSL .framer-106w6mt, .framer-HipSL .framer-1ju4aho, .framer-HipSL .framer-1a8vaqq, .framer-HipSL .framer-141e2dg, .framer-HipSL .framer-n9r3ys, .framer-HipSL .framer-bw3bnc, .framer-HipSL .framer-1ba9hb7, .framer-HipSL .framer-okqyj5, .framer-HipSL .framer-10ncij1, .framer-HipSL .framer-1pzvs66, .framer-HipSL .framer-1m4sej4, .framer-HipSL .framer-tnyvgn, .framer-HipSL .framer-5n556l, .framer-HipSL .framer-1mfg2fo, .framer-HipSL .framer-2i5ntu, .framer-HipSL .framer-eq1ej1, .framer-HipSL .framer-1l6mrv, .framer-HipSL .framer-4aln0o, .framer-HipSL .framer-12y3xi4, .framer-HipSL .framer-mn06ky, .framer-HipSL .framer-17k6gkv, .framer-HipSL .framer-12k7d21, .framer-HipSL .framer-fn8m35, .framer-HipSL .framer-10hbduz, .framer-HipSL .framer-1t53mt3, .framer-HipSL .framer-5olfbg, .framer-HipSL .framer-avb1up, .framer-HipSL .framer-dhwg4y, .framer-HipSL .framer-qqnhdz, .framer-HipSL .framer-1a3f8sx, .framer-HipSL .framer-1ugawt5, .framer-HipSL .framer-1fbbo50, .framer-HipSL .framer-kvp7ab, .framer-HipSL .framer-nxc2rn, .framer-HipSL .framer-1obv2f1, .framer-HipSL .framer-1hygtwj, .framer-HipSL .framer-qzalco, .framer-HipSL .framer-1v58hw1, .framer-HipSL .framer-1750n0d, .framer-HipSL .framer-1fyh0ls, .framer-HipSL .framer-43khsa, .framer-HipSL .framer-1b785i3, .framer-HipSL .framer-swhxxw, .framer-HipSL .framer-r9zw4s, .framer-HipSL .framer-9bpgvr, .framer-HipSL .framer-125mwbz, .framer-HipSL .framer-kzdrrm, .framer-HipSL .framer-10x8h78, .framer-HipSL .framer-15gqme9, .framer-HipSL .framer-1t4q3jk, .framer-HipSL .framer-9csvth, .framer-HipSL .framer-1f572zx, .framer-HipSL .framer-105a0iq, .framer-HipSL .framer-44eog3, .framer-HipSL .framer-1nksz9q, .framer-HipSL .framer-1fbnk87, .framer-HipSL .framer-elbi2r, .framer-HipSL .framer-k7x900, .framer-HipSL .framer-1jizksz, .framer-HipSL .framer-werwha, .framer-HipSL .framer-1w2apru, .framer-HipSL .framer-ki2n3z, .framer-HipSL .framer-zaw3sm, .framer-HipSL .framer-6obhzn, .framer-HipSL .framer-z2nu95, .framer-HipSL .framer-13ebdv9, .framer-HipSL .framer-6z97kr, .framer-HipSL .framer-xsmcuw, .framer-HipSL .framer-1by4eoe, .framer-HipSL .framer-floz0a, .framer-HipSL .framer-18xv2mx, .framer-HipSL .framer-1lv2egl, .framer-HipSL .framer-14paxix, .framer-HipSL .framer-15nkjtz, .framer-HipSL .framer-1r90mf9, .framer-HipSL .framer-1lbd4cp, .framer-HipSL .framer-1jb38e3, .framer-HipSL .framer-ckuq6i, .framer-HipSL .framer-1xrpcii, .framer-HipSL .framer-17tncu9, .framer-HipSL .framer-1mng6ye, .framer-HipSL .framer-x3dn5k, .framer-HipSL .framer-1wd7iy1, .framer-HipSL .framer-1s6yyb6, .framer-HipSL .framer-1e8ossu, .framer-HipSL .framer-ftuw84, .framer-HipSL .framer-te7zln, .framer-HipSL .framer-1smoyra, .framer-HipSL .framer-elyyqd, .framer-HipSL .framer-o6dgbz, .framer-HipSL .framer-19j62tj, .framer-HipSL .framer-1p5toq1, .framer-HipSL .framer-9h0r09, .framer-HipSL .framer-15r6d16, .framer-HipSL .framer-n58404 { gap: 0px; } .framer-HipSL.framer-hvzz3m > *, .framer-HipSL .framer-1ma85oo > *, .framer-HipSL .framer-1lsuewo > *, .framer-HipSL .framer-sitjoj > *, .framer-HipSL .framer-x98tfq > *, .framer-HipSL .framer-1eeangb > *, .framer-HipSL .framer-9hpo1d > *, .framer-HipSL .framer-ykg6zg > *, .framer-HipSL .framer-c6yjsm > *, .framer-HipSL .framer-vdjuf4 > *, .framer-HipSL .framer-106w6mt > *, .framer-HipSL .framer-1ba9hb7 > *, .framer-HipSL .framer-5n556l > *, .framer-HipSL .framer-mn06ky > *, .framer-HipSL .framer-5olfbg > *, .framer-HipSL .framer-1fbbo50 > *, .framer-HipSL .framer-1750n0d > *, .framer-HipSL .framer-125mwbz > *, .framer-HipSL .framer-9csvth > *, .framer-HipSL .framer-1fbnk87 > *, .framer-HipSL .framer-ki2n3z > *, .framer-HipSL .framer-6z97kr > *, .framer-HipSL .framer-1lv2egl > *, .framer-HipSL .framer-1e8ossu > *, .framer-HipSL .framer-ftuw84 > *, .framer-HipSL .framer-elyyqd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-HipSL.framer-hvzz3m > :first-child, .framer-HipSL .framer-1ma85oo > :first-child, .framer-HipSL .framer-j1yqbq > :first-child, .framer-HipSL .framer-j4z2v > :first-child, .framer-HipSL .framer-4w8l5h > :first-child, .framer-HipSL .framer-w2z4jf > :first-child, .framer-HipSL .framer-b65g9w > :first-child, .framer-HipSL .framer-1lsuewo > :first-child, .framer-HipSL .framer-1j75io > :first-child, .framer-HipSL .framer-rxr654 > :first-child, .framer-HipSL .framer-p969gh > :first-child, .framer-HipSL .framer-sitjoj > :first-child, .framer-HipSL .framer-1vsy7o3 > :first-child, .framer-HipSL .framer-1f6vsv0 > :first-child, .framer-HipSL .framer-1y8xkc3 > :first-child, .framer-HipSL .framer-x98tfq > :first-child, .framer-HipSL .framer-snp4xa > :first-child, .framer-HipSL .framer-k1ehvy > :first-child, .framer-HipSL .framer-13i150l > :first-child, .framer-HipSL .framer-1eeangb > :first-child, .framer-HipSL .framer-xb6dai > :first-child, .framer-HipSL .framer-1r2f2rz > :first-child, .framer-HipSL .framer-dr98w > :first-child, .framer-HipSL .framer-9hpo1d > :first-child, .framer-HipSL .framer-1vrpnku > :first-child, .framer-HipSL .framer-b4spsv > :first-child, .framer-HipSL .framer-isq4o5 > :first-child, .framer-HipSL .framer-ykg6zg > :first-child, .framer-HipSL .framer-1c4azg0 > :first-child, .framer-HipSL .framer-ublfdq > :first-child, .framer-HipSL .framer-16o6o2u > :first-child, .framer-HipSL .framer-c6yjsm > :first-child, .framer-HipSL .framer-abai52 > :first-child, .framer-HipSL .framer-1vl6xir > :first-child, .framer-HipSL .framer-1gscd9m > :first-child, .framer-HipSL .framer-vdjuf4 > :first-child, .framer-HipSL .framer-coxzqb > :first-child, .framer-HipSL .framer-kao027 > :first-child, .framer-HipSL .framer-jf4s1 > :first-child, .framer-HipSL .framer-106w6mt > :first-child, .framer-HipSL .framer-1ju4aho > :first-child, .framer-HipSL .framer-1a8vaqq > :first-child, .framer-HipSL .framer-bw3bnc > :first-child, .framer-HipSL .framer-1ba9hb7 > :first-child, .framer-HipSL .framer-okqyj5 > :first-child, .framer-HipSL .framer-10ncij1 > :first-child, .framer-HipSL .framer-tnyvgn > :first-child, .framer-HipSL .framer-5n556l > :first-child, .framer-HipSL .framer-1mfg2fo > :first-child, .framer-HipSL .framer-2i5ntu > :first-child, .framer-HipSL .framer-4aln0o > :first-child, .framer-HipSL .framer-mn06ky > :first-child, .framer-HipSL .framer-17k6gkv > :first-child, .framer-HipSL .framer-12k7d21 > :first-child, .framer-HipSL .framer-1t53mt3 > :first-child, .framer-HipSL .framer-5olfbg > :first-child, .framer-HipSL .framer-avb1up > :first-child, .framer-HipSL .framer-dhwg4y > :first-child, .framer-HipSL .framer-1ugawt5 > :first-child, .framer-HipSL .framer-1fbbo50 > :first-child, .framer-HipSL .framer-kvp7ab > :first-child, .framer-HipSL .framer-nxc2rn > :first-child, .framer-HipSL .framer-qzalco > :first-child, .framer-HipSL .framer-1v58hw1 > :first-child, .framer-HipSL .framer-1750n0d > :first-child, .framer-HipSL .framer-1fyh0ls > :first-child, .framer-HipSL .framer-43khsa > :first-child, .framer-HipSL .framer-r9zw4s > :first-child, .framer-HipSL .framer-125mwbz > :first-child, .framer-HipSL .framer-kzdrrm > :first-child, .framer-HipSL .framer-1t4q3jk > :first-child, .framer-HipSL .framer-9csvth > :first-child, .framer-HipSL .framer-1f572zx > :first-child, .framer-HipSL .framer-1nksz9q > :first-child, .framer-HipSL .framer-1fbnk87 > :first-child, .framer-HipSL .framer-elbi2r > :first-child, .framer-HipSL .framer-werwha > :first-child, .framer-HipSL .framer-ki2n3z > :first-child, .framer-HipSL .framer-zaw3sm > :first-child, .framer-HipSL .framer-13ebdv9 > :first-child, .framer-HipSL .framer-6z97kr > :first-child, .framer-HipSL .framer-xsmcuw > :first-child, .framer-HipSL .framer-18xv2mx > :first-child, .framer-HipSL .framer-1lv2egl > :first-child, .framer-HipSL .framer-14paxix > :first-child, .framer-HipSL .framer-1lbd4cp > :first-child, .framer-HipSL .framer-ckuq6i > :first-child, .framer-HipSL .framer-1mng6ye > :first-child, .framer-HipSL .framer-x3dn5k > :first-child, .framer-HipSL .framer-1s6yyb6 > :first-child, .framer-HipSL .framer-1e8ossu > :first-child, .framer-HipSL .framer-ftuw84 > :first-child, .framer-HipSL .framer-1smoyra > :first-child, .framer-HipSL .framer-elyyqd > :first-child, .framer-HipSL .framer-19j62tj > :first-child, .framer-HipSL .framer-15r6d16 > :first-child, .framer-HipSL .framer-n58404 > :first-child { margin-top: 0px; } .framer-HipSL.framer-hvzz3m > :last-child, .framer-HipSL .framer-1ma85oo > :last-child, .framer-HipSL .framer-j1yqbq > :last-child, .framer-HipSL .framer-j4z2v > :last-child, .framer-HipSL .framer-4w8l5h > :last-child, .framer-HipSL .framer-w2z4jf > :last-child, .framer-HipSL .framer-b65g9w > :last-child, .framer-HipSL .framer-1lsuewo > :last-child, .framer-HipSL .framer-1j75io > :last-child, .framer-HipSL .framer-rxr654 > :last-child, .framer-HipSL .framer-p969gh > :last-child, .framer-HipSL .framer-sitjoj > :last-child, .framer-HipSL .framer-1vsy7o3 > :last-child, .framer-HipSL .framer-1f6vsv0 > :last-child, .framer-HipSL .framer-1y8xkc3 > :last-child, .framer-HipSL .framer-x98tfq > :last-child, .framer-HipSL .framer-snp4xa > :last-child, .framer-HipSL .framer-k1ehvy > :last-child, .framer-HipSL .framer-13i150l > :last-child, .framer-HipSL .framer-1eeangb > :last-child, .framer-HipSL .framer-xb6dai > :last-child, .framer-HipSL .framer-1r2f2rz > :last-child, .framer-HipSL .framer-dr98w > :last-child, .framer-HipSL .framer-9hpo1d > :last-child, .framer-HipSL .framer-1vrpnku > :last-child, .framer-HipSL .framer-b4spsv > :last-child, .framer-HipSL .framer-isq4o5 > :last-child, .framer-HipSL .framer-ykg6zg > :last-child, .framer-HipSL .framer-1c4azg0 > :last-child, .framer-HipSL .framer-ublfdq > :last-child, .framer-HipSL .framer-16o6o2u > :last-child, .framer-HipSL .framer-c6yjsm > :last-child, .framer-HipSL .framer-abai52 > :last-child, .framer-HipSL .framer-1vl6xir > :last-child, .framer-HipSL .framer-1gscd9m > :last-child, .framer-HipSL .framer-vdjuf4 > :last-child, .framer-HipSL .framer-coxzqb > :last-child, .framer-HipSL .framer-kao027 > :last-child, .framer-HipSL .framer-jf4s1 > :last-child, .framer-HipSL .framer-106w6mt > :last-child, .framer-HipSL .framer-1ju4aho > :last-child, .framer-HipSL .framer-1a8vaqq > :last-child, .framer-HipSL .framer-bw3bnc > :last-child, .framer-HipSL .framer-1ba9hb7 > :last-child, .framer-HipSL .framer-okqyj5 > :last-child, .framer-HipSL .framer-10ncij1 > :last-child, .framer-HipSL .framer-tnyvgn > :last-child, .framer-HipSL .framer-5n556l > :last-child, .framer-HipSL .framer-1mfg2fo > :last-child, .framer-HipSL .framer-2i5ntu > :last-child, .framer-HipSL .framer-4aln0o > :last-child, .framer-HipSL .framer-mn06ky > :last-child, .framer-HipSL .framer-17k6gkv > :last-child, .framer-HipSL .framer-12k7d21 > :last-child, .framer-HipSL .framer-1t53mt3 > :last-child, .framer-HipSL .framer-5olfbg > :last-child, .framer-HipSL .framer-avb1up > :last-child, .framer-HipSL .framer-dhwg4y > :last-child, .framer-HipSL .framer-1ugawt5 > :last-child, .framer-HipSL .framer-1fbbo50 > :last-child, .framer-HipSL .framer-kvp7ab > :last-child, .framer-HipSL .framer-nxc2rn > :last-child, .framer-HipSL .framer-qzalco > :last-child, .framer-HipSL .framer-1v58hw1 > :last-child, .framer-HipSL .framer-1750n0d > :last-child, .framer-HipSL .framer-1fyh0ls > :last-child, .framer-HipSL .framer-43khsa > :last-child, .framer-HipSL .framer-r9zw4s > :last-child, .framer-HipSL .framer-125mwbz > :last-child, .framer-HipSL .framer-kzdrrm > :last-child, .framer-HipSL .framer-1t4q3jk > :last-child, .framer-HipSL .framer-9csvth > :last-child, .framer-HipSL .framer-1f572zx > :last-child, .framer-HipSL .framer-1nksz9q > :last-child, .framer-HipSL .framer-1fbnk87 > :last-child, .framer-HipSL .framer-elbi2r > :last-child, .framer-HipSL .framer-werwha > :last-child, .framer-HipSL .framer-ki2n3z > :last-child, .framer-HipSL .framer-zaw3sm > :last-child, .framer-HipSL .framer-13ebdv9 > :last-child, .framer-HipSL .framer-6z97kr > :last-child, .framer-HipSL .framer-xsmcuw > :last-child, .framer-HipSL .framer-18xv2mx > :last-child, .framer-HipSL .framer-1lv2egl > :last-child, .framer-HipSL .framer-14paxix > :last-child, .framer-HipSL .framer-1lbd4cp > :last-child, .framer-HipSL .framer-ckuq6i > :last-child, .framer-HipSL .framer-1mng6ye > :last-child, .framer-HipSL .framer-x3dn5k > :last-child, .framer-HipSL .framer-1s6yyb6 > :last-child, .framer-HipSL .framer-1e8ossu > :last-child, .framer-HipSL .framer-ftuw84 > :last-child, .framer-HipSL .framer-1smoyra > :last-child, .framer-HipSL .framer-elyyqd > :last-child, .framer-HipSL .framer-19j62tj > :last-child, .framer-HipSL .framer-15r6d16 > :last-child, .framer-HipSL .framer-n58404 > :last-child { margin-bottom: 0px; } .framer-HipSL .framer-123wqig > *, .framer-HipSL .framer-fo77gx > *, .framer-HipSL .framer-r4ysuh > *, .framer-HipSL .framer-cw8kqr > *, .framer-HipSL .framer-npr9dt > *, .framer-HipSL .framer-1v6ikjb > *, .framer-HipSL .framer-10sgllq > *, .framer-HipSL .framer-1kis7qc > *, .framer-HipSL .framer-hhormq > *, .framer-HipSL .framer-1agq9i8 > *, .framer-HipSL .framer-1tufv8m > *, .framer-HipSL .framer-1gfdqz2 > *, .framer-HipSL .framer-fav9ul > *, .framer-HipSL .framer-12xr15i > *, .framer-HipSL .framer-htzfal > *, .framer-HipSL .framer-16dexx5 > *, .framer-HipSL .framer-9lp0so > *, .framer-HipSL .framer-nme5kn > *, .framer-HipSL .framer-1yfewx9 > *, .framer-HipSL .framer-aj49dy > *, .framer-HipSL .framer-568lrc > *, .framer-HipSL .framer-1cr4iay > *, .framer-HipSL .framer-1v4tf4p > *, .framer-HipSL .framer-n9r3ys > *, .framer-HipSL .framer-1m4sej4 > *, .framer-HipSL .framer-1l6mrv > *, .framer-HipSL .framer-10hbduz > *, .framer-HipSL .framer-1a3f8sx > *, .framer-HipSL .framer-1hygtwj > *, .framer-HipSL .framer-swhxxw > *, .framer-HipSL .framer-15gqme9 > *, .framer-HipSL .framer-44eog3 > *, .framer-HipSL .framer-1jizksz > *, .framer-HipSL .framer-z2nu95 > *, .framer-HipSL .framer-floz0a > *, .framer-HipSL .framer-1r90mf9 > *, .framer-HipSL .framer-1xrpcii > *, .framer-HipSL .framer-1wd7iy1 > *, .framer-HipSL .framer-te7zln > *, .framer-HipSL .framer-9h0r09 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-HipSL .framer-123wqig > :first-child, .framer-HipSL .framer-fo77gx > :first-child, .framer-HipSL .framer-r4ysuh > :first-child, .framer-HipSL .framer-1v0fo4u > :first-child, .framer-HipSL .framer-cw8kqr > :first-child, .framer-HipSL .framer-npr9dt > :first-child, .framer-HipSL .framer-1v6ikjb > :first-child, .framer-HipSL .framer-10sgllq > :first-child, .framer-HipSL .framer-1kis7qc > :first-child, .framer-HipSL .framer-hhormq > :first-child, .framer-HipSL .framer-1agq9i8 > :first-child, .framer-HipSL .framer-1tufv8m > :first-child, .framer-HipSL .framer-1gfdqz2 > :first-child, .framer-HipSL .framer-fav9ul > :first-child, .framer-HipSL .framer-qql7gy > :first-child, .framer-HipSL .framer-12xr15i > :first-child, .framer-HipSL .framer-pncfiz > :first-child, .framer-HipSL .framer-htzfal > :first-child, .framer-HipSL .framer-16dexx5 > :first-child, .framer-HipSL .framer-1es3vbt > :first-child, .framer-HipSL .framer-9lp0so > :first-child, .framer-HipSL .framer-3cy87n > :first-child, .framer-HipSL .framer-nme5kn > :first-child, .framer-HipSL .framer-qnrkt5 > :first-child, .framer-HipSL .framer-1yfewx9 > :first-child, .framer-HipSL .framer-yl9ppv > :first-child, .framer-HipSL .framer-nlcksc > :first-child, .framer-HipSL .framer-aj49dy > :first-child, .framer-HipSL .framer-njhisf > :first-child, .framer-HipSL .framer-568lrc > :first-child, .framer-HipSL .framer-1ph9rsq > :first-child, .framer-HipSL .framer-1cr4iay > :first-child, .framer-HipSL .framer-9v8k96 > :first-child, .framer-HipSL .framer-1v4tf4p > :first-child, .framer-HipSL .framer-hty5hu > :first-child, .framer-HipSL .framer-141e2dg > :first-child, .framer-HipSL .framer-n9r3ys > :first-child, .framer-HipSL .framer-1pzvs66 > :first-child, .framer-HipSL .framer-1m4sej4 > :first-child, .framer-HipSL .framer-eq1ej1 > :first-child, .framer-HipSL .framer-1l6mrv > :first-child, .framer-HipSL .framer-12y3xi4 > :first-child, .framer-HipSL .framer-fn8m35 > :first-child, .framer-HipSL .framer-10hbduz > :first-child, .framer-HipSL .framer-qqnhdz > :first-child, .framer-HipSL .framer-1a3f8sx > :first-child, .framer-HipSL .framer-1obv2f1 > :first-child, .framer-HipSL .framer-1hygtwj > :first-child, .framer-HipSL .framer-1b785i3 > :first-child, .framer-HipSL .framer-swhxxw > :first-child, .framer-HipSL .framer-9bpgvr > :first-child, .framer-HipSL .framer-10x8h78 > :first-child, .framer-HipSL .framer-15gqme9 > :first-child, .framer-HipSL .framer-105a0iq > :first-child, .framer-HipSL .framer-44eog3 > :first-child, .framer-HipSL .framer-k7x900 > :first-child, .framer-HipSL .framer-1jizksz > :first-child, .framer-HipSL .framer-1w2apru > :first-child, .framer-HipSL .framer-6obhzn > :first-child, .framer-HipSL .framer-z2nu95 > :first-child, .framer-HipSL .framer-1by4eoe > :first-child, .framer-HipSL .framer-floz0a > :first-child, .framer-HipSL .framer-15nkjtz > :first-child, .framer-HipSL .framer-1r90mf9 > :first-child, .framer-HipSL .framer-1jb38e3 > :first-child, .framer-HipSL .framer-1xrpcii > :first-child, .framer-HipSL .framer-17tncu9 > :first-child, .framer-HipSL .framer-1wd7iy1 > :first-child, .framer-HipSL .framer-te7zln > :first-child, .framer-HipSL .framer-o6dgbz > :first-child, .framer-HipSL .framer-1p5toq1 > :first-child, .framer-HipSL .framer-9h0r09 > :first-child { margin-left: 0px; } .framer-HipSL .framer-123wqig > :last-child, .framer-HipSL .framer-fo77gx > :last-child, .framer-HipSL .framer-r4ysuh > :last-child, .framer-HipSL .framer-1v0fo4u > :last-child, .framer-HipSL .framer-cw8kqr > :last-child, .framer-HipSL .framer-npr9dt > :last-child, .framer-HipSL .framer-1v6ikjb > :last-child, .framer-HipSL .framer-10sgllq > :last-child, .framer-HipSL .framer-1kis7qc > :last-child, .framer-HipSL .framer-hhormq > :last-child, .framer-HipSL .framer-1agq9i8 > :last-child, .framer-HipSL .framer-1tufv8m > :last-child, .framer-HipSL .framer-1gfdqz2 > :last-child, .framer-HipSL .framer-fav9ul > :last-child, .framer-HipSL .framer-qql7gy > :last-child, .framer-HipSL .framer-12xr15i > :last-child, .framer-HipSL .framer-pncfiz > :last-child, .framer-HipSL .framer-htzfal > :last-child, .framer-HipSL .framer-16dexx5 > :last-child, .framer-HipSL .framer-1es3vbt > :last-child, .framer-HipSL .framer-9lp0so > :last-child, .framer-HipSL .framer-3cy87n > :last-child, .framer-HipSL .framer-nme5kn > :last-child, .framer-HipSL .framer-qnrkt5 > :last-child, .framer-HipSL .framer-1yfewx9 > :last-child, .framer-HipSL .framer-yl9ppv > :last-child, .framer-HipSL .framer-nlcksc > :last-child, .framer-HipSL .framer-aj49dy > :last-child, .framer-HipSL .framer-njhisf > :last-child, .framer-HipSL .framer-568lrc > :last-child, .framer-HipSL .framer-1ph9rsq > :last-child, .framer-HipSL .framer-1cr4iay > :last-child, .framer-HipSL .framer-9v8k96 > :last-child, .framer-HipSL .framer-1v4tf4p > :last-child, .framer-HipSL .framer-hty5hu > :last-child, .framer-HipSL .framer-141e2dg > :last-child, .framer-HipSL .framer-n9r3ys > :last-child, .framer-HipSL .framer-1pzvs66 > :last-child, .framer-HipSL .framer-1m4sej4 > :last-child, .framer-HipSL .framer-eq1ej1 > :last-child, .framer-HipSL .framer-1l6mrv > :last-child, .framer-HipSL .framer-12y3xi4 > :last-child, .framer-HipSL .framer-fn8m35 > :last-child, .framer-HipSL .framer-10hbduz > :last-child, .framer-HipSL .framer-qqnhdz > :last-child, .framer-HipSL .framer-1a3f8sx > :last-child, .framer-HipSL .framer-1obv2f1 > :last-child, .framer-HipSL .framer-1hygtwj > :last-child, .framer-HipSL .framer-1b785i3 > :last-child, .framer-HipSL .framer-swhxxw > :last-child, .framer-HipSL .framer-9bpgvr > :last-child, .framer-HipSL .framer-10x8h78 > :last-child, .framer-HipSL .framer-15gqme9 > :last-child, .framer-HipSL .framer-105a0iq > :last-child, .framer-HipSL .framer-44eog3 > :last-child, .framer-HipSL .framer-k7x900 > :last-child, .framer-HipSL .framer-1jizksz > :last-child, .framer-HipSL .framer-1w2apru > :last-child, .framer-HipSL .framer-6obhzn > :last-child, .framer-HipSL .framer-z2nu95 > :last-child, .framer-HipSL .framer-1by4eoe > :last-child, .framer-HipSL .framer-floz0a > :last-child, .framer-HipSL .framer-15nkjtz > :last-child, .framer-HipSL .framer-1r90mf9 > :last-child, .framer-HipSL .framer-1jb38e3 > :last-child, .framer-HipSL .framer-1xrpcii > :last-child, .framer-HipSL .framer-17tncu9 > :last-child, .framer-HipSL .framer-1wd7iy1 > :last-child, .framer-HipSL .framer-te7zln > :last-child, .framer-HipSL .framer-o6dgbz > :last-child, .framer-HipSL .framer-1p5toq1 > :last-child, .framer-HipSL .framer-9h0r09 > :last-child { margin-right: 0px; } .framer-HipSL .framer-j1yqbq > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-HipSL .framer-j4z2v > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-HipSL .framer-4w8l5h > *, .framer-HipSL .framer-b65g9w > *, .framer-HipSL .framer-1j75io > *, .framer-HipSL .framer-1vsy7o3 > *, .framer-HipSL .framer-snp4xa > *, .framer-HipSL .framer-xb6dai > *, .framer-HipSL .framer-1vrpnku > *, .framer-HipSL .framer-1c4azg0 > *, .framer-HipSL .framer-abai52 > *, .framer-HipSL .framer-coxzqb > *, .framer-HipSL .framer-1ju4aho > *, .framer-HipSL .framer-okqyj5 > *, .framer-HipSL .framer-1mfg2fo > *, .framer-HipSL .framer-17k6gkv > *, .framer-HipSL .framer-avb1up > *, .framer-HipSL .framer-kvp7ab > *, .framer-HipSL .framer-1v58hw1 > *, .framer-HipSL .framer-1fyh0ls > *, .framer-HipSL .framer-kzdrrm > *, .framer-HipSL .framer-1f572zx > *, .framer-HipSL .framer-elbi2r > *, .framer-HipSL .framer-zaw3sm > *, .framer-HipSL .framer-xsmcuw > *, .framer-HipSL .framer-14paxix > *, .framer-HipSL .framer-1s6yyb6 > *, .framer-HipSL .framer-15r6d16 > *, .framer-HipSL .framer-n58404 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-HipSL .framer-1v0fo4u > *, .framer-HipSL .framer-pncfiz > *, .framer-HipSL .framer-1es3vbt > *, .framer-HipSL .framer-3cy87n > *, .framer-HipSL .framer-qnrkt5 > *, .framer-HipSL .framer-nlcksc > *, .framer-HipSL .framer-njhisf > *, .framer-HipSL .framer-1ph9rsq > *, .framer-HipSL .framer-9v8k96 > *, .framer-HipSL .framer-141e2dg > *, .framer-HipSL .framer-1pzvs66 > *, .framer-HipSL .framer-eq1ej1 > *, .framer-HipSL .framer-fn8m35 > *, .framer-HipSL .framer-qqnhdz > *, .framer-HipSL .framer-1obv2f1 > *, .framer-HipSL .framer-1b785i3 > *, .framer-HipSL .framer-10x8h78 > *, .framer-HipSL .framer-105a0iq > *, .framer-HipSL .framer-k7x900 > *, .framer-HipSL .framer-6obhzn > *, .framer-HipSL .framer-1by4eoe > *, .framer-HipSL .framer-15nkjtz > *, .framer-HipSL .framer-1p5toq1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-HipSL .framer-w2z4jf > *, .framer-HipSL .framer-rxr654 > *, .framer-HipSL .framer-p969gh > *, .framer-HipSL .framer-1f6vsv0 > *, .framer-HipSL .framer-1y8xkc3 > *, .framer-HipSL .framer-k1ehvy > *, .framer-HipSL .framer-13i150l > *, .framer-HipSL .framer-1r2f2rz > *, .framer-HipSL .framer-dr98w > *, .framer-HipSL .framer-b4spsv > *, .framer-HipSL .framer-isq4o5 > *, .framer-HipSL .framer-ublfdq > *, .framer-HipSL .framer-16o6o2u > *, .framer-HipSL .framer-1vl6xir > *, .framer-HipSL .framer-1gscd9m > *, .framer-HipSL .framer-kao027 > *, .framer-HipSL .framer-jf4s1 > *, .framer-HipSL .framer-1a8vaqq > *, .framer-HipSL .framer-bw3bnc > *, .framer-HipSL .framer-10ncij1 > *, .framer-HipSL .framer-tnyvgn > *, .framer-HipSL .framer-2i5ntu > *, .framer-HipSL .framer-4aln0o > *, .framer-HipSL .framer-12k7d21 > *, .framer-HipSL .framer-1t53mt3 > *, .framer-HipSL .framer-dhwg4y > *, .framer-HipSL .framer-1ugawt5 > *, .framer-HipSL .framer-nxc2rn > *, .framer-HipSL .framer-qzalco > *, .framer-HipSL .framer-43khsa > *, .framer-HipSL .framer-r9zw4s > *, .framer-HipSL .framer-1t4q3jk > *, .framer-HipSL .framer-1nksz9q > *, .framer-HipSL .framer-werwha > *, .framer-HipSL .framer-13ebdv9 > *, .framer-HipSL .framer-18xv2mx > *, .framer-HipSL .framer-1lbd4cp > *, .framer-HipSL .framer-x3dn5k > *, .framer-HipSL .framer-1smoyra > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-HipSL .framer-qql7gy > *, .framer-HipSL .framer-yl9ppv > *, .framer-HipSL .framer-hty5hu > *, .framer-HipSL .framer-12y3xi4 > *, .framer-HipSL .framer-9bpgvr > *, .framer-HipSL .framer-1w2apru > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-HipSL .framer-1jb38e3 > *, .framer-HipSL .framer-17tncu9 > *, .framer-HipSL .framer-o6dgbz > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-HipSL .framer-ckuq6i > *, .framer-HipSL .framer-1mng6ye > *, .framer-HipSL .framer-19j62tj > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-HipSL[data-border=\"true\"]::after, .framer-HipSL [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-HipSL.framer-hvzz3m { width: 810px; } .framer-HipSL .framer-fo77gx { max-width: 600px; } .framer-HipSL .framer-jbkn8z { max-width: 490px; } .framer-HipSL .framer-1o63r6a-container { width: 111%; } .framer-HipSL .framer-1urq87d { height: 671px; } .framer-HipSL .framer-1sk6zfr { height: 274px; } .framer-HipSL .framer-m94qqz { height: 72px; left: calc(50.00000000000002% - 100% / 2); } .framer-HipSL .framer-1d4gaqj-container { top: 46px; } .framer-HipSL .framer-xv6dxv { height: 53.7962962962963vh; padding: 80px 20px 80px 20px; } .framer-HipSL .framer-b65g9w { height: 600px; width: 100%; } .framer-HipSL .framer-1jb38e3 { padding: 40px 0px 0px 0px; } .framer-HipSL .framer-ckuq6i { padding: 0px 0px 80px 0px; } .framer-HipSL .framer-17tncu9, .framer-HipSL .framer-o6dgbz { padding: 80px 40px 80px 40px; } .framer-HipSL .framer-1mng6ye { gap: 30px; max-width: unset; } .framer-HipSL .framer-1s6yyb6 { gap: 9px; height: 65%; width: 62%; } .framer-HipSL .framer-1e8ossu { justify-content: flex-end; order: 0; width: 100%; } .framer-HipSL .framer-tgmao9, .framer-HipSL .framer-1b8zfmf { height: auto; } .framer-HipSL .framer-1l4gopw { height: 233px; width: 223px; } .framer-HipSL .framer-1smoyra { flex: 1 0 0px; } .framer-HipSL .framer-n263oc { flex: 0.7 0 0px; } .framer-HipSL .framer-elyyqd { padding: 26px 0px 26px 0px; } .framer-HipSL .framer-13q9ede { height: 161px; width: 274px; } .framer-HipSL .framer-19j62tj { justify-content: flex-start; max-width: 1000px; } .framer-HipSL .framer-1p5toq1 { width: 100%; } .framer-HipSL .framer-15r6d16 { flex: 1 0 0px; padding: 40px; width: 1px; } .framer-HipSL .framer-177vv3c { height: var(--framer-aspect-ratio-supported, 68px); } .framer-HipSL .framer-n58404 { height: 500px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-HipSL .framer-1mng6ye, .framer-HipSL .framer-1s6yyb6 { gap: 0px; } .framer-HipSL .framer-1mng6ye > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-HipSL .framer-1mng6ye > :first-child, .framer-HipSL .framer-1s6yyb6 > :first-child { margin-top: 0px; } .framer-HipSL .framer-1mng6ye > :last-child, .framer-HipSL .framer-1s6yyb6 > :last-child { margin-bottom: 0px; } .framer-HipSL .framer-1s6yyb6 > * { margin: 0px; margin-bottom: calc(9px / 2); margin-top: calc(9px / 2); } }}\",\"@media (max-width: 809px) { .framer-HipSL.framer-hvzz3m { overflow: hidden; width: 390px; } .framer-HipSL .framer-9x07u-container { bottom: -2px; height: 106px; } .framer-HipSL .framer-j1yqbq { gap: 60px; padding: 50px 0px 0px 0px; } .framer-HipSL .framer-j4z2v { gap: 11px; padding: 16px 20px 16px 20px; } .framer-HipSL .framer-jbkn8z, .framer-HipSL .framer-1c0jjav { max-width: 400px; } .framer-HipSL .framer-r4ysuh { padding: 0px 2px 0px 2px; } .framer-HipSL .framer-1wmb9rv-container { height: var(--framer-aspect-ratio-supported, 22px); } .framer-HipSL .framer-1o63r6a-container { height: 360px; } .framer-HipSL .framer-1urq87d { height: 331px; } .framer-HipSL .framer-1sk6zfr { height: 241px; } .framer-HipSL .framer-m94qqz { height: 52px; left: calc(50.00000000000002% - 100% / 2); } .framer-HipSL .framer-1d4gaqj-container { top: -69px; } .framer-HipSL .framer-xv6dxv { gap: 100px; height: min-content; justify-content: center; padding: 50px 12px 50px 12px; } .framer-HipSL .framer-se0ayk { bottom: unset; height: 100%; top: calc(49.964763918252316% - 99.92952783650459% / 2); } .framer-HipSL .framer-1h9wx7j { grid-template-columns: repeat(2, minmax(170px, 1fr)); } .framer-HipSL .framer-b65g9w { height: 301px; width: 100%; } .framer-HipSL .framer-ckuq6i { gap: 30px; padding: 0px 0px 50px 0px; } .framer-HipSL .framer-3ekjpl { order: 1; } .framer-HipSL .framer-1cdop8l { order: 2; } .framer-HipSL .framer-1xrpcii { order: 3; width: 100%; } .framer-HipSL .framer-2xzbt9-container { height: 877px; width: 91%; } .framer-HipSL .framer-10as3a1 { top: -41px; } .framer-HipSL .framer-9cnlhe { order: 4; } .framer-HipSL .framer-8gcxwy { order: 8; } .framer-HipSL .framer-1tz5qt-container { order: 7; } .framer-HipSL .framer-5hyg8u-container { order: 9; } .framer-HipSL .framer-17tncu9, .framer-HipSL .framer-o6dgbz { padding: 50px 12px 50px 12px; } .framer-HipSL .framer-1mng6ye, .framer-HipSL .framer-19j62tj { gap: 40px; } .framer-HipSL .framer-1wd7iy1 { flex-direction: column; height: min-content; justify-content: flex-start; } .framer-HipSL .framer-1s6yyb6 { height: 249px; width: 100%; } .framer-HipSL .framer-3wze62, .framer-HipSL .framer-n263oc { flex: none; gap: 40px; height: min-content; justify-content: center; width: 100%; } .framer-HipSL .framer-tgmao9, .framer-HipSL .framer-1b8zfmf { height: 53px; } .framer-HipSL .framer-te7zln { flex-direction: column; height: min-content; } .framer-HipSL .framer-1smoyra { flex: none; height: min-content; width: 100%; } .framer-HipSL .framer-1jmnool-container, .framer-HipSL .framer-1r0o321-container, .framer-HipSL .framer-trja7f-container, .framer-HipSL .framer-mvrr88-container, .framer-HipSL .framer-p5yo2r-container, .framer-HipSL .framer-3063ph-container, .framer-HipSL .framer-1rsmndz-container, .framer-HipSL .framer-t2hhas-container, .framer-HipSL .framer-1mb7acv-container, .framer-HipSL .framer-1aorcb3-container, .framer-HipSL .framer-6cy7es-container { cursor: unset; } .framer-HipSL .framer-13q9ede { height: 158px; width: 314px; } .framer-HipSL .framer-1p5toq1 { flex-direction: column; width: 100%; } .framer-HipSL .framer-9h0r09 { align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-HipSL .framer-15r6d16 { flex: 1 0 0px; padding: 20px; width: 1px; } .framer-HipSL .framer-177vv3c { height: var(--framer-aspect-ratio-supported, 68px); } .framer-HipSL .framer-n58404 { flex: none; height: 400px; order: 0; width: 100%; } .framer-HipSL .framer-14rumow { height: var(--framer-aspect-ratio-supported, 474px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-HipSL .framer-j1yqbq, .framer-HipSL .framer-j4z2v, .framer-HipSL .framer-xv6dxv, .framer-HipSL .framer-ckuq6i, .framer-HipSL .framer-1mng6ye, .framer-HipSL .framer-1wd7iy1, .framer-HipSL .framer-3wze62, .framer-HipSL .framer-te7zln, .framer-HipSL .framer-n263oc, .framer-HipSL .framer-19j62tj, .framer-HipSL .framer-1p5toq1 { gap: 0px; } .framer-HipSL .framer-j1yqbq > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-HipSL .framer-j1yqbq > :first-child, .framer-HipSL .framer-j4z2v > :first-child, .framer-HipSL .framer-xv6dxv > :first-child, .framer-HipSL .framer-ckuq6i > :first-child, .framer-HipSL .framer-1mng6ye > :first-child, .framer-HipSL .framer-1wd7iy1 > :first-child, .framer-HipSL .framer-3wze62 > :first-child, .framer-HipSL .framer-te7zln > :first-child, .framer-HipSL .framer-n263oc > :first-child, .framer-HipSL .framer-19j62tj > :first-child, .framer-HipSL .framer-1p5toq1 > :first-child { margin-top: 0px; } .framer-HipSL .framer-j1yqbq > :last-child, .framer-HipSL .framer-j4z2v > :last-child, .framer-HipSL .framer-xv6dxv > :last-child, .framer-HipSL .framer-ckuq6i > :last-child, .framer-HipSL .framer-1mng6ye > :last-child, .framer-HipSL .framer-1wd7iy1 > :last-child, .framer-HipSL .framer-3wze62 > :last-child, .framer-HipSL .framer-te7zln > :last-child, .framer-HipSL .framer-n263oc > :last-child, .framer-HipSL .framer-19j62tj > :last-child, .framer-HipSL .framer-1p5toq1 > :last-child { margin-bottom: 0px; } .framer-HipSL .framer-j4z2v > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } .framer-HipSL .framer-xv6dxv > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-HipSL .framer-ckuq6i > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-HipSL .framer-1mng6ye > *, .framer-HipSL .framer-3wze62 > *, .framer-HipSL .framer-n263oc > *, .framer-HipSL .framer-19j62tj > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-HipSL .framer-1wd7iy1 > *, .framer-HipSL .framer-te7zln > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-HipSL .framer-1p5toq1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8892\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WgNeKo_y1\":{\"layout\":[\"fixed\",\"auto\"]},\"P7j2A2OCI\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"jGFDk87Dh\":{\"pattern\":\":jGFDk87Dh\",\"name\":\"hero-heading\"},\"MERXQpASN\":{\"pattern\":\":MERXQpASN\",\"name\":\"hero-heading\"},\"vTTUKTKEu\":{\"pattern\":\":vTTUKTKEu\",\"name\":\"why-us\"},\"XeAeqwWZC\":{\"pattern\":\":XeAeqwWZC\",\"name\":\"select-classes\"},\"rZyCoDj_M\":{\"pattern\":\":rZyCoDj_M\",\"name\":\"testimonial\"},\"ty2_oh6O2\":{\"pattern\":\":ty2_oh6O2\",\"name\":\"about-us\"},\"om1250aoL\":{\"pattern\":\":om1250aoL\",\"name\":\"about\"}}\n * @framerResponsiveScreen\n */const Frameryd7nMFDHh=withCSS(Component,css,\"framer-HipSL\");export default Frameryd7nMFDHh;Frameryd7nMFDHh.displayName=\"Home\";Frameryd7nMFDHh.defaultProps={height:8892,width:1200};addFonts(Frameryd7nMFDHh,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Unbounded\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/unbounded/v8/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6xjx04jHgP6LR0Y.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuBWYMZ1rib2Bg-4.woff2\",weight:\"900\"},{family:\"Inter\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTccNxhiJ-Ek-7MeA.woff2\",weight:\"900\"},{family:\"Inter\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTcB9xhiJ-Ek-7MeA.woff2\",weight:\"600\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...PatternFonts,...NavigationBarFonts,...FooterStripFonts,...PhosphorFonts,...TickerFonts,...StatsFonts,...ButtonFonts,...HeadingFonts,...CarouselFonts,...VideoFonts,...BulletFonts,...FAQListCommonFonts,...FooterFonts,...SmoothScrollFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameryd7nMFDHh\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"{\\\"jGFDk87Dh\\\":{\\\"pattern\\\":\\\":jGFDk87Dh\\\",\\\"name\\\":\\\"hero-heading\\\"},\\\"MERXQpASN\\\":{\\\"pattern\\\":\\\":MERXQpASN\\\",\\\"name\\\":\\\"hero-heading\\\"},\\\"vTTUKTKEu\\\":{\\\"pattern\\\":\\\":vTTUKTKEu\\\",\\\"name\\\":\\\"why-us\\\"},\\\"XeAeqwWZC\\\":{\\\"pattern\\\":\\\":XeAeqwWZC\\\",\\\"name\\\":\\\"select-classes\\\"},\\\"rZyCoDj_M\\\":{\\\"pattern\\\":\\\":rZyCoDj_M\\\",\\\"name\\\":\\\"testimonial\\\"},\\\"ty2_oh6O2\\\":{\\\"pattern\\\":\\\":ty2_oh6O2\\\",\\\"name\\\":\\\"about-us\\\"},\\\"om1250aoL\\\":{\\\"pattern\\\":\\\":om1250aoL\\\",\\\"name\\\":\\\"about\\\"}}\",\"framerIntrinsicHeight\":\"8892\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WgNeKo_y1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"P7j2A2OCI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "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", "ButtonNavFonts", "getFonts", "MHc54W6ze_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "RichText2", "ComponentViewportProvider", "MHc54W6ze_default", "css", "Framerbtsl258uc", "withCSS", "btsl258uc_default", "addFonts", "ButtonNavFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "css", "FramerGnZHwpskF", "withCSS", "GnZHwpskF_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "amount", "height", "id", "title", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "ODC_810_T", "WmbsVaIgS", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "u", "RichText2", "css", "FramerIhGAmn0sk", "withCSS", "IhGAmn0sk_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PatternFonts", "getFonts", "Pattern", "NavigationBarFonts", "Kg3jp8xZU_default", "FooterStripFonts", "btsl258uc_default", "PhosphorFonts", "Icon", "TickerFonts", "Ticker", "MotionDivWithFX", "withFX", "motion", "StatsFonts", "IhGAmn0sk_default", "ContainerWithFX", "Container", "ButtonFonts", "cBQAwTefC_default", "MotionSectionWithFX", "HeadingFonts", "QJ12gIOBS_default", "CarouselFonts", "Carousel", "VideoFonts", "Video", "BulletFonts", "f_SxhhPsu_default", "FAQListCommonFonts", "iV8GXG0Ck_default", "FooterFonts", "oGO_MGaZp_default", "SmoothScrollFonts", "SmoothScroll", "CursorFonts", "GnZHwpskF_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "animation2", "transition2", "animation3", "transformTemplate1", "_", "t", "animation4", "transition3", "animation5", "transition4", "animation6", "inertia", "preventDefault", "e", "animation7", "animation8", "transition5", "animation9", "animation10", "transition6", "animation11", "transition7", "animation12", "animation13", "animation14", "animation15", "animation16", "animation17", "animation18", "animation19", "animation20", "animation21", "animation22", "animation23", "animation24", "animation25", "animation26", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "bUC28knVO", "kwSYrqJyJ", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "isDisplayed", "isDisplayed1", "elementId5", "ref6", "elementId6", "ref7", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "RichText2", "x", "Link", "Image2", "getLoadingLazyAtYPosition", "css", "Frameryd7nMFDHh", "withCSS", "yd7nMFDHh_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
