{"version":3,"file":"AQ1axYsa6.C4uDNFUz.mjs","names":["size","className","Image","css"],"sources":["https:/framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js","https:/framerusercontent.com/modules/qtHhOCYhKVCH0gZjbW6d/pqWqgLzE5c6bYoxcyKEt/AQ1axYsa6.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const MAX_AREA=5e6;const CSS_VAR_NAME=\"--ticker-offset\";const supportsWaapi=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";let supportsRegisterProperty=true;if(typeof window!==\"undefined\"){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){supportsRegisterProperty=false;}}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const axis=isHorizontal?\"X\":\"Y\";const minus=direction===\"left\"||direction===\"top\"?\"-\":\"\";const transform=useTransform(()=>`translate${axis}(${minus}${offset.get()}px)`);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null,childrenArea:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}const fullChildrenArea=size.childrenArea===null?null:size.childrenArea*(duplicateBy+1);const isLayerTooBig=fullChildrenArea===null?null:fullChildrenArea>MAX_AREA;/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const[firstChild,lastChild]=childrenRef;const childrenLeft=firstChild.current?firstChild.current.offsetLeft:0;const childrenRight=lastChild.current?lastChild.current.offsetLeft+lastChild.current.offsetWidth:0;const childrenTop=firstChild.current?firstChild.current.offsetTop:0;const childrenBottom=lastChild.current?lastChild.current.offsetTop+lastChild.current.offsetHeight:0;const childrenWidth=childrenRight-childrenLeft;const childrenHeight=childrenBottom-childrenTop;const childrenArea=childrenWidth*childrenHeight;const childrenLength=(isHorizontal?childrenWidth:childrenHeight)+gap;setSize({parent:parentLength,children:childrenLength,childrenArea});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})},index+\"-original\");});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:isLayerTooBig===true?\"auto\":\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsWaapi&&(!isLayerTooBig||isLayerTooBig&&supportsRegisterProperty)){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed||isLayerTooBig===null){return;}if(isLayerTooBig){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){}}/**\n                 * If the layer is too big we want to animate a CSS variable instead of the transform\n                 * to avoid promoting the layer to the GPU.\n                 */const keyframes=isLayerTooBig?{[CSS_VAR_NAME]:[\"0px\",`${minus}${animateToValue}px`]}:{transform:[`translate${axis}(0px)`,`translate${axis}(${minus}${animateToValue}px)`]};animationRef.current=listRef.current.animate(keyframes,{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed,isLayerTooBig]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsWaapi){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"✨\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||isLayerTooBig?\"auto\":\"transform\",transform:supportsWaapi?isLayerTooBig?`translate${axis}(var(${CSS_VAR_NAME}))`:\"none\":transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map","// Generated by Framer (ee31e22)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/4LdNz8NIJKNzZXBM9U9a/x4mSxJaHAXTbawmWk36z/iaUverFYE.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/9zcjqjXMIKLCdgD78XJ4/2o7ctNw2LUmXp25rEbFR/JDqCVefYJ.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"SgU7IBZcQ\",\"kSZO_ijsi\"];const serializationHash=\"framer-mMNtV\";const variantClassNames={kSZO_ijsi:\"framer-v-vd3wr2\",SgU7IBZcQ:\"framer-v-5xj5l1\"};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 equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};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={Desktop:\"SgU7IBZcQ\",Mobile:\"kSZO_ijsi\"};const getProps=({height,id,text,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"SgU7IBZcQ\",ZxGmKAzJs:text??props.ZxGmKAzJs??\"Trusted by students at top schools\"};};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,ZxGmKAzJs,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SgU7IBZcQ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"kSZO_ijsi\")return false;return true;};const visible=equals(activeLocale?.id,\"default\");const visible1=equals(activeLocale?.id,\"x7BYmUInu\");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-5xj5l1\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"SgU7IBZcQ\",ref:refBinding,style:{...style},...addPropertyOverrides({kSZO_ijsi:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hqeshy\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"jlU9kgLyF\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1re33l5\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"J5F9UgU69\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tqvzbo\",\"data-framer-name\":\"hr\",layoutDependency:layoutDependency,layoutId:\"U06QO94pI\",style:{backgroundColor:\"var(--token-1fb17d4a-a12d-4552-9431-5009236effce, rgba(0, 0, 0, 0.1))\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-derroh\",\"data-styles-preset\":\"JDqCVefYJ\",children:\"Trusted by students at top schools\"})}),className:\"framer-g63c1u\",\"data-framer-name\":\"Trusted by students at top schools\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XPlvq8sq8\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:ZxGmKAzJs,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kSZO_ijsi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-derroh\",\"data-styles-preset\":\"JDqCVefYJ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Trusted by students at top schools\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bpmadw\",\"data-framer-name\":\"hr\",layoutDependency:layoutDependency,layoutId:\"t9njRBWk4\",style:{backgroundColor:\"var(--token-1fb17d4a-a12d-4552-9431-5009236effce, rgba(0, 0, 0, 0.1))\"}})]})}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-h0o0xd-container\",\"data-framer-name\":\"Ticker UK\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"l8MP2KGuM-container\",name:\"Ticker UK\",nodeId:\"l8MP2KGuM\",rendersWithMotion:true,scopeId:\"AQ1axYsa6\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",hoverFactor:1,id:\"l8MP2KGuM\",layoutId:\"l8MP2KGuM\",name:\"Ticker UK\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k1zje4\",\"data-framer-name\":\"UK School 1\",layoutDependency:layoutDependency,layoutId:\"SEMuWiexC\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Brampton Manor Academy logo\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ase8JtKL6oLkYj6FHupgLnvAk.png\"},className:\"framer-1wrg7td\",\"data-framer-name\":\"image 199\",layoutDependency:layoutDependency,layoutId:\"ZNdEYFb2t\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"Brampton Manor Academy\"})}),className:\"framer-5xgbkd\",\"data-framer-name\":\"Brampton Manor Academy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lYRL3fCyi\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ezoukn\",\"data-framer-name\":\"UK School 2\",layoutDependency:layoutDependency,layoutId:\"DBYw517P5\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"St Paul's School logo\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SeRkSbggVipCpRJR3eUoMvWtMk.png\"},className:\"framer-4exzzt\",\"data-framer-name\":\"image 197\",layoutDependency:layoutDependency,layoutId:\"VQYXQTT7t\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"St. Paul's School\"})}),className:\"framer-ogkujv\",\"data-framer-name\":\"St. Paul's School\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ODmdDCPMN\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a739xw\",\"data-framer-name\":\"UK School 3\",layoutDependency:layoutDependency,layoutId:\"CRAJovIep\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Newham Collegiate Sixth Form logo\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tmOSTSW70IgJNQITQpBE4sSxo4.png\"},className:\"framer-1oyiq3b\",\"data-framer-name\":\"image 198\",layoutDependency:layoutDependency,layoutId:\"If9b9zbOL\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"Newham Collegiate Sixth Form\"})}),className:\"framer-1mndbv6\",\"data-framer-name\":\"Newham Collegiate Sixth Form\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DvjvBwyU2\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-irouke\",\"data-framer-name\":\"UK School 4\",layoutDependency:layoutDependency,layoutId:\"jMwwejdy4\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Westminster School logo\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/W9HipshpT03dWW1f1vIjfRbqFrM.png\"},className:\"framer-164gkzo\",\"data-framer-name\":\"image 67\",layoutDependency:layoutDependency,layoutId:\"whlW4YBGM\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"Westminster School\"})}),className:\"framer-kibtos\",\"data-framer-name\":\"Westminster School\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"npsDWgwkc\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dtyid6\",\"data-framer-name\":\"UK School 5\",layoutDependency:layoutDependency,layoutId:\"dNZEObzBE\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Colchester County High School logo\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/QHrwKDXEByaleEYT44vFWwn5uk.png\"},className:\"framer-1tfotl1\",\"data-framer-name\":\"image 200\",layoutDependency:layoutDependency,layoutId:\"MklmaVG0k\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"Colchester County High School\"})}),className:\"framer-86ii6h\",\"data-framer-name\":\"Colchester County High School\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KJjq5iXNU\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v075c5\",\"data-framer-name\":\"UK School 6\",layoutDependency:layoutDependency,layoutId:\"sdDEDGYmM\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Concord College logo\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9rbTtoDLxvQAXgOpxoZDeUbEGpQ.png\"},className:\"framer-5izqtn\",\"data-framer-name\":\"image 196\",layoutDependency:layoutDependency,layoutId:\"U8JQaszIw\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"Concord College\"})}),className:\"framer-bvmpc1\",\"data-framer-name\":\"Concord College\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NBbup0GFU\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h090v6\",\"data-framer-name\":\"UK School 7\",layoutDependency:layoutDependency,layoutId:\"o5WYQUcwW\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Tonbridge School logo\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/lbAwYh6Iq4h5C80xf6FzIxEKglE.png\"},className:\"framer-mw8o60\",\"data-framer-name\":\"image 196\",layoutDependency:layoutDependency,layoutId:\"va5WSAkZZ\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"Tonbridge School\"})}),className:\"framer-1ov5r54\",\"data-framer-name\":\"Concord College\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SyQKofikO\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})],speed:50,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({kSZO_ijsi:{fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false}}},baseVariant,gestureVariant)})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vcxb4n-container\",\"data-framer-name\":\"Ticker ANZ\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Pl3Zf01UG-container\",name:\"Ticker ANZ\",nodeId:\"Pl3Zf01UG\",rendersWithMotion:true,scopeId:\"AQ1axYsa6\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",hoverFactor:1,id:\"Pl3Zf01UG\",layoutId:\"Pl3Zf01UG\",name:\"Ticker ANZ\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fv8buy\",\"data-framer-name\":\"ANZ School 1\",layoutDependency:layoutDependency,layoutId:\"kUDreO49W\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Sydney Boys High School logo\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/scDBJbz7phDRF9L64osljUnTg.png\"},className:\"framer-ifigez\",\"data-framer-name\":\"image 199\",layoutDependency:layoutDependency,layoutId:\"eL3PDLF7d\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"Sydney Boys High School\"})}),className:\"framer-1l78uxz\",\"data-framer-name\":\"Brampton Manor Academy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hmiB7O17L\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fbl5uh\",\"data-framer-name\":\"ANZ School 2\",layoutDependency:layoutDependency,layoutId:\"R0eCRh1MW\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Pembroke School logo\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Tb4qBIbOAPaz7fmY3WEkqAYKKY.png\"},className:\"framer-1c9at77\",\"data-framer-name\":\"image 197\",layoutDependency:layoutDependency,layoutId:\"qGl9H0nQt\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"Pembroke School\"})}),className:\"framer-1iian6x\",\"data-framer-name\":\"St. Paul's School\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"z6bta_RXa\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fdce22\",\"data-framer-name\":\"ANZ School 3\",layoutDependency:layoutDependency,layoutId:\"B0PU1Y7U2\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"St Hilda’s School Gold Coast logo\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/skyXXWfxvZArjCKidwWcW1FHo8w.png\"},className:\"framer-16o2s8m\",\"data-framer-name\":\"image 198\",layoutDependency:layoutDependency,layoutId:\"WLTHgkDk4\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"St Hilda’s School Gold Coast\"})}),className:\"framer-l1nci7\",\"data-framer-name\":\"Newham Collegiate Sixth Form\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SzTgEr4TF\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x059ey\",\"data-framer-name\":\"ANZ School 4\",layoutDependency:layoutDependency,layoutId:\"db71kDzhW\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Melbourne High School logo\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/VTt8IWyQ67sVUEK1BgYqykiQo.png\"},className:\"framer-l0eesq\",\"data-framer-name\":\"image 67\",layoutDependency:layoutDependency,layoutId:\"KUEzfOgUD\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"John Monash Science School\"})}),className:\"framer-95fh3b\",\"data-framer-name\":\"Westminster School\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ygspEWdg0\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c7cccw\",\"data-framer-name\":\"ANZ School 5\",layoutDependency:layoutDependency,layoutId:\"qZapABBIa\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Kristin School logo\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9X4q8QJEIrcDO4nXqE3WZZCW1k.png\"},className:\"framer-36l6fq\",\"data-framer-name\":\"image 200\",layoutDependency:layoutDependency,layoutId:\"U92vSRJ5I\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"Kristin School\"})}),className:\"framer-jokzax\",\"data-framer-name\":\"Colchester County High School\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"agliPmOrY\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u9xc71\",\"data-framer-name\":\"ANZ School 6\",layoutDependency:layoutDependency,layoutId:\"hWKfh44z0\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Abbotsleigh Logo\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/v9y9BAviQflJ0R6gBK4SJcfyxs.png\"},className:\"framer-5jqpq1\",\"data-framer-name\":\"image 196\",layoutDependency:layoutDependency,layoutId:\"svQO5KymK\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"Prince Alfred College\"})}),className:\"framer-10b4d0u\",\"data-framer-name\":\"Concord College\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WOSikjjp4\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mibygx\",\"data-framer-name\":\"ANZ School 7\",layoutDependency:layoutDependency,layoutId:\"reMKddMRF\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Kings Christian College logo\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JCmRaH8IXwPm0kPqwFqiyVv9To.png\"},className:\"framer-1eam96o\",\"data-framer-name\":\"image 196\",layoutDependency:layoutDependency,layoutId:\"oOpcT26ph\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"Kings Christian College\"})}),className:\"framer-1cw9ggs\",\"data-framer-name\":\"Concord College\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b5fjr3fTd\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})],speed:50,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mMNtV.framer-1rrah5w, .framer-mMNtV .framer-1rrah5w { display: block; }\",\".framer-mMNtV.framer-5xj5l1 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 1440px; }\",\".framer-mMNtV .framer-hqeshy { 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 40px 0px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-mMNtV .framer-1re33l5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1024px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mMNtV .framer-1tqvzbo, .framer-mMNtV .framer-1bpmadw { flex: 1 0 0px; height: 1px; position: relative; width: 1px; }\",\".framer-mMNtV .framer-g63c1u { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-mMNtV .framer-h0o0xd-container, .framer-mMNtV .framer-vcxb4n-container { flex: none; height: 112px; max-width: 1024px; position: relative; width: 100%; z-index: 1; }\",\".framer-mMNtV .framer-1k1zje4, .framer-mMNtV .framer-1ezoukn, .framer-mMNtV .framer-1a739xw, .framer-mMNtV .framer-irouke, .framer-mMNtV .framer-1dtyid6, .framer-mMNtV .framer-1v075c5, .framer-mMNtV .framer-1h090v6, .framer-mMNtV .framer-fv8buy, .framer-mMNtV .framer-1fbl5uh, .framer-mMNtV .framer-1fdce22, .framer-mMNtV .framer-1x059ey, .framer-mMNtV .framer-1c7cccw, .framer-mMNtV .framer-u9xc71, .framer-mMNtV .framer-mibygx { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 128px; }\",\".framer-mMNtV .framer-1wrg7td, .framer-mMNtV .framer-4exzzt, .framer-mMNtV .framer-1oyiq3b, .framer-mMNtV .framer-164gkzo, .framer-mMNtV .framer-1tfotl1, .framer-mMNtV .framer-5izqtn, .framer-mMNtV .framer-mw8o60, .framer-mMNtV .framer-ifigez, .framer-mMNtV .framer-1c9at77, .framer-mMNtV .framer-16o2s8m, .framer-mMNtV .framer-l0eesq, .framer-mMNtV .framer-36l6fq, .framer-mMNtV .framer-5jqpq1, .framer-mMNtV .framer-1eam96o { flex: none; height: 64px; position: relative; width: 96px; }\",\".framer-mMNtV .framer-5xgbkd, .framer-mMNtV .framer-ogkujv, .framer-mMNtV .framer-1mndbv6, .framer-mMNtV .framer-kibtos, .framer-mMNtV .framer-86ii6h, .framer-mMNtV .framer-bvmpc1, .framer-mMNtV .framer-1ov5r54, .framer-mMNtV .framer-1iian6x, .framer-mMNtV .framer-l1nci7, .framer-mMNtV .framer-95fh3b, .framer-mMNtV .framer-jokzax, .framer-mMNtV .framer-10b4d0u, .framer-mMNtV .framer-1cw9ggs { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 128px; word-break: break-word; word-wrap: break-word; }\",\".framer-mMNtV .framer-1l78uxz { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 128px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mMNtV.framer-5xj5l1, .framer-mMNtV .framer-hqeshy, .framer-mMNtV .framer-1re33l5, .framer-mMNtV .framer-1k1zje4, .framer-mMNtV .framer-1ezoukn, .framer-mMNtV .framer-1a739xw, .framer-mMNtV .framer-irouke, .framer-mMNtV .framer-1dtyid6, .framer-mMNtV .framer-1v075c5, .framer-mMNtV .framer-1h090v6, .framer-mMNtV .framer-fv8buy, .framer-mMNtV .framer-1fbl5uh, .framer-mMNtV .framer-1fdce22, .framer-mMNtV .framer-1x059ey, .framer-mMNtV .framer-1c7cccw, .framer-mMNtV .framer-u9xc71, .framer-mMNtV .framer-mibygx { gap: 0px; } .framer-mMNtV.framer-5xj5l1 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-mMNtV.framer-5xj5l1 > :first-child, .framer-mMNtV .framer-1k1zje4 > :first-child, .framer-mMNtV .framer-1ezoukn > :first-child, .framer-mMNtV .framer-1a739xw > :first-child, .framer-mMNtV .framer-irouke > :first-child, .framer-mMNtV .framer-1dtyid6 > :first-child, .framer-mMNtV .framer-1v075c5 > :first-child, .framer-mMNtV .framer-1h090v6 > :first-child, .framer-mMNtV .framer-fv8buy > :first-child, .framer-mMNtV .framer-1fbl5uh > :first-child, .framer-mMNtV .framer-1fdce22 > :first-child, .framer-mMNtV .framer-1x059ey > :first-child, .framer-mMNtV .framer-1c7cccw > :first-child, .framer-mMNtV .framer-u9xc71 > :first-child, .framer-mMNtV .framer-mibygx > :first-child { margin-top: 0px; } .framer-mMNtV.framer-5xj5l1 > :last-child, .framer-mMNtV .framer-1k1zje4 > :last-child, .framer-mMNtV .framer-1ezoukn > :last-child, .framer-mMNtV .framer-1a739xw > :last-child, .framer-mMNtV .framer-irouke > :last-child, .framer-mMNtV .framer-1dtyid6 > :last-child, .framer-mMNtV .framer-1v075c5 > :last-child, .framer-mMNtV .framer-1h090v6 > :last-child, .framer-mMNtV .framer-fv8buy > :last-child, .framer-mMNtV .framer-1fbl5uh > :last-child, .framer-mMNtV .framer-1fdce22 > :last-child, .framer-mMNtV .framer-1x059ey > :last-child, .framer-mMNtV .framer-1c7cccw > :last-child, .framer-mMNtV .framer-u9xc71 > :last-child, .framer-mMNtV .framer-mibygx > :last-child { margin-bottom: 0px; } .framer-mMNtV .framer-hqeshy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-mMNtV .framer-hqeshy > :first-child, .framer-mMNtV .framer-1re33l5 > :first-child { margin-left: 0px; } .framer-mMNtV .framer-hqeshy > :last-child, .framer-mMNtV .framer-1re33l5 > :last-child { margin-right: 0px; } .framer-mMNtV .framer-1re33l5 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-mMNtV .framer-1k1zje4 > *, .framer-mMNtV .framer-1ezoukn > *, .framer-mMNtV .framer-1a739xw > *, .framer-mMNtV .framer-irouke > *, .framer-mMNtV .framer-1dtyid6 > *, .framer-mMNtV .framer-1v075c5 > *, .framer-mMNtV .framer-1h090v6 > *, .framer-mMNtV .framer-fv8buy > *, .framer-mMNtV .framer-1fbl5uh > *, .framer-mMNtV .framer-1fdce22 > *, .framer-mMNtV .framer-1x059ey > *, .framer-mMNtV .framer-1c7cccw > *, .framer-mMNtV .framer-u9xc71 > *, .framer-mMNtV .framer-mibygx > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-mMNtV.framer-v-vd3wr2.framer-5xj5l1 { width: 390px; }\",\".framer-mMNtV.framer-v-vd3wr2 .framer-hqeshy { padding: 0px 20px 0px 20px; }\",\".framer-mMNtV.framer-v-vd3wr2 .framer-g63c1u { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 252\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kSZO_ijsi\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ZxGmKAzJs\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerAQ1axYsa6=withCSS(Component,css,\"framer-mMNtV\");export default FramerAQ1axYsa6;FramerAQ1axYsa6.displayName=\"Testimonials / Top schools\";FramerAQ1axYsa6.defaultProps={height:252,width:1440};addPropertyControls(FramerAQ1axYsa6,{variant:{options:[\"SgU7IBZcQ\",\"kSZO_ijsi\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},ZxGmKAzJs:{defaultValue:\"Trusted by students at top schools\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramerAQ1axYsa6,[{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\"}]},...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAQ1axYsa6\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"252\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"ZxGmKAzJs\\\":\\\"text\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kSZO_ijsi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AQ1axYsa6.map"],"mappings":"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"}