{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js", "ssg:https://framerusercontent.com/modules/WiKGcsqDCfjPbnBM9oBY/PUHLeZ2goo6OhJCkHKbF/cOy6SoC7m.js", "ssg:https://framerusercontent.com/modules/lPiGMOK1oOEErQk7EZz4/SexfeGoePcfg7gBH6Qau/DcDxxV0wT.js", "ssg:https://framerusercontent.com/modules/51bC2vdSFZ454Y6kvF0U/3sloKToEjzqAqdytaAhj/KQERLBVX5.js", "ssg:https://framerusercontent.com/modules/tGmh3N9qu8jmPbkSNC5C/8ubV7q6wwvWat8UPnjxy/vQlXUXHkQ.js", "ssg:https://framerusercontent.com/modules/C9X64zVf7Fw2rnTAZVf9/QUbjUQmZZGFlPzgjs15Z/xeuYGG01W.js", "ssg:https://framerusercontent.com/modules/qtQa0n7gXvHZmMPvwhrS/8HRRloaT96o2s6UQtUmq/ZGE0zunRA.js", "ssg:https://framerusercontent.com/modules/fIAokZmEAjdpVxVJGRij/o9L7fGcxGuwQ0x203Km9/XVWZCkKkn.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (0623976)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{Lottie}from\"https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/7oWoX9MqdnxameM59dqC/Lottie.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/xhpgqsklHxdkSEjoOJcC/GfDHTN5JJf4OkVTe4x7w/ePgYE6YrG.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Al2NMLjUr4XiuMMPCo2u/PNbEO70sbwFZf4TBD75X/fVxnimdqP.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/hm41zUEsgKsHpkAyhyAz/kV4VbjQYjIpx7rAq8yl1/xZndidUCt.js\";const FeatherFonts=getFonts(Feather);const LottieFonts=getFonts(Lottie);const cycleOrder=[\"kQr1sMlsb\",\"mHv1vg7jG\",\"jlFzLyzsH\",\"Z7zTRmzXi\",\"pbfMSrQ4i\",\"xGSD3gm3Y\",\"Y2cUclY6b\",\"OlGdX573H\",\"IGSxhw896\",\"qGHdZUQ8M\",\"KhlMHMO2L\",\"XZ3HLQTFr\",\"cUjfnrzyk\"];const serializationHash=\"framer-5PuRV\";const variantClassNames={cUjfnrzyk:\"framer-v-lyz5oy\",IGSxhw896:\"framer-v-1argme4\",jlFzLyzsH:\"framer-v-1x9v08x\",KhlMHMO2L:\"framer-v-3mdyp5\",kQr1sMlsb:\"framer-v-af8mn8\",mHv1vg7jG:\"framer-v-pamyjr\",OlGdX573H:\"framer-v-1vnyz8g\",pbfMSrQ4i:\"framer-v-10l6ew4\",qGHdZUQ8M:\"framer-v-jaxjki\",xGSD3gm3Y:\"framer-v-16yyovy\",XZ3HLQTFr:\"framer-v-172e2jv\",Y2cUclY6b:\"framer-v-dth3dl\",Z7zTRmzXi:\"framer-v-a42hxg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Horizontal:\"row\",Vertical:\"column\"};const humanReadableVariantMap={\"CS Scroll\":\"XZ3HLQTFr\",\"Eng Scroll\":\"IGSxhw896\",\"Math Scroll\":\"OlGdX573H\",\"Sci Scroll\":\"KhlMHMO2L\",\"SS Scroll\":\"qGHdZUQ8M\",\"WL Scroll\":\"cUjfnrzyk\",CS:\"pbfMSrQ4i\",Eng:\"mHv1vg7jG\",Math:\"kQr1sMlsb\",Sci:\"Z7zTRmzXi\",SS:\"jlFzLyzsH\",Static:\"Y2cUclY6b\",WL:\"xGSD3gm3Y\"};const getProps=({direction,height,id,width,...props})=>{var _humanReadableEnumMap_direction,_ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,uHdKBLTd7:(_ref1=(_ref=(_humanReadableEnumMap_direction=humanReadableEnumMap[direction])!==null&&_humanReadableEnumMap_direction!==void 0?_humanReadableEnumMap_direction:direction)!==null&&_ref!==void 0?_ref:props.uHdKBLTd7)!==null&&_ref1!==void 0?_ref1:\"row\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"kQr1sMlsb\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,uHdKBLTd7,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"kQr1sMlsb\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1lopqmm=activeVariantCallback(async(...args)=>{setVariant(\"kQr1sMlsb\");});const onTapwf8f97=activeVariantCallback(async(...args)=>{setVariant(\"OlGdX573H\");});const onTap1kvqhos=activeVariantCallback(async(...args)=>{setVariant(\"mHv1vg7jG\");});const onTap1il23rh=activeVariantCallback(async(...args)=>{setVariant(\"jlFzLyzsH\");});const onTap10b8ntv=activeVariantCallback(async(...args)=>{setVariant(\"Z7zTRmzXi\");});const onTap5jiytv=activeVariantCallback(async(...args)=>{setVariant(\"pbfMSrQ4i\");});const onTap1icpi32=activeVariantCallback(async(...args)=>{setVariant(\"xGSD3gm3Y\");});const onMouseEnterwf8f97=activeVariantCallback(async(...args)=>{setVariant(\"OlGdX573H\");});const onMouseEnter1ktnnn0=activeVariantCallback(async(...args)=>{setVariant(\"qGHdZUQ8M\");});const onMouseEntergum63g=activeVariantCallback(async(...args)=>{setVariant(\"KhlMHMO2L\");});const onMouseEnterrz5x7j=activeVariantCallback(async(...args)=>{setVariant(\"XZ3HLQTFr\");});const onMouseEnter163zz8i=activeVariantCallback(async(...args)=>{setVariant(\"cUjfnrzyk\");});const onMouseEnter1l72qyg=activeVariantCallback(async(...args)=>{setVariant(\"IGSxhw896\");});const onMouseLeave1kvqhos=activeVariantCallback(async(...args)=>{setVariant(\"mHv1vg7jG\");});const onMouseLeave1lopqmm=activeVariantCallback(async(...args)=>{setVariant(\"kQr1sMlsb\");});const onMouseLeave1il23rh=activeVariantCallback(async(...args)=>{setVariant(\"jlFzLyzsH\");});const onMouseLeave10b8ntv=activeVariantCallback(async(...args)=>{setVariant(\"Z7zTRmzXi\");});const onMouseLeave5jiytv=activeVariantCallback(async(...args)=>{setVariant(\"pbfMSrQ4i\");});const onMouseLeave1icpi32=activeVariantCallback(async(...args)=>{setVariant(\"xGSD3gm3Y\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"mHv1vg7jG\",\"jlFzLyzsH\",\"Z7zTRmzXi\",\"pbfMSrQ4i\",\"xGSD3gm3Y\",\"IGSxhw896\",\"qGHdZUQ8M\",\"KhlMHMO2L\",\"XZ3HLQTFr\",\"cUjfnrzyk\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"mHv1vg7jG\",\"IGSxhw896\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"jlFzLyzsH\",\"qGHdZUQ8M\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"Z7zTRmzXi\",\"KhlMHMO2L\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"pbfMSrQ4i\",\"XZ3HLQTFr\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if([\"xGSD3gm3Y\",\"cUjfnrzyk\"].includes(baseVariant))return true;return false;};const isDisplayed6=()=>{if([\"mHv1vg7jG\",\"OlGdX573H\",\"IGSxhw896\",\"qGHdZUQ8M\",\"KhlMHMO2L\",\"XZ3HLQTFr\",\"cUjfnrzyk\"].includes(baseVariant))return false;return true;};const isDisplayed7=()=>{if(baseVariant===\"mHv1vg7jG\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"IGSxhw896\")return true;return false;};const isDisplayed9=()=>{if([\"OlGdX573H\",\"qGHdZUQ8M\",\"KhlMHMO2L\",\"XZ3HLQTFr\",\"cUjfnrzyk\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-af8mn8\",className,classNames),\"data-framer-name\":\"Math\",layoutDependency:layoutDependency,layoutId:\"kQr1sMlsb\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--1579g7e\":uHdKBLTd7===\"column\"?undefined:\"1 0 0px\",\"--1acxc4x\":uHdKBLTd7===\"column\"?0:\"calc(16px / 2)\",\"--1ewj23l\":uHdKBLTd7,\"--1q368k9\":uHdKBLTd7===\"column\"?\"100%\":\"1px\",\"--vep4p6\":uHdKBLTd7===\"row\"?0:\"calc(16px / 2)\",...style},...addPropertyOverrides({cUjfnrzyk:{\"data-framer-name\":\"WL Scroll\"},IGSxhw896:{\"data-framer-name\":\"Eng Scroll\"},jlFzLyzsH:{\"data-framer-name\":\"SS\"},KhlMHMO2L:{\"data-framer-name\":\"Sci Scroll\"},mHv1vg7jG:{\"data-framer-name\":\"Eng\"},OlGdX573H:{\"data-framer-name\":\"Math Scroll\"},pbfMSrQ4i:{\"data-framer-name\":\"CS\"},qGHdZUQ8M:{\"data-framer-name\":\"SS Scroll\"},xGSD3gm3Y:{\"data-framer-name\":\"WL\"},XZ3HLQTFr:{\"data-framer-name\":\"CS Scroll\"},Y2cUclY6b:{\"data-framer-name\":\"Static\"},Z7zTRmzXi:{\"data-framer-name\":\"Sci\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11e7nu5\",\"data-framer-name\":\"Subjects\",layoutDependency:layoutDependency,layoutId:\"pZso7eReS\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g1r6he\",\"data-framer-name\":\"Math\",layoutDependency:layoutDependency,layoutId:\"ED2V_yV5S\",style:{opacity:1},variants:{cUjfnrzyk:{opacity:.4},IGSxhw896:{opacity:.4},jlFzLyzsH:{opacity:.4},KhlMHMO2L:{opacity:.4},mHv1vg7jG:{opacity:.4},pbfMSrQ4i:{opacity:.4},qGHdZUQ8M:{opacity:.4},xGSD3gm3Y:{opacity:.4},XZ3HLQTFr:{opacity:.4},Z7zTRmzXi:{opacity:.4}},...addPropertyOverrides({cUjfnrzyk:{\"data-highlight\":true,onTap:onTapwf8f97},IGSxhw896:{\"data-highlight\":true,onTap:onTapwf8f97},jlFzLyzsH:{\"data-highlight\":true,onTap:onTap1lopqmm},KhlMHMO2L:{\"data-highlight\":true,onTap:onTapwf8f97},mHv1vg7jG:{\"data-highlight\":true,onTap:onTap1lopqmm},pbfMSrQ4i:{\"data-highlight\":true,onTap:onTap1lopqmm},qGHdZUQ8M:{\"data-highlight\":true,onTap:onTapwf8f97},xGSD3gm3Y:{\"data-highlight\":true,onTap:onTap1lopqmm},XZ3HLQTFr:{\"data-highlight\":true,onTap:onTapwf8f97},Z7zTRmzXi:{\"data-highlight\":true,onTap:onTap1lopqmm}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12sfo1p\",layoutDependency:layoutDependency,layoutId:\"xsV9iuowY\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zzep5o\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"EZhPFP0ql\",style:{backgroundColor:\"rgba(222, 87, 69, 0.2)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ctycs8-container\",layoutDependency:layoutDependency,layoutId:\"Zl7uYjXmB-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(222, 87, 69)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"pie-chart\",id:\"Zl7uYjXmB\",layoutId:\"Zl7uYjXmB\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dz4c02\",\"data-framer-name\":\"Descr and link\",layoutDependency:layoutDependency,layoutId:\"xbA0exHR0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17)))\"},children:\"Math\"})}),className:\"framer-czuz4g\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iY6uGoQkV\",style:{\"--extracted-1of0zx5\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17)))\"},children:[\"Problem solving practice with AI feedback.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CDX4INzWr\"},nodeId:\"iTlwncjJg\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18juds8\",\"data-styles-preset\":\"ePgYE6YrG\",children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-zp3slp, var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223)))\"},children:\"See more ->\"})})})]})}),className:\"framer-1uu97mr\",fonts:[\"GF;Manrope-500\",\"GF;Manrope-800\"],layoutDependency:layoutDependency,layoutId:\"iTlwncjJg\",style:{\"--extracted-r6o4lv\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\",\"--extracted-zp3slp\":\"var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rpcuvm\",\"data-framer-name\":\"Eng\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"xTIPRaoaG\",onTap:onTap1kvqhos,style:{opacity:.4},variants:{IGSxhw896:{opacity:1},mHv1vg7jG:{opacity:1}},...addPropertyOverrides({IGSxhw896:{\"data-highlight\":undefined,onTap:undefined},mHv1vg7jG:{\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fro1pi\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"RKPqvLx6z\",style:{backgroundColor:\"rgba(242, 165, 102, 0.2)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19eh0te-container\",layoutDependency:layoutDependency,layoutId:\"bYn3E9JbM-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(242, 165, 102)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"book-open\",id:\"bYn3E9JbM\",layoutId:\"bYn3E9JbM\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ilb9g5\",\"data-framer-name\":\"Descr and link\",layoutDependency:layoutDependency,layoutId:\"WENEg08nu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17)))\"},children:\"English\"})}),className:\"framer-ib2fcz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"p0S_TU1oO\",style:{\"--extracted-1of0zx5\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17)))\"},children:[\"AI writing feedback based on custom rubrics. \",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{WR78JDGrY:\"english-language-arts\"},unresolvedPathSlugs:{WR78JDGrY:{collectionId:\"FWPFsnTen\",collectionItemId:\"x6bwrnfm3\"}},webPageId:\"pzAXduaaW\"},nodeId:\"F2OoJ51TI\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18juds8\",\"data-styles-preset\":\"ePgYE6YrG\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"View examples ->\"})})})]})}),className:\"framer-1kd44tz\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"F2OoJ51TI\",style:{\"--extracted-r6o4lv\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\"},variants:{IGSxhw896:{\"--extracted-1w3ko1f\":\"var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102))\",\"--extracted-zp3slp\":\"var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223))\"},mHv1vg7jG:{\"--extracted-1w3ko1f\":\"var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102))\",\"--extracted-zp3slp\":\"var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IGSxhw896:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17)))\"},children:[\"AI writing feedback based on custom rubrics. \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AXoteBJIL\"},nodeId:\"F2OoJ51TI\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18juds8\",\"data-styles-preset\":\"ePgYE6YrG\",children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-zp3slp, var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223)))\"},children:\"See more ->\"})})})]})}),fonts:[\"GF;Manrope-500\",\"GF;Manrope-800\"]},mHv1vg7jG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17)))\"},children:[\"AI writing feedback based on custom rubrics. \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AXoteBJIL\"},nodeId:\"F2OoJ51TI\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18juds8\",\"data-styles-preset\":\"ePgYE6YrG\",children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-zp3slp, var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223)))\"},children:\"See more ->\"})})})]})}),fonts:[\"GF;Manrope-500\",\"GF;Manrope-800\"]}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mrlpsm\",\"data-framer-name\":\"SS\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wEkEkp2fo\",onTap:onTap1il23rh,style:{opacity:.4},variants:{jlFzLyzsH:{opacity:1},qGHdZUQ8M:{opacity:1}},...addPropertyOverrides({jlFzLyzsH:{\"data-highlight\":undefined,onTap:undefined},qGHdZUQ8M:{\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-i2f0pu\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"XneXcU48y\",style:{backgroundColor:\"rgba(221, 188, 109, 0.2)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18sz16p-container\",layoutDependency:layoutDependency,layoutId:\"xskGXGU1g-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(221, 188, 109)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"map\",id:\"xskGXGU1g\",layoutId:\"xskGXGU1g\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w9r9nk\",\"data-framer-name\":\"Descr and link\",layoutDependency:layoutDependency,layoutId:\"ygZVRsOeZ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17)))\"},children:\"Social Studies\"})}),className:\"framer-19lb6tl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EglVJ76Gy\",style:{\"--extracted-1of0zx5\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17)))\"},children:[\"Role-play or debate with AI historical figures. \",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{WR78JDGrY:\"social-studies\"},unresolvedPathSlugs:{WR78JDGrY:{collectionId:\"FWPFsnTen\",collectionItemId:\"WE9XONDex\"}},webPageId:\"pzAXduaaW\"},nodeId:\"fQFWFDdAr\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18juds8\",\"data-styles-preset\":\"ePgYE6YrG\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"View examples ->\"})})})]})}),className:\"framer-n8f969\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"fQFWFDdAr\",style:{\"--extracted-r6o4lv\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\"},variants:{jlFzLyzsH:{\"--extracted-1w3ko1f\":\"var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102))\",\"--extracted-zp3slp\":\"var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223))\"},qGHdZUQ8M:{\"--extracted-1w3ko1f\":\"var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102))\",\"--extracted-zp3slp\":\"var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jlFzLyzsH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17)))\"},children:[\"Role-play or debate with AI historical figures. \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xsKD2Bxvk\"},nodeId:\"fQFWFDdAr\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18juds8\",\"data-styles-preset\":\"ePgYE6YrG\",children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-zp3slp, var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223)))\"},children:\"See more ->\"})})})]})}),fonts:[\"GF;Manrope-500\",\"GF;Manrope-800\"]},qGHdZUQ8M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17)))\"},children:[\"Role-play or debate with AI historical figures. \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xsKD2Bxvk\"},nodeId:\"fQFWFDdAr\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18juds8\",\"data-styles-preset\":\"ePgYE6YrG\",children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-zp3slp, var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223)))\"},children:\"See more ->\"})})})]})}),fonts:[\"GF;Manrope-500\",\"GF;Manrope-800\"]}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-piycfi\",\"data-framer-name\":\"Sci\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"XwYcrwXNm\",onTap:onTap10b8ntv,style:{opacity:.4},variants:{KhlMHMO2L:{opacity:1},Z7zTRmzXi:{opacity:1}},...addPropertyOverrides({KhlMHMO2L:{\"data-highlight\":undefined,onTap:undefined},Z7zTRmzXi:{\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-lmbtq1\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"iKpnibQ7h\",style:{backgroundColor:\"rgba(170, 200, 119, 0.2)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-128d3fo-container\",layoutDependency:layoutDependency,layoutId:\"uscsBYtiv-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(170, 200, 119)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"filter\",id:\"uscsBYtiv\",layoutId:\"uscsBYtiv\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nmnqad\",\"data-framer-name\":\"Descr and link\",layoutDependency:layoutDependency,layoutId:\"G8Ni3K_ah\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17)))\"},children:\"Science\"})}),className:\"framer-i80438\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cLy5yNDyN\",style:{\"--extracted-1of0zx5\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17)))\"},children:[\"AI research assistance and data visualization. \",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{WR78JDGrY:\"science\"},unresolvedPathSlugs:{WR78JDGrY:{collectionId:\"FWPFsnTen\",collectionItemId:\"TuUvZ8q0f\"}},webPageId:\"pzAXduaaW\"},nodeId:\"NzIGILOOs\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18juds8\",\"data-styles-preset\":\"ePgYE6YrG\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"View examples ->\"})})})]})}),className:\"framer-1y8bdv6\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"NzIGILOOs\",style:{\"--extracted-r6o4lv\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\"},variants:{KhlMHMO2L:{\"--extracted-1w3ko1f\":\"var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102))\",\"--extracted-zp3slp\":\"var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223))\"},Z7zTRmzXi:{\"--extracted-1w3ko1f\":\"var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102))\",\"--extracted-zp3slp\":\"var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({KhlMHMO2L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17)))\"},children:[\"AI research assistance and data visualization. \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"agkFIS5KJ\"},nodeId:\"NzIGILOOs\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18juds8\",\"data-styles-preset\":\"ePgYE6YrG\",children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-zp3slp, var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223)))\"},children:\"See more ->\"})})})]})}),fonts:[\"GF;Manrope-500\",\"GF;Manrope-800\"]},Z7zTRmzXi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17)))\"},children:[\"AI research assistance and data visualization. \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"agkFIS5KJ\"},nodeId:\"NzIGILOOs\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18juds8\",\"data-styles-preset\":\"ePgYE6YrG\",children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-zp3slp, var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223)))\"},children:\"See more ->\"})})})]})}),fonts:[\"GF;Manrope-500\",\"GF;Manrope-800\"]}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1khbj3j\",\"data-framer-name\":\"CS\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"cEYJck1u3\",onTap:onTap5jiytv,style:{opacity:.4},variants:{pbfMSrQ4i:{opacity:1},XZ3HLQTFr:{opacity:1}},...addPropertyOverrides({pbfMSrQ4i:{\"data-highlight\":undefined,onTap:undefined},XZ3HLQTFr:{\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pknhne\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"tqspTPQrH\",style:{backgroundColor:\"rgba(138, 182, 194, 0.2)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-usmulw-container\",layoutDependency:layoutDependency,layoutId:\"avM0LQJ2B-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(138, 182, 194)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"code\",id:\"avM0LQJ2B\",layoutId:\"avM0LQJ2B\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jlbjhf\",\"data-framer-name\":\"Descr and link\",layoutDependency:layoutDependency,layoutId:\"UHp2vi8pq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17)))\"},children:\"Computer Science\"})}),className:\"framer-1ntstoz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PO0qx8frx\",style:{\"--extracted-1of0zx5\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17)))\"},children:[\"AI debugging help and practice problems in any language. \",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{WR78JDGrY:\"computer-science\"},unresolvedPathSlugs:{WR78JDGrY:{collectionId:\"FWPFsnTen\",collectionItemId:\"cJAQ8LCUE\"}},webPageId:\"pzAXduaaW\"},nodeId:\"SHyYgqBup\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18juds8\",\"data-styles-preset\":\"ePgYE6YrG\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"View examples ->\"})})})]})}),className:\"framer-1tn8b76\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"SHyYgqBup\",style:{\"--extracted-r6o4lv\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\"},variants:{pbfMSrQ4i:{\"--extracted-1w3ko1f\":\"var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102))\",\"--extracted-zp3slp\":\"var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223))\"},XZ3HLQTFr:{\"--extracted-1w3ko1f\":\"var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102))\",\"--extracted-zp3slp\":\"var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({pbfMSrQ4i:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17)))\"},children:[\"AI debugging help and practice problems in any language. \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tOEoXbRzJ\"},nodeId:\"SHyYgqBup\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18juds8\",\"data-styles-preset\":\"ePgYE6YrG\",children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-zp3slp, var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223)))\"},children:\"See more ->\"})})})]})}),fonts:[\"GF;Manrope-500\",\"GF;Manrope-800\"]},XZ3HLQTFr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17)))\"},children:[\"AI debugging help and practice problems in any language. \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tOEoXbRzJ\"},nodeId:\"SHyYgqBup\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18juds8\",\"data-styles-preset\":\"ePgYE6YrG\",children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-zp3slp, var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223)))\"},children:\"See more ->\"})})})]})}),fonts:[\"GF;Manrope-500\",\"GF;Manrope-800\"]}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tefkrj\",\"data-framer-name\":\"WL\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"hTg3zf2Qd\",onTap:onTap1icpi32,style:{opacity:.4},variants:{cUjfnrzyk:{opacity:1},xGSD3gm3Y:{opacity:1}},...addPropertyOverrides({cUjfnrzyk:{\"data-highlight\":undefined,onTap:undefined},xGSD3gm3Y:{\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-tzqxgj\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"V1f1N_SvE\",style:{backgroundColor:\"rgba(174, 129, 191, 0.2)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ptt81t-container\",layoutDependency:layoutDependency,layoutId:\"lcGlQRvdL-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(174, 129, 191)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"globe\",id:\"lcGlQRvdL\",layoutId:\"lcGlQRvdL\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-litgel\",\"data-framer-name\":\"Descr and link\",layoutDependency:layoutDependency,layoutId:\"mOqlNN9Lu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17)))\"},children:\"World Languages\"})}),className:\"framer-3zjak0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pRXqhZci3\",style:{\"--extracted-1of0zx5\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17)))\"},children:[\"Speak with AI in 50+ languages at any ACTFL level. \",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{WR78JDGrY:\"world-language\"},unresolvedPathSlugs:{WR78JDGrY:{collectionId:\"FWPFsnTen\",collectionItemId:\"Lx2ZFQC5o\"}},webPageId:\"pzAXduaaW\"},nodeId:\"xZllNLWM2\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18juds8\",\"data-styles-preset\":\"ePgYE6YrG\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"View examples ->\"})})})]})}),className:\"framer-1c43h0p\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"xZllNLWM2\",style:{\"--extracted-r6o4lv\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\"},variants:{cUjfnrzyk:{\"--extracted-1w3ko1f\":\"var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102))\",\"--extracted-zp3slp\":\"var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223))\"},xGSD3gm3Y:{\"--extracted-zp3slp\":\"var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cUjfnrzyk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17)))\"},children:[\"Speak with AI in 50+ languages at any ACTFL level. \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JwM9akcuQ\"},nodeId:\"xZllNLWM2\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18juds8\",\"data-styles-preset\":\"ePgYE6YrG\",children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-zp3slp, var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223)))\"},children:\"See more ->\"})})})]})}),fonts:[\"GF;Manrope-500\",\"GF;Manrope-800\"]},xGSD3gm3Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17)))\"},children:[\"Speak with AI in 50+ languages at any ACTFL level. \",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JwM9akcuQ\"},nodeId:\"xZllNLWM2\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18juds8\",\"data-styles-preset\":\"ePgYE6YrG\",children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-zp3slp, var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223)))\"},children:\"See more ->\"})})})]})}),fonts:[\"GF;Manrope-500\",\"GF;Manrope-800\"]}},baseVariant,gestureVariant)})]})]})]}),isDisplayed6()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-jw8yo5\",\"data-border\":true,\"data-framer-name\":\"Lottie\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"l_Bfkgb0N\",onMouseEnter:onMouseEnterwf8f97,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9949e95a-4333-4d2e-8aad-8228ba4b55f7, rgb(224, 224, 224))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-2fb34a9d-abaa-4fb3-a6f3-70496ba06176, rgb(255, 255, 255))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,boxShadow:\"0px 0.48290122862090357px 2.028185160207795px -1.25px rgba(0, 0, 0, 0.125), 0px 4px 16.8px -2.5px rgba(0, 0, 0, 0.125)\"},...addPropertyOverrides({jlFzLyzsH:{onMouseEnter:onMouseEnter1ktnnn0},pbfMSrQ4i:{onMouseEnter:onMouseEnterrz5x7j},xGSD3gm3Y:{onMouseEnter:onMouseEnter163zz8i},Z7zTRmzXi:{onMouseEnter:onMouseEntergum63g}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wmu25a-container\",layoutDependency:layoutDependency,layoutId:\"a6BWgQYUO-container\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"a6BWgQYUO\",isForwardsDirection:true,layoutId:\"a6BWgQYUO\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/5OgT0r1XEQfsLgdFkK4nFSVSVvY.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({jlFzLyzsH:{srcFile:\"https://framerusercontent.com/assets/rswV1jNfzZ3sVdraXaYtv056t0.json\"},pbfMSrQ4i:{srcFile:\"https://framerusercontent.com/assets/a53aOvjbIhFYJrUlqTCxAX0PoA.json\"},xGSD3gm3Y:{srcFile:\"https://framerusercontent.com/assets/nK003KFPxizmFrglSyRyDfTam2E.json\"},Y2cUclY6b:{loop:false,playing:false,srcFile:\"https://framerusercontent.com/assets/8ArHOhN4rSaRkBhwRjrbtp948.json\"},Z7zTRmzXi:{srcFile:\"https://framerusercontent.com/assets/rZu1KIgP8KSnlnxMlY3dlVHyTLY.json\",style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})})}),isDisplayed7()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12k9tus\",\"data-framer-name\":\"Lottie Eng\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"QYFKXpuZU\",onMouseEnter:onMouseEnter1l72qyg,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tpupmy\",\"data-border\":true,\"data-framer-name\":\"Border\",layoutDependency:layoutDependency,layoutId:\"sZ4wAteTJ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9949e95a-4333-4d2e-8aad-8228ba4b55f7, rgb(224, 224, 224))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,boxShadow:\"0px 0.48290122862090357px 2.028185160207795px -1.25px rgba(0, 0, 0, 0.125), 0px 4px 16.8px -2.5px rgba(0, 0, 0, 0.125)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nkd1z7\",\"data-framer-name\":\"Lottie\",layoutDependency:layoutDependency,layoutId:\"pKLN63V8j\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tlkv9r-container\",layoutDependency:layoutDependency,layoutId:\"WdDDFeo3e-container\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"WdDDFeo3e\",isForwardsDirection:true,layoutId:\"WdDDFeo3e\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/9y2bn7yRh1GK640CKynIpBSEcU.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1140,pixelWidth:894,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/xqFJzjWf2Jb0UeoI8thOFvWHQQ8.png\",srcSet:\"https://framerusercontent.com/images/xqFJzjWf2Jb0UeoI8thOFvWHQQ8.png?scale-down-to=1024 803w,https://framerusercontent.com/images/xqFJzjWf2Jb0UeoI8thOFvWHQQ8.png 894w\"},className:\"framer-44xv5w\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"IQbv8Cfrt\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9949e95a-4333-4d2e-8aad-8228ba4b55f7, rgb(224, 224, 224))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,boxShadow:\"0px 0.48290122862090357px 2.028185160207795px -1.25px rgba(0, 0, 0, 0.125), 0px 4px 16.8px -2.5px rgba(0, 0, 0, 0.125)\"},...addPropertyOverrides({mHv1vg7jG:{background:{alt:\"\",fit:\"fill\",pixelHeight:1140,pixelWidth:894,positionX:\"center\",positionY:\"top\",sizes:`calc(${uHdKBLTd7===\"row\"?`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 16px) / 2, 1px)`:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/xqFJzjWf2Jb0UeoI8thOFvWHQQ8.png\",srcSet:\"https://framerusercontent.com/images/xqFJzjWf2Jb0UeoI8thOFvWHQQ8.png?scale-down-to=1024 803w,https://framerusercontent.com/images/xqFJzjWf2Jb0UeoI8thOFvWHQQ8.png 894w\"}}},baseVariant,gestureVariant)})]}),isDisplayed8()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bu79zl\",\"data-framer-name\":\"Static Eng\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"jqPA9p7IO\",onMouseEnter:onMouseEnter1l72qyg,onMouseLeave:onMouseLeave1kvqhos,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j6tkj9\",\"data-border\":true,\"data-framer-name\":\"Scroll\",layoutDependency:layoutDependency,layoutId:\"L3YFRkB9d\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9949e95a-4333-4d2e-8aad-8228ba4b55f7, rgb(224, 224, 224))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,boxShadow:\"0px 0.48290122862090357px 2.028185160207795px -1.25px rgba(0, 0, 0, 0.125), 0px 4px 16.8px -2.5px rgba(0, 0, 0, 0.125)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u9jwd1\",\"data-framer-name\":\"Scroll\",layoutDependency:layoutDependency,layoutId:\"zv7j4hzVW\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:793,pixelWidth:894,src:\"https://framerusercontent.com/images/Hap36BJoS0QYeufcu1unMeu64Bs.png\",srcSet:\"https://framerusercontent.com/images/Hap36BJoS0QYeufcu1unMeu64Bs.png?scale-down-to=512 512w,https://framerusercontent.com/images/Hap36BJoS0QYeufcu1unMeu64Bs.png 894w\"},className:\"framer-2vypoj\",layoutDependency:layoutDependency,layoutId:\"Vz_GJDUBf\",...addPropertyOverrides({IGSxhw896:{background:{alt:\"\",fit:\"fill\",pixelHeight:793,pixelWidth:894,sizes:`calc(${uHdKBLTd7===\"row\"?`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 16px) / 2, 1px)`:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.9005)`,src:\"https://framerusercontent.com/images/Hap36BJoS0QYeufcu1unMeu64Bs.png\",srcSet:\"https://framerusercontent.com/images/Hap36BJoS0QYeufcu1unMeu64Bs.png?scale-down-to=512 512w,https://framerusercontent.com/images/Hap36BJoS0QYeufcu1unMeu64Bs.png 894w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xh1un8\",\"data-border\":true,\"data-framer-name\":\"Bg\",layoutDependency:layoutDependency,layoutId:\"WlFQLlqFG\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-9949e95a-4333-4d2e-8aad-8228ba4b55f7, rgb(224, 224, 224))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\"},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:124,pixelWidth:982,src:\"https://framerusercontent.com/images/UcLNFr69TdTCBBehcle6EnWX0jA.png\",srcSet:\"https://framerusercontent.com/images/UcLNFr69TdTCBBehcle6EnWX0jA.png?scale-down-to=512 512w,https://framerusercontent.com/images/UcLNFr69TdTCBBehcle6EnWX0jA.png 982w\"},className:\"framer-u6hgym\",\"data-framer-name\":\"Bar\",layoutDependency:layoutDependency,layoutId:\"bssQyuXIz\",...addPropertyOverrides({IGSxhw896:{background:{alt:\"\",fit:\"fill\",pixelHeight:124,pixelWidth:982,sizes:`max(${uHdKBLTd7===\"row\"?`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 16px) / 2, 1px)`:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.9005, 1px)`,src:\"https://framerusercontent.com/images/UcLNFr69TdTCBBehcle6EnWX0jA.png\",srcSet:\"https://framerusercontent.com/images/UcLNFr69TdTCBBehcle6EnWX0jA.png?scale-down-to=512 512w,https://framerusercontent.com/images/UcLNFr69TdTCBBehcle6EnWX0jA.png 982w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1140,pixelWidth:894,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/xqFJzjWf2Jb0UeoI8thOFvWHQQ8.png\",srcSet:\"https://framerusercontent.com/images/xqFJzjWf2Jb0UeoI8thOFvWHQQ8.png?scale-down-to=1024 803w,https://framerusercontent.com/images/xqFJzjWf2Jb0UeoI8thOFvWHQQ8.png 894w\"},className:\"framer-1t6a8gh\",\"data-border\":true,\"data-framer-name\":\"Essay\",layoutDependency:layoutDependency,layoutId:\"O_Ow4XtBj\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9949e95a-4333-4d2e-8aad-8228ba4b55f7, rgb(224, 224, 224))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,boxShadow:\"0px 0.48290122862090357px 2.028185160207795px -1.25px rgba(0, 0, 0, 0.125), 0px 4px 16.8px -2.5px rgba(0, 0, 0, 0.125)\"},...addPropertyOverrides({IGSxhw896:{background:{alt:\"\",fit:\"fill\",pixelHeight:1140,pixelWidth:894,positionX:\"center\",positionY:\"top\",sizes:`calc(${uHdKBLTd7===\"row\"?`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 16px) / 2, 1px)`:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/xqFJzjWf2Jb0UeoI8thOFvWHQQ8.png\",srcSet:\"https://framerusercontent.com/images/xqFJzjWf2Jb0UeoI8thOFvWHQQ8.png?scale-down-to=1024 803w,https://framerusercontent.com/images/xqFJzjWf2Jb0UeoI8thOFvWHQQ8.png 894w\"}}},baseVariant,gestureVariant)})]}),isDisplayed9()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-voppyh\",\"data-border\":true,\"data-framer-name\":\"Static Scroll\",layoutDependency:layoutDependency,layoutId:\"YkXDXwLT1\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9949e95a-4333-4d2e-8aad-8228ba4b55f7, rgb(224, 224, 224))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-2fb34a9d-abaa-4fb3-a6f3-70496ba06176, rgb(255, 255, 255))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"none\"},variants:{OlGdX573H:{boxShadow:\"0px 0.48290122862090357px 2.028185160207795px -1.25px rgba(0, 0, 0, 0.125), 0px 4px 16.8px -2.5px rgba(0, 0, 0, 0.125)\"}},...addPropertyOverrides({cUjfnrzyk:{\"data-highlight\":true,onMouseLeave:onMouseLeave1icpi32},KhlMHMO2L:{\"data-highlight\":true,onMouseLeave:onMouseLeave10b8ntv},OlGdX573H:{\"data-highlight\":true,onMouseLeave:onMouseLeave1lopqmm},qGHdZUQ8M:{\"data-highlight\":true,onMouseLeave:onMouseLeave1il23rh},XZ3HLQTFr:{\"data-highlight\":true,onMouseLeave:onMouseLeave5jiytv}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rybd9q\",\"data-framer-name\":\"Scroll\",layoutDependency:layoutDependency,layoutId:\"Ykmx7Kfn4\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1442,pixelWidth:982,src:\"https://framerusercontent.com/images/ocbkfZ57AVdFn5gOW7I7lRZKPZ0.png\",srcSet:\"https://framerusercontent.com/images/ocbkfZ57AVdFn5gOW7I7lRZKPZ0.png?scale-down-to=1024 697w,https://framerusercontent.com/images/ocbkfZ57AVdFn5gOW7I7lRZKPZ0.png 982w\"},className:\"framer-1dxs3o2\",layoutDependency:layoutDependency,layoutId:\"dogd1NWgv\",transformTemplate:transformTemplate2,...addPropertyOverrides({cUjfnrzyk:{background:{alt:\"\",fit:\"fill\",pixelHeight:967,pixelWidth:982,sizes:uHdKBLTd7===\"row\"?`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 16px) / 2, 1px)`:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/BjWxy80me7fdaUNHPypvVAGsMs.png\",srcSet:\"https://framerusercontent.com/images/BjWxy80me7fdaUNHPypvVAGsMs.png?scale-down-to=512 512w,https://framerusercontent.com/images/BjWxy80me7fdaUNHPypvVAGsMs.png 982w\"}},KhlMHMO2L:{background:{alt:\"\",fit:\"fill\",pixelHeight:1428,pixelWidth:982,sizes:uHdKBLTd7===\"row\"?`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 16px) / 2, 1px)`:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/1AzbvjjZ7NckzGcnE4Ci4ArB0CY.png\",srcSet:\"https://framerusercontent.com/images/1AzbvjjZ7NckzGcnE4Ci4ArB0CY.png?scale-down-to=1024 704w,https://framerusercontent.com/images/1AzbvjjZ7NckzGcnE4Ci4ArB0CY.png 982w\"}},OlGdX573H:{background:{alt:\"\",fit:\"fill\",pixelHeight:1442,pixelWidth:982,sizes:uHdKBLTd7===\"row\"?`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 16px) / 2, 1px)`:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/ocbkfZ57AVdFn5gOW7I7lRZKPZ0.png\",srcSet:\"https://framerusercontent.com/images/ocbkfZ57AVdFn5gOW7I7lRZKPZ0.png?scale-down-to=1024 697w,https://framerusercontent.com/images/ocbkfZ57AVdFn5gOW7I7lRZKPZ0.png 982w\"}},qGHdZUQ8M:{background:{alt:\"\",fit:\"fill\",pixelHeight:995,pixelWidth:982,sizes:uHdKBLTd7===\"row\"?`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 16px) / 2, 1px)`:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/PEyCb7xWTgFwJvKriwf8H9bBws.png\",srcSet:\"https://framerusercontent.com/images/PEyCb7xWTgFwJvKriwf8H9bBws.png 982w\"}},XZ3HLQTFr:{background:{alt:\"\",fit:\"fill\",pixelHeight:1332,pixelWidth:982,sizes:uHdKBLTd7===\"row\"?`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 16px) / 2, 1px)`:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/Isp3Dd49ojqzUh4Cqwrhtfvr6k.png\",srcSet:\"https://framerusercontent.com/images/Isp3Dd49ojqzUh4Cqwrhtfvr6k.png?scale-down-to=1024 754w,https://framerusercontent.com/images/Isp3Dd49ojqzUh4Cqwrhtfvr6k.png 982w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16j7v62\",\"data-border\":true,\"data-framer-name\":\"Bg\",layoutDependency:layoutDependency,layoutId:\"jLIe1gemW\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-9949e95a-4333-4d2e-8aad-8228ba4b55f7, rgb(224, 224, 224))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\"},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:124,pixelWidth:982,src:\"https://framerusercontent.com/images/UcLNFr69TdTCBBehcle6EnWX0jA.png\",srcSet:\"https://framerusercontent.com/images/UcLNFr69TdTCBBehcle6EnWX0jA.png?scale-down-to=512 512w,https://framerusercontent.com/images/UcLNFr69TdTCBBehcle6EnWX0jA.png 982w\"},className:\"framer-xpdkrf\",\"data-framer-name\":\"Bar\",layoutDependency:layoutDependency,layoutId:\"fvQhcH81M\",...addPropertyOverrides({cUjfnrzyk:{background:{alt:\"\",fit:\"fill\",pixelHeight:124,pixelWidth:982,sizes:`max(${uHdKBLTd7===\"row\"?`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 16px) / 2, 1px)`:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/ShILlagnLdboEjVmvQi1rAr01Q.png\",srcSet:\"https://framerusercontent.com/images/ShILlagnLdboEjVmvQi1rAr01Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/ShILlagnLdboEjVmvQi1rAr01Q.png 982w\"}},KhlMHMO2L:{background:{alt:\"\",fit:\"fill\",pixelHeight:124,pixelWidth:982,sizes:`max(${uHdKBLTd7===\"row\"?`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 16px) / 2, 1px)`:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/UcLNFr69TdTCBBehcle6EnWX0jA.png\",srcSet:\"https://framerusercontent.com/images/UcLNFr69TdTCBBehcle6EnWX0jA.png?scale-down-to=512 512w,https://framerusercontent.com/images/UcLNFr69TdTCBBehcle6EnWX0jA.png 982w\"}},OlGdX573H:{background:{alt:\"\",fit:\"fill\",pixelHeight:124,pixelWidth:982,sizes:`max(${uHdKBLTd7===\"row\"?`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 16px) / 2, 1px)`:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/UcLNFr69TdTCBBehcle6EnWX0jA.png\",srcSet:\"https://framerusercontent.com/images/UcLNFr69TdTCBBehcle6EnWX0jA.png?scale-down-to=512 512w,https://framerusercontent.com/images/UcLNFr69TdTCBBehcle6EnWX0jA.png 982w\"}},qGHdZUQ8M:{background:{alt:\"\",fit:\"fill\",pixelHeight:124,pixelWidth:982,sizes:`max(${uHdKBLTd7===\"row\"?`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 16px) / 2, 1px)`:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/UcLNFr69TdTCBBehcle6EnWX0jA.png\",srcSet:\"https://framerusercontent.com/images/UcLNFr69TdTCBBehcle6EnWX0jA.png?scale-down-to=512 512w,https://framerusercontent.com/images/UcLNFr69TdTCBBehcle6EnWX0jA.png 982w\"}},XZ3HLQTFr:{background:{alt:\"\",fit:\"fill\",pixelHeight:124,pixelWidth:982,sizes:`max(${uHdKBLTd7===\"row\"?`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 16px) / 2, 1px)`:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/UcLNFr69TdTCBBehcle6EnWX0jA.png\",srcSet:\"https://framerusercontent.com/images/UcLNFr69TdTCBBehcle6EnWX0jA.png?scale-down-to=512 512w,https://framerusercontent.com/images/UcLNFr69TdTCBBehcle6EnWX0jA.png 982w\"}}},baseVariant,gestureVariant)})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5PuRV.framer-14g21de, .framer-5PuRV .framer-14g21de { display: block; }\",\".framer-5PuRV.framer-af8mn8 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: var(--1ewj23l); flex-wrap: nowrap; gap: 16px; height: 379px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 800px; }\",\".framer-5PuRV .framer-11e7nu5 { align-content: center; align-items: center; display: flex; flex: var(--1579g7e); flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: var(--1q368k9); z-index: 1; }\",\".framer-5PuRV .framer-g1r6he { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5PuRV .framer-12sfo1p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5PuRV .framer-zzep5o, .framer-5PuRV .framer-fro1pi, .framer-5PuRV .framer-i2f0pu, .framer-5PuRV .framer-lmbtq1, .framer-5PuRV .framer-pknhne, .framer-5PuRV .framer-tzqxgj { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 40px); justify-content: center; overflow: hidden; padding: 12px; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5PuRV .framer-ctycs8-container, .framer-5PuRV .framer-19eh0te-container, .framer-5PuRV .framer-18sz16p-container, .framer-5PuRV .framer-128d3fo-container, .framer-5PuRV .framer-usmulw-container, .framer-5PuRV .framer-ptt81t-container { aspect-ratio: 1 / 1; flex: none; height: 24px; position: relative; width: var(--framer-aspect-ratio-supported, 24px); }\",\".framer-5PuRV .framer-1dz4c02, .framer-5PuRV .framer-1ilb9g5, .framer-5PuRV .framer-w9r9nk, .framer-5PuRV .framer-nmnqad, .framer-5PuRV .framer-jlbjhf, .framer-5PuRV .framer-litgel { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-5PuRV .framer-czuz4g, .framer-5PuRV .framer-ib2fcz, .framer-5PuRV .framer-19lb6tl, .framer-5PuRV .framer-i80438, .framer-5PuRV .framer-1ntstoz, .framer-5PuRV .framer-3zjak0 { flex: none; height: 40px; position: relative; white-space: pre; width: auto; }\",\".framer-5PuRV .framer-1uu97mr, .framer-5PuRV .framer-1kd44tz, .framer-5PuRV .framer-n8f969, .framer-5PuRV .framer-1y8bdv6, .framer-5PuRV .framer-1tn8b76, .framer-5PuRV .framer-1c43h0p { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5PuRV .framer-rpcuvm, .framer-5PuRV .framer-1mrlpsm, .framer-5PuRV .framer-piycfi, .framer-5PuRV .framer-1khbj3j, .framer-5PuRV .framer-tefkrj { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5PuRV .framer-jw8yo5 { align-content: center; align-items: center; display: flex; flex: var(--1579g7e); flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: var(--1q368k9); will-change: var(--framer-will-change-override, transform); }\",\".framer-5PuRV .framer-wmu25a-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-5PuRV .framer-12k9tus, .framer-5PuRV .framer-bu79zl { align-content: flex-end; align-items: flex-end; aspect-ratio: 1.0481283422459893 / 1; display: flex; flex: var(--1579g7e); flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 191px); justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: var(--1q368k9); }\",\".framer-5PuRV .framer-1tpupmy { aspect-ratio: 1.4708333333333334 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 136px); overflow: visible; position: relative; width: 91%; }\",\".framer-5PuRV .framer-1nkd1z7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 50%; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-5PuRV .framer-1tlkv9r-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-5PuRV .framer-44xv5w, .framer-5PuRV .framer-1t6a8gh { flex: none; height: 90%; left: 0px; position: absolute; top: 0px; width: 90%; z-index: 0; }\",\".framer-5PuRV .framer-1j6tkj9 { align-content: center; align-items: center; aspect-ratio: 1.4708333333333334 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 136px); justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 90%; will-change: var(--framer-will-change-override, transform); }\",\".framer-5PuRV .framer-1u9jwd1 { align-content: center; align-items: center; aspect-ratio: 1.8102564102564103 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 110px); justify-content: flex-start; overflow: auto; padding: 0px; position: relative; width: 100%; }\",\".framer-5PuRV .framer-2vypoj { aspect-ratio: 1.1277955271565496 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 177px); overflow: visible; position: relative; width: 100%; }\",\".framer-5PuRV .framer-xh1un8, .framer-5PuRV .framer-16j7v62 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 1px 0px 1px 0px; position: absolute; width: 100%; }\",\".framer-5PuRV .framer-u6hgym, .framer-5PuRV .framer-xpdkrf { aspect-ratio: 8 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 1px; z-index: 2; }\",\".framer-5PuRV .framer-voppyh { align-content: center; align-items: center; aspect-ratio: 0.5347593582887701 / 1; display: flex; flex: var(--1579g7e); flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 374px); justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: var(--1q368k9); will-change: var(--framer-will-change-override, transform); }\",\".framer-5PuRV .framer-rybd9q { aspect-ratio: 0.5347593582887701 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 374px); overflow: auto; position: relative; width: 100%; }\",\".framer-5PuRV .framer-1dxs3o2 { aspect-ratio: 0.6805555555555556 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 294px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5PuRV.framer-af8mn8, .framer-5PuRV .framer-11e7nu5, .framer-5PuRV .framer-g1r6he, .framer-5PuRV .framer-12sfo1p, .framer-5PuRV .framer-zzep5o, .framer-5PuRV .framer-1dz4c02, .framer-5PuRV .framer-rpcuvm, .framer-5PuRV .framer-fro1pi, .framer-5PuRV .framer-1ilb9g5, .framer-5PuRV .framer-1mrlpsm, .framer-5PuRV .framer-i2f0pu, .framer-5PuRV .framer-w9r9nk, .framer-5PuRV .framer-piycfi, .framer-5PuRV .framer-lmbtq1, .framer-5PuRV .framer-nmnqad, .framer-5PuRV .framer-1khbj3j, .framer-5PuRV .framer-pknhne, .framer-5PuRV .framer-jlbjhf, .framer-5PuRV .framer-tefkrj, .framer-5PuRV .framer-tzqxgj, .framer-5PuRV .framer-litgel, .framer-5PuRV .framer-jw8yo5, .framer-5PuRV .framer-12k9tus, .framer-5PuRV .framer-1nkd1z7, .framer-5PuRV .framer-bu79zl, .framer-5PuRV .framer-1j6tkj9, .framer-5PuRV .framer-1u9jwd1, .framer-5PuRV .framer-xh1un8, .framer-5PuRV .framer-voppyh, .framer-5PuRV .framer-16j7v62 { gap: 0px; } .framer-5PuRV.framer-af8mn8 > * { margin-bottom: var(--vep4p6); margin-left: var(--1acxc4x); margin-right: var(--1acxc4x); margin-top: var(--vep4p6); } .framer-5PuRV.framer-af8mn8 > :first-child { margin-left: 0px; margin-top: 0px; } .framer-5PuRV.framer-af8mn8 > :last-child { margin-bottom: 0px; margin-right: 0px; } .framer-5PuRV .framer-11e7nu5 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-5PuRV .framer-11e7nu5 > :first-child, .framer-5PuRV .framer-1dz4c02 > :first-child, .framer-5PuRV .framer-1ilb9g5 > :first-child, .framer-5PuRV .framer-w9r9nk > :first-child, .framer-5PuRV .framer-nmnqad > :first-child, .framer-5PuRV .framer-jlbjhf > :first-child, .framer-5PuRV .framer-litgel > :first-child, .framer-5PuRV .framer-jw8yo5 > :first-child, .framer-5PuRV .framer-12k9tus > :first-child, .framer-5PuRV .framer-1nkd1z7 > :first-child, .framer-5PuRV .framer-bu79zl > :first-child, .framer-5PuRV .framer-1j6tkj9 > :first-child, .framer-5PuRV .framer-1u9jwd1 > :first-child, .framer-5PuRV .framer-voppyh > :first-child { margin-top: 0px; } .framer-5PuRV .framer-11e7nu5 > :last-child, .framer-5PuRV .framer-1dz4c02 > :last-child, .framer-5PuRV .framer-1ilb9g5 > :last-child, .framer-5PuRV .framer-w9r9nk > :last-child, .framer-5PuRV .framer-nmnqad > :last-child, .framer-5PuRV .framer-jlbjhf > :last-child, .framer-5PuRV .framer-litgel > :last-child, .framer-5PuRV .framer-jw8yo5 > :last-child, .framer-5PuRV .framer-12k9tus > :last-child, .framer-5PuRV .framer-1nkd1z7 > :last-child, .framer-5PuRV .framer-bu79zl > :last-child, .framer-5PuRV .framer-1j6tkj9 > :last-child, .framer-5PuRV .framer-1u9jwd1 > :last-child, .framer-5PuRV .framer-voppyh > :last-child { margin-bottom: 0px; } .framer-5PuRV .framer-g1r6he > *, .framer-5PuRV .framer-rpcuvm > *, .framer-5PuRV .framer-1mrlpsm > *, .framer-5PuRV .framer-piycfi > *, .framer-5PuRV .framer-1khbj3j > *, .framer-5PuRV .framer-tefkrj > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-5PuRV .framer-g1r6he > :first-child, .framer-5PuRV .framer-12sfo1p > :first-child, .framer-5PuRV .framer-zzep5o > :first-child, .framer-5PuRV .framer-rpcuvm > :first-child, .framer-5PuRV .framer-fro1pi > :first-child, .framer-5PuRV .framer-1mrlpsm > :first-child, .framer-5PuRV .framer-i2f0pu > :first-child, .framer-5PuRV .framer-piycfi > :first-child, .framer-5PuRV .framer-lmbtq1 > :first-child, .framer-5PuRV .framer-1khbj3j > :first-child, .framer-5PuRV .framer-pknhne > :first-child, .framer-5PuRV .framer-tefkrj > :first-child, .framer-5PuRV .framer-tzqxgj > :first-child, .framer-5PuRV .framer-xh1un8 > :first-child, .framer-5PuRV .framer-16j7v62 > :first-child { margin-left: 0px; } .framer-5PuRV .framer-g1r6he > :last-child, .framer-5PuRV .framer-12sfo1p > :last-child, .framer-5PuRV .framer-zzep5o > :last-child, .framer-5PuRV .framer-rpcuvm > :last-child, .framer-5PuRV .framer-fro1pi > :last-child, .framer-5PuRV .framer-1mrlpsm > :last-child, .framer-5PuRV .framer-i2f0pu > :last-child, .framer-5PuRV .framer-piycfi > :last-child, .framer-5PuRV .framer-lmbtq1 > :last-child, .framer-5PuRV .framer-1khbj3j > :last-child, .framer-5PuRV .framer-pknhne > :last-child, .framer-5PuRV .framer-tefkrj > :last-child, .framer-5PuRV .framer-tzqxgj > :last-child, .framer-5PuRV .framer-xh1un8 > :last-child, .framer-5PuRV .framer-16j7v62 > :last-child { margin-right: 0px; } .framer-5PuRV .framer-12sfo1p > *, .framer-5PuRV .framer-xh1un8 > *, .framer-5PuRV .framer-16j7v62 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-5PuRV .framer-zzep5o > *, .framer-5PuRV .framer-fro1pi > *, .framer-5PuRV .framer-i2f0pu > *, .framer-5PuRV .framer-lmbtq1 > *, .framer-5PuRV .framer-pknhne > *, .framer-5PuRV .framer-tzqxgj > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-5PuRV .framer-1dz4c02 > *, .framer-5PuRV .framer-1ilb9g5 > *, .framer-5PuRV .framer-w9r9nk > *, .framer-5PuRV .framer-nmnqad > *, .framer-5PuRV .framer-jlbjhf > *, .framer-5PuRV .framer-litgel > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-5PuRV .framer-jw8yo5 > *, .framer-5PuRV .framer-voppyh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5PuRV .framer-12k9tus > *, .framer-5PuRV .framer-1nkd1z7 > *, .framer-5PuRV .framer-bu79zl > *, .framer-5PuRV .framer-1j6tkj9 > *, .framer-5PuRV .framer-1u9jwd1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-5PuRV.framer-v-pamyjr .framer-g1r6he, .framer-5PuRV.framer-v-1x9v08x .framer-g1r6he, .framer-5PuRV.framer-v-a42hxg .framer-g1r6he, .framer-5PuRV.framer-v-10l6ew4 .framer-g1r6he, .framer-5PuRV.framer-v-16yyovy .framer-g1r6he, .framer-5PuRV.framer-v-1argme4 .framer-g1r6he, .framer-5PuRV.framer-v-jaxjki .framer-g1r6he, .framer-5PuRV.framer-v-3mdyp5 .framer-g1r6he, .framer-5PuRV.framer-v-172e2jv .framer-g1r6he, .framer-5PuRV.framer-v-lyz5oy .framer-g1r6he { cursor: pointer; }\",\".framer-5PuRV.framer-v-pamyjr .framer-rpcuvm, .framer-5PuRV.framer-v-1x9v08x .framer-1mrlpsm, .framer-5PuRV.framer-v-a42hxg .framer-piycfi, .framer-5PuRV.framer-v-10l6ew4 .framer-1khbj3j, .framer-5PuRV.framer-v-16yyovy .framer-tefkrj, .framer-5PuRV.framer-v-1argme4 .framer-rpcuvm, .framer-5PuRV.framer-v-jaxjki .framer-1mrlpsm, .framer-5PuRV.framer-v-3mdyp5 .framer-piycfi, .framer-5PuRV.framer-v-172e2jv .framer-1khbj3j, .framer-5PuRV.framer-v-lyz5oy .framer-tefkrj { cursor: unset; }\",\".framer-5PuRV.framer-v-pamyjr .framer-12k9tus, .framer-5PuRV.framer-v-1argme4 .framer-bu79zl { height: var(--framer-aspect-ratio-supported, 374px); }\",\".framer-5PuRV.framer-v-pamyjr .framer-1tpupmy { height: var(--framer-aspect-ratio-supported, 240px); order: 1; width: 90%; }\",\".framer-5PuRV.framer-v-pamyjr .framer-44xv5w, .framer-5PuRV.framer-v-dth3dl .framer-wmu25a-container, .framer-5PuRV.framer-v-1argme4 .framer-1t6a8gh { order: 0; }\",\".framer-5PuRV.framer-v-1x9v08x .framer-jw8yo5, .framer-5PuRV.framer-v-10l6ew4 .framer-jw8yo5, .framer-5PuRV.framer-v-16yyovy .framer-jw8yo5 { gap: 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5PuRV.framer-v-1x9v08x .framer-jw8yo5 { gap: 0px; } .framer-5PuRV.framer-v-1x9v08x .framer-jw8yo5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-5PuRV.framer-v-1x9v08x .framer-jw8yo5 > :first-child { margin-top: 0px; } .framer-5PuRV.framer-v-1x9v08x .framer-jw8yo5 > :last-child { margin-bottom: 0px; } }\",\".framer-5PuRV.framer-v-a42hxg .framer-jw8yo5 { aspect-ratio: 1.0343007915567282 / 1; gap: 10px; height: var(--framer-aspect-ratio-supported, 379px); }\",\".framer-5PuRV.framer-v-a42hxg .framer-wmu25a-container { flex: 1 0 0px; height: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5PuRV.framer-v-a42hxg .framer-jw8yo5 { gap: 0px; } .framer-5PuRV.framer-v-a42hxg .framer-jw8yo5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-5PuRV.framer-v-a42hxg .framer-jw8yo5 > :first-child { margin-top: 0px; } .framer-5PuRV.framer-v-a42hxg .framer-jw8yo5 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5PuRV.framer-v-10l6ew4 .framer-jw8yo5 { gap: 0px; } .framer-5PuRV.framer-v-10l6ew4 .framer-jw8yo5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-5PuRV.framer-v-10l6ew4 .framer-jw8yo5 > :first-child { margin-top: 0px; } .framer-5PuRV.framer-v-10l6ew4 .framer-jw8yo5 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5PuRV.framer-v-16yyovy .framer-jw8yo5 { gap: 0px; } .framer-5PuRV.framer-v-16yyovy .framer-jw8yo5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-5PuRV.framer-v-16yyovy .framer-jw8yo5 > :first-child { margin-top: 0px; } .framer-5PuRV.framer-v-16yyovy .framer-jw8yo5 > :last-child { margin-bottom: 0px; } }\",\".framer-5PuRV.framer-v-dth3dl.framer-af8mn8 { height: min-content; }\",\".framer-5PuRV.framer-v-1vnyz8g .framer-voppyh { aspect-ratio: 1.0481283422459893 / 1; }\",\".framer-5PuRV.framer-v-1vnyz8g .framer-rybd9q, .framer-5PuRV.framer-v-jaxjki .framer-rybd9q, .framer-5PuRV.framer-v-3mdyp5 .framer-rybd9q, .framer-5PuRV.framer-v-172e2jv .framer-rybd9q, .framer-5PuRV.framer-v-lyz5oy .framer-rybd9q { aspect-ratio: 1.2136222910216719 / 1; height: var(--framer-aspect-ratio-supported, 323px); }\",\".framer-5PuRV.framer-v-1vnyz8g .framer-1dxs3o2 { aspect-ratio: 0.6829268292682927 / 1; height: var(--framer-aspect-ratio-supported, 574px); }\",\".framer-5PuRV.framer-v-1vnyz8g .framer-xpdkrf, .framer-5PuRV.framer-v-jaxjki .framer-xpdkrf, .framer-5PuRV.framer-v-3mdyp5 .framer-xpdkrf, .framer-5PuRV.framer-v-172e2jv .framer-xpdkrf, .framer-5PuRV.framer-v-lyz5oy .framer-xpdkrf { height: var(--framer-aspect-ratio-supported, 49px); }\",\".framer-5PuRV.framer-v-1argme4 .framer-1j6tkj9 { height: var(--framer-aspect-ratio-supported, 240px); order: 1; }\",\".framer-5PuRV.framer-v-1argme4 .framer-1u9jwd1 { height: var(--framer-aspect-ratio-supported, 195px); }\",\".framer-5PuRV.framer-v-1argme4 .framer-2vypoj { height: var(--framer-aspect-ratio-supported, 313px); }\",\".framer-5PuRV.framer-v-1argme4 .framer-u6hgym { height: var(--framer-aspect-ratio-supported, 44px); }\",\".framer-5PuRV.framer-v-jaxjki .framer-voppyh, .framer-5PuRV.framer-v-3mdyp5 .framer-voppyh, .framer-5PuRV.framer-v-172e2jv .framer-voppyh, .framer-5PuRV.framer-v-lyz5oy .framer-voppyh { aspect-ratio: 1.0481283422459893 / 1; gap: 10px; }\",\".framer-5PuRV.framer-v-jaxjki .framer-1dxs3o2 { aspect-ratio: 0.9874055415617129 / 1; height: var(--framer-aspect-ratio-supported, 397px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5PuRV.framer-v-jaxjki .framer-voppyh { gap: 0px; } .framer-5PuRV.framer-v-jaxjki .framer-voppyh > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-5PuRV.framer-v-jaxjki .framer-voppyh > :first-child { margin-top: 0px; } .framer-5PuRV.framer-v-jaxjki .framer-voppyh > :last-child { margin-bottom: 0px; } }\",\".framer-5PuRV.framer-v-3mdyp5 .framer-1dxs3o2 { aspect-ratio: 0.6877192982456141 / 1; height: var(--framer-aspect-ratio-supported, 570px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5PuRV.framer-v-3mdyp5 .framer-voppyh { gap: 0px; } .framer-5PuRV.framer-v-3mdyp5 .framer-voppyh > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-5PuRV.framer-v-3mdyp5 .framer-voppyh > :first-child { margin-top: 0px; } .framer-5PuRV.framer-v-3mdyp5 .framer-voppyh > :last-child { margin-bottom: 0px; } }\",\".framer-5PuRV.framer-v-172e2jv .framer-1dxs3o2 { aspect-ratio: 0.7368421052631579 / 1; height: var(--framer-aspect-ratio-supported, 532px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5PuRV.framer-v-172e2jv .framer-voppyh { gap: 0px; } .framer-5PuRV.framer-v-172e2jv .framer-voppyh > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-5PuRV.framer-v-172e2jv .framer-voppyh > :first-child { margin-top: 0px; } .framer-5PuRV.framer-v-172e2jv .framer-voppyh > :last-child { margin-bottom: 0px; } }\",\".framer-5PuRV.framer-v-lyz5oy .framer-1dxs3o2 { aspect-ratio: 1.0155440414507773 / 1; height: var(--framer-aspect-ratio-supported, 386px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5PuRV.framer-v-lyz5oy .framer-voppyh { gap: 0px; } .framer-5PuRV.framer-v-lyz5oy .framer-voppyh > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-5PuRV.framer-v-lyz5oy .framer-voppyh > :first-child { margin-top: 0px; } .framer-5PuRV.framer-v-lyz5oy .framer-voppyh > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-5PuRV[data-border=\"true\"]::after, .framer-5PuRV [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 379\n * @framerIntrinsicWidth 800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"mHv1vg7jG\":{\"layout\":[\"fixed\",\"fixed\"]},\"jlFzLyzsH\":{\"layout\":[\"fixed\",\"fixed\"]},\"Z7zTRmzXi\":{\"layout\":[\"fixed\",\"fixed\"]},\"pbfMSrQ4i\":{\"layout\":[\"fixed\",\"fixed\"]},\"xGSD3gm3Y\":{\"layout\":[\"fixed\",\"fixed\"]},\"Y2cUclY6b\":{\"layout\":[\"fixed\",\"auto\"]},\"OlGdX573H\":{\"layout\":[\"fixed\",\"fixed\"]},\"IGSxhw896\":{\"layout\":[\"fixed\",\"fixed\"]},\"qGHdZUQ8M\":{\"layout\":[\"fixed\",\"fixed\"]},\"KhlMHMO2L\":{\"layout\":[\"fixed\",\"fixed\"]},\"XZ3HLQTFr\":{\"layout\":[\"fixed\",\"fixed\"]},\"cUjfnrzyk\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"uHdKBLTd7\":\"direction\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercOy6SoC7m=withCSS(Component,css,\"framer-5PuRV\");export default FramercOy6SoC7m;FramercOy6SoC7m.displayName=\"Subject Example Scroller\";FramercOy6SoC7m.defaultProps={height:379,width:800};addPropertyControls(FramercOy6SoC7m,{variant:{options:[\"kQr1sMlsb\",\"mHv1vg7jG\",\"jlFzLyzsH\",\"Z7zTRmzXi\",\"pbfMSrQ4i\",\"xGSD3gm3Y\",\"Y2cUclY6b\",\"OlGdX573H\",\"IGSxhw896\",\"qGHdZUQ8M\",\"KhlMHMO2L\",\"XZ3HLQTFr\",\"cUjfnrzyk\"],optionTitles:[\"Math\",\"Eng\",\"SS\",\"Sci\",\"CS\",\"WL\",\"Static\",\"Math Scroll\",\"Eng Scroll\",\"SS Scroll\",\"Sci Scroll\",\"CS Scroll\",\"WL Scroll\"],title:\"Variant\",type:ControlType.Enum},uHdKBLTd7:{defaultValue:\"row\",displaySegmentedControl:true,optionIcons:[\"direction-horizontal\",\"direction-vertical\"],options:[\"row\",\"column\"],optionTitles:[\"Horizontal\",\"Vertical\"],title:\"Direction\",type:ControlType.Enum}});addFonts(FramercOy6SoC7m,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_A87jxeN7B.woff2\",weight:\"500\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_A87jxeN7B.woff2\",weight:\"800\"},{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\"}]},...FeatherFonts,...LottieFonts,...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\":\"FramercOy6SoC7m\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"uHdKBLTd7\\\":\\\"direction\\\"}\",\"framerIntrinsicHeight\":\"379\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mHv1vg7jG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jlFzLyzsH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Z7zTRmzXi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pbfMSrQ4i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xGSD3gm3Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Y2cUclY6b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OlGdX573H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IGSxhw896\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qGHdZUQ8M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KhlMHMO2L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XZ3HLQTFr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cUjfnrzyk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"800\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cOy6SoC7m.map", "// Generated by Framer (236a21b)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={G99vyuE7O:{hover:true}};const cycleOrder=[\"G99vyuE7O\"];const serializationHash=\"framer-DrB0c\";const variantClassNames={G99vyuE7O:\"framer-v-17m3bl1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,link,title,width,...props})=>{var _ref;return{...props,IwD6hBfTr:link!==null&&link!==void 0?link:props.IwD6hBfTr,nQwc08z0_:(_ref=title!==null&&title!==void 0?title:props.nQwc08z0_)!==null&&_ref!==void 0?_ref:\"See use cases ->\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,IwD6hBfTr,nQwc08z0_,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"G99vyuE7O\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:IwD6hBfTr,openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-17m3bl1\",className,classNames)} framer-5x5cbz`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"G99vyuE7O\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},variants:{\"G99vyuE7O-hover\":{backgroundColor:\"rgb(61, 61, 61)\"}},...addPropertyOverrides({\"G99vyuE7O-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"See use cases ->\"})}),className:\"framer-1sg6a7y\",fonts:[\"GF;Manrope-700\"],layoutDependency:layoutDependency,layoutId:\"qkP9pEBXd\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:nQwc08z0_,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DrB0c.framer-5x5cbz, .framer-DrB0c .framer-5x5cbz { display: block; }\",\".framer-DrB0c.framer-17m3bl1 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 16px; position: relative; text-decoration: none; width: auto; }\",\".framer-DrB0c .framer-1sg6a7y { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DrB0c.framer-17m3bl1 { gap: 0px; } .framer-DrB0c.framer-17m3bl1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-DrB0c.framer-17m3bl1 > :first-child { margin-left: 0px; } .framer-DrB0c.framer-17m3bl1 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 161\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"ntSwFRXNj\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"IwD6hBfTr\":\"link\",\"nQwc08z0_\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDcDxxV0wT=withCSS(Component,css,\"framer-DrB0c\");export default FramerDcDxxV0wT;FramerDcDxxV0wT.displayName=\"Use Cases Button\";FramerDcDxxV0wT.defaultProps={height:40,width:161};addPropertyControls(FramerDcDxxV0wT,{IwD6hBfTr:{title:\"Link\",type:ControlType.Link},nQwc08z0_:{defaultValue:\"See use cases ->\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerDcDxxV0wT,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_A87jxeN7B.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDcDxxV0wT\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"IwD6hBfTr\\\":\\\"link\\\",\\\"nQwc08z0_\\\":\\\"title\\\"}\",\"framerIntrinsicWidth\":\"161\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"ntSwFRXNj\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"40\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DcDxxV0wT.map", "// Generated by Framer (abcfa95)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/xhpgqsklHxdkSEjoOJcC/GfDHTN5JJf4OkVTe4x7w/ePgYE6YrG.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Al2NMLjUr4XiuMMPCo2u/PNbEO70sbwFZf4TBD75X/fVxnimdqP.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/hm41zUEsgKsHpkAyhyAz/kV4VbjQYjIpx7rAq8yl1/xZndidUCt.js\";const FeatherFonts=getFonts(Feather);const FeatherControls=getPropertyControls(Feather);const cycleOrder=[\"Wu9oh2o8r\",\"LoPOfl4rg\"];const serializationHash=\"framer-Catn8\";const variantClassNames={LoPOfl4rg:\"framer-v-q6ooxn\",Wu9oh2o8r:\"framer-v-1p37fyp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={\"Alert-circle\":\"alert-circle\",\"Alert-octagon\":\"alert-octagon\",\"Alert-triangle\":\"alert-triangle\",\"Align-center\":\"align-center\",\"Align-justify\":\"align-justify\",\"Align-left\":\"align-left\",\"Align-right\":\"align-right\",\"Arrow-down-circle\":\"arrow-down-circle\",\"Arrow-down-left\":\"arrow-down-left\",\"Arrow-down-right\":\"arrow-down-right\",\"Arrow-down\":\"arrow-down\",\"Arrow-left-circle\":\"arrow-left-circle\",\"Arrow-left\":\"arrow-left\",\"Arrow-right-circle\":\"arrow-right-circle\",\"Arrow-right\":\"arrow-right\",\"Arrow-up-circle\":\"arrow-up-circle\",\"Arrow-up-left\":\"arrow-up-left\",\"Arrow-up-right\":\"arrow-up-right\",\"Arrow-up\":\"arrow-up\",\"At-sign\":\"at-sign\",\"Bar-chart-2\":\"bar-chart-2\",\"Bar-chart\":\"bar-chart\",\"Battery-charging\":\"battery-charging\",\"Bell-off\":\"bell-off\",\"Book-open\":\"book-open\",\"Camera-off\":\"camera-off\",\"Check-circle\":\"check-circle\",\"Check-square\":\"check-square\",\"Chevron-down\":\"chevron-down\",\"Chevron-left\":\"chevron-left\",\"Chevron-right\":\"chevron-right\",\"Chevron-up\":\"chevron-up\",\"Chevrons-down\":\"chevrons-down\",\"Chevrons-left\":\"chevrons-left\",\"Chevrons-right\":\"chevrons-right\",\"Chevrons-up\":\"chevrons-up\",\"Cloud-drizzle\":\"cloud-drizzle\",\"Cloud-lightning\":\"cloud-lightning\",\"Cloud-off\":\"cloud-off\",\"Cloud-rain\":\"cloud-rain\",\"Cloud-snow\":\"cloud-snow\",\"Corner-down-left\":\"corner-down-left\",\"Corner-down-right\":\"corner-down-right\",\"Corner-left-down\":\"corner-left-down\",\"Corner-left-up\":\"corner-left-up\",\"Corner-right-down\":\"corner-right-down\",\"Corner-right-up\":\"corner-right-up\",\"Corner-up-left\":\"corner-up-left\",\"Corner-up-right\":\"corner-up-right\",\"Credit-card\":\"credit-card\",\"Divide-circle\":\"divide-circle\",\"Divide-square\":\"divide-square\",\"Dollar-sign\":\"dollar-sign\",\"Download-cloud\":\"download-cloud\",\"Edit-2\":\"edit-2\",\"Edit-3\":\"edit-3\",\"External-link\":\"external-link\",\"Eye-off\":\"eye-off\",\"Fast-forward\":\"fast-forward\",\"File-minus\":\"file-minus\",\"File-plus\":\"file-plus\",\"File-text\":\"file-text\",\"Folder-minus\":\"folder-minus\",\"Folder-plus\":\"folder-plus\",\"Git-branch\":\"git-branch\",\"Git-commit\":\"git-commit\",\"Git-merge\":\"git-merge\",\"Git-pull-request\":\"git-pull-request\",\"Hard-drive\":\"hard-drive\",\"Help-circle\":\"help-circle\",\"Life-buoy\":\"life-buoy\",\"Link-2\":\"link-2\",\"Log-in\":\"log-in\",\"Log-out\":\"log-out\",\"Map-pin\":\"map-pin\",\"Maximize-2\":\"maximize-2\",\"Message-circle\":\"message-circle\",\"Message-square\":\"message-square\",\"Mic-off\":\"mic-off\",\"Minimize-2\":\"minimize-2\",\"Minus-circle\":\"minus-circle\",\"Minus-square\":\"minus-square\",\"More-horizontal\":\"more-horizontal\",\"More-vertical\":\"more-vertical\",\"Mouse-pointer\":\"mouse-pointer\",\"Navigation-2\":\"navigation-2\",\"Pause-circle\":\"pause-circle\",\"Pen-tool\":\"pen-tool\",\"Phone-call\":\"phone-call\",\"Phone-forwarded\":\"phone-forwarded\",\"Phone-incoming\":\"phone-incoming\",\"Phone-missed\":\"phone-missed\",\"Phone-off\":\"phone-off\",\"Phone-outgoing\":\"phone-outgoing\",\"Pie-chart\":\"pie-chart\",\"Play-circle\":\"play-circle\",\"Plus-circle\":\"plus-circle\",\"Plus-square\":\"plus-square\",\"Refresh-ccw\":\"refresh-ccw\",\"Refresh-cw\":\"refresh-cw\",\"Rotate-ccw\":\"rotate-ccw\",\"Rotate-cw\":\"rotate-cw\",\"Share-2\":\"share-2\",\"Shield-off\":\"shield-off\",\"Shopping-bag\":\"shopping-bag\",\"Shopping-cart\":\"shopping-cart\",\"Skip-back\":\"skip-back\",\"Skip-forward\":\"skip-forward\",\"Stop-circle\":\"stop-circle\",\"Thumbs-down\":\"thumbs-down\",\"Thumbs-up\":\"thumbs-up\",\"Toggle-left\":\"toggle-left\",\"Toggle-right\":\"toggle-right\",\"Trash-2\":\"trash-2\",\"Trending-down\":\"trending-down\",\"Trending-up\":\"trending-up\",\"Upload-cloud\":\"upload-cloud\",\"User-check\":\"user-check\",\"User-minus\":\"user-minus\",\"User-plus\":\"user-plus\",\"User-x\":\"user-x\",\"Video-off\":\"video-off\",\"Volume-1\":\"volume-1\",\"Volume-2\":\"volume-2\",\"Volume-x\":\"volume-x\",\"Wifi-off\":\"wifi-off\",\"X-circle\":\"x-circle\",\"X-octagon\":\"x-octagon\",\"X-square\":\"x-square\",\"Zap-off\":\"zap-off\",\"Zoom-in\":\"zoom-in\",\"Zoom-out\":\"zoom-out\",Activity:\"activity\",Airplay:\"airplay\",Anchor:\"anchor\",Aperture:\"aperture\",Archive:\"archive\",Award:\"award\",Battery:\"battery\",Bell:\"bell\",Bluetooth:\"bluetooth\",Bold:\"bold\",Book:\"book\",Bookmark:\"bookmark\",Box:\"box\",Briefcase:\"briefcase\",Calendar:\"calendar\",Camera:\"camera\",Cast:\"cast\",Check:\"check\",Chrome:\"chrome\",Circle:\"circle\",Clipboard:\"clipboard\",Clock:\"clock\",Cloud:\"cloud\",Code:\"code\",Codepen:\"codepen\",Codesandbox:\"codesandbox\",Coffee:\"coffee\",Columns:\"columns\",Command:\"command\",Compass:\"compass\",Copy:\"copy\",Cpu:\"cpu\",Crop:\"crop\",Crosshair:\"crosshair\",Database:\"database\",Delete:\"delete\",Disc:\"disc\",Divide:\"divide\",Download:\"download\",Dribbble:\"dribbble\",Droplet:\"droplet\",Edit:\"edit\",Eye:\"eye\",Facebook:\"facebook\",Feather:\"feather\",Figma:\"figma\",File:\"file\",Film:\"film\",Filter:\"filter\",Flag:\"flag\",Folder:\"folder\",Framer:\"framer\",Frown:\"frown\",Gift:\"gift\",Github:\"github\",Gitlab:\"gitlab\",Globe:\"globe\",Grid:\"grid\",Hash:\"hash\",Headphones:\"headphones\",Heart:\"heart\",Hexagon:\"hexagon\",Home:\"home\",Image:\"image\",Inbox:\"inbox\",Info:\"info\",Instagram:\"instagram\",Italic:\"italic\",Key:\"key\",Layers:\"layers\",Layout:\"layout\",Link:\"link\",Linkedin:\"linkedin\",List:\"list\",Loader:\"loader\",Lock:\"lock\",Mail:\"mail\",Map:\"map\",Maximize:\"maximize\",Meh:\"meh\",Menu:\"menu\",Mic:\"mic\",Minimize:\"minimize\",Minus:\"minus\",Monitor:\"monitor\",Moon:\"moon\",Move:\"move\",Music:\"music\",Navigation:\"navigation\",Octagon:\"octagon\",Package:\"package\",Paperclip:\"paperclip\",Pause:\"pause\",Percent:\"percent\",Phone:\"phone\",Play:\"play\",Plus:\"plus\",Pocket:\"pocket\",Power:\"power\",Printer:\"printer\",Radio:\"radio\",Repeat:\"repeat\",Rewind:\"rewind\",Rss:\"rss\",Save:\"save\",Scissors:\"scissors\",Search:\"search\",Send:\"send\",Server:\"server\",Settings:\"settings\",Share:\"share\",Shield:\"shield\",Shuffle:\"shuffle\",Sidebar:\"sidebar\",Slack:\"slack\",Slash:\"slash\",Sliders:\"sliders\",Smartphone:\"smartphone\",Smile:\"smile\",Speaker:\"speaker\",Square:\"square\",Star:\"star\",Sun:\"sun\",Sunrise:\"sunrise\",Sunset:\"sunset\",Tablet:\"tablet\",Tag:\"tag\",Target:\"target\",Terminal:\"terminal\",Thermometer:\"thermometer\",Tool:\"tool\",Trash:\"trash\",Trello:\"trello\",Triangle:\"triangle\",Truck:\"truck\",Tv:\"tv\",Twitch:\"twitch\",Twitter:\"twitter\",Type:\"type\",Umbrella:\"umbrella\",Underline:\"underline\",Unlock:\"unlock\",Upload:\"upload\",User:\"user\",Users:\"users\",Video:\"video\",Voicemail:\"voicemail\",Volume:\"volume\",Watch:\"watch\",Wifi:\"wifi\",Wind:\"wind\",X:\"x\",Youtube:\"youtube\",Zap:\"zap\"};const humanReadableVariantMap={Active:\"Wu9oh2o8r\",Disabled:\"LoPOfl4rg\"};const getProps=({background,click,click10,click11,click12,click13,click2,click3,click4,click5,click6,click7,click8,click9,color,height,icon,id,link,subject,text,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableEnumMap_icon,_ref3,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6;return{...props,AeETpdJTW:click!==null&&click!==void 0?click:props.AeETpdJTW,aFMn5WbEm:(_ref=text!==null&&text!==void 0?text:props.aFMn5WbEm)!==null&&_ref!==void 0?_ref:\"Problem solving practice with AI feedback.\",AH9mQoLCa:(_ref1=color!==null&&color!==void 0?color:props.AH9mQoLCa)!==null&&_ref1!==void 0?_ref1:\"rgb(222, 87, 69)\",cotmbf8gP:click12!==null&&click12!==void 0?click12:props.cotmbf8gP,cXanouiXA:click2!==null&&click2!==void 0?click2:props.cXanouiXA,dhjHlo33y:(_ref2=subject!==null&&subject!==void 0?subject:props.dhjHlo33y)!==null&&_ref2!==void 0?_ref2:\"Math\",ENR_BAI69:click10!==null&&click10!==void 0?click10:props.ENR_BAI69,JtoxAGFwc:click6!==null&&click6!==void 0?click6:props.JtoxAGFwc,kKNuyn8Ti:click9!==null&&click9!==void 0?click9:props.kKNuyn8Ti,LyYPscGeG:(_ref4=(_ref3=(_humanReadableEnumMap_icon=humanReadableEnumMap[icon])!==null&&_humanReadableEnumMap_icon!==void 0?_humanReadableEnumMap_icon:icon)!==null&&_ref3!==void 0?_ref3:props.LyYPscGeG)!==null&&_ref4!==void 0?_ref4:\"pie-chart\",nhdfV_A6m:click8!==null&&click8!==void 0?click8:props.nhdfV_A6m,nJeTuotMs:click3!==null&&click3!==void 0?click3:props.nJeTuotMs,r55EN1JW4:(_ref5=background!==null&&background!==void 0?background:props.r55EN1JW4)!==null&&_ref5!==void 0?_ref5:\"rgba(222, 87, 69, 0.2)\",uk4QOCLvY:click4!==null&&click4!==void 0?click4:props.uk4QOCLvY,variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"Wu9oh2o8r\",VRe8hGpCz:click11!==null&&click11!==void 0?click11:props.VRe8hGpCz,WLFb8uaWX:click5!==null&&click5!==void 0?click5:props.WLFb8uaWX,Wue2VlUNZ:click7!==null&&click7!==void 0?click7:props.Wue2VlUNZ,wwAyHawPS:click13!==null&&click13!==void 0?click13:props.wwAyHawPS,ZAWZ_kHdV:link!==null&&link!==void 0?link:props.ZAWZ_kHdV};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,LyYPscGeG,r55EN1JW4,AH9mQoLCa,dhjHlo33y,aFMn5WbEm,ZAWZ_kHdV,AeETpdJTW,cXanouiXA,nJeTuotMs,uk4QOCLvY,WLFb8uaWX,JtoxAGFwc,Wue2VlUNZ,nhdfV_A6m,kKNuyn8Ti,ENR_BAI69,VRe8hGpCz,cotmbf8gP,wwAyHawPS,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Wu9oh2o8r\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapdkirdk=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(AeETpdJTW){const res=await AeETpdJTW(...args);if(res===false)return false;}if(cXanouiXA){const res=await cXanouiXA(...args);if(res===false)return false;}if(nJeTuotMs){const res=await nJeTuotMs(...args);if(res===false)return false;}if(uk4QOCLvY){const res=await uk4QOCLvY(...args);if(res===false)return false;}if(WLFb8uaWX){const res=await WLFb8uaWX(...args);if(res===false)return false;}if(JtoxAGFwc){const res=await JtoxAGFwc(...args);if(res===false)return false;}if(Wue2VlUNZ){const res=await Wue2VlUNZ(...args);if(res===false)return false;}if(nhdfV_A6m){const res=await nhdfV_A6m(...args);if(res===false)return false;}if(kKNuyn8Ti){const res=await kKNuyn8Ti(...args);if(res===false)return false;}if(ENR_BAI69){const res=await ENR_BAI69(...args);if(res===false)return false;}if(VRe8hGpCz){const res=await VRe8hGpCz(...args);if(res===false)return false;}if(cotmbf8gP){const res=await cotmbf8gP(...args);if(res===false)return false;}if(wwAyHawPS){const res=await wwAyHawPS(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"LoPOfl4rg\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1p37fyp\",className,classNames),\"data-framer-name\":\"Active\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Wu9oh2o8r\",onTap:onTapdkirdk,ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:1,...style},variants:{LoPOfl4rg:{opacity:.4}},...addPropertyOverrides({LoPOfl4rg:{\"data-framer-name\":\"Disabled\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h9drgw\",layoutDependency:layoutDependency,layoutId:\"KmbjTaDO5\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-orrwwp\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"VWU0gqUlr\",style:{backgroundColor:r55EN1JW4,borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yrfkxl-container\",layoutDependency:layoutDependency,layoutId:\"BQNcWdole-container\",children:/*#__PURE__*/_jsx(Feather,{color:AH9mQoLCa,height:\"100%\",iconSearch:\"Home\",iconSelection:LyYPscGeG,id:\"BQNcWdole\",layoutId:\"BQNcWdole\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17)))\"},children:\"Math\"})}),className:\"framer-1vszzgc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eLPluhRfL\",style:{\"--extracted-1of0zx5\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:dhjHlo33y,verticalAlignment:\"center\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h2grpb\",\"data-framer-name\":\"Descr and link\",layoutDependency:layoutDependency,layoutId:\"p3dFqUo_v\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Problem solving practice with AI feedback. View examples ->\"})}),className:\"framer-8xz4uo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ey9Vjle9k\",text:aFMn5WbEm,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223)))\"},children:/*#__PURE__*/_jsx(Link,{href:ZAWZ_kHdV,openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18juds8\",\"data-styles-preset\":\"ePgYE6YrG\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"View examples ->\"})})})})}),className:\"framer-1080xb2\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"Q0uhQw_iK\",style:{\"--extracted-r6o4lv\":\"var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Catn8.framer-1f1qbmm, .framer-Catn8 .framer-1f1qbmm { display: block; }\",\".framer-Catn8.framer-1p37fyp { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: auto; padding: 0px; position: relative; width: 260px; }\",\".framer-Catn8 .framer-h9drgw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Catn8 .framer-orrwwp { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 40px); justify-content: center; overflow: hidden; padding: 12px; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Catn8 .framer-1yrfkxl-container { aspect-ratio: 1 / 1; flex: none; height: 24px; position: relative; width: var(--framer-aspect-ratio-supported, 24px); }\",\".framer-Catn8 .framer-1vszzgc { flex: none; height: 40px; position: relative; white-space: pre; width: auto; }\",\".framer-Catn8 .framer-1h2grpb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Catn8 .framer-8xz4uo, .framer-Catn8 .framer-1080xb2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Catn8.framer-1p37fyp, .framer-Catn8 .framer-h9drgw, .framer-Catn8 .framer-orrwwp, .framer-Catn8 .framer-1h2grpb { gap: 0px; } .framer-Catn8.framer-1p37fyp > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Catn8.framer-1p37fyp > :first-child, .framer-Catn8 .framer-1h2grpb > :first-child { margin-top: 0px; } .framer-Catn8.framer-1p37fyp > :last-child, .framer-Catn8 .framer-1h2grpb > :last-child { margin-bottom: 0px; } .framer-Catn8 .framer-h9drgw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Catn8 .framer-h9drgw > :first-child, .framer-Catn8 .framer-orrwwp > :first-child { margin-left: 0px; } .framer-Catn8 .framer-h9drgw > :last-child, .framer-Catn8 .framer-orrwwp > :last-child { margin-right: 0px; } .framer-Catn8 .framer-orrwwp > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Catn8 .framer-1h2grpb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 112\n * @framerIntrinsicWidth 260\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LoPOfl4rg\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"LyYPscGeG\":\"icon\",\"r55EN1JW4\":\"background\",\"AH9mQoLCa\":\"color\",\"dhjHlo33y\":\"subject\",\"aFMn5WbEm\":\"text\",\"ZAWZ_kHdV\":\"link\",\"AeETpdJTW\":\"click\",\"cXanouiXA\":\"click2\",\"nJeTuotMs\":\"click3\",\"uk4QOCLvY\":\"click4\",\"WLFb8uaWX\":\"click5\",\"JtoxAGFwc\":\"click6\",\"Wue2VlUNZ\":\"click7\",\"nhdfV_A6m\":\"click8\",\"kKNuyn8Ti\":\"click9\",\"ENR_BAI69\":\"click10\",\"VRe8hGpCz\":\"click11\",\"cotmbf8gP\":\"click12\",\"wwAyHawPS\":\"click13\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKQERLBVX5=withCSS(Component,css,\"framer-Catn8\");export default FramerKQERLBVX5;FramerKQERLBVX5.displayName=\"Subject\";FramerKQERLBVX5.defaultProps={height:112,width:260};addPropertyControls(FramerKQERLBVX5,{variant:{options:[\"Wu9oh2o8r\",\"LoPOfl4rg\"],optionTitles:[\"Active\",\"Disabled\"],title:\"Variant\",type:ControlType.Enum},LyYPscGeG:(FeatherControls===null||FeatherControls===void 0?void 0:FeatherControls[\"iconSelection\"])&&{...FeatherControls[\"iconSelection\"],defaultValue:\"pie-chart\",description:undefined,hidden:undefined,title:\"Icon\"},r55EN1JW4:{defaultValue:\"rgba(222, 87, 69, 0.2)\",title:\"Background\",type:ControlType.Color},AH9mQoLCa:{defaultValue:\"rgb(222, 87, 69)\",title:\"Color\",type:ControlType.Color},dhjHlo33y:{defaultValue:\"Math\",displayTextArea:false,title:\"Subject\",type:ControlType.String},aFMn5WbEm:{defaultValue:\"Problem solving practice with AI feedback.\",displayTextArea:false,title:\"Text\",type:ControlType.String},ZAWZ_kHdV:{title:\"Link\",type:ControlType.Link},AeETpdJTW:{title:\"Click\",type:ControlType.EventHandler},cXanouiXA:{title:\"Click 2\",type:ControlType.EventHandler},nJeTuotMs:{title:\"Click 3\",type:ControlType.EventHandler},uk4QOCLvY:{title:\"Click 4\",type:ControlType.EventHandler},WLFb8uaWX:{title:\"Click 5\",type:ControlType.EventHandler},JtoxAGFwc:{title:\"Click 6\",type:ControlType.EventHandler},Wue2VlUNZ:{title:\"Click 7\",type:ControlType.EventHandler},nhdfV_A6m:{title:\"Click 8\",type:ControlType.EventHandler},kKNuyn8Ti:{title:\"Click 9\",type:ControlType.EventHandler},ENR_BAI69:{title:\"Click 10\",type:ControlType.EventHandler},VRe8hGpCz:{title:\"Click 11\",type:ControlType.EventHandler},cotmbf8gP:{title:\"Click 12\",type:ControlType.EventHandler},wwAyHawPS:{title:\"Click 13\",type:ControlType.EventHandler}});addFonts(FramerKQERLBVX5,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...FeatherFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKQERLBVX5\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"LyYPscGeG\\\":\\\"icon\\\",\\\"r55EN1JW4\\\":\\\"background\\\",\\\"AH9mQoLCa\\\":\\\"color\\\",\\\"dhjHlo33y\\\":\\\"subject\\\",\\\"aFMn5WbEm\\\":\\\"text\\\",\\\"ZAWZ_kHdV\\\":\\\"link\\\",\\\"AeETpdJTW\\\":\\\"click\\\",\\\"cXanouiXA\\\":\\\"click2\\\",\\\"nJeTuotMs\\\":\\\"click3\\\",\\\"uk4QOCLvY\\\":\\\"click4\\\",\\\"WLFb8uaWX\\\":\\\"click5\\\",\\\"JtoxAGFwc\\\":\\\"click6\\\",\\\"Wue2VlUNZ\\\":\\\"click7\\\",\\\"nhdfV_A6m\\\":\\\"click8\\\",\\\"kKNuyn8Ti\\\":\\\"click9\\\",\\\"ENR_BAI69\\\":\\\"click10\\\",\\\"VRe8hGpCz\\\":\\\"click11\\\",\\\"cotmbf8gP\\\":\\\"click12\\\",\\\"wwAyHawPS\\\":\\\"click13\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LoPOfl4rg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"112\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"260\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={HrhK5H9HP:{hover:true}};const serializationHash=\"framer-6I7aX\";const variantClassNames={HrhK5H9HP:\"framer-v-1tilxvk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({background,background2,height,id,link,shadow,title,width,...props})=>{return{...props,AnelZu8P6:link??props.AnelZu8P6,QBYEA2nvt:background??props.QBYEA2nvt??\"rgba(102, 102, 102, 0.5)\",VzskGXVsb:background2??props.VzskGXVsb??\"rgb(102, 102, 102)\",w0Sbpn7Yb:shadow??props.w0Sbpn7Yb??\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625)\",WoLp7XcbU:title??props.WoLp7XcbU??\"View more security details ->\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,AnelZu8P6,WoLp7XcbU,QBYEA2nvt,VzskGXVsb,w0Sbpn7Yb,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"HrhK5H9HP\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:AnelZu8P6,nodeId:\"HrhK5H9HP\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1tilxvk\",className,classNames)} framer-42g11t`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"HrhK5H9HP\",ref:ref??ref1,style:{\"--6ur81c\":w0Sbpn7Yb,backgroundColor:QBYEA2nvt,borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,boxShadow:\"var(--6ur81c)\",...style},variants:{\"HrhK5H9HP-hover\":{backgroundColor:VzskGXVsb}},...addPropertyOverrides({\"HrhK5H9HP-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Book a demo ->\"})}),className:\"framer-1ipevfk\",fonts:[\"GF;Manrope-700\"],layoutDependency:layoutDependency,layoutId:\"FtVtTxfDt\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:WoLp7XcbU,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6I7aX.framer-42g11t, .framer-6I7aX .framer-42g11t { display: block; }\",\".framer-6I7aX.framer-1tilxvk { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-6I7aX .framer-1ipevfk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6I7aX.framer-1tilxvk { gap: 0px; } .framer-6I7aX.framer-1tilxvk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-6I7aX.framer-1tilxvk > :first-child { margin-left: 0px; } .framer-6I7aX.framer-1tilxvk > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 255\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"w572IFUPL\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"AnelZu8P6\":\"link\",\"WoLp7XcbU\":\"title\",\"QBYEA2nvt\":\"background\",\"VzskGXVsb\":\"background2\",\"w0Sbpn7Yb\":\"shadow\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramervQlXUXHkQ=withCSS(Component,css,\"framer-6I7aX\");export default FramervQlXUXHkQ;FramervQlXUXHkQ.displayName=\"Security Button\";FramervQlXUXHkQ.defaultProps={height:40,width:255};addPropertyControls(FramervQlXUXHkQ,{AnelZu8P6:{title:\"Link\",type:ControlType.Link},WoLp7XcbU:{defaultValue:\"View more security details ->\",displayTextArea:false,placeholder:\"\",title:\"Title\",type:ControlType.String},QBYEA2nvt:{defaultValue:\"rgba(102, 102, 102, 0.5)\",title:\"Background\",type:ControlType.Color},VzskGXVsb:{defaultValue:\"rgb(102, 102, 102)\",title:\"Background 2\",type:ControlType.Color},w0Sbpn7Yb:{defaultValue:[{blur:5,color:\"rgba(0,0,0,0.25)\",diffusion:.25,focus:.5,inset:false,spread:0,type:\"realistic\",x:0,y:10}],title:\"Shadow\",type:ControlType.BoxShadow}});addFonts(FramervQlXUXHkQ,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_A87jxeN7B.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervQlXUXHkQ\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"40\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"255\",\"framerVariables\":\"{\\\"AnelZu8P6\\\":\\\"link\\\",\\\"WoLp7XcbU\\\":\\\"title\\\",\\\"QBYEA2nvt\\\":\\\"background\\\",\\\"VzskGXVsb\\\":\\\"background2\\\",\\\"w0Sbpn7Yb\\\":\\\"shadow\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"w572IFUPL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vQlXUXHkQ.map", "// Generated by Framer (9045c1a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"CiOHgoa_z\",\"Ds1BtRT7I\",\"Yk3tXMb6J\",\"L6xhgXM2b\",\"CIQrZpKpZ\",\"RbKiGT61W\",\"anyZg2_cb\",\"UURXY2lUO\",\"aFt2FVn1o\",\"bQ0dvf6Sm\",\"s2JRc0qrW\",\"h7Qm7fNXV\",\"RlnfpJ1YK\",\"jG7IOFn46\",\"f1gfjTyMe\",\"s27W8hs1Y\",\"WyRW5ar6O\",\"CIN58vzUF\",\"KzPMf7niY\",\"F4xsIzfds\",\"pMuMdxUPa\",\"puhoWcy6p\",\"Oxy1iShJ8\",\"CbymUW9er\",\"hdLDDd7O2\",\"g3Mw9m3Nh\",\"ftt6eiiMH\",\"Q7FvhQd_H\",\"z3tFSHHIh\",\"GuNOwVGbJ\",\"k376zO7Ch\"];const serializationHash=\"framer-qBWLa\";const variantClassNames={aFt2FVn1o:\"framer-v-14eajib\",anyZg2_cb:\"framer-v-1efj51a\",bQ0dvf6Sm:\"framer-v-1phelw8\",CbymUW9er:\"framer-v-1218dbj\",CIN58vzUF:\"framer-v-cimxp6\",CiOHgoa_z:\"framer-v-1h733om\",CIQrZpKpZ:\"framer-v-1y8wxkp\",Ds1BtRT7I:\"framer-v-1d56fnn\",f1gfjTyMe:\"framer-v-8q5hiy\",F4xsIzfds:\"framer-v-15dmzim\",ftt6eiiMH:\"framer-v-1i3oxlg\",g3Mw9m3Nh:\"framer-v-1n0q1e6\",GuNOwVGbJ:\"framer-v-1t248mi\",h7Qm7fNXV:\"framer-v-as4ckr\",hdLDDd7O2:\"framer-v-9feeee\",jG7IOFn46:\"framer-v-p4k9ro\",k376zO7Ch:\"framer-v-sko3rc\",KzPMf7niY:\"framer-v-5i7i9i\",L6xhgXM2b:\"framer-v-okqw29\",Oxy1iShJ8:\"framer-v-1kohgn9\",pMuMdxUPa:\"framer-v-l89wje\",puhoWcy6p:\"framer-v-ez1ufu\",Q7FvhQd_H:\"framer-v-169c1wl\",RbKiGT61W:\"framer-v-12y4vny\",RlnfpJ1YK:\"framer-v-sarzk7\",s27W8hs1Y:\"framer-v-1xiptai\",s2JRc0qrW:\"framer-v-1tepucu\",UURXY2lUO:\"framer-v-1r6b7oh\",WyRW5ar6O:\"framer-v-13dm5pp\",Yk3tXMb6J:\"framer-v-pqovdh\",z3tFSHHIh:\"framer-v-c2uq6i\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Admin visibility\":\"GuNOwVGbJ\",\"Auto prompting\":\"f1gfjTyMe\",\"Automatic flagging\":\"ftt6eiiMH\",\"Class summaries\":\"F4xsIzfds\",\"Code Editor\":\"s2JRc0qrW\",\"Content Upload\":\"CiOHgoa_z\",\"Custom rubrics\":\"WyRW5ar6O\",\"Essay Feedback\":\"jG7IOFn46\",\"Feedback with Citations\":\"UURXY2lUO\",\"Follow-up activities\":\"Oxy1iShJ8\",\"Image generation\":\"anyZg2_cb\",\"Image processing\":\"RbKiGT61W\",\"In-line citations\":\"CIQrZpKpZ\",\"LMS and SIS integrations\":\"g3Mw9m3Nh\",\"Math Accuracy\":\"Ds1BtRT7I\",\"Math Formula Editor\":\"h7Qm7fNXV\",\"Print session\":\"hdLDDd7O2\",\"School-wide AI chatbot\":\"s27W8hs1Y\",\"TTS and STT\":\"aFt2FVn1o\",\"Usage analytics\":\"Q7FvhQd_H\",\"Web search\":\"Yk3tXMb6J\",\"World Languages\":\"bQ0dvf6Sm\",Deadline:\"pMuMdxUPa\",Graphing:\"RlnfpJ1YK\",Guardrails:\"KzPMf7niY\",LLMs:\"k376zO7Ch\",Previews:\"CIN58vzUF\",SSO:\"z3tFSHHIh\",Timed:\"puhoWcy6p\",Whiteboard:\"L6xhgXM2b\",Youtube:\"CbymUW9er\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"CiOHgoa_z\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CiOHgoa_z\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1h733om\",className,classNames),\"data-framer-name\":\"Content Upload\",layoutDependency:layoutDependency,layoutId:\"CiOHgoa_z\",ref:refBinding,style:{backgroundColor:\"var(--token-2fb34a9d-abaa-4fb3-a6f3-70496ba06176, rgb(255, 255, 255))\",...style},...addPropertyOverrides({aFt2FVn1o:{\"data-framer-name\":\"TTS and STT\"},anyZg2_cb:{\"data-framer-name\":\"Image generation\"},bQ0dvf6Sm:{\"data-framer-name\":\"World Languages\"},CbymUW9er:{\"data-framer-name\":\"Youtube\"},CIN58vzUF:{\"data-framer-name\":\"Previews\"},CIQrZpKpZ:{\"data-framer-name\":\"In-line citations\"},Ds1BtRT7I:{\"data-framer-name\":\"Math Accuracy\"},f1gfjTyMe:{\"data-framer-name\":\"Auto prompting\"},F4xsIzfds:{\"data-framer-name\":\"Class summaries\"},ftt6eiiMH:{\"data-framer-name\":\"Automatic flagging\"},g3Mw9m3Nh:{\"data-framer-name\":\"LMS and SIS integrations\"},GuNOwVGbJ:{\"data-framer-name\":\"Admin visibility\"},h7Qm7fNXV:{\"data-framer-name\":\"Math Formula Editor\"},hdLDDd7O2:{\"data-framer-name\":\"Print session\"},jG7IOFn46:{\"data-framer-name\":\"Essay Feedback\"},k376zO7Ch:{\"data-framer-name\":\"LLMs\"},KzPMf7niY:{\"data-framer-name\":\"Guardrails\"},L6xhgXM2b:{\"data-framer-name\":\"Whiteboard\"},Oxy1iShJ8:{\"data-framer-name\":\"Follow-up activities\"},pMuMdxUPa:{\"data-framer-name\":\"Deadline\"},puhoWcy6p:{\"data-framer-name\":\"Timed\"},Q7FvhQd_H:{\"data-framer-name\":\"Usage analytics\"},RbKiGT61W:{\"data-framer-name\":\"Image processing\"},RlnfpJ1YK:{\"data-framer-name\":\"Graphing\"},s27W8hs1Y:{\"data-framer-name\":\"School-wide AI chatbot\"},s2JRc0qrW:{\"data-framer-name\":\"Code Editor\"},UURXY2lUO:{\"data-framer-name\":\"Feedback with Citations\"},WyRW5ar6O:{\"data-framer-name\":\"Custom rubrics\"},Yk3tXMb6J:{\"data-framer-name\":\"Web search\"},z3tFSHHIh:{\"data-framer-name\":\"SSO\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Diagram showing content upload in the form of PDFs, excel sheets, folders, youtube videos, and web links.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/yYJOZS2pRs1uGJGKB5hJtkzMno.png\",srcSet:\"https://framerusercontent.com/images/yYJOZS2pRs1uGJGKB5hJtkzMno.png?scale-down-to=512 512w,https://framerusercontent.com/images/yYJOZS2pRs1uGJGKB5hJtkzMno.png 1000w\"},className:\"framer-1d6puur\",\"data-framer-name\":\"Features-Images-Manual\",layoutDependency:layoutDependency,layoutId:\"bBjjG7kMt\",...addPropertyOverrides({aFt2FVn1o:{background:{alt:\"Chat example showing ability to listen and speak to the AI tutor\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1250,pixelWidth:1250,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/tppO7rbq4wTmHYqPVQSAdgs0A.png\",srcSet:\"https://framerusercontent.com/images/tppO7rbq4wTmHYqPVQSAdgs0A.png?scale-down-to=512 512w,https://framerusercontent.com/images/tppO7rbq4wTmHYqPVQSAdgs0A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tppO7rbq4wTmHYqPVQSAdgs0A.png 1250w\"}},anyZg2_cb:{background:{alt:\"Abstracted image of feedback feature that hyperlinks to analyzed portions of transcript\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:750,pixelWidth:750,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/UjEbl0FR8gy1V1wzYC7EouII.png\",srcSet:\"https://framerusercontent.com/images/UjEbl0FR8gy1V1wzYC7EouII.png?scale-down-to=512 512w,https://framerusercontent.com/images/UjEbl0FR8gy1V1wzYC7EouII.png 750w\"}},bQ0dvf6Sm:{background:{alt:\"Stylized list of languages supported in Flint.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1250,pixelWidth:1250,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/yyliHLE9hIt8RrnlJm0uajvmRIQ.png\",srcSet:\"https://framerusercontent.com/images/yyliHLE9hIt8RrnlJm0uajvmRIQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/yyliHLE9hIt8RrnlJm0uajvmRIQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yyliHLE9hIt8RrnlJm0uajvmRIQ.png 1250w\"}},CbymUW9er:{background:{alt:\"Image showing how YouTube transcripts can be scraped and provided to Flint's tutors.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1250,pixelWidth:1250,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/9q278M0LIeays703twS4iWUWlcQ.png\",srcSet:\"https://framerusercontent.com/images/9q278M0LIeays703twS4iWUWlcQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/9q278M0LIeays703twS4iWUWlcQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9q278M0LIeays703twS4iWUWlcQ.png 1250w\"}},CIN58vzUF:{background:{alt:\"Example of automatically generated previews based on grade levels, in this case an A-level submission preview.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1250,pixelWidth:1250,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/LhmWBE5pfnq5pONC2AnsxhIj0.png\",srcSet:\"https://framerusercontent.com/images/LhmWBE5pfnq5pONC2AnsxhIj0.png?scale-down-to=512 512w,https://framerusercontent.com/images/LhmWBE5pfnq5pONC2AnsxhIj0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LhmWBE5pfnq5pONC2AnsxhIj0.png 1250w\"}},CIQrZpKpZ:{background:{alt:\"Example of in-line citatioon where Flint's response is shown to be sourced from a quote within a textbook chapter.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:750,pixelWidth:750,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/rB9uYv0vnq947bZA8L7vYbCJh0Q.png\",srcSet:\"https://framerusercontent.com/images/rB9uYv0vnq947bZA8L7vYbCJh0Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/rB9uYv0vnq947bZA8L7vYbCJh0Q.png 750w\"}},Ds1BtRT7I:{background:{alt:\"Example conversation with equations and calculations correctly done by the AI.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1250,pixelWidth:1250,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/D7y9oEcFsveQIT9fSwi5SIaBxI.png\",srcSet:\"https://framerusercontent.com/images/D7y9oEcFsveQIT9fSwi5SIaBxI.png?scale-down-to=512 512w,https://framerusercontent.com/images/D7y9oEcFsveQIT9fSwi5SIaBxI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/D7y9oEcFsveQIT9fSwi5SIaBxI.png 1250w\"}},f1gfjTyMe:{background:{alt:\"Simple revision request of making questions harder as students get them right that can be applied to the tutor with a click of the revise button.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:750,pixelWidth:750,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/vwuTtgCXFDyDMhDbQDOWVCOLpcU.png\",srcSet:\"https://framerusercontent.com/images/vwuTtgCXFDyDMhDbQDOWVCOLpcU.png?scale-down-to=512 512w,https://framerusercontent.com/images/vwuTtgCXFDyDMhDbQDOWVCOLpcU.png 750w\"}},F4xsIzfds:{background:{alt:\"Example of how the class summaries will surface specific student responses that exemplify key insights in the analysis of all the sessions students had with a specific tutor.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/5vscGnA07IlyQgoYGvOVPz6Sps0.png\",srcSet:\"https://framerusercontent.com/images/5vscGnA07IlyQgoYGvOVPz6Sps0.png?scale-down-to=512 512w,https://framerusercontent.com/images/5vscGnA07IlyQgoYGvOVPz6Sps0.png 1000w\"}},ftt6eiiMH:{background:{alt:\"Example diagram of how a course can have a group and within that group can be subgroups for each period of that course.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:750,pixelWidth:750,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xX7Azopfe7621Z4XKiLefGqBf30.png\",srcSet:\"https://framerusercontent.com/images/xX7Azopfe7621Z4XKiLefGqBf30.png?scale-down-to=512 512w,https://framerusercontent.com/images/xX7Azopfe7621Z4XKiLefGqBf30.png 750w\"}},g3Mw9m3Nh:{background:{alt:\"Diagram showing that Flint integrates with Blackboard, Canvas, Google, Microsoft, Moodle, Schoology, Blackbaud, OneRoster, PowerSchool, and Veracross\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:750,pixelWidth:750,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/KHMatoaOuHhfBduKcpuvL45A.png\",srcSet:\"https://framerusercontent.com/images/KHMatoaOuHhfBduKcpuvL45A.png?scale-down-to=512 512w,https://framerusercontent.com/images/KHMatoaOuHhfBduKcpuvL45A.png 750w\"}},GuNOwVGbJ:{background:{alt:\"Image showing how admins can dig into each student or teacher session to gain oversight on the use of AI.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1250,pixelWidth:1250,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/hCiOZWesk3PXhGOO182MLAM79OQ.png\",srcSet:\"https://framerusercontent.com/images/hCiOZWesk3PXhGOO182MLAM79OQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/hCiOZWesk3PXhGOO182MLAM79OQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hCiOZWesk3PXhGOO182MLAM79OQ.png 1250w\"}},h7Qm7fNXV:{background:{alt:\"Math equation input interface that allows equations to be inserted into the conversations with the AI.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1250,pixelWidth:1250,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/TBaophVRdPYJQPEJr47LGz1JQ.png\",srcSet:\"https://framerusercontent.com/images/TBaophVRdPYJQPEJr47LGz1JQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/TBaophVRdPYJQPEJr47LGz1JQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TBaophVRdPYJQPEJr47LGz1JQ.png 1250w\"}},hdLDDd7O2:{background:{alt:\"Image showing the ability to export a student's session as a pdf.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1250,pixelWidth:1250,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ZgQZQkCUOt8r8b6bRjzyS3SFXo.png\",srcSet:\"https://framerusercontent.com/images/ZgQZQkCUOt8r8b6bRjzyS3SFXo.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZgQZQkCUOt8r8b6bRjzyS3SFXo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZgQZQkCUOt8r8b6bRjzyS3SFXo.png 1250w\"}},jG7IOFn46:{background:{alt:\"Essay feedback example where student highlighted and asked about a portion of their writing and got feedback from the AI.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1250,pixelWidth:1250,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Wssq8oVBqO9K5vi8C45IzeaFsI.png\",srcSet:\"https://framerusercontent.com/images/Wssq8oVBqO9K5vi8C45IzeaFsI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Wssq8oVBqO9K5vi8C45IzeaFsI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wssq8oVBqO9K5vi8C45IzeaFsI.png 1250w\"}},k376zO7Ch:{background:{alt:\"Diagram showing how Flint is made of a combination of Claude 3.7 Sonnet, text-to-speech and speech-to-text, code-based calculations, uploaded content, web search, and translation services.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:750,pixelWidth:750,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/WJ80YR8qtvGJYPhRBaNwiYGPaA.png\",srcSet:\"https://framerusercontent.com/images/WJ80YR8qtvGJYPhRBaNwiYGPaA.png?scale-down-to=512 512w,https://framerusercontent.com/images/WJ80YR8qtvGJYPhRBaNwiYGPaA.png 750w\"}},KzPMf7niY:{background:{alt:\"Settings that allow teachers to set up guardrails for learning with AI, including how helpful the AI should be and rules for how it should behave.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:750,pixelWidth:750,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/dh7fMZ06zFxW0cwYkDEnzrQBQ.png\",srcSet:\"https://framerusercontent.com/images/dh7fMZ06zFxW0cwYkDEnzrQBQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/dh7fMZ06zFxW0cwYkDEnzrQBQ.png 750w\"}},L6xhgXM2b:{background:{alt:\"Whiteboard showing parabola with x-intercepts and vertex labelled.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:750,pixelWidth:750,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/0RWbPx0h2wOpTNcpUoXccyMi3yA.png\",srcSet:\"https://framerusercontent.com/images/0RWbPx0h2wOpTNcpUoXccyMi3yA.png?scale-down-to=512 512w,https://framerusercontent.com/images/0RWbPx0h2wOpTNcpUoXccyMi3yA.png 750w\"}},Oxy1iShJ8:{background:{alt:\"Image showing how a follow-up tutor is suggested based on what next goals for learning could be.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:750,pixelWidth:750,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/k33GyPLJjP2tIEJEE0eGs1q9LI.png\",srcSet:\"https://framerusercontent.com/images/k33GyPLJjP2tIEJEE0eGs1q9LI.png?scale-down-to=512 512w,https://framerusercontent.com/images/k33GyPLJjP2tIEJEE0eGs1q9LI.png 750w\"}},pMuMdxUPa:{background:{alt:\"Image showing how you can set a deadline by which students should submit their session with a tutor.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1250,pixelWidth:1250,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/5GzJtmbrWqHGhBzKfBSUvulBGE.png\",srcSet:\"https://framerusercontent.com/images/5GzJtmbrWqHGhBzKfBSUvulBGE.png?scale-down-to=512 512w,https://framerusercontent.com/images/5GzJtmbrWqHGhBzKfBSUvulBGE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5GzJtmbrWqHGhBzKfBSUvulBGE.png 1250w\"}},puhoWcy6p:{background:{alt:\"Image showing how you can set a timer to limit the duration of interaction with a tutor.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1250,pixelWidth:1250,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/OdsFjXYBndTSu6L2EdIL9Ww0.png\",srcSet:\"https://framerusercontent.com/images/OdsFjXYBndTSu6L2EdIL9Ww0.png?scale-down-to=512 512w,https://framerusercontent.com/images/OdsFjXYBndTSu6L2EdIL9Ww0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OdsFjXYBndTSu6L2EdIL9Ww0.png 1250w\"}},Q7FvhQd_H:{background:{alt:\"Examples of analytics for an entire school's usage of Flint, including highlighted strengths of students, top tutor creators, and a pie chart showing the types of tutors created: written chats, spoken chats, or essays.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/kzJO6A2fv2LqwOLHsEsKqpXls.png\",srcSet:\"https://framerusercontent.com/images/kzJO6A2fv2LqwOLHsEsKqpXls.png?scale-down-to=512 512w,https://framerusercontent.com/images/kzJO6A2fv2LqwOLHsEsKqpXls.png 1000w\"}},RbKiGT61W:{background:{alt:\"Chat messages where student uploaded a picture of the ATP cycle and Flint recognized and was able to explain the process to the student.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:750,pixelWidth:750,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/K1UQorw39M3T81j3VSZV0yn23U.png\",srcSet:\"https://framerusercontent.com/images/K1UQorw39M3T81j3VSZV0yn23U.png?scale-down-to=512 512w,https://framerusercontent.com/images/K1UQorw39M3T81j3VSZV0yn23U.png 750w\"}},RlnfpJ1YK:{background:{alt:\"Example chat with a graph showing a parabole and line and where they intersect.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1250,pixelWidth:1250,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/sexpDPx7f1FCxecNOT9y2exYfqw.png\",srcSet:\"https://framerusercontent.com/images/sexpDPx7f1FCxecNOT9y2exYfqw.png?scale-down-to=512 512w,https://framerusercontent.com/images/sexpDPx7f1FCxecNOT9y2exYfqw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sexpDPx7f1FCxecNOT9y2exYfqw.png 1250w\"}},s27W8hs1Y:{background:{alt:\"General school-wide tutor helping a teacher generate a worksheet to help 7th graders practice writing good, testable hypotheses.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:750,pixelWidth:750,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ZW7ywrOGBDjz7ebqnqKWcdfWxTw.png\",srcSet:\"https://framerusercontent.com/images/ZW7ywrOGBDjz7ebqnqKWcdfWxTw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZW7ywrOGBDjz7ebqnqKWcdfWxTw.png 750w\"}},s2JRc0qrW:{background:{alt:\"Example conversation with a code snippet and some of the supported languages listed in the background.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:750,pixelWidth:750,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Q4K1EDFIOesVBamRindpKaNWGU.png\",srcSet:\"https://framerusercontent.com/images/Q4K1EDFIOesVBamRindpKaNWGU.png?scale-down-to=512 512w,https://framerusercontent.com/images/Q4K1EDFIOesVBamRindpKaNWGU.png 750w\"}},UURXY2lUO:{background:{alt:\"Abstracted image of feedback feature that hyperlinks to analyzed portions of transcript\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1250,pixelWidth:1250,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/QQul6cW0xIBY5KUZkcQbDENxVsE.png\",srcSet:\"https://framerusercontent.com/images/QQul6cW0xIBY5KUZkcQbDENxVsE.png?scale-down-to=512 512w,https://framerusercontent.com/images/QQul6cW0xIBY5KUZkcQbDENxVsE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QQul6cW0xIBY5KUZkcQbDENxVsE.png 1250w\"}},WyRW5ar6O:{background:{alt:\"Image showing the ability to upload a rubric document and have it applied to the settings within Flint.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1250,pixelWidth:1250,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/VuJPS5A4MhLXwEh8AbGT0U61Ck.png\",srcSet:\"https://framerusercontent.com/images/VuJPS5A4MhLXwEh8AbGT0U61Ck.png?scale-down-to=512 512w,https://framerusercontent.com/images/VuJPS5A4MhLXwEh8AbGT0U61Ck.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VuJPS5A4MhLXwEh8AbGT0U61Ck.png 1250w\"}},Yk3tXMb6J:{background:{alt:\"Graphic showing how Flint can search the web for information, including from news sites like the BBC.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:750,pixelWidth:750,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/gNmQbr6zzBysSBp27LwfoFaEo3w.png\",srcSet:\"https://framerusercontent.com/images/gNmQbr6zzBysSBp27LwfoFaEo3w.png?scale-down-to=512 512w,https://framerusercontent.com/images/gNmQbr6zzBysSBp27LwfoFaEo3w.png 750w\"}},z3tFSHHIh:{background:{alt:\"Login box showing how you can use single-sign-on from Google or Microsoft with Flint.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1250,pixelWidth:1250,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/6uslIaFOgiv5iuOl2OmBy3nTg.png\",srcSet:\"https://framerusercontent.com/images/6uslIaFOgiv5iuOl2OmBy3nTg.png?scale-down-to=512 512w,https://framerusercontent.com/images/6uslIaFOgiv5iuOl2OmBy3nTg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6uslIaFOgiv5iuOl2OmBy3nTg.png 1250w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ii6h4e\",\"data-framer-name\":\"Cover\",layoutDependency:layoutDependency,layoutId:\"h01bh5CRa\",style:{backgroundColor:\"var(--token-2fb34a9d-abaa-4fb3-a6f3-70496ba06176, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Upload PDFs, Word documents, PowerPoint slides, CSV files, and website links for the AI to pull from.\"})}),className:\"framer-1sjx3j7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Tz6g5Tz2Z\",style:{\"--extracted-r6o4lv\":\"var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aFt2FVn1o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Flint can speak in over 50 languages and dialects and can transcribe speech with 98.5% accuracy.\"})})},anyZg2_cb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Flint uses DALL\\xb7E 3 to generate AI images to help students visualize scenarios, get inspiration, or create designs.\"})})},bQ0dvf6Sm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"World language teachers can select a primary and secondary language for the AI to communicate with students in, as well as an ACTFL or CEFR level.\"})})},CbymUW9er:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Paste a YouTube video link, and Flint can incorporate the transcript as part of its knowledge base.\"})})},CIN58vzUF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Watch the AI mock up an example student interaction, to see exactly how it would help a struggling student or push an excelling student to go further.\"})})},CIQrZpKpZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Flint can cite its sources \u2014 whether it be from teacher-provided content or web sources the AI found via search \u2014 and show the exact excerpt used.\"})})},Ds1BtRT7I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Flint runs calculations in the background to ensure accuracy on even the most complex math problems, similar to a human tutor verifying work with a calculator.\"})})},f1gfjTyMe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Describe what you want in natural language, and let AI do the prompt engineering for you. No prompt engineering skills required.\"})})},F4xsIzfds:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"The AI summarizes strengths and areas of improvement for your whole class.\"})})},ftt6eiiMH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Inappropriate messages sent to the AI (language related to violence, harassment, threats, self-harm, sexual content, etc.) are automatically flagged for administrator review.\"})})},g3Mw9m3Nh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Flint supports rostering import via integrations with every major LMS (Canvas, Schoology, Google Classroom, etc.) and SIS (Veracross, Blackbaud, PowerSchool, etc.)\"})})},GuNOwVGbJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"School admins can see every message that any users (students, teachers, etc.) send back and forth with AI activites on Flint.\"})})},h7Qm7fNXV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Flint displays equations in LaTeX formatting and includes a formula editor to let users enter their own equations, in an interface similar to MathType.\"})})},hdLDDd7O2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Print student conversations with the AI, or export as a PDF.\"})})},jG7IOFn46:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Provide students with inline writing feedback from AI that follows a rubric and guardrails set by the teacher.\"})})},k376zO7Ch:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Flint uses Claude 3.7 Sonnet in combination with translation, code-based math calculations, and web search for the highest possible accuracy.\"})})},KzPMf7niY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"By default, Flint refuses to provide answers directly or do work on behalf of students. Teachers can customize guardrails the AI follows to make it more or less flexible.\"})})},L6xhgXM2b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Students can interact with Flint via a whiteboard to show their work to the AI.\"})})},Oxy1iShJ8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Based on areas of improvement of an individual student or an entire class, create an AI activity to give personalized extra help.\"})})},pMuMdxUPa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Set a deadline for students to interact with an AI activity, in order to use Flint as an assignment tool.\"})})},puhoWcy6p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Set a time limit for a session with an AI activity.\"})})},Q7FvhQd_H:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"See how often teachers and students are using Flint, and who the most active users are.\"})})},RbKiGT61W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Flint can process images to explain diagrams, transcribe written notes, or help students stuck on showing their work on a problem.\"})})},RlnfpJ1YK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Flint can graph equations on 2D or 3D planes to visualize math problems, or help in visualizing simple datasets.\"})})},s27W8hs1Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Students, teachers, and admin have 24/7 access to a school-wide AI chatbot that can be used for any purpose, e.g. extra homework help or generating classroom materials.\"})})},s2JRc0qrW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Flint can write and display code in-line in 50+ languages and includes a built-in code editor with automatic syntax highlighting.\"})})},UURXY2lUO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"When providing feedback after a session, clickable inline citations let students (and teachers) easily identify strengths and areas of improvement.\"})})},WyRW5ar6O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Upload rubrics (AP, IB, etc.) for the AI to follow when providing feedback to students, or edit the generated rubric to your liking.\"})})},Yk3tXMb6J:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"Flint can search the web to find accurate and up-to-date info (e.g. current events from news articles).\"})})},z3tFSHHIh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102)))\"},children:\"One-click sign up via Google or Microsoft, including for students under the age of 13.\"})})}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qBWLa.framer-1yx90eo, .framer-qBWLa .framer-1yx90eo { display: block; }\",\".framer-qBWLa.framer-1h733om { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 640px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 500px; }\",\".framer-qBWLa .framer-1d6puur { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 500px); position: relative; width: 100%; }\",\".framer-qBWLa .framer-ii6h4e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 140px; justify-content: flex-start; overflow: visible; padding: 16px 16px 0px 16px; position: relative; width: 100%; z-index: 1; }\",\".framer-qBWLa .framer-1sjx3j7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qBWLa.framer-1h733om, .framer-qBWLa .framer-ii6h4e { gap: 0px; } .framer-qBWLa.framer-1h733om > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-qBWLa.framer-1h733om > :first-child, .framer-qBWLa .framer-ii6h4e > :first-child { margin-top: 0px; } .framer-qBWLa.framer-1h733om > :last-child, .framer-qBWLa .framer-ii6h4e > :last-child { margin-bottom: 0px; } .framer-qBWLa .framer-ii6h4e > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 640\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ds1BtRT7I\":{\"layout\":[\"fixed\",\"fixed\"]},\"Yk3tXMb6J\":{\"layout\":[\"fixed\",\"fixed\"]},\"L6xhgXM2b\":{\"layout\":[\"fixed\",\"fixed\"]},\"CIQrZpKpZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"RbKiGT61W\":{\"layout\":[\"fixed\",\"fixed\"]},\"anyZg2_cb\":{\"layout\":[\"fixed\",\"fixed\"]},\"UURXY2lUO\":{\"layout\":[\"fixed\",\"fixed\"]},\"aFt2FVn1o\":{\"layout\":[\"fixed\",\"fixed\"]},\"bQ0dvf6Sm\":{\"layout\":[\"fixed\",\"fixed\"]},\"s2JRc0qrW\":{\"layout\":[\"fixed\",\"fixed\"]},\"h7Qm7fNXV\":{\"layout\":[\"fixed\",\"fixed\"]},\"RlnfpJ1YK\":{\"layout\":[\"fixed\",\"fixed\"]},\"jG7IOFn46\":{\"layout\":[\"fixed\",\"fixed\"]},\"f1gfjTyMe\":{\"layout\":[\"fixed\",\"fixed\"]},\"s27W8hs1Y\":{\"layout\":[\"fixed\",\"fixed\"]},\"WyRW5ar6O\":{\"layout\":[\"fixed\",\"fixed\"]},\"CIN58vzUF\":{\"layout\":[\"fixed\",\"fixed\"]},\"KzPMf7niY\":{\"layout\":[\"fixed\",\"fixed\"]},\"F4xsIzfds\":{\"layout\":[\"fixed\",\"fixed\"]},\"pMuMdxUPa\":{\"layout\":[\"fixed\",\"fixed\"]},\"puhoWcy6p\":{\"layout\":[\"fixed\",\"fixed\"]},\"Oxy1iShJ8\":{\"layout\":[\"fixed\",\"fixed\"]},\"CbymUW9er\":{\"layout\":[\"fixed\",\"fixed\"]},\"hdLDDd7O2\":{\"layout\":[\"fixed\",\"fixed\"]},\"g3Mw9m3Nh\":{\"layout\":[\"fixed\",\"fixed\"]},\"ftt6eiiMH\":{\"layout\":[\"fixed\",\"fixed\"]},\"Q7FvhQd_H\":{\"layout\":[\"fixed\",\"fixed\"]},\"z3tFSHHIh\":{\"layout\":[\"fixed\",\"fixed\"]},\"GuNOwVGbJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"k376zO7Ch\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxeuYGG01W=withCSS(Component,css,\"framer-qBWLa\");export default FramerxeuYGG01W;FramerxeuYGG01W.displayName=\"Features-Images-Manual\";FramerxeuYGG01W.defaultProps={height:640,width:500};addPropertyControls(FramerxeuYGG01W,{variant:{options:[\"CiOHgoa_z\",\"Ds1BtRT7I\",\"Yk3tXMb6J\",\"L6xhgXM2b\",\"CIQrZpKpZ\",\"RbKiGT61W\",\"anyZg2_cb\",\"UURXY2lUO\",\"aFt2FVn1o\",\"bQ0dvf6Sm\",\"s2JRc0qrW\",\"h7Qm7fNXV\",\"RlnfpJ1YK\",\"jG7IOFn46\",\"f1gfjTyMe\",\"s27W8hs1Y\",\"WyRW5ar6O\",\"CIN58vzUF\",\"KzPMf7niY\",\"F4xsIzfds\",\"pMuMdxUPa\",\"puhoWcy6p\",\"Oxy1iShJ8\",\"CbymUW9er\",\"hdLDDd7O2\",\"g3Mw9m3Nh\",\"ftt6eiiMH\",\"Q7FvhQd_H\",\"z3tFSHHIh\",\"GuNOwVGbJ\",\"k376zO7Ch\"],optionTitles:[\"Content Upload\",\"Math Accuracy\",\"Web search\",\"Whiteboard\",\"In-line citations\",\"Image processing\",\"Image generation\",\"Feedback with Citations\",\"TTS and STT\",\"World Languages\",\"Code Editor\",\"Math Formula Editor\",\"Graphing\",\"Essay Feedback\",\"Auto prompting\",\"School-wide AI chatbot\",\"Custom rubrics\",\"Previews\",\"Guardrails\",\"Class summaries\",\"Deadline\",\"Timed\",\"Follow-up activities\",\"Youtube\",\"Print session\",\"LMS and SIS integrations\",\"Automatic flagging\",\"Usage analytics\",\"SSO\",\"Admin visibility\",\"LLMs\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerxeuYGG01W,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxeuYGG01W\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ds1BtRT7I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Yk3tXMb6J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"L6xhgXM2b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CIQrZpKpZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RbKiGT61W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"anyZg2_cb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UURXY2lUO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aFt2FVn1o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bQ0dvf6Sm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"s2JRc0qrW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"h7Qm7fNXV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RlnfpJ1YK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jG7IOFn46\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"f1gfjTyMe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"s27W8hs1Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WyRW5ar6O\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CIN58vzUF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KzPMf7niY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"F4xsIzfds\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pMuMdxUPa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"puhoWcy6p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Oxy1iShJ8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CbymUW9er\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hdLDDd7O2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"g3Mw9m3Nh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ftt6eiiMH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Q7FvhQd_H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"z3tFSHHIh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GuNOwVGbJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"k376zO7Ch\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"640\",\"framerIntrinsicWidth\":\"500\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xeuYGG01W.map", "// Generated by Framer (236a21b)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/oZ574vkD3hMXIqJlPL61/mQlwCXiy6cbr1ak7PJ8Q/YckFIlg3V.js\";const cycleOrder=[\"H3HJwIf05\",\"A6qw5IIlJ\"];const serializationHash=\"framer-N2Fy3\";const variantClassNames={A6qw5IIlJ:\"framer-v-golelr\",H3HJwIf05:\"framer-v-1pyn5mt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Active:\"A6qw5IIlJ\",Inactive:\"H3HJwIf05\"};const getProps=({height,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,CcAOxzL7c:link!==null&&link!==void 0?link:props.CcAOxzL7c,EckjdVGxn:(_ref=title!==null&&title!==void 0?title:props.EckjdVGxn)!==null&&_ref!==void 0?_ref:\"Title\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"H3HJwIf05\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,EckjdVGxn,CcAOxzL7c,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"H3HJwIf05\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:CcAOxzL7c,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1pyn5mt\",className,classNames)} framer-16r5hme`,\"data-framer-name\":\"Inactive\",layoutDependency:layoutDependency,layoutId:\"H3HJwIf05\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},variants:{A6qw5IIlJ:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({A6qw5IIlJ:{\"data-border\":true,\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgba(17, 17, 17, 0.5))\"},children:\"Title\"})}),className:\"framer-w014h2\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DahMKdyuS\",style:{\"--extracted-a0htzi\":\"rgba(17, 17, 17, 0.5)\"},text:EckjdVGxn,variants:{A6qw5IIlJ:{\"--extracted-a0htzi\":\"rgb(17, 17, 17)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({A6qw5IIlJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(17, 17, 17))\"},children:\"Title\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-N2Fy3.framer-16r5hme, .framer-N2Fy3 .framer-16r5hme { display: block; }\",\".framer-N2Fy3.framer-1pyn5mt { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; min-width: 200px; padding: 12px 24px 12px 24px; position: relative; text-decoration: none; width: 460px; }\",\".framer-N2Fy3 .framer-w014h2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-N2Fy3.framer-1pyn5mt { gap: 0px; } .framer-N2Fy3.framer-1pyn5mt > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-N2Fy3.framer-1pyn5mt > :first-child { margin-top: 0px; } .framer-N2Fy3.framer-1pyn5mt > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-N2Fy3[data-border=\"true\"]::after, .framer-N2Fy3 [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 49\n * @framerIntrinsicWidth 460\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[\"200px\",null,null,null]},\"A6qw5IIlJ\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[\"200px\",null,null,null]}}}\n * @framerVariables {\"EckjdVGxn\":\"title\",\"CcAOxzL7c\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZGE0zunRA=withCSS(Component,css,\"framer-N2Fy3\");export default FramerZGE0zunRA;FramerZGE0zunRA.displayName=\"Feature Description\";FramerZGE0zunRA.defaultProps={height:49,width:460};addPropertyControls(FramerZGE0zunRA,{variant:{options:[\"H3HJwIf05\",\"A6qw5IIlJ\"],optionTitles:[\"Inactive\",\"Active\"],title:\"Variant\",type:ControlType.Enum},EckjdVGxn:{defaultValue:\"Title\",title:\"Title\",type:ControlType.String},CcAOxzL7c:{title:\"Link\",type:ControlType.Link}});addFonts(FramerZGE0zunRA,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZGE0zunRA\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"EckjdVGxn\\\":\\\"title\\\",\\\"CcAOxzL7c\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"49\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"200px\\\",null,null,null]},\\\"A6qw5IIlJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"200px\\\",null,null,null]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"460\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZGE0zunRA.map", "// Generated by Framer (1bcc82d)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useDynamicRefs,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import SubjectExampleScroller from\"#framer/local/canvasComponent/cOy6SoC7m/cOy6SoC7m.js\";import UseCasesButton from\"#framer/local/canvasComponent/DcDxxV0wT/DcDxxV0wT.js\";import CTAButton from\"#framer/local/canvasComponent/dN8ZgbtUB/dN8ZgbtUB.js\";import DRAFTUpdatedFooter from\"#framer/local/canvasComponent/IwKSoIYAa/IwKSoIYAa.js\";import Subject from\"#framer/local/canvasComponent/KQERLBVX5/KQERLBVX5.js\";import DRAFTUpdatedNavBar from\"#framer/local/canvasComponent/nFbcpgXef/nFbcpgXef.js\";import SecurityButton from\"#framer/local/canvasComponent/vQlXUXHkQ/vQlXUXHkQ.js\";import FeaturesImagesManual from\"#framer/local/canvasComponent/xeuYGG01W/xeuYGG01W.js\";import CTASection from\"#framer/local/canvasComponent/z_cOlMNeG/z_cOlMNeG.js\";import FeatureDescription from\"#framer/local/canvasComponent/ZGE0zunRA/ZGE0zunRA.js\";import Features from\"#framer/local/collection/rwHAVA9RL/rwHAVA9RL.js\";import*as sharedStyle1 from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle2 from\"#framer/local/css/iSrOYCLQl/iSrOYCLQl.js\";import*as sharedStyle5 from\"#framer/local/css/Pe7b2P0Fh/Pe7b2P0Fh.js\";import*as sharedStyle6 from\"#framer/local/css/VtL3h8T6O/VtL3h8T6O.js\";import*as sharedStyle3 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import*as sharedStyle4 from\"#framer/local/css/YckFIlg3V/YckFIlg3V.js\";import metadataProvider from\"#framer/local/webPageMetadata/XVWZCkKkn/XVWZCkKkn.js\";const DRAFTUpdatedNavBarFonts=getFonts(DRAFTUpdatedNavBar);const DRAFTUpdatedNavBarWithVariantAppearEffect=withVariantAppearEffect(DRAFTUpdatedNavBar);const CTAButtonFonts=getFonts(CTAButton);const EmbedFonts=getFonts(Embed);const TickerFonts=getFonts(Ticker);const SubjectFonts=getFonts(Subject);const SlideshowFonts=getFonts(Slideshow);const SubjectExampleScrollerFonts=getFonts(SubjectExampleScroller);const SubjectExampleScrollerWithVariantAppearEffect=withVariantAppearEffect(SubjectExampleScroller);const UseCasesButtonFonts=getFonts(UseCasesButton);const CarouselFonts=getFonts(Carousel);const SecurityButtonFonts=getFonts(SecurityButton);const FeatureDescriptionFonts=getFonts(FeatureDescription);const FeatureDescriptionWithVariantAppearEffect=withVariantAppearEffect(FeatureDescription);const ContainerWithFX=withFX(Container);const MotionDivWithFX=withFX(motion.div);const FeaturesImagesManualFonts=getFonts(FeaturesImagesManual);const FeaturesImagesManualWithVariantAppearEffect=withVariantAppearEffect(FeaturesImagesManual);const CTASectionFonts=getFonts(CTASection);const DRAFTUpdatedFooterFonts=getFonts(DRAFTUpdatedFooter);const breakpoints={EcBcxoBrU:\"(min-width: 1200px)\",tiKaMPpAe:\"(min-width: 810px) and (max-width: 1199px)\",ZZrQIoph1:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-hhr1V\";const variantClassNames={EcBcxoBrU:\"framer-v-17331hd\",tiKaMPpAe:\"framer-v-52k8hk\",ZZrQIoph1:\"framer-v-1ydb4aw\"};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-100,y:0};const transition1={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:-100,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const numberToString=(value,options={},activeLocale)=>{const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const{useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"EcBcxoBrU\",Phone:\"ZZrQIoph1\",Tablet:\"tiKaMPpAe\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"EcBcxoBrU\"};};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,IGMQiLGMCIC3vl3E1W,JSZ05joHHIC3vl3E1W,idIC3vl3E1W,MHLEIZG8ybzF0XSn7j,JSZ05joHHbzF0XSn7j,CjfxNGRKLbzF0XSn7j,xzzuMWW2bbzF0XSn7j,IGMQiLGMCbzF0XSn7j,idbzF0XSn7j,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const scudbGgOT3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"fgPpRBDa_\");const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ZZrQIoph1\")return true;return false;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"ZZrQIoph1\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"tiKaMPpAe\",\"ZZrQIoph1\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"tiKaMPpAe\",\"ZZrQIoph1\"].includes(baseVariant))return true;return false;};const elementId1=useRouteElementId(\"gikQd56Wz\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"nOSEH_Aqo\");const ref3=React.useRef(null);const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"tiKaMPpAe\")return true;return false;};const elementId3=useRouteElementId(\"W3KcjXNKe\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"ngnHb9gev\");const dynamicRef=useDynamicRefs();const activeLocaleCode=useLocaleCode();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"EcBcxoBrU\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-5b7ae43a-5a22-4f7f-8f16-35b6a29cc8ba, rgb(235, 241, 254)); } @media (min-width: 810px) and (max-width: 1199px) { html body { background: rgb(235, 241, 251); } } @media (max-width: 809px) { html body { background: rgb(235, 241, 251); } }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-17331hd\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZZrQIoph1:{y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ew18wf-container\",nodeId:\"gS6IDw0QU\",rendersWithMotion:true,scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tiKaMPpAe:{__framer__targets:[{offset:40,ref:ref1,target:\"TxLIAVEQX\"}],variant:\"TY4T_5Xwl\"},ZZrQIoph1:{__framer__targets:[{offset:40,ref:ref1,target:\"X0HEq_LfM\"}],variant:\"JAq3APr4V\"}},children:/*#__PURE__*/_jsx(DRAFTUpdatedNavBarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:40,ref:ref1,target:\"zc0ZUGYlQ\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"gS6IDw0QU\",layoutId:\"gS6IDw0QU\",style:{height:\"100%\",width:\"100%\"},variant:\"cpnfvahX1\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZZrQIoph1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80),pixelHeight:428,pixelWidth:842,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/91UkGSctvn1raOQ4ArQ0IBczZk.svg\",srcSet:\"https://framerusercontent.com/images/91UkGSctvn1raOQ4ArQ0IBczZk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/91UkGSctvn1raOQ4ArQ0IBczZk.svg 842w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:428,pixelWidth:842,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/91UkGSctvn1raOQ4ArQ0IBczZk.svg\",srcSet:\"https://framerusercontent.com/images/91UkGSctvn1raOQ4ArQ0IBczZk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/91UkGSctvn1raOQ4ArQ0IBczZk.svg 842w\"},className:\"framer-nnwdmj\",\"data-border\":true,\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t1iwtr\",\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rpeidg\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-edr0l\",\"data-framer-name\":\"Content and video\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ma54aj\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZZrQIoph1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\"},children:\"AI for personalized learning\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\"},children:\"AI for personalized learning\"})}),className:\"framer-o839vf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZZrQIoph1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"left\"},children:\"Give every student tailored help and immediate feedback.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Give every student tailored help and immediate feedback.\"})}),className:\"framer-cuzded\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4mneeh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZZrQIoph1:{y:(componentViewport?.y||0)+0+80+60+0+0+0+0+0+0+0+118.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d3iqns-container\",nodeId:\"KifFD0SuK\",scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(CTAButton,{height:\"100%\",id:\"KifFD0SuK\",IolzpzBoe:\"rgb(101, 159, 235)\",layoutId:\"KifFD0SuK\",Nwv_yt4tK:\"rgb(69, 137, 223)\",style:{height:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15nhb1h\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-104nouv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"e2wdl9Mzu\",scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=\"https://www.loom.com/embed/f758949de7c444ab867c7000e980b730?sid=83de385d-0b79-44d1-84fd-404679f80149\" frameborder=\"0\" webkitallowfullscreen mozallowfullscreen allowfullscreen style=\"position: absolute; top: 0; left: 0; width: 100%; height: 100%;\"></iframe>',id:\"e2wdl9Mzu\",layoutId:\"e2wdl9Mzu\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://www.loom.com/share/2173d0a8dd1d4dbd8b3187d5ccc1876d?sid=858f5bfa-1da2-4921-bc70-3c9add1fe2c3\",width:\"100%\"})})})})]})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15xrwyl\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ankgkp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PBG5AZJ1y\",scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZZrQIoph1:{gap:40}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:64,height:\"100%\",hoverFactor:1,id:\"PBG5AZJ1y\",layoutId:\"PBG5AZJ1y\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"aEO9VgrNZ\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Synapse School Logo\",fit:\"fit\",intrinsicHeight:373,intrinsicWidth:400,pixelHeight:373,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/P96myY4dmjxW1nezUCZ8VgdKU.png\"},className:\"framer-arfts3 framer-91vg2o\",\"data-framer-name\":\"Logo Synapse\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"N2QgP0whK\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"The Westminster Schools logo\",fit:\"fit\",intrinsicHeight:42,intrinsicWidth:400,pixelHeight:42,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Lp8iK5wbUyksZdKCxDZe0QXT8.png\"},className:\"framer-1jbiy4x framer-91vg2o\",\"data-framer-name\":\"Logo Westminster\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"uUfni6QAY\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"The Episcopal Academy Logo\",fit:\"fit\",intrinsicHeight:67,intrinsicWidth:400,pixelHeight:67,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/V2rpNMU74VZ58OlkhM9JbKNJFew.png\"},className:\"framer-66boqo framer-91vg2o\",\"data-framer-name\":\"Logo Episcopal\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"YeVMGFA0L\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Germantown Friends School logo\",fit:\"fit\",intrinsicHeight:224,intrinsicWidth:400,pixelHeight:224,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/z4Hlr4Xu67ujVc56GiabZgoo.png\"},className:\"framer-1prf9a framer-91vg2o\",\"data-framer-name\":\"Logo Germantown Friends\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"f7rIvtKf5\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"St. George's School Logo\",fit:\"fit\",intrinsicHeight:224,intrinsicWidth:400,pixelHeight:224,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WalRDOh3VgwsZ0bAxKZPI9FAc.png\"},className:\"framer-3vuipb framer-91vg2o\",\"data-framer-name\":\"Logo St. George's\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"iCUCD9YtU\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Blair Academy Logo\",fit:\"fit\",intrinsicHeight:138,intrinsicWidth:400,pixelHeight:138,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qBhR2KQodmKZvjo0KAgtvtf86cY.png\"},className:\"framer-e4fsin framer-91vg2o\",\"data-framer-name\":\"Logo Blair\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"Ty59cXjcb\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"The York School logo\",fit:\"fit\",intrinsicHeight:259,intrinsicWidth:400,pixelHeight:259,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DLAOKbfiVIuUYcZcwpEDP1KRBI.png\"},className:\"framer-1owv900 framer-91vg2o\",\"data-framer-name\":\"Logo York\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"QtPvvdTVY\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Bay Ridge Prep Logo\",fit:\"fit\",intrinsicHeight:167,intrinsicWidth:400,pixelHeight:167,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uuRW0pxClYA6zH2vvMH4PcSwXM.png\"},className:\"framer-15wwl1u framer-91vg2o\",\"data-framer-name\":\"Logo Bay Ridge\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"yZPktgfYE\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Woodward Academy Logo\",fit:\"fit\",intrinsicHeight:360,intrinsicWidth:1286,pixelHeight:360,pixelWidth:1286,positionX:\"center\",positionY:\"center\",sizes:\"129px\",src:\"https://framerusercontent.com/images/rGUSj650tPWTpF8Cj25E9TdRM.png\",srcSet:\"https://framerusercontent.com/images/rGUSj650tPWTpF8Cj25E9TdRM.png?scale-down-to=512 512w,https://framerusercontent.com/images/rGUSj650tPWTpF8Cj25E9TdRM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rGUSj650tPWTpF8Cj25E9TdRM.png 1286w\"},className:\"framer-1ag86ji framer-91vg2o\",\"data-framer-name\":\"Logo Woodward\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"wXIMCmZXh\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Stony Brook School Logo\",fit:\"fit\",intrinsicHeight:90,intrinsicWidth:400,pixelHeight:90,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/1KrgJH6Qz9OknB8UPnM9zRYaiLg.png\"},className:\"framer-1vfavw3 framer-91vg2o\",\"data-framer-name\":\"Logo Stony Brook\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"E768AVdBs\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"United Nations International School logo\",fit:\"fit\",intrinsicHeight:146,intrinsicWidth:400,pixelHeight:146,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/bQbyH6crlKa2cRre4WrtRQrjfx0.png\"},className:\"framer-dx5ufi framer-91vg2o\",\"data-framer-name\":\"Logo UNIS\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"OkhSjNA4J\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Woodberry Forest School logo\",fit:\"fit\",intrinsicHeight:360,intrinsicWidth:1972,pixelHeight:360,pixelWidth:1972,positionX:\"center\",positionY:\"center\",sizes:\"231px\",src:\"https://framerusercontent.com/images/aQ2On4BSmR4S54M3B8iBGJYyo.png\",srcSet:\"https://framerusercontent.com/images/aQ2On4BSmR4S54M3B8iBGJYyo.png?scale-down-to=512 512w,https://framerusercontent.com/images/aQ2On4BSmR4S54M3B8iBGJYyo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aQ2On4BSmR4S54M3B8iBGJYyo.png 1972w\"},className:\"framer-1d2u999 framer-91vg2o\",\"data-framer-name\":\"Logo Woodberry Forest School\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"Ebp6q5k3n\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Noble and Greenough School logo\",fit:\"fit\",intrinsicHeight:360,intrinsicWidth:900,pixelHeight:295,pixelWidth:1235,positionX:\"center\",positionY:\"center\",sizes:\"174px\",src:\"https://framerusercontent.com/images/ltYyagodOdISRymULRA6lj8cVQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ltYyagodOdISRymULRA6lj8cVQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/ltYyagodOdISRymULRA6lj8cVQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ltYyagodOdISRymULRA6lj8cVQ.png 1235w\"},className:\"framer-g0m2le framer-91vg2o\",\"data-framer-name\":\"WAB\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"CPUKxTHGl\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Noble and Greenough School logo\",fit:\"fit\",intrinsicHeight:360,intrinsicWidth:900,pixelHeight:125,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ywkD7RBoY0WtCaf6gcWbVhwX8.png\"},className:\"framer-1rswnpj framer-91vg2o\",\"data-framer-name\":\"Logo Noble and Greenough\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"EsU4X__Ev\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Gwynedd Mercy Academy High School logo\",fit:\"fit\",intrinsicHeight:360,intrinsicWidth:900,pixelHeight:360,pixelWidth:900,positionX:\"center\",positionY:\"center\",sizes:\"105px\",src:\"https://framerusercontent.com/images/lZk0n4thMhjRALnmagHetYXnc.png\",srcSet:\"https://framerusercontent.com/images/lZk0n4thMhjRALnmagHetYXnc.png?scale-down-to=512 512w,https://framerusercontent.com/images/lZk0n4thMhjRALnmagHetYXnc.png 900w\"},className:\"framer-1seqy5o framer-91vg2o\",\"data-framer-name\":\"Logo Gwynedd\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"HW6isAeOo\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Saint Ignatius College Preparatory Logo\",fit:\"fit\",intrinsicHeight:110,intrinsicWidth:400,pixelHeight:110,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OmsHCaW1jcjYhcq791HUOEzcuQ.png\"},className:\"framer-jj5jj4 framer-91vg2o\",\"data-framer-name\":\"Logo SICP\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"Pbjw6Wko2\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Atlanta Jewish Academy logo\",fit:\"fit\",intrinsicHeight:278,intrinsicWidth:400,pixelHeight:278,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/j1KBtFWXMFIbufhFHs3dmEVs.png\"},className:\"framer-18lev9b framer-91vg2o\",\"data-framer-name\":\"Logo Atlanta Jewish Academy\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"r36K7hKWU\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"St. Joseph's Prep School Logo\",fit:\"fit\",intrinsicHeight:97,intrinsicWidth:400,pixelHeight:97,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IsHreLYCYPDf7Zw5uh8KGvk.png\"},className:\"framer-1hbv8s1 framer-91vg2o\",\"data-framer-name\":\"Logo St. Joseph's Prep\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"wpKT9__ZP\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Avenues S\\xe3o Paulo Logo\",fit:\"fit\",intrinsicHeight:75,intrinsicWidth:400,pixelHeight:75,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2wKush0hQ7jl18Ji7a27HBCdb9c.png\"},className:\"framer-18jvz1r framer-91vg2o\",\"data-framer-name\":\"Logo Avenues\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"eTcaGkp_X\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"The Lovett School Logo\",fit:\"fit\",intrinsicHeight:87,intrinsicWidth:400,pixelHeight:87,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uBkXiZc8gZb1sZ8LPOweTVwhylo.png\"},className:\"framer-1n022l6 framer-91vg2o\",\"data-framer-name\":\"Logo Lovett\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"AVQ5c9A6v\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Fenn School Logo\",fit:\"fit\",intrinsicHeight:129,intrinsicWidth:400,pixelHeight:129,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IGvY8mB7YpjLxnaQIw58Z3el7I.png\"},className:\"framer-1kqgrhj framer-91vg2o\",\"data-framer-name\":\"Logo Fenn\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"xS7ScvUq8\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"The Kinkaid School Logo\",fit:\"fit\",intrinsicHeight:89,intrinsicWidth:400,pixelHeight:89,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/3UKWZHmso3yuwtg1JdNsm5IdsKc.png\"},className:\"framer-17p2bos framer-91vg2o\",\"data-framer-name\":\"Logo Kinkaid\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"s3MnF9CbR\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Sacred Heart Schools Atherton Logo\",fit:\"fit\",intrinsicHeight:59,intrinsicWidth:400,pixelHeight:59,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/bPqj9BgaTFCTGZaDZgFKKko9Z8.png\"},className:\"framer-1rgt0y6 framer-91vg2o\",\"data-framer-name\":\"Logo SHS Atherton\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"aSOqlmG7_\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Tabor Academy Logo\",fit:\"fit\",intrinsicHeight:310,intrinsicWidth:400,pixelHeight:310,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/b2tJi6xzVieNaJMT4DsNpefy960.png\"},className:\"framer-vmif4n framer-91vg2o\",\"data-framer-name\":\"Logo Tabor\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"s7JfIIOuw\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Cardinal Gibbons High School Logo\",fit:\"fit\",intrinsicHeight:119,intrinsicWidth:400,pixelHeight:124,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/gh0VG2wWawFCs4xZnSLIX9fyM.png\"},className:\"framer-a9s7qd framer-91vg2o\",\"data-framer-name\":\"Logo CGHS\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"s_mexIuLp\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Lancaster Country Day School Logo\",fit:\"fit\",intrinsicHeight:119,intrinsicWidth:400,pixelHeight:119,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WiX9livl5NHOeG4IEefPRdlt47Q.png\"},className:\"framer-paslke framer-91vg2o\",\"data-framer-name\":\"Logo Lancaster Country\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"GLpjemCoX\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Swift School Logo\",fit:\"fit\",intrinsicHeight:157,intrinsicWidth:400,pixelHeight:157,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hHQZDjg9EiAuvKFs05Lee4i2W0.png\"},className:\"framer-1dv12cb framer-91vg2o\",\"data-framer-name\":\"Logo Swift School\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"eDncBPq4n\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Pennington School Logo\",fit:\"fit\",intrinsicHeight:360,intrinsicWidth:360,pixelHeight:360,pixelWidth:360,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/XVT2TbGQI34VtkeePBp3YmWOmgE.png\"},className:\"framer-1k1ug7d framer-91vg2o\",\"data-framer-name\":\"Logo Pennington\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"ntLxY70Mx\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Loganville Christian Academy Logo\",fit:\"fit\",intrinsicHeight:111,intrinsicWidth:400,pixelHeight:111,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yPXoCX9ZoJANEgGHCdH3TVrSiz0.png\"},className:\"framer-f16biu framer-91vg2o\",\"data-framer-name\":\"Logo Loganville Christian\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"S4xqm5uVL\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Birch Wathen Lenox Logo\",fit:\"fit\",intrinsicHeight:440,intrinsicWidth:400,pixelHeight:440,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/HEo1yUQaJtxo8p8kqc70A9YDF0.png\"},className:\"framer-1pcbhsg framer-91vg2o\",\"data-framer-name\":\"Logo Birch Wathen Lenox\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"FErxpEuMU\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Grandview Preparatory School Logo\",fit:\"fit\",intrinsicHeight:360,intrinsicWidth:884,pixelHeight:114,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/u1XtgbFQVBB3TDynTYnK4h4BBpg.png\"},className:\"framer-1eomq2r framer-91vg2o\",\"data-framer-name\":\"Logo Grandview\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"dRemO_aG2\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Schenck School Logo\",fit:\"fit\",intrinsicHeight:360,intrinsicWidth:884,pixelHeight:360,pixelWidth:884,positionX:\"center\",positionY:\"center\",sizes:\"102px\",src:\"https://framerusercontent.com/images/jyiqeo3FnZBmu2HfbFMzjolbjY.png\",srcSet:\"https://framerusercontent.com/images/jyiqeo3FnZBmu2HfbFMzjolbjY.png?scale-down-to=512 512w,https://framerusercontent.com/images/jyiqeo3FnZBmu2HfbFMzjolbjY.png 884w\"},className:\"framer-ivq4nd framer-91vg2o\",\"data-framer-name\":\"Logo Schenck\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"PAbhyGWmI\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Blessed Trinity Catholic High School Logo\",fit:\"fit\",intrinsicHeight:105,intrinsicWidth:400,pixelHeight:105,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Hog9rqRzg04XB1BPqSU5mea77Q.png\"},className:\"framer-gdsx95 framer-91vg2o\",\"data-framer-name\":\"Logo Blessed Trinity\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"dGUpotnzH\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Centreville Layton School Logo\",fit:\"fit\",intrinsicHeight:360,intrinsicWidth:361,pixelHeight:360,pixelWidth:361,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/605eJO2iyMSXEMTrnaz76cnUjA.png\"},className:\"framer-18xdymk framer-91vg2o\",\"data-framer-name\":\"Logo Centreville Layton\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"HrdiNZkdD\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"UK Ministry of Defense Logo\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:400,pixelHeight:124,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PSk8OOHnkrtHZip9Ex2QPEoWBg.png\"},className:\"framer-1th94dr framer-91vg2o\",\"data-framer-name\":\"Logo MOD\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"N2MfwVnHr\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"The Benjamin School Logo\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:400,pixelHeight:140,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4vSyggMlYJxuJVdQQJYmdEfdoU.png\"},className:\"framer-1kgyrhv framer-91vg2o\",\"data-framer-name\":\"Logo Benjamin\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"m3tbegqQn\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"NAVIS School Logo\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:400,pixelHeight:142,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0vUaWEb7xJDptuJAyaeqP6WAQ.png\"},className:\"framer-32ckqq framer-91vg2o\",\"data-framer-name\":\"Logo NAVIS\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"WUZB6WGUN\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Brookwood School Logo\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:400,pixelHeight:130,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/feR9TABl3LhtCfWgJFDU0PvweWk.png\"},className:\"framer-fr7q4c framer-91vg2o\",\"data-framer-name\":\"Logo Brookwood\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"l8wg6umoA\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Westside Neighborhood School Logo\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:400,pixelHeight:82,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ZDpd2i1rGqJNCjJdXyLY3SfGYXQ.png\"},className:\"framer-1mfn4yq framer-91vg2o\",\"data-framer-name\":\"Logo WNS\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"nkPlztSTz\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"American School in Japan Logo\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:400,pixelHeight:360,pixelWidth:1179,positionX:\"center\",positionY:\"center\",sizes:\"96px\",src:\"https://framerusercontent.com/images/Q4euMUsFGwI1T1sCzEBQU1Y1NVs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Q4euMUsFGwI1T1sCzEBQU1Y1NVs.png?scale-down-to=512 512w,https://framerusercontent.com/images/Q4euMUsFGwI1T1sCzEBQU1Y1NVs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q4euMUsFGwI1T1sCzEBQU1Y1NVs.png 1179w\"},className:\"framer-1xt3dvs framer-91vg2o\",\"data-framer-name\":\"Logo ASIJ\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"izIeUXvMo\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Taejon Christian International School logo\",fit:\"fit\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:360,pixelWidth:360,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EEVX2Ko6J3jFaKBSYwnaHlMQo.png\"},className:\"framer-1ka8b0i framer-91vg2o\",\"data-framer-name\":\"Logo TCIS\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"W_mlZYa16\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Ruamrudee International School logo\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:400,pixelHeight:360,pixelWidth:1030,positionX:\"center\",positionY:\"center\",sizes:\"119px\",src:\"https://framerusercontent.com/images/ipxcGz0QDrgU5VEorypxEjALwk8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ipxcGz0QDrgU5VEorypxEjALwk8.png?scale-down-to=512 512w,https://framerusercontent.com/images/ipxcGz0QDrgU5VEorypxEjALwk8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ipxcGz0QDrgU5VEorypxEjALwk8.png 1030w\"},className:\"framer-1te0nqf framer-91vg2o\",\"data-framer-name\":\"Logo RIS\"})})],speed:32,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19evw2h-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ujNqCDaC3\",scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZZrQIoph1:{gap:40}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:64,height:\"100%\",hoverFactor:1,id:\"ujNqCDaC3\",layoutId:\"ujNqCDaC3\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"Itmc09UtC\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"St. Stephen's and St. Agnes School Logo\",fit:\"fit\",intrinsicHeight:127,intrinsicWidth:400,pixelHeight:127,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ZyLFKbTz3zDxUykGHIGOiyeHlVI.png\"},className:\"framer-1u1yp4f framer-91vg2o\",\"data-framer-name\":\"Logo St. Stephens and St. Agnes\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"Mect6Kurn\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"St. Stephen's and St. Agnes School Logo\",fit:\"fit\",intrinsicHeight:360,intrinsicWidth:1809,pixelHeight:360,pixelWidth:1809,positionX:\"center\",positionY:\"center\",sizes:\"166px\",src:\"https://framerusercontent.com/images/EyqGbDRwQZvCozv7aW8vEUwxN4U.png\",srcSet:\"https://framerusercontent.com/images/EyqGbDRwQZvCozv7aW8vEUwxN4U.png?scale-down-to=512 512w,https://framerusercontent.com/images/EyqGbDRwQZvCozv7aW8vEUwxN4U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EyqGbDRwQZvCozv7aW8vEUwxN4U.png 1809w\"},className:\"framer-1ize9oq framer-91vg2o\",\"data-framer-name\":\"Logo Gilman\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"GzPQOcv0M\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"McDonogh School Logo\",fit:\"fit\",intrinsicHeight:180,intrinsicWidth:278,pixelHeight:180,pixelWidth:278,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/VYgZ74YoIgezg1Yzp6G47dePHE.png\"},className:\"framer-2hfhea framer-91vg2o\",\"data-framer-name\":\"Logo McDonogh\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"ee4UCGYHn\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Pine Crest School logo\",fit:\"fit\",intrinsicHeight:137,intrinsicWidth:400,pixelHeight:137,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vYDclzbccMyJrFVju5EeBY6kg.png\"},className:\"framer-ujb31y framer-91vg2o\",\"data-framer-name\":\"Logo Pine Crest\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"DAB1FyXmS\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Cary Academy Logo\",fit:\"fit\",intrinsicHeight:73,intrinsicWidth:400,pixelHeight:73,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/pzOTD4xRRb3c8WlLPYbraT3qoU.png\"},className:\"framer-1mpgxo2 framer-91vg2o\",\"data-framer-name\":\"Logo Cary\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"VGPB5zAgp\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Crystal Springs Uplands School Logo\",fit:\"fit\",intrinsicHeight:101,intrinsicWidth:400,pixelHeight:101,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/BfX1lSJjulcjE0QdtUAUjaqtwA.png\"},className:\"framer-g68sm1 framer-91vg2o\",\"data-framer-name\":\"Logo Crystal\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"hlZEkEmmy\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Sewickley Academy Logo\",fit:\"fit\",intrinsicHeight:76,intrinsicWidth:400,pixelHeight:76,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WaYvXikuN1JJa5gyrzdqX8zWbM.png\"},className:\"framer-1r6swml framer-91vg2o\",\"data-framer-name\":\"Logo Sewickley\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"RCaG6HjHC\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Durham Academy logo\",fit:\"fit\",intrinsicHeight:95,intrinsicWidth:400,pixelHeight:95,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/72ck7M1FJ1hWm53h2naJTgNA.png\"},className:\"framer-n9n3tb framer-91vg2o\",\"data-framer-name\":\"Logo Durham Academy\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"ju6DBL9BJ\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"St. Andrew's College Logo\",fit:\"fit\",intrinsicHeight:360,intrinsicWidth:1196,pixelHeight:360,pixelWidth:1196,positionX:\"center\",positionY:\"center\",sizes:\"140px\",src:\"https://framerusercontent.com/images/uq9AmVzifWrE0ZEFwvENJrGj4ww.png\",srcSet:\"https://framerusercontent.com/images/uq9AmVzifWrE0ZEFwvENJrGj4ww.png?scale-down-to=512 512w,https://framerusercontent.com/images/uq9AmVzifWrE0ZEFwvENJrGj4ww.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uq9AmVzifWrE0ZEFwvENJrGj4ww.png 1196w\"},className:\"framer-1eowsby framer-91vg2o\",\"data-framer-name\":\"Logo St. Andrew's College\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"Ptdgvlwe0\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"The Browning School Logo\",fit:\"fit\",intrinsicHeight:107,intrinsicWidth:400,pixelHeight:194,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YUU448N848ygN8wzOy2jniqcQ2w.png\"},className:\"framer-kork1o framer-91vg2o\",\"data-framer-name\":\"Logo Browning\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"kz2YUPena\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Sacred Heart Greenwich logo\",fit:\"fit\",intrinsicHeight:107,intrinsicWidth:400,pixelHeight:107,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xXhFyPwSjBcEvdZZbypm5pklNk.png\"},className:\"framer-etl9b8 framer-91vg2o\",\"data-framer-name\":\"Logo Sacred Heart\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"Icjc9DsFc\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Providence Day School logo\",fit:\"fit\",intrinsicHeight:360,intrinsicWidth:2089,pixelHeight:360,pixelWidth:2089,positionX:\"center\",positionY:\"center\",sizes:\"244px\",src:\"https://framerusercontent.com/images/gfE604CvozVkTE7YflHBI4YuKMc.png\",srcSet:\"https://framerusercontent.com/images/gfE604CvozVkTE7YflHBI4YuKMc.png?scale-down-to=512 512w,https://framerusercontent.com/images/gfE604CvozVkTE7YflHBI4YuKMc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gfE604CvozVkTE7YflHBI4YuKMc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gfE604CvozVkTE7YflHBI4YuKMc.png 2089w\"},className:\"framer-1so79ug framer-91vg2o\",\"data-framer-name\":\"Logo Providence Day\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"pOECc2XYl\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Marist School logo\",fit:\"fit\",intrinsicHeight:85,intrinsicWidth:400,pixelHeight:85,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/aUjc5yUKFovMs45mPxRMAjyYf4.png\"},className:\"framer-6epk2l framer-91vg2o\",\"data-framer-name\":\"Logo Marist\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"KMG6BX5Ut\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"The Meadowbrook School logo\",fit:\"fill\",intrinsicHeight:137,intrinsicWidth:400,pixelHeight:137,pixelWidth:400,src:\"https://framerusercontent.com/images/WvAsmeC7FZuGRh5nTa06aTvSo.png\"},className:\"framer-hycrcz framer-91vg2o\",\"data-framer-name\":\"Logo Meadowbrook\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"iFDt1CDsU\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Dwight-Engelwood School logo\",fit:\"fill\",intrinsicHeight:209,intrinsicWidth:400,pixelHeight:209,pixelWidth:400,src:\"https://framerusercontent.com/images/MqvA1G3TTwZ5Uy2M6QmNmCVkgus.png\"},className:\"framer-u7qzif framer-91vg2o\",\"data-framer-name\":\"Logo Dwight-Engelwood\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"KZuPYuJRd\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Canterbury School logo\",fit:\"fill\",intrinsicHeight:95,intrinsicWidth:400,pixelHeight:95,pixelWidth:400,src:\"https://framerusercontent.com/images/VOaQDE5LhwPiVqJIp38Cwvraww.png\"},className:\"framer-em73ts framer-91vg2o\",\"data-framer-name\":\"Logo Canturbury\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"ZyrMrHvaA\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"American International School Chennai Logo\",fit:\"fit\",intrinsicHeight:155,intrinsicWidth:400,pixelHeight:155,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/VvklVivxaqWd6uITpB4X19ca8Us.png\"},className:\"framer-1mkrvg6 framer-91vg2o\",\"data-framer-name\":\"Logo AISC\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"soLAOYDI3\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Trinity Valley School Chennai Logo\",fit:\"fit\",intrinsicHeight:360,intrinsicWidth:924,pixelHeight:360,pixelWidth:924,positionX:\"center\",positionY:\"center\",sizes:\"108px\",src:\"https://framerusercontent.com/images/Vxzv5wvZIsKJEZ7MrPYVGzwpUsw.png\",srcSet:\"https://framerusercontent.com/images/Vxzv5wvZIsKJEZ7MrPYVGzwpUsw.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vxzv5wvZIsKJEZ7MrPYVGzwpUsw.png 924w\"},className:\"framer-10awyh9 framer-91vg2o\",\"data-framer-name\":\"Logo Trinity Valley\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"g2Tlc1cbv\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Rabun Gap-Nacoochee School Logo\",fit:\"fit\",intrinsicHeight:360,intrinsicWidth:924,pixelHeight:115,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/G7z3AOLLsk0fBHu24SILNyYhsU.png\"},className:\"framer-uese6w framer-91vg2o\",\"data-framer-name\":\"Logo Rabun Gap\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"X2Qo51AC1\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"St. Mary's Episcopal Day School Logo\",fit:\"fit\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IixR5gbKNc3cA865svTsdAOFpI.png\"},className:\"framer-soaze8 framer-91vg2o\",\"data-framer-name\":\"Logo St. Mary\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"QdtQH_Xsm\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Sewickley Academy Logo\",fit:\"fit\",intrinsicHeight:131,intrinsicWidth:400,pixelHeight:131,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uAZemrtMf03McTclDfDh9sXaxg8.png\"},className:\"framer-d563k0 framer-91vg2o\",\"data-framer-name\":\"Logo Wesleyan\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"PDdvxSQee\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Sewickley Academy Logo\",fit:\"fit\",intrinsicHeight:360,intrinsicWidth:775,pixelHeight:360,pixelWidth:775,positionX:\"center\",positionY:\"center\",sizes:\"90px\",src:\"https://framerusercontent.com/images/5mGX1pGvIJpiQbPkqmqmJ8oFTIg.png\",srcSet:\"https://framerusercontent.com/images/5mGX1pGvIJpiQbPkqmqmJ8oFTIg.png?scale-down-to=512 512w,https://framerusercontent.com/images/5mGX1pGvIJpiQbPkqmqmJ8oFTIg.png 775w\"},className:\"framer-18cr4db framer-91vg2o\",\"data-framer-name\":\"Logo Merion Mercy\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"lBuE9_UoO\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Brophy College Preparatory Logo\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:400,pixelHeight:160,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/zvoQ1NKRitjwIBK3tZtvLRqr6A.png\"},className:\"framer-b3kf5d framer-91vg2o\",\"data-framer-name\":\"Logo Brophy\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"oweHIUdow\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Springside Chestnut Hill Academy Logo\",fit:\"fit\",intrinsicHeight:147,intrinsicWidth:400,pixelHeight:147,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/L2BGKK8MoDBQKdqG70FMhBaSPQ.png\"},className:\"framer-fgaj8u framer-91vg2o\",\"data-framer-name\":\"Logo SCH\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"A9nVPMOMz\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"St. Catherine's School Logo\",fit:\"fit\",intrinsicHeight:73,intrinsicWidth:400,pixelHeight:73,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/TVeoQrHnpT2BSIGwyhUeGizBy9E.png\"},className:\"framer-1w8qxe2 framer-91vg2o\",\"data-framer-name\":\"Logo St. Catherine's\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"LA0Q4Q25h\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Holy Innocents' Episcopal School Logo\",fit:\"fit\",intrinsicHeight:88,intrinsicWidth:400,pixelHeight:88,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/XgSnCdD13MrIsnH4UJ1yQDWLuMg.png\"},className:\"framer-sg54o9 framer-91vg2o\",\"data-framer-name\":\"Logo Holy Innocents'\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"k5mePY4oL\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Atlanta International School Logo\",fit:\"fit\",intrinsicHeight:324,intrinsicWidth:400,pixelHeight:324,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/VoCYIZY7mUtH3nWKWa12Nr1xsg.png\"},className:\"framer-pn9i1w framer-91vg2o\",\"data-framer-name\":\"Logo AIS\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"jVhKKwile\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Stevenson School logo\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:1437,pixelHeight:160,pixelWidth:1437,positionX:\"center\",positionY:\"center\",sizes:\"175px\",src:\"https://framerusercontent.com/images/JFFOL5jz3pboD0UdP8ypwE3lkY.png\",srcSet:\"https://framerusercontent.com/images/JFFOL5jz3pboD0UdP8ypwE3lkY.png?scale-down-to=512 512w,https://framerusercontent.com/images/JFFOL5jz3pboD0UdP8ypwE3lkY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JFFOL5jz3pboD0UdP8ypwE3lkY.png 1437w\"},className:\"framer-11rz8yr framer-91vg2o\",\"data-framer-name\":\"Logo Stevenson\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"n8Y6rexHC\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Fellowship Christian School logo\",fit:\"fit\",intrinsicHeight:105,intrinsicWidth:400,pixelHeight:105,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8a65BCGOGMJhilasiu7mgidLTWs.png\"},className:\"framer-19kok5y framer-91vg2o\",\"data-framer-name\":\"Logo Fellowship Christian\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"xd0bQuOZE\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Chapin School Princeton Logo\",fit:\"fit\",intrinsicHeight:145,intrinsicWidth:400,pixelHeight:145,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/rRhSZeavca6GeqrxsDin4TbsY74.png\"},className:\"framer-211d1h framer-91vg2o\",\"data-framer-name\":\"Logo Chapin School\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"jthg3EdLJ\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"The Fletcher Academy Logo\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:400,pixelHeight:50,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:\"272px\",src:\"https://framerusercontent.com/images/ULzMIiFLUy3RQ7Q4rkqwbbIyc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ULzMIiFLUy3RQ7Q4rkqwbbIyc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ULzMIiFLUy3RQ7Q4rkqwbbIyc.png 600w\"},className:\"framer-1mnyojz framer-91vg2o\",\"data-framer-name\":\"Logo Fletcher Academy\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"kyvX1TCur\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Landmark School Logo\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:400,pixelHeight:110,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WiL09Z0dAVShO5Zzz1clKFTgSGQ.png\"},className:\"framer-o8ygtj framer-91vg2o\",\"data-framer-name\":\"Logo Landmark\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"dSyPiyRHk\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"The Winsor School Logo\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:400,pixelHeight:360,pixelWidth:830,positionX:\"center\",positionY:\"center\",sizes:\"97px\",src:\"https://framerusercontent.com/images/6pR9JE4WOQdngBELXf09KQPw04c.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6pR9JE4WOQdngBELXf09KQPw04c.png?scale-down-to=512 512w,https://framerusercontent.com/images/6pR9JE4WOQdngBELXf09KQPw04c.png 830w\"},className:\"framer-1y0vrlw framer-91vg2o\",\"data-framer-name\":\"Logo Winsor\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"vHx19Skkp\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"School of the Holy Child Logo\",fit:\"fit\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qnVvSUBwl8r4efzyJhq3Q7ndsoo.png\"},className:\"framer-9jcujz framer-91vg2o\",\"data-framer-name\":\"Logo Holy Child\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"qqBOpXWe9\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"The Northwest School Logo\",fit:\"fit\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:360,pixelWidth:908,positionX:\"center\",positionY:\"center\",sizes:\"121px\",src:\"https://framerusercontent.com/images/s7bEvLPFUhXjWDhM4bHOQkPrY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/s7bEvLPFUhXjWDhM4bHOQkPrY.png?scale-down-to=512 512w,https://framerusercontent.com/images/s7bEvLPFUhXjWDhM4bHOQkPrY.png 908w\"},className:\"framer-17ldpmd framer-91vg2o\",\"data-framer-name\":\"Logo Northwest\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"KzkUrIvWk\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Western Academy of Beijing Logo\",fit:\"fit\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:360,pixelWidth:408,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/adtzZQigRGZyQTwH7pAHKUA8zc.png\"},className:\"framer-1gdv2tz framer-91vg2o\",\"data-framer-name\":\"Logo WA Beijing\"})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nOSEH_Aqo\",webPageId:\"XVWZCkKkn\"},motionChild:true,nodeId:\"MgvrO3WNq\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Xavier College Prep Logo\",fit:\"fit\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:360,pixelWidth:1248,positionX:\"center\",positionY:\"center\",sizes:\"167px\",src:\"https://framerusercontent.com/images/5sO5DGsMStONpdHkcrVcuEKgYA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5sO5DGsMStONpdHkcrVcuEKgYA.png?scale-down-to=512 512w,https://framerusercontent.com/images/5sO5DGsMStONpdHkcrVcuEKgYA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5sO5DGsMStONpdHkcrVcuEKgYA.png 1248w\"},className:\"framer-1pw6k0w framer-91vg2o\",\"data-framer-name\":\"Logo Xavier\"})})],speed:32,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pb76ba\",\"data-framer-name\":\"Subject use cases\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tiKaMPpAe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1su4pmu\",\"data-styles-preset\":\"iSrOYCLQl\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\"},children:\"Personalized learning that actually works, in every subject.\"})})},ZZrQIoph1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1su4pmu\",\"data-styles-preset\":\"iSrOYCLQl\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\"},children:\"Personalized learning that actually works, in every subject.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1su4pmu\",\"data-styles-preset\":\"iSrOYCLQl\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\"},children:[\"Personalized learning that actually works, \",/*#__PURE__*/_jsx(\"br\",{}),\"in every subject.\"]})}),className:\"framer-9n76cx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k4pd0r\",\"data-framer-name\":\"Subjects Section\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fkeevp-container hidden-17331hd hidden-52k8hk\",isModuleExternal:true,nodeId:\"JbQMQIx_F\",scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"JbQMQIx_F\",intervalControl:3,itemAmount:1,layoutId:\"JbQMQIx_F\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11vfsfj\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CDX4INzWr\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-14ceugx-container\",inComponentSlot:true,nodeId:\"l3LGYqQ7r\",rendersWithMotion:true,scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(Subject,{aFMn5WbEm:\"Problem solving practice with AI feedback.\",AH9mQoLCa:\"rgb(222, 87, 69)\",dhjHlo33y:\"Math\",height:\"100%\",id:\"l3LGYqQ7r\",layoutId:\"l3LGYqQ7r\",LyYPscGeG:\"pie-chart\",r55EN1JW4:\"rgba(222, 87, 69, 0.2)\",style:{width:\"100%\"},variant:\"Wu9oh2o8r\",width:\"100%\",ZAWZ_kHdV:resolvedLinks[0]})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1568,pixelWidth:982,positionX:\"left\",positionY:\"top\",sizes:\"400px\",src:\"https://framerusercontent.com/images/o3akh0ijQjgoYvP9dOn7EalTJU.png\",srcSet:\"https://framerusercontent.com/images/o3akh0ijQjgoYvP9dOn7EalTJU.png?scale-down-to=1024 641w,https://framerusercontent.com/images/o3akh0ijQjgoYvP9dOn7EalTJU.png 982w\"},className:\"framer-1190s3v\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tejlyb\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"AXoteBJIL\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-q5tk2l-container\",inComponentSlot:true,nodeId:\"RYxMielxv\",rendersWithMotion:true,scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(Subject,{aFMn5WbEm:\"AI writing feedback based on custom rubrics.\",AH9mQoLCa:\"rgb(242, 165, 103)\",dhjHlo33y:\"English\",height:\"100%\",id:\"RYxMielxv\",layoutId:\"RYxMielxv\",LyYPscGeG:\"book-open\",r55EN1JW4:\"rgba(242, 165, 103, 0.2)\",style:{width:\"100%\"},variant:\"Wu9oh2o8r\",width:\"100%\",ZAWZ_kHdV:resolvedLinks1[0]})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1261,pixelWidth:982,positionX:\"left\",positionY:\"top\",sizes:\"400px\",src:\"https://framerusercontent.com/images/Km3GUabXT38kRrKOv2GKdgv6w.png\",srcSet:\"https://framerusercontent.com/images/Km3GUabXT38kRrKOv2GKdgv6w.png?scale-down-to=1024 797w,https://framerusercontent.com/images/Km3GUabXT38kRrKOv2GKdgv6w.png 982w\"},className:\"framer-wdg50q\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wcu5av\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"xsKD2Bxvk\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-je7g7g-container\",inComponentSlot:true,nodeId:\"c8SzLCVoW\",rendersWithMotion:true,scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(Subject,{aFMn5WbEm:\"Role-play or debate with AI historical figures.\",AH9mQoLCa:\"rgb(221, 188, 109)\",dhjHlo33y:\"Social Studies\",height:\"100%\",id:\"c8SzLCVoW\",layoutId:\"c8SzLCVoW\",LyYPscGeG:\"map\",r55EN1JW4:\"rgba(221, 188, 109, 0.2)\",style:{width:\"100%\"},variant:\"Wu9oh2o8r\",width:\"100%\",ZAWZ_kHdV:resolvedLinks2[0]})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1121,pixelWidth:982,positionX:\"left\",positionY:\"top\",sizes:\"400px\",src:\"https://framerusercontent.com/images/sCuFdBEmbr4FyzgPmJtv97r6TaU.png\",srcSet:\"https://framerusercontent.com/images/sCuFdBEmbr4FyzgPmJtv97r6TaU.png?scale-down-to=1024 897w,https://framerusercontent.com/images/sCuFdBEmbr4FyzgPmJtv97r6TaU.png 982w\"},className:\"framer-f7vn0g\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1up1wb8\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"agkFIS5KJ\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ph3ha0-container\",inComponentSlot:true,nodeId:\"is6Ru7lDm\",rendersWithMotion:true,scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(Subject,{aFMn5WbEm:\"AI research assistance and data visualization.\",AH9mQoLCa:\"rgb(170, 201, 119)\",dhjHlo33y:\"Science\",height:\"100%\",id:\"is6Ru7lDm\",layoutId:\"is6Ru7lDm\",LyYPscGeG:\"filter\",r55EN1JW4:\"rgba(170, 201, 119, 0.2)\",style:{width:\"100%\"},variant:\"Wu9oh2o8r\",width:\"100%\",ZAWZ_kHdV:resolvedLinks3[0]})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1554,pixelWidth:982,positionX:\"left\",positionY:\"top\",sizes:\"400px\",src:\"https://framerusercontent.com/images/II78LAVQs0DKpNNCtmDQl4SEk.png\",srcSet:\"https://framerusercontent.com/images/II78LAVQs0DKpNNCtmDQl4SEk.png?scale-down-to=1024 647w,https://framerusercontent.com/images/II78LAVQs0DKpNNCtmDQl4SEk.png 982w\"},className:\"framer-ps84i4\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kptuc3\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tOEoXbRzJ\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ryw07r-container\",inComponentSlot:true,nodeId:\"JM2zPbC0c\",rendersWithMotion:true,scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(Subject,{aFMn5WbEm:\"AI debugging help and practice problems in any language.\",AH9mQoLCa:\"rgb(138, 182, 195)\",dhjHlo33y:\"Computer Science\",height:\"100%\",id:\"JM2zPbC0c\",layoutId:\"JM2zPbC0c\",LyYPscGeG:\"code\",r55EN1JW4:\"rgba(138, 182, 195, 0.2)\",style:{width:\"100%\"},variant:\"Wu9oh2o8r\",width:\"100%\",ZAWZ_kHdV:resolvedLinks4[0]})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1458,pixelWidth:982,positionX:\"left\",positionY:\"top\",sizes:\"400px\",src:\"https://framerusercontent.com/images/5DAevEOWQdLe7uN2f8oiRW7qsAg.png\",srcSet:\"https://framerusercontent.com/images/5DAevEOWQdLe7uN2f8oiRW7qsAg.png?scale-down-to=1024 689w,https://framerusercontent.com/images/5DAevEOWQdLe7uN2f8oiRW7qsAg.png 982w\"},className:\"framer-gn00if\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14b25gp\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JwM9akcuQ\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hhrw4i-container\",inComponentSlot:true,nodeId:\"qIv0S5Ucv\",rendersWithMotion:true,scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(Subject,{aFMn5WbEm:\"Speak with AI in 50+ languages at any ACTFL level.\",AH9mQoLCa:\"rgb(174, 129, 191)\",dhjHlo33y:\"World Language\",height:\"100%\",id:\"qIv0S5Ucv\",layoutId:\"qIv0S5Ucv\",LyYPscGeG:\"globe\",r55EN1JW4:\"rgba(174, 129, 191, 0.2)\",style:{width:\"100%\"},variant:\"Wu9oh2o8r\",width:\"100%\",ZAWZ_kHdV:resolvedLinks5[0]})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1091,pixelWidth:982,positionX:\"left\",positionY:\"top\",sizes:\"400px\",src:\"https://framerusercontent.com/images/SrpVbtqtB1R5YoTpaVXrWcLJs.png\",srcSet:\"https://framerusercontent.com/images/SrpVbtqtB1R5YoTpaVXrWcLJs.png?scale-down-to=1024 921w,https://framerusercontent.com/images/SrpVbtqtB1R5YoTpaVXrWcLJs.png 982w\"},className:\"framer-12r461\"})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tiKaMPpAe:{width:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:475.5,width:`min(max(${componentViewport?.width||\"100vw\"} - 200px, 1px), 1000px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-233f3f-container hidden-1ydb4aw\",nodeId:\"IGy0DjXAm\",rendersWithMotion:true,scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(SubjectExampleScrollerWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"Y2cUclY6b\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"kQr1sMlsb\",height:\"100%\",id:\"IGy0DjXAm\",layoutId:\"IGy0DjXAm\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},uHdKBLTd7:\"row\",variant:\"kQr1sMlsb\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ruri2d\",\"data-framer-name\":\"Teacher Testimonials Wide\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tiKaMPpAe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1su4pmu\",\"data-styles-preset\":\"iSrOYCLQl\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\"},children:\"Flint lets teachers use AI to personalize learning.\"})})},ZZrQIoph1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1su4pmu\",\"data-styles-preset\":\"iSrOYCLQl\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\"},children:\"Flint lets teachers use AI to personalize learning.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1su4pmu\",\"data-styles-preset\":\"iSrOYCLQl\",style:{\"--framer-text-color\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\"},children:\"Flint lets teachers use AI to personalize learning.\"})}),className:\"framer-1co6r9z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZZrQIoph1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\"},children:\"Design AI to tutor or assess students in 1-1 conversations, based on custom learning objectives and materials.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\"},children:\"Design AI to tutor or assess students in 1-1 conversations, based on custom learning objectives and materials.\"})}),className:\"framer-1jtksd2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9wede7-container hidden-52k8hk hidden-1ydb4aw\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Jwzu0ue4T\",scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"teacher testimonials\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:10},gap:20,height:\"100%\",id:\"Jwzu0ue4T\",layoutId:\"Jwzu0ue4T\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1709owe\",\"data-border\":true,\"data-framer-name\":\"Teacher Testimonial 1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:'\"I have students do written or spoken conversations in French with the AI. Flint lets advanced students go further while giving struggling students extra help \u2014 all based on the objectives I provide. It\u2019s like having a TA!\"'})}),className:\"framer-xxqww\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{hash:\":cGivrwzrn\",webPageId:\"wmqtGNYNK\"},motionChild:true,nodeId:\"l7mlXz2jA\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-ybj84u framer-91vg2o\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Audrey Lamou headshot\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/XsAvcr84hBOIiwiaJp2A5V6Vyt8.png\"},className:\"framer-15lhrrd\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mh7g7u\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Audrey Lamou\"})}),className:\"framer-1gfaooc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1otuiml\",\"data-styles-preset\":\"Pe7b2P0Fh\",children:\"French teacher at St. George's\"})}),className:\"framer-sew2mj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oce3n0\",\"data-border\":true,\"data-framer-name\":\"Teacher Testimonial 2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"\\\"The engagement with students is exceptionally high, in large part due to the pacing. I've been using Flint for coding assignments, and it automatically scales the difficulty\\xa0according to each student's skill level.\\\"\"})}),className:\"framer-1o083pz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{hash:\":iR8wcHrA5\",webPageId:\"wmqtGNYNK\"},motionChild:true,nodeId:\"Oe7w9OQAg\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-h9bree framer-91vg2o\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Jake Kazlow headshot\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/HS9OAJp86lDM2j0jmG5nwDvktSY.png\"},className:\"framer-1bvwk3l\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vh4h5f\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Jake Kazlow\"})}),className:\"framer-14ww479\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1otuiml\",\"data-styles-preset\":\"Pe7b2P0Fh\",children:\"Computer Science teacher at Westminster\"})}),className:\"framer-1apjcdz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k9jdv4\",\"data-border\":true,\"data-framer-name\":\"Teacher Testimonial 3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:'\"I\u2019ve been using Flint\u2019s AI to run review sessions, and the kids love it! When students struggle, Flint gently puts them back on track. I could do that myself, but not at 9pm at night when students are reviewing for a quiz.\"'})}),className:\"framer-skvkph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{hash:\":rxrGShwzn\",webPageId:\"wmqtGNYNK\"},motionChild:true,nodeId:\"upDVXYsT5\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-zopyr2 framer-91vg2o\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"William Heyler headshot\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/LhKZ97PrlCffDkfd1SiIOZlZJw.png\"},className:\"framer-33bnt9\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wm12ns\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"William Heyler\"})}),className:\"framer-nyoq7z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1otuiml\",\"data-styles-preset\":\"Pe7b2P0Fh\",children:\"History teacher at \u2018Iolani\"})}),className:\"framer-10hnalm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qj1w51\",\"data-border\":true,\"data-framer-name\":\"Teacher Testimonial 4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:'\"The students loved showing the AI their narrative writing. I have never seen them so engaged!\\xa0I had initially put a 30 minute time-limit, but they begged me to extend it so that they could keep on revising their work.\"'})}),className:\"framer-17djlf1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{hash:\":Xaf6DcDMb\",webPageId:\"wmqtGNYNK\"},motionChild:true,nodeId:\"bD9qBHi78\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1u7xhyv framer-91vg2o\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Keri Clifford headshot\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/Wf9sFr9bVtU1BWT592Pnl3Oko.png\"},className:\"framer-u89of8\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iyinkf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Keri Clifford\"})}),className:\"framer-yebet3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1otuiml\",\"data-styles-preset\":\"Pe7b2P0Fh\",children:\"Third grade teacher at Harker\"})}),className:\"framer-salklq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15dvyfj\",\"data-border\":true,\"data-framer-name\":\"Teacher Testimonial 5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:'\"Flint lets me see what the kids are thinking through their interactions with the AI, and they thoroughly enjoy it! I had several parents mention to me that their kids went home and talked about the \"cool assignment\".\"'})}),className:\"framer-ab3bhq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{hash:\":pO7fB9NhV\",webPageId:\"wmqtGNYNK\"},motionChild:true,nodeId:\"kJVbtzNLE\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1j8sedg framer-91vg2o\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Zach Richards headshot\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/e1dh2jGDmNaLMRqJkWRbkXjESk.png\"},className:\"framer-12y7ia2\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o9jcqs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Zach Richards\"})}),className:\"framer-45hp9t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1otuiml\",\"data-styles-preset\":\"Pe7b2P0Fh\",children:\"Ethics teacher at The Episcopal Academy\"})}),className:\"framer-fb0c9f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wvjtwc\",\"data-border\":true,\"data-framer-name\":\"Teacher Testimonial 6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"\\\"After a recent essay, one student said the essay drafting tool was like having me there throughout the writing process. Flint's platform functions as an assistant for, rather than a replacement of, students' writing.\\\"\"})}),className:\"framer-pxlpqb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{hash:\":Xaf6DcDMb\",webPageId:\"wmqtGNYNK\"},motionChild:true,nodeId:\"zy66ADvvu\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-bqpltb framer-91vg2o\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Stephen Addcox headshot\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/4dW6gHE1CabtHd73rdQnKcnKn9A.png\"},className:\"framer-kd6yab\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cg5v44\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Stephen Addcox\"})}),className:\"framer-iefs32\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1otuiml\",\"data-styles-preset\":\"Pe7b2P0Fh\",children:\"English Teacher at Westminster\"})}),className:\"framer-1brvmtf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ph5tom\",\"data-border\":true,\"data-framer-name\":\"Teacher Testimonial 7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:'\"Flint is a revolutionary product for language learning! I tried the chat in spoken Spanish and the bot was able to roleplay and understand everything. It\u2019s amazing how well it can keep asking deeper and deeper questions.\"'})}),className:\"framer-nf9e1j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{hash:\":D9ChfNJID\",webPageId:\"wmqtGNYNK\"},motionChild:true,nodeId:\"xYX3IhDg8\",openInNewTab:false,scopeId:\"XVWZCkKkn\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1oqb6av framer-91vg2o\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\" Sebastian Bartis headshot\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/rwJh1VtNiywyL6uI0SxJEh5ssE.png\"},className:\"framer-1eov6zk\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fyv89l\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Sebastian Bartis\"})}),className:\"framer-q801bu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1otuiml\",\"data-styles-preset\":\"Pe7b2P0Fh\",children:\"Languages\\xa0Dept. Chair at\\xa0St. Stephen's & St. Agnes\"})}),className:\"framer-fehycd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1960,pixelHeight:1e3,pixelWidth:1960,sizes:\"490px\",src:\"https://framerusercontent.com/images/ZTbipb59eI6eI5Kwo09kispQiXQ.png\",srcSet:\"https://framerusercontent.com/images/ZTbipb59eI6eI5Kwo09kispQiXQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZTbipb59eI6eI5Kwo09kispQiXQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZTbipb59eI6eI5Kwo09kispQiXQ.png 1960w\"},className:\"framer-8egnjt\",\"data-border\":true,\"data-framer-name\":\"Testimonials page\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Curious what even more teachers think?\"})}),className:\"framer-1q4ymtc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"reNlb2Wkc\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17eo93k-container\",inComponentSlot:true,nodeId:\"uHUxy6YY1\",rendersWithMotion:true,scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(UseCasesButton,{height:\"100%\",id:\"uHUxy6YY1\",IwD6hBfTr:resolvedLinks6[0],layoutId:\"uHUxy6YY1\",nQwc08z0_:\"See testimonials ->\",style:{height:\"100%\"},width:\"100%\"})})})})]})],snapObject:{fluid:false,snap:true,snapEdge:\"start\"},style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uk3dn2-container hidden-17331hd\",\"data-framer-name\":\"Carousel Narrow\",isAuthoredByUser:true,isModuleExternal:true,name:\"Carousel Narrow\",nodeId:\"j5F4PI4qa\",scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:10},gap:10,height:\"100%\",id:\"j5F4PI4qa\",layoutId:\"j5F4PI4qa\",name:\"Carousel Narrow\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-stttmo\",\"data-border\":true,\"data-framer-name\":\"Teacher Testimonial 1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:'\"I have students do written or spoken conversations in French with the AI. Flint lets advanced students go further while giving struggling students extra help \u2014 all based on the objectives I provide. It\u2019s like having a TA!\"'})}),className:\"framer-lw5f83\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{hash:\":cGivrwzrn\",webPageId:\"wmqtGNYNK\"},motionChild:true,nodeId:\"d7NU7zb3W\",openInNewTab:false,scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-re8o6 framer-91vg2o\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Audrey Lamou headshot\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/twF2aQ17ShFNM3DjD8RDhXmskg.png\"},className:\"framer-nimhbk\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-twh2od\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Audrey Lamou\"})}),className:\"framer-1q0nz92\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1otuiml\",\"data-styles-preset\":\"Pe7b2P0Fh\",children:\"French teacher at St. George's\"})}),className:\"framer-22z9ld\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q4syd1\",\"data-border\":true,\"data-framer-name\":\"Teacher Testimonial 2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"\\\"The engagement with students is exceptionally high. I've been using Flint for coding assignments, and I can rotate as a facilitator and Flint automatically scales the difficulty\\xa0according to each student's skill level.\\\"\"})}),className:\"framer-mixk2x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{hash:\":iR8wcHrA5\",webPageId:\"wmqtGNYNK\"},motionChild:true,nodeId:\"o7VvpfbYx\",openInNewTab:false,scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-131nxyq framer-91vg2o\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Jake Kazlow headshot\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/LdJcAmSIdaiBEyxuVQG2k019vM.png\"},className:\"framer-1xzg6kp\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18iingt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Jake Kazlow\"})}),className:\"framer-nauy2z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1otuiml\",\"data-styles-preset\":\"Pe7b2P0Fh\",children:\"Computer Science teacher at Westminster\"})}),className:\"framer-1wzct8b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w7fgeo\",\"data-border\":true,\"data-framer-name\":\"Teacher Testimonial 3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:'\"I\u2019ve been using Flint\u2019s AI to run review sessions, and the kids love it! When students struggle, Flint gently puts them back on track. I could do that myself, but not at 9pm at night when students are reviewing for a quiz.\"'})}),className:\"framer-n2drc4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{hash:\":rxrGShwzn\",webPageId:\"wmqtGNYNK\"},motionChild:true,nodeId:\"umlj5i0Ad\",openInNewTab:false,scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-m5xly6 framer-91vg2o\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"William Heyler headshot\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/UDnzrpWhvnJllzOGkbGRbH3yzk.png\"},className:\"framer-137elq4\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t8g6pj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"William Heyler\"})}),className:\"framer-1gehxjv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1otuiml\",\"data-styles-preset\":\"Pe7b2P0Fh\",children:\"History teacher at \u2018Iolani\"})}),className:\"framer-13g3zm9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10jqdch\",\"data-border\":true,\"data-framer-name\":\"Teacher Testimonial 4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:'\"The students loved showing the AI their narrative writing. I have never seen them so engaged!\\xa0I had initially put a 30 minute time-limit, but they begged me to extend it so that they could keep on revising their work.\"'})}),className:\"framer-1g7aht4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{hash:\":Xaf6DcDMb\",webPageId:\"wmqtGNYNK\"},motionChild:true,nodeId:\"ovRHhXG7v\",openInNewTab:false,scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1gvvuon framer-91vg2o\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Keri Clifford headshot\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/lL28igszF3b42dv7rhnaZk0Fpw.png\"},className:\"framer-amdbki\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4wse8v\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Keri Clifford\"})}),className:\"framer-1n70489\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1otuiml\",\"data-styles-preset\":\"Pe7b2P0Fh\",children:\"Third grade teacher at Harker\"})}),className:\"framer-zxx5or\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k0029v\",\"data-border\":true,\"data-framer-name\":\"Teacher Testimonial 5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:'\"Flint lets me see what the kids are thinking through their interactions with the AI, and they thoroughly enjoy it! I had several parents mention to me that their kids went home and talked about the \"cool assignment\".\"'})}),className:\"framer-egjedc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{hash:\":pO7fB9NhV\",webPageId:\"wmqtGNYNK\"},motionChild:true,nodeId:\"wqEiOtXMf\",openInNewTab:false,scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-3d3fsm framer-91vg2o\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Zach Richards headshot\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/e5n0uODwm8dijO7Z81s29pdxt5s.png\"},className:\"framer-6cbmjn\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cqvsht\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Zach Richards\"})}),className:\"framer-o65glk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1otuiml\",\"data-styles-preset\":\"Pe7b2P0Fh\",children:\"Ethics Teacher at The Episcopal Academy\"})}),className:\"framer-ej90u1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nfxgf\",\"data-border\":true,\"data-framer-name\":\"Teacher Testimonial 6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"\\\"After a recent essay, one student said the essay drafting tool was like having me there throughout the writing process. Flint's platform functions as an assistant for, rather than a replacement of, students' writing.\\\"\"})}),className:\"framer-1yckx8w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{hash:\":Xaf6DcDMb\",webPageId:\"wmqtGNYNK\"},motionChild:true,nodeId:\"gtSPsBC9D\",openInNewTab:false,scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-19rpz6y framer-91vg2o\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Stephen Addcox headshot\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/0OOLatVzBVyIl8hn8yOMBe8lDA.png\"},className:\"framer-1jrwsrf\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pktwxe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Stephen Addcox\"})}),className:\"framer-uf423h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1otuiml\",\"data-styles-preset\":\"Pe7b2P0Fh\",children:\"English Teacher at Westminster\"})}),className:\"framer-1o2e2kd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iv5rdx\",\"data-border\":true,\"data-framer-name\":\"Teacher Testimonial 7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:'\"Flint is a revolutionary product for language learning! I tried the chat in spoken Spanish and the bot was able to roleplay and understand everything. It\u2019s amazing how well it can keep asking deeper and deeper questions.\"'})}),className:\"framer-1puyiet\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{hash:\":D9ChfNJID\",webPageId:\"wmqtGNYNK\"},motionChild:true,nodeId:\"QWhBZMSfU\",openInNewTab:false,scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1pjxku5 framer-91vg2o\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\" Sebastian Bartis headshot\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/rwJh1VtNiywyL6uI0SxJEh5ssE.png\"},className:\"framer-10w3p40\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uy2rvr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Sebastian Bartis\"})}),className:\"framer-wro2ho\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1otuiml\",\"data-styles-preset\":\"Pe7b2P0Fh\",children:\"Languages\\xa0Dept. Chair at\\xa0St. Stephen's & St. Agnes\"})}),className:\"framer-147s6p9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oy22mx\",\"data-border\":true,\"data-framer-name\":\"Teacher Testimonial 8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:'\"Flint allows my students to ask questions about molecules they did not understand or pathways that were unfamiliar. What was once a frustrating experience has become student-driven content formation.\"'})}),className:\"framer-1honqn3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{hash:\":D9ChfNJID\",webPageId:\"wmqtGNYNK\"},motionChild:true,nodeId:\"nqRp8jV7_\",openInNewTab:false,scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-7xz55c framer-91vg2o\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Cheryl Cossel headshot\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/AkCiN7Wgc9hSBFnUF5tOI7TGkk.png\"},className:\"framer-1fo0nne\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ydc3mz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Cheryl Cossel\"})}),className:\"framer-z6xq8y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1otuiml\",\"data-styles-preset\":\"Pe7b2P0Fh\",children:\"Biology teacher at The Episcopal Academy\"})}),className:\"framer-xtrk4l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ihm88i\",\"data-border\":true,\"data-framer-name\":\"Teacher Testimonial 9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"\\\"Flint's impact doesn't stop at teaching. It has become a game-changing personal assistant for me. Whether it's brainstorming ideas, assisting with tasks, or debugging tech issues, Flint is there to help.\\\"\"})}),className:\"framer-axi62y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{hash:\":iR8wcHrA5\",webPageId:\"wmqtGNYNK\"},motionChild:true,nodeId:\"IP_B8eXqh\",openInNewTab:false,scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-t2d4c7 framer-91vg2o\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Matthew Davis headshot\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/jMGS5sAxd348LDdUoNNEivHIAA.png\"},className:\"framer-18j1gk\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hb7fj7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Matthew Davis\"})}),className:\"framer-wjx8u6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1otuiml\",\"data-styles-preset\":\"Pe7b2P0Fh\",children:\"Computer Science teacher at The Episcopal Academy\"})}),className:\"framer-14elv9v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1320,intrinsicWidth:1280,pixelHeight:1320,pixelWidth:1280,sizes:\"320px\",src:\"https://framerusercontent.com/images/MdX4KfkDjXg4EJt2ysx4JU8hhI.png\",srcSet:\"https://framerusercontent.com/images/MdX4KfkDjXg4EJt2ysx4JU8hhI.png?scale-down-to=1024 992w,https://framerusercontent.com/images/MdX4KfkDjXg4EJt2ysx4JU8hhI.png 1280w\"},className:\"framer-7zjp3c\",\"data-border\":true,\"data-framer-name\":\"Use Cases Page\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h2n9wx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Curious what even more teachers think?\"})}),className:\"framer-1q8lcxu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"reNlb2Wkc\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iaazn4-container\",inComponentSlot:true,nodeId:\"neMQQ9p5k\",rendersWithMotion:true,scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(UseCasesButton,{height:\"100%\",id:\"neMQQ9p5k\",IwD6hBfTr:resolvedLinks7[0],layoutId:\"neMQQ9p5k\",nQwc08z0_:\"See testimonials ->\",style:{height:\"100%\"},width:\"100%\"})})})})]})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-73b5dj\",\"data-framer-name\":\"Features Large\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qm2nw2\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ibcle0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t7k6ni\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZZrQIoph1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\"},children:\"Start with a learning objective.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\"},children:\"Start with a learning objective.\"})}),className:\"framer-5dufh3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-autkzn\",\"data-framer-name\":\"Bullets\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Specify context so the AI will share only what you want.\"})})})}),className:\"framer-sd5o7r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Upload additional reference material.\"})})})}),className:\"framer-1hi1qhq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Pick from creative AI-generated assignment types.\"})})})}),className:\"framer-124hlyr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tnsdjq\",\"data-framer-name\":\"BG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tiKaMPpAe:{background:{alt:\"Learning objective with AI-generated assignment ideas for an interview, writing collaboration, and conversation roleplay.\",fit:\"fill\",intrinsicHeight:961,intrinsicWidth:1500,pixelHeight:961,pixelWidth:1500,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 580px), 1px)`,src:\"https://framerusercontent.com/images/oG4S5HpQ0PlnKVekFmR8hMZiZzw.png\",srcSet:\"https://framerusercontent.com/images/oG4S5HpQ0PlnKVekFmR8hMZiZzw.png?scale-down-to=512 512w,https://framerusercontent.com/images/oG4S5HpQ0PlnKVekFmR8hMZiZzw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oG4S5HpQ0PlnKVekFmR8hMZiZzw.png 1500w\"}},ZZrQIoph1:{background:{alt:\"Learning objective with AI-generated assignment ideas for an interview, writing collaboration, and conversation roleplay.\",fit:\"fit\",intrinsicHeight:961,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1953.4+60+0+0+0+0+0+0),pixelHeight:961,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 600px), 1px), 350px)`,src:\"https://framerusercontent.com/images/oG4S5HpQ0PlnKVekFmR8hMZiZzw.png\",srcSet:\"https://framerusercontent.com/images/oG4S5HpQ0PlnKVekFmR8hMZiZzw.png?scale-down-to=512 512w,https://framerusercontent.com/images/oG4S5HpQ0PlnKVekFmR8hMZiZzw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oG4S5HpQ0PlnKVekFmR8hMZiZzw.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Learning objective with AI-generated assignment ideas for an interview, writing collaboration, and conversation roleplay.\",fit:\"fill\",intrinsicHeight:961,intrinsicWidth:1500,pixelHeight:961,pixelWidth:1500,sizes:\"500px\",src:\"https://framerusercontent.com/images/oG4S5HpQ0PlnKVekFmR8hMZiZzw.png\",srcSet:\"https://framerusercontent.com/images/oG4S5HpQ0PlnKVekFmR8hMZiZzw.png?scale-down-to=512 512w,https://framerusercontent.com/images/oG4S5HpQ0PlnKVekFmR8hMZiZzw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oG4S5HpQ0PlnKVekFmR8hMZiZzw.png 1500w\"},className:\"framer-wv420\",\"data-framer-name\":\"image\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6yd7vp\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-iczvcm\",\"data-framer-name\":\"BG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tiKaMPpAe:{background:{alt:\"Assignment details showing how the teacher can specify and control the AI role, rules, and grading rubric.\",fit:\"fit\",intrinsicHeight:961,intrinsicWidth:1500,pixelHeight:961,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 580px), 1px)`,src:\"https://framerusercontent.com/images/lU5GoqCuzY5gFWrc89QQoG4wDg.png\",srcSet:\"https://framerusercontent.com/images/lU5GoqCuzY5gFWrc89QQoG4wDg.png?scale-down-to=512 512w,https://framerusercontent.com/images/lU5GoqCuzY5gFWrc89QQoG4wDg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lU5GoqCuzY5gFWrc89QQoG4wDg.png 1500w\"}},ZZrQIoph1:{background:{alt:\"Assignment details showing how the teacher can specify and control the AI role, rules, and grading rubric.\",fit:\"fit\",intrinsicHeight:961,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1953.4+60+0+0+801.6+0+0+0),pixelHeight:961,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 600px), 1px), 350px)`,src:\"https://framerusercontent.com/images/lU5GoqCuzY5gFWrc89QQoG4wDg.png\",srcSet:\"https://framerusercontent.com/images/lU5GoqCuzY5gFWrc89QQoG4wDg.png?scale-down-to=512 512w,https://framerusercontent.com/images/lU5GoqCuzY5gFWrc89QQoG4wDg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lU5GoqCuzY5gFWrc89QQoG4wDg.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Assignment details showing how the teacher can specify and control the AI role, rules, and grading rubric.\",fit:\"fill\",intrinsicHeight:961,intrinsicWidth:1500,pixelHeight:961,pixelWidth:1500,sizes:\"500px\",src:\"https://framerusercontent.com/images/lU5GoqCuzY5gFWrc89QQoG4wDg.png\",srcSet:\"https://framerusercontent.com/images/lU5GoqCuzY5gFWrc89QQoG4wDg.png?scale-down-to=512 512w,https://framerusercontent.com/images/lU5GoqCuzY5gFWrc89QQoG4wDg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lU5GoqCuzY5gFWrc89QQoG4wDg.png 1500w\"},className:\"framer-d9truq\",\"data-framer-name\":\"image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4ou1o1\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\"},children:\"Design an AI for your students to talk to.\"})}),className:\"framer-1ofrbwv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dwz730\",\"data-framer-name\":\"Bullets\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Create rules for the AI to follow. \"})})})}),className:\"framer-123vw7e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Choose from 50+ languages for the AI to communicate in.\"})})})}),className:\"framer-18kkoyd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Set the reading level and grading criteria.\"})})})}),className:\"framer-ckqyue\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u4oag1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yuc09d\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\"},children:\"Give students personalized help.\"})}),className:\"framer-17jyzq6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18pzmg1\",\"data-framer-name\":\"Bullets\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"The AI will adjust to each student\u2019s level and help when they get stuck, without giving away the answer.\"})})})}),className:\"framer-ji2ys4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Watch student conversations in real time.\"})})})}),className:\"framer-1qfzoq0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17lunbo\",\"data-framer-name\":\"BG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tiKaMPpAe:{background:{alt:\"Example chat where student tries to get AI to do work for them but AI stresses importance of writing their own assignment.\",fit:\"fill\",intrinsicHeight:961,intrinsicWidth:1500,pixelHeight:961,pixelWidth:1500,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 580px), 1px)`,src:\"https://framerusercontent.com/images/WehFH9dVcNu5EKCPZ8Njc92BRMQ.png\",srcSet:\"https://framerusercontent.com/images/WehFH9dVcNu5EKCPZ8Njc92BRMQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/WehFH9dVcNu5EKCPZ8Njc92BRMQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WehFH9dVcNu5EKCPZ8Njc92BRMQ.png 1500w\"}},ZZrQIoph1:{background:{alt:\"Example chat where student tries to get AI to do work for them but AI stresses importance of writing their own assignment.\",fit:\"fit\",intrinsicHeight:961,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1953.4+60+0+0+1603.2+0+0+0),pixelHeight:961,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 600px), 1px), 350px)`,src:\"https://framerusercontent.com/images/WehFH9dVcNu5EKCPZ8Njc92BRMQ.png\",srcSet:\"https://framerusercontent.com/images/WehFH9dVcNu5EKCPZ8Njc92BRMQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/WehFH9dVcNu5EKCPZ8Njc92BRMQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WehFH9dVcNu5EKCPZ8Njc92BRMQ.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Example chat where student tries to get AI to do work for them but AI stresses importance of writing their own assignment.\",fit:\"fill\",intrinsicHeight:961,intrinsicWidth:1500,pixelHeight:961,pixelWidth:1500,sizes:\"500px\",src:\"https://framerusercontent.com/images/WehFH9dVcNu5EKCPZ8Njc92BRMQ.png\",srcSet:\"https://framerusercontent.com/images/WehFH9dVcNu5EKCPZ8Njc92BRMQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/WehFH9dVcNu5EKCPZ8Njc92BRMQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WehFH9dVcNu5EKCPZ8Njc92BRMQ.png 1500w\"},className:\"framer-1lmqvpl\",\"data-framer-name\":\"image\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fg5dlx\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-tduqrc\",\"data-framer-name\":\"BG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tiKaMPpAe:{background:{alt:\"Assignment results with submissions and summaries about strengths, weaknesses, and follow-up suggestions for assignment.\",fit:\"fill\",intrinsicHeight:961,intrinsicWidth:1500,pixelHeight:961,pixelWidth:1500,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 580px), 1px)`,src:\"https://framerusercontent.com/images/7qL3xepWEOFo2VzDtdyCny7rHI.png\",srcSet:\"https://framerusercontent.com/images/7qL3xepWEOFo2VzDtdyCny7rHI.png?scale-down-to=512 512w,https://framerusercontent.com/images/7qL3xepWEOFo2VzDtdyCny7rHI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7qL3xepWEOFo2VzDtdyCny7rHI.png 1500w\"}},ZZrQIoph1:{background:{alt:\"Assignment results with submissions and summaries about strengths, weaknesses, and follow-up suggestions for assignment.\",fit:\"fit\",intrinsicHeight:961,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1953.4+60+0+0+2268.8+0+0+0),pixelHeight:961,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 600px), 1px), 350px)`,src:\"https://framerusercontent.com/images/7qL3xepWEOFo2VzDtdyCny7rHI.png\",srcSet:\"https://framerusercontent.com/images/7qL3xepWEOFo2VzDtdyCny7rHI.png?scale-down-to=512 512w,https://framerusercontent.com/images/7qL3xepWEOFo2VzDtdyCny7rHI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7qL3xepWEOFo2VzDtdyCny7rHI.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Assignment results with submissions and summaries about strengths, weaknesses, and follow-up suggestions for assignment.\",fit:\"fill\",intrinsicHeight:961,intrinsicWidth:1500,pixelHeight:961,pixelWidth:1500,sizes:\"500px\",src:\"https://framerusercontent.com/images/7qL3xepWEOFo2VzDtdyCny7rHI.png\",srcSet:\"https://framerusercontent.com/images/7qL3xepWEOFo2VzDtdyCny7rHI.png?scale-down-to=512 512w,https://framerusercontent.com/images/7qL3xepWEOFo2VzDtdyCny7rHI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7qL3xepWEOFo2VzDtdyCny7rHI.png 1500w\"},className:\"framer-fqf8yl\",\"data-framer-name\":\"image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c006z3\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\"},children:\"Get AI-powered feedback.\"})}),className:\"framer-1rykcdg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x77wdl\",\"data-framer-name\":\"Bullets\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Auto-generated feedback for each student.\"})})})}),className:\"framer-pqoymr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"See exactly where students struggled.\"})})})}),className:\"framer-1jfehlv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Get ideas for follow-up learning objectives.\"})})})}),className:\"framer-5yjlde\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10qes8q\",\"data-framer-name\":\"Pivot\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tiKaMPpAe:{background:{alt:'Background for CTA section saying \"Want to See Flint in action?\" with various icons like theater masks, a teacher, and a stack of books floating on a baby blue background. ',fit:\"fill\",intrinsicHeight:500,intrinsicWidth:3228,pixelHeight:500,pixelWidth:3228,sizes:`min(1000px, ${componentViewport?.width||\"100vw\"})`,src:\"https://framerusercontent.com/images/28J1AZqyLfqgSSLT3Y2RqPF6tYI.png\",srcSet:\"https://framerusercontent.com/images/28J1AZqyLfqgSSLT3Y2RqPF6tYI.png?scale-down-to=512 512w,https://framerusercontent.com/images/28J1AZqyLfqgSSLT3Y2RqPF6tYI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/28J1AZqyLfqgSSLT3Y2RqPF6tYI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/28J1AZqyLfqgSSLT3Y2RqPF6tYI.png 3228w\"}},ZZrQIoph1:{background:{alt:'Background for CTA section saying \"Want to See Flint in action?\" with various icons like theater masks, a teacher, and a stack of books floating on a baby blue background. ',fit:\"fill\",intrinsicHeight:1160,intrinsicWidth:1900,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5083.8+0+0),pixelHeight:1160,pixelWidth:1900,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 600px)`,src:\"https://framerusercontent.com/images/AL93xtOschELKwUuyaefrVUNbM0.png\",srcSet:\"https://framerusercontent.com/images/AL93xtOschELKwUuyaefrVUNbM0.png?scale-down-to=512 512w,https://framerusercontent.com/images/AL93xtOschELKwUuyaefrVUNbM0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AL93xtOschELKwUuyaefrVUNbM0.png 1900w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:'Background for CTA section saying \"Want to See Flint in action?\" with various icons like theater masks, a teacher, and a stack of books floating on a baby blue background. ',fit:\"fill\",intrinsicHeight:388,intrinsicWidth:3228,pixelHeight:388,pixelWidth:3228,sizes:`min(1000px, ${componentViewport?.width||\"100vw\"})`,src:\"https://framerusercontent.com/images/6sj08PGwQFvrFNJCPS26OiLqoII.png\",srcSet:\"https://framerusercontent.com/images/6sj08PGwQFvrFNJCPS26OiLqoII.png?scale-down-to=512 512w,https://framerusercontent.com/images/6sj08PGwQFvrFNJCPS26OiLqoII.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6sj08PGwQFvrFNJCPS26OiLqoII.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/6sj08PGwQFvrFNJCPS26OiLqoII.png 3228w\"},className:\"framer-1tikz0v\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZZrQIoph1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\"},children:\"Want to see Flint in action?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\"},children:\"Want to see Flint in action?\"})}),className:\"framer-1ygfye1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w6z4gm\",\"data-framer-name\":\"Video Overlay\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223))\"},children:\"Watch the video\"})}),className:\"framer-p3uyhn\",fonts:[\"GF;Manrope-700\"],id:\"p3uyhn\",onTap:onTap3bnx0g({overlay}),verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-e2037b\"),\"data-framer-portal-id\":\"p3uyhn\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"YW9TJ2_MO\"),/*#__PURE__*/_jsx(\"div\",{className:cx(scopingClassNames,\"framer-1nrty6p\"),\"data-framer-name\":\"Radius\",\"data-framer-portal-id\":\"p3uyhn\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b2fvv5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NOG5dTW5e\",scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=\"https://www.loom.com/embed/89f62b55fa9b4233aeaf612c6a49f69d?sid=7ee1bd92-3b2c-4c80-b8c1-7a50b4e97cd9\" frameborder=\"0\" webkitallowfullscreen mozallowfullscreen allowfullscreen style=\"position: absolute; top: 0; left: 0; width: 100%; height: 100%;\"></iframe>',id:\"NOG5dTW5e\",layoutId:\"NOG5dTW5e\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://www.loom.com/share/2173d0a8dd1d4dbd8b3187d5ccc1876d?sid=858f5bfa-1da2-4921-bc70-3c9add1fe2c3\",width:\"100%\"})})})})]}),getContainer())})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZZrQIoph1:{y:(componentViewport?.y||0)+0+5083.8+0+0+40+131.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uib1yu-container\",nodeId:\"CMKfXmT7r\",scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(CTAButton,{height:\"100%\",id:\"CMKfXmT7r\",IolzpzBoe:\"rgb(101, 159, 235)\",layoutId:\"CMKfXmT7r\",Nwv_yt4tK:\"rgb(69, 137, 223)\",style:{height:\"100%\"},width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19488j\",\"data-framer-name\":\"Admin Testimonials Wide\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZZrQIoph1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1su4pmu\",\"data-styles-preset\":\"iSrOYCLQl\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:\"Built from the ground up for schools.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1su4pmu\",\"data-styles-preset\":\"iSrOYCLQl\",style:{\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:\"Built from the ground up for schools.\"})}),className:\"framer-1omtkyj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZZrQIoph1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(206, 212, 218)\"},children:\"Flint is an all-in-one AI platform built for schools. We go beyond software to support administrators at every step.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(206, 212, 218)\"},children:\"Flint is an all-in-one AI platform built for schools. We go beyond software to support administrators at every step.\"})}),className:\"framer-rcy7h8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ybpxsi-container hidden-52k8hk hidden-1ydb4aw\",\"data-framer-name\":\"Carousel Desk\",isAuthoredByUser:true,isModuleExternal:true,name:\"Carousel Desk\",nodeId:\"tf07HZKMg\",scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"teacher testimonials\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:.25,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:10},gap:20,height:\"100%\",id:\"tf07HZKMg\",layoutId:\"tf07HZKMg\",name:\"Carousel Desk\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ye15g9\",\"data-border\":true,\"data-framer-name\":\"Justin Testimonial Desk\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n5ceky\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Justin Cerenzie headshot\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/xMarsOF7QpJ5d25b0x6lLQ8IT8.png\"},className:\"framer-ugpda6\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wmhc7s\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(206, 212, 218)\"},children:\"Justin Cerenzia\"})}),className:\"framer-12zuzt6\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(206, 212, 218)\"},children:\"Chair for Teaching & Learning at The Episcopal Academy\"})}),className:\"framer-1bl37xa\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xsuuot\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:['\"Working with the Flint team has been nothing short of ',/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"exceptional\"})}),\". This isn't a team that sits behind screens all day; they visited us in person, gathered feedback, and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"improved the product to better suit our needs\"})}),\". It's one thing to introduce a tool that people like, but it's another to introduce one that prompts new ways of thinking and adds meaningful value to the educational process.\\\"\"]})}),className:\"framer-pqpv4g\",fonts:[\"GF;Manrope-500\",\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:['\"Most platforms focus solely on either teacher or student, but ',/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Flint\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"explicitly caters to the relationship between educators and learners\"})]}),\". Flint is more than just a tool\u2014it's a partner in the classroom that aids in facilitating valuable retrieval practice through immediate feedback. Flint doesn't just make our lives easier; it \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"makes us more effective educators and helps students learn more effectively\"})}),'.\"']})}),className:\"framer-1boc252\",fonts:[\"GF;Manrope-500\",\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11fy4t3\",\"data-border\":true,\"data-framer-name\":\"Torrey Testimonial Desk\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1461vc6\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Torrey Williams headshot\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/N1V2D8AMcT8aZxujjlvOB15k.png\"},className:\"framer-1nd28v3\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6bon3p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(206, 212, 218)\"},children:\"Torrey Williams\"})}),className:\"framer-13v7wzq\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(206, 212, 218)\"},children:\"Chief Information Officer at The Westminster Schools\"})}),className:\"framer-1ws11gg\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ny7j0b\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:['\"The experience of working with the Flint team has been one of ',/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"true partnership\"})}),\". They've updated the platform to best suit our needs, and are helping us prepare students for the world given how the use of AI tools has grown exponentially. We wanted to make sure we could use AI in a way that was \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"managed and secure\"})}),\", and using an open platform just didn't fit the bill.\\\"\"]})}),className:\"framer-9kkqm6\",fonts:[\"GF;Manrope-500\",\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:['\"I believe many of the teachers who now use Flint initially had no true basis for understanding what AI means. With Flint, they have been able to not just ',/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"learn more about AI\"})}),\", but use it to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"foster better learning\"})}),'.\\xa0After Flint enhanced learning and operational efficiency at the Upper School, we broadened the availability of the tool to students at the Middle School.\"']})}),className:\"framer-5qr42u\",fonts:[\"GF;Manrope-500\",\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e27zwm\",\"data-border\":true,\"data-framer-name\":\"Liz Testimonial Desktop\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tv59tp\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Torrey Williams headshot\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:1e3,pixelWidth:1e3,sizes:\"64px\",src:\"https://framerusercontent.com/images/dTFAXBjZfZbs0dI0QdTxLhoc5w.png\",srcSet:\"https://framerusercontent.com/images/dTFAXBjZfZbs0dI0QdTxLhoc5w.png?scale-down-to=512 512w,https://framerusercontent.com/images/dTFAXBjZfZbs0dI0QdTxLhoc5w.png 1000w\"},className:\"framer-uqud66\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ejapur\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(206, 212, 218)\"},children:\"Elizabeth Brumbaugh\"})}),className:\"framer-11jxn62\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(206, 212, 218)\"},children:\"Director of Learning, Innovation & Design at The Harker School\"})}),className:\"framer-kpfwkh\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tnt6c8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:['\"Working with the Flint Team has been one of the ',/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"best customer service experiences I\u2019ve ever had in EdTech\"})}),'. They\u2019re responsive and authentic making my ability to help teachers implement seamless. The Flint team has worked with us on recurring training and feedback sessions with faculty every 3 weeks, which has helped drive adoption.\"']})}),className:\"framer-16ygzie\",fonts:[\"GF;Manrope-500\",\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:['\"Teachers are loving the ',/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"individual and group feedback\"})}),\" that Flint provides, with accompanying supplemental activities. The administrivia of teaching is significantly reduced, and the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"learning can occur at deeper levels\"})}),', truly leveraging our teachers\u2019 real talents across subject areas ranging from English to Computer Science.\"']})}),className:\"framer-1cfy14p\",fonts:[\"GF;Manrope-500\",\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tnxiwe-container hidden-17331hd hidden-1ydb4aw\",\"data-framer-name\":\"Carousel Tablet\",isAuthoredByUser:true,isModuleExternal:true,name:\"Carousel Tablet\",nodeId:\"u4uVOkkqz\",scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"teacher testimonials\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:.25,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:10},gap:20,height:\"100%\",id:\"u4uVOkkqz\",layoutId:\"u4uVOkkqz\",name:\"Carousel Tablet\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-158jzod\",\"data-border\":true,\"data-framer-name\":\"Justin Testimonial Tab\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gu0emp\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Justin Cerenzie headshot\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/xMarsOF7QpJ5d25b0x6lLQ8IT8.png\"},className:\"framer-gw1jnm\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nv8rzs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(206, 212, 218)\"},children:\"Justin Cerenzia\"})}),className:\"framer-jqrrez\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(206, 212, 218)\"},children:\"Chair for Teaching & Learning at The Episcopal Academy\"})}),className:\"framer-1uu5fqp\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lnsdwf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:['\"Working with the Flint team has been nothing short of ',/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"exceptional\"})}),\". This isn't a team that sits behind screens all day; they visited us in person, gathered feedback, and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"improved the product to better suit our needs\"})}),\". It's one thing to introduce a tool that people like, but it's another to introduce one that prompts new ways of thinking and adds meaningful value to the educational process.\\\"\"]})}),className:\"framer-xwpv15\",fonts:[\"GF;Manrope-500\",\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:['\"Most platforms focus solely on either teacher or student, but ',/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Flint\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"explicitly caters to the relationship between educators and learners\"})]}),\". Flint is more than just a tool\u2014it's a partner in the classroom that aids in facilitating valuable retrieval practice through immediate feedback. Flint doesn't just make our lives easier; it \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"makes us more effective educators and helps students learn more effectively\"})}),'.\"']})}),className:\"framer-oq5j0v\",fonts:[\"GF;Manrope-500\",\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8bla7p\",\"data-border\":true,\"data-framer-name\":\"Torrey Testimonial Tab\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i45y4p\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Torrey Williams headshot\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/N1V2D8AMcT8aZxujjlvOB15k.png\"},className:\"framer-noctu7\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xwqy7y\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(206, 212, 218)\"},children:\"Torrey Williams\"})}),className:\"framer-n38hk1\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(206, 212, 218)\"},children:\"Chief Information Officer at The Westminster Schools\"})}),className:\"framer-1oj6azt\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-33re5f\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:['\"The experience of working with the Flint team has been one of ',/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"true partnership\"})}),\". They've updated the platform to best suit our needs, and are helping us prepare students for the world given how the use of AI tools has grown exponentially. We wanted to make sure we could use AI in a way that was \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"managed and secure\"})}),\", and using an open platform just didn't fit the bill.\\\"\"]})}),className:\"framer-16uexp4\",fonts:[\"GF;Manrope-500\",\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:['\"I believe many of the teachers who now use Flint initially had no true basis for understanding what AI means. With Flint, they have been able to not just ',/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"learn more about AI\"})}),\", but use it to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"foster better learning\"})}),'.\\xa0After Flint enhanced learning and operational efficiency at the Upper School, we broadened the availability of the tool to students at the Middle School.\"']})}),className:\"framer-hcbpb3\",fonts:[\"GF;Manrope-500\",\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ebgjxn\",\"data-border\":true,\"data-framer-name\":\"Liz Testimonial Tab\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o41md0\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Torrey Williams headshot\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:1e3,pixelWidth:1e3,sizes:\"64px\",src:\"https://framerusercontent.com/images/dTFAXBjZfZbs0dI0QdTxLhoc5w.png\",srcSet:\"https://framerusercontent.com/images/dTFAXBjZfZbs0dI0QdTxLhoc5w.png?scale-down-to=512 512w,https://framerusercontent.com/images/dTFAXBjZfZbs0dI0QdTxLhoc5w.png 1000w\"},className:\"framer-46x5ud\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14my8zp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(206, 212, 218)\"},children:\"Elizabeth Brumbaugh\"})}),className:\"framer-tsrwdf\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(206, 212, 218)\"},children:\"Director of Learning, Innovation & Design at The Harker School\"})}),className:\"framer-fdqoyb\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15fsv61\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:['\"Working with the Flint Team has been one of the ',/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"best customer service experiences I\u2019ve ever had in EdTech\"})}),'. They\u2019re responsive and authentic making my ability to help teachers implement seamless. The Flint team has worked with us on recurring training and feedback sessions with faculty every 3 weeks, which has helped drive adoption.\"']})}),className:\"framer-11o7s4u\",fonts:[\"GF;Manrope-500\",\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:['\"Teachers are loving the ',/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"individual and group feedback\"})}),\" that Flint provides, with accompanying supplemental activities. The administrivia of teaching is significantly reduced, and the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"learning can occur at deeper levels\"})}),', truly leveraging our teachers\u2019 real talents across subject areas ranging from English to Computer Science.\"']})}),className:\"framer-1xzivcm\",fonts:[\"GF;Manrope-500\",\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fas0i7-container hidden-17331hd hidden-52k8hk\",\"data-framer-name\":\"Carousel Mobile\",isAuthoredByUser:true,isModuleExternal:true,name:\"Carousel Mobile\",nodeId:\"YCLPIV6Rb\",scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"teacher testimonials\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:.25,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:10},gap:20,height:\"100%\",id:\"YCLPIV6Rb\",layoutId:\"YCLPIV6Rb\",name:\"Carousel Mobile\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fa2bfy\",\"data-border\":true,\"data-framer-name\":\"Justin Testimonial Mob\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-eogdxm\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Justin Cerenzie headshot\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/xMarsOF7QpJ5d25b0x6lLQ8IT8.png\"},className:\"framer-x0fr7k\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qur2w\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(206, 212, 218)\"},children:\"Justin Cerenzia\"})}),className:\"framer-xzo3qm\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(206, 212, 218)\"},children:\"Chair for Teaching & Learning at The Episcopal Academy\"})}),className:\"framer-1rtstbh\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uhxb3g\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:['\"Working with the Flint team has been nothing short of ',/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"exceptional\"})}),\". This isn't a team that sits behind screens all day; they visited us in person, gathered feedback, and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"improved the product to better suit our needs\"})}),\". It's one thing to introduce a tool that people like, but it's another to introduce one that prompts new ways of thinking and adds meaningful value to the educational process.\\\"\"]})}),className:\"framer-uy32cw\",fonts:[\"GF;Manrope-500\",\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:['\"Most platforms focus solely on either teacher or student, but ',/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Flint\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"explicitly caters to the relationship between educators and learners\"})]}),\". Flint is more than just a tool\u2014it's a partner in the classroom that aids in facilitating valuable retrieval practice through immediate feedback. Flint doesn't just make our lives easier; it \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"makes us more effective educators and helps students learn more effectively\"})}),'.\"']})}),className:\"framer-bc4krr\",fonts:[\"GF;Manrope-500\",\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k0pfn8\",\"data-border\":true,\"data-framer-name\":\"Torrey Testimonial Mob\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fu6uid\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Torrey Williams headshot\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/N1V2D8AMcT8aZxujjlvOB15k.png\"},className:\"framer-mca6hn\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2dauvw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(206, 212, 218)\"},children:\"Torrey Williams\"})}),className:\"framer-10ud3n5\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(206, 212, 218)\"},children:\"Chief Information Officer at The Westminster Schools\"})}),className:\"framer-i4b8kh\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6wmzhh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:['\"The experience of working with the Flint team has been one of ',/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"true partnership\"})}),\". They've updated the platform to best suit our needs, and are helping us prepare students for the world given how the use of AI tools has grown exponentially. We wanted to make sure we could use AI in a way that was \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"managed and secure\"})}),\", and using an open platform just didn't fit the bill.\\\"\"]})}),className:\"framer-nmm7o9\",fonts:[\"GF;Manrope-500\",\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:['\"I believe many of the teachers who now use Flint initially had no true basis for understanding what AI means. With Flint, they have been able to not just ',/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"learn more about AI\"})}),\", but use it to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"foster better learning\"})}),'.\\xa0After Flint enhanced learning and operational efficiency at the Upper School, we broadened the availability of the tool to students at the Middle School.\"']})}),className:\"framer-8judr7\",fonts:[\"GF;Manrope-500\",\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4kkqx4\",\"data-border\":true,\"data-framer-name\":\"Liz Testimonial Mob\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kq4ztm\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Torrey Williams headshot\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:1e3,pixelWidth:1e3,sizes:\"64px\",src:\"https://framerusercontent.com/images/dTFAXBjZfZbs0dI0QdTxLhoc5w.png\",srcSet:\"https://framerusercontent.com/images/dTFAXBjZfZbs0dI0QdTxLhoc5w.png?scale-down-to=512 512w,https://framerusercontent.com/images/dTFAXBjZfZbs0dI0QdTxLhoc5w.png 1000w\"},className:\"framer-2c7w45\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19ya72\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(206, 212, 218)\"},children:\"Elizabeth Brumbaugh\"})}),className:\"framer-m2gur5\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(206, 212, 218)\"},children:\"Director of Learning, Innovation & Design at The Harker School\"})}),className:\"framer-1sgw7wf\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jfwpyn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:['\"Working with the Flint Team has been one of the ',/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"best customer service experiences I\u2019ve ever had in EdTech\"})}),'. They\u2019re responsive and authentic making my ability to help teachers implement seamless. The Flint team has worked with us on recurring training and feedback sessions with faculty every 3 weeks, which has helped drive adoption.\"']})}),className:\"framer-1w8ypwk\",fonts:[\"GF;Manrope-500\",\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:['\"Teachers are loving the ',/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"individual and group feedback\"})}),\" that Flint provides, with accompanying supplemental activities. The administrivia of teaching is significantly reduced, and the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"learning can occur at deeper levels\"})}),', truly leveraging our teachers\u2019 real talents across subject areas ranging from English to Computer Science.\"']})}),className:\"framer-40vqlv\",fonts:[\"GF;Manrope-500\",\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-odqk84\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18b0h6m\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8s6nyy\",\"data-border\":true,\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZZrQIoph1:{background:{alt:\"Sheild icon\",fit:\"fill\",intrinsicHeight:208,intrinsicWidth:208,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5395.4+80+396.8+0+0+0+0+30+-33.2),pixelHeight:416,pixelWidth:416,src:\"https://framerusercontent.com/images/rVR8sfZb5a4AyOsnxjzixnPdOI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Sheild icon\",fit:\"fill\",intrinsicHeight:208,intrinsicWidth:208,pixelHeight:416,pixelWidth:416,src:\"https://framerusercontent.com/images/rVR8sfZb5a4AyOsnxjzixnPdOI.png\"},className:\"framer-1yk67tk\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tiKaMPpAe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:\"Student data protection\"})})},ZZrQIoph1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:\"Student data protection\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:\"Student data protection\"})}),className:\"framer-1o64n34\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"rgb(206, 212, 218)\"},children:\"Unlike ChatGPT,  Flint does not use student chat data to train AI models.\"})}),className:\"framer-fglke4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1idw5l9\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2qssq6\",\"data-border\":true,\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZZrQIoph1:{background:{alt:\"Key icon\",fit:\"fill\",intrinsicHeight:208,intrinsicWidth:208,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5395.4+80+396.8+0+320+0+0+30+-33.2),pixelHeight:416,pixelWidth:416,src:\"https://framerusercontent.com/images/DrFq9GtbbgD2jBCz56dCPztx4k.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Key icon\",fit:\"fill\",intrinsicHeight:208,intrinsicWidth:208,pixelHeight:416,pixelWidth:416,src:\"https://framerusercontent.com/images/DrFq9GtbbgD2jBCz56dCPztx4k.png\"},className:\"framer-16fs4wt\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tiKaMPpAe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:\"Equitable access\"})})},ZZrQIoph1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:\"Equitable access\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:\"Equitable access\"})}),className:\"framer-a20co9\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"rgb(206, 212, 218)\"},children:\"Flint is accessible to students under the age of 13 with no phone number required.\"})}),className:\"framer-2fnhnt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-80g74w\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bi0glg\",\"data-border\":true,\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZZrQIoph1:{background:{alt:\"Handshake heart icon\",fit:\"fill\",intrinsicHeight:208,intrinsicWidth:208,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5395.4+80+396.8+0+640+0+0+30+-33.2),pixelHeight:416,pixelWidth:416,src:\"https://framerusercontent.com/images/qgoITajSz4kriECaiebyWWZ3tE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Handshake heart icon\",fit:\"fill\",intrinsicHeight:208,intrinsicWidth:208,pixelHeight:416,pixelWidth:416,src:\"https://framerusercontent.com/images/qgoITajSz4kriECaiebyWWZ3tE.png\"},className:\"framer-1rrfcxl\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tiKaMPpAe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:\"A+ customer support\"})})},ZZrQIoph1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:\"A+ customer support\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(248, 249, 250)\"},children:\"A+ customer support\"})}),className:\"framer-cys217\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"rgb(206, 212, 218)\"},children:\"Flint provides 1-1 onboarding calls for teachers, virtual trainings, and in-person PD.\"})}),className:\"framer-8l7jhf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n0nv8g\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qVOsne7mQ\"},implicitPathVariables:undefined},{href:{webPageId:\"qVOsne7mQ\"},implicitPathVariables:undefined},{href:{webPageId:\"qVOsne7mQ\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZZrQIoph1:{y:(componentViewport?.y||0)+0+5395.4+80+1376.8+.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4zm7zl-container\",nodeId:\"Ge1xV1jU8\",scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tiKaMPpAe:{AnelZu8P6:resolvedLinks8[1]},ZZrQIoph1:{AnelZu8P6:resolvedLinks8[2]}},children:/*#__PURE__*/_jsx(SecurityButton,{AnelZu8P6:resolvedLinks8[0],height:\"100%\",id:\"Ge1xV1jU8\",layoutId:\"Ge1xV1jU8\",QBYEA2nvt:\"rgba(102, 102, 102, 0.5)\",style:{height:\"100%\"},VzskGXVsb:\"rgb(102, 102, 102)\",w0Sbpn7Yb:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06)\",width:\"100%\",WoLp7XcbU:\"View more security details ->\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g14z90\",\"data-framer-name\":\"Background\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ps9hh4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZZrQIoph1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a43ba39d-2546-4129-9fc4-d959ed03420d, rgb(248, 249, 250))\"},children:[\"Just starting to outline your AI policy? \",/*#__PURE__*/_jsx(\"br\",{}),\"Check out our free AI Policy Library!\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--token-a43ba39d-2546-4129-9fc4-d959ed03420d, rgb(248, 249, 250))\"},children:[\"Just starting to outline your AI policy? \",/*#__PURE__*/_jsx(\"br\",{}),\"Check out our free AI Policy Library!\"]})}),className:\"framer-11gz3mf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"I5rQrtbcU\"},implicitPathVariables:undefined},{href:{webPageId:\"I5rQrtbcU\"},implicitPathVariables:undefined},{href:{webPageId:\"I5rQrtbcU\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZZrQIoph1:{y:(componentViewport?.y||0)+0+5395.4+80+1457.8+0+0+40+57.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ryvsmm-container\",nodeId:\"i_cEsPR9w\",scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tiKaMPpAe:{AnelZu8P6:resolvedLinks9[1]},ZZrQIoph1:{AnelZu8P6:resolvedLinks9[2]}},children:/*#__PURE__*/_jsx(SecurityButton,{AnelZu8P6:resolvedLinks9[0],height:\"100%\",id:\"i_cEsPR9w\",layoutId:\"i_cEsPR9w\",QBYEA2nvt:\"var(--token-d33555b6-ae83-44d5-bf97-04fd13008f09, rgb(69, 137, 223))\",style:{height:\"100%\"},VzskGXVsb:\"var(--token-3510d490-5dfb-4252-a920-319b416c2874, rgb(131, 181, 240))\",w0Sbpn7Yb:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06)\",width:\"100%\",WoLp7XcbU:\"See AI Policy Library ->\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tiKaMPpAe:{background:{alt:\"Thumnail image showing various free resources in Flint's AI policy library for teachers and admins. \",fit:\"fill\",pixelHeight:1890,pixelWidth:5262,positionX:\"right\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) / 2, 1px)`,src:\"https://framerusercontent.com/images/0FPR5jXaGSJcTILkPbgvrwpl34.png\",srcSet:\"https://framerusercontent.com/images/0FPR5jXaGSJcTILkPbgvrwpl34.png?scale-down-to=512 512w,https://framerusercontent.com/images/0FPR5jXaGSJcTILkPbgvrwpl34.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0FPR5jXaGSJcTILkPbgvrwpl34.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0FPR5jXaGSJcTILkPbgvrwpl34.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/0FPR5jXaGSJcTILkPbgvrwpl34.png 5262w\"}},ZZrQIoph1:{background:{alt:\"Thumnail image showing various free resources in Flint's AI policy library for teachers and admins. \",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5395.4+80+1457.8+0+147.6),pixelHeight:1890,pixelWidth:8169,positionX:\"right\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,src:\"https://framerusercontent.com/images/u2U5CLRdS2MJevIRoiDzAtS9sto.png\",srcSet:\"https://framerusercontent.com/images/u2U5CLRdS2MJevIRoiDzAtS9sto.png?scale-down-to=512 512w,https://framerusercontent.com/images/u2U5CLRdS2MJevIRoiDzAtS9sto.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/u2U5CLRdS2MJevIRoiDzAtS9sto.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/u2U5CLRdS2MJevIRoiDzAtS9sto.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/u2U5CLRdS2MJevIRoiDzAtS9sto.png 8169w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Thumnail image showing various free resources in Flint's AI policy library for teachers and admins. \",fit:\"fill\",pixelHeight:1890,pixelWidth:8169,positionX:\"right\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/u2U5CLRdS2MJevIRoiDzAtS9sto.png\",srcSet:\"https://framerusercontent.com/images/u2U5CLRdS2MJevIRoiDzAtS9sto.png?scale-down-to=512 512w,https://framerusercontent.com/images/u2U5CLRdS2MJevIRoiDzAtS9sto.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/u2U5CLRdS2MJevIRoiDzAtS9sto.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/u2U5CLRdS2MJevIRoiDzAtS9sto.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/u2U5CLRdS2MJevIRoiDzAtS9sto.png 8169w\"},className:\"framer-1tjdp3h\"})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2q40gx\",\"data-framer-name\":\"Features List\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fb0837\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mypqig\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1su4pmu\",\"data-styles-preset\":\"iSrOYCLQl\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\"},children:\"The complete AI platform for schools.\"})}),className:\"framer-1io1ihr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-pu2tp1 hidden-1ydb4aw\",\"data-framer-name\":\"Feature names\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"IC3vl3E1W\",data:Features,type:\"Collection\"},orderBy:[{collection:\"IC3vl3E1W\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"IC3vl3E1W\",name:\"IGMQiLGMC\",type:\"Identifier\"},{collection:\"IC3vl3E1W\",name:\"JSZ05joHH\",type:\"Identifier\"},{collection:\"IC3vl3E1W\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idIC3vl3E1W,IGMQiLGMC:IGMQiLGMCIC3vl3E1W,JSZ05joHH:JSZ05joHHIC3vl3E1W},index)=>{IGMQiLGMCIC3vl3E1W??=\"\";JSZ05joHHIC3vl3E1W??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`IC3vl3E1W-${idIC3vl3E1W}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{IGMQiLGMC:IGMQiLGMCIC3vl3E1W},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-13u1rg\",\"data-framer-name\":\"Feature name\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tiKaMPpAe:{width:`max(${componentViewport?.width||\"100vw\"} - 464px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,width:`max(min(${componentViewport?.width||\"100vw\"}, 1000px) - 540px, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-120}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-120}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-3if4q2-container\",id:`${IGMQiLGMCIC3vl3E1W}-${elementId4}`,nodeId:\"ngnHb9gev\",ref:dynamicRef(`${IGMQiLGMCIC3vl3E1W}-${elementId4}`),rendersWithMotion:true,scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(FeatureDescriptionWithVariantAppearEffect,{__framer__animateOnce:false,__framer__exitTarget:true,__framer__targets:[{ref:dynamicRef(`${IGMQiLGMCIC3vl3E1W}-${elementId4}`),target:\"A6qw5IIlJ\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,EckjdVGxn:JSZ05joHHIC3vl3E1W,height:\"100%\",id:\"ngnHb9gev\",layoutId:\"ngnHb9gev\",style:{height:\"100%\",width:\"100%\"},variant:\"H3HJwIf05\",width:\"100%\"})})})})})})},idIC3vl3E1W);})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-iwbkp6 hidden-17331hd hidden-52k8hk\",\"data-framer-name\":\"Features Overflow\",children:isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9bykaz hidden-17331hd\",\"data-framer-name\":\"Scrolling-mobile\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"bzF0XSn7j\",data:Features,type:\"Collection\"},orderBy:[{collection:\"bzF0XSn7j\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"bzF0XSn7j\",name:\"MHLEIZG8y\",type:\"Identifier\"},{collection:\"bzF0XSn7j\",name:\"JSZ05joHH\",type:\"Identifier\"},{collection:\"bzF0XSn7j\",name:\"CjfxNGRKL\",type:\"Identifier\"},{collection:\"bzF0XSn7j\",name:\"xzzuMWW2b\",type:\"Identifier\"},{collection:\"bzF0XSn7j\",name:\"IGMQiLGMC\",type:\"Identifier\"},{collection:\"bzF0XSn7j\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({CjfxNGRKL:CjfxNGRKLbzF0XSn7j,id:idbzF0XSn7j,IGMQiLGMC:IGMQiLGMCbzF0XSn7j,JSZ05joHH:JSZ05joHHbzF0XSn7j,MHLEIZG8y:MHLEIZG8ybzF0XSn7j,xzzuMWW2b:xzzuMWW2bbzF0XSn7j},index1)=>{JSZ05joHHbzF0XSn7j??=\"\";CjfxNGRKLbzF0XSn7j??=\"\";xzzuMWW2bbzF0XSn7j??=0;IGMQiLGMCbzF0XSn7j??=\"\";const textContent=numberToString(xzzuMWW2bbzF0XSn7j,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`bzF0XSn7j-${idbzF0XSn7j}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{IGMQiLGMC:IGMQiLGMCbzF0XSn7j},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hbrwfb\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"320px\",...toResponsiveImage(MHLEIZG8ybzF0XSn7j)},className:\"framer-1j4bnbt\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16b9i5b\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-24mdhx\",\"data-styles-preset\":\"VtL3h8T6O\",children:\"Title\"})}),className:\"framer-19nyiw5\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:JSZ05joHHbzF0XSn7j,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-b381ce77-8168-4dad-a260-4ec71d30df53, rgb(102, 102, 102))\"},children:\"Description\"})}),className:\"framer-1u7bnr3\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],text:CjfxNGRKLbzF0XSn7j,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ueo1ak\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-02f874ed-3d03-4a3c-928e-ee337716793f, rgb(206, 212, 218))\"},children:\"NaN\"})}),className:\"framer-1jto3lc\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-02f874ed-3d03-4a3c-928e-ee337716793f, rgb(206, 212, 218))\"},children:\"of 31\"})}),className:\"framer-u6piuh\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})},idbzF0XSn7j);})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tiKaMPpAe:{height:500,width:\"360px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:640,width:\"500px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kklsva-container hidden-1ydb4aw\",nodeId:\"tdaO3OlcQ\",rendersWithMotion:true,scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tiKaMPpAe:{__framer__targets:[{ref:dynamicRef(`content-upload-${elementId4}`),target:\"CiOHgoa_z\"},{ref:dynamicRef(`math-accuracy-${elementId4}`),target:\"Ds1BtRT7I\"},{ref:dynamicRef(`web-search-${elementId4}`),target:\"Yk3tXMb6J\"},{ref:dynamicRef(`in-line-citations-${elementId4}`),target:\"CIQrZpKpZ\"},{ref:dynamicRef(`image-processing-${elementId4}`),target:\"RbKiGT61W\"},{ref:dynamicRef(`image-generation-${elementId4}`),target:\"anyZg2_cb\"},{ref:dynamicRef(`evidence-based-feedback-${elementId4}`),target:\"UURXY2lUO\"},{ref:dynamicRef(`text-to-speech-and-speech-to-text-${elementId4}`),target:\"aFt2FVn1o\"},{ref:dynamicRef(`50-world-languages-${elementId4}`),target:\"bQ0dvf6Sm\"},{ref:dynamicRef(`code-editor-${elementId4}`),target:\"s2JRc0qrW\"},{ref:dynamicRef(`math-formula-editor-${elementId4}`),target:\"h7Qm7fNXV\"},{ref:dynamicRef(`graphing-support-${elementId4}`),target:\"RlnfpJ1YK\"},{ref:dynamicRef(`essay-writing-feedback-${elementId4}`),target:\"jG7IOFn46\"},{ref:dynamicRef(`automatic-prompt-engineering-${elementId4}`),target:\"f1gfjTyMe\"},{ref:dynamicRef(`school-wide-ai-chatbot-${elementId4}`),target:\"s27W8hs1Y\"},{ref:dynamicRef(`custom-rubrics-${elementId4}`),target:\"WyRW5ar6O\"},{ref:dynamicRef(`automated-previews-${elementId4}`),target:\"CIN58vzUF\"},{ref:dynamicRef(`custom-ai-guardrails-${elementId4}`),target:\"KzPMf7niY\"},{ref:dynamicRef(`class-wide-summaries-${elementId4}`),target:\"F4xsIzfds\"},{ref:dynamicRef(`assignment-deadlines-${elementId4}`),target:\"pMuMdxUPa\"},{ref:dynamicRef(`timed-assignments-${elementId4}`),target:\"puhoWcy6p\"},{ref:dynamicRef(`follow-up-ai-activities-${elementId4}`),target:\"Oxy1iShJ8\"},{ref:dynamicRef(`youtube-video-support-${elementId4}`),target:\"CbymUW9er\"},{ref:dynamicRef(`print-sessions-${elementId4}`),target:\"hdLDDd7O2\"},{ref:dynamicRef(`lms-and-sis-integrations-${elementId4}`),target:\"g3Mw9m3Nh\"},{ref:dynamicRef(`automatic-flagging-${elementId4}`),target:\"ftt6eiiMH\"},{ref:dynamicRef(`usage-analytics-${elementId4}`),target:\"Q7FvhQd_H\"},{ref:dynamicRef(`google-and-microsoft-sso-${elementId4}`),target:\"z3tFSHHIh\"},{ref:dynamicRef(`full-admin-visibility-${elementId4}`),target:\"GuNOwVGbJ\"},{ref:dynamicRef(`state-of-the-art-llms-${elementId4}`),target:\"k376zO7Ch\"}]}},children:/*#__PURE__*/_jsx(FeaturesImagesManualWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:dynamicRef(`content-upload-${elementId4}`),target:\"CiOHgoa_z\"},{ref:dynamicRef(`math-accuracy-${elementId4}`),target:\"Ds1BtRT7I\"},{ref:dynamicRef(`web-search-${elementId4}`),target:\"Yk3tXMb6J\"},{ref:dynamicRef(`whiteboard-${elementId4}`),target:\"L6xhgXM2b\"},{ref:dynamicRef(`in-line-citations-${elementId4}`),target:\"CIQrZpKpZ\"},{ref:dynamicRef(`image-processing-${elementId4}`),target:\"RbKiGT61W\"},{ref:dynamicRef(`image-generation-${elementId4}`),target:\"anyZg2_cb\"},{ref:dynamicRef(`evidence-based-feedback-${elementId4}`),target:\"UURXY2lUO\"},{ref:dynamicRef(`text-to-speech-and-speech-to-text-${elementId4}`),target:\"aFt2FVn1o\"},{ref:dynamicRef(`50-world-languages-${elementId4}`),target:\"bQ0dvf6Sm\"},{ref:dynamicRef(`code-editor-${elementId4}`),target:\"s2JRc0qrW\"},{ref:dynamicRef(`math-formula-editor-${elementId4}`),target:\"h7Qm7fNXV\"},{ref:dynamicRef(`graphing-support-${elementId4}`),target:\"RlnfpJ1YK\"},{ref:dynamicRef(`essay-writing-feedback-${elementId4}`),target:\"jG7IOFn46\"},{ref:dynamicRef(`automatic-prompt-engineering-${elementId4}`),target:\"f1gfjTyMe\"},{ref:dynamicRef(`school-wide-ai-chatbot-${elementId4}`),target:\"s27W8hs1Y\"},{ref:dynamicRef(`custom-rubrics-${elementId4}`),target:\"WyRW5ar6O\"},{ref:dynamicRef(`automated-previews-${elementId4}`),target:\"CIN58vzUF\"},{ref:dynamicRef(`custom-ai-guardrails-${elementId4}`),target:\"KzPMf7niY\"},{ref:dynamicRef(`class-wide-summaries-${elementId4}`),target:\"F4xsIzfds\"},{ref:dynamicRef(`assignment-deadlines-${elementId4}`),target:\"pMuMdxUPa\"},{ref:dynamicRef(`timed-assignments-${elementId4}`),target:\"puhoWcy6p\"},{ref:dynamicRef(`follow-up-ai-activities-${elementId4}`),target:\"Oxy1iShJ8\"},{ref:dynamicRef(`youtube-video-support-${elementId4}`),target:\"CbymUW9er\"},{ref:dynamicRef(`print-sessions-${elementId4}`),target:\"hdLDDd7O2\"},{ref:dynamicRef(`lms-and-sis-integrations-${elementId4}`),target:\"g3Mw9m3Nh\"},{ref:dynamicRef(`automatic-flagging-${elementId4}`),target:\"ftt6eiiMH\"},{ref:dynamicRef(`usage-analytics-${elementId4}`),target:\"Q7FvhQd_H\"},{ref:dynamicRef(`google-and-microsoft-sso-${elementId4}`),target:\"z3tFSHHIh\"},{ref:dynamicRef(`full-admin-visibility-${elementId4}`),target:\"GuNOwVGbJ\"},{ref:dynamicRef(`state-of-the-art-llms-${elementId4}`),target:\"k376zO7Ch\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"tdaO3OlcQ\",layoutId:\"tdaO3OlcQ\",style:{height:\"100%\",width:\"100%\"},variant:\"CiOHgoa_z\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZZrQIoph1:{y:(componentViewport?.y||0)+0+8102}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:387,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsxs(Container,{className:\"framer-m7hf8b-container\",id:\"m7hf8b\",nodeId:\"EtMjGOZYU\",scopeId:\"XVWZCkKkn\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tiKaMPpAe:{variant:overlay1.visible?\"c0WiklisZ\":\"c0WiklisZ\"},ZZrQIoph1:{variant:overlay1.visible?\"tm6B1YBL4\":\"tm6B1YBL4\"}},children:/*#__PURE__*/_jsx(CTASection,{aRhRorHa8:\"var(--token-5b7ae43a-5a22-4f7f-8f16-35b6a29cc8ba, rgb(235, 241, 254))\",AvSS7ZlEM:\"Sign up to start using Flint, free for up to 80 users.\",height:\"100%\",id:\"EtMjGOZYU\",layoutId:\"EtMjGOZYU\",mdrGBd4IG:\"Spark AI-powered learning at your school.\",scudbGgOT:scudbGgOT3bnx0g({overlay:overlay1}),style:{width:\"100%\"},variant:overlay1.visible?\"ME1R1alts\":\"ME1R1alts\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1oh16t9\"),\"data-framer-name\":\"Video Overlay\",\"data-framer-portal-id\":\"m7hf8b\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"GxgPaJAeB\"),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-p7880u\"),\"data-framer-name\":\"Radius\",\"data-framer-portal-id\":\"m7hf8b\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lafad4-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cshonFqvc\",rendersWithMotion:true,scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=\"https://www.loom.com/embed/89f62b55fa9b4233aeaf612c6a49f69d?sid=7ee1bd92-3b2c-4c80-b8c1-7a50b4e97cd9\" frameborder=\"0\" webkitallowfullscreen mozallowfullscreen allowfullscreen style=\"position: absolute; top: 0; left: 0; width: 100%; height: 100%;\"></iframe>',id:\"cshonFqvc\",layoutId:\"cshonFqvc\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://www.loom.com/share/2173d0a8dd1d4dbd8b3187d5ccc1876d?sid=858f5bfa-1da2-4921-bc70-3c9add1fe2c3\",width:\"100%\"})})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZZrQIoph1:{y:(componentViewport?.y||0)+0+8489}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:713,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5tc2od-container\",nodeId:\"XHvWkfono\",scopeId:\"XVWZCkKkn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tiKaMPpAe:{variant:\"XHY5EzW_f\"},ZZrQIoph1:{variant:\"IFpMEjFBG\"}},children:/*#__PURE__*/_jsx(DRAFTUpdatedFooter,{height:\"100%\",id:\"XHvWkfono\",layoutId:\"XHvWkfono\",style:{width:\"100%\"},variant:\"YYFHK41eB\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hhr1V.framer-91vg2o, .framer-hhr1V .framer-91vg2o { display: block; }\",\".framer-hhr1V.framer-17331hd { align-content: center; align-items: center; background-color: var(--token-5b7ae43a-5a22-4f7f-8f16-35b6a29cc8ba, #ebf1fe); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-hhr1V .framer-1ew18wf-container { flex: none; height: 80px; position: sticky; top: 0px; width: 100%; z-index: 2; }\",\".framer-hhr1V .framer-nnwdmj { --border-bottom-width: 4px; --border-color: var(--token-2fb34a9d-abaa-4fb3-a6f3-70496ba06176, #ffffff); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 20px 0px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-hhr1V .framer-1t1iwtr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hhr1V .framer-1rpeidg, .framer-hhr1V .framer-ibcle0, .framer-hhr1V .framer-6yd7vp, .framer-hhr1V .framer-1u4oag1, .framer-hhr1V .framer-1fg5dlx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-edr0l { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-hhr1V .framer-ma54aj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-o839vf, .framer-hhr1V .framer-cuzded, .framer-hhr1V .framer-1gfaooc, .framer-hhr1V .framer-sew2mj, .framer-hhr1V .framer-14ww479, .framer-hhr1V .framer-1apjcdz, .framer-hhr1V .framer-nyoq7z, .framer-hhr1V .framer-10hnalm, .framer-hhr1V .framer-yebet3, .framer-hhr1V .framer-salklq, .framer-hhr1V .framer-45hp9t, .framer-hhr1V .framer-fb0c9f, .framer-hhr1V .framer-iefs32, .framer-hhr1V .framer-1brvmtf, .framer-hhr1V .framer-q801bu, .framer-hhr1V .framer-fehycd, .framer-hhr1V .framer-22z9ld, .framer-hhr1V .framer-1wzct8b, .framer-hhr1V .framer-13g3zm9, .framer-hhr1V .framer-zxx5or, .framer-hhr1V .framer-ej90u1, .framer-hhr1V .framer-1o2e2kd, .framer-hhr1V .framer-147s6p9, .framer-hhr1V .framer-xtrk4l, .framer-hhr1V .framer-14elv9v, .framer-hhr1V .framer-1bl37xa, .framer-hhr1V .framer-1ws11gg, .framer-hhr1V .framer-kpfwkh, .framer-hhr1V .framer-1uu5fqp, .framer-hhr1V .framer-1oj6azt, .framer-hhr1V .framer-fdqoyb, .framer-hhr1V .framer-1rtstbh, .framer-hhr1V .framer-i4b8kh, .framer-hhr1V .framer-1sgw7wf, .framer-hhr1V .framer-1o64n34, .framer-hhr1V .framer-a20co9, .framer-hhr1V .framer-cys217, .framer-hhr1V .framer-11gz3mf { --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-hhr1V .framer-4mneeh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-hhr1V .framer-1d3iqns-container, .framer-hhr1V .framer-17eo93k-container, .framer-hhr1V .framer-1iaazn4-container, .framer-hhr1V .framer-1uib1yu-container, .framer-hhr1V .framer-4zm7zl-container, .framer-hhr1V .framer-1ryvsmm-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-hhr1V .framer-15nhb1h { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 700px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-hhr1V .framer-104nouv-container { aspect-ratio: 1.7766497461928934 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 394px); position: relative; width: 1px; z-index: 1; }\",\".framer-hhr1V .framer-15xrwyl { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-1ankgkp-container, .framer-hhr1V .framer-19evw2h-container { flex: none; height: 64px; max-width: 1000px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-arfts3 { aspect-ratio: 1.0714285714285714 / 1; height: var(--framer-aspect-ratio-supported, 45px); overflow: hidden; position: relative; text-decoration: none; width: 48px; }\",\".framer-hhr1V .framer-1jbiy4x { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 181px; }\",\".framer-hhr1V .framer-66boqo { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 182px; }\",\".framer-hhr1V .framer-1prf9a { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 76px; }\",\".framer-hhr1V .framer-3vuipb { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 77px; }\",\".framer-hhr1V .framer-e4fsin { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 121px; }\",\".framer-hhr1V .framer-1owv900 { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 64px; }\",\".framer-hhr1V .framer-15wwl1u { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 103px; }\",\".framer-hhr1V .framer-1ag86ji, .framer-hhr1V .framer-fr7q4c { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 129px; }\",\".framer-hhr1V .framer-1vfavw3 { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 168px; }\",\".framer-hhr1V .framer-dx5ufi, .framer-hhr1V .framer-211d1h { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 115px; }\",\".framer-hhr1V .framer-1d2u999 { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 231px; }\",\".framer-hhr1V .framer-g0m2le, .framer-hhr1V .framer-1rgt0y6 { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 174px; }\",\".framer-hhr1V .framer-1rswnpj, .framer-hhr1V .framer-1seqy5o { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 105px; }\",\".framer-hhr1V .framer-jj5jj4 { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 152px; }\",\".framer-hhr1V .framer-18lev9b { height: 51px; overflow: hidden; position: relative; text-decoration: none; width: 74px; }\",\".framer-hhr1V .framer-1hbv8s1 { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 172px; }\",\".framer-hhr1V .framer-18jvz1r, .framer-hhr1V .framer-ujb31y { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 122px; }\",\".framer-hhr1V .framer-1n022l6, .framer-hhr1V .framer-1dv12cb { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 89px; }\",\".framer-hhr1V .framer-1kqgrhj { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 63px; }\",\".framer-hhr1V .framer-17p2bos { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 189px; }\",\".framer-hhr1V .framer-vmif4n { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 54px; }\",\".framer-hhr1V .framer-a9s7qd { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 135px; }\",\".framer-hhr1V .framer-paslke { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 141px; }\",\".framer-hhr1V .framer-1k1ug7d { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 42px; }\",\".framer-hhr1V .framer-f16biu { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 150px; }\",\".framer-hhr1V .framer-1pcbhsg { height: 48px; overflow: hidden; position: relative; text-decoration: none; width: 43px; }\",\".framer-hhr1V .framer-1eomq2r { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 145px; }\",\".framer-hhr1V .framer-ivq4nd { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 102px; }\",\".framer-hhr1V .framer-gdsx95 { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 130px; }\",\".framer-hhr1V .framer-18xdymk { height: 48px; overflow: hidden; position: relative; text-decoration: none; width: 48px; }\",\".framer-hhr1V .framer-1th94dr { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 136px; }\",\".framer-hhr1V .framer-1kgyrhv, .framer-hhr1V .framer-32ckqq, .framer-hhr1V .framer-1te0nqf { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 119px; }\",\".framer-hhr1V .framer-1mfn4yq, .framer-hhr1V .framer-o8ygtj { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 151px; }\",\".framer-hhr1V .framer-1xt3dvs { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 96px; }\",\".framer-hhr1V .framer-1ka8b0i, .framer-hhr1V .framer-soaze8, .framer-hhr1V .framer-9jcujz { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 48px); overflow: hidden; position: relative; text-decoration: none; width: 48px; }\",\".framer-hhr1V .framer-1u1yp4f { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 132px; }\",\".framer-hhr1V .framer-1ize9oq { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 166px; }\",\".framer-hhr1V .framer-2hfhea { height: 49px; overflow: hidden; position: relative; text-decoration: none; width: 76px; }\",\".framer-hhr1V .framer-1mpgxo2, .framer-hhr1V .framer-1w8qxe2 { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 229px; }\",\".framer-hhr1V .framer-g68sm1 { height: 44px; overflow: hidden; position: relative; text-decoration: none; width: 174px; }\",\".framer-hhr1V .framer-1r6swml { height: 44px; overflow: hidden; position: relative; text-decoration: none; width: 155px; }\",\".framer-hhr1V .framer-n9n3tb { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 171px; }\",\".framer-hhr1V .framer-1eowsby { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 140px; }\",\".framer-hhr1V .framer-kork1o { height: 49px; overflow: hidden; position: relative; text-decoration: none; width: 99px; }\",\".framer-hhr1V .framer-etl9b8 { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 131px; }\",\".framer-hhr1V .framer-1so79ug { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 244px; }\",\".framer-hhr1V .framer-6epk2l, .framer-hhr1V .framer-uese6w { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 146px; }\",\".framer-hhr1V .framer-hycrcz { aspect-ratio: 2.8974358974358974 / 1; height: var(--framer-aspect-ratio-supported, 42px); overflow: hidden; position: relative; text-decoration: none; width: 122px; }\",\".framer-hhr1V .framer-u7qzif { height: 43px; overflow: hidden; position: relative; text-decoration: none; width: 82px; }\",\".framer-hhr1V .framer-em73ts { height: 36px; overflow: hidden; position: relative; text-decoration: none; width: 126px; }\",\".framer-hhr1V .framer-1mkrvg6, .framer-hhr1V .framer-10awyh9 { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 108px; }\",\".framer-hhr1V .framer-d563k0 { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 91px; }\",\".framer-hhr1V .framer-18cr4db { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 90px; }\",\".framer-hhr1V .framer-b3kf5d { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 104px; }\",\".framer-hhr1V .framer-fgaj8u { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 114px; }\",\".framer-hhr1V .framer-sg54o9 { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 190px; }\",\".framer-hhr1V .framer-pn9i1w { aspect-ratio: 1.2380952380952381 / 1; height: var(--framer-aspect-ratio-supported, 49px); overflow: hidden; position: relative; text-decoration: none; width: 60px; }\",\".framer-hhr1V .framer-11rz8yr { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 175px; }\",\".framer-hhr1V .framer-19kok5y { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 161px; }\",\".framer-hhr1V .framer-1mnyojz { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 272px; }\",\".framer-hhr1V .framer-1y0vrlw { height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 97px; }\",\".framer-hhr1V .framer-17ldpmd { height: 48px; overflow: hidden; position: relative; text-decoration: none; width: 121px; }\",\".framer-hhr1V .framer-1gdv2tz { height: 48px; overflow: hidden; position: relative; text-decoration: none; width: 54px; }\",\".framer-hhr1V .framer-1pw6k0w { height: 48px; overflow: hidden; position: relative; text-decoration: none; width: 167px; }\",\".framer-hhr1V .framer-pb76ba { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 80px 100px 40px 100px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-9n76cx, .framer-hhr1V .framer-1co6r9z, .framer-hhr1V .framer-1omtkyj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-hhr1V .framer-1k4pd0r { align-content: center; align-items: center; aspect-ratio: 2.103049421661409 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 476px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-1fkeevp-container { aspect-ratio: 0.5287009063444109 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 378px); position: relative; width: 1px; }\",\".framer-hhr1V .framer-11vfsfj, .framer-hhr1V .framer-1tejlyb, .framer-hhr1V .framer-wcu5av, .framer-hhr1V .framer-1up1wb8, .framer-hhr1V .framer-1kptuc3, .framer-hhr1V .framer-14b25gp { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 742px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-hhr1V .framer-14ceugx-container, .framer-hhr1V .framer-q5tk2l-container, .framer-hhr1V .framer-je7g7g-container, .framer-hhr1V .framer-ph3ha0-container, .framer-hhr1V .framer-ryw07r-container, .framer-hhr1V .framer-1hhrw4i-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-hhr1V .framer-1190s3v { aspect-ratio: 0.6259780907668232 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 639px); position: relative; width: 100%; }\",\".framer-hhr1V .framer-wdg50q { aspect-ratio: 0.7797270955165692 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 513px); position: relative; width: 100%; }\",\".framer-hhr1V .framer-f7vn0g { aspect-ratio: 0.8771929824561403 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 456px); position: relative; width: 100%; }\",\".framer-hhr1V .framer-ps84i4 { aspect-ratio: 0.631911532385466 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 633px); position: relative; width: 100%; }\",\".framer-hhr1V .framer-gn00if { aspect-ratio: 0.6734006734006734 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 594px); position: relative; width: 100%; }\",\".framer-hhr1V .framer-12r461 { aspect-ratio: 0.9009009009009009 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 444px); position: relative; width: 100%; }\",\".framer-hhr1V .framer-233f3f-container { flex: 1 0 0px; height: 100%; max-width: 1000px; position: relative; width: 1px; }\",\".framer-hhr1V .framer-ruri2d { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-1jtksd2, .framer-hhr1V .framer-rcy7h8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1000px; position: relative; white-space: pre-wrap; width: 75%; word-break: break-word; word-wrap: break-word; }\",\".framer-hhr1V .framer-9wede7-container { flex: none; height: auto; max-width: 1000px; position: relative; width: 1000px; }\",\".framer-hhr1V .framer-1709owe, .framer-hhr1V .framer-1oce3n0, .framer-hhr1V .framer-1k9jdv4, .framer-hhr1V .framer-qj1w51, .framer-hhr1V .framer-15dvyfj, .framer-hhr1V .framer-1wvjtwc, .framer-hhr1V .framer-1ph5tom { --border-bottom-width: 1px; --border-color: #ebeced; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 250px; justify-content: flex-start; padding: 30px; position: relative; width: 490px; }\",\".framer-hhr1V .framer-xxqww, .framer-hhr1V .framer-1o083pz, .framer-hhr1V .framer-skvkph, .framer-hhr1V .framer-17djlf1, .framer-hhr1V .framer-ab3bhq, .framer-hhr1V .framer-pxlpqb, .framer-hhr1V .framer-nf9e1j, .framer-hhr1V .framer-lw5f83, .framer-hhr1V .framer-mixk2x, .framer-hhr1V .framer-n2drc4, .framer-hhr1V .framer-1g7aht4, .framer-hhr1V .framer-egjedc, .framer-hhr1V .framer-1yckx8w, .framer-hhr1V .framer-1puyiet, .framer-hhr1V .framer-1honqn3, .framer-hhr1V .framer-axi62y { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hhr1V .framer-ybj84u, .framer-hhr1V .framer-h9bree, .framer-hhr1V .framer-zopyr2, .framer-hhr1V .framer-1u7xhyv, .framer-hhr1V .framer-1j8sedg, .framer-hhr1V .framer-bqpltb, .framer-hhr1V .framer-1oqb6av, .framer-hhr1V .framer-re8o6, .framer-hhr1V .framer-131nxyq, .framer-hhr1V .framer-m5xly6, .framer-hhr1V .framer-1gvvuon, .framer-hhr1V .framer-3d3fsm, .framer-hhr1V .framer-19rpz6y, .framer-hhr1V .framer-1pjxku5, .framer-hhr1V .framer-7xz55c, .framer-hhr1V .framer-t2d4c7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-hhr1V .framer-15lhrrd, .framer-hhr1V .framer-1bvwk3l, .framer-hhr1V .framer-33bnt9, .framer-hhr1V .framer-u89of8, .framer-hhr1V .framer-12y7ia2, .framer-hhr1V .framer-kd6yab, .framer-hhr1V .framer-1eov6zk, .framer-hhr1V .framer-nimhbk, .framer-hhr1V .framer-1xzg6kp, .framer-hhr1V .framer-137elq4, .framer-hhr1V .framer-amdbki, .framer-hhr1V .framer-6cbmjn, .framer-hhr1V .framer-1jrwsrf, .framer-hhr1V .framer-10w3p40, .framer-hhr1V .framer-1fo0nne, .framer-hhr1V .framer-18j1gk { aspect-ratio: 1 / 1; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: hidden; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hhr1V .framer-1mh7g7u, .framer-hhr1V .framer-1vh4h5f, .framer-hhr1V .framer-1wm12ns, .framer-hhr1V .framer-iyinkf, .framer-hhr1V .framer-o9jcqs, .framer-hhr1V .framer-1cg5v44, .framer-hhr1V .framer-1fyv89l, .framer-hhr1V .framer-twh2od, .framer-hhr1V .framer-18iingt, .framer-hhr1V .framer-t8g6pj, .framer-hhr1V .framer-4wse8v, .framer-hhr1V .framer-cqvsht, .framer-hhr1V .framer-1pktwxe, .framer-hhr1V .framer-uy2rvr, .framer-hhr1V .framer-1ydc3mz, .framer-hhr1V .framer-1hb7fj7, .framer-hhr1V .framer-wmhc7s, .framer-hhr1V .framer-6bon3p, .framer-hhr1V .framer-ejapur, .framer-hhr1V .framer-qur2w, .framer-hhr1V .framer-2dauvw, .framer-hhr1V .framer-19ya72 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-hhr1V .framer-8egnjt { --border-bottom-width: 1px; --border-color: #ebeced; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 250px; justify-content: center; padding: 30px; position: relative; width: 490px; }\",\".framer-hhr1V .framer-1q4ymtc { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; }\",\".framer-hhr1V .framer-uk3dn2-container, .framer-hhr1V .framer-m7hf8b-container, .framer-hhr1V .framer-5tc2od-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-hhr1V .framer-stttmo, .framer-hhr1V .framer-1q4syd1, .framer-hhr1V .framer-1w7fgeo, .framer-hhr1V .framer-10jqdch, .framer-hhr1V .framer-nfxgf, .framer-hhr1V .framer-iv5rdx, .framer-hhr1V .framer-1oy22mx, .framer-hhr1V .framer-1ihm88i { --border-bottom-width: 1px; --border-color: #ebeced; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 330px; justify-content: flex-start; padding: 30px; position: relative; width: 320px; }\",\".framer-hhr1V .framer-1q0nz92, .framer-hhr1V .framer-nauy2z, .framer-hhr1V .framer-1gehxjv, .framer-hhr1V .framer-1n70489, .framer-hhr1V .framer-o65glk, .framer-hhr1V .framer-uf423h, .framer-hhr1V .framer-wro2ho, .framer-hhr1V .framer-z6xq8y, .framer-hhr1V .framer-wjx8u6, .framer-hhr1V .framer-12zuzt6, .framer-hhr1V .framer-13v7wzq, .framer-hhr1V .framer-11jxn62, .framer-hhr1V .framer-jqrrez, .framer-hhr1V .framer-n38hk1, .framer-hhr1V .framer-tsrwdf, .framer-hhr1V .framer-xzo3qm, .framer-hhr1V .framer-10ud3n5, .framer-hhr1V .framer-m2gur5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-hhr1V .framer-1k0029v { --border-bottom-width: 1px; --border-color: #ebeced; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 330px; justify-content: flex-start; padding: 30px; position: relative; width: 320px; }\",\".framer-hhr1V .framer-7zjp3c { --border-bottom-width: 1px; --border-color: #ebeced; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 330px; justify-content: flex-start; padding: 30px; position: relative; width: 320px; }\",\".framer-hhr1V .framer-h2n9wx { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 260px; }\",\".framer-hhr1V .framer-1q8lcxu { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-hhr1V .framer-73b5dj { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 100px 0px 100px 0px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-hhr1V .framer-1qm2nw2 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-1t7k6ni, .framer-hhr1V .framer-4ou1o1, .framer-hhr1V .framer-yuc09d, .framer-hhr1V .framer-c006z3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-hhr1V .framer-5dufh3, .framer-hhr1V .framer-1ofrbwv, .framer-hhr1V .framer-17jyzq6, .framer-hhr1V .framer-1rykcdg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-hhr1V .framer-autkzn, .framer-hhr1V .framer-dwz730, .framer-hhr1V .framer-18pzmg1, .framer-hhr1V .framer-1x77wdl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 80%; }\",\".framer-hhr1V .framer-sd5o7r, .framer-hhr1V .framer-1hi1qhq, .framer-hhr1V .framer-124hlyr, .framer-hhr1V .framer-123vw7e, .framer-hhr1V .framer-18kkoyd, .framer-hhr1V .framer-ckqyue, .framer-hhr1V .framer-ji2ys4, .framer-hhr1V .framer-1qfzoq0, .framer-hhr1V .framer-pqoymr, .framer-hhr1V .framer-1jfehlv, .framer-hhr1V .framer-5yjlde, .framer-hhr1V .framer-pqpv4g, .framer-hhr1V .framer-1boc252, .framer-hhr1V .framer-9kkqm6, .framer-hhr1V .framer-5qr42u, .framer-hhr1V .framer-16ygzie, .framer-hhr1V .framer-1cfy14p, .framer-hhr1V .framer-xwpv15, .framer-hhr1V .framer-oq5j0v, .framer-hhr1V .framer-16uexp4, .framer-hhr1V .framer-hcbpb3, .framer-hhr1V .framer-11o7s4u, .framer-hhr1V .framer-1xzivcm, .framer-hhr1V .framer-uy32cw, .framer-hhr1V .framer-bc4krr, .framer-hhr1V .framer-nmm7o9, .framer-hhr1V .framer-8judr7, .framer-hhr1V .framer-1w8ypwk, .framer-hhr1V .framer-40vqlv, .framer-hhr1V .framer-fglke4, .framer-hhr1V .framer-2fnhnt, .framer-hhr1V .framer-8l7jhf { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hhr1V .framer-1tnsdjq { align-content: center; align-items: center; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hhr1V .framer-wv420, .framer-hhr1V .framer-d9truq, .framer-hhr1V .framer-1lmqvpl, .framer-hhr1V .framer-fqf8yl { aspect-ratio: 1.5625 / 1; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: var(--framer-aspect-ratio-supported, 320px); overflow: visible; position: relative; width: 500px; }\",\".framer-hhr1V .framer-iczvcm { align-content: center; align-items: center; background-color: #c3dea5; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hhr1V .framer-17lunbo { align-content: center; align-items: center; background-color: #f9dca8; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hhr1V .framer-tduqrc { align-content: center; align-items: center; background-color: #fbc8a7; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hhr1V .framer-10qes8q { 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: visible; padding: 0px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-1tikz0v { align-content: center; align-items: center; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 40px; position: relative; width: 1000px; }\",\".framer-hhr1V .framer-1ygfye1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-hhr1V .framer-1w6z4gm { align-content: center; align-items: center; background-color: rgba(235, 241, 254, 0.8); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; box-shadow: 0px 0px 10px 4px var(--token-5b7ae43a-5a22-4f7f-8f16-35b6a29cc8ba, #ebf1fe); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 16px; position: relative; width: min-content; }\",\".framer-hhr1V .framer-p3uyhn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hhr1V.framer-e2037b, .framer-hhr1V.framer-1oh16t9 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 2; }\",\".framer-hhr1V.framer-1nrty6p, .framer-hhr1V.framer-p7880u { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; max-width: 830px; min-width: 300px; overflow: hidden; padding: 0px; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 75%; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-hhr1V .framer-b2fvv5-container, .framer-hhr1V .framer-lafad4-container { aspect-ratio: 1.2989045383411582 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 154px); position: relative; width: 100%; }\",\".framer-hhr1V .framer-19488j { align-content: center; align-items: center; background-color: #111111; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 160px 100px 160px 100px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-hhr1V .framer-ybpxsi-container, .framer-hhr1V .framer-tnxiwe-container { flex: none; height: auto; max-width: 1000px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-1ye15g9, .framer-hhr1V .framer-11fy4t3, .framer-hhr1V .framer-1e27zwm { --border-bottom-width: 1px; --border-color: #282a2d; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: 356px; justify-content: flex-start; padding: 30px; position: relative; width: 1000px; }\",\".framer-hhr1V .framer-n5ceky, .framer-hhr1V .framer-1461vc6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 29%; }\",\".framer-hhr1V .framer-ugpda6, .framer-hhr1V .framer-1nd28v3, .framer-hhr1V .framer-uqud66, .framer-hhr1V .framer-gw1jnm, .framer-hhr1V .framer-noctu7, .framer-hhr1V .framer-46x5ud, .framer-hhr1V .framer-x0fr7k, .framer-hhr1V .framer-mca6hn, .framer-hhr1V .framer-2c7w45 { --border-bottom-width: 1px; --border-color: #282a2d; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: hidden; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hhr1V .framer-xsuuot, .framer-hhr1V .framer-1ny7j0b, .framer-hhr1V .framer-tnt6c8, .framer-hhr1V .framer-1lnsdwf, .framer-hhr1V .framer-33re5f, .framer-hhr1V .framer-15fsv61 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 24px 0px 0px; position: relative; width: 1px; }\",\".framer-hhr1V .framer-1tv59tp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 29%; }\",\".framer-hhr1V .framer-158jzod, .framer-hhr1V .framer-8bla7p, .framer-hhr1V .framer-1ebgjxn { --border-bottom-width: 1px; --border-color: #282a2d; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: 510px; justify-content: flex-start; padding: 30px; position: relative; width: 730px; }\",\".framer-hhr1V .framer-1gu0emp, .framer-hhr1V .framer-i45y4p, .framer-hhr1V .framer-1o41md0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 30%; }\",\".framer-hhr1V .framer-nv8rzs, .framer-hhr1V .framer-xwqy7y, .framer-hhr1V .framer-14my8zp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-1fas0i7-container { flex: none; height: auto; max-width: 600px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-1fa2bfy, .framer-hhr1V .framer-1k0pfn8, .framer-hhr1V .framer-4kkqx4 { --border-bottom-width: 1px; --border-color: #282a2d; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 758px; justify-content: flex-start; padding: 30px; position: relative; width: 350px; }\",\".framer-hhr1V .framer-eogdxm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 290px; }\",\".framer-hhr1V .framer-uhxb3g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 290px; }\",\".framer-hhr1V .framer-fu6uid, .framer-hhr1V .framer-kq4ztm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-6wmzhh, .framer-hhr1V .framer-jfwpyn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-odqk84 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 320px; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-18b0h6m, .framer-hhr1V .framer-1idw5l9, .framer-hhr1V .framer-80g74w { align-content: center; align-items: center; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hhr1V .framer-8s6nyy { --border-bottom-width: 1px; --border-color: #3a283d; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: rgba(38, 24, 40, 0.6); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: flex-end; padding: 30px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-1yk67tk, .framer-hhr1V .framer-16fs4wt, .framer-hhr1V .framer-1rrfcxl { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); overflow: visible; position: relative; width: 80px; }\",\".framer-hhr1V .framer-2qssq6 { --border-bottom-width: 1px; --border-color: #282d3d; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: rgba(24, 28, 40, 0.6); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: flex-end; padding: 30px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-bi0glg { --border-bottom-width: 1px; --border-color: #243a3b; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: rgba(22, 37, 39, 0.6); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: flex-end; padding: 30px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-n0nv8g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 41px; justify-content: flex-end; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-g14z90 { align-content: center; align-items: center; background-color: #093f84; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-hhr1V .framer-ps9hh4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 1px; }\",\".framer-hhr1V .framer-1tjdp3h { aspect-ratio: 2.1749408983451537 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 210px); position: relative; width: 1px; }\",\".framer-hhr1V .framer-2q40gx { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 100px 0px 40px 0px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-hhr1V .framer-fb0837 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-1mypqig { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 2140px; justify-content: center; overflow: hidden; padding: 160px 0px 200px 0px; position: relative; width: 1px; }\",\".framer-hhr1V .framer-1io1ihr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hhr1V .framer-pu2tp1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 120px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-13u1rg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-3if4q2-container { flex: 1 0 0px; height: 49px; position: relative; width: 1px; }\",\".framer-hhr1V .framer-iwbkp6 { 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; min-height: 543px; overflow: auto; padding: 0px; position: relative; width: 1px; }\",\".framer-hhr1V .framer-9bykaz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 543px; justify-content: flex-start; overflow: visible; padding: 0px 40px 0px 24px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-hbrwfb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px; height: 100%; justify-content: flex-start; padding: 0px; position: relative; width: 320px; }\",\".framer-hhr1V .framer-1j4bnbt { aspect-ratio: 1 / 1; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: var(--framer-aspect-ratio-supported, 200px); position: relative; width: 100%; }\",\".framer-hhr1V .framer-16b9i5b { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 38%; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 1px; }\",\".framer-hhr1V .framer-19nyiw5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hhr1V .framer-1u7bnr3 { flex: 1 0 0px; height: 1px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hhr1V .framer-ueo1ak { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hhr1V .framer-1jto3lc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hhr1V .framer-u6piuh { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-hhr1V .framer-1kklsva-container { aspect-ratio: 0.78125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 640px); position: sticky; top: 120px; width: 500px; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-hhr1V[data-border=\"true\"]::after, .framer-hhr1V [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-hhr1V.framer-17331hd { background-color: #ebf1fb; width: 810px; } .framer-hhr1V .framer-nnwdmj { padding: 40px; } .framer-hhr1V .framer-1t1iwtr, .framer-hhr1V .framer-g14z90 { gap: 0px; } .framer-hhr1V .framer-edr0l { gap: 40px; } .framer-hhr1V .framer-15xrwyl { padding: 40px 40px 0px 40px; } .framer-hhr1V .framer-pb76ba, .framer-hhr1V .framer-ruri2d { padding: 80px 40px 0px 40px; } .framer-hhr1V .framer-9n76cx { max-width: 85%; order: 0; } .framer-hhr1V .framer-1k4pd0r { height: var(--framer-aspect-ratio-supported, 405px); order: 1; } .framer-hhr1V .framer-1co6r9z { order: 0; } .framer-hhr1V .framer-1jtksd2 { order: 1; } .framer-hhr1V .framer-uk3dn2-container { order: 3; } .framer-hhr1V .framer-73b5dj { padding: 80px 40px 60px 40px; } .framer-hhr1V .framer-1qm2nw2 { gap: 60px; max-width: 580px; } .framer-hhr1V .framer-ibcle0, .framer-hhr1V .framer-6yd7vp, .framer-hhr1V .framer-1u4oag1, .framer-hhr1V .framer-1fg5dlx { flex-direction: column; flex-wrap: nowrap; gap: 20px; } .framer-hhr1V .framer-1t7k6ni, .framer-hhr1V .framer-yuc09d { flex: none; order: 1; width: 100%; } .framer-hhr1V .framer-5dufh3, .framer-hhr1V .framer-autkzn, .framer-hhr1V .framer-sd5o7r, .framer-hhr1V .framer-1hi1qhq, .framer-hhr1V .framer-124hlyr, .framer-hhr1V .framer-1ofrbwv, .framer-hhr1V .framer-dwz730, .framer-hhr1V .framer-123vw7e, .framer-hhr1V .framer-18kkoyd, .framer-hhr1V .framer-ckqyue, .framer-hhr1V .framer-17jyzq6, .framer-hhr1V .framer-18pzmg1, .framer-hhr1V .framer-ji2ys4, .framer-hhr1V .framer-1qfzoq0, .framer-hhr1V .framer-1rykcdg, .framer-hhr1V .framer-1x77wdl, .framer-hhr1V .framer-pqoymr, .framer-hhr1V .framer-1jfehlv, .framer-hhr1V .framer-5yjlde { width: 95%; } .framer-hhr1V .framer-1tnsdjq, .framer-hhr1V .framer-17lunbo { flex: none; order: 0; width: 100%; } .framer-hhr1V .framer-wv420 { align-content: center; align-items: center; aspect-ratio: 1.5614973262032086 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 372px); justify-content: center; padding: 0px; width: 1px; } .framer-hhr1V .framer-iczvcm, .framer-hhr1V .framer-4ou1o1, .framer-hhr1V .framer-tduqrc, .framer-hhr1V .framer-c006z3 { flex: none; width: 100%; } .framer-hhr1V .framer-d9truq { aspect-ratio: 1.563169164882227 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 372px); width: 1px; } .framer-hhr1V .framer-1lmqvpl, .framer-hhr1V .framer-fqf8yl { aspect-ratio: 1.563169164882227 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 371px); width: 1px; } .framer-hhr1V .framer-10qes8q { padding: 0px 40px 40px 40px; } .framer-hhr1V.framer-1nrty6p, .framer-hhr1V.framer-p7880u { width: 90%; } .framer-hhr1V .framer-19488j { padding: 80px 40px 80px 40px; } .framer-hhr1V .framer-odqk84 { flex-wrap: wrap; height: 360px; } .framer-hhr1V .framer-18b0h6m, .framer-hhr1V .framer-1idw5l9, .framer-hhr1V .framer-80g74w { height: 360px; } .framer-hhr1V .framer-1tjdp3h { aspect-ratio: unset; height: 225px; } .framer-hhr1V .framer-2q40gx { gap: 40px; padding: 80px 40px 20px 40px; } .framer-hhr1V .framer-fb0837 { gap: 24px; max-width: unset; } .framer-hhr1V .framer-1mypqig { height: 2000px; padding: 40px 0px 80px 0px; } .framer-hhr1V .framer-1kklsva-container { aspect-ratio: unset; height: 500px; width: 360px; }}\",\"@media (max-width: 809px) { .framer-hhr1V.framer-17331hd { background-color: #ebf1fb; width: 390px; } .framer-hhr1V .framer-1ew18wf-container { order: 0; } .framer-hhr1V .framer-nnwdmj { gap: 20px; order: 1; padding: 60px 20px 20px 20px; } .framer-hhr1V .framer-1t1iwtr { gap: 0px; } .framer-hhr1V .framer-1rpeidg { flex-direction: column; gap: 20px; } .framer-hhr1V .framer-edr0l, .framer-hhr1V .framer-17lunbo { flex: none; order: 0; width: 100%; } .framer-hhr1V .framer-ma54aj { align-content: flex-start; align-items: flex-start; } .framer-hhr1V .framer-cuzded { max-width: 500px; } .framer-hhr1V .framer-104nouv-container { height: var(--framer-aspect-ratio-supported, 197px); } .framer-hhr1V .framer-15xrwyl { order: 2; padding: 40px 20px 0px 20px; } .framer-hhr1V .framer-pb76ba { order: 3; padding: 60px 20px 0px 20px; } .framer-hhr1V .framer-9n76cx, .framer-hhr1V .framer-1co6r9z, .framer-hhr1V .framer-1omtkyj { max-width: 600px; } .framer-hhr1V .framer-1k4pd0r { aspect-ratio: unset; flex-direction: column; height: min-content; } .framer-hhr1V .framer-1fkeevp-container { flex: none; height: var(--framer-aspect-ratio-supported, 662px); width: 100%; } .framer-hhr1V .framer-ruri2d { order: 4; padding: 60px 20px 0px 20px; } .framer-hhr1V .framer-1jtksd2 { max-width: 600px; width: 100%; } .framer-hhr1V .framer-73b5dj { gap: 20px; order: 5; padding: 60px 20px 60px 20px; scroll-margin-top: 160px; } .framer-hhr1V .framer-1qm2nw2 { gap: 60px; max-width: 600px; } .framer-hhr1V .framer-ibcle0, .framer-hhr1V .framer-6yd7vp, .framer-hhr1V .framer-1u4oag1, .framer-hhr1V .framer-1fg5dlx { flex-direction: column; gap: 24px; } .framer-hhr1V .framer-1t7k6ni, .framer-hhr1V .framer-yuc09d { flex: none; order: 1; width: 100%; } .framer-hhr1V .framer-5dufh3, .framer-hhr1V .framer-autkzn, .framer-hhr1V .framer-1ofrbwv, .framer-hhr1V .framer-dwz730, .framer-hhr1V .framer-17jyzq6, .framer-hhr1V .framer-18pzmg1, .framer-hhr1V .framer-1rykcdg, .framer-hhr1V .framer-1x77wdl { width: 100%; } .framer-hhr1V .framer-1tnsdjq { background-color: #c1e0c4; flex: none; order: 0; width: 100%; } .framer-hhr1V .framer-wv420, .framer-hhr1V .framer-d9truq, .framer-hhr1V .framer-1lmqvpl, .framer-hhr1V .framer-fqf8yl { aspect-ratio: 1.3257575757575757 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 264px); max-width: 350px; width: 1px; } .framer-hhr1V .framer-iczvcm, .framer-hhr1V .framer-tduqrc, .framer-hhr1V .framer-1ygfye1 { flex: none; width: 100%; } .framer-hhr1V .framer-4ou1o1, .framer-hhr1V .framer-c006z3 { align-content: flex-start; align-items: flex-start; flex: none; width: 100%; } .framer-hhr1V .framer-10qes8q { flex-direction: column; order: 6; padding: 0px 20px 60px 20px; } .framer-hhr1V .framer-1tikz0v { flex-direction: column; gap: 29px; max-width: 600px; width: 100%; } .framer-hhr1V.framer-1nrty6p, .framer-hhr1V.framer-p7880u { width: 90%; } .framer-hhr1V .framer-19488j { order: 7; padding: 80px 20px 80px 20px; scroll-margin-top: 160px; } .framer-hhr1V .framer-rcy7h8 { max-width: 600px; width: 101%; } .framer-hhr1V .framer-odqk84 { flex-direction: column; height: min-content; max-width: 600px; } .framer-hhr1V .framer-18b0h6m, .framer-hhr1V .framer-1idw5l9, .framer-hhr1V .framer-80g74w { flex: none; height: 300px; width: 100%; } .framer-hhr1V .framer-n0nv8g { justify-content: center; } .framer-hhr1V .framer-g14z90 { flex-direction: column; } .framer-hhr1V .framer-ps9hh4 { align-content: center; align-items: center; flex: none; padding: 40px 40px 0px 40px; width: 100%; } .framer-hhr1V .framer-1tjdp3h { flex: none; height: var(--framer-aspect-ratio-supported, 161px); width: 100%; } .framer-hhr1V .framer-2q40gx { gap: 20px; order: 8; overflow: auto; padding: 60px 0px 60px 0px; scroll-margin-top: 160px; z-index: 1; } .framer-hhr1V .framer-fb0837 { align-content: center; align-items: center; flex-direction: column; gap: 24px; justify-content: flex-start; max-width: unset; overflow: auto; position: sticky; top: 80px; z-index: 1; } .framer-hhr1V .framer-1mypqig { flex: none; height: min-content; justify-content: flex-start; order: 1; overflow: visible; padding: 0px 24px 0px 24px; width: 100%; z-index: 1; } .framer-hhr1V .framer-1io1ihr { max-width: 600px; order: 0; z-index: 1; } .framer-hhr1V .framer-iwbkp6 { flex: none; min-height: unset; order: 2; width: 100%; } .framer-hhr1V .framer-1j4bnbt { height: var(--framer-aspect-ratio-supported, 320px); } .framer-hhr1V .framer-m7hf8b-container { order: 9; } .framer-hhr1V .framer-5tc2od-container { order: 10; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8910\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"tiKaMPpAe\":{\"layout\":[\"fixed\",\"auto\"]},\"ZZrQIoph1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"fgPpRBDa_\":{\"pattern\":\":fgPpRBDa_\",\"name\":\"home\"},\"gikQd56Wz\":{\"pattern\":\":gikQd56Wz\",\"name\":\"\"},\"nOSEH_Aqo\":{\"pattern\":\":nOSEH_Aqo\",\"name\":\"admin\"},\"W3KcjXNKe\":{\"pattern\":\":W3KcjXNKe\",\"name\":\"features\"},\"ngnHb9gev\":{\"pattern\":\":IGMQiLGMC-:ngnHb9gev\",\"name\":\"feature\",\"slugs\":{\"IGMQiLGMC\":{\"identifier\":\"local-module:collection/rwHAVA9RL:default\",\"provider\":\"IC3vl3E1W\"}}}}\n * @framerResponsiveScreen\n */const FramerXVWZCkKkn=withCSS(Component,css,\"framer-hhr1V\");export default FramerXVWZCkKkn;FramerXVWZCkKkn.displayName=\"Home\";FramerXVWZCkKkn.defaultProps={height:8910,width:1200};addFonts(FramerXVWZCkKkn,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v19/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_A87jxeN7B.woff2\",weight:\"700\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v19/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_A87jxeN7B.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v19/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_A87jxeN7B.woff2\",weight:\"500\"}]},...DRAFTUpdatedNavBarFonts,...CTAButtonFonts,...EmbedFonts,...TickerFonts,...SubjectFonts,...SlideshowFonts,...SubjectExampleScrollerFonts,...UseCasesButtonFonts,...CarouselFonts,...SecurityButtonFonts,...FeatureDescriptionFonts,...FeaturesImagesManualFonts,...CTASectionFonts,...DRAFTUpdatedFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXVWZCkKkn\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"8910\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"fgPpRBDa_\\\":{\\\"pattern\\\":\\\":fgPpRBDa_\\\",\\\"name\\\":\\\"home\\\"},\\\"gikQd56Wz\\\":{\\\"pattern\\\":\\\":gikQd56Wz\\\",\\\"name\\\":\\\"\\\"},\\\"nOSEH_Aqo\\\":{\\\"pattern\\\":\\\":nOSEH_Aqo\\\",\\\"name\\\":\\\"admin\\\"},\\\"W3KcjXNKe\\\":{\\\"pattern\\\":\\\":W3KcjXNKe\\\",\\\"name\\\":\\\"features\\\"},\\\"ngnHb9gev\\\":{\\\"pattern\\\":\\\":IGMQiLGMC-:ngnHb9gev\\\",\\\"name\\\":\\\"feature\\\",\\\"slugs\\\":{\\\"IGMQiLGMC\\\":{\\\"identifier\\\":\\\"local-module:collection/rwHAVA9RL:default\\\",\\\"provider\\\":\\\"IC3vl3E1W\\\"}}}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tiKaMPpAe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZZrQIoph1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "FeatherFonts", "getFonts", "Icon", "LottieFonts", "Lottie", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "direction", "height", "id", "width", "props", "_humanReadableEnumMap_direction", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "uHdKBLTd7", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1lopqmm", "args", "onTapwf8f97", "onTap1kvqhos", "onTap1il23rh", "onTap10b8ntv", "onTap5jiytv", "onTap1icpi32", "onMouseEnterwf8f97", "onMouseEnter1ktnnn0", "onMouseEntergum63g", "onMouseEnterrz5x7j", "onMouseEnter163zz8i", "onMouseEnter1l72qyg", "onMouseLeave1kvqhos", "onMouseLeave1lopqmm", "onMouseLeave1il23rh", "onMouseLeave10b8ntv", "onMouseLeave5jiytv", "onMouseLeave1icpi32", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText", "Link", "Image2", "css", "FramercOy6SoC7m", "withCSS", "cOy6SoC7m_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "title", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "IwD6hBfTr", "nQwc08z0_", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText", "css", "FramerDcDxxV0wT", "withCSS", "DcDxxV0wT_default", "addPropertyControls", "ControlType", "addFonts", "FeatherFonts", "getFonts", "Icon", "FeatherControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "background", "click", "click10", "click11", "click12", "click13", "click2", "click3", "click4", "click5", "click6", "click7", "click8", "click9", "color", "height", "icon", "id", "link", "subject", "text", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableEnumMap_icon", "_ref3", "_ref4", "_ref5", "_humanReadableVariantMap_props_variant", "_ref6", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "LyYPscGeG", "r55EN1JW4", "AH9mQoLCa", "dhjHlo33y", "aFMn5WbEm", "ZAWZ_kHdV", "AeETpdJTW", "cXanouiXA", "nJeTuotMs", "uk4QOCLvY", "WLFb8uaWX", "JtoxAGFwc", "Wue2VlUNZ", "nhdfV_A6m", "kKNuyn8Ti", "ENR_BAI69", "VRe8hGpCz", "cotmbf8gP", "wwAyHawPS", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapdkirdk", "args", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText", "Link", "css", "FramerKQERLBVX5", "withCSS", "KQERLBVX5_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "background", "background2", "height", "id", "link", "shadow", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "AnelZu8P6", "WoLp7XcbU", "QBYEA2nvt", "VzskGXVsb", "w0Sbpn7Yb", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "RichText", "css", "FramervQlXUXHkQ", "withCSS", "vQlXUXHkQ_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "FramerxeuYGG01W", "withCSS", "xeuYGG01W_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "EckjdVGxn", "CcAOxzL7c", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText", "css", "FramerZGE0zunRA", "withCSS", "ZGE0zunRA_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "DRAFTUpdatedNavBarFonts", "getFonts", "nFbcpgXef_default", "DRAFTUpdatedNavBarWithVariantAppearEffect", "withVariantAppearEffect", "CTAButtonFonts", "dN8ZgbtUB_default", "EmbedFonts", "Embed", "TickerFonts", "Ticker", "SubjectFonts", "KQERLBVX5_default", "SlideshowFonts", "Slideshow", "SubjectExampleScrollerFonts", "cOy6SoC7m_default", "SubjectExampleScrollerWithVariantAppearEffect", "UseCasesButtonFonts", "DcDxxV0wT_default", "CarouselFonts", "Carousel", "SecurityButtonFonts", "vQlXUXHkQ_default", "FeatureDescriptionFonts", "ZGE0zunRA_default", "FeatureDescriptionWithVariantAppearEffect", "ContainerWithFX", "withFX", "Container", "MotionDivWithFX", "motion", "FeaturesImagesManualFonts", "xeuYGG01W_default", "FeaturesImagesManualWithVariantAppearEffect", "CTASectionFonts", "z_cOlMNeG_default", "DRAFTUpdatedFooterFonts", "IwKSoIYAa_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "QueryData", "query", "pageSize", "data", "useQueryData", "animation", "transition1", "animation1", "toResponsiveImage", "value", "numberToString", "options", "activeLocale", "fallbackLocale", "locale", "useGrouping", "notation", "compactDisplay", "style", "currency", "currencyDisplay", "unit", "unitDisplay", "minimumFractionDigits", "maximumFractionDigits", "minimumIntegerDigits", "formatOptions", "number", "transformTemplate1", "_", "t", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "className", "layoutId", "variant", "IGMQiLGMCIC3vl3E1W", "JSZ05joHHIC3vl3E1W", "idIC3vl3E1W", "MHLEIZG8ybzF0XSn7j", "JSZ05joHHbzF0XSn7j", "CjfxNGRKLbzF0XSn7j", "xzzuMWW2bbzF0XSn7j", "IGMQiLGMCbzF0XSn7j", "idbzF0XSn7j", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "scudbGgOT3bnx0g", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "isDisplayed3", "elementId1", "ref2", "elementId2", "ref3", "isDisplayed4", "elementId3", "ref4", "elementId4", "dynamicRef", "useDynamicRefs", "activeLocaleCode", "useLocaleCode", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "Image2", "x", "RichText", "Link", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "l", "AnimatePresence", "Ga", "resolvedLinks8", "resolvedLinks9", "ChildrenCanSuspend", "rwHAVA9RL_default", "collection", "paginationInfo", "index", "PathVariablesContext", "collection1", "paginationInfo1", "loadMore1", "index1", "textContent", "overlay1", "css", "FramerXVWZCkKkn", "withCSS", "XVWZCkKkn_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
