{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js", "ssg:https://framer.com/m/hero-icons/Home.js@0.0.28", "ssg:https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js", "ssg:https://framerusercontent.com/modules/y6cDs8h1GyHzE3XF3ED9/OvFYoVbQ3jL5LjLdogBK/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "let Component;\nvar Home_default = (React) => {\n  if (!Component) {\n    const HomeIcon = React.forwardRef(function HomeIcon2({\n      title,\n      titleId,\n      ...props\n    }, svgRef) {\n      return /* @__PURE__ */ React.createElement(\"svg\", Object.assign({\n        xmlns: \"http://www.w3.org/2000/svg\",\n        viewBox: \"0 0 24 24\",\n        fill: \"currentColor\",\n        \"aria-hidden\": \"true\",\n        \"data-slot\": \"icon\",\n        ref: svgRef,\n        \"aria-labelledby\": titleId\n      }, props), title ? /* @__PURE__ */ React.createElement(\"title\", {\n        id: titleId\n      }, title) : null, /* @__PURE__ */ React.createElement(\"path\", {\n        d: \"M11.47 3.841a.75.75 0 0 1 1.06 0l8.69 8.69a.75.75 0 1 0 1.06-1.061l-8.689-8.69a2.25 2.25 0 0 0-3.182 0l-8.69 8.69a.75.75 0 1 0 1.061 1.06l8.69-8.689Z\"\n      }), /* @__PURE__ */ React.createElement(\"path\", {\n        d: \"m12 5.432 8.159 8.159c.03.03.06.058.091.086v6.198c0 1.035-.84 1.875-1.875 1.875H15a.75.75 0 0 1-.75-.75v-4.5a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0-.75.75V21a.75.75 0 0 1-.75.75H5.625a1.875 1.875 0 0 1-1.875-1.875v-6.198a2.29 2.29 0 0 0 .091-.086L12 5.432Z\"\n      }));\n    });\n    Component = HomeIcon;\n  }\n  return Component;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nexport {\n  __FramerMetadata__,\n  Home_default as default\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/hero-icons/Home.js@0.0.28\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"AcademicCap\",\"AdjustmentsVertical\",\"ArchiveBox\",\"ArchiveBoxArrowDown\",\"ArchiveBoxXMark\",\"ArrowDown\",\"ArrowDownCircle\",\"ArrowDownLeft\",\"ArrowDownOnSquare\",\"ArrowDownRight\",\"ArrowDownTray\",\"ArrowLeft\",\"ArrowLeftCircle\",\"ArrowLeftOnRectangle\",\"ArrowLongDown\",\"ArrowLongLeft\",\"ArrowLongRight\",\"ArrowLongUp\",\"ArrowPath\",\"ArrowRight\",\"ArrowRightCircle\",\"ArrowSmallDown\",\"ArrowSmallLeft\",\"ArrowSmallRight\",\"ArrowSmallUp\",\"ArrowTrendingDown\",\"ArrowTrendingUp\",\"ArrowUp\",\"ArrowUpCircle\",\"ArrowUpLeft\",\"ArrowUpOnSquare\",\"ArrowUpOnSquareStack\",\"ArrowUpRight\",\"ArrowUpTray\",\"ArrowUturnDown\",\"ArrowUturnLeft\",\"ArrowUturnRight\",\"ArrowUturnUp\",\"ArrowsPointingIn\",\"ArrowsPointingOut\",\"ArrowsRightLeft\",\"ArrowsUpDown\",\"AtSymbol\",\"Backspace\",\"Backward\",\"Banknotes\",\"Bars2\",\"Bars3\",\"Bars3BottomLeft\",\"Bars3BottomRight\",\"Bars3CenterLeft\",\"Bars4\",\"BarsArrowDown\",\"BarsArrowUp\",\"Battery0\",\"Battery100\",\"Battery50\",\"Beaker\",\"Bell\",\"BellAlert\",\"BellSlash\",\"BellSnooze\",\"Bolt\",\"BoltSlash\",\"BookOpen\",\"Bookmark\",\"BookmarkSlash\",\"BookmarkSquare\",\"Briefcase\",\"BugAnt\",\"BuildingLibrary\",\"BuildingOffice\",\"BuildingOffice2\",\"BuildingStorefront\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarDays\",\"Camera\",\"ChartBar\",\"ChartBarSquare\",\"ChartPie\",\"ChatBubbleLeft\",\"ChatBubbleLeftRight\",\"ChatBubbleOvalLeft\",\"Check\",\"CheckBadge\",\"CheckCircle\",\"ChevronDoubleDown\",\"ChevronDoubleLeft\",\"ChevronDoubleRight\",\"ChevronDoubleUp\",\"ChevronDown\",\"ChevronLeft\",\"ChevronRight\",\"ChevronUp\",\"ChevronUpDown\",\"CircleStack\",\"Clipboard\",\"ClipboardDocument\",\"Clock\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CodeBracket\",\"CodeBracketSquare\",\"Cog\",\"Cog6Tooth\",\"Cog8Tooth\",\"CommandLine\",\"ComputerDesktop\",\"CpuChip\",\"CreditCard\",\"Cube\",\"CubeTransparent\",\"CurrencyBangladeshi\",\"CurrencyDollar\",\"CurrencyEuro\",\"CurrencyPound\",\"CurrencyRupee\",\"CurrencyYen\",\"CursorArrowRays\",\"CursorArrowRipple\",\"DevicePhoneMobile\",\"DeviceTablet\",\"Document\",\"DocumentArrowDown\",\"DocumentArrowUp\",\"DocumentChartBar\",\"DocumentCheck\",\"DocumentDuplicate\",\"DocumentMinus\",\"DocumentPlus\",\"DocumentText\",\"EllipsisHorizontal\",\"EllipsisVertical\",\"Envelope\",\"EnvelopeOpen\",\"ExclamationCircle\",\"ExclamationTriangle\",\"Eye\",\"EyeDropper\",\"EyeSlash\",\"FaceFrown\",\"FaceSmile\",\"Film\",\"FingerPrint\",\"Fire\",\"Flag\",\"Folder\",\"FolderArrowDown\",\"FolderMinus\",\"FolderOpen\",\"FolderPlus\",\"Forward\",\"Funnel\",\"Gif\",\"Gift\",\"GiftTop\",\"GlobeAlt\",\"GlobeAmericas\",\"GlobeAsiaAustralia\",\"GlobeEuropeAfrica\",\"HandRaised\",\"HandThumbDown\",\"HandThumbUp\",\"Hashtag\",\"Heart\",\"Home\",\"HomeModern\",\"Identification\",\"Inbox\",\"InboxArrowDown\",\"InboxStack\",\"InformationCircle\",\"Key\",\"Language\",\"Lifebuoy\",\"LightBulb\",\"Link\",\"ListBullet\",\"LockClosed\",\"LockOpen\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"Map\",\"MapPin\",\"Megaphone\",\"Microphone\",\"Minus\",\"MinusCircle\",\"MinusSmall\",\"Moon\",\"MusicalNote\",\"Newspaper\",\"NoSymbol\",\"PaintBrush\",\"PaperAirplane\",\"PaperClip\",\"Pause\",\"PauseCircle\",\"Pencil\",\"PencilSquare\",\"Phone\",\"PhoneArrowDownLeft\",\"PhoneArrowUpRight\",\"PhoneXMark\",\"Photo\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Plus\",\"PlusCircle\",\"PlusSmall\",\"Power\",\"PresentationChartBar\",\"Printer\",\"PuzzlePiece\",\"QrCode\",\"QuestionMarkCircle\",\"QueueList\",\"Radio\",\"ReceiptPercent\",\"ReceiptRefund\",\"RectangleGroup\",\"RectangleStack\",\"RocketLaunch\",\"Rss\",\"Scale\",\"Scissors\",\"Server\",\"ServerStack\",\"Share\",\"ShieldCheck\",\"ShieldExclamation\",\"ShoppingBag\",\"ShoppingCart\",\"Signal\",\"SignalSlash\",\"Sparkles\",\"SpeakerWave\",\"SpeakerXMark\",\"Square2Stack\",\"Square3Stack3D\",\"Squares2X2\",\"SquaresPlus\",\"Star\",\"Stop\",\"StopCircle\",\"Sun\",\"Swatch\",\"TableCells\",\"Tag\",\"Ticket\",\"Trash\",\"Trophy\",\"Truck\",\"Tv\",\"User\",\"UserCircle\",\"UserGroup\",\"UserMinus\",\"UserPlus\",\"Users\",\"Variable\",\"VideoCamera\",\"VideoCameraSlash\",\"ViewColumns\",\"ViewfinderCircle\",\"Wallet\",\"Wifi\",\"Window\",\"Wrench\",\"WrenchScrewdriver\",\"XCircle\",\"XMark\",\"index\"];const moduleBaseUrl=\"https://framer.com/m/hero-icons/\";const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * HERO\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.28`;const module=await import(/* webpackIgnore: true */iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch{if(isMounted.current)setSelectedIcon(null);}}// Import module when new style or icon is selected\nuseEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/_jsx(NullState,{}):null;return /*#__PURE__*/_jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/_jsx(SelectedIcon,{style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Hero\";Icon.defaultProps={width:24,height:24,iconSelection:\"Home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Hero site](https://heroicons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hero.map", "// Generated by Framer (c105afa)\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,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import Particles from\"https://framerusercontent.com/modules/wb6ZrZlCLNQ5HHBJtNND/c1GLxCsQBQvlLXhkz7er/Particles.js\";import TestimonialsSlide from\"#framer/local/canvasComponent/DDx3J_XBg/DDx3J_XBg.js\";import Nav from\"#framer/local/canvasComponent/iITJmobfi/iITJmobfi.js\";import FAQTab from\"#framer/local/canvasComponent/mI3ksRBxQ/mI3ksRBxQ.js\";import AppStoreButtons from\"#framer/local/canvasComponent/S0rDXYWn2/S0rDXYWn2.js\";import Footer from\"#framer/local/canvasComponent/vfGWeq_Dz/vfGWeq_Dz.js\";import*as sharedStyle from\"#framer/local/css/LcKHimqRE/LcKHimqRE.js\";import*as sharedStyle2 from\"#framer/local/css/r3TiILItB/r3TiILItB.js\";import*as sharedStyle1 from\"#framer/local/css/s6ZtA6BGi/s6ZtA6BGi.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavFonts=getFonts(Nav);const HeroFonts=getFonts(Hero);const TickerFonts=getFonts(Ticker);const ParticlesFonts=getFonts(Particles);const AppStoreButtonsFonts=getFonts(AppStoreButtons);const TestimonialsSlideFonts=getFonts(TestimonialsSlide);const FAQTabFonts=getFonts(FAQTab);const FooterFonts=getFonts(Footer);const breakpoints={N0rcRUruD:\"(max-width: 809px)\",uvnba0gR2:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-sLFFa\";const variantClassNames={N0rcRUruD:\"framer-v-1ssy0re\",uvnba0gR2:\"framer-v-79hftw\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition1};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"N0rcRUruD\",Tablet:\"uvnba0gR2\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,xWk18BpZJT5zKM7tej,...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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"N0rcRUruD\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"uvnba0gR2\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"uvnba0gR2\",\"N0rcRUruD\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"N0rcRUruD\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(250, 250, 250); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u9jm6p-container\",layoutScroll:true,nodeId:\"D2mHjxJ_J\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{variant:\"I2POp0Cqe\"},uvnba0gR2:{variant:\"IirVj3zFI\"}},children:/*#__PURE__*/_jsx(Nav,{height:\"100%\",id:\"D2mHjxJ_J\",layoutId:\"D2mHjxJ_J\",style:{width:\"100%\"},variant:\"PHXc54lqy\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1de8p0d\",\"data-framer-name\":\"Hero Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1le0wmd\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c0f265\",\"data-framer-name\":\"Left Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cdsdxe\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"73px\"},children:\"Level Up\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"73px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"73px\"},children:\"Your Class\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"60px\"},children:\"Level Up\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"60px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"60px\"},children:\"With Classroom Hero\"})]})}),className:\"framer-muw1fa\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-gnr09a\",\"data-styles-preset\":\"LcKHimqRE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b8ff48f1-4ece-4369-9661-59835348104f, rgb(89, 89, 89))\"},children:\"Gamified reward system that turns learning into a fun adventure. Distribute points, sell rewards, use AI tools, and improve student behavior.\"})}),className:\"framer-117is2g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6yxj8y\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uvnba0gR2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a394749f-f475-4515-8f8c-4c9a3482513e, rgb(64, 64, 64))\"},children:\"Get started as a\u2026\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--token-a394749f-f475-4515-8f8c-4c9a3482513e, rgb(64, 64, 64))\"},children:\"Get started as a\u2026\"})}),className:\"framer-vlx6yo\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xtbxol\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://app.classroomhero.com/accounts/register/?role=teacher\",motionChild:true,nodeId:\"dVBAQSwAu\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1o7kbz2 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"card\",whileHover:animation,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5461,intrinsicWidth:8192,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+75+203+33+21.6+4+0+17+0),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/VSaBWV0fm2MzaiIBX41lKlHjd50.png\"}},uvnba0gR2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5461,intrinsicWidth:8192,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+96+198.4+33+45.6+4+0+31+0),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/VSaBWV0fm2MzaiIBX41lKlHjd50.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5461,intrinsicWidth:8192,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+158+137.4+33+40.6+4+0+10+0),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/VSaBWV0fm2MzaiIBX41lKlHjd50.png\"},className:\"framer-1yd5dz3\",\"data-framer-name\":\"card-img\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fnb557\",\"data-framer-name\":\"card-content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Teacher\"})}),className:\"framer-8aucj3\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uhmi7q-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"XKYu71QgI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-292eb3fb-e580-4580-8416-c33d73f2f8ff, rgb(61, 169, 232))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"XKYu71QgI\",layoutId:\"XKYu71QgI\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://app.classroomhero.com/accounts/register/?role=parent\",motionChild:true,nodeId:\"nPqSDk0HI\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1rpqps4 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"card\",whileHover:animation,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:5461,intrinsicWidth:8192,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+75+203+33+21.6+4+176.6+8+0),pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JjMa9DdZixYBJ6kMFr66z613Xc4.png\"}},uvnba0gR2:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:5461,intrinsicWidth:8192,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+96+198.4+33+45.6+4+0+31+0),pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JjMa9DdZixYBJ6kMFr66z613Xc4.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:5461,intrinsicWidth:8192,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+158+137.4+33+40.6+4+0+8+0),pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JjMa9DdZixYBJ6kMFr66z613Xc4.png\"},className:\"framer-1tnnyg1\",\"data-framer-name\":\"card-img\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14eggjr\",\"data-framer-name\":\"card-content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Parent\"})}),className:\"framer-qivwfw\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-155oly-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"KuzPoPZpr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-292eb3fb-e580-4580-8416-c33d73f2f8ff, rgb(61, 169, 232))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"KuzPoPZpr\",layoutId:\"KuzPoPZpr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://classroomhero.com/sign-in/\",motionChild:true,nodeId:\"XVW_J3fAe\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-twyadi framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"card\",whileHover:animation,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:5461,intrinsicWidth:8192,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+75+203+33+21.6+4+345.2+8+0),pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xx4ZBNsNdAHHPoUpHHDWB4v6ig.png\"}},uvnba0gR2:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:5461,intrinsicWidth:8192,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+96+198.4+33+45.6+4+214.6+31+0),pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xx4ZBNsNdAHHPoUpHHDWB4v6ig.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:5461,intrinsicWidth:8192,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+158+137.4+33+40.6+4+0+8+0),pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xx4ZBNsNdAHHPoUpHHDWB4v6ig.png\"},className:\"framer-1xt2jf6\",\"data-framer-name\":\"card-img\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1warhzp\",\"data-framer-name\":\"card-content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Student\"})}),className:\"framer-19kd28k\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jfx7rh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MkIdHDoRq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-292eb3fb-e580-4580-8416-c33d73f2f8ff, rgb(61, 169, 232))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"MkIdHDoRq\",layoutId:\"MkIdHDoRq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://app.classroomhero.com/accounts/register/?role=school_leader\",motionChild:true,nodeId:\"kZr9g8g4u\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1af5a60 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"card\",whileHover:animation,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:5461,intrinsicWidth:8192,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+75+203+33+21.6+4+513.8+8+0),pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0Azt45AoZM4OKsI798z9lkIwGjg.png\"}},uvnba0gR2:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:5461,intrinsicWidth:8192,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+96+198.4+33+45.6+4+214.6+31+0),pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0Azt45AoZM4OKsI798z9lkIwGjg.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:5461,intrinsicWidth:8192,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+158+137.4+33+40.6+4+0+8+0),pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0Azt45AoZM4OKsI798z9lkIwGjg.png\"},className:\"framer-rg4fme\",\"data-framer-name\":\"card-img\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lmsgdx\",\"data-framer-name\":\"card-content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"School Leader\"})}),className:\"framer-1awefzb\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-srb9nx-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MbJ40_Lp_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-292eb3fb-e580-4580-8416-c33d73f2f8ff, rgb(61, 169, 232))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"MbJ40_Lp_\",layoutId:\"MbJ40_Lp_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u3dejk-container hidden-72rtr7 hidden-79hftw\",isModuleExternal:true,nodeId:\"AUfgHpaBt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:78,height:\"100%\",hoverFactor:1,id:\"AUfgHpaBt\",layoutId:\"AUfgHpaBt\",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:38,intrinsicWidth:206,pixelHeight:76,pixelWidth:412,src:\"https://framerusercontent.com/images/YWnTVZwxeRTi2GHbUgP2fDrAgKk.jpeg\"},className:\"framer-1pod0d9\",\"data-framer-name\":\"Nycps-logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:134,intrinsicWidth:543,pixelHeight:268,pixelWidth:1086,sizes:\"288px\",src:\"https://framerusercontent.com/images/YuDDW2KSlKLAKJmEFVCvnT4aYnU.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YuDDW2KSlKLAKJmEFVCvnT4aYnU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/YuDDW2KSlKLAKJmEFVCvnT4aYnU.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YuDDW2KSlKLAKJmEFVCvnT4aYnU.jpeg 1086w\"},className:\"framer-spngzq\",\"data-framer-name\":\"Orange County\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:53,intrinsicWidth:150,pixelHeight:106,pixelWidth:300,src:\"https://framerusercontent.com/images/JHA7ccaQ1WG3SsH3re2evxIdmPc.jpeg\"},className:\"framer-k7m9ho\",\"data-framer-name\":\"Kipling\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:323,pixelHeight:248,pixelWidth:646,sizes:\"260px\",src:\"https://framerusercontent.com/images/RRAjrVdZl7K70MMOmNIQZghA.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RRAjrVdZl7K70MMOmNIQZghA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/RRAjrVdZl7K70MMOmNIQZghA.jpeg 646w\"},className:\"framer-m3rpt6\",\"data-framer-name\":\"Gwinnet\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:31,intrinsicWidth:175,pixelHeight:62,pixelWidth:350,src:\"https://framerusercontent.com/images/W2yoM5ZHiUbbGImkmgtkxe1kYk.jpeg\"},className:\"framer-qmqf0r\",\"data-framer-name\":\"Dysart\"})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-eunnit-container hidden-72rtr7 hidden-1ssy0re\",isModuleExternal:true,nodeId:\"tUyNegcub\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:78,height:\"100%\",hoverFactor:1,id:\"tUyNegcub\",layoutId:\"tUyNegcub\",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:38,intrinsicWidth:206,pixelHeight:76,pixelWidth:412,src:\"https://framerusercontent.com/images/YWnTVZwxeRTi2GHbUgP2fDrAgKk.jpeg\"},className:\"framer-1pod0d9\",\"data-framer-name\":\"Nycps-logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:134,intrinsicWidth:543,pixelHeight:268,pixelWidth:1086,sizes:\"288px\",src:\"https://framerusercontent.com/images/YuDDW2KSlKLAKJmEFVCvnT4aYnU.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YuDDW2KSlKLAKJmEFVCvnT4aYnU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/YuDDW2KSlKLAKJmEFVCvnT4aYnU.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YuDDW2KSlKLAKJmEFVCvnT4aYnU.jpeg 1086w\"},className:\"framer-spngzq\",\"data-framer-name\":\"Orange County\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:53,intrinsicWidth:150,pixelHeight:106,pixelWidth:300,src:\"https://framerusercontent.com/images/JHA7ccaQ1WG3SsH3re2evxIdmPc.jpeg\"},className:\"framer-k7m9ho\",\"data-framer-name\":\"Kipling\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:323,pixelHeight:248,pixelWidth:646,sizes:\"260px\",src:\"https://framerusercontent.com/images/RRAjrVdZl7K70MMOmNIQZghA.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RRAjrVdZl7K70MMOmNIQZghA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/RRAjrVdZl7K70MMOmNIQZghA.jpeg 646w\"},className:\"framer-m3rpt6\",\"data-framer-name\":\"Gwinnet\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:31,intrinsicWidth:175,pixelHeight:62,pixelWidth:350,src:\"https://framerusercontent.com/images/W2yoM5ZHiUbbGImkmgtkxe1kYk.jpeg\"},className:\"framer-qmqf0r\",\"data-framer-name\":\"Dysart\"})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mxrzjq-container hidden-79hftw hidden-1ssy0re\",isModuleExternal:true,nodeId:\"CJZVR7aL7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:78,height:\"100%\",hoverFactor:1,id:\"CJZVR7aL7\",layoutId:\"CJZVR7aL7\",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:38,intrinsicWidth:206,pixelHeight:76,pixelWidth:412,src:\"https://framerusercontent.com/images/YWnTVZwxeRTi2GHbUgP2fDrAgKk.jpeg\"},className:\"framer-1pod0d9\",\"data-framer-name\":\"Nycps-logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:134,intrinsicWidth:543,pixelHeight:268,pixelWidth:1086,sizes:\"288px\",src:\"https://framerusercontent.com/images/YuDDW2KSlKLAKJmEFVCvnT4aYnU.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YuDDW2KSlKLAKJmEFVCvnT4aYnU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/YuDDW2KSlKLAKJmEFVCvnT4aYnU.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YuDDW2KSlKLAKJmEFVCvnT4aYnU.jpeg 1086w\"},className:\"framer-spngzq\",\"data-framer-name\":\"Orange County\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:53,intrinsicWidth:150,pixelHeight:106,pixelWidth:300,src:\"https://framerusercontent.com/images/JHA7ccaQ1WG3SsH3re2evxIdmPc.jpeg\"},className:\"framer-k7m9ho\",\"data-framer-name\":\"Kipling\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:323,pixelHeight:248,pixelWidth:646,sizes:\"260px\",src:\"https://framerusercontent.com/images/RRAjrVdZl7K70MMOmNIQZghA.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RRAjrVdZl7K70MMOmNIQZghA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/RRAjrVdZl7K70MMOmNIQZghA.jpeg 646w\"},className:\"framer-m3rpt6\",\"data-framer-name\":\"Gwinnet\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:31,intrinsicWidth:175,pixelHeight:62,pixelWidth:350,src:\"https://framerusercontent.com/images/W2yoM5ZHiUbbGImkmgtkxe1kYk.jpeg\"},className:\"framer-qmqf0r\",\"data-framer-name\":\"Dysart\"})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-17gndyx hidden-1ssy0re\",\"data-framer-name\":\"2 Columns Image Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r4fifu\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ljftxw\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b7mobb\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uvnba0gR2:{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\":\"-1.8px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Create a Class\"})})}},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:\"Create a Class\"})}),className:\"framer-hv8al1\",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\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Easily add your students. Give out  login codes and watch student behavior improve as you distribute points.\"})}),className:\"framer-oexl4w\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vfz4qi\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uvnba0gR2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1061,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+961.2+0+0+128.5+0),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/wifepaUWTKSoYhcvMpPVoSyMr1Q.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1061,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+813+-9.5+4+89.5),pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wifepaUWTKSoYhcvMpPVoSyMr1Q.png\"},className:\"framer-1asf2a2\",\"data-framer-name\":\"poster\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kk8ry7\",\"data-framer-name\":\"2 Columns Image Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qu5gxe\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lltb8p\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uvnba0gR2:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1476.2+0+0+0+2),pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Z3tiUEqzCZKt6dW43WH7HiKZKZg.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1232+240+0+-157.5),pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Z3tiUEqzCZKt6dW43WH7HiKZKZg.png\"},className:\"framer-xywh53 hidden-1ssy0re\",\"data-framer-name\":\"create_currency_icon\"})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2011+0+7.497+0+211.503+295-246),pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Z3tiUEqzCZKt6dW43WH7HiKZKZg.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Z3tiUEqzCZKt6dW43WH7HiKZKZg.png\"},className:\"framer-1l9ezuq hidden-72rtr7 hidden-79hftw\",\"data-framer-name\":\"create_currency_icon\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j350gs\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f5dqvj\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Customize Rewards\"})})},uvnba0gR2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"50px\"},children:\"Customize\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"50px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"50px\"},children:\"Rewards\"})]})})}},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:\"Customize Rewards\"})}),className:\"framer-5xrs6g\",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\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Define custom actions or choose from our presets to award points for positive behavior and deduct for negative actions.\"})}),className:\"framer-zxiocl\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e15wcy\",\"data-framer-name\":\"2 Columns Image Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fd7rfn\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15rg2kx\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k7rzkn\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Create a Class\"})})},uvnba0gR2:{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\":\"-1.8px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Build a Marketplace\"})})}},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:\"Build a Marketplace\"})}),className:\"framer-1idi7el\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Add students to your class. Organize them in groups. Distribute points to students individually, all at once, or to groups.\"})]})}},children:/*#__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\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Easily add items to your marketplace, allowing students to purchase them with their earned points. Configure purchase options to require teacher approval or allow instant redemption.\"})}),className:\"framer-qlol0t\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e1rq7l\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1061,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1375+0+13.5+0+252+22),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/wifepaUWTKSoYhcvMpPVoSyMr1Q.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1061,pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/wifepaUWTKSoYhcvMpPVoSyMr1Q.png\"},className:\"framer-5l8tc5 hidden-72rtr7 hidden-79hftw\",\"data-framer-name\":\"poster\"})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uvnba0gR2:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1811.2+20+0+0+128.75),pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/A8VEZEh4nTMA2arSEtkCZt1ngPA.png\"},transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1712+258+0+-116.5),pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/A8VEZEh4nTMA2arSEtkCZt1ngPA.png\"},className:\"framer-69u7il hidden-1ssy0re\",\"data-framer-name\":\"create_currency_icon\"})})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1exx86v hidden-1ssy0re\",\"data-framer-name\":\"2 Columns Image Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uvnba0gR2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2309.2+8),sizes:`max(${componentViewport?.width||\"100vw\"} - 16px, 1px)`,...toResponsiveImage(xWk18BpZJT5zKM7tej)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2228+8),sizes:`max(${componentViewport?.width||\"100vw\"} - 16px, 1px)`,...toResponsiveImage(xWk18BpZJT5zKM7tej)},className:\"framer-jm7f8g\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m8bll\",\"data-framer-name\":\"2 Columns Image Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-132bpv8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-z77v4n\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uvnba0gR2:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2309.2+8+0+-5.5+0+0+0+114),pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EDOhEjXdmYZGEjKEpnKNPKsuA.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2228+8+0+-15+240+0+-155.5),pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EDOhEjXdmYZGEjKEpnKNPKsuA.png\"},className:\"framer-1gqbl19\",\"data-framer-name\":\"create_currency_icon\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1127mh5\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-148pka8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uvnba0gR2:{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\":\"-1.8px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"AI Tools\"})})}},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:\"AI Tools\"})}),className:\"framer-snypi2\",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\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"We offer a powerful suite of AI tools to enhance your teaching experience. Generate quizzes with AI. Grade them and give points automatically.\"})}),className:\"framer-1xkcfka\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1ko8u3k\",\"data-framer-name\":\"Avatars Section\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11687gn-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qiNTxXDoE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Particles,{background:\"var(--token-67f46c62-dabf-4520-93ef-2989d3567173, rgb(255, 255, 255))\",clickOptions:{clickEnabled:false,clickModes:\"push\"},color:\"rgb(38, 38, 38)\",colors:[\"rgb(51, 78, 255)\",\"rgb(0, 128, 94)\",\"rgb(255, 82, 51)\",\"rgb(38, 38, 38)\"],densityOptions:{densityArea:5e3,densityEnable:false,densityFactor:50},fpsOptions:30,height:\"100%\",hoverOptions:{hoverEnabled:true,hoverForce:10,hoverModes:\"none\",hoverParallax:false,hoverSmooth:10},id:\"qiNTxXDoE\",layoutId:\"qiNTxXDoE\",linksOptions:{linksColor:\"rgb(255, 255, 255)\",linksDistance:100,linksEnabled:false,linksOpacity:.2,linksWidth:1},modeOptions:{bubbleDistance:100,bubbleDuration:.4,bubbleSize:40,connectDistance:100,connectLinksOpacity:.2,connectRadius:50,grabDistance:100,grabLinksOpacity:.2,pushQuantity:4,removeQuantity:4,repulseDistance:200,repulseDuration:1.2,trailDelay:.1,trailQuantity:10},moveOptions:{moveAttractDistance:100,moveAttractEnabled:false,moveDirection:\"none\",moveEnabled:true,moveGravityAcceleration:1,moveGravityEnabled:false,moveGravityMaxSpeed:2,moveOut:\"bounce\",moveRandom:false,moveSpeed:1,moveSpinAcceleration:1,moveSpinEnabled:false,moveStraight:false,moveTrailAmount:100,moveTrailEnabled:false,moveVibrate:false},number:200,opacityOptions:{opacity:1,opacityMax:1,opacityMin:0,opacityType:true},particlesID:\"One\",radius:0,rotateOptions:{rotateAnimation:false,rotateDirection:\"random\",rotateSpeed:5,rotateSync:false,rotateValue:0},shapeOptions:{characterType:\"\uD83D\uDE0E\",imageHeight:100,imageWidth:100,shapeType:\"circle\"},sizeOptions:{size:1,sizeMax:10,sizeMin:1,sizeType:true},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ladgeb\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Student Avatars\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{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\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Student Avatars\"})}),className:\"framer-2c9je0\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rlrs9g\",\"data-styles-preset\":\"s6ZtA6BGi\",style:{\"--framer-text-alignment\":\"center\"},children:\"As you use Classroom Hero, students earn special points that can only be spent on unique avatar accessories. \"})}),className:\"framer-1pl4r8r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3765+10+0+0+238),pixelHeight:790,pixelWidth:1258,sizes:\"314px\",src:\"https://framerusercontent.com/images/JiQpZh25Q1XlPD8BEkjLLcwSkrA.png\",srcSet:\"https://framerusercontent.com/images/JiQpZh25Q1XlPD8BEkjLLcwSkrA.png?scale-down-to=512 512w,https://framerusercontent.com/images/JiQpZh25Q1XlPD8BEkjLLcwSkrA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JiQpZh25Q1XlPD8BEkjLLcwSkrA.png 1258w\"}},uvnba0gR2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2848.2+0+0+0+254),pixelHeight:790,pixelWidth:1258,sizes:\"354px\",src:\"https://framerusercontent.com/images/JiQpZh25Q1XlPD8BEkjLLcwSkrA.png\",srcSet:\"https://framerusercontent.com/images/JiQpZh25Q1XlPD8BEkjLLcwSkrA.png?scale-down-to=512 512w,https://framerusercontent.com/images/JiQpZh25Q1XlPD8BEkjLLcwSkrA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JiQpZh25Q1XlPD8BEkjLLcwSkrA.png 1258w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2694+0+0+0+240.75),pixelHeight:790,pixelWidth:1258,sizes:\"468px\",src:\"https://framerusercontent.com/images/JiQpZh25Q1XlPD8BEkjLLcwSkrA.png\",srcSet:\"https://framerusercontent.com/images/JiQpZh25Q1XlPD8BEkjLLcwSkrA.png?scale-down-to=512 512w,https://framerusercontent.com/images/JiQpZh25Q1XlPD8BEkjLLcwSkrA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JiQpZh25Q1XlPD8BEkjLLcwSkrA.png 1258w\"},className:\"framer-1lv14e\",\"data-framer-name\":\"Avatar Group\"})})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e1stki hidden-72rtr7 hidden-79hftw\",\"data-framer-name\":\"2 Columns Text Image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mtztnn\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ubkkjl\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bs0jfj\",\"data-framer-name\":\"Content\",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\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Build A Marketplace\"})}),className:\"framer-1y45wfo\",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\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Add items to your classroom marketplace. Students can exchange their points for your items. Don't worry, we'll handle all the accounting!\"})}),className:\"framer-ttpy4j\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pwv8re\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2606+0+0+0+235.5+0),pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/A8VEZEh4nTMA2arSEtkCZt1ngPA.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/A8VEZEh4nTMA2arSEtkCZt1ngPA.png\"},className:\"framer-1g3cx1j\",\"data-framer-name\":\"create_currency_icon\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b93j17\",\"data-framer-name\":\"2 Columns Text Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ddqu3\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dwepai\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1775od8\",\"data-framer-name\":\"Content\",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\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"AI Tools\"})}),className:\"framer-1lmrtpl\",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\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"We offer a powerful suite of AI tools to enhance your teaching experience. Generate quizzes with AI and watch as AI grades them and gives out points for you.\"})}),className:\"framer-awfer\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n1pdpi\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2606+0+494+0+0+0+400+4.5),pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EDOhEjXdmYZGEjKEpnKNPKsuA.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EDOhEjXdmYZGEjKEpnKNPKsuA.png\"},className:\"framer-aljse4\",\"data-framer-name\":\"create_currency_icon\"})})})]})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1v84tpt\",\"data-framer-name\":\"Atlas Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3fe2xw\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Atlas AI\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{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\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Atlas AI\"})}),className:\"framer-156k2hz\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rlrs9g\",\"data-styles-preset\":\"s6ZtA6BGi\",style:{\"--framer-text-alignment\":\"center\"},children:\"Seamlessly access expert guidance on teaching practices, innovative classroom management strategies, running an effective reward systems, and more!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rlrs9g\",\"data-styles-preset\":\"s6ZtA6BGi\",style:{\"--framer-text-alignment\":\"center\"},children:\"Meet Atlas, your intelligent AI teaching assistant. Seamlessly access expert guidance on teaching practices, innovative classroom management strategies, running an effective reward system, and much more!\"})}),className:\"framer-jzgyd7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uvnba0gR2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3389.2+0+0+15+222),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"225px\",src:\"https://framerusercontent.com/images/O8awsM0T23eBYQSZtphDC0CsWvA.png\",srcSet:\"https://framerusercontent.com/images/O8awsM0T23eBYQSZtphDC0CsWvA.png?scale-down-to=512 512w,https://framerusercontent.com/images/O8awsM0T23eBYQSZtphDC0CsWvA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/O8awsM0T23eBYQSZtphDC0CsWvA.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3242+0+0+45+257),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"954px\",src:\"https://framerusercontent.com/images/F7YyGuJtoauzU4Ahom0gmJPcsM.png\",srcSet:\"https://framerusercontent.com/images/F7YyGuJtoauzU4Ahom0gmJPcsM.png?scale-down-to=512 512w,https://framerusercontent.com/images/F7YyGuJtoauzU4Ahom0gmJPcsM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F7YyGuJtoauzU4Ahom0gmJPcsM.png 1080w\"},className:\"framer-mmjw85 hidden-1ssy0re\"})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4207+20+0+0+177),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"180px\",src:\"https://framerusercontent.com/images/O8awsM0T23eBYQSZtphDC0CsWvA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/O8awsM0T23eBYQSZtphDC0CsWvA.png?scale-down-to=512 512w,https://framerusercontent.com/images/O8awsM0T23eBYQSZtphDC0CsWvA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/O8awsM0T23eBYQSZtphDC0CsWvA.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O8awsM0T23eBYQSZtphDC0CsWvA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/O8awsM0T23eBYQSZtphDC0CsWvA.png?scale-down-to=512 512w,https://framerusercontent.com/images/O8awsM0T23eBYQSZtphDC0CsWvA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/O8awsM0T23eBYQSZtphDC0CsWvA.png 1080w\"},className:\"framer-1bupwqd hidden-72rtr7 hidden-79hftw\",\"data-framer-name\":\"create_currency_icon\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qa4tnw\",\"data-framer-name\":\"Blog\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"Classroom Hero\",/*#__PURE__*/_jsx(\"br\",{}),\" In Action\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{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\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Classroom Hero In Action\"})}),className:\"framer-vhzscm\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lwwm0j\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mrkei1\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4614+60+76+0+0+0+33),pixelHeight:1913,pixelWidth:1917,positionX:\"center\",positionY:\"center\",sizes:`max(max(min(1000px, ${componentViewport?.width||\"100vw\"} * 1.0385), 50px), 272px)`,src:\"https://framerusercontent.com/images/OWNCP9aOdQsBA92RM5JHcDjWWO0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/OWNCP9aOdQsBA92RM5JHcDjWWO0.png?scale-down-to=512 512w,https://framerusercontent.com/images/OWNCP9aOdQsBA92RM5JHcDjWWO0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OWNCP9aOdQsBA92RM5JHcDjWWO0.png 1917w\"}},uvnba0gR2:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3884.2+80+120+0+0+0+13.25),pixelHeight:1913,pixelWidth:1917,positionX:\"center\",positionY:\"center\",sizes:`max(max((min(1000px, ${componentViewport?.width||\"100vw\"}) - 20px) / 2, 50px), 100px)`,src:\"https://framerusercontent.com/images/OWNCP9aOdQsBA92RM5JHcDjWWO0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/OWNCP9aOdQsBA92RM5JHcDjWWO0.png?scale-down-to=512 512w,https://framerusercontent.com/images/OWNCP9aOdQsBA92RM5JHcDjWWO0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OWNCP9aOdQsBA92RM5JHcDjWWO0.png 1917w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4042+35+120+0+0+0+51),pixelHeight:1913,pixelWidth:1917,positionX:\"center\",positionY:\"center\",sizes:`max(max((min(1000px, ${componentViewport?.width||\"100vw\"}) - 20px) / 2, 50px), 100px)`,src:\"https://framerusercontent.com/images/OWNCP9aOdQsBA92RM5JHcDjWWO0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/OWNCP9aOdQsBA92RM5JHcDjWWO0.png?scale-down-to=512 512w,https://framerusercontent.com/images/OWNCP9aOdQsBA92RM5JHcDjWWO0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OWNCP9aOdQsBA92RM5JHcDjWWO0.png 1917w\"},className:\"framer-bhr3c6\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u8kvz1\",\"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\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Fully Customizable\"})}),className:\"framer-z3iuz9\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Boost student engagement by creating a reward system that truly resonates with your classroom's interest and goals. Customize the marketplace items and rewards to maximize motivation.\"})}),className:\"framer-1alqqyd\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4l20w9\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4614+60+76+0+565+0+23),pixelHeight:1542,pixelWidth:1542,positionX:\"center\",positionY:\"center\",sizes:`max(min(1000px, ${componentViewport?.width||\"100vw\"} * 1.0385), 50px)`,src:\"https://framerusercontent.com/images/Tjt9jCq8AISPVC153AQ8aNbUis.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Tjt9jCq8AISPVC153AQ8aNbUis.png?scale-down-to=512 512w,https://framerusercontent.com/images/Tjt9jCq8AISPVC153AQ8aNbUis.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tjt9jCq8AISPVC153AQ8aNbUis.png 1542w\"}},uvnba0gR2:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3884.2+80+120+0+0+0+3.25),pixelHeight:1542,pixelWidth:1542,positionX:\"center\",positionY:\"center\",sizes:`max((min(1000px, ${componentViewport?.width||\"100vw\"}) - 20px) / 2, 50px)`,src:\"https://framerusercontent.com/images/Tjt9jCq8AISPVC153AQ8aNbUis.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Tjt9jCq8AISPVC153AQ8aNbUis.png?scale-down-to=512 512w,https://framerusercontent.com/images/Tjt9jCq8AISPVC153AQ8aNbUis.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tjt9jCq8AISPVC153AQ8aNbUis.png 1542w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4042+35+120+0+0+0+41),pixelHeight:1542,pixelWidth:1542,positionX:\"center\",positionY:\"center\",sizes:`max((min(1000px, ${componentViewport?.width||\"100vw\"}) - 20px) / 2, 50px)`,src:\"https://framerusercontent.com/images/Tjt9jCq8AISPVC153AQ8aNbUis.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Tjt9jCq8AISPVC153AQ8aNbUis.png?scale-down-to=512 512w,https://framerusercontent.com/images/Tjt9jCq8AISPVC153AQ8aNbUis.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tjt9jCq8AISPVC153AQ8aNbUis.png 1542w\"},className:\"framer-m7qjaz\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dq41pt\",\"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\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Valuable Insights\"})}),className:\"framer-13ar3gr\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Track individual progress and class-wide engagement: View statistics on student task completion, purchased items, and overall class trends.\"})}),className:\"framer-kez9p\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k45cor\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4614+60+76+0+1130+0+20),pixelHeight:1780,pixelWidth:2100,positionX:\"center\",positionY:\"center\",sizes:`max(min(1000px, ${componentViewport?.width||\"100vw\"} * 1.0385), 50px)`,src:\"https://framerusercontent.com/images/rqfZvooMQgfVKj75ZjaJIeHrE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/rqfZvooMQgfVKj75ZjaJIeHrE.png?scale-down-to=512 512w,https://framerusercontent.com/images/rqfZvooMQgfVKj75ZjaJIeHrE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rqfZvooMQgfVKj75ZjaJIeHrE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rqfZvooMQgfVKj75ZjaJIeHrE.png 2100w\"}},uvnba0gR2:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3884.2+80+120+0+522.5+0+3.25),pixelHeight:1780,pixelWidth:2100,positionX:\"center\",positionY:\"center\",sizes:`max((min(1000px, ${componentViewport?.width||\"100vw\"}) - 20px) / 2, 50px)`,src:\"https://framerusercontent.com/images/rqfZvooMQgfVKj75ZjaJIeHrE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/rqfZvooMQgfVKj75ZjaJIeHrE.png?scale-down-to=512 512w,https://framerusercontent.com/images/rqfZvooMQgfVKj75ZjaJIeHrE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rqfZvooMQgfVKj75ZjaJIeHrE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rqfZvooMQgfVKj75ZjaJIeHrE.png 2100w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4042+35+120+0+598+0+38),pixelHeight:1780,pixelWidth:2100,positionX:\"center\",positionY:\"center\",sizes:`max((min(1000px, ${componentViewport?.width||\"100vw\"}) - 20px) / 2, 50px)`,src:\"https://framerusercontent.com/images/rqfZvooMQgfVKj75ZjaJIeHrE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/rqfZvooMQgfVKj75ZjaJIeHrE.png?scale-down-to=512 512w,https://framerusercontent.com/images/rqfZvooMQgfVKj75ZjaJIeHrE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rqfZvooMQgfVKj75ZjaJIeHrE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rqfZvooMQgfVKj75ZjaJIeHrE.png 2100w\"},className:\"framer-fsdqpf\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n3q1nd\",\"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\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Fun for Students\"})}),className:\"framer-kr4vv\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Effortlessly add fun to your classroom with our ready-to-use avatar system - no setup required!\"})}),className:\"framer-1vtb99b\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10lykrb\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4614+60+76+0+1695+0+33),pixelHeight:1010,pixelWidth:1216,positionX:\"center\",positionY:\"center\",sizes:`max(min(1000px, ${componentViewport?.width||\"100vw\"} * 1.0385), 50px)`,src:\"https://framerusercontent.com/images/312Z9drdL1gAr8SQcbLZIGeCh4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/312Z9drdL1gAr8SQcbLZIGeCh4.png?scale-down-to=512 512w,https://framerusercontent.com/images/312Z9drdL1gAr8SQcbLZIGeCh4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/312Z9drdL1gAr8SQcbLZIGeCh4.png 1216w\"}},uvnba0gR2:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3884.2+80+120+0+522.5+0+13.25),pixelHeight:1082,pixelWidth:1202,positionX:\"center\",positionY:\"center\",sizes:`max((min(1000px, ${componentViewport?.width||\"100vw\"}) - 20px) / 2, 50px)`,src:\"https://framerusercontent.com/images/590yBFIFw5NlSzyWHENwRrhjLdU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/590yBFIFw5NlSzyWHENwRrhjLdU.png?scale-down-to=512 512w,https://framerusercontent.com/images/590yBFIFw5NlSzyWHENwRrhjLdU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/590yBFIFw5NlSzyWHENwRrhjLdU.png 1202w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4042+35+120+0+598+0+51),pixelHeight:1010,pixelWidth:1216,positionX:\"center\",positionY:\"center\",sizes:`max((min(1000px, ${componentViewport?.width||\"100vw\"}) - 20px) / 2, 50px)`,src:\"https://framerusercontent.com/images/312Z9drdL1gAr8SQcbLZIGeCh4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/312Z9drdL1gAr8SQcbLZIGeCh4.png?scale-down-to=512 512w,https://framerusercontent.com/images/312Z9drdL1gAr8SQcbLZIGeCh4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/312Z9drdL1gAr8SQcbLZIGeCh4.png 1216w\"},className:\"framer-1n9ba2m\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12w65zj\",\"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\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"AI Teaching Tools\"})}),className:\"framer-1ug6sam\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Save time with AI teaching tools that enhance your workflow. Easily generate quizzes, UDL choice boards, and enjoy a variety of other resources.\"})}),className:\"framer-zgps9z\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-a02xjf\",\"data-framer-name\":\"Header\",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\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Simple User-Friendly Platform\"})}),className:\"framer-1cz0ojv\",\"data-framer-name\":\"Simple, user-friendly platform\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{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\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Manage your reward system from anywhere on any device\"})})}},children:/*#__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\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Manage your reward system from anywhere on any device\"})}),className:\"framer-a6lwnh\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7038+60+215.5),pixelHeight:1500,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:`min(270px, ${componentViewport?.width||\"100vw\"})`,src:\"https://framerusercontent.com/images/e4v5NxcPIS8jukWABqV19D789k.png\",srcSet:\"https://framerusercontent.com/images/e4v5NxcPIS8jukWABqV19D789k.png?scale-down-to=512 512w,https://framerusercontent.com/images/e4v5NxcPIS8jukWABqV19D789k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/e4v5NxcPIS8jukWABqV19D789k.png 1500w\"}},uvnba0gR2:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5212.2+40+136),pixelHeight:1500,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,src:\"https://framerusercontent.com/images/e4v5NxcPIS8jukWABqV19D789k.png\",srcSet:\"https://framerusercontent.com/images/e4v5NxcPIS8jukWABqV19D789k.png?scale-down-to=512 512w,https://framerusercontent.com/images/e4v5NxcPIS8jukWABqV19D789k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/e4v5NxcPIS8jukWABqV19D789k.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5394+40+136),pixelHeight:1500,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,src:\"https://framerusercontent.com/images/e4v5NxcPIS8jukWABqV19D789k.png\",srcSet:\"https://framerusercontent.com/images/e4v5NxcPIS8jukWABqV19D789k.png?scale-down-to=512 512w,https://framerusercontent.com/images/e4v5NxcPIS8jukWABqV19D789k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/e4v5NxcPIS8jukWABqV19D789k.png 1500w\"},className:\"framer-1ha4cj6\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{y:(componentViewport?.y||0)+0+7038+60+493.5},uvnba0gR2:{y:(componentViewport?.y||0)+0+5212.2+40+468}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:\"340px\",y:(componentViewport?.y||0)+0+5394+40+744,children:/*#__PURE__*/_jsx(Container,{className:\"framer-v2uc14-container\",nodeId:\"MU6B_Em7h\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AppStoreButtons,{height:\"100%\",id:\"MU6B_Em7h\",layoutId:\"MU6B_Em7h\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1sokfma\",\"data-framer-name\":\"Testimonials Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ozboww\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-39u9gt\",\"data-styles-preset\":\"r3TiILItB\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-67f46c62-dabf-4520-93ef-2989d3567173, rgb(255, 255, 255))\"},children:\"Kind Words from our Teachers\"})}),className:\"framer-1cmgub5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{y:(componentViewport?.y||0)+0+7789+96+0+0+67.2},uvnba0gR2:{y:(componentViewport?.y||0)+0+5835.2+96+0+0+67.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:250,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 960px)`,y:(componentViewport?.y||0)+0+6270+96+0+0+67.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-v191x2-container\",nodeId:\"EiaLkGlAw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{variant:\"KJRk3BjxU\"}},children:/*#__PURE__*/_jsx(TestimonialsSlide,{height:\"100%\",id:\"EiaLkGlAw\",layoutId:\"EiaLkGlAw\",style:{width:\"100%\"},variant:\"Ygpa94_rh\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1azuphg\",\"data-framer-name\":\"FAQ Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4og7aw\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-39u9gt\",\"data-styles-preset\":\"r3TiILItB\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Answers to\",/*#__PURE__*/_jsx(\"br\",{}),\"Your Questions\"]})}),className:\"framer-14ywgp1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wr8uk8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{y:(componentViewport?.y||0)+0+8298.2+36+0+0+67.2+0+0},uvnba0gR2:{y:(componentViewport?.y||0)+0+6367.4+96+0+0+67.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:79,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 960px)`,y:(componentViewport?.y||0)+0+6779.2+96+0+0+67.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-161qxs2-container\",nodeId:\"vZl2FVv5p\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQTab,{GqcNB3RWY:\"How do the Avatars work?\",height:\"100%\",id:\"vZl2FVv5p\",layoutId:\"vZl2FVv5p\",style:{width:\"100%\"},variant:\"MMlTb2bdq\",VeBc6V9iT:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'The Avatar System works in tandem with your reward system. As you hand out achievements, students will earn \"Account Points\" which can be spent on new Avatar accessories. However, only 5 account points can be earned per day.'})}),width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{y:(componentViewport?.y||0)+0+8298.2+36+0+0+67.2+0+79},uvnba0gR2:{y:(componentViewport?.y||0)+0+6367.4+96+0+0+67.2+0+79}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:79,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 960px)`,y:(componentViewport?.y||0)+0+6779.2+96+0+0+67.2+0+79,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p8ys8i-container\",nodeId:\"vohTPbxp6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQTab,{GqcNB3RWY:\"What exactly are Actions?\",height:\"100%\",id:\"vohTPbxp6\",layoutId:\"vohTPbxp6\",style:{width:\"100%\"},variant:\"MMlTb2bdq\",VeBc6V9iT:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'Actions can be any task, achievement, or behavior that you would like to see your students complete. For example, \"Asked a question\" or \"Helped another\" are common actions that we see.'})}),width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{y:(componentViewport?.y||0)+0+8298.2+36+0+0+67.2+0+158},uvnba0gR2:{y:(componentViewport?.y||0)+0+6367.4+96+0+0+67.2+0+158}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:79,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 960px)`,y:(componentViewport?.y||0)+0+6779.2+96+0+0+67.2+0+158,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1knwth-container\",nodeId:\"KKk3tRPgj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQTab,{GqcNB3RWY:\"What is the Classroom Marketplace?\",height:\"100%\",id:\"KKk3tRPgj\",layoutId:\"KKk3tRPgj\",style:{width:\"100%\"},variant:\"MMlTb2bdq\",VeBc6V9iT:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"The Classroom Marketplace is a way for you to build your current marketplace in an online store where students can browse and purchase your items. This also acts as an accounting tool where we will keep track of students' points for you.\"})}),width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{y:(componentViewport?.y||0)+0+8298.2+36+0+0+67.2+0+237},uvnba0gR2:{y:(componentViewport?.y||0)+0+6367.4+96+0+0+67.2+0+237}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:79,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 960px)`,y:(componentViewport?.y||0)+0+6779.2+96+0+0+67.2+0+237,children:/*#__PURE__*/_jsx(Container,{className:\"framer-45a3en-container\",nodeId:\"BmMv0dXrI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQTab,{GqcNB3RWY:\"Is Classroom Hero free to use?\",height:\"100%\",id:\"BmMv0dXrI\",layoutId:\"BmMv0dXrI\",style:{width:\"100%\"},variant:\"MMlTb2bdq\",VeBc6V9iT:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Yes. Classroom Hero is 100% free to use\"})}),width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{y:(componentViewport?.y||0)+0+8298.2+36+0+0+67.2+0+316},uvnba0gR2:{y:(componentViewport?.y||0)+0+6367.4+96+0+0+67.2+0+316}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:79,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 960px)`,y:(componentViewport?.y||0)+0+6779.2+96+0+0+67.2+0+316,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pvepso-container\",nodeId:\"jdj7rxHZV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQTab,{GqcNB3RWY:\"What student data do you collect?\",height:\"100%\",id:\"jdj7rxHZV\",layoutId:\"jdj7rxHZV\",style:{width:\"100%\"},variant:\"MMlTb2bdq\",VeBc6V9iT:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"We take the privacy of student information very seriously. The only student information that we collect is input by you, which is  the student's name.\"})}),width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-dmrwnm\",\"data-framer-name\":\"Get Started Section\",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\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Get started today, it's free!\"})}),className:\"framer-a9w5af\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qdgbza\",children:/*#__PURE__*/_jsx(Link,{href:\"https://app.classroomhero.com/accounts/register/\",motionChild:true,nodeId:\"yibMlipR7\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-xjb2z7 framer-lux5qc\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get Started\"})}),className:\"framer-1tvalb\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-k207rp\",\"data-framer-name\":\"Footer Section\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{y:(componentViewport?.y||0)+0+9156.4+96+0},uvnba0gR2:{y:(componentViewport?.y||0)+0+7278.6+96+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:312,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 960px)`,y:(componentViewport?.y||0)+0+7633.4+96+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gy28fj-container\",nodeId:\"RSce_5sTJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N0rcRUruD:{variant:\"vC5Trc1xt\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"RSce_5sTJ\",layoutId:\"RSce_5sTJ\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"qxDXfZrI0\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sLFFa.framer-lux5qc, .framer-sLFFa .framer-lux5qc { display: block; }\",\".framer-sLFFa.framer-72rtr7 { align-content: center; align-items: center; background-color: #fafafa; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-sLFFa .framer-1u9jm6p-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 9; }\",\".framer-sLFFa .framer-1de8p0d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-1le0wmd { align-content: flex-start; align-items: flex-start; background: linear-gradient(180deg, rgba(60, 169, 232, 0.51) 0%, rgba(72, 83, 237, 0.03) 100%); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 708px; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-sLFFa .framer-1c0f265 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 158px 0px 0px 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-sLFFa .framer-1cdsdxe { align-content: center; align-items: center; box-shadow: 0px 0px 0px 0px rgba(37, 61, 255, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 29px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-muw1fa, .framer-sLFFa .framer-hv8al1, .framer-sLFFa .framer-5xrs6g, .framer-sLFFa .framer-1idi7el, .framer-sLFFa .framer-snypi2, .framer-sLFFa .framer-1y45wfo, .framer-sLFFa .framer-1lmrtpl, .framer-sLFFa .framer-z3iuz9, .framer-sLFFa .framer-13ar3gr, .framer-sLFFa .framer-kr4vv, .framer-sLFFa .framer-1ug6sam { --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-sLFFa .framer-117is2g { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 543px; word-break: break-word; word-wrap: break-word; }\",\".framer-sLFFa .framer-6yxj8y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: center; overflow: visible; padding: 33px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-vlx6yo { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-sLFFa .framer-1xtbxol { display: grid; flex: none; gap: 10px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1010px; overflow: visible; padding: 4px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-1o7kbz2 { --border-bottom-width: 2px; --border-color: var(--token-3107fae2-e175-482a-b644-512fa702b361, #999999); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; align-self: start; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 0px 0px 0px rgba(37, 61, 255, 0.25); cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; justify-self: start; overflow: hidden; padding: 10px 8px 10px 8px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-sLFFa .framer-1yd5dz3 { aspect-ratio: 1.1742857142857144 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 72px); overflow: hidden; position: relative; width: 85px; }\",\".framer-sLFFa .framer-fnb557, .framer-sLFFa .framer-14eggjr, .framer-sLFFa .framer-1warhzp, .framer-sLFFa .framer-lmsgdx { 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-sLFFa .framer-8aucj3, .framer-sLFFa .framer-qivwfw, .framer-sLFFa .framer-19kd28k, .framer-sLFFa .framer-1awefzb, .framer-sLFFa .framer-vhzscm { --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; width: auto; }\",\".framer-sLFFa .framer-uhmi7q-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); position: relative; width: 26px; }\",\".framer-sLFFa .framer-1rpqps4, .framer-sLFFa .framer-twyadi, .framer-sLFFa .framer-1af5a60 { --border-bottom-width: 2px; --border-color: var(--token-3107fae2-e175-482a-b644-512fa702b361, #999999); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; align-self: start; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 0px 0px 0px rgba(37, 61, 255, 0.25); cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; justify-self: start; overflow: hidden; padding: 8px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-sLFFa .framer-1tnnyg1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 72px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-155oly-container, .framer-sLFFa .framer-jfx7rh-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 29px; }\",\".framer-sLFFa .framer-1xt2jf6 { aspect-ratio: 3.1527777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 72px); overflow: hidden; position: relative; width: 100%; }\",\".framer-sLFFa .framer-rg4fme { aspect-ratio: 2.2475247524752477 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 72px); overflow: hidden; position: relative; width: 162px; }\",\".framer-sLFFa .framer-srb9nx-container { flex: none; height: 29px; position: relative; width: 60px; }\",\".framer-sLFFa .framer-1u3dejk-container { flex: none; height: 105px; opacity: 0.33; position: relative; width: 395px; }\",\".framer-sLFFa .framer-1pod0d9 { aspect-ratio: 5.421052631578948 / 1; height: var(--framer-aspect-ratio-supported, 41px); overflow: visible; position: relative; width: 222px; }\",\".framer-sLFFa .framer-spngzq { aspect-ratio: 4.052238805970149 / 1; height: var(--framer-aspect-ratio-supported, 71px); overflow: visible; position: relative; width: 288px; }\",\".framer-sLFFa .framer-k7m9ho { aspect-ratio: 2.830188679245283 / 1; height: var(--framer-aspect-ratio-supported, 83px); overflow: visible; position: relative; width: 236px; }\",\".framer-sLFFa .framer-m3rpt6 { aspect-ratio: 2.6048387096774195 / 1; height: var(--framer-aspect-ratio-supported, 100px); overflow: visible; position: relative; width: 260px; }\",\".framer-sLFFa .framer-qmqf0r { aspect-ratio: 5.645161290322581 / 1; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 271px; }\",\".framer-sLFFa .framer-eunnit-container { flex: none; height: 105px; opacity: 0.33; position: relative; width: 808px; }\",\".framer-sLFFa .framer-mxrzjq-container { flex: none; height: 105px; opacity: 0.33; position: relative; width: 1142px; }\",\".framer-sLFFa .framer-17gndyx { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 419px; justify-content: center; overflow: hidden; padding: 100px 70px 100px 70px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-r4fifu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 200%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 955px; }\",\".framer-sLFFa .framer-1ljftxw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-sLFFa .framer-b7mobb, .framer-sLFFa .framer-1f5dqvj, .framer-sLFFa .framer-148pka8 { 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-sLFFa .framer-oexl4w, .framer-sLFFa .framer-zxiocl, .framer-sLFFa .framer-qlol0t, .framer-sLFFa .framer-1xkcfka, .framer-sLFFa .framer-ttpy4j, .framer-sLFFa .framer-awfer, .framer-sLFFa .framer-1alqqyd, .framer-sLFFa .framer-kez9p, .framer-sLFFa .framer-1vtb99b, .framer-sLFFa .framer-zgps9z { --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-sLFFa .framer-1vfz4qi { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 430px; justify-content: center; overflow: hidden; padding: 11px; position: relative; width: 1px; }\",\".framer-sLFFa .framer-1asf2a2 { flex: none; height: 251px; overflow: visible; position: relative; width: 74%; }\",\".framer-sLFFa .framer-1kk8ry7, .framer-sLFFa .framer-1m8bll { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 480px; justify-content: center; overflow: hidden; padding: 0px 70px 0px 70px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-1qu5gxe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 920px; }\",\".framer-sLFFa .framer-lltb8p { align-content: center; align-items: center; align-self: stretch; background-color: #ffffff; 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; }\",\".framer-sLFFa .framer-xywh53 { flex: 1 0 0px; height: 315px; overflow: visible; position: relative; width: 1px; }\",\".framer-sLFFa .framer-1l9ezuq { aspect-ratio: 1 / 1; bottom: -2px; flex: none; height: var(--framer-aspect-ratio-supported, 200px); left: 50%; overflow: visible; position: absolute; transform: translateX(-50%); width: 66%; z-index: 1; }\",\".framer-sLFFa .framer-j350gs, .framer-sLFFa .framer-15rg2kx, .framer-sLFFa .framer-1127mh5 { align-content: center; align-items: center; align-self: stretch; 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; }\",\".framer-sLFFa .framer-e15wcy { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 516px; justify-content: center; overflow: hidden; padding: 0px 70px 0px 70px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-fd7rfn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 920px; }\",\".framer-sLFFa .framer-k7rzkn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 400px; }\",\".framer-sLFFa .framer-e1rq7l, .framer-sLFFa .framer-z77v4n { align-content: center; align-items: center; align-self: stretch; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-sLFFa .framer-5l8tc5 { aspect-ratio: 0.9824074074074074 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 255px); overflow: visible; position: relative; width: 250px; }\",\".framer-sLFFa .framer-69u7il { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 233px); overflow: visible; position: relative; width: 233px; }\",\".framer-sLFFa .framer-1exx86v { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-jm7f8g { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 450px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-sLFFa .framer-132bpv8 { 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: 920px; }\",\".framer-sLFFa .framer-1gqbl19 { flex: 1 0 0px; height: 311px; overflow: visible; position: relative; width: 1px; }\",\".framer-sLFFa .framer-1ko8u3k { align-content: center; align-items: center; background-color: var(--token-67f46c62-dabf-4520-93ef-2989d3567173, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 548px; justify-content: flex-start; overflow: hidden; padding: 0px 24px 150px 24px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-11687gn-container { flex: none; height: 65%; left: 0px; position: absolute; right: 0px; top: 142px; z-index: 1; }\",\".framer-sLFFa .framer-ladgeb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: 55.75vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1152px; z-index: 1; }\",\".framer-sLFFa .framer-2c9je0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: 49px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sLFFa .framer-1pl4r8r, .framer-sLFFa .framer-jzgyd7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 574px; word-break: break-word; word-wrap: break-word; }\",\".framer-sLFFa .framer-1lv14e { flex: none; height: 283px; position: relative; width: 468px; }\",\".framer-sLFFa .framer-e1stki { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-1mtztnn { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 494px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-sLFFa .framer-ubkkjl { 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: 40px; position: relative; width: 429px; }\",\".framer-sLFFa .framer-bs0jfj, .framer-sLFFa .framer-1775od8 { 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: 20px; position: relative; width: 369px; }\",\".framer-sLFFa .framer-pwv8re, .framer-sLFFa .framer-n1pdpi { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 241px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 244px; }\",\".framer-sLFFa .framer-1g3cx1j { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); overflow: visible; position: absolute; right: 45px; top: 0px; width: 63%; z-index: 1; }\",\".framer-sLFFa .framer-1b93j17 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-1ddqu3 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 665px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-1dwepai { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 376px; justify-content: center; max-width: 2018px; padding: 40px; position: relative; width: 419px; }\",\".framer-sLFFa .framer-aljse4 { flex: none; height: 232px; overflow: visible; position: relative; width: 285px; }\",\".framer-sLFFa .framer-1v84tpt { align-content: center; align-items: center; background-color: var(--token-67f46c62-dabf-4520-93ef-2989d3567173, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 800px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-3fe2xw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: 93.5vh; justify-content: flex-start; overflow: hidden; padding: 45px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-sLFFa .framer-156k2hz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: 49px; overflow: visible; position: relative; white-space: pre-wrap; width: 1152px; word-break: break-word; word-wrap: break-word; }\",\".framer-sLFFa .framer-mmjw85 { flex: none; height: 445px; position: relative; width: 954px; }\",\".framer-sLFFa .framer-1bupwqd { flex: none; height: 192px; overflow: visible; position: relative; width: 180px; }\",\".framer-sLFFa .framer-qa4tnw { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 35px 40px 21px 40px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-1lwwm0j { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 1176px; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-sLFFa .framer-mrkei1 { align-content: center; align-items: center; align-self: start; 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: 100%; justify-content: center; justify-self: start; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-sLFFa .framer-bhr3c6 { aspect-ratio: 1.3333333333333333 / 1; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 368px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-sLFFa .framer-1u8kvz1, .framer-sLFFa .framer-12w65zj { 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; padding: 30px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-4l20w9, .framer-sLFFa .framer-1k45cor, .framer-sLFFa .framer-10lykrb { align-content: center; align-items: center; align-self: start; 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: 100%; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-sLFFa .framer-m7qjaz, .framer-sLFFa .framer-fsdqpf, .framer-sLFFa .framer-1n9ba2m { aspect-ratio: 1.3333333333333333 / 1; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 367px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-sLFFa .framer-1dq41pt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-n3q1nd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 46px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-a02xjf { align-content: center; align-items: center; background-color: #ff994f; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 876px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-1cz0ojv, .framer-sLFFa .framer-a9w5af { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-sLFFa .framer-a6lwnh { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 390px; word-break: break-word; word-wrap: break-word; }\",\".framer-sLFFa .framer-1ha4cj6 { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-v2uc14-container { flex: none; height: 52px; position: relative; width: 340px; }\",\".framer-sLFFa .framer-1sokfma { align-content: center; align-items: center; background-color: #3da9e8; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 96px 24px 96px 24px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-ozboww { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 960px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-sLFFa .framer-1cmgub5, .framer-sLFFa .framer-14ywgp1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sLFFa .framer-v191x2-container, .framer-sLFFa .framer-161qxs2-container, .framer-sLFFa .framer-p8ys8i-container, .framer-sLFFa .framer-1knwth-container, .framer-sLFFa .framer-45a3en-container, .framer-sLFFa .framer-1pvepso-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-sLFFa .framer-1azuphg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 96px 24px 96px 24px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-4og7aw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 960px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-wr8uk8 { align-content: center; align-items: center; background-color: var(--token-67f46c62-dabf-4520-93ef-2989d3567173, #ffffff); border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; 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%; will-change: var(--framer-will-change-override, transform); }\",\".framer-sLFFa .framer-dmrwnm { align-content: center; align-items: center; background-color: var(--token-67f46c62-dabf-4520-93ef-2989d3567173, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-qdgbza { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sLFFa .framer-xjb2z7 { align-content: center; align-items: center; background-color: var(--token-150fa150-05bb-4b2e-8421-72c9ff4d8731, #334eff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: 320px; }\",\".framer-sLFFa .framer-1tvalb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-sLFFa .framer-k207rp { align-content: center; align-items: center; background-color: var(--token-67f46c62-dabf-4520-93ef-2989d3567173, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 96px 24px 96px 24px; position: relative; width: 100%; }\",\".framer-sLFFa .framer-gy28fj-container { flex: none; height: auto; max-width: 960px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sLFFa.framer-72rtr7, .framer-sLFFa .framer-1de8p0d, .framer-sLFFa .framer-1le0wmd, .framer-sLFFa .framer-1c0f265, .framer-sLFFa .framer-1cdsdxe, .framer-sLFFa .framer-6yxj8y, .framer-sLFFa .framer-1o7kbz2, .framer-sLFFa .framer-fnb557, .framer-sLFFa .framer-1rpqps4, .framer-sLFFa .framer-1tnnyg1, .framer-sLFFa .framer-14eggjr, .framer-sLFFa .framer-twyadi, .framer-sLFFa .framer-1warhzp, .framer-sLFFa .framer-1af5a60, .framer-sLFFa .framer-lmsgdx, .framer-sLFFa .framer-17gndyx, .framer-sLFFa .framer-r4fifu, .framer-sLFFa .framer-1ljftxw, .framer-sLFFa .framer-b7mobb, .framer-sLFFa .framer-1vfz4qi, .framer-sLFFa .framer-1kk8ry7, .framer-sLFFa .framer-1qu5gxe, .framer-sLFFa .framer-lltb8p, .framer-sLFFa .framer-j350gs, .framer-sLFFa .framer-1f5dqvj, .framer-sLFFa .framer-e15wcy, .framer-sLFFa .framer-fd7rfn, .framer-sLFFa .framer-15rg2kx, .framer-sLFFa .framer-k7rzkn, .framer-sLFFa .framer-e1rq7l, .framer-sLFFa .framer-1exx86v, .framer-sLFFa .framer-jm7f8g, .framer-sLFFa .framer-1m8bll, .framer-sLFFa .framer-132bpv8, .framer-sLFFa .framer-z77v4n, .framer-sLFFa .framer-1127mh5, .framer-sLFFa .framer-148pka8, .framer-sLFFa .framer-1ko8u3k, .framer-sLFFa .framer-ladgeb, .framer-sLFFa .framer-e1stki, .framer-sLFFa .framer-1mtztnn, .framer-sLFFa .framer-ubkkjl, .framer-sLFFa .framer-bs0jfj, .framer-sLFFa .framer-pwv8re, .framer-sLFFa .framer-1b93j17, .framer-sLFFa .framer-1ddqu3, .framer-sLFFa .framer-1dwepai, .framer-sLFFa .framer-1775od8, .framer-sLFFa .framer-n1pdpi, .framer-sLFFa .framer-1v84tpt, .framer-sLFFa .framer-3fe2xw, .framer-sLFFa .framer-qa4tnw, .framer-sLFFa .framer-mrkei1, .framer-sLFFa .framer-1u8kvz1, .framer-sLFFa .framer-4l20w9, .framer-sLFFa .framer-1dq41pt, .framer-sLFFa .framer-1k45cor, .framer-sLFFa .framer-n3q1nd, .framer-sLFFa .framer-10lykrb, .framer-sLFFa .framer-12w65zj, .framer-sLFFa .framer-a02xjf, .framer-sLFFa .framer-1sokfma, .framer-sLFFa .framer-ozboww, .framer-sLFFa .framer-1azuphg, .framer-sLFFa .framer-4og7aw, .framer-sLFFa .framer-wr8uk8, .framer-sLFFa .framer-dmrwnm, .framer-sLFFa .framer-qdgbza, .framer-sLFFa .framer-xjb2z7, .framer-sLFFa .framer-k207rp { gap: 0px; } .framer-sLFFa.framer-72rtr7 > *, .framer-sLFFa .framer-1mtztnn > *, .framer-sLFFa .framer-1b93j17 > *, .framer-sLFFa .framer-1ddqu3 > *, .framer-sLFFa .framer-mrkei1 > *, .framer-sLFFa .framer-4l20w9 > *, .framer-sLFFa .framer-1k45cor > *, .framer-sLFFa .framer-10lykrb > *, .framer-sLFFa .framer-wr8uk8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sLFFa.framer-72rtr7 > :first-child, .framer-sLFFa .framer-1c0f265 > :first-child, .framer-sLFFa .framer-1cdsdxe > :first-child, .framer-sLFFa .framer-6yxj8y > :first-child, .framer-sLFFa .framer-1o7kbz2 > :first-child, .framer-sLFFa .framer-fnb557 > :first-child, .framer-sLFFa .framer-1rpqps4 > :first-child, .framer-sLFFa .framer-14eggjr > :first-child, .framer-sLFFa .framer-twyadi > :first-child, .framer-sLFFa .framer-1warhzp > :first-child, .framer-sLFFa .framer-1af5a60 > :first-child, .framer-sLFFa .framer-lmsgdx > :first-child, .framer-sLFFa .framer-b7mobb > :first-child, .framer-sLFFa .framer-1f5dqvj > :first-child, .framer-sLFFa .framer-k7rzkn > :first-child, .framer-sLFFa .framer-jm7f8g > :first-child, .framer-sLFFa .framer-148pka8 > :first-child, .framer-sLFFa .framer-1ko8u3k > :first-child, .framer-sLFFa .framer-ladgeb > :first-child, .framer-sLFFa .framer-1mtztnn > :first-child, .framer-sLFFa .framer-ubkkjl > :first-child, .framer-sLFFa .framer-bs0jfj > :first-child, .framer-sLFFa .framer-1b93j17 > :first-child, .framer-sLFFa .framer-1ddqu3 > :first-child, .framer-sLFFa .framer-1dwepai > :first-child, .framer-sLFFa .framer-1775od8 > :first-child, .framer-sLFFa .framer-1v84tpt > :first-child, .framer-sLFFa .framer-3fe2xw > :first-child, .framer-sLFFa .framer-qa4tnw > :first-child, .framer-sLFFa .framer-mrkei1 > :first-child, .framer-sLFFa .framer-1u8kvz1 > :first-child, .framer-sLFFa .framer-4l20w9 > :first-child, .framer-sLFFa .framer-1dq41pt > :first-child, .framer-sLFFa .framer-1k45cor > :first-child, .framer-sLFFa .framer-n3q1nd > :first-child, .framer-sLFFa .framer-10lykrb > :first-child, .framer-sLFFa .framer-12w65zj > :first-child, .framer-sLFFa .framer-a02xjf > :first-child, .framer-sLFFa .framer-1sokfma > :first-child, .framer-sLFFa .framer-ozboww > :first-child, .framer-sLFFa .framer-1azuphg > :first-child, .framer-sLFFa .framer-4og7aw > :first-child, .framer-sLFFa .framer-wr8uk8 > :first-child, .framer-sLFFa .framer-dmrwnm > :first-child, .framer-sLFFa .framer-k207rp > :first-child { margin-top: 0px; } .framer-sLFFa.framer-72rtr7 > :last-child, .framer-sLFFa .framer-1c0f265 > :last-child, .framer-sLFFa .framer-1cdsdxe > :last-child, .framer-sLFFa .framer-6yxj8y > :last-child, .framer-sLFFa .framer-1o7kbz2 > :last-child, .framer-sLFFa .framer-fnb557 > :last-child, .framer-sLFFa .framer-1rpqps4 > :last-child, .framer-sLFFa .framer-14eggjr > :last-child, .framer-sLFFa .framer-twyadi > :last-child, .framer-sLFFa .framer-1warhzp > :last-child, .framer-sLFFa .framer-1af5a60 > :last-child, .framer-sLFFa .framer-lmsgdx > :last-child, .framer-sLFFa .framer-b7mobb > :last-child, .framer-sLFFa .framer-1f5dqvj > :last-child, .framer-sLFFa .framer-k7rzkn > :last-child, .framer-sLFFa .framer-jm7f8g > :last-child, .framer-sLFFa .framer-148pka8 > :last-child, .framer-sLFFa .framer-1ko8u3k > :last-child, .framer-sLFFa .framer-ladgeb > :last-child, .framer-sLFFa .framer-1mtztnn > :last-child, .framer-sLFFa .framer-ubkkjl > :last-child, .framer-sLFFa .framer-bs0jfj > :last-child, .framer-sLFFa .framer-1b93j17 > :last-child, .framer-sLFFa .framer-1ddqu3 > :last-child, .framer-sLFFa .framer-1dwepai > :last-child, .framer-sLFFa .framer-1775od8 > :last-child, .framer-sLFFa .framer-1v84tpt > :last-child, .framer-sLFFa .framer-3fe2xw > :last-child, .framer-sLFFa .framer-qa4tnw > :last-child, .framer-sLFFa .framer-mrkei1 > :last-child, .framer-sLFFa .framer-1u8kvz1 > :last-child, .framer-sLFFa .framer-4l20w9 > :last-child, .framer-sLFFa .framer-1dq41pt > :last-child, .framer-sLFFa .framer-1k45cor > :last-child, .framer-sLFFa .framer-n3q1nd > :last-child, .framer-sLFFa .framer-10lykrb > :last-child, .framer-sLFFa .framer-12w65zj > :last-child, .framer-sLFFa .framer-a02xjf > :last-child, .framer-sLFFa .framer-1sokfma > :last-child, .framer-sLFFa .framer-ozboww > :last-child, .framer-sLFFa .framer-1azuphg > :last-child, .framer-sLFFa .framer-4og7aw > :last-child, .framer-sLFFa .framer-wr8uk8 > :last-child, .framer-sLFFa .framer-dmrwnm > :last-child, .framer-sLFFa .framer-k207rp > :last-child { margin-bottom: 0px; } .framer-sLFFa .framer-1de8p0d > *, .framer-sLFFa .framer-1tnnyg1 > *, .framer-sLFFa .framer-r4fifu > *, .framer-sLFFa .framer-1ljftxw > *, .framer-sLFFa .framer-lltb8p > *, .framer-sLFFa .framer-j350gs > *, .framer-sLFFa .framer-15rg2kx > *, .framer-sLFFa .framer-132bpv8 > *, .framer-sLFFa .framer-1127mh5 > *, .framer-sLFFa .framer-xjb2z7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sLFFa .framer-1de8p0d > :first-child, .framer-sLFFa .framer-1le0wmd > :first-child, .framer-sLFFa .framer-1tnnyg1 > :first-child, .framer-sLFFa .framer-17gndyx > :first-child, .framer-sLFFa .framer-r4fifu > :first-child, .framer-sLFFa .framer-1ljftxw > :first-child, .framer-sLFFa .framer-1vfz4qi > :first-child, .framer-sLFFa .framer-1kk8ry7 > :first-child, .framer-sLFFa .framer-1qu5gxe > :first-child, .framer-sLFFa .framer-lltb8p > :first-child, .framer-sLFFa .framer-j350gs > :first-child, .framer-sLFFa .framer-e15wcy > :first-child, .framer-sLFFa .framer-fd7rfn > :first-child, .framer-sLFFa .framer-15rg2kx > :first-child, .framer-sLFFa .framer-e1rq7l > :first-child, .framer-sLFFa .framer-1exx86v > :first-child, .framer-sLFFa .framer-1m8bll > :first-child, .framer-sLFFa .framer-132bpv8 > :first-child, .framer-sLFFa .framer-z77v4n > :first-child, .framer-sLFFa .framer-1127mh5 > :first-child, .framer-sLFFa .framer-e1stki > :first-child, .framer-sLFFa .framer-pwv8re > :first-child, .framer-sLFFa .framer-n1pdpi > :first-child, .framer-sLFFa .framer-qdgbza > :first-child, .framer-sLFFa .framer-xjb2z7 > :first-child { margin-left: 0px; } .framer-sLFFa .framer-1de8p0d > :last-child, .framer-sLFFa .framer-1le0wmd > :last-child, .framer-sLFFa .framer-1tnnyg1 > :last-child, .framer-sLFFa .framer-17gndyx > :last-child, .framer-sLFFa .framer-r4fifu > :last-child, .framer-sLFFa .framer-1ljftxw > :last-child, .framer-sLFFa .framer-1vfz4qi > :last-child, .framer-sLFFa .framer-1kk8ry7 > :last-child, .framer-sLFFa .framer-1qu5gxe > :last-child, .framer-sLFFa .framer-lltb8p > :last-child, .framer-sLFFa .framer-j350gs > :last-child, .framer-sLFFa .framer-e15wcy > :last-child, .framer-sLFFa .framer-fd7rfn > :last-child, .framer-sLFFa .framer-15rg2kx > :last-child, .framer-sLFFa .framer-e1rq7l > :last-child, .framer-sLFFa .framer-1exx86v > :last-child, .framer-sLFFa .framer-1m8bll > :last-child, .framer-sLFFa .framer-132bpv8 > :last-child, .framer-sLFFa .framer-z77v4n > :last-child, .framer-sLFFa .framer-1127mh5 > :last-child, .framer-sLFFa .framer-e1stki > :last-child, .framer-sLFFa .framer-pwv8re > :last-child, .framer-sLFFa .framer-n1pdpi > :last-child, .framer-sLFFa .framer-qdgbza > :last-child, .framer-sLFFa .framer-xjb2z7 > :last-child { margin-right: 0px; } .framer-sLFFa .framer-1le0wmd > *, .framer-sLFFa .framer-1vfz4qi > *, .framer-sLFFa .framer-1qu5gxe > *, .framer-sLFFa .framer-e1rq7l > *, .framer-sLFFa .framer-z77v4n > *, .framer-sLFFa .framer-pwv8re > *, .framer-sLFFa .framer-n1pdpi > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-sLFFa .framer-1c0f265 > *, .framer-sLFFa .framer-1o7kbz2 > *, .framer-sLFFa .framer-fnb557 > *, .framer-sLFFa .framer-1rpqps4 > *, .framer-sLFFa .framer-14eggjr > *, .framer-sLFFa .framer-twyadi > *, .framer-sLFFa .framer-1warhzp > *, .framer-sLFFa .framer-1af5a60 > *, .framer-sLFFa .framer-lmsgdx > *, .framer-sLFFa .framer-k7rzkn > *, .framer-sLFFa .framer-1ko8u3k > *, .framer-sLFFa .framer-1v84tpt > *, .framer-sLFFa .framer-1sokfma > *, .framer-sLFFa .framer-1azuphg > *, .framer-sLFFa .framer-k207rp > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-sLFFa .framer-1cdsdxe > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-sLFFa .framer-6yxj8y > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-sLFFa .framer-17gndyx > *, .framer-sLFFa .framer-1kk8ry7 > *, .framer-sLFFa .framer-e15wcy > *, .framer-sLFFa .framer-1exx86v > *, .framer-sLFFa .framer-1m8bll > *, .framer-sLFFa .framer-e1stki > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-sLFFa .framer-b7mobb > *, .framer-sLFFa .framer-1f5dqvj > *, .framer-sLFFa .framer-jm7f8g > *, .framer-sLFFa .framer-148pka8 > *, .framer-sLFFa .framer-ubkkjl > *, .framer-sLFFa .framer-bs0jfj > *, .framer-sLFFa .framer-1dwepai > *, .framer-sLFFa .framer-1775od8 > *, .framer-sLFFa .framer-1u8kvz1 > *, .framer-sLFFa .framer-12w65zj > *, .framer-sLFFa .framer-a02xjf > *, .framer-sLFFa .framer-dmrwnm > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-sLFFa .framer-fd7rfn > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-sLFFa .framer-ladgeb > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-sLFFa .framer-3fe2xw > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-sLFFa .framer-qa4tnw > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-sLFFa .framer-1dq41pt > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-sLFFa .framer-n3q1nd > * { margin: 0px; margin-bottom: calc(46px / 2); margin-top: calc(46px / 2); } .framer-sLFFa .framer-ozboww > *, .framer-sLFFa .framer-4og7aw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-sLFFa .framer-qdgbza > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-sLFFa[data-border=\"true\"]::after, .framer-sLFFa [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-sLFFa.framer-72rtr7 { gap: 23px; width: 810px; } .framer-sLFFa .framer-1u9jm6p-container, .framer-sLFFa .framer-rg4fme, .framer-sLFFa .framer-hv8al1 { order: 0; } .framer-sLFFa .framer-1de8p0d, .framer-sLFFa .framer-1warhzp, .framer-sLFFa .framer-lmsgdx { order: 1; } .framer-sLFFa .framer-1le0wmd, .framer-sLFFa .framer-1ljftxw { height: min-content; } .framer-sLFFa .framer-1c0f265 { gap: 11px; padding: 96px 0px 0px 0px; } .framer-sLFFa .framer-1cdsdxe { order: 0; padding: 60px 0px 0px 0px; } .framer-sLFFa .framer-6yxj8y { gap: 24px; order: 1; padding: 33px 24px 0px 24px; } .framer-sLFFa .framer-1xtbxol { grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(3, min-content); } .framer-sLFFa .framer-1o7kbz2, .framer-sLFFa .framer-1rpqps4, .framer-sLFFa .framer-twyadi, .framer-sLFFa .framer-1af5a60 { padding: 31px 8px 31px 8px; } .framer-sLFFa .framer-1xt2jf6 { order: 0; width: 227px; } .framer-sLFFa .framer-eunnit-container { order: 2; } .framer-sLFFa .framer-17gndyx { flex-direction: column; height: min-content; order: 4; padding: 0px 70px 0px 70px; } .framer-sLFFa .framer-r4fifu { gap: 0px; height: 492px; width: 610px; } .framer-sLFFa .framer-b7mobb { flex: 1 0 0px; max-width: 460px; padding: 0px 40px 0px 40px; width: 1px; } .framer-sLFFa .framer-oexl4w { order: 1; width: 245px; } .framer-sLFFa .framer-1vfz4qi { height: min-content; padding: 0px 11px 0px 11px; } .framer-sLFFa .framer-1asf2a2 { height: 235px; width: 261px; } .framer-sLFFa .framer-1kk8ry7 { flex-direction: column; height: min-content; order: 5; padding: 0px 70px 20px 70px; width: 101%; } .framer-sLFFa .framer-1qu5gxe { gap: 0px; height: 292px; order: 0; } .framer-sLFFa .framer-lltb8p, .framer-sLFFa .framer-z77v4n { align-self: unset; flex: none; height: 100%; order: 0; width: 46%; } .framer-sLFFa .framer-xywh53 { flex: none; height: 288px; order: 0; width: 90%; } .framer-sLFFa .framer-j350gs, .framer-sLFFa .framer-e1rq7l, .framer-sLFFa .framer-1127mh5 { align-self: unset; height: 100%; order: 1; } .framer-sLFFa .framer-1f5dqvj, .framer-sLFFa .framer-148pka8 { order: 0; padding: 40px; width: 100%; } .framer-sLFFa .framer-zxiocl, .framer-sLFFa .framer-1xkcfka { width: 86%; } .framer-sLFFa .framer-e15wcy { flex-direction: column; height: min-content; order: 6; padding: 20px 70px 0px 70px; width: 95%; } .framer-sLFFa .framer-fd7rfn { height: 455px; } .framer-sLFFa .framer-15rg2kx { align-self: unset; flex: none; height: 100%; order: 0; width: 62%; } .framer-sLFFa .framer-k7rzkn { order: 0; padding: 40px; width: 75%; } .framer-sLFFa .framer-1idi7el { order: 0; width: 93%; } .framer-sLFFa .framer-qlol0t { order: 1; width: 120%; } .framer-sLFFa .framer-69u7il { height: var(--framer-aspect-ratio-supported, 198px); order: 1; position: absolute; right: 118px; top: 50%; transform: translateY(-50%); width: 63%; z-index: 1; } .framer-sLFFa .framer-1exx86v { order: 7; } .framer-sLFFa .framer-jm7f8g { height: 500px; } .framer-sLFFa .framer-1m8bll { flex-direction: column; height: min-content; padding: 0px 70px 20px 70px; width: 101%; } .framer-sLFFa .framer-132bpv8 { height: 491px; order: 0; } .framer-sLFFa .framer-1gqbl19 { flex: none; height: 263px; order: 0; width: 77%; } .framer-sLFFa .framer-1ko8u3k { height: 518px; order: 8; padding: 0px 24px 0px 24px; } .framer-sLFFa .framer-11687gn-container { height: 79%; order: 0; top: 94px; } .framer-sLFFa .framer-ladgeb { gap: 35px; height: 500px; order: 1; width: 100%; } .framer-sLFFa .framer-2c9je0 { width: 1152px; } .framer-sLFFa .framer-1lv14e { height: 219px; width: 354px; } .framer-sLFFa .framer-1v84tpt { height: 472px; order: 10; } .framer-sLFFa .framer-3fe2xw { gap: 29px; height: 471px; padding: 15px 0px 0px 0px; } .framer-sLFFa .framer-156k2hz { height: 56px; } .framer-sLFFa .framer-mmjw85 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 225px); overflow: visible; width: 225px; } .framer-sLFFa .framer-qa4tnw { order: 11; padding: 80px 40px 80px 40px; } .framer-sLFFa .framer-1lwwm0j { height: 1025px; } .framer-sLFFa .framer-bhr3c6, .framer-sLFFa .framer-m7qjaz, .framer-sLFFa .framer-fsdqpf { height: var(--framer-aspect-ratio-supported, 266px); } .framer-sLFFa .framer-n3q1nd { gap: 40px; } .framer-sLFFa .framer-1n9ba2m { height: var(--framer-aspect-ratio-supported, 267px); } .framer-sLFFa .framer-a02xjf { height: 600px; order: 12; } .framer-sLFFa .framer-1sokfma { order: 13; } .framer-sLFFa .framer-1azuphg { order: 14; } .framer-sLFFa .framer-dmrwnm { height: 211px; order: 15; } .framer-sLFFa .framer-k207rp { order: 16; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sLFFa.framer-72rtr7, .framer-sLFFa .framer-1c0f265, .framer-sLFFa .framer-6yxj8y, .framer-sLFFa .framer-17gndyx, .framer-sLFFa .framer-r4fifu, .framer-sLFFa .framer-1kk8ry7, .framer-sLFFa .framer-1qu5gxe, .framer-sLFFa .framer-e15wcy, .framer-sLFFa .framer-1m8bll, .framer-sLFFa .framer-ladgeb, .framer-sLFFa .framer-3fe2xw, .framer-sLFFa .framer-n3q1nd { gap: 0px; } .framer-sLFFa.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-sLFFa.framer-72rtr7 > :first-child, .framer-sLFFa .framer-1c0f265 > :first-child, .framer-sLFFa .framer-6yxj8y > :first-child, .framer-sLFFa .framer-17gndyx > :first-child, .framer-sLFFa .framer-1kk8ry7 > :first-child, .framer-sLFFa .framer-e15wcy > :first-child, .framer-sLFFa .framer-1m8bll > :first-child, .framer-sLFFa .framer-ladgeb > :first-child, .framer-sLFFa .framer-3fe2xw > :first-child, .framer-sLFFa .framer-n3q1nd > :first-child { margin-top: 0px; } .framer-sLFFa.framer-72rtr7 > :last-child, .framer-sLFFa .framer-1c0f265 > :last-child, .framer-sLFFa .framer-6yxj8y > :last-child, .framer-sLFFa .framer-17gndyx > :last-child, .framer-sLFFa .framer-1kk8ry7 > :last-child, .framer-sLFFa .framer-e15wcy > :last-child, .framer-sLFFa .framer-1m8bll > :last-child, .framer-sLFFa .framer-ladgeb > :last-child, .framer-sLFFa .framer-3fe2xw > :last-child, .framer-sLFFa .framer-n3q1nd > :last-child { margin-bottom: 0px; } .framer-sLFFa .framer-1c0f265 > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } .framer-sLFFa .framer-6yxj8y > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-sLFFa .framer-17gndyx > *, .framer-sLFFa .framer-1kk8ry7 > *, .framer-sLFFa .framer-e15wcy > *, .framer-sLFFa .framer-1m8bll > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sLFFa .framer-r4fifu > *, .framer-sLFFa .framer-1qu5gxe > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-sLFFa .framer-r4fifu > :first-child, .framer-sLFFa .framer-1qu5gxe > :first-child { margin-left: 0px; } .framer-sLFFa .framer-r4fifu > :last-child, .framer-sLFFa .framer-1qu5gxe > :last-child { margin-right: 0px; } .framer-sLFFa .framer-ladgeb > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-sLFFa .framer-3fe2xw > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-sLFFa .framer-n3q1nd > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\",\"@media (max-width: 809px) { .framer-sLFFa.framer-72rtr7 { width: 390px; } .framer-sLFFa .framer-1u9jm6p-container, .framer-sLFFa .framer-5xrs6g, .framer-sLFFa .framer-1lmrtpl, .framer-sLFFa .framer-aljse4, .framer-sLFFa .framer-156k2hz, .framer-sLFFa .framer-vhzscm { order: 0; } .framer-sLFFa .framer-1de8p0d { gap: 0px; height: 1375px; order: 1; } .framer-sLFFa .framer-1le0wmd { align-content: center; align-items: center; flex-direction: column; gap: 10px; height: 100%; max-width: 1009px; order: 0; } .framer-sLFFa .framer-1c0f265 { flex: none; gap: 15px; padding: 75px 0px 0px 0px; width: 100%; } .framer-sLFFa .framer-1cdsdxe { order: 0; padding: 45px 0px 0px 0px; } .framer-sLFFa .framer-117is2g { width: 384px; } .framer-sLFFa .framer-6yxj8y { gap: 0px; order: 1; padding: 33px 24px 16px 24px; } .framer-sLFFa .framer-1xtbxol { grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(3, min-content); } .framer-sLFFa .framer-1o7kbz2 { padding: 17px 8px 17px 8px; } .framer-sLFFa .framer-1xt2jf6 { width: 227px; } .framer-sLFFa .framer-1kk8ry7 { flex-direction: column; height: 595px; order: 6; padding: 0px; z-index: 1; } .framer-sLFFa .framer-1qu5gxe { flex-direction: column; gap: 0px; height: 97%; order: 0; width: 100%; } .framer-sLFFa .framer-lltb8p { align-self: unset; flex: none; height: 295px; order: 1; width: 375px; } .framer-sLFFa .framer-1l9ezuq { height: var(--framer-aspect-ratio-supported, 248px); } .framer-sLFFa .framer-j350gs { align-self: unset; flex: none; height: min-content; order: 0; width: 369px; } .framer-sLFFa .framer-1f5dqvj { flex: 1 0 0px; padding: 20px; width: 1px; } .framer-sLFFa .framer-zxiocl, .framer-sLFFa .framer-1b93j17, .framer-sLFFa .framer-awfer { order: 1; } .framer-sLFFa .framer-e15wcy { flex-direction: column; height: 636px; order: 4; } .framer-sLFFa .framer-fd7rfn { flex-direction: column; height: 609px; order: 0; width: 394px; } .framer-sLFFa .framer-15rg2kx { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-sLFFa .framer-k7rzkn { order: 0; padding: 20px; width: 89%; } .framer-sLFFa .framer-1idi7el { order: 0; width: 99%; } .framer-sLFFa .framer-qlol0t { order: 1; width: 103%; } .framer-sLFFa .framer-e1rq7l { align-self: unset; flex: none; height: 299px; width: 100%; } .framer-sLFFa .framer-5l8tc5 { height: var(--framer-aspect-ratio-supported, 254px); order: 0; } .framer-sLFFa .framer-1ko8u3k { gap: 0px; height: 442px; order: 9; padding: 10px 24px 0px 24px; } .framer-sLFFa .framer-11687gn-container { height: 217px; top: 238px; } .framer-sLFFa .framer-ladgeb { height: 455px; width: 100%; } .framer-sLFFa .framer-2c9je0 { height: 48px; } .framer-sLFFa .framer-1pl4r8r { width: 343px; } .framer-sLFFa .framer-1lv14e { height: 185px; width: 314px; } .framer-sLFFa .framer-e1stki { flex-direction: column; order: 7; } .framer-sLFFa .framer-1mtztnn { flex: none; order: 0; width: 100%; } .framer-sLFFa .framer-1g3cx1j { height: var(--framer-aspect-ratio-supported, 153px); } .framer-sLFFa .framer-1v84tpt { gap: 0px; height: 407px; order: 10; padding: 20px 0px 0px 0px; } .framer-sLFFa .framer-3fe2xw { gap: 10px; height: 380px; padding: 0px; } .framer-sLFFa .framer-jzgyd7 { order: 1; width: 331px; } .framer-sLFFa .framer-1bupwqd { order: 2; } .framer-sLFFa .framer-qa4tnw { gap: 43px; height: 2424px; order: 11; padding: 60px 20px 60px 20px; width: 104%; } .framer-sLFFa .framer-1lwwm0j { gap: 23px; grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(4, minmax(0, 1fr)); height: 2237px; order: 1; } .framer-sLFFa .framer-mrkei1 { min-width: 272px; } .framer-sLFFa .framer-bhr3c6, .framer-sLFFa .framer-m7qjaz, .framer-sLFFa .framer-1n9ba2m { height: var(--framer-aspect-ratio-supported, 274px); } .framer-sLFFa .framer-fsdqpf { height: var(--framer-aspect-ratio-supported, 273px); } .framer-sLFFa .framer-a02xjf { height: 751px; order: 12; padding: 60px; } .framer-sLFFa .framer-1ha4cj6 { flex: none; height: 258px; max-width: 100%; width: 270px; } .framer-sLFFa .framer-1sokfma { order: 13; } .framer-sLFFa .framer-1azuphg { order: 14; padding: 36px 24px 36px 24px; } .framer-sLFFa .framer-dmrwnm { height: 324px; order: 15; padding: 60px; } .framer-sLFFa .framer-k207rp { height: 647px; order: 16; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sLFFa .framer-1de8p0d, .framer-sLFFa .framer-1le0wmd, .framer-sLFFa .framer-1c0f265, .framer-sLFFa .framer-6yxj8y, .framer-sLFFa .framer-1kk8ry7, .framer-sLFFa .framer-1qu5gxe, .framer-sLFFa .framer-e15wcy, .framer-sLFFa .framer-fd7rfn, .framer-sLFFa .framer-1ko8u3k, .framer-sLFFa .framer-e1stki, .framer-sLFFa .framer-1v84tpt, .framer-sLFFa .framer-3fe2xw, .framer-sLFFa .framer-qa4tnw, .framer-sLFFa .framer-1lwwm0j { gap: 0px; } .framer-sLFFa .framer-1de8p0d > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-sLFFa .framer-1de8p0d > :first-child { margin-left: 0px; } .framer-sLFFa .framer-1de8p0d > :last-child { margin-right: 0px; } .framer-sLFFa .framer-1le0wmd > *, .framer-sLFFa .framer-3fe2xw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-sLFFa .framer-1le0wmd > :first-child, .framer-sLFFa .framer-1c0f265 > :first-child, .framer-sLFFa .framer-6yxj8y > :first-child, .framer-sLFFa .framer-1kk8ry7 > :first-child, .framer-sLFFa .framer-1qu5gxe > :first-child, .framer-sLFFa .framer-e15wcy > :first-child, .framer-sLFFa .framer-fd7rfn > :first-child, .framer-sLFFa .framer-1ko8u3k > :first-child, .framer-sLFFa .framer-e1stki > :first-child, .framer-sLFFa .framer-1v84tpt > :first-child, .framer-sLFFa .framer-3fe2xw > :first-child, .framer-sLFFa .framer-qa4tnw > :first-child { margin-top: 0px; } .framer-sLFFa .framer-1le0wmd > :last-child, .framer-sLFFa .framer-1c0f265 > :last-child, .framer-sLFFa .framer-6yxj8y > :last-child, .framer-sLFFa .framer-1kk8ry7 > :last-child, .framer-sLFFa .framer-1qu5gxe > :last-child, .framer-sLFFa .framer-e15wcy > :last-child, .framer-sLFFa .framer-fd7rfn > :last-child, .framer-sLFFa .framer-1ko8u3k > :last-child, .framer-sLFFa .framer-e1stki > :last-child, .framer-sLFFa .framer-1v84tpt > :last-child, .framer-sLFFa .framer-3fe2xw > :last-child, .framer-sLFFa .framer-qa4tnw > :last-child { margin-bottom: 0px; } .framer-sLFFa .framer-1c0f265 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-sLFFa .framer-6yxj8y > *, .framer-sLFFa .framer-1kk8ry7 > *, .framer-sLFFa .framer-1qu5gxe > *, .framer-sLFFa .framer-e15wcy > *, .framer-sLFFa .framer-1ko8u3k > *, .framer-sLFFa .framer-e1stki > *, .framer-sLFFa .framer-1v84tpt > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sLFFa .framer-fd7rfn > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-sLFFa .framer-qa4tnw > * { margin: 0px; margin-bottom: calc(43px / 2); margin-top: calc(43px / 2); } .framer-sLFFa .framer-1lwwm0j > *, .framer-sLFFa .framer-1lwwm0j > :first-child, .framer-sLFFa .framer-1lwwm0j > :last-child { margin: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8181\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"uvnba0gR2\":{\"layout\":[\"fixed\",\"auto\"]},\"N0rcRUruD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-sLFFa\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8181,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...NavFonts,...HeroFonts,...TickerFonts,...ParticlesFonts,...AppStoreButtonsFonts,...TestimonialsSlideFonts,...FAQTabFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uvnba0gR2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"N0rcRUruD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicHeight\":\"8181\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "Component", "Home_default", "React", "title", "titleId", "props", "svgRef", "iconKeys", "moduleBaseUrl", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "Home_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "defaultEvents", "NavFonts", "getFonts", "iITJmobfi_default", "HeroFonts", "Icon", "TickerFonts", "Ticker", "ParticlesFonts", "ParticleWrapper", "AppStoreButtonsFonts", "S0rDXYWn2_default", "TestimonialsSlideFonts", "DDx3J_XBg_default", "FAQTabFonts", "mI3ksRBxQ_default", "FooterFonts", "vfGWeq_Dz_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transformTemplate1", "_", "t", "transformTemplate2", "toResponsiveImage", "value", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "xWk18BpZJT5zKM7tej", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "RichText2", "Link", "getLoadingLazyAtYPosition", "Image2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
