{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/alKX1L7gQyfLr6oAglH9/ogH2PKxOUmPzHCVmlEu5/Examples.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/l6rHYi79svcFRVrC1q12/Ticker.js", "ssg:https://framerusercontent.com/modules/oVorIfGoYDjlejSn0NTa/8J5KNKSXE8aQSs1lvqGO/H0t1STISQ.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/ _jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/ _jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/ _jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Examples.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(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%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(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\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Button from\"https://framerusercontent.com/modules/3RYGZRNSf9hjalhW90XN/VpIKVs8PhbTADtENPzde/pZkneum0J.js\";import{withHover}from\"https://framerusercontent.com/modules/alKX1L7gQyfLr6oAglH9/ogH2PKxOUmPzHCVmlEu5/Examples.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/l6rHYi79svcFRVrC1q12/Ticker.js\";import Navbar from\"#framer/local/canvasComponent/N9822H3KR/N9822H3KR.js\";import Footer from\"#framer/local/canvasComponent/RUr5yyE5P/RUr5yyE5P.js\";import*as sharedStyle2 from\"#framer/local/css/iaLTANF5B/iaLTANF5B.js\";import*as sharedStyle3 from\"#framer/local/css/IlRYfeWVy/IlRYfeWVy.js\";import*as sharedStyle from\"#framer/local/css/Mm3Lsit5z/Mm3Lsit5z.js\";import*as sharedStyle1 from\"#framer/local/css/OiqUZ2eIe/OiqUZ2eIe.js\";import metadataProvider from\"#framer/local/webPageMetadata/H0t1STISQ/H0t1STISQ.js\";const NavbarFonts=getFonts(Navbar);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const MotionDivWithFX=withFX(motion.div);const TickerFonts=getFonts(Ticker);const FooterFonts=getFonts(Footer);const ButtonFonts=getFonts(Button);const ButtonWithHover=withHover(Button);const breakpoints={GpafN3KZJ:\"(min-width: 1440px) and (max-width: 1919px)\",qKt_umEHp:\"(min-width: 1200px) and (max-width: 1439px)\",Ra7fkrTMt:\"(max-width: 809px)\",vC_L0VWKq:\"(min-width: 1920px)\",Vrm788dqo:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-e1wBQ\";const variantClassNames={GpafN3KZJ:\"framer-v-134u2ks\",qKt_umEHp:\"framer-v-1m1jz74\",Ra7fkrTMt:\"framer-v-84qxrg\",vC_L0VWKq:\"framer-v-uiodxz\",Vrm788dqo:\"framer-v-1ysx9jn\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const transition1={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:-150};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-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 2\":\"qKt_umEHp\",\"Full HD\":\"vC_L0VWKq\",Desktop:\"GpafN3KZJ\",Phone:\"Ra7fkrTMt\",Tablet:\"Vrm788dqo\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"GpafN3KZJ\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"jecEV4Ock\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Vrm788dqo\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Vrm788dqo\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"Ra7fkrTMt\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"Ra7fkrTMt\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"qKt_umEHp\")return true;return false;};const isDisplayed5=()=>{if(!isBrowser())return true;if(baseVariant===\"qKt_umEHp\")return false;return true;};const isDisplayed6=()=>{if(!isBrowser())return true;if(baseVariant===\"vC_L0VWKq\")return true;return false;};const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"GpafN3KZJ\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-134u2ks\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-194p32e-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ra7fkrTMt:{variant:\"VncI3gxss\"},Vrm788dqo:{variant:\"VncI3gxss\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"kkOSgpU_2\",layoutId:\"kkOSgpU_2\",qrugXxJxs:\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\",style:{height:\"100%\",width:\"100%\"},variant:\"uTQeepc3z\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vC_L0VWKq:{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{className:\"framer-q5262h\",\"data-framer-name\":\"Banner\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-13xypuy\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ra7fkrTMt:{background:{alt:\"A person working out with a personal trainer. \",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+183+64+0+0+0),pixelHeight:640,pixelWidth:960,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) * 1.0385)`,src:\"https://framerusercontent.com/images/6hhV9erPWXc3UUUeA8E01t2RM.webp\",srcSet:\"https://framerusercontent.com/images/6hhV9erPWXc3UUUeA8E01t2RM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/6hhV9erPWXc3UUUeA8E01t2RM.webp 960w\"}},vC_L0VWKq:{background:{alt:\"A person working out with a personal trainer. \",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+195+64+0+0+0),pixelHeight:640,pixelWidth:960,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/6hhV9erPWXc3UUUeA8E01t2RM.webp\",srcSet:\"https://framerusercontent.com/images/6hhV9erPWXc3UUUeA8E01t2RM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/6hhV9erPWXc3UUUeA8E01t2RM.webp 960w\"}},Vrm788dqo:{background:{alt:\"A person working out with a personal trainer. \",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+168+64+0+0+0),pixelHeight:640,pixelWidth:960,sizes:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,src:\"https://framerusercontent.com/images/6hhV9erPWXc3UUUeA8E01t2RM.webp\",srcSet:\"https://framerusercontent.com/images/6hhV9erPWXc3UUUeA8E01t2RM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/6hhV9erPWXc3UUUeA8E01t2RM.webp 960w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation2,background:{alt:\"A person working out with a personal trainer. \",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+111+64+0+0+0),pixelHeight:640,pixelWidth:960,sizes:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,src:\"https://framerusercontent.com/images/6hhV9erPWXc3UUUeA8E01t2RM.webp\",srcSet:\"https://framerusercontent.com/images/6hhV9erPWXc3UUUeA8E01t2RM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/6hhV9erPWXc3UUUeA8E01t2RM.webp 960w\"},className:\"framer-vv2zz7\",\"data-framer-appear-id\":\"vv2zz7\",\"data-framer-name\":\"Image\",initial:animation3,optimized:true,style:{transformPerspective:1200}})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vC_L0VWKq:{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{className:\"framer-1ao68z9\",\"data-framer-name\":\"What we do\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eot2xq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ra7fkrTMt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-kdb0t\",\"data-styles-preset\":\"OiqUZ2eIe\",style:{\"--framer-text-alignment\":\"center\"},children:[\"More About Kyle\",/*#__PURE__*/_jsx(\"br\",{}),\" \"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1nkslar\",\"data-styles-preset\":\"Mm3Lsit5z\",children:[\"More About Kyle\",/*#__PURE__*/_jsx(\"br\",{}),\" \"]})}),className:\"framer-4ryiww\",\"data-framer-name\":\"Choose your progrAm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vdf20x\",\"data-framer-name\":\"Paragraph Wrapper\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ra7fkrTMt:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:\"Capt. Kyle is a full-time tournament bass angler who travels all over the country chasing Largemouth Bass on the Bassmaster trail.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:\"Kyle\u2019s goal on his trips is to have a great time, learn something new, and become a better angler. Capt. Kyle guarantees a fun, eight hour adventure! With a variety of techniques and up-to-date equipment, you will have everything you need to catch trophy worthy catfish and bass!\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:\"2024 Bassmaster Open Champion - Santee Cooper Lakes\"})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:\"2025 Bassmaster Classic Qualifier \"})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kdb0t\",\"data-styles-preset\":\"OiqUZ2eIe\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:\"More About Santee Cooper Lakes\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7365e3a5-a34a-4188-8992-6443f61ea353, rgb(152, 152, 152))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:\"Santee Cooper has been ranked top 5 bass lakes in the country almost every year for the past decade for prime reasons. It takes over 25 lbs of Bass (5 fish) to win any tournament on the lake.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:\"The state record largemouth of 16lb 2oz was caught on Santee.\"})]})},Vrm788dqo:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6z1kcc\",\"data-styles-preset\":\"IlRYfeWVy\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:\"Capt. Kyle is a full-time tournament bass angler who travels all over the country chasing Largemouth Bass on the Bassmaster trail.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6z1kcc\",\"data-styles-preset\":\"IlRYfeWVy\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:\"Kyle\u2019s goal on his trips is to have a great time, learn something new, and become a better angler. Capt. Kyle guarantees a fun, eight hour adventure! With a variety of techniques and up-to-date equipment, you will have everything you need to catch trophy worthy catfish and bass!\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:\"2024 Bassmaster Open Champion - Santee Cooper Lakes\"})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:\"2025 Bassmaster Classic Qualifier \"})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kdb0t\",\"data-styles-preset\":\"OiqUZ2eIe\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:\"More About Santee Cooper Lakes\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7365e3a5-a34a-4188-8992-6443f61ea353, rgb(152, 152, 152))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6z1kcc\",\"data-styles-preset\":\"IlRYfeWVy\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:\"Santee Cooper has been ranked top 5 bass lakes in the country almost every year for the past decade for prime reasons. It takes over 25 lbs of Bass (5 fish) to win any tournament on the lake.The state record largemouth of 16lb 2oz was caught on Santee.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:\"Capt. Kyle is a full-time tournament bass angler who travels all over the country chasing Largemouth Bass on the Bassmaster trail.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:\"Kyle\u2019s goal on his trips is to have a great time, learn something new, and become a better angler. Capt. Kyle guarantees a fun, eight hour adventure! With a variety of techniques and up-to-date equipment, you will have everything you need to catch trophy worthy catfish and bass!\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:\"2024 Bassmaster Open Champion - Santee Cooper Lakes\"})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:\"2025 Bassmaster Classic Qualifier \"})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kdb0t\",\"data-styles-preset\":\"OiqUZ2eIe\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:\"More About Santee Cooper Lakes\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7365e3a5-a34a-4188-8992-6443f61ea353, rgb(152, 152, 152))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:\"Santee Cooper has been ranked top 5 bass lakes in the country almost every year for the past decade for prime reasons. It takes over 25 lbs of Bass (5 fish) to win any tournament on the lake.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c93bwd\",\"data-styles-preset\":\"iaLTANF5B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:\"The state record largemouth of 16lb 2oz was caught on Santee.\"})]}),className:\"framer-26l9lc\",\"data-framer-name\":\"WORKOUTS FOR HOME, GYM OR PRETTY MUCH ANYWHERE!\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qKt_umEHp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+832+129+252.4063097514342),pixelHeight:1080,pixelWidth:1080,sizes:\"361px\",src:\"https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png\",srcSet:\"https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png 1080w\"}},Ra7fkrTMt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+644+50+0+0+32),pixelHeight:1080,pixelWidth:1080,sizes:\"210px\",src:\"https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png\",srcSet:\"https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png 1080w\"}},vC_L0VWKq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+916+129+0+2254.7999999999997-409),pixelHeight:1080,pixelWidth:1080,sizes:\"361px\",src:\"https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png\",srcSet:\"https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+832+129+2228.7999999999997-373),pixelHeight:1080,pixelWidth:1080,sizes:\"361px\",src:\"https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png\",srcSet:\"https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png 1080w\"},className:\"framer-1imdy8o hidden-1ysx9jn\"})})]})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Vrm788dqo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+1526.5000000000014),pixelHeight:1080,pixelWidth:1080,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.3753)`,src:\"https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png\",srcSet:\"https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,src:\"https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png\",srcSet:\"https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png 1080w\"},className:\"framer-1fxafdh hidden-134u2ks hidden-uiodxz hidden-84qxrg hidden-1m1jz74\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3asa4u\",\"data-framer-name\":\"Features Large\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-28damz\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1itf06e\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Vrm788dqo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:933,intrinsicWidth:1400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2111.8+1126-606+0+0+-304),pixelHeight:3024,pixelWidth:4032,sizes:\"306px\",src:\"https://framerusercontent.com/images/4fxIbhHuBiW8tT95XPwAmlMpU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/4fxIbhHuBiW8tT95XPwAmlMpU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4fxIbhHuBiW8tT95XPwAmlMpU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4fxIbhHuBiW8tT95XPwAmlMpU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4fxIbhHuBiW8tT95XPwAmlMpU.jpg 4032w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:933,intrinsicWidth:1400,pixelHeight:3024,pixelWidth:4032,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,src:\"https://framerusercontent.com/images/4fxIbhHuBiW8tT95XPwAmlMpU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/4fxIbhHuBiW8tT95XPwAmlMpU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4fxIbhHuBiW8tT95XPwAmlMpU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4fxIbhHuBiW8tT95XPwAmlMpU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4fxIbhHuBiW8tT95XPwAmlMpU.jpg 4032w\"},className:\"framer-hwderl hidden-84qxrg\",\"data-framer-name\":\"Image\"})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-flvyz9 hidden-84qxrg\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:\"Bass Equipment \"})}),className:\"framer-7f0w24\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"2025 Falcon bass boat powered by a Yamaha 250 VMAX SHO\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"Lowrance, Hummingbird, and Garmin electronics\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"Up to date tackle/ gear\"})})]})}),className:\"framer-13mx3w8\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ne7ken\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jsifms\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ra7fkrTMt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:\"Catfish Equipment\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:\"Catfish Equipment\"})}),className:\"framer-7cienm\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ra7fkrTMt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"32 ft Custom sun tracker party barge (Tritoon) Yamaha 200 VMAX SHO\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"12 ft Full enclosure and a heater for the colder months\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"Up to date electronics\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"Up to take rods and reels\"})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"32 ft Custom sun tracker party barge (Tritoon) Yamaha 200 VMAX SHO\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"12 ft Full enclosure and a heater for the colder months\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"Up to date electronics\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"Up to take rods and reels\"})})]})}),className:\"framer-1makyqf\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uo4cfw\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ra7fkrTMt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3024,intrinsicWidth:4032,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3267.7999999999997+495+740- -492+-438),pixelHeight:3024,pixelWidth:4032,sizes:\"341px\",src:\"https://framerusercontent.com/images/VahhTmHhRDyw4oYQADfXzAzDlw.jpg\",srcSet:\"https://framerusercontent.com/images/VahhTmHhRDyw4oYQADfXzAzDlw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VahhTmHhRDyw4oYQADfXzAzDlw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VahhTmHhRDyw4oYQADfXzAzDlw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/VahhTmHhRDyw4oYQADfXzAzDlw.jpg 4032w\"},transformTemplate:transformTemplate1},Vrm788dqo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3024,intrinsicWidth:4032,pixelHeight:3024,pixelWidth:4032,sizes:\"318px\",src:\"https://framerusercontent.com/images/VahhTmHhRDyw4oYQADfXzAzDlw.jpg\",srcSet:\"https://framerusercontent.com/images/VahhTmHhRDyw4oYQADfXzAzDlw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VahhTmHhRDyw4oYQADfXzAzDlw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VahhTmHhRDyw4oYQADfXzAzDlw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/VahhTmHhRDyw4oYQADfXzAzDlw.jpg 4032w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3024,intrinsicWidth:4032,pixelHeight:3024,pixelWidth:4032,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,src:\"https://framerusercontent.com/images/VahhTmHhRDyw4oYQADfXzAzDlw.jpg\",srcSet:\"https://framerusercontent.com/images/VahhTmHhRDyw4oYQADfXzAzDlw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VahhTmHhRDyw4oYQADfXzAzDlw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VahhTmHhRDyw4oYQADfXzAzDlw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/VahhTmHhRDyw4oYQADfXzAzDlw.jpg 4032w\"},className:\"framer-6ghbnn\",\"data-framer-name\":\"Image\"})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xcw8oo hidden-134u2ks hidden-uiodxz hidden-1ysx9jn hidden-1m1jz74\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m08uvv\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ra7fkrTMt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:933,intrinsicWidth:1400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3267.7999999999997+60+-60+371- -65),pixelHeight:3024,pixelWidth:4032,sizes:\"341px\",src:\"https://framerusercontent.com/images/4fxIbhHuBiW8tT95XPwAmlMpU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/4fxIbhHuBiW8tT95XPwAmlMpU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4fxIbhHuBiW8tT95XPwAmlMpU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4fxIbhHuBiW8tT95XPwAmlMpU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4fxIbhHuBiW8tT95XPwAmlMpU.jpg 4032w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:933,intrinsicWidth:1400,pixelHeight:3024,pixelWidth:4032,sizes:\"341px\",src:\"https://framerusercontent.com/images/4fxIbhHuBiW8tT95XPwAmlMpU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/4fxIbhHuBiW8tT95XPwAmlMpU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4fxIbhHuBiW8tT95XPwAmlMpU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4fxIbhHuBiW8tT95XPwAmlMpU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4fxIbhHuBiW8tT95XPwAmlMpU.jpg 4032w\"},className:\"framer-eh30uv\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1144pbv\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:\"Bass Equipment \"})}),className:\"framer-9csak4\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"2025 Falcon bass boat powered by a Yamaha 250 VMAX SHO\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"Lowrance, Hummingbird, and Garmin electronics\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"Up to date tackle/ gear\"})})]})}),className:\"framer-zury7d\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1icgne9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13ioow9\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:\"Catfish Equipment\"})}),className:\"framer-1tc71px\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"30 ft Custom sun tracker party barge (Tritoon) Yamaha 200 VMAX SHO\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"Full enclosure and a heater for the colder months\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"Up to date electronics\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"Up to take rods and reels\"})})]})}),className:\"framer-obih75\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b5gsmr\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ra7fkrTMt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3024,intrinsicWidth:4032,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3267.7999999999997+60+1610- -288+0),pixelHeight:3024,pixelWidth:4032,sizes:\"350px\",src:\"https://framerusercontent.com/images/ANcOpkSvIPKSb1TDselQhX5oMIQ.jpg\",srcSet:\"https://framerusercontent.com/images/ANcOpkSvIPKSb1TDselQhX5oMIQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ANcOpkSvIPKSb1TDselQhX5oMIQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ANcOpkSvIPKSb1TDselQhX5oMIQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ANcOpkSvIPKSb1TDselQhX5oMIQ.jpg 4032w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3024,intrinsicWidth:4032,pixelHeight:3024,pixelWidth:4032,sizes:\"350px\",src:\"https://framerusercontent.com/images/ANcOpkSvIPKSb1TDselQhX5oMIQ.jpg\",srcSet:\"https://framerusercontent.com/images/ANcOpkSvIPKSb1TDselQhX5oMIQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ANcOpkSvIPKSb1TDselQhX5oMIQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ANcOpkSvIPKSb1TDselQhX5oMIQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ANcOpkSvIPKSb1TDselQhX5oMIQ.jpg 4032w\"},className:\"framer-p4u1pj\",\"data-framer-name\":\"Image\",transformTemplate:transformTemplate1})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vC_L0VWKq:{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-9slhpr\",\"data-framer-name\":\"Meet the team\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-n6zxg3\",\"data-framer-name\":\"Title Section\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ra7fkrTMt:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nkslar\",\"data-styles-preset\":\"Mm3Lsit5z\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:\"Tournament schedule\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6z1kcc\",\"data-styles-preset\":\"IlRYfeWVy\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-kdb0t\",\"data-styles-preset\":\"OiqUZ2eIe\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:[\"2024\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:\" \"}),\"Bassmaster Open EQ\"]})]})},vC_L0VWKq:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1nkslar\",\"data-styles-preset\":\"Mm3Lsit5z\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:\"Tournament schedule:\"}),/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1nkslar\",\"data-styles-preset\":\"Mm3Lsit5z\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:[\"2025\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:\" \"}),\"Bassmaster Open EQ\"]})]})},Vrm788dqo:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1nkslar\",\"data-styles-preset\":\"Mm3Lsit5z\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:\"Tournament schedule:\"}),/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-kdb0t\",\"data-styles-preset\":\"OiqUZ2eIe\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:[\"2024\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:\" \"}),\"Bassmaster Open EQ\"]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1nkslar\",\"data-styles-preset\":\"Mm3Lsit5z\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:\"Tournament schedule:\"}),/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1nkslar\",\"data-styles-preset\":\"Mm3Lsit5z\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, rgb(255, 131, 40))\"},children:[\"2024\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, rgb(27, 29, 36))\"},children:\" \"}),\"Bassmaster Open EQ\"]})]}),className:\"framer-lhr5mf\",\"data-framer-name\":\"Choose your progrAm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qKt_umEHp:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3111+310.8-175),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"248px\",src:\"https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png\",srcSet:\"https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png 1080w\"}},Ra7fkrTMt:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4997.799999999999+408.2-121),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"116px\",src:\"https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png\",srcSet:\"https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png 1080w\"}},vC_L0VWKq:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4635.799999999999+26.9028938906753),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"368px\",src:\"https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png\",srcSet:\"https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png 1080w\"}},Vrm788dqo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3237.8+296.2-153),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"119px\",src:\"https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png\",srcSet:\"https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4525.799999999999+27.053146853146927),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"368px\",src:\"https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png\",srcSet:\"https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png 1080w\"},className:\"framer-1y3eaxy\"})}),isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qKt_umEHp:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3111+310.8-175),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"215px\",src:\"https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png\",srcSet:\"https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png\",srcSet:\"https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png 1080w\"},className:\"framer-1ls1zkn hidden-134u2ks hidden-uiodxz hidden-1ysx9jn hidden-84qxrg\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Vrm788dqo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3237.8+296.2-153),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"119px\",src:\"https://framerusercontent.com/images/MsuQK5CLHpXa6OhBz5CMHUwEKI.png\",srcSet:\"https://framerusercontent.com/images/MsuQK5CLHpXa6OhBz5CMHUwEKI.png?scale-down-to=512 512w,https://framerusercontent.com/images/MsuQK5CLHpXa6OhBz5CMHUwEKI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MsuQK5CLHpXa6OhBz5CMHUwEKI.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MsuQK5CLHpXa6OhBz5CMHUwEKI.png\",srcSet:\"https://framerusercontent.com/images/MsuQK5CLHpXa6OhBz5CMHUwEKI.png?scale-down-to=512 512w,https://framerusercontent.com/images/MsuQK5CLHpXa6OhBz5CMHUwEKI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MsuQK5CLHpXa6OhBz5CMHUwEKI.png 1080w\"},className:\"framer-1j4rmc8 hidden-134u2ks hidden-uiodxz hidden-84qxrg hidden-1m1jz74\"})}),isDisplayed5()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ra7fkrTMt:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4997.799999999999+74.39090909090916),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"368px\",src:\"https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png\",srcSet:\"https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png 1080w\"}},vC_L0VWKq:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4635.799999999999+26.9028938906753),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"368px\",src:\"https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png\",srcSet:\"https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png 1080w\"}},Vrm788dqo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3237.8+19.957342657342707),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"368px\",src:\"https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png\",srcSet:\"https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4525.799999999999+27.053146853146927),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"368px\",src:\"https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png\",srcSet:\"https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xquqsvJMV6VgMvBUScsq3BokDZA.png 1080w\"},className:\"framer-mxt8sx hidden-1m1jz74\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-clemts\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cp1sdc hidden-1ysx9jn\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ra7fkrTMt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"January 23-25:\"}),'      \"Bassmaster Open\" - Clark\\'s Hill, SC']})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"January 23-25:\"}),'      \"Bassmaster Open\" - Clark\\'s Hill, SC']})}),className:\"framer-1q0bwdw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14zwzh8\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ra7fkrTMt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"February 13\u201315: \"}),'   \"MLF Toyota Series\" - Lake Okeechobee, FL']})})},Vrm788dqo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"January 23-25: \"}),' \"Bassmaster Open\" - Clark\\'s Hill, SC']})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"February 13\u201315: \"}),'    \"MLF Toyota Series\" - Lake Okeechobee, FL']})}),className:\"framer-19n7u5m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-84j562 hidden-134u2ks hidden-uiodxz hidden-84qxrg hidden-1m1jz74\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"February 13\u201315: \"}),' \"MLF Toyota Series\" - Lake Okeechobee, FL']})}),className:\"framer-80bx4y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-405n7o\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ra7fkrTMt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"March 21-23\"}),'  \"Bassmaster Classic\" - Lake Ray Roberts, TX']})})},Vrm788dqo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"March 21-23:\"}),'     \"Bassmaster Classic\" - Lake Ray Roberts, TX']})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"March 21\u201323:\"}),'      \"Bassmaster Classic\" - Lake Ray Roberts, TX']})}),className:\"framer-ira8d4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-537vw9\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ra7fkrTMt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"March 27 - 29:\"}),'     \"MLF Toyota Series\" - Harris Chain, FL']})})},vC_L0VWKq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"March 27 - 29:\"}),'      \"MLF Toyota Series\" - Harris Chain, FL']})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"March 27 - 29:\"}),'     \"MLF Toyota Series\" - Harris Chain, FL']})}),className:\"framer-ah8v2i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-omoneo\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ra7fkrTMt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"April 16-19:\"}),'    \"Bassmaster Open\" - Tombigee River, MS']})})},vC_L0VWKq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"April 16-19:\"}),'      \"Bassmaster Open\" - Tombigee River, MS']})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"April 16-19:\"}),'    \"Bassmaster Open\" - Tombigee River, MS']})}),className:\"framer-1d6tfmt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c5m8ib\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ra7fkrTMt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"April 24-26:\"}),'      \"MLF Toyota Series\" - Lake Siminole, GA']})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"April 24-26:\"}),'      \"MLF Toyota Series\" - Lake Siminole, GA']})}),className:\"framer-fciw0n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i7jmnb\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ra7fkrTMt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"July 23-25:     \"}),'\"Bassmaster Open\" - Chesapeake Bay, MD']})})},vC_L0VWKq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"July 23-25:      \"}),'\"Bassmaster Open\" - Chesapeake Bay, MD']})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"July 23-25:     \"}),'\"Bassmaster Open\" - Chesapeake Bay, MD']})}),className:\"framer-mob2e0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2z5623\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ra7fkrTMt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"July 31-August 2:\"}),' \"Bassmaster Open\" -St Lawrence River, NY']})})},vC_L0VWKq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"July 31-August 2:\"}),'      \"Bassmaster Open\" -St Lawrence River, NY ']})})},Vrm788dqo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"July 31-August 2:\"}),' \"Bassmaster Open\" -St Lawrence River, NY']})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"July 31-August 2:\"}),'      \"Bassmaster Open\" -St Lawrence River, NY']})}),className:\"framer-k5301u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1awbd6y\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ra7fkrTMt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"TBD:\"}),'   \"Bassmaster EQ\" - TBD ']})})},vC_L0VWKq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"TBD:\"}),'      \"Bassmaster EQ\" - TBD']})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"TBD:\"}),'      \"Bassmaster EQ\" - TBD ']})}),className:\"framer-2u0d66\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16fjmjz\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ra7fkrTMt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"TBD:\"}),'    \"Bassmaster EQ\" - TBD ']})})},vC_L0VWKq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"TBD:\"}),'      \"Bassmaster EQ\" - TBD']})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"TBD:\"}),'      \"Bassmaster EQ\" - TBD ']})}),className:\"framer-1ymlz4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hn80xd\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ra7fkrTMt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"TBD:\"}),'    \"Bassmaster EQ\" - TBD ']})})},vC_L0VWKq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"TBD:\"}),'      \"Bassmaster EQ\" - TBD']})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ae1bd689-34f1-435c-97bd-0dacbc759936, rgb(85, 95, 51))\"},children:\"TBD:\"}),'      \"Bassmaster EQ\" - TBD ']})}),className:\"framer-1oguy47\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b39bym\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ra7fkrTMt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Tournament Sponsors\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Tournament Sponsors\"})}),className:\"framer-tbyo0l\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-76pyag-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"YnHF21A4w\",layoutId:\"YnHF21A4w\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"503px\",src:\"https://framerusercontent.com/images/w6a2AF21mezqwwUl7t5OJ8oqwsU.png\",srcSet:\"https://framerusercontent.com/images/w6a2AF21mezqwwUl7t5OJ8oqwsU.png?scale-down-to=512 512w,https://framerusercontent.com/images/w6a2AF21mezqwwUl7t5OJ8oqwsU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/w6a2AF21mezqwwUl7t5OJ8oqwsU.png 1080w\"},className:\"framer-n7jggf\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1350,pixelWidth:1080,sizes:\"503px\",src:\"https://framerusercontent.com/images/01eQLX9r33ugrYJVL2yJ2yj7kQ.png\",srcSet:\"https://framerusercontent.com/images/01eQLX9r33ugrYJVL2yJ2yj7kQ.png?scale-down-to=1024 819w,https://framerusercontent.com/images/01eQLX9r33ugrYJVL2yJ2yj7kQ.png 1080w\"},className:\"framer-1d1evnq\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"503px\",src:\"https://framerusercontent.com/images/UM9GtMdsun9v7L7NbRMzqcd8uY.png\",srcSet:\"https://framerusercontent.com/images/UM9GtMdsun9v7L7NbRMzqcd8uY.png?scale-down-to=512 512w,https://framerusercontent.com/images/UM9GtMdsun9v7L7NbRMzqcd8uY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UM9GtMdsun9v7L7NbRMzqcd8uY.png 1080w\"},className:\"framer-y0mk5b\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"503px\",src:\"https://framerusercontent.com/images/vBRxSV5RwmAC9N8f6FIcTSKM7eo.png\",srcSet:\"https://framerusercontent.com/images/vBRxSV5RwmAC9N8f6FIcTSKM7eo.png?scale-down-to=512 512w,https://framerusercontent.com/images/vBRxSV5RwmAC9N8f6FIcTSKM7eo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vBRxSV5RwmAC9N8f6FIcTSKM7eo.png 1080w\"},className:\"framer-huyhdt\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"463px\",src:\"https://framerusercontent.com/images/VExmKFcI8m9Pej5I1sYZmjJM6Ks.png\",srcSet:\"https://framerusercontent.com/images/VExmKFcI8m9Pej5I1sYZmjJM6Ks.png?scale-down-to=512 512w,https://framerusercontent.com/images/VExmKFcI8m9Pej5I1sYZmjJM6Ks.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VExmKFcI8m9Pej5I1sYZmjJM6Ks.png 1080w\"},className:\"framer-xphh7h\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"463px\",src:\"https://framerusercontent.com/images/QxQruloNpZT5PYlY5RIkTwEiBE.png\",srcSet:\"https://framerusercontent.com/images/QxQruloNpZT5PYlY5RIkTwEiBE.png?scale-down-to=512 512w,https://framerusercontent.com/images/QxQruloNpZT5PYlY5RIkTwEiBE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QxQruloNpZT5PYlY5RIkTwEiBE.png 1080w\"},className:\"framer-tcew0k\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p6mjm2-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"sGiM5fEYa\",layoutId:\"sGiM5fEYa\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"463px\",src:\"https://framerusercontent.com/images/EfBvcDZ57A17RKgPvlFov0VIsE.png\",srcSet:\"https://framerusercontent.com/images/EfBvcDZ57A17RKgPvlFov0VIsE.png?scale-down-to=512 512w,https://framerusercontent.com/images/EfBvcDZ57A17RKgPvlFov0VIsE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EfBvcDZ57A17RKgPvlFov0VIsE.png 1080w\"},className:\"framer-1v5lmn7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"463px\",src:\"https://framerusercontent.com/images/aMsuBCJWMXNKHoD4hgjB6wtOnU.png\",srcSet:\"https://framerusercontent.com/images/aMsuBCJWMXNKHoD4hgjB6wtOnU.png?scale-down-to=512 512w,https://framerusercontent.com/images/aMsuBCJWMXNKHoD4hgjB6wtOnU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aMsuBCJWMXNKHoD4hgjB6wtOnU.png 1080w\"},className:\"framer-16yvk1o\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"463px\",src:\"https://framerusercontent.com/images/ZuXbmOL9VmWMywssPL5IKUtZiRs.png\",srcSet:\"https://framerusercontent.com/images/ZuXbmOL9VmWMywssPL5IKUtZiRs.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZuXbmOL9VmWMywssPL5IKUtZiRs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZuXbmOL9VmWMywssPL5IKUtZiRs.png 1080w\"},className:\"framer-w6u4mv\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"463px\",src:\"https://framerusercontent.com/images/IFM9vw6qtPri4JJtqt5XKr8rXU.png\",srcSet:\"https://framerusercontent.com/images/IFM9vw6qtPri4JJtqt5XKr8rXU.png?scale-down-to=512 512w,https://framerusercontent.com/images/IFM9vw6qtPri4JJtqt5XKr8rXU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IFM9vw6qtPri4JJtqt5XKr8rXU.png 1080w\"},className:\"framer-7bf7c2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"463px\",src:\"https://framerusercontent.com/images/LUo4nZ7IY7LRGcJjFuwh0aWZqgE.png\",srcSet:\"https://framerusercontent.com/images/LUo4nZ7IY7LRGcJjFuwh0aWZqgE.png?scale-down-to=512 512w,https://framerusercontent.com/images/LUo4nZ7IY7LRGcJjFuwh0aWZqgE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LUo4nZ7IY7LRGcJjFuwh0aWZqgE.png 1080w\"},className:\"framer-gga4lx\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"463px\",src:\"https://framerusercontent.com/images/MFbuVx8m0M7aMzgMBTXMQbIM8.png\",srcSet:\"https://framerusercontent.com/images/MFbuVx8m0M7aMzgMBTXMQbIM8.png?scale-down-to=512 512w,https://framerusercontent.com/images/MFbuVx8m0M7aMzgMBTXMQbIM8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MFbuVx8m0M7aMzgMBTXMQbIM8.png 1080w\"},className:\"framer-1envpsj\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"463px\",src:\"https://framerusercontent.com/images/3zEmneIQIOD3R0R9XWIAXAkXvOg.png\",srcSet:\"https://framerusercontent.com/images/3zEmneIQIOD3R0R9XWIAXAkXvOg.png?scale-down-to=512 512w,https://framerusercontent.com/images/3zEmneIQIOD3R0R9XWIAXAkXvOg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3zEmneIQIOD3R0R9XWIAXAkXvOg.png 1080w\"},className:\"framer-18w5yrf\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"438px\",src:\"https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png\",srcSet:\"https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SkWsbWlE2ecxiPVZKNyNcJZlvHQ.png 1080w\"},className:\"framer-5hpim6\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qKt_umEHp:{y:(componentViewport?.y||0)+0+5034.8},Ra7fkrTMt:{y:(componentViewport?.y||0)+0+7002.999999999999},vC_L0VWKq:{y:(componentViewport?.y||0)+0+6546.599999999999},Vrm788dqo:{y:(componentViewport?.y||0)+0+5457}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:607,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6449.599999999999,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ybd44v-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qKt_umEHp:{variant:\"f5uGc2WIa\"},Ra7fkrTMt:{variant:\"g4eiuQDjS\"},Vrm788dqo:{variant:\"sjD6mak6T\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"olXC_3f4V\",layoutId:\"olXC_3f4V\",style:{width:\"100%\"},variant:\"wuFv19nrz\",width:\"100%\"})})})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19rtu4d-container hidden-134u2ks hidden-1ysx9jn hidden-84qxrg hidden-1m1jz74\",layoutScroll:true,children:/*#__PURE__*/_jsx(ButtonWithHover,{height:\"100%\",id:\"txRv3IGv2\",layoutId:\"txRv3IGv2\",link:\"https://artyumgre.lemonsqueezy.com/checkout/buy/3cbf4c5a-b70f-4c80-b72d-6dc001a944dc\",newTab:true,style:{width:\"100%\"},title:\"Get template\",variant:\"vmQmYSobJ\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-e1wBQ.framer-xrj1un, .framer-e1wBQ .framer-xrj1un { display: block; }\",\".framer-e1wBQ.framer-134u2ks { align-content: center; align-items: center; background-color: var(--token-7cfd8397-fb16-4f7b-8208-dad9d382a0cf, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-e1wBQ .framer-194p32e-container { flex: none; height: 111px; position: relative; width: 100%; z-index: 1; }\",\".framer-e1wBQ .framer-q5262h { align-content: center; align-items: center; background-color: var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, #1b1d24); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 64px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-e1wBQ .framer-13xypuy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-e1wBQ .framer-vv2zz7 { flex: none; height: 657px; position: relative; width: 100%; z-index: 1; }\",\".framer-e1wBQ .framer-1ao68z9 { 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: hidden; padding: 129px 64px 128px 64px; position: relative; width: 100%; }\",\".framer-e1wBQ .framer-eot2xq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1400px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-e1wBQ .framer-4ryiww { align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 473px; word-break: break-word; word-wrap: break-word; }\",\".framer-e1wBQ .framer-1vdf20x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 60%; }\",\".framer-e1wBQ .framer-26l9lc, .framer-e1wBQ .framer-lhr5mf { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-e1wBQ .framer-1imdy8o { bottom: 0px; flex: none; height: 373px; left: 56px; position: absolute; width: 361px; z-index: 1; }\",\".framer-e1wBQ .framer-1fxafdh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 41px; height: 5%; justify-content: center; left: calc(54.0740740740741% - 37.53086419753087% / 2); padding: 20px; position: absolute; top: calc(27.62203166226915% - 4.897757255936675% / 2); width: 38%; z-index: 1; }\",\".framer-e1wBQ .framer-3asa4u { align-content: center; align-items: center; background-color: var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, #1b1d24); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-e1wBQ .framer-28damz { align-content: center; align-items: center; background-color: var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, #1b1d24); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 258px; height: 1008px; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-e1wBQ .framer-1itf06e { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 80px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e1wBQ .framer-hwderl, .framer-e1wBQ .framer-6ghbnn { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 383px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-e1wBQ .framer-flvyz9 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 107px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-e1wBQ .framer-7f0w24, .framer-e1wBQ .framer-7cienm, .framer-e1wBQ .framer-1tc71px { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 459px; word-break: break-word; word-wrap: break-word; }\",\".framer-e1wBQ .framer-13mx3w8 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 462px; word-break: break-word; word-wrap: break-word; }\",\".framer-e1wBQ .framer-1ne7ken { align-content: center; align-items: center; background-color: var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, #1b1d24); display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e1wBQ .framer-1jsifms { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-e1wBQ .framer-1makyqf, .framer-e1wBQ .framer-obih75 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 459px; word-break: break-word; word-wrap: break-word; }\",\".framer-e1wBQ .framer-1uo4cfw, .framer-e1wBQ .framer-1b5gsmr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; min-height: 40px; min-width: 109px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-e1wBQ .framer-xcw8oo { align-content: center; align-items: center; background-color: var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, #1b1d24); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 1610px; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-e1wBQ .framer-1m08uvv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 80px; height: 371px; justify-content: center; left: -20px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: -60px; z-index: 1; }\",\".framer-e1wBQ .framer-eh30uv { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; bottom: -348px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 283px); justify-content: center; left: -161px; overflow: hidden; padding: 0px; position: absolute; width: 341px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-e1wBQ .framer-1144pbv { align-content: flex-start; align-items: flex-start; bottom: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: center; left: -165px; padding: 0px; position: absolute; width: 345px; z-index: 1; }\",\".framer-e1wBQ .framer-9csak4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 325px; word-break: break-word; word-wrap: break-word; }\",\".framer-e1wBQ .framer-zury7d { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 316px; word-break: break-word; word-wrap: break-word; }\",\".framer-e1wBQ .framer-1icgne9 { align-content: center; align-items: center; background-color: var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, #1b1d24); bottom: -492px; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; left: -4px; overflow: visible; padding: 0px; position: absolute; width: 350px; z-index: 1; }\",\".framer-e1wBQ .framer-13ioow9 { 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; padding: 0px; position: relative; width: 100%; }\",\".framer-e1wBQ .framer-p4u1pj { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 291px); justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 0px; transform: translateX(-50%); width: 350px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-e1wBQ .framer-9slhpr { align-content: center; align-items: center; background-color: var(--token-a1ed9d4e-ffa4-4ce7-8714-38090dc3b89e, #f9f9f9); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 64px 64px 128px 64px; position: relative; width: 100%; }\",\".framer-e1wBQ .framer-n6zxg3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e1wBQ .framer-1y3eaxy { -webkit-filter: drop-shadow(5px 1px 8px rgba(0, 0, 0, 0.25)); filter: drop-shadow(5px 1px 8px rgba(0, 0, 0, 0.25)); flex: none; height: 248px; left: 20px; overflow: hidden; position: absolute; top: calc(48.60139860139862% - 248px / 2); width: 368px; z-index: 1; }\",\".framer-e1wBQ .framer-1ls1zkn { -webkit-filter: drop-shadow(5px 1px 8px rgba(0, 0, 0, 0.25)); bottom: 23px; filter: drop-shadow(5px 1px 8px rgba(0, 0, 0, 0.25)); flex: none; height: 152px; left: 965px; overflow: hidden; position: absolute; width: 215px; z-index: 1; }\",\".framer-e1wBQ .framer-1j4rmc8 { -webkit-filter: drop-shadow(5px 1px 8px rgba(0, 0, 0, 0.25)); bottom: 19px; filter: drop-shadow(5px 1px 8px rgba(0, 0, 0, 0.25)); flex: none; height: 134px; left: 599px; overflow: hidden; position: absolute; width: 119px; z-index: 1; }\",\".framer-e1wBQ .framer-mxt8sx { -webkit-filter: drop-shadow(5px 1px 8px rgba(0, 0, 0, 0.25)); filter: drop-shadow(5px 1px 8px rgba(0, 0, 0, 0.25)); flex: none; height: 248px; left: 1052px; overflow: hidden; position: absolute; top: calc(48.60139860139862% - 248px / 2); width: 368px; z-index: 1; }\",\".framer-e1wBQ .framer-clemts { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 803px; justify-content: flex-start; overflow: hidden; padding: 15px; position: relative; width: 1430px; }\",\".framer-e1wBQ .framer-1cp1sdc, .framer-e1wBQ .framer-14zwzh8, .framer-e1wBQ .framer-84j562, .framer-e1wBQ .framer-405n7o, .framer-e1wBQ .framer-537vw9, .framer-e1wBQ .framer-omoneo, .framer-e1wBQ .framer-c5m8ib, .framer-e1wBQ .framer-i7jmnb, .framer-e1wBQ .framer-2z5623, .framer-e1wBQ .framer-1awbd6y, .framer-e1wBQ .framer-16fjmjz, .framer-e1wBQ .framer-hn80xd { --border-bottom-width: 1px; --border-color: var(--token-2e063ea0-c1e3-4086-bdea-e07008fd5da8, #ff8328); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-31fac2ee-282a-4687-817e-ddfd25e682c2, #1b1d24); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 2px 3px #FF8328; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-e1wBQ .framer-1q0bwdw, .framer-e1wBQ .framer-19n7u5m, .framer-e1wBQ .framer-80bx4y, .framer-e1wBQ .framer-ira8d4, .framer-e1wBQ .framer-ah8v2i, .framer-e1wBQ .framer-1d6tfmt, .framer-e1wBQ .framer-fciw0n, .framer-e1wBQ .framer-mob2e0, .framer-e1wBQ .framer-k5301u, .framer-e1wBQ .framer-2u0d66, .framer-e1wBQ .framer-1ymlz4, .framer-e1wBQ .framer-1oguy47 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-e1wBQ .framer-b39bym { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-e1wBQ .framer-tbyo0l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-e1wBQ .framer-76pyag-container, .framer-e1wBQ .framer-1p6mjm2-container { flex: none; height: 215px; position: relative; width: 995px; }\",\".framer-e1wBQ .framer-n7jggf, .framer-e1wBQ .framer-1d1evnq, .framer-e1wBQ .framer-y0mk5b, .framer-e1wBQ .framer-huyhdt { height: 354px; position: relative; width: 503px; }\",\".framer-e1wBQ .framer-xphh7h, .framer-e1wBQ .framer-tcew0k, .framer-e1wBQ .framer-1v5lmn7, .framer-e1wBQ .framer-16yvk1o, .framer-e1wBQ .framer-w6u4mv, .framer-e1wBQ .framer-7bf7c2, .framer-e1wBQ .framer-gga4lx, .framer-e1wBQ .framer-1envpsj, .framer-e1wBQ .framer-18w5yrf { height: 330px; position: relative; width: 463px; }\",\".framer-e1wBQ .framer-5hpim6 { height: 330px; position: relative; width: 438px; }\",\".framer-e1wBQ .framer-1ybd44v-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-e1wBQ .framer-19rtu4d-container { bottom: 60px; flex: none; height: auto; position: fixed; right: 20px; width: 140px; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-e1wBQ.framer-134u2ks, .framer-e1wBQ .framer-q5262h, .framer-e1wBQ .framer-13xypuy, .framer-e1wBQ .framer-1ao68z9, .framer-e1wBQ .framer-1vdf20x, .framer-e1wBQ .framer-1fxafdh, .framer-e1wBQ .framer-3asa4u, .framer-e1wBQ .framer-28damz, .framer-e1wBQ .framer-1itf06e, .framer-e1wBQ .framer-hwderl, .framer-e1wBQ .framer-flvyz9, .framer-e1wBQ .framer-1ne7ken, .framer-e1wBQ .framer-1jsifms, .framer-e1wBQ .framer-1uo4cfw, .framer-e1wBQ .framer-6ghbnn, .framer-e1wBQ .framer-xcw8oo, .framer-e1wBQ .framer-1m08uvv, .framer-e1wBQ .framer-eh30uv, .framer-e1wBQ .framer-1144pbv, .framer-e1wBQ .framer-1icgne9, .framer-e1wBQ .framer-13ioow9, .framer-e1wBQ .framer-1b5gsmr, .framer-e1wBQ .framer-p4u1pj, .framer-e1wBQ .framer-9slhpr, .framer-e1wBQ .framer-n6zxg3, .framer-e1wBQ .framer-clemts, .framer-e1wBQ .framer-1cp1sdc, .framer-e1wBQ .framer-14zwzh8, .framer-e1wBQ .framer-84j562, .framer-e1wBQ .framer-405n7o, .framer-e1wBQ .framer-537vw9, .framer-e1wBQ .framer-omoneo, .framer-e1wBQ .framer-c5m8ib, .framer-e1wBQ .framer-i7jmnb, .framer-e1wBQ .framer-2z5623, .framer-e1wBQ .framer-1awbd6y, .framer-e1wBQ .framer-16fjmjz, .framer-e1wBQ .framer-hn80xd, .framer-e1wBQ .framer-b39bym { gap: 0px; } .framer-e1wBQ.framer-134u2ks > *, .framer-e1wBQ .framer-1vdf20x > *, .framer-e1wBQ .framer-13ioow9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-e1wBQ.framer-134u2ks > :first-child, .framer-e1wBQ .framer-q5262h > :first-child, .framer-e1wBQ .framer-13xypuy > :first-child, .framer-e1wBQ .framer-1vdf20x > :first-child, .framer-e1wBQ .framer-1fxafdh > :first-child, .framer-e1wBQ .framer-28damz > :first-child, .framer-e1wBQ .framer-hwderl > :first-child, .framer-e1wBQ .framer-flvyz9 > :first-child, .framer-e1wBQ .framer-1jsifms > :first-child, .framer-e1wBQ .framer-6ghbnn > :first-child, .framer-e1wBQ .framer-xcw8oo > :first-child, .framer-e1wBQ .framer-1m08uvv > :first-child, .framer-e1wBQ .framer-eh30uv > :first-child, .framer-e1wBQ .framer-1144pbv > :first-child, .framer-e1wBQ .framer-1icgne9 > :first-child, .framer-e1wBQ .framer-13ioow9 > :first-child, .framer-e1wBQ .framer-p4u1pj > :first-child, .framer-e1wBQ .framer-9slhpr > :first-child, .framer-e1wBQ .framer-n6zxg3 > :first-child, .framer-e1wBQ .framer-clemts > :first-child, .framer-e1wBQ .framer-b39bym > :first-child { margin-top: 0px; } .framer-e1wBQ.framer-134u2ks > :last-child, .framer-e1wBQ .framer-q5262h > :last-child, .framer-e1wBQ .framer-13xypuy > :last-child, .framer-e1wBQ .framer-1vdf20x > :last-child, .framer-e1wBQ .framer-1fxafdh > :last-child, .framer-e1wBQ .framer-28damz > :last-child, .framer-e1wBQ .framer-hwderl > :last-child, .framer-e1wBQ .framer-flvyz9 > :last-child, .framer-e1wBQ .framer-1jsifms > :last-child, .framer-e1wBQ .framer-6ghbnn > :last-child, .framer-e1wBQ .framer-xcw8oo > :last-child, .framer-e1wBQ .framer-1m08uvv > :last-child, .framer-e1wBQ .framer-eh30uv > :last-child, .framer-e1wBQ .framer-1144pbv > :last-child, .framer-e1wBQ .framer-1icgne9 > :last-child, .framer-e1wBQ .framer-13ioow9 > :last-child, .framer-e1wBQ .framer-p4u1pj > :last-child, .framer-e1wBQ .framer-9slhpr > :last-child, .framer-e1wBQ .framer-n6zxg3 > :last-child, .framer-e1wBQ .framer-clemts > :last-child, .framer-e1wBQ .framer-b39bym > :last-child { margin-bottom: 0px; } .framer-e1wBQ .framer-q5262h > *, .framer-e1wBQ .framer-13xypuy > *, .framer-e1wBQ .framer-9slhpr > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-e1wBQ .framer-1ao68z9 > *, .framer-e1wBQ .framer-3asa4u > *, .framer-e1wBQ .framer-1cp1sdc > *, .framer-e1wBQ .framer-14zwzh8 > *, .framer-e1wBQ .framer-84j562 > *, .framer-e1wBQ .framer-405n7o > *, .framer-e1wBQ .framer-537vw9 > *, .framer-e1wBQ .framer-omoneo > *, .framer-e1wBQ .framer-c5m8ib > *, .framer-e1wBQ .framer-i7jmnb > *, .framer-e1wBQ .framer-2z5623 > *, .framer-e1wBQ .framer-1awbd6y > *, .framer-e1wBQ .framer-16fjmjz > *, .framer-e1wBQ .framer-hn80xd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-e1wBQ .framer-1ao68z9 > :first-child, .framer-e1wBQ .framer-3asa4u > :first-child, .framer-e1wBQ .framer-1itf06e > :first-child, .framer-e1wBQ .framer-1ne7ken > :first-child, .framer-e1wBQ .framer-1uo4cfw > :first-child, .framer-e1wBQ .framer-1b5gsmr > :first-child, .framer-e1wBQ .framer-1cp1sdc > :first-child, .framer-e1wBQ .framer-14zwzh8 > :first-child, .framer-e1wBQ .framer-84j562 > :first-child, .framer-e1wBQ .framer-405n7o > :first-child, .framer-e1wBQ .framer-537vw9 > :first-child, .framer-e1wBQ .framer-omoneo > :first-child, .framer-e1wBQ .framer-c5m8ib > :first-child, .framer-e1wBQ .framer-i7jmnb > :first-child, .framer-e1wBQ .framer-2z5623 > :first-child, .framer-e1wBQ .framer-1awbd6y > :first-child, .framer-e1wBQ .framer-16fjmjz > :first-child, .framer-e1wBQ .framer-hn80xd > :first-child { margin-left: 0px; } .framer-e1wBQ .framer-1ao68z9 > :last-child, .framer-e1wBQ .framer-3asa4u > :last-child, .framer-e1wBQ .framer-1itf06e > :last-child, .framer-e1wBQ .framer-1ne7ken > :last-child, .framer-e1wBQ .framer-1uo4cfw > :last-child, .framer-e1wBQ .framer-1b5gsmr > :last-child, .framer-e1wBQ .framer-1cp1sdc > :last-child, .framer-e1wBQ .framer-14zwzh8 > :last-child, .framer-e1wBQ .framer-84j562 > :last-child, .framer-e1wBQ .framer-405n7o > :last-child, .framer-e1wBQ .framer-537vw9 > :last-child, .framer-e1wBQ .framer-omoneo > :last-child, .framer-e1wBQ .framer-c5m8ib > :last-child, .framer-e1wBQ .framer-i7jmnb > :last-child, .framer-e1wBQ .framer-2z5623 > :last-child, .framer-e1wBQ .framer-1awbd6y > :last-child, .framer-e1wBQ .framer-16fjmjz > :last-child, .framer-e1wBQ .framer-hn80xd > :last-child { margin-right: 0px; } .framer-e1wBQ .framer-1fxafdh > * { margin: 0px; margin-bottom: calc(41px / 2); margin-top: calc(41px / 2); } .framer-e1wBQ .framer-28damz > * { margin: 0px; margin-bottom: calc(258px / 2); margin-top: calc(258px / 2); } .framer-e1wBQ .framer-1itf06e > *, .framer-e1wBQ .framer-1ne7ken > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-e1wBQ .framer-hwderl > *, .framer-e1wBQ .framer-6ghbnn > *, .framer-e1wBQ .framer-eh30uv > *, .framer-e1wBQ .framer-p4u1pj > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-e1wBQ .framer-flvyz9 > * { margin: 0px; margin-bottom: calc(107px / 2); margin-top: calc(107px / 2); } .framer-e1wBQ .framer-1jsifms > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-e1wBQ .framer-1uo4cfw > *, .framer-e1wBQ .framer-1b5gsmr > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-e1wBQ .framer-xcw8oo > *, .framer-e1wBQ .framer-b39bym > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-e1wBQ .framer-1m08uvv > *, .framer-e1wBQ .framer-1icgne9 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-e1wBQ .framer-1144pbv > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } .framer-e1wBQ .framer-n6zxg3 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-e1wBQ .framer-clemts > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-e1wBQ[data-border=\"true\"]::after, .framer-e1wBQ [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: 1920px) { .framer-e1wBQ.framer-134u2ks { width: 1920px; } .framer-e1wBQ .framer-194p32e-container { height: 195px; } .framer-e1wBQ .framer-13xypuy { max-width: unset; } .framer-e1wBQ .framer-1ao68z9 { flex-direction: column; justify-content: center; } .framer-e1wBQ .framer-eot2xq { flex: none; padding: 13px 0px 13px 0px; width: 100%; } .framer-e1wBQ .framer-4ryiww { width: 530px; } .framer-e1wBQ .framer-1imdy8o { bottom: 36px; left: 84px; } .framer-e1wBQ .framer-hwderl, .framer-e1wBQ .framer-6ghbnn { height: var(--framer-aspect-ratio-supported, 384px); } .framer-e1wBQ .framer-1y3eaxy { left: 110px; top: calc(48.55305466237944% - 248px / 2); } .framer-e1wBQ .framer-mxt8sx { left: 1472px; top: calc(48.55305466237944% - 248px / 2); } .framer-e1wBQ .framer-clemts { height: 790px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-e1wBQ .framer-1ao68z9 { gap: 0px; } .framer-e1wBQ .framer-1ao68z9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-e1wBQ .framer-1ao68z9 > :first-child { margin-top: 0px; } .framer-e1wBQ .framer-1ao68z9 > :last-child { margin-bottom: 0px; } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-e1wBQ.framer-134u2ks { height: 6064px; width: 810px; } .framer-e1wBQ .framer-194p32e-container { height: 168px; order: 0; } .framer-e1wBQ .framer-q5262h, .framer-e1wBQ .framer-1itf06e, .framer-e1wBQ .framer-1uo4cfw, .framer-e1wBQ .framer-14zwzh8 { order: 1; } .framer-e1wBQ .framer-vv2zz7 { height: 646px; } .framer-e1wBQ .framer-1ao68z9 { flex: 1 0 0px; gap: 64px; height: 1px; order: 2; padding: 128px 64px 128px 64px; } .framer-e1wBQ .framer-eot2xq { flex: none; flex-direction: column; gap: 32px; justify-content: center; left: 52%; order: 0; position: absolute; top: 45px; transform: translateX(-50%); width: 682px; z-index: 1; } .framer-e1wBQ .framer-4ryiww { align-self: unset; flex: 1 0 0px; height: 1px; order: 1; } .framer-e1wBQ .framer-1vdf20x { height: 664px; order: 2; width: 100%; } .framer-e1wBQ .framer-26l9lc { height: 92%; order: 0; } .framer-e1wBQ .framer-1fxafdh, .framer-e1wBQ .framer-405n7o { order: 3; } .framer-e1wBQ .framer-3asa4u { gap: 0px; height: 19%; order: 4; padding: 60px; width: 100%; z-index: 1; } .framer-e1wBQ .framer-28damz { bottom: 81px; flex: none; gap: 164px; height: 525px; order: 0; position: absolute; right: -3px; width: 770px; z-index: 1; } .framer-e1wBQ .framer-hwderl { flex: none; height: var(--framer-aspect-ratio-supported, 255px); left: 443px; order: 0; position: absolute; top: -304px; width: 306px; z-index: 1; } .framer-e1wBQ .framer-flvyz9 { flex: none; gap: 54px; left: -16px; order: 1; position: absolute; top: -418px; width: 412px; z-index: 1; } .framer-e1wBQ .framer-7f0w24, .framer-e1wBQ .framer-7cienm, .framer-e1wBQ .framer-lhr5mf { order: 0; } .framer-e1wBQ .framer-13mx3w8 { order: 1; width: 396px; } .framer-e1wBQ .framer-1ne7ken { left: -40px; min-height: 800px; order: 0; position: absolute; top: -418px; width: 770px; z-index: 1; } .framer-e1wBQ .framer-1jsifms { bottom: -19px; flex: none; gap: 0px; position: absolute; right: -19px; width: 444px; z-index: 1; } .framer-e1wBQ .framer-1makyqf { order: 2; width: 434px; } .framer-e1wBQ .framer-6ghbnn { bottom: -165px; flex: none; height: var(--framer-aspect-ratio-supported, 265px); left: 11px; position: absolute; width: 318px; z-index: 1; } .framer-e1wBQ .framer-9slhpr { order: 5; width: 95%; } .framer-e1wBQ .framer-1y3eaxy { bottom: 19px; height: 134px; left: 64px; top: unset; width: 119px; } .framer-e1wBQ .framer-clemts { height: 1153px; order: 6; width: 805px; z-index: 1; } .framer-e1wBQ .framer-84j562 { order: 2; } .framer-e1wBQ .framer-537vw9 { order: 4; } .framer-e1wBQ .framer-omoneo { order: 5; } .framer-e1wBQ .framer-c5m8ib { order: 6; } .framer-e1wBQ .framer-i7jmnb { order: 7; } .framer-e1wBQ .framer-2z5623, .framer-e1wBQ .framer-1ybd44v-container { order: 8; } .framer-e1wBQ .framer-1awbd6y { order: 9; } .framer-e1wBQ .framer-16fjmjz { order: 10; } .framer-e1wBQ .framer-hn80xd { order: 11; } .framer-e1wBQ .framer-b39bym { order: 7; padding: 80px 40px 80px 40px; } .framer-e1wBQ .framer-76pyag-container { width: 826px; } .framer-e1wBQ .framer-1p6mjm2-container { width: 820px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-e1wBQ .framer-1ao68z9, .framer-e1wBQ .framer-eot2xq, .framer-e1wBQ .framer-3asa4u, .framer-e1wBQ .framer-28damz, .framer-e1wBQ .framer-flvyz9, .framer-e1wBQ .framer-1jsifms { gap: 0px; } .framer-e1wBQ .framer-1ao68z9 > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-e1wBQ .framer-1ao68z9 > :first-child, .framer-e1wBQ .framer-3asa4u > :first-child { margin-left: 0px; } .framer-e1wBQ .framer-1ao68z9 > :last-child, .framer-e1wBQ .framer-3asa4u > :last-child { margin-right: 0px; } .framer-e1wBQ .framer-eot2xq > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-e1wBQ .framer-eot2xq > :first-child, .framer-e1wBQ .framer-28damz > :first-child, .framer-e1wBQ .framer-flvyz9 > :first-child, .framer-e1wBQ .framer-1jsifms > :first-child { margin-top: 0px; } .framer-e1wBQ .framer-eot2xq > :last-child, .framer-e1wBQ .framer-28damz > :last-child, .framer-e1wBQ .framer-flvyz9 > :last-child, .framer-e1wBQ .framer-1jsifms > :last-child { margin-bottom: 0px; } .framer-e1wBQ .framer-3asa4u > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-e1wBQ .framer-28damz > * { margin: 0px; margin-bottom: calc(164px / 2); margin-top: calc(164px / 2); } .framer-e1wBQ .framer-flvyz9 > * { margin: 0px; margin-bottom: calc(54px / 2); margin-top: calc(54px / 2); } .framer-e1wBQ .framer-1jsifms > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\",\"@media (max-width: 809px) { .framer-e1wBQ.framer-134u2ks, .framer-e1wBQ .framer-1p6mjm2-container { width: 390px; } .framer-e1wBQ .framer-194p32e-container { height: 183px; } .framer-e1wBQ .framer-vv2zz7 { height: 397px; width: 104%; } .framer-e1wBQ .framer-1ao68z9 { flex-direction: column; gap: 32px; padding: 50px 16px 59px 16px; } .framer-e1wBQ .framer-eot2xq { flex: none; flex-direction: column; gap: 32px; justify-content: center; order: 0; width: 100%; } .framer-e1wBQ .framer-4ryiww { align-self: unset; flex: 1 0 0px; height: 1px; order: 0; width: 240px; } .framer-e1wBQ .framer-1vdf20x { order: 2; width: 100%; } .framer-e1wBQ .framer-1imdy8o { bottom: unset; height: 222px; left: unset; order: 1; position: relative; width: 210px; } .framer-e1wBQ .framer-3asa4u { gap: 20px; padding: 60px 20px 60px 20px; } .framer-e1wBQ .framer-28damz { gap: 60px; height: 740px; order: 0; } .framer-e1wBQ .framer-1itf06e { flex: none; flex-direction: column; height: 371px; left: -20px; order: 0; position: absolute; right: 0px; top: -60px; width: unset; z-index: 1; } .framer-e1wBQ .framer-1ne7ken { bottom: -492px; flex-direction: column; left: -4px; order: 1; position: absolute; width: 350px; z-index: 1; } .framer-e1wBQ .framer-1jsifms { flex: none; gap: 0px; order: 1; width: 100%; } .framer-e1wBQ .framer-7cienm { left: -3px; order: 1; position: absolute; right: -10px; top: -755px; width: unset; z-index: 1; } .framer-e1wBQ .framer-1makyqf { order: 0; position: absolute; right: -4px; top: -694px; width: 345px; z-index: 1; } .framer-e1wBQ .framer-1uo4cfw { order: 2; } .framer-e1wBQ .framer-6ghbnn { flex: none; height: var(--framer-aspect-ratio-supported, 284px); left: 51%; order: 0; position: absolute; top: -438px; transform: translateX(-50%); width: 341px; z-index: 1; } .framer-e1wBQ .framer-xcw8oo, .framer-e1wBQ .framer-1144pbv, .framer-e1wBQ .framer-1icgne9 { order: 1; } .framer-e1wBQ .framer-1m08uvv, .framer-e1wBQ .framer-lhr5mf { order: 0; } .framer-e1wBQ .framer-eh30uv { height: var(--framer-aspect-ratio-supported, 284px); order: 0; } .framer-e1wBQ .framer-p4u1pj { height: var(--framer-aspect-ratio-supported, 292px); } .framer-e1wBQ .framer-9slhpr { padding: 64px 16px 128px 16px; } .framer-e1wBQ .framer-1y3eaxy { bottom: 15px; height: 106px; left: calc(50.00000000000002% - 116px / 2); top: unset; width: 116px; } .framer-e1wBQ .framer-clemts { height: 855px; width: 398px; } .framer-e1wBQ .framer-b39bym { padding: 78px 20px 78px 20px; } .framer-e1wBQ .framer-76pyag-container { width: 402px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-e1wBQ .framer-1ao68z9, .framer-e1wBQ .framer-eot2xq, .framer-e1wBQ .framer-3asa4u, .framer-e1wBQ .framer-28damz, .framer-e1wBQ .framer-1itf06e, .framer-e1wBQ .framer-1ne7ken, .framer-e1wBQ .framer-1jsifms { gap: 0px; } .framer-e1wBQ .framer-1ao68z9 > *, .framer-e1wBQ .framer-eot2xq > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-e1wBQ .framer-1ao68z9 > :first-child, .framer-e1wBQ .framer-eot2xq > :first-child, .framer-e1wBQ .framer-28damz > :first-child, .framer-e1wBQ .framer-1itf06e > :first-child, .framer-e1wBQ .framer-1ne7ken > :first-child, .framer-e1wBQ .framer-1jsifms > :first-child { margin-top: 0px; } .framer-e1wBQ .framer-1ao68z9 > :last-child, .framer-e1wBQ .framer-eot2xq > :last-child, .framer-e1wBQ .framer-28damz > :last-child, .framer-e1wBQ .framer-1itf06e > :last-child, .framer-e1wBQ .framer-1ne7ken > :last-child, .framer-e1wBQ .framer-1jsifms > :last-child { margin-bottom: 0px; } .framer-e1wBQ .framer-3asa4u > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-e1wBQ .framer-3asa4u > :first-child { margin-left: 0px; } .framer-e1wBQ .framer-3asa4u > :last-child { margin-right: 0px; } .framer-e1wBQ .framer-28damz > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-e1wBQ .framer-1itf06e > *, .framer-e1wBQ .framer-1ne7ken > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-e1wBQ .framer-1jsifms > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\",\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-e1wBQ.framer-134u2ks { width: 1200px; } .framer-e1wBQ .framer-1vdf20x { height: 814px; width: 55%; } .framer-e1wBQ .framer-26l9lc { height: 94%; } .framer-e1wBQ .framer-1imdy8o { bottom: unset; top: calc(53.91969407265776% - 373px / 2); } .framer-e1wBQ .framer-1y3eaxy { bottom: 23px; height: 152px; top: unset; width: 248px; } .framer-e1wBQ .framer-clemts { width: 1135px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5419\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vC_L0VWKq\":{\"layout\":[\"fixed\",\"auto\"]},\"Vrm788dqo\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ra7fkrTMt\":{\"layout\":[\"fixed\",\"auto\"]},\"qKt_umEHp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"jecEV4Ock\":{\"pattern\":\":jecEV4Ock\",\"name\":\"what-we-do\"}}\n * @framerResponsiveScreen\n */const FramerH0t1STISQ=withCSS(Component,css,\"framer-e1wBQ\");export default FramerH0t1STISQ;FramerH0t1STISQ.displayName=\"About\";FramerH0t1STISQ.defaultProps={height:5419,width:1440};addFonts(FramerH0t1STISQ,[{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:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...NavbarFonts,...TickerFonts,...FooterFonts,...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerH0t1STISQ\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"5419\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerScrollSections\":\"{\\\"jecEV4Ock\\\":{\\\"pattern\\\":\\\":jecEV4Ock\\\",\\\"name\\\":\\\"what-we-do\\\"}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vC_L0VWKq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Vrm788dqo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ra7fkrTMt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qKt_umEHp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["useStore", "createStore", "withHover", "Component", "props", "p", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "NavbarFonts", "getFonts", "N9822H3KR_default", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "MotionDivWithFX", "withFX", "motion", "TickerFonts", "Ticker", "FooterFonts", "RUr5yyE5P_default", "ButtonFonts", "pZkneum0J_default", "ButtonWithHover", "withHover", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "animation3", "transformTemplate1", "_", "t", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "getLoadingLazyAtYPosition", "x", "RichText2", "css", "FramerH0t1STISQ", "withCSS", "H0t1STISQ_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
