{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js", "ssg:https://framerusercontent.com/modules/F29vuOKj17Y0RpfftxMt/qxxRgT5GGts1LJr9wcPW/Scribbbles.js", "ssg:https://framerusercontent.com/modules/DQufFWXuhOuGGljHZw74/rrQbtFMu4ljjAFgP1nYo/RsgH0dhwO.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const 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){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";/**\n * Scribbles by Monika\n * Componentized by Benjamin\n * shapes.framer.website\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight auto\n */ export default function Scribbles(props){const{paths,strokeWidth,color,id:nodeId}=props;// Unique Props\nconst path=scribbles[paths].path;const viewBox=scribbles[paths].viewBox;return /*#__PURE__*/ _jsx(\"svg\",{viewBox:viewBox,children:/*#__PURE__*/ _jsx(\"path\",{d:path,strokeWidth:strokeWidth,stroke:color,strokeLinecap:\"round\",fill:\"none\",strokeMiterlimit:\"10\"})});};const scribbles=[{title:\"Scribble 1\",path:\"M 111.499 135.487 C 107.724 135.487 107.069 133.3 104.389 131.449 C 96.149 125.755 89.128 117.881 83.444 110.448 C 75.664 100.276 68.32 89.065 65.02 77.333 C 63.681 72.565 63.719 64.849 64.791 60.058 C 66.357 53.063 71.931 60.755 74.345 62.297 C 83.955 68.433 90.442 82.017 93.688 91.249 C 94.899 94.698 97.739 97.037 97.739 91.623 C 97.739 82.248 100.405 75.537 105.689 67.266 C 108.483 62.893 124.561 38.208 131.834 49.371 C 135.891 55.604 134.891 62.684 134.891 70.063 C 134.891 85.59 126.758 100.178 121.056 114.859 C 117.506 123.994 113.777 133.538 108.746 142.198 C 107.355 144.592 105.494 153.584 103.243 154.5\",viewBox:\"0 0 200 200\"},{title:\"Scribble 2\",path:\"M 103.972 45.671 C 103.69 46.902 102.341 47.647 101.524 48.614 C 99.35 51.182 97.507 54.141 95.651 56.891 C 90.145 65.038 84.134 72.906 78.542 81.02 C 73.249 88.702 70.117 96.634 65.786 104.598 C 65.412 105.281 63.73 107.807 65.575 106.915 C 68.846 105.332 75.965 106.583 79.598 106.583 C 80.845 106.583 96.27 105.769 96.369 107.246 C 96.866 114.621 93.509 123.032 92.567 130.419 C 91.881 135.79 90.549 141.154 89.356 146.455 C 88.637 149.661 88.88 153.209 87.413 156.239 C 86.482 158.168 87.848 156.028 88.048 155.247 C 88.949 151.715 91.035 147.957 92.609 144.616 C 98.632 131.832 107.931 120.695 115.336 108.606 C 120.958 99.427 127.672 90.492 133.245 81.756 C 133.701 81.04 135.63 78.968 134.217 79.953 C 132.797 80.942 128.847 81.338 127.12 81.424 C 118.001 81.878 108.673 85.628 99.789 87.346 C 98.261 87.643 91.76 90.976 93.496 87.382 C 96.044 82.114 96.197 75.986 97.889 70.463 C 99.7 64.553 100.154 58.205 102.281 52.44 C 102.873 50.843 104.372 43.512 105.496 43.023\",viewBox:\"0 0 200 200\"},{title:\"Scribble 3\",path:\"M 91.667 60.516 C 90.433 60.823 91.196 67.127 91.196 67.877 L 91.196 138.516 M 62.422 91.058 C 70.919 91.058 79.485 90.667 87.919 91.868 C 99.54 93.521 110.572 96.913 122.014 99.255 C 127.242 100.326 132.088 101.396 137.422 101.396 M 71.856 63.805 C 72.094 65.932 74.391 68.252 75.472 69.966 C 80.433 77.824 85.583 85.561 90.724 93.303 C 97.025 102.792 101.818 112.797 107.496 122.593 C 109.587 126.202 111.108 130.444 113.365 133.818 M 67.61 120.191 C 68.138 116.686 72.316 112.862 74.32 110.115 C 82.024 99.553 89.791 88.557 98.951 79.18 C 103.836 74.18 108.838 68.634 114.307 64.276\",viewBox:\"0 0 200 200\"},{title:\"Scribble 4\",path:\"M 45.109 116.589 C 45.109 108.64 50.316 100.116 53.819 93.211 C 56.596 87.736 59.779 82.457 62.821 77.125 C 65.405 72.597 67.286 67.432 70.469 63.275 C 71.118 62.427 73.026 59.572 73.286 61.919 C 74.249 70.594 73.559 79.838 73.396 88.558 C 73.108 104.02 71.538 119.655 70.14 135.056 M 99.78 70.42 C 90.933 71.896 88.033 83.292 86.899 90.427 C 85.664 98.198 84.718 107.189 88.582 114.317 C 90.432 117.73 96.305 121.021 100.109 119.557 C 106.272 117.182 112.443 108.94 114.6 102.701 C 117.971 92.949 119.154 83.952 112.294 75.366 C 108.43 70.529 104.402 71.739 99.121 71.739 M 134.517 70.394 C 130.579 75.556 127.031 82.41 125.766 88.483 C 124.45 94.802 122.694 103.954 126.244 110.04 C 127.447 112.102 129.167 115.733 132.201 116.311 C 135.253 116.892 140.838 112.741 143.415 111.268 C 145.983 109.801 147.172 107.307 149.077 105.312 C 150.692 103.621 151.275 100.578 152.019 98.504 C 153.326 94.864 153.71 90.598 153.71 86.782 C 153.71 83.375 153.284 78.069 150.695 75.217 C 147.535 71.734 137.532 69.617 133.193 72.096 M 101.097 131.099 C 107.243 128.022 113.714 126.338 120.529 125.529 C 131.78 124.192 144.261 123.52 155.109 127.141 M 113.613 139.013 C 118.831 138.433 124.072 135.802 129.421 135.056 C 135.287 134.238 141.281 133.737 147.206 133.737\",viewBox:\"0 0 200 200\"},{title:\"Scribble 5\",path:\"M 94.922 75.769 C 89.519 71.031 91.511 93.705 91.511 97.265 C 91.511 106.855 88.556 121.195 102.598 121.195 C 113.389 121.195 114.352 118.474 116.246 108.389 C 118.067 98.696 119.426 82.636 111.982 74.836 C 104.242 66.724 94.055 71.804 86.962 78.573 C 80.3 84.933 74.559 92.343 67.631 98.389 C 63.08 102.357 56.353 107.621 54.174 113.531 C 52.043 119.308 75.335 114.374 77.297 113.342 C 90.374 106.476 102.355 98.168 106.012 83.34 C 106.237 82.421 109.665 59.895 107.433 61.095 C 100.47 64.841 95.912 76.505 92.271 82.685 C 85.522 94.136 77.643 104.909 70.854 116.332 C 69.564 118.507 60.199 137.845 64.597 138.019 C 78.157 138.554 82.581 131.822 85.352 118.764 C 88.761 102.694 84.554 87.414 72.844 75.864 C 64.685 67.815 62.077 73.095 70.096 79.509 C 93.511 98.231 126.767 117.831 158.036 117.831\",viewBox:\"0 0 200 200\"},{title:\"Scribble 6\",path:\"M 85.358 98.416 C 85.358 99.097 85.159 100.262 86.176 100.262 C 86.864 100.262 87.888 99.354 87.928 98.647 C 87.97 97.904 87.818 97.032 86.876 97.032 C 86.368 97.032 85.115 96.819 84.891 97.263 M 108.956 96.34 C 108.956 97.833 108.759 98.871 110.695 98.365 C 112.088 98.001 113.862 96.891 113.862 95.302 C 113.862 93.445 112.278 93.572 110.825 93.572 C 109.422 93.572 109.89 95.28 109.89 96.34 M 73.909 111.797 C 78.077 115.538 81.873 119.475 87.253 121.563 C 90.788 122.935 94.778 122.64 98.494 122.64 C 102.819 122.64 106.434 121.405 110.15 119.23 C 116.961 115.243 124.241 109.542 128.166 102.595 C 129.843 99.627 130.268 96.784 130.918 93.572 M 89.204 78.491 C 81.393 78.491 76.555 79.951 70.73 85.668 C 64.032 92.244 60.511 100.298 59.455 109.4 C 58.448 118.088 58.655 125.956 64.907 132.607 C 74.799 143.128 91.711 145.457 105.507 144.184 C 117.567 143.072 129.89 135.719 135.626 124.88 C 142.159 112.536 142.598 95.625 137.691 82.735 C 134.982 75.62 130.235 69.525 124.457 64.556 C 118.131 59.115 110.368 57.185 102.199 56.174 C 91.064 54.797 79.165 55.193 69.195 60.575\",viewBox:\"0 0 200 200\"},{title:\"Scribble 7\",path:\"M 43.268 68.491 C 45.299 73.362 49.466 84.503 49.894 90.103 M 96.026 42.825 C 91.393 56.451 81.245 85.486 77.722 92.618 M 106.911 105.701 C 115.338 96.409 133.856 76.994 140.501 73.674 M 121.449 128.144 C 128.309 126.305 144.878 122.279 156.268 120.889 M 120.076 150.692 C 123.463 151.132 131.74 153.176 137.755 157.825\",viewBox:\"0 0 200 200\"},{title:\"Scribble 8\",path:\"M 45.281 66.118 C 40.223 66.118 34.899 73.116 33.636 77.705 C 31.566 85.222 31.852 93.746 32.391 101.473 C 32.945 109.409 36.109 119.19 43.389 123.508 C 49.109 126.901 59.035 127.992 65.535 126.529 C 71.844 125.109 78.665 119.83 81.011 113.852 C 82.628 109.736 82.722 103.489 79.867 99.938 C 77.812 97.383 71.947 96.785 69.566 98.998 C 66.038 102.273 63.031 106.642 62.4 111.525 C 61.408 119.202 62.791 124.111 69.516 128.46 C 78.205 134.08 91.992 134.393 101.266 130.589 C 111.644 126.333 122.66 117.823 127.741 107.712 C 130.066 103.085 131.221 98.098 131.622 92.956 C 131.853 90.002 132.332 86.165 130.627 83.548 C 127.838 79.267 121.675 78.343 117.838 82.162 C 114.279 85.703 113.786 91.819 115.15 96.472 C 116.233 100.166 120.691 103.088 123.859 104.89 C 127.947 107.214 133.48 107.594 138.092 107.564 C 151.44 107.475 160.941 94.224 168 84.39\",viewBox:\"0 0 200 200\"},{title:\"Scribble 9\",path:\"M 153.363 83.39 C 148.042 79.345 140.629 77.638 138.057 71.234 M 121.162 126.697 C 118.728 124.872 115.335 123.852 112.644 122.407 C 110.466 121.237 108.036 119.386 106.187 117.741 C 105.006 116.692 103.513 114.329 102.949 112.925 M 98.946 127.759 C 99.478 127.759 99.86 128.189 100.376 128.351 C 101.675 128.761 102.622 129.284 103.797 129.937 C 104.108 130.11 106.052 131.317 105.461 131.701 C 104.047 132.62 101.904 132.506 100.317 132.861 C 98.666 133.233 99.692 130.942 100.001 130.316 M 158.512 71.129 C 159.679 72.425 159.972 73.588 159.999 75.203 C 160.091 80.694 154.893 85.222 151.728 88.856 C 147.425 93.796 144.545 99.853 140.254 104.78 C 135.404 110.347 130.82 116.161 125.96 121.739 C 124.177 123.787 122.148 125.565 120.369 127.607 C 119.619 128.468 118.26 129.876 117.025 130.039 C 112.934 130.582 109.364 133.091 105.219 133.684 C 103.52 133.927 99.179 135.051 98.562 132.549 C 98.231 131.205 98.711 129.682 98.397 128.335 C 98.255 127.722 98.322 125.722 98.508 125.179 C 99.156 123.29 98.863 120.89 99.343 118.839 C 99.881 116.536 101.219 115.361 102.461 113.455 C 104.481 110.355 106.637 107.301 108.749 104.187 C 110.588 101.475 112.36 98.819 114.515 96.346 C 116.906 93.6 118.745 90.389 121.127 87.654 C 125.1 83.094 129.399 79.031 133.68 74.771 C 135.887 72.578 138.565 70.94 140.589 68.616 C 142.523 66.396 144.396 64.616 147.869 65.519 C 149.915 66.05 151.572 66.75 153.569 67.476 C 155.176 68.06 156.748 69.968 158.057 71.132 M 39 131.135 C 41.448 129.572 43.829 127.418 46.567 126.402 C 49.153 125.442 52.187 124.996 54.923 125.459 C 58.251 126.025 60.398 128.075 62.534 130.548 C 63.301 131.435 64.118 132.265 64.942 133.098 C 65.607 133.77 66.324 134.722 67.201 135.132 C 67.935 135.474 68.714 134.611 69.266 134.242 C 71.162 132.973 73.159 131.962 75.389 131.456 C 77.869 130.894 80.287 130.8 82.444 132.366 C 83.729 133.298 84.979 134.344 86.354 135.138 C 87.205 135.63 88.914 134.713 89.68 134.196\",viewBox:\"0 0 200 200\"},{title:\"Scribble 10\",path:\"M 21.315 99.618 C 44.533 89.027 105.309 75.676 162.682 107.011 M 153.343 119.746 C 157.643 119.41 162.188 119.364 166.499 119.518 C 167.533 119.555 178.436 120.304 178.314 119.61 C 177.732 116.283 175.701 112.966 174.542 109.81 C 172.172 103.358 170.203 97.019 169.525 90.161 C 169.187 86.729 169.212 83.309 169.017 79.904\",viewBox:\"0 0 200 200\"},{title:\"Scribble 11\",path:\"M 29.062 108.641 C 29.212 109.479 30.212 110.369 30.741 110.977 C 32.582 113.092 34.192 115.391 36.06 117.486 C 39.889 121.781 43.815 126.006 47.587 130.348 C 48.21 131.065 49.725 133.378 50.762 133.611 C 51.147 133.697 51.27 133.261 51.453 132.998 C 52.856 130.983 54.106 128.937 55.63 126.987 C 64.51 115.62 73.293 103.828 83.454 93.571 C 85.021 91.988 86.674 90.485 88.293 88.956 C 88.538 88.725 89.46 87.759 89.859 87.759 C 90.067 87.759 90.678 88.389 90.818 88.5 C 92.298 89.669 93.754 90.853 95.079 92.204 C 101.177 98.418 106.775 105.218 112.603 111.689 C 117.003 116.576 121.386 121.468 125.414 126.674 C 126.016 127.451 126.932 129.686 127.587 127.984 C 128.592 125.376 130.446 122.968 131.834 120.563 C 135.177 114.773 138.216 108.814 141.514 103 C 146.199 94.739 151.292 86.625 157.612 79.527 C 158.599 78.418 160.195 77.273 160.857 75.937 M 146.889 76.962 C 146.888 76.962 148.436 76.029 148.836 75.795 C 152.765 73.489 157.177 71.997 161.351 70.225 C 163.718 69.22 166.178 68.38 168.476 67.22 C 169.207 66.851 170 66.082 170 67.22 C 170 69.203 169.656 71.143 169.492 73.117 C 169.07 78.214 168.768 83.366 167.912 88.414 C 167.346 91.751 167.251 95.287 166.191 98.499\",viewBox:\"0 0 200 200\"},{title:\"Scribble 12\",path:\"M 59.521 87.576 L 59.521 99.676 M 76.052 77.089 L 84.116 77.089 M 58.714 61.359 C 59.58 61.25 59.118 56.573 59.118 55.712 M 36.942 75.88 L 49.038 75.88 M 51.457 66.602 C 50.735 66.602 48.992 64.899 48.635 64.182 M 71.617 66.602 C 73.946 66.602 74.256 65.08 76.052 64.182 M 71.617 85.56 C 71.736 86.513 75.493 89.515 76.455 89.997 M 48.634 87.173 C 45.715 87.173 44.835 89.678 42.586 90.803 M 87.125 33.96 C 85.397 33.745 85.789 32.74 84.033 33.91 C 83.889 34.006 84.914 33.977 85.129 33.761 C 85.949 32.943 84.938 32.418 84.433 32.165 M 163.942 138.787 C 162.708 137.553 158.869 134.575 156.961 136.293 C 155.428 137.674 158.286 140.227 159.454 137.888 M 93.213 137.658 C 93.806 137.658 94.422 137.707 95.011 137.644 C 96.091 137.531 96.772 136.325 97.582 135.739 C 99.945 134.028 101.045 131.575 102.444 129.142 C 104.32 125.882 104.482 122.359 104.482 118.709 L 104.482 114.871 C 104.482 113.825 104.002 112.879 104.002 111.873 C 104.002 111.178 103.763 109.35 103.763 111.034 L 103.763 121.573 C 103.763 123.349 104.42 125.055 104.482 126.811 C 104.575 129.411 106.004 132.703 107.839 134.539 C 108.611 135.312 109.08 136.26 109.877 137.058 C 110.637 137.818 111.55 138.38 112.501 138.803 C 114.384 139.64 116.826 139.336 118.868 139.336 M 92.493 138.377 C 93.501 138.377 94.254 138.317 95.131 138.803 C 95.892 139.227 96.536 140.34 97.049 141.069 C 99.167 144.079 100.812 146.833 101.618 150.463 C 102.472 154.307 102.804 158.219 102.804 162.176 L 102.804 166.68 C 102.804 167.898 102.932 166.492 103.03 166.053 C 103.45 164.161 103.313 162.176 103.897 160.257 C 104.558 158.079 104.932 155.644 105.921 153.594 C 107.346 150.64 108.124 147.506 109.997 144.8 C 111.303 142.912 112.312 141.527 114.673 141.002 C 115.523 140.813 116.414 140.296 117.297 140.296 L 119.108 140.296 M 135.805 74.881 C 139.541 74.881 141.58 80.304 142.346 83.37 C 142.954 85.803 142.705 88.404 143.134 90.875 C 143.255 91.572 143.359 92.472 143.359 93.169 C 143.359 93.54 143.544 94.761 143.544 93.773 C 143.544 91.195 144.131 88.778 145.099 86.4 C 146.087 83.976 147.628 81.879 149.071 79.714 C 150.775 77.157 153.192 76.725 156.072 76.725 M 137.278 74.144 C 138.753 74.144 140.517 74.591 141.609 73.499 C 142.397 72.71 142.767 71.508 143.175 70.499 C 143.862 68.798 144.478 67.273 144.925 65.481 C 145.353 63.768 145.413 61.964 145.662 60.218 C 145.869 58.764 146.123 57.325 146.123 55.856 L 146.123 55.078 C 146.123 56.325 146.496 57.616 146.675 58.846 C 147.313 63.233 147.796 68.638 150.268 72.484 C 150.818 73.341 154.855 76.3 156.048 76.434\",viewBox:\"0 0 200 200\"},{title:\"Scribble 13\",path:\"M 74.29 88.023 C 73.17 87.882 73.726 78.735 73.831 77.25 C 74.032 74.409 76.317 71.065 78.91 69.904 C 80.949 68.992 82.523 68.925 84.72 68.925 C 86.715 68.925 87.433 70.093 88.61 71.618 C 90.054 73.487 89.804 76.424 90.447 78.61 C 90.565 79.007 90.821 80.831 91.312 80.569 C 93.043 79.646 94.221 76.939 95.419 75.454 C 98.663 71.434 111.77 57.097 115.035 68.055 C 116.346 72.453 116.116 77.313 116.116 81.874 L 116.116 86.717 C 116.116 86.787 116.539 86.212 116.818 86.064 C 118.154 85.354 119.615 84.722 121.006 84.132 C 126.835 81.661 133.936 82.636 140.136 82.636 C 143.397 82.636 143.838 84.87 143.838 87.778 C 143.838 93.187 139.218 99.04 135.57 102.714 C 134.632 103.657 133.415 104.176 132.544 105.053 C 131.397 106.207 135.786 105.161 137.407 105.161 C 140.914 105.161 146.442 104.002 148.809 107.338 C 151.235 110.757 149.465 116.572 147.836 119.852 C 145.987 123.576 143.582 125.924 139.217 126.191 C 137.591 126.29 135.511 126.487 133.894 126.191 C 132.791 125.989 132.651 125.533 132.651 126.98 C 132.651 129.968 130.032 132.416 127.301 133.291 C 122.05 134.974 115.511 132.997 111.28 129.864 C 107.75 127.25 105.755 123.691 103.849 119.852 C 103.325 118.797 102.917 118.67 101.904 119.362 C 99.576 120.953 97.486 122.713 95.095 124.259 C 85.775 130.284 76.154 134.581 65.158 135.903 C 60.357 136.48 57.755 134.735 57.755 130.027 C 57.755 125.002 60.57 121.987 64.104 118.873 C 65.03 118.057 66.376 116.914 67.671 116.914 L 63.32 116.914 C 57.317 116.914 51.218 115.422 50.216 108.562 C 49.486 103.563 50.469 98.546 55.323 96.103 C 58.574 94.466 61.057 94.389 64.672 94.389 C 64.84 94.389 67.227 94.504 67.265 94.389 C 67.508 93.656 66.995 91.115 66.995 90.199 C 66.995 86.537 70.327 83.824 73.804 85.574\",viewBox:\"0 0 200 200\"},{title:\"Scribble 14\",path:\"M 73.587 79.826 C 73.587 76.773 73.354 74.814 75.814 72.709 C 78.225 70.647 81.446 70.93 84.38 70.93 C 86.255 70.93 87.83 70.713 88.637 72.808 C 89.514 75.084 90.519 76.832 90.519 79.382 C 90.519 80.739 90.295 80.466 90.964 79.48 C 92.583 77.099 95.322 75.109 97.648 73.5 C 101.822 70.611 107.176 68.261 112.352 68.261 C 113.824 68.261 118.766 68.332 119.036 70.485 C 119.271 72.366 120.388 75.268 118.59 76.935 C 117.627 77.827 117.044 79.096 116.114 80.024 C 115.953 80.185 115.251 80.243 115.322 80.172 C 115.845 79.651 116.864 79.403 117.525 79.134 C 123.355 76.764 129.498 75.827 135.794 76.292 C 138.05 76.459 139.471 77.614 141.314 78.739 C 142.411 79.408 142.57 80.562 143.319 81.161 C 145.194 82.658 141.693 86.237 141.116 87.389 C 140.883 87.854 139.912 88.999 140.918 89.143 C 142.804 89.412 144.615 89.673 146.439 90.28 C 149.473 91.289 152.931 92.837 154.434 95.84 C 156.594 100.153 153.454 103.969 150.226 106.688 C 146.558 109.778 142.852 110.652 138.196 110.519 C 137.174 110.49 136.609 109.858 135.868 109.283 C 135.666 109.126 135.065 112.579 134.977 112.842 C 132.814 119.321 126.892 128.328 119.828 130.091 C 112.559 131.905 93.196 133.345 98.094 120.404 C 98.48 119.382 99.009 117.859 99.777 117.092 C 100.485 116.385 99.146 117.813 98.539 117.982 C 92.815 119.569 86.261 120.877 80.369 119.316 C 74.545 117.774 69.985 113.862 66.11 109.53 C 63.227 106.306 65.998 102.3 68.017 99.819 C 68.578 99.129 69.748 97.853 70.69 97.644 C 71.732 97.413 72.06 97.955 70.864 98.286 C 67.963 99.091 64.799 99.398 61.804 99.398 C 58.668 99.398 55.094 99.905 52.199 98.459 C 44.911 94.822 40.23 83.721 48.634 78.764 C 52.281 76.613 57.254 74.489 61.556 74.489 C 64.066 74.489 67.451 73.891 69.799 74.933 C 71.663 75.76 74.868 77.492 75.814 79.381\",viewBox:\"0 0 200 200\"},];Scribbles.defaultProps={paths:1};addPropertyControls(Scribbles,{paths:{title:\"Shape\",type:ControlType.Enum,options:scribbles.map((_,i)=>i),optionTitles:scribbles.map(shape=>shape.title)},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"},strokeWidth:{title:\"Stroke\",type:ControlType.Number,min:1,max:10,defaultValue:5,displayStepper:true}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Scribbles\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"auto\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Scribbbles.map", "// Generated by Framer (c93245f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,LazyValue,Link,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js\";import Scribbles from\"https://framerusercontent.com/modules/F29vuOKj17Y0RpfftxMt/qxxRgT5GGts1LJr9wcPW/Scribbbles.js\";import Navigation from\"#framer/local/canvasComponent/K9ZySN70y/K9ZySN70y.js\";import metadataProvider from\"#framer/local/webPageMetadata/RsgH0dhwO/RsgH0dhwO.js\";const NavigationFonts=getFonts(Navigation);const MotionDivWithFX=withFX(motion.div);const ScribblesFonts=getFonts(Scribbles);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"h2dDdqVbw\",\"ET3IAi4NW\",\"Y8IZlQcyS\"];const breakpoints={ET3IAi4NW:\"(min-width: 810px) and (max-width: 1199px)\",h2dDdqVbw:\"(min-width: 1200px)\",Y8IZlQcyS:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-goypJ\";const variantClassNames={ET3IAi4NW:\"framer-v-g7tl5d\",h2dDdqVbw:\"framer-v-1rabh8j\",Y8IZlQcyS:\"framer-v-ghn4qb\"};const valuesByLocaleId={c3cwx0Sdp:new LazyValue(()=>import(\"./RsgH0dhwO-0.js\"))};const preloadLocalizedValues=locale=>{const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise){promises.push(promise);}}locale=locale.fallback;}if(promises.length>0){return Promise.all(promises);}};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value){return value;}}locale=locale.fallback;}};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:100};const transition1={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,transition:transition1,x:0,y:100};const transformTemplate1=(_,t)=>`perspective(1200px) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"h2dDdqVbw\",Phone:\"Y8IZlQcyS\",Tablet:\"ET3IAi4NW\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"h2dDdqVbw\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useLayoutEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-goypJ`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-goypJ`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const preloadPromise=preloadLocalizedValues(activeLocale);if(preloadPromise)throw preloadPromise;const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Y8IZlQcyS\")return!isBrowser();return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"h2dDdqVbw\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1rabh8j\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11dfow1-container\",children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"LiCrt7yqX\",layoutId:\"LiCrt7yqX\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:2592,intrinsicWidth:3888,pixelHeight:2592,pixelWidth:3888,sizes:\"100vw\",src:\"https://framerusercontent.com/images/U6snV4wyWgoEjh9crG7WysvEo.jpg\",srcSet:\"https://framerusercontent.com/images/U6snV4wyWgoEjh9crG7WysvEo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/U6snV4wyWgoEjh9crG7WysvEo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/U6snV4wyWgoEjh9crG7WysvEo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/U6snV4wyWgoEjh9crG7WysvEo.jpg 3888w\"},className:\"framer-sqryo0\",\"data-framer-name\":\"Header Image\",name:\"Header Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Y8IZlQcyS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:709,pixelHeight:124,pixelWidth:709,positionX:\"center\",positionY:\"center\",sizes:\"353px\",src:\"https://framerusercontent.com/images/YnV7Y2vPCoWRwvVERFezpSwOTA.png\",srcSet:\"https://framerusercontent.com/images/YnV7Y2vPCoWRwvVERFezpSwOTA.png?scale-down-to=512 512w,https://framerusercontent.com/images/YnV7Y2vPCoWRwvVERFezpSwOTA.png 709w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:709,pixelHeight:124,pixelWidth:709,positionX:\"center\",positionY:\"center\",sizes:\"690px\",src:\"https://framerusercontent.com/images/YnV7Y2vPCoWRwvVERFezpSwOTA.png\",srcSet:\"https://framerusercontent.com/images/YnV7Y2vPCoWRwvVERFezpSwOTA.png?scale-down-to=512 512w,https://framerusercontent.com/images/YnV7Y2vPCoWRwvVERFezpSwOTA.png 709w\"},className:\"framer-gy5tp8\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Y8IZlQcyS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"11 a\\xf1os dando \",/*#__PURE__*/_jsx(\"br\",{}),\"de comer a deportistas\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"60px\"},children:\"11 a\\xf1os dando \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"60px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"60px\"},children:\"de comer a deportistas\"})]})}),className:\"framer-1hcycr8\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Especialistas en  Catering Deportivo.\"})}),className:\"framer-1a7f22\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v0bsjg\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"f5FR5nYta\"},children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1rrh36m framer-attq51\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Nacho Garro\"})}),className:\"framer-144eb2r\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fhH7FcJOu\"},openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-o6m3sb framer-attq51\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Nuestros Equipos\"})}),className:\"framer-bg09df\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c0388g\",\"data-framer-name\":\"Overlay\",name:\"Overlay\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tocpz\",\"data-framer-name\":\"Testimonials 2\",name:\"Testimonials 2\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-l3o82c\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Ofrecemos un servicio de Catering exclusivo que alimenta cada semana a los mejores equipos profesionales en sus viajes a Madrid.\"})}),className:\"framer-1mqn0y9\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ET3IAi4NW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,sizes:\"100vw\",src:\"https://framerusercontent.com/images/HE73ogcPl3hP7B9aousDCOFH3Ho.png\",srcSet:\"https://framerusercontent.com/images/HE73ogcPl3hP7B9aousDCOFH3Ho.png?scale-down-to=512 512w,https://framerusercontent.com/images/HE73ogcPl3hP7B9aousDCOFH3Ho.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HE73ogcPl3hP7B9aousDCOFH3Ho.png 1920w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:\"lazy\",pixelHeight:1080,pixelWidth:1920,sizes:\"100vw\",src:\"https://framerusercontent.com/images/HE73ogcPl3hP7B9aousDCOFH3Ho.png\",srcSet:\"https://framerusercontent.com/images/HE73ogcPl3hP7B9aousDCOFH3Ho.png?scale-down-to=512 512w,https://framerusercontent.com/images/HE73ogcPl3hP7B9aousDCOFH3Ho.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HE73ogcPl3hP7B9aousDCOFH3Ho.png 1920w\"},className:\"framer-1ow605o\",\"data-framer-name\":\"Logos\",name:\"Logos\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Y8IZlQcyS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Servimos a m\\xe1s del 90% \",/*#__PURE__*/_jsx(\"br\",{}),\"de los equipos de La Liga, \",/*#__PURE__*/_jsx(\"br\",{}),\"ACB, Segunda, Segunda REF, \",/*#__PURE__*/_jsx(\"br\",{}),\"Primera Iberdrola o \",/*#__PURE__*/_jsx(\"br\",{}),\"Liga Femenina Endesa.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Servimos a m\\xe1s del 90% de los equipos de La Liga, \",/*#__PURE__*/_jsx(\"br\",{}),\"ACB, Segunda, Segunda REF, Primera Iberdrola o \",/*#__PURE__*/_jsx(\"br\",{}),\"Liga Femenina Endesa.\"]})}),className:\"framer-1bpmvw4\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ev3wr5\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:189,intrinsicWidth:199,loading:\"lazy\",pixelHeight:189,pixelWidth:199,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/FX4jF6ihii4wlOGigXQmngOVNts.png\"},className:\"framer-1r440gw\",\"data-framer-name\":\"Logo\",name:\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:137,intrinsicWidth:178,loading:\"lazy\",pixelHeight:137,pixelWidth:178,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/65qLUPztkDO9m4hy0oAyuAnswoU.png\"},className:\"framer-1qgr4bh\",\"data-framer-name\":\"Logo\",name:\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:171,intrinsicWidth:254,loading:\"lazy\",pixelHeight:171,pixelWidth:254,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/BmobJiOWnq2zvC5nqyRmzX1MHzA.png\"},className:\"framer-ulgaho\",\"data-framer-name\":\"Logo\",name:\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:204,intrinsicWidth:507,loading:\"lazy\",pixelHeight:204,pixelWidth:507,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/3BsdcpLdMaidQilzUuHmeskhCI.png\"},className:\"framer-yys6m2\",\"data-framer-name\":\"Logo\",name:\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:201,intrinsicWidth:397,loading:\"lazy\",pixelHeight:201,pixelWidth:397,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8pmEELmKPYPKp5ccAqhn47bleo.png\"},className:\"framer-1wge5d3\",\"data-framer-name\":\"Logo\",name:\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:116,intrinsicWidth:204,loading:\"lazy\",pixelHeight:116,pixelWidth:204,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KVnMUrhokNBUAkMWSTeWbut3r0.png\"},className:\"framer-1pqp8r7\",\"data-framer-name\":\"Logo\",name:\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:210,intrinsicWidth:460,loading:\"lazy\",pixelHeight:210,pixelWidth:460,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cDvNAL0ukCSc1VmpriCB3W0AKE.png\"},className:\"framer-13jj7su\",\"data-framer-name\":\"Logo\",name:\"Logo\"})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-plojwb\",\"data-framer-name\":\"Blog\",name:\"Blog\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1irivjy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oiexxi\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ET3IAi4NW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:677,loading:\"lazy\",pixelHeight:360,pixelWidth:677,positionX:\"4.8%\",positionY:\"56.7%\",sizes:\"max(100vw, 100px)\",src:\"https://framerusercontent.com/images/GDUcIvry4EdusB2IirYpbxM30k.png\",srcSet:\"https://framerusercontent.com/images/GDUcIvry4EdusB2IirYpbxM30k.png?scale-down-to=512 512w,https://framerusercontent.com/images/GDUcIvry4EdusB2IirYpbxM30k.png 677w\"}},Y8IZlQcyS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:677,loading:\"lazy\",pixelHeight:360,pixelWidth:677,positionX:\"4.8%\",positionY:\"56.7%\",sizes:\"max(100vw, 100px)\",src:\"https://framerusercontent.com/images/GDUcIvry4EdusB2IirYpbxM30k.png\",srcSet:\"https://framerusercontent.com/images/GDUcIvry4EdusB2IirYpbxM30k.png?scale-down-to=512 512w,https://framerusercontent.com/images/GDUcIvry4EdusB2IirYpbxM30k.png 677w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:677,loading:\"lazy\",pixelHeight:360,pixelWidth:677,positionX:\"4.8%\",positionY:\"56.7%\",sizes:\"320px\",src:\"https://framerusercontent.com/images/GDUcIvry4EdusB2IirYpbxM30k.png\",srcSet:\"https://framerusercontent.com/images/GDUcIvry4EdusB2IirYpbxM30k.png?scale-down-to=512 512w,https://framerusercontent.com/images/GDUcIvry4EdusB2IirYpbxM30k.png 677w\"},className:\"framer-57yf\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-itkjg6\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ET3IAi4NW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Profesionalidad\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Profesionalidad\"})}),className:\"framer-45svgf\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"10 a\\xf1os de experiencia nos permiten estar conectados con equipos, delegados, nutricionistas\u2026\"})}),className:\"framer-ky7a6l\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dpj2kg\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ET3IAi4NW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1126,loading:\"lazy\",pixelHeight:1080,pixelWidth:1126,sizes:\"100vw\",src:\"https://framerusercontent.com/images/yPhrkeg6YK7AhBh0OZRmRY1Vxc.png\",srcSet:\"https://framerusercontent.com/images/yPhrkeg6YK7AhBh0OZRmRY1Vxc.png?scale-down-to=512 512w,https://framerusercontent.com/images/yPhrkeg6YK7AhBh0OZRmRY1Vxc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yPhrkeg6YK7AhBh0OZRmRY1Vxc.png 1126w\"}},Y8IZlQcyS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1126,loading:\"lazy\",pixelHeight:1080,pixelWidth:1126,sizes:\"100vw\",src:\"https://framerusercontent.com/images/yPhrkeg6YK7AhBh0OZRmRY1Vxc.png\",srcSet:\"https://framerusercontent.com/images/yPhrkeg6YK7AhBh0OZRmRY1Vxc.png?scale-down-to=512 512w,https://framerusercontent.com/images/yPhrkeg6YK7AhBh0OZRmRY1Vxc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yPhrkeg6YK7AhBh0OZRmRY1Vxc.png 1126w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1126,loading:\"lazy\",pixelHeight:1080,pixelWidth:1126,sizes:\"320px\",src:\"https://framerusercontent.com/images/yPhrkeg6YK7AhBh0OZRmRY1Vxc.png\",srcSet:\"https://framerusercontent.com/images/yPhrkeg6YK7AhBh0OZRmRY1Vxc.png?scale-down-to=512 512w,https://framerusercontent.com/images/yPhrkeg6YK7AhBh0OZRmRY1Vxc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yPhrkeg6YK7AhBh0OZRmRY1Vxc.png 1126w\"},className:\"framer-nx0opm\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zims2d\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ET3IAi4NW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Cercan\\xeda\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Cercan\\xeda\"})}),className:\"framer-1wo8twm\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Trasladamos todos los valores aprendidos en el deporte a nuestro d\\xeda a d\\xeda.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1fibjqq\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vjcmd3\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ET3IAi4NW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1074,intrinsicWidth:649,loading:\"lazy\",pixelHeight:1074,pixelWidth:649,sizes:\"100vw\",src:\"https://framerusercontent.com/images/1T3MFc2xuRObK5hZDuaC1PVGfh0.png\",srcSet:\"https://framerusercontent.com/images/1T3MFc2xuRObK5hZDuaC1PVGfh0.png?scale-down-to=1024 618w,https://framerusercontent.com/images/1T3MFc2xuRObK5hZDuaC1PVGfh0.png 649w\"}},Y8IZlQcyS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1074,intrinsicWidth:649,loading:\"lazy\",pixelHeight:1074,pixelWidth:649,sizes:\"100vw\",src:\"https://framerusercontent.com/images/1T3MFc2xuRObK5hZDuaC1PVGfh0.png\",srcSet:\"https://framerusercontent.com/images/1T3MFc2xuRObK5hZDuaC1PVGfh0.png?scale-down-to=1024 618w,https://framerusercontent.com/images/1T3MFc2xuRObK5hZDuaC1PVGfh0.png 649w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1074,intrinsicWidth:649,loading:\"lazy\",pixelHeight:1074,pixelWidth:649,sizes:\"320px\",src:\"https://framerusercontent.com/images/1T3MFc2xuRObK5hZDuaC1PVGfh0.png\",srcSet:\"https://framerusercontent.com/images/1T3MFc2xuRObK5hZDuaC1PVGfh0.png?scale-down-to=1024 618w,https://framerusercontent.com/images/1T3MFc2xuRObK5hZDuaC1PVGfh0.png 649w\"},className:\"framer-1mrb674\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ao8g8w\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ET3IAi4NW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Calidad\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Calidad\"})}),className:\"framer-4mbzur\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ET3IAi4NW:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Ingredientes de primera calidad y bajo la supervisi\\xf3n de nutricionistas.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Ingredientes de primera calidad y bajo la supervisi\\xf3n de nutricionistas.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1fyj3sj\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1edov8l\",\"data-framer-name\":\"Features\",name:\"Features\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5uaykb\",\"data-framer-name\":\"Features\",name:\"Features\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1p4rkni\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Y8IZlQcyS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:635,intrinsicWidth:667,loading:\"lazy\",pixelHeight:635,pixelWidth:667,positionX:\"center\",positionY:\"top\",sizes:\"1000px\",src:\"https://framerusercontent.com/images/5j4U12vvlxGou9n46qQSADrLyZI.jpg\",srcSet:\"https://framerusercontent.com/images/5j4U12vvlxGou9n46qQSADrLyZI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5j4U12vvlxGou9n46qQSADrLyZI.jpg 667w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:635,intrinsicWidth:667,loading:\"lazy\",pixelHeight:635,pixelWidth:667,positionX:\"center\",positionY:\"top\",sizes:\"475px\",src:\"https://framerusercontent.com/images/5j4U12vvlxGou9n46qQSADrLyZI.jpg\",srcSet:\"https://framerusercontent.com/images/5j4U12vvlxGou9n46qQSADrLyZI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5j4U12vvlxGou9n46qQSADrLyZI.jpg 667w\"},className:\"framer-q9ntxe\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-idq3rh\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ET3IAi4NW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--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:\"Nacho Garro\"})})},Y8IZlQcyS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--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:\"Nacho Garro\"})})}},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:\"Nacho Garro\"})}),className:\"framer-bhwu1l\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ET3IAi4NW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Nacho Garro, ex-futbolista profesional y 10 a\\xf1os gestionando el equipo de La Mendozina, une sus dos pasiones en su visi\\xf3n empresarial: pasi\\xf3n por la cocina casera y el deporte.\"})})},Y8IZlQcyS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Nacho Garro, ex-futbolista profesional y 10 a\\xf1os gestionando el equipo de La Mendozina, une sus dos pasiones en su visi\\xf3n empresarial: pasi\\xf3n por la cocina casera y el deporte.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Nacho Garro, ex-futbolista profesional y 10 a\\xf1os gestionando el equipo de La Mendozina, une sus dos pasiones en su visi\\xf3n empresarial: pasi\\xf3n por la cocina casera y el deporte.\"})}),className:\"framer-1b602of\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"f5FR5nYta\"},children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-16s6ltv framer-attq51\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Conocer m\\xe1s\"})}),className:\"framer-1mu2w18\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ws4zj7 hidden-ghn4qb\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-jg74v6\",\"data-framer-name\":\"Content\",name:\"Content\"})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-17vktyq\",\"data-framer-name\":\"datos\",name:\"datos\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ult0p1\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6z6uwg\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11olcp9-container\",children:/*#__PURE__*/_jsx(Scribbles,{color:\"rgb(255, 255, 255)\",height:\"100%\",id:\"PF3Oq9Jhq\",layoutId:\"PF3Oq9Jhq\",paths:10,strokeWidth:10,style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Qm93bGJ5IE9uZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bowlby One\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"11\"})}),className:\"framer-1tb7pgj\",fonts:[\"GF;Bowlby One-regular\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.025em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Temporadas seguidas \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.025em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"haciendo equipo\"})]}),className:\"framer-1j489tx\",fonts:[\"GF;Inter-regular\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rujae1\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7810k8-container\",children:/*#__PURE__*/_jsx(Scribbles,{color:\"rgb(255, 255, 255)\",height:\"100%\",id:\"hIEqs97UC\",layoutId:\"hIEqs97UC\",paths:1,strokeWidth:10,style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Qm93bGJ5IE9uZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bowlby One\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"13.000\"})}),className:\"framer-1d7csn\",fonts:[\"GF;Bowlby One-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.025em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Deportistas \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.025em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"servidos al a\\xf1o\"})]}),className:\"framer-tyep5s\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-522uzb\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hqk618-container\",children:/*#__PURE__*/_jsx(Scribbles,{color:\"rgb(255, 255, 255)\",height:\"100%\",id:\"UgHNs7IkS\",layoutId:\"UgHNs7IkS\",paths:5,strokeWidth:10,style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Qm93bGJ5IE9uZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bowlby One\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"10\"})}),className:\"framer-13rb8pc\",fonts:[\"GF;Bowlby One-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.025em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Equipos \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.025em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"por semana\"})]}),className:\"framer-jejt2u\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1is0jin\",\"data-framer-name\":\"Metrics\",name:\"Metrics\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8tg6jk\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lcvuhc\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i3xk0g-container\",children:/*#__PURE__*/_jsx(Scribbles,{color:\"rgb(237, 196, 179)\",height:\"100%\",id:\"vZR6a1ytn\",layoutId:\"vZR6a1ytn\",paths:10,strokeWidth:10,style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Qm93bGJ5IE9uZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bowlby One\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(237, 196, 179)\"},children:\"20\"})}),className:\"framer-148uq4j\",fonts:[\"GF;Bowlby One-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGxheWZhaXItcmVndWxhcg==\",\"--framer-font-family\":'\"Playfair\", \"Playfair Placeholder\", serif',\"--framer-letter-spacing\":\"-0.025em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(230, 184, 162)\"},children:\"Erstwhile footballer\"})}),className:\"framer-vpn8g5\",fonts:[\"GF;Playfair-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sw0y1k-container\",children:/*#__PURE__*/_jsx(Scribbles,{color:\"rgb(13, 13, 13)\",height:\"100%\",id:\"fzwMkjmte\",layoutId:\"fzwMkjmte\",paths:13,strokeWidth:5,style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8las89\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l16c2o-container\",children:/*#__PURE__*/_jsx(Scribbles,{color:\"rgb(237, 196, 179)\",height:\"100%\",id:\"mluKPKHgC\",layoutId:\"mluKPKHgC\",paths:1,strokeWidth:10,style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Qm93bGJ5IE9uZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bowlby One\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(237, 196, 179)\"},children:\"100s\"})}),className:\"framer-12np6wk\",fonts:[\"GF;Bowlby One-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGxheWZhaXItcmVndWxhcg==\",\"--framer-font-family\":'\"Playfair\", \"Playfair Placeholder\", serif',\"--framer-letter-spacing\":\"-0.025em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(230, 184, 162)\"},children:\"Satisfied Teams\"})}),className:\"framer-15ygfx5\",fonts:[\"GF;Playfair-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kwi39y\",\"data-framer-name\":\"Metrics\",name:\"Metrics\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11v65dx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dfy96a\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tochc2-container\",children:/*#__PURE__*/_jsx(Scribbles,{color:\"rgb(237, 196, 179)\",height:\"100%\",id:\"AskVbFZke\",layoutId:\"AskVbFZke\",paths:10,strokeWidth:10,style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Qm93bGJ5IE9uZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bowlby One\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(237, 196, 179)\"},children:\"20\"})}),className:\"framer-y18drw\",fonts:[\"GF;Bowlby One-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGxheWZhaXItcmVndWxhcg==\",\"--framer-font-family\":'\"Playfair\", \"Playfair Placeholder\", serif',\"--framer-letter-spacing\":\"-0.025em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(230, 184, 162)\"},children:\"Erstwhile footballer\"})}),className:\"framer-16j8upn\",fonts:[\"GF;Playfair-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lsgy0d-container\",children:/*#__PURE__*/_jsx(Scribbles,{color:\"rgb(13, 13, 13)\",height:\"100%\",id:\"CutNdNmMx\",layoutId:\"CutNdNmMx\",paths:13,strokeWidth:5,style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cb4bgx\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j7xxz1-container\",children:/*#__PURE__*/_jsx(Scribbles,{color:\"rgb(237, 196, 179)\",height:\"100%\",id:\"jeE8oHKJ1\",layoutId:\"jeE8oHKJ1\",paths:1,strokeWidth:10,style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Qm93bGJ5IE9uZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bowlby One\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(237, 196, 179)\"},children:\"100s\"})}),className:\"framer-17mjq2g\",fonts:[\"GF;Bowlby One-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGxheWZhaXItcmVndWxhcg==\",\"--framer-font-family\":'\"Playfair\", \"Playfair Placeholder\", serif',\"--framer-letter-spacing\":\"-0.025em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(230, 184, 162)\"},children:\"Satisfied Teams\"})}),className:\"framer-rjd38q\",fonts:[\"GF;Playfair-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j33nv5\",\"data-framer-name\":\"Pivot\",name:\"Pivot\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eqb0pg\",\"data-framer-name\":\"Wrapper\",name:\"Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"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\":\"center\"},children:[\"\\xa1Somos parte de tu equipo!\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-km2ort\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k884nj\",\"data-framer-name\":\"Buttons\",name:\"Buttons\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qcy46m\",\"data-framer-name\":\"Slider_Animado\",name:\"Slider_Animado\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wudibl-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"y2ZTMU4i5\",layoutId:\"y2ZTMU4i5\",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:401.1111217369271,intrinsicWidth:711.1111299491228,pixelHeight:361,pixelWidth:640,sizes:\"711px\",src:\"https://framerusercontent.com/images/H5bN3R1C0M83hTsWS7jeeoy4W3o.png\",srcSet:\"https://framerusercontent.com/images/H5bN3R1C0M83hTsWS7jeeoy4W3o.png?scale-down-to=512 512w,https://framerusercontent.com/images/H5bN3R1C0M83hTsWS7jeeoy4W3o.png 640w\"},className:\"framer-1vvxzbk\",\"data-framer-name\":\"Rectangle_15\",name:\"Rectangle_15\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:401.1111217369271,intrinsicWidth:711.1111299491228,pixelHeight:361,pixelWidth:640,sizes:\"711px\",src:\"https://framerusercontent.com/images/gziaj7ixxMuTUJ4kgrh1SwfUwI.png\",srcSet:\"https://framerusercontent.com/images/gziaj7ixxMuTUJ4kgrh1SwfUwI.png?scale-down-to=512 512w,https://framerusercontent.com/images/gziaj7ixxMuTUJ4kgrh1SwfUwI.png 640w\"},className:\"framer-1f2t140\",\"data-framer-name\":\"Rectangle_16\",name:\"Rectangle_16\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:401.1111217369271,intrinsicWidth:932.2222469176781,pixelHeight:361,pixelWidth:839,sizes:\"932px\",src:\"https://framerusercontent.com/images/BZ8n8wzsenXIBdwBmxfzA9ddE.png\",srcSet:\"https://framerusercontent.com/images/BZ8n8wzsenXIBdwBmxfzA9ddE.png?scale-down-to=512 512w,https://framerusercontent.com/images/BZ8n8wzsenXIBdwBmxfzA9ddE.png 839w\"},className:\"framer-xhrbei\",\"data-framer-name\":\"Rectangle_14\",name:\"Rectangle_14\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:401.1111217369271,intrinsicWidth:932.2222469176781,pixelHeight:361,pixelWidth:839,sizes:\"932px\",src:\"https://framerusercontent.com/images/k5tQ4eT0xY0YYxB4mAWpWz1MsU.png\",srcSet:\"https://framerusercontent.com/images/k5tQ4eT0xY0YYxB4mAWpWz1MsU.png?scale-down-to=512 512w,https://framerusercontent.com/images/k5tQ4eT0xY0YYxB4mAWpWz1MsU.png 839w\"},className:\"framer-1kybtek\",\"data-framer-name\":\"Rectangle_11\",name:\"Rectangle_11\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:401.1111217369271,intrinsicWidth:711.1111299491228,pixelHeight:361,pixelWidth:640,sizes:\"711px\",src:\"https://framerusercontent.com/images/bKUb5VvbAWg5ed0cVo6GRitei5o.png\",srcSet:\"https://framerusercontent.com/images/bKUb5VvbAWg5ed0cVo6GRitei5o.png?scale-down-to=512 512w,https://framerusercontent.com/images/bKUb5VvbAWg5ed0cVo6GRitei5o.png 640w\"},className:\"framer-wg64ul\",\"data-framer-name\":\"Rectangle_13\",name:\"Rectangle_13\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dcb1jd\",\"data-framer-name\":\"Testimonials 3\",name:\"Testimonials 3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Y8IZlQcyS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\"},children:[\"Orgullosos de\",/*#__PURE__*/_jsx(\"br\",{}),\" tener la \",/*#__PURE__*/_jsx(\"br\",{}),\"confianza de \",/*#__PURE__*/_jsx(\"br\",{}),\"nuestros clientes\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"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\":\"center\"},children:[\"Orgullosos de tener la \",/*#__PURE__*/_jsx(\"br\",{}),\"confianza de nuestros clientes\"]})}),className:\"framer-1ogn6i1\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sbw0bp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qass4v\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fc5tpc\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cvn95i\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1092rmk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"Directivo\",/*#__PURE__*/_jsx(\"br\",{}),\"Equipo ACB\"]})}),className:\"framer-19ia91c\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:'\"Nacho Garro se involucra de manera \\xfanica, asegur\\xe1ndose de que cada comida sea una experiencia saludable y deliciosa para nuestros deportistas\"'})}),className:\"framer-rhj9yw\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i4cu59\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1en5qj4\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-unbrgu\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"Jugadora \",/*#__PURE__*/_jsx(\"br\",{}),\"Equipo Liga Iberdrola\"]})}),className:\"framer-15thb39\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:'\"Nacho y La Medozina. \\xa1Siempre en mi equipo!\"'})}),className:\"framer-nvzdn2\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1em4esy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9wj2p3\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-s3hj3y\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-72gdr4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"Nutricionista \",/*#__PURE__*/_jsx(\"br\",{}),\"Equipo La Liga\"]})}),className:\"framer-ca01md\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:'\"La Mendozina es sin duda el socio ideal para cualquier profesional de la nutrici\\xf3n deportiva\"'})}),className:\"framer-1u1pwmp\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kf5ay4\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yk094\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1arsjsk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"Nutricionista \",/*#__PURE__*/_jsx(\"br\",{}),\"Primera Divisi\\xf3n\"]})}),className:\"framer-1tmkey\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:'\"La Mendozina es sin duda el socio ideal para cualquier profesional de la nutrici\\xf3n deportiva\"'})}),className:\"framer-qbm00j\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vdh5aj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vz6qyh\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ajutrl\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bmz81k\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"Jefe Nutrici\\xf3n\",/*#__PURE__*/_jsx(\"br\",{}),\"La Liga\"]})}),className:\"framer-1jsmdw7\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:'\"La Mendozina redefine el est\\xe1ndar en catering deportivo. Su profesionalidad es evidente en cada detalle\"'})}),className:\"framer-sd3193\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9v7j7u\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3013nj\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jlia71\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"Delegado\",/*#__PURE__*/_jsx(\"br\",{}),\"Liga Endesa\"]})}),className:\"framer-7pkobo\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:'\"La puntualidad de La Mendozina ha sido un factor clave en la planificaci\\xf3n nutricional de nuestros equipos\"'})}),className:\"framer-1ao4ma8\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(Link,{href:\"mailto:NachoGarro55@gmail.com \",openInNewTab:true,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-147sjdn framer-attq51\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8ebb4457-384c-4a88-b9cb-52e778b1464e, rgb(230, 230, 230))\"},children:\"\\xa9 La Mendozina 2024\"})}),className:\"framer-3g6swa\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7phplp\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\\xa1Contacta!\"})}),className:\"framer-118bxvc\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-goypJ { background: white; }`,\".framer-goypJ.framer-attq51, .framer-goypJ .framer-attq51 { display: block; }\",\".framer-goypJ.framer-1rabh8j { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-goypJ .framer-11dfow1-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-goypJ .framer-sqryo0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 600px; justify-content: center; overflow: hidden; padding: 60px 60px 60px 60px; position: relative; width: 100%; }\",\".framer-goypJ .framer-gy5tp8 { flex: none; height: 176px; position: relative; width: 690px; z-index: 1; }\",\".framer-goypJ .framer-1hcycr8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-goypJ .framer-1a7f22 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 483px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-goypJ .framer-1v0bsjg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-goypJ .framer-1rrh36m { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px 15px 15px 15px; position: relative; text-decoration: none; width: auto; }\",\".framer-goypJ .framer-144eb2r, .framer-goypJ .framer-bg09df { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-goypJ .framer-o6m3sb { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.25); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px 15px 15px 15px; position: relative; text-decoration: none; width: auto; }\",\".framer-goypJ .framer-1c0388g { background-color: rgba(0, 0, 0, 0.5); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-goypJ .framer-1tocpz { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 150px 40px 150px 40px; position: relative; width: 100%; }\",\".framer-goypJ .framer-l3o82c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1000px; }\",\".framer-goypJ .framer-1mqn0y9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 750px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-goypJ .framer-1ow605o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: auto; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-goypJ .framer-1bpmvw4, .framer-goypJ .framer-bhwu1l, .framer-goypJ .framer-1mu2w18, .framer-goypJ .framer-1d7csn, .framer-goypJ .framer-13rb8pc, .framer-goypJ .framer-148uq4j, .framer-goypJ .framer-12np6wk, .framer-goypJ .framer-y18drw, .framer-goypJ .framer-17mjq2g, .framer-goypJ .framer-1ogn6i1, .framer-goypJ .framer-19ia91c, .framer-goypJ .framer-15thb39, .framer-goypJ .framer-ca01md, .framer-goypJ .framer-1tmkey, .framer-goypJ .framer-1jsmdw7, .framer-goypJ .framer-7pkobo { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-goypJ .framer-1ev3wr5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 60px; height: auto; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1000px; }\",\".framer-goypJ .framer-1r440gw, .framer-goypJ .framer-ulgaho, .framer-goypJ .framer-yys6m2 { aspect-ratio: 2.9565217391304346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 68px); overflow: hidden; position: relative; width: 200px; }\",\".framer-goypJ .framer-1qgr4bh { aspect-ratio: 2.9565217391304346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 68px); overflow: hidden; position: sticky; top: 0px; width: 200px; will-change: transform; z-index: 1; }\",\".framer-goypJ .framer-1wge5d3, .framer-goypJ .framer-1pqp8r7, .framer-goypJ .framer-13jj7su { aspect-ratio: 2.9565217391304346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 67px); overflow: hidden; position: relative; width: 200px; }\",\".framer-goypJ .framer-plojwb { 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-goypJ .framer-1irivjy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1000px; }\",\".framer-goypJ .framer-oiexxi { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-width: 100px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-goypJ .framer-57yf, .framer-goypJ .framer-nx0opm, .framer-goypJ .framer-1mrb674 { aspect-ratio: 1.3333333333333333 / 1; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 240px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-goypJ .framer-itkjg6, .framer-goypJ .framer-zims2d, .framer-goypJ .framer-1ao8g8w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: center; padding: 30px 30px 30px 30px; position: relative; width: 100%; }\",\".framer-goypJ .framer-45svgf, .framer-goypJ .framer-1wo8twm, .framer-goypJ .framer-4mbzur, .framer-goypJ .framer-km2ort { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-goypJ .framer-ky7a6l, .framer-goypJ .framer-1fibjqq, .framer-goypJ .framer-1fyj3sj, .framer-goypJ .framer-rhj9yw, .framer-goypJ .framer-nvzdn2, .framer-goypJ .framer-1u1pwmp, .framer-goypJ .framer-qbm00j, .framer-goypJ .framer-sd3193, .framer-goypJ .framer-1ao4ma8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-goypJ .framer-1dpj2kg, .framer-goypJ .framer-vjcmd3 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-goypJ .framer-1edov8l { background-color: var(--token-a2c1de50-3936-46f1-ac5b-fc1faabf1f99, #f7f7f7); flex: none; height: 597px; overflow: hidden; position: relative; width: 100%; }\",\".framer-goypJ .framer-5uaykb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; left: 50%; max-width: 100%; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 1000px; }\",\".framer-goypJ .framer-1p4rkni, .framer-goypJ .framer-1ws4zj7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\",\".framer-goypJ .framer-q9ntxe { align-content: center; align-items: center; aspect-ratio: 1.3333333333333333 / 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: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 356px); justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-goypJ .framer-idq3rh, .framer-goypJ .framer-jg74v6 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-goypJ .framer-1b602of { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 417px; word-break: break-word; word-wrap: break-word; }\",\".framer-goypJ .framer-16s6ltv { align-content: center; align-items: center; background-color: #eb202e; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.18), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.17997), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.17241), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.15889), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.13064), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.0625); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 47px; justify-content: center; overflow: visible; padding: 15px 15px 15px 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-goypJ .framer-17vktyq { background-color: #eb202e; flex: none; height: 571px; overflow: visible; position: relative; width: 100%; }\",\".framer-goypJ .framer-1ult0p1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; left: 50%; max-width: 1000px; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 1000px; }\",\".framer-goypJ .framer-6z6uwg { background-color: #eb202e; flex: 1 0 0px; height: 326px; overflow: visible; position: relative; width: 1px; }\",\".framer-goypJ .framer-11olcp9-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%) rotate(5deg); width: 155px; z-index: 1; }\",\".framer-goypJ .framer-1tb7pgj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; bottom: 70px; flex: none; height: auto; left: 50%; overflow: visible; position: absolute; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-goypJ .framer-1j489tx { --framer-paragraph-spacing: 0px; bottom: 0px; flex: none; height: auto; left: 50%; max-width: 400px; overflow: visible; position: absolute; transform: translateX(-50%); white-space: pre-wrap; width: 200px; word-break: break-word; word-wrap: break-word; }\",\".framer-goypJ .framer-rujae1, .framer-goypJ .framer-522uzb { align-content: center; align-items: center; background-color: #eb202e; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: center; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 1px; }\",\".framer-goypJ .framer-7810k8-container, .framer-goypJ .framer-hqk618-container { flex: none; height: auto; position: relative; transform: rotate(5deg); width: 155px; z-index: 1; }\",\".framer-goypJ .framer-tyep5s, .framer-goypJ .framer-jejt2u, .framer-goypJ .framer-vpn8g5, .framer-goypJ .framer-15ygfx5, .framer-goypJ .framer-16j8upn, .framer-goypJ .framer-rjd38q { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 400px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-goypJ .framer-1is0jin, .framer-goypJ .framer-1kwi39y { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 52%; overflow: hidden; padding: 100px 100px 100px 100px; position: absolute; top: 6823px; transform: translateX(-50%); width: 100px; }\",\".framer-goypJ .framer-8tg6jk, .framer-goypJ .framer-11v65dx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-goypJ .framer-1lcvuhc, .framer-goypJ .framer-8las89, .framer-goypJ .framer-dfy96a, .framer-goypJ .framer-cb4bgx { align-content: center; align-items: center; background-color: #0d0d0d; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 60px 60px 60px 60px; position: relative; width: 1px; }\",\".framer-goypJ .framer-1i3xk0g-container, .framer-goypJ .framer-1tochc2-container { flex: none; height: auto; position: relative; transform: rotate(5deg); width: 200px; z-index: 1; }\",\".framer-goypJ .framer-1sw0y1k-container, .framer-goypJ .framer-lsgy0d-container { bottom: -100px; flex: none; height: auto; left: -100px; position: absolute; transform: rotate(15deg); width: 200px; z-index: 1; }\",\".framer-goypJ .framer-l16c2o-container, .framer-goypJ .framer-1j7xxz1-container { flex: none; height: auto; position: relative; width: 200px; z-index: 1; }\",\".framer-goypJ .framer-1j33nv5 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 200px 40px; position: relative; width: 100%; }\",\".framer-goypJ .framer-eqb0pg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1000px; }\",\".framer-goypJ .framer-1k884nj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-goypJ .framer-1qcy46m { flex: none; height: 398px; overflow: hidden; position: relative; width: 1206px; }\",\".framer-goypJ .framer-wudibl-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-goypJ .framer-1vvxzbk, .framer-goypJ .framer-1f2t140, .framer-goypJ .framer-wg64ul { aspect-ratio: 1.7728531855955678 / 1; height: var(--framer-aspect-ratio-supported, 401px); overflow: visible; position: relative; width: 711px; }\",\".framer-goypJ .framer-xhrbei, .framer-goypJ .framer-1kybtek { aspect-ratio: 2.3240997229916895 / 1; height: var(--framer-aspect-ratio-supported, 401px); overflow: visible; position: relative; width: 932px; }\",\".framer-goypJ .framer-dcb1jd { align-content: center; align-items: center; background-color: #f7f7f7; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 58px 40px 58px 40px; position: relative; width: 100%; }\",\".framer-goypJ .framer-sbw0bp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1000px; }\",\".framer-goypJ .framer-1qass4v, .framer-goypJ .framer-1em4esy, .framer-goypJ .framer-1vdh5aj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-goypJ .framer-fc5tpc, .framer-goypJ .framer-1vz6qyh, .framer-goypJ .framer-9v7j7u { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; padding: 30px 30px 30px 30px; position: relative; width: 100%; }\",\".framer-goypJ .framer-1cvn95i, .framer-goypJ .framer-1en5qj4, .framer-goypJ .framer-s3hj3y, .framer-goypJ .framer-yk094, .framer-goypJ .framer-ajutrl, .framer-goypJ .framer-3013nj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-goypJ .framer-1092rmk, .framer-goypJ .framer-unbrgu, .framer-goypJ .framer-72gdr4, .framer-goypJ .framer-1arsjsk, .framer-goypJ .framer-1bmz81k, .framer-goypJ .framer-1jlia71 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-goypJ .framer-i4cu59, .framer-goypJ .framer-9wj2p3, .framer-goypJ .framer-1kf5ay4 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: flex-start; padding: 30px 30px 30px 30px; position: relative; width: 100%; }\",\".framer-goypJ .framer-147sjdn { align-content: center; align-items: center; background-color: #222222; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 100%; overflow: visible; padding: 50px 50px 50px 50px; position: relative; text-decoration: none; width: 100%; }\",\".framer-goypJ .framer-3g6swa, .framer-goypJ .framer-118bxvc { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-goypJ .framer-7phplp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-goypJ.framer-1rabh8j, .framer-goypJ .framer-sqryo0, .framer-goypJ .framer-1v0bsjg, .framer-goypJ .framer-1rrh36m, .framer-goypJ .framer-o6m3sb, .framer-goypJ .framer-1tocpz, .framer-goypJ .framer-l3o82c, .framer-goypJ .framer-1ow605o, .framer-goypJ .framer-1ev3wr5, .framer-goypJ .framer-plojwb, .framer-goypJ .framer-1irivjy, .framer-goypJ .framer-oiexxi, .framer-goypJ .framer-itkjg6, .framer-goypJ .framer-1dpj2kg, .framer-goypJ .framer-zims2d, .framer-goypJ .framer-vjcmd3, .framer-goypJ .framer-1ao8g8w, .framer-goypJ .framer-5uaykb, .framer-goypJ .framer-1p4rkni, .framer-goypJ .framer-q9ntxe, .framer-goypJ .framer-idq3rh, .framer-goypJ .framer-16s6ltv, .framer-goypJ .framer-1ws4zj7, .framer-goypJ .framer-jg74v6, .framer-goypJ .framer-1ult0p1, .framer-goypJ .framer-rujae1, .framer-goypJ .framer-522uzb, .framer-goypJ .framer-1is0jin, .framer-goypJ .framer-8tg6jk, .framer-goypJ .framer-1lcvuhc, .framer-goypJ .framer-8las89, .framer-goypJ .framer-1kwi39y, .framer-goypJ .framer-11v65dx, .framer-goypJ .framer-dfy96a, .framer-goypJ .framer-cb4bgx, .framer-goypJ .framer-1j33nv5, .framer-goypJ .framer-eqb0pg, .framer-goypJ .framer-1k884nj, .framer-goypJ .framer-dcb1jd, .framer-goypJ .framer-sbw0bp, .framer-goypJ .framer-1qass4v, .framer-goypJ .framer-fc5tpc, .framer-goypJ .framer-1cvn95i, .framer-goypJ .framer-1092rmk, .framer-goypJ .framer-i4cu59, .framer-goypJ .framer-1en5qj4, .framer-goypJ .framer-unbrgu, .framer-goypJ .framer-1em4esy, .framer-goypJ .framer-9wj2p3, .framer-goypJ .framer-s3hj3y, .framer-goypJ .framer-72gdr4, .framer-goypJ .framer-1kf5ay4, .framer-goypJ .framer-yk094, .framer-goypJ .framer-1arsjsk, .framer-goypJ .framer-1vdh5aj, .framer-goypJ .framer-1vz6qyh, .framer-goypJ .framer-ajutrl, .framer-goypJ .framer-1bmz81k, .framer-goypJ .framer-9v7j7u, .framer-goypJ .framer-3013nj, .framer-goypJ .framer-1jlia71, .framer-goypJ .framer-7phplp { gap: 0px; } .framer-goypJ.framer-1rabh8j > *, .framer-goypJ .framer-oiexxi > *, .framer-goypJ .framer-1dpj2kg > *, .framer-goypJ .framer-vjcmd3 > *, .framer-goypJ .framer-1is0jin > *, .framer-goypJ .framer-1kwi39y > *, .framer-goypJ .framer-1092rmk > *, .framer-goypJ .framer-unbrgu > *, .framer-goypJ .framer-72gdr4 > *, .framer-goypJ .framer-1arsjsk > *, .framer-goypJ .framer-1bmz81k > *, .framer-goypJ .framer-1jlia71 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-goypJ.framer-1rabh8j > :first-child, .framer-goypJ .framer-sqryo0 > :first-child, .framer-goypJ .framer-1tocpz > :first-child, .framer-goypJ .framer-l3o82c > :first-child, .framer-goypJ .framer-1ow605o > :first-child, .framer-goypJ .framer-plojwb > :first-child, .framer-goypJ .framer-oiexxi > :first-child, .framer-goypJ .framer-itkjg6 > :first-child, .framer-goypJ .framer-1dpj2kg > :first-child, .framer-goypJ .framer-zims2d > :first-child, .framer-goypJ .framer-vjcmd3 > :first-child, .framer-goypJ .framer-1ao8g8w > :first-child, .framer-goypJ .framer-5uaykb > :first-child, .framer-goypJ .framer-idq3rh > :first-child, .framer-goypJ .framer-jg74v6 > :first-child, .framer-goypJ .framer-rujae1 > :first-child, .framer-goypJ .framer-522uzb > :first-child, .framer-goypJ .framer-1is0jin > :first-child, .framer-goypJ .framer-1lcvuhc > :first-child, .framer-goypJ .framer-8las89 > :first-child, .framer-goypJ .framer-1kwi39y > :first-child, .framer-goypJ .framer-dfy96a > :first-child, .framer-goypJ .framer-cb4bgx > :first-child, .framer-goypJ .framer-eqb0pg > :first-child, .framer-goypJ .framer-dcb1jd > :first-child, .framer-goypJ .framer-1qass4v > :first-child, .framer-goypJ .framer-fc5tpc > :first-child, .framer-goypJ .framer-1092rmk > :first-child, .framer-goypJ .framer-i4cu59 > :first-child, .framer-goypJ .framer-unbrgu > :first-child, .framer-goypJ .framer-1em4esy > :first-child, .framer-goypJ .framer-9wj2p3 > :first-child, .framer-goypJ .framer-72gdr4 > :first-child, .framer-goypJ .framer-1kf5ay4 > :first-child, .framer-goypJ .framer-1arsjsk > :first-child, .framer-goypJ .framer-1vdh5aj > :first-child, .framer-goypJ .framer-1vz6qyh > :first-child, .framer-goypJ .framer-1bmz81k > :first-child, .framer-goypJ .framer-9v7j7u > :first-child, .framer-goypJ .framer-1jlia71 > :first-child { margin-top: 0px; } .framer-goypJ.framer-1rabh8j > :last-child, .framer-goypJ .framer-sqryo0 > :last-child, .framer-goypJ .framer-1tocpz > :last-child, .framer-goypJ .framer-l3o82c > :last-child, .framer-goypJ .framer-1ow605o > :last-child, .framer-goypJ .framer-plojwb > :last-child, .framer-goypJ .framer-oiexxi > :last-child, .framer-goypJ .framer-itkjg6 > :last-child, .framer-goypJ .framer-1dpj2kg > :last-child, .framer-goypJ .framer-zims2d > :last-child, .framer-goypJ .framer-vjcmd3 > :last-child, .framer-goypJ .framer-1ao8g8w > :last-child, .framer-goypJ .framer-5uaykb > :last-child, .framer-goypJ .framer-idq3rh > :last-child, .framer-goypJ .framer-jg74v6 > :last-child, .framer-goypJ .framer-rujae1 > :last-child, .framer-goypJ .framer-522uzb > :last-child, .framer-goypJ .framer-1is0jin > :last-child, .framer-goypJ .framer-1lcvuhc > :last-child, .framer-goypJ .framer-8las89 > :last-child, .framer-goypJ .framer-1kwi39y > :last-child, .framer-goypJ .framer-dfy96a > :last-child, .framer-goypJ .framer-cb4bgx > :last-child, .framer-goypJ .framer-eqb0pg > :last-child, .framer-goypJ .framer-dcb1jd > :last-child, .framer-goypJ .framer-1qass4v > :last-child, .framer-goypJ .framer-fc5tpc > :last-child, .framer-goypJ .framer-1092rmk > :last-child, .framer-goypJ .framer-i4cu59 > :last-child, .framer-goypJ .framer-unbrgu > :last-child, .framer-goypJ .framer-1em4esy > :last-child, .framer-goypJ .framer-9wj2p3 > :last-child, .framer-goypJ .framer-72gdr4 > :last-child, .framer-goypJ .framer-1kf5ay4 > :last-child, .framer-goypJ .framer-1arsjsk > :last-child, .framer-goypJ .framer-1vdh5aj > :last-child, .framer-goypJ .framer-1vz6qyh > :last-child, .framer-goypJ .framer-1bmz81k > :last-child, .framer-goypJ .framer-9v7j7u > :last-child, .framer-goypJ .framer-1jlia71 > :last-child { margin-bottom: 0px; } .framer-goypJ .framer-sqryo0 > *, .framer-goypJ .framer-itkjg6 > *, .framer-goypJ .framer-zims2d > *, .framer-goypJ .framer-1ao8g8w > *, .framer-goypJ .framer-idq3rh > *, .framer-goypJ .framer-jg74v6 > *, .framer-goypJ .framer-1lcvuhc > *, .framer-goypJ .framer-8las89 > *, .framer-goypJ .framer-dfy96a > *, .framer-goypJ .framer-cb4bgx > *, .framer-goypJ .framer-1qass4v > *, .framer-goypJ .framer-fc5tpc > *, .framer-goypJ .framer-1em4esy > *, .framer-goypJ .framer-1vdh5aj > *, .framer-goypJ .framer-1vz6qyh > *, .framer-goypJ .framer-9v7j7u > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-goypJ .framer-1v0bsjg > *, .framer-goypJ .framer-1cvn95i > *, .framer-goypJ .framer-1en5qj4 > *, .framer-goypJ .framer-s3hj3y > *, .framer-goypJ .framer-yk094 > *, .framer-goypJ .framer-ajutrl > *, .framer-goypJ .framer-3013nj > *, .framer-goypJ .framer-7phplp > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-goypJ .framer-1v0bsjg > :first-child, .framer-goypJ .framer-1rrh36m > :first-child, .framer-goypJ .framer-o6m3sb > :first-child, .framer-goypJ .framer-1ev3wr5 > :first-child, .framer-goypJ .framer-1irivjy > :first-child, .framer-goypJ .framer-1p4rkni > :first-child, .framer-goypJ .framer-q9ntxe > :first-child, .framer-goypJ .framer-16s6ltv > :first-child, .framer-goypJ .framer-1ws4zj7 > :first-child, .framer-goypJ .framer-1ult0p1 > :first-child, .framer-goypJ .framer-8tg6jk > :first-child, .framer-goypJ .framer-11v65dx > :first-child, .framer-goypJ .framer-1j33nv5 > :first-child, .framer-goypJ .framer-1k884nj > :first-child, .framer-goypJ .framer-sbw0bp > :first-child, .framer-goypJ .framer-1cvn95i > :first-child, .framer-goypJ .framer-1en5qj4 > :first-child, .framer-goypJ .framer-s3hj3y > :first-child, .framer-goypJ .framer-yk094 > :first-child, .framer-goypJ .framer-ajutrl > :first-child, .framer-goypJ .framer-3013nj > :first-child, .framer-goypJ .framer-7phplp > :first-child { margin-left: 0px; } .framer-goypJ .framer-1v0bsjg > :last-child, .framer-goypJ .framer-1rrh36m > :last-child, .framer-goypJ .framer-o6m3sb > :last-child, .framer-goypJ .framer-1ev3wr5 > :last-child, .framer-goypJ .framer-1irivjy > :last-child, .framer-goypJ .framer-1p4rkni > :last-child, .framer-goypJ .framer-q9ntxe > :last-child, .framer-goypJ .framer-16s6ltv > :last-child, .framer-goypJ .framer-1ws4zj7 > :last-child, .framer-goypJ .framer-1ult0p1 > :last-child, .framer-goypJ .framer-8tg6jk > :last-child, .framer-goypJ .framer-11v65dx > :last-child, .framer-goypJ .framer-1j33nv5 > :last-child, .framer-goypJ .framer-1k884nj > :last-child, .framer-goypJ .framer-sbw0bp > :last-child, .framer-goypJ .framer-1cvn95i > :last-child, .framer-goypJ .framer-1en5qj4 > :last-child, .framer-goypJ .framer-s3hj3y > :last-child, .framer-goypJ .framer-yk094 > :last-child, .framer-goypJ .framer-ajutrl > :last-child, .framer-goypJ .framer-3013nj > :last-child, .framer-goypJ .framer-7phplp > :last-child { margin-right: 0px; } .framer-goypJ .framer-1rrh36m > *, .framer-goypJ .framer-o6m3sb > *, .framer-goypJ .framer-q9ntxe > *, .framer-goypJ .framer-16s6ltv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-goypJ .framer-1tocpz > *, .framer-goypJ .framer-eqb0pg > *, .framer-goypJ .framer-i4cu59 > *, .framer-goypJ .framer-9wj2p3 > *, .framer-goypJ .framer-1kf5ay4 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-goypJ .framer-l3o82c > *, .framer-goypJ .framer-5uaykb > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-goypJ .framer-1ow605o > *, .framer-goypJ .framer-plojwb > *, .framer-goypJ .framer-dcb1jd > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-goypJ .framer-1ev3wr5 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-goypJ .framer-1irivjy > *, .framer-goypJ .framer-1ult0p1 > *, .framer-goypJ .framer-8tg6jk > *, .framer-goypJ .framer-11v65dx > *, .framer-goypJ .framer-1k884nj > *, .framer-goypJ .framer-sbw0bp > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-goypJ .framer-1p4rkni > *, .framer-goypJ .framer-1ws4zj7 > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-goypJ .framer-rujae1 > *, .framer-goypJ .framer-522uzb > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-goypJ .framer-1j33nv5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\"@media (min-width: 1200px) { .framer-goypJ .hidden-1rabh8j { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-goypJ .hidden-g7tl5d { display: none !important; } .${metadata.bodyClassName}-framer-goypJ { background: white; } .framer-goypJ.framer-1rabh8j { width: 810px; } .framer-goypJ .framer-1tocpz, .framer-goypJ .framer-1ow605o, .framer-goypJ .framer-plojwb, .framer-goypJ .framer-1j33nv5 { padding: 80px 40px 80px 40px; } .framer-goypJ .framer-yys6m2 { height: var(--framer-aspect-ratio-supported, 67px); } .framer-goypJ .framer-13jj7su { height: var(--framer-aspect-ratio-supported, 68px); } .framer-goypJ .framer-oiexxi, .framer-goypJ .framer-1dpj2kg, .framer-goypJ .framer-vjcmd3 { flex: 1 0 0px; width: 1px; } .framer-goypJ .framer-57yf, .framer-goypJ .framer-nx0opm, .framer-goypJ .framer-1mrb674 { height: var(--framer-aspect-ratio-supported, 172px); } .framer-goypJ .framer-q9ntxe { height: var(--framer-aspect-ratio-supported, 338px); order: 0; padding: 70px 70px 70px 70px; } .framer-goypJ .framer-idq3rh, .framer-goypJ .framer-1d7csn { order: 1; } .framer-goypJ .framer-1b602of { width: 268px; } .framer-goypJ .framer-1ult0p1 { min-height: 326px; } .framer-goypJ .framer-6z6uwg { bottom: -12px; flex: none; left: 135px; order: 0; position: absolute; width: 180px; z-index: 1; } .framer-goypJ .framer-rujae1 { bottom: -34px; flex: none; left: 50%; order: 1; position: absolute; transform: translateX(-50%); width: 242px; z-index: 1; } .framer-goypJ .framer-7810k8-container { order: 0; } .framer-goypJ .framer-tyep5s { order: 2; } .framer-goypJ .framer-522uzb { bottom: -12px; flex: none; left: 616px; order: 2; position: absolute; width: 270px; z-index: 1; }}`,`@media (max-width: 809px) { .framer-goypJ .hidden-ghn4qb { display: none !important; } .${metadata.bodyClassName}-framer-goypJ { background: white; } .framer-goypJ.framer-1rabh8j { width: 390px; } .framer-goypJ .framer-gy5tp8 { height: 90px; width: 353px; } .framer-goypJ .framer-1tocpz, .framer-goypJ .framer-1ow605o, .framer-goypJ .framer-plojwb { padding: 60px 20px 60px 20px; } .framer-goypJ .framer-1qgr4bh { height: var(--framer-aspect-ratio-supported, 67px); } .framer-goypJ .framer-1pqp8r7 { height: var(--framer-aspect-ratio-supported, 68px); } .framer-goypJ .framer-1irivjy, .framer-goypJ .framer-1p4rkni, .framer-goypJ .framer-sbw0bp { flex-direction: column; } .framer-goypJ .framer-oiexxi, .framer-goypJ .framer-1dpj2kg, .framer-goypJ .framer-vjcmd3 { width: 100%; } .framer-goypJ .framer-57yf { height: var(--framer-aspect-ratio-supported, 263px); } .framer-goypJ .framer-nx0opm, .framer-goypJ .framer-1mrb674 { height: var(--framer-aspect-ratio-supported, 262px); } .framer-goypJ .framer-1edov8l { height: 737px; } .framer-goypJ .framer-q9ntxe { flex: none; height: var(--framer-aspect-ratio-supported, 293px); width: 100%; } .framer-goypJ .framer-idq3rh { align-self: unset; flex: none; height: 173px; width: 100%; } .framer-goypJ .framer-1b602of { width: 344px; } .framer-goypJ .framer-17vktyq { height: 622px; } .framer-goypJ .framer-6z6uwg { order: 0; } .framer-goypJ .framer-rujae1 { order: 1; } .framer-goypJ .framer-522uzb { order: 2; } .framer-goypJ .framer-1j33nv5 { flex-direction: column; padding: 60px 20px 60px 20px; } .framer-goypJ .framer-eqb0pg { gap: 40px; } .framer-goypJ .framer-1qass4v, .framer-goypJ .framer-1em4esy, .framer-goypJ .framer-1vdh5aj { flex: none; width: 100%; } .framer-goypJ .framer-147sjdn { flex-direction: column; gap: 10px; justify-content: center; padding: 30px 30px 30px 30px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-goypJ .framer-1irivjy, .framer-goypJ .framer-1p4rkni, .framer-goypJ .framer-1j33nv5, .framer-goypJ .framer-eqb0pg, .framer-goypJ .framer-sbw0bp, .framer-goypJ .framer-147sjdn { gap: 0px; } .framer-goypJ .framer-1irivjy > *, .framer-goypJ .framer-sbw0bp > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-goypJ .framer-1irivjy > :first-child, .framer-goypJ .framer-1p4rkni > :first-child, .framer-goypJ .framer-1j33nv5 > :first-child, .framer-goypJ .framer-eqb0pg > :first-child, .framer-goypJ .framer-sbw0bp > :first-child, .framer-goypJ .framer-147sjdn > :first-child { margin-top: 0px; } .framer-goypJ .framer-1irivjy > :last-child, .framer-goypJ .framer-1p4rkni > :last-child, .framer-goypJ .framer-1j33nv5 > :last-child, .framer-goypJ .framer-eqb0pg > :last-child, .framer-goypJ .framer-sbw0bp > :last-child, .framer-goypJ .framer-147sjdn > :last-child { margin-bottom: 0px; } .framer-goypJ .framer-1p4rkni > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-goypJ .framer-1j33nv5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-goypJ .framer-eqb0pg > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-goypJ .framer-147sjdn > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5313\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ET3IAi4NW\":{\"layout\":[\"fixed\",\"auto\"]},\"Y8IZlQcyS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerRsgH0dhwO=withCSS(Component,css,\"framer-goypJ\");export default FramerRsgH0dhwO;FramerRsgH0dhwO.displayName=\"Page\";FramerRsgH0dhwO.defaultProps={height:5313,width:1200};addFonts(FramerRsgH0dhwO,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Bowlby One\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bowlbyone/v23/taiPGmVuC4y96PFeqp8smouC_Z0wcK4.woff2\",weight:\"400\"},{family:\"Playfair\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/playfair/v2/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-TUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPkUetgYoSMw5ifm.woff2\",weight:\"400\"}]},...NavigationFonts,...ScribblesFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRsgH0dhwO\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"5313\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ET3IAi4NW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Y8IZlQcyS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "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", "Scribbles", "props", "paths", "strokeWidth", "color", "nodeId", "path", "scribbles", "viewBox", "p", "addPropertyControls", "ControlType", "_", "shape", "NavigationFonts", "getFonts", "K9ZySN70y_default", "MotionDivWithFX", "withFX", "motion", "ScribblesFonts", "Scribbles", "TickerFonts", "Ticker", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "valuesByLocaleId", "LazyValue", "preloadLocalizedValues", "locale", "promises", "values", "promise", "animation", "transition1", "animation1", "transformTemplate1", "_", "t", "transformTemplate2", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "preloadPromise", "preloadLocalizedValues", "ref1", "pe", "isDisplayed", "isBrowser", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "variantClassNames", "u", "LayoutGroup", "motion", "cx", "serializationHash", "ComponentViewportProvider", "Container", "K9ZySN70y_default", "Image2", "PropertyOverrides", "x", "RichText", "Link", "MotionDivWithFX", "Scribbles", "Ticker", "css", "FramerRsgH0dhwO", "withCSS", "RsgH0dhwO_default", "addFonts", "NavigationFonts", "ScribblesFonts", "TickerFonts", "__FramerMetadata__"]
}
