{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js", "ssg:https://framerusercontent.com/modules/sLCZgFrImP8A2AprQQLm/nFj4Rd2gZ2xZTN2qdK1M/bK9wbRIXN-0.js", "ssg:https://framerusercontent.com/modules/sLCZgFrImP8A2AprQQLm/nFj4Rd2gZ2xZTN2qdK1M/bK9wbRIXN.js", "ssg:https://framerusercontent.com/modules/3e2nqDGVXaH1ojcwSg6t/fcpVXkGTl6JNhDQ4kEix/Ne0YI6XE9-0.js", "ssg:https://framerusercontent.com/modules/3e2nqDGVXaH1ojcwSg6t/fcpVXkGTl6JNhDQ4kEix/Ne0YI6XE9.js", "ssg:https://framerusercontent.com/modules/tqRI7N4cbKeb6Nxywh3N/uYXjVX6mPg2rGsehWXQT/TdH0xnVdZ.js", "ssg:https://framerusercontent.com/modules/asKlDbG5FKLLOXQx649z/9zFQxZtHQzZKEDVst416/ubdAZwxj1.js", "ssg:https://framerusercontent.com/modules/U1aTUZneHvtZnu9VfS1B/diajxgB3IKMw7VUTLw1K/Mfj65VgNa.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{startTransition(()=>setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches));},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){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 swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "export const v0=\"Haus\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (cf240c2)\nvar _componentPresets_fonts,_componentPresets_fonts1,_componentPresets_fonts2,_componentPresets_fonts3,_componentPresets_fonts4,_componentPresets_fonts5;import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getPropertyControls,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as componentPresets from\"https://framerusercontent.com/modules/sX990BtM1ZXO4tVORMdI/0tVi44nsexe7vh33BM9G/componentPresets.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/nKxYI6P1qbms6nz4N4z5/kJs7cv5pzg9WX9G7Fk7C/bvZMckgAN.js\";import*as sharedStyle10 from\"https://framerusercontent.com/modules/3MGJS2sKRoYAieMulQsg/dXyLrgxvAJ2ReLAUURoa/GN81gzKH6.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/eWfWs18Zw7nzugrNTqtM/cUM8nnaIaqCUP43g4TkN/I6BUuK0q_.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/shRWmDtHd33RbrPHYGxa/MNo9ePElI6VRoxe7h9d4/KzORqp3rF.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/kIvGdIi6RBIJZu6W0rgS/aha8KydVyLeGpG9Lo4sR/M_lbBsIKD.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/Uj1MvGtEKFUFmsk6WrZa/560KIf1woaaiLqMXjBFY/M8GS7bVOf.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/1eIVYTYaRgJcuRC2Bql9/eFMX6qGBm1SUIyWTmcWC/mNir_S1z7.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/MQietfIWdIkoT56eMMpJ/2k8owfUqN1YjFOVsj4aq/nDeSFtac8.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/vNTvGbTrMNc3ipArSuPd/UkmSKC5ieNWGFYvbvA5X/pKhxVF0uy.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/ba3kA0bbnUvMHJr3Qbz1/gJJlmmGp2Id74eenF0YA/XXCjdKDgo.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/aw8lbeVWA8RTGvoI6MCW/58ZV12pJ6wpxTP242fnt/yW3B_7OOH.js\";import*as localizedValues from\"./bK9wbRIXN-0.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const enabledGestures={oafh41zIN:{hover:true}};const cycleOrder=[\"oafh41zIN\",\"Cvg7e3DL8\"];const serializationHash=\"framer-NO7K0\";const variantClassNames={Cvg7e3DL8:\"framer-v-a7wuys\",oafh41zIN:\"framer-v-1fk3brr\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={Sw5HDVzb_:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Closed:\"oafh41zIN\",Open:\"Cvg7e3DL8\"};const getProps=({answer,height,icon,id,question,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,iiMdOSMZJ:(_ref=answer!==null&&answer!==void 0?answer:props.iiMdOSMZJ)!==null&&_ref!==void 0?_ref:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Prueba\"})}),J7G7EXb9i:(_ref1=icon!==null&&icon!==void 0?icon:props.J7G7EXb9i)!==null&&_ref1!==void 0?_ref1:\"House\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"oafh41zIN\",W88zB8mIG:(_ref3=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref3!==void 0?_ref3:\"Product details\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,W88zB8mIG,iiMdOSMZJ,J7G7EXb9i,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oafh41zIN\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapaolt5f=activeVariantCallback(async(...args)=>{setVariant(\"Cvg7e3DL8\");});const onTapoc1aq9=activeVariantCallback(async(...args)=>{setVariant(\"oafh41zIN\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Cvg7e3DL8\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const componentViewport=useComponentViewport();var _getLocalizedValue;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1fk3brr\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"oafh41zIN\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-8cad37ef-3a3f-4dad-994e-51a3add7be6e, rgb(233, 231, 235))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"oafh41zIN-hover\":{backgroundColor:\"var(--token-3636223f-35c8-4a2e-bbcb-8f7f8e7c26ec, rgb(217, 227, 248))\"}},...addPropertyOverrides({\"oafh41zIN-hover\":{\"data-framer-name\":undefined},Cvg7e3DL8:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vinqu3\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"x0Ibm04It\",onTap:onTapaolt5f,...addPropertyOverrides({Cvg7e3DL8:{onTap:onTapoc1aq9}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-e5h40g-container\",layoutDependency:layoutDependency,layoutId:\"ZVjcAGFcx-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f7302d28-815b-4db1-ae23-b9c41b77a5f7, rgb(67, 71, 78))\",height:\"100%\",iconSearch:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"House\",iconSelection:J7G7EXb9i,id:\"ZVjcAGFcx\",layoutId:\"ZVjcAGFcx\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f7302d28-815b-4db1-ae23-b9c41b77a5f7, rgb(67, 71, 78)))\"},children:\"Product details\"})}),className:\"framer-12yqpbs\",fonts:[\"GF;Montserrat-500\"],layoutDependency:layoutDependency,layoutId:\"E8nqiqL5o\",style:{\"--extracted-r6o4lv\":\"var(--token-f7302d28-815b-4db1-ae23-b9c41b77a5f7, rgb(67, 71, 78))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j1vbdv\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"IjXRyEJRb\",style:{opacity:1,rotate:0},variants:{Cvg7e3DL8:{opacity:.3,rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o11r9i\",layoutDependency:layoutDependency,layoutId:\"PvFTUe5jb\",style:{backgroundColor:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q386ax\",layoutDependency:layoutDependency,layoutId:\"JlQxt8K2V\",style:{backgroundColor:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-iac9mi\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"WPgB6NZ3E\",style:{opacity:0},variants:{Cvg7e3DL8:{opacity:1}},children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"kWyObkcbT\"],\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"n1fkI0ztE\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"hOs0PamKG\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:iiMdOSMZJ,className:\"framer-1m8zzmx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UAONLVKro\",style:{opacity:.6},stylesPresetsClassNames:{a:\"framer-styles-preset-1e3c9u9\",blockquote:\"framer-styles-preset-ojbp2z\",code:\"framer-styles-preset-1sn5zq6\",h1:\"framer-styles-preset-19s1ey5\",h2:\"framer-styles-preset-atp56u\",h3:\"framer-styles-preset-ur963b\",h4:\"framer-styles-preset-61fnkj\",h5:\"framer-styles-preset-20idwh\",h6:\"framer-styles-preset-i4wtqk\",img:\"framer-styles-preset-1gi8y24\",p:\"framer-styles-preset-gqt8v7\"},variants:{Cvg7e3DL8:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NO7K0.framer-1fbndop, .framer-NO7K0 .framer-1fbndop { display: block; }\",\".framer-NO7K0.framer-1fk3brr { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NO7K0 .framer-vinqu3 { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; user-select: none; width: 100%; }\",\".framer-NO7K0 .framer-e5h40g-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-NO7K0 .framer-12yqpbs { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-NO7K0 .framer-j1vbdv { flex: none; height: 16px; overflow: hidden; position: relative; width: 16px; z-index: 1; }\",\".framer-NO7K0 .framer-1o11r9i { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-NO7K0 .framer-q386ax { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-NO7K0 .framer-iac9mi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-NO7K0 .framer-1m8zzmx { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NO7K0.framer-1fk3brr, .framer-NO7K0 .framer-vinqu3, .framer-NO7K0 .framer-iac9mi { gap: 0px; } .framer-NO7K0.framer-1fk3brr > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NO7K0.framer-1fk3brr > :first-child, .framer-NO7K0 .framer-iac9mi > :first-child { margin-top: 0px; } .framer-NO7K0.framer-1fk3brr > :last-child, .framer-NO7K0 .framer-iac9mi > :last-child { margin-bottom: 0px; } .framer-NO7K0 .framer-vinqu3 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-NO7K0 .framer-vinqu3 > :first-child { margin-left: 0px; } .framer-NO7K0 .framer-vinqu3 > :last-child { margin-right: 0px; } .framer-NO7K0 .framer-iac9mi > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-NO7K0.framer-v-a7wuys.framer-1fk3brr { cursor: unset; padding: 0px 0px 16px 0px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 53\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Cvg7e3DL8\":{\"layout\":[\"fixed\",\"auto\"]},\"KhYzINNZJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"iiMdOSMZJ\":\"answer\",\"J7G7EXb9i\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbK9wbRIXN=withCSS(Component,css,\"framer-NO7K0\");export default FramerbK9wbRIXN;FramerbK9wbRIXN.displayName=\"Dropdown\";FramerbK9wbRIXN.defaultProps={height:53,width:400};addPropertyControls(FramerbK9wbRIXN,{variant:{options:[\"oafh41zIN\",\"Cvg7e3DL8\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Product details\",displayTextArea:true,title:\"Question\",type:ControlType.String},iiMdOSMZJ:{defaultValue:\"<p>Prueba</p>\",title:\"Answer\",type:ControlType.RichText},J7G7EXb9i:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"House\",description:undefined,hidden:undefined,title:\"Icon\"}});addFonts(FramerbK9wbRIXN,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew7Y3tcoqK5.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"hOs0PamKG\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"hOs0PamKG\"]):[],...((_componentPresets_fonts2=componentPresets.fonts)===null||_componentPresets_fonts2===void 0?void 0:_componentPresets_fonts2[\"kWyObkcbT\"])?getFontsFromComponentPreset((_componentPresets_fonts3=componentPresets.fonts)===null||_componentPresets_fonts3===void 0?void 0:_componentPresets_fonts3[\"kWyObkcbT\"]):[],...((_componentPresets_fonts4=componentPresets.fonts)===null||_componentPresets_fonts4===void 0?void 0:_componentPresets_fonts4[\"n1fkI0ztE\"])?getFontsFromComponentPreset((_componentPresets_fonts5=componentPresets.fonts)===null||_componentPresets_fonts5===void 0?void 0:_componentPresets_fonts5[\"n1fkI0ztE\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbK9wbRIXN\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"53\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"iiMdOSMZJ\\\":\\\"answer\\\",\\\"J7G7EXb9i\\\":\\\"icon\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Cvg7e3DL8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KhYzINNZJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "export const v0=\"Haus\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Image,Link,RichText,useComponentViewport,useLocaleCode,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/vNTvGbTrMNc3ipArSuPd/UkmSKC5ieNWGFYvbvA5X/pKhxVF0uy.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/Lhb46k9BuEiNQieRDT3W/Pi1IkWil48crR0eiQrvL/yjWuwrpQx.js\";import*as localizedValues from\"./Ne0YI6XE9-0.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const enabledGestures={cOgd5cPD_:{hover:true},u8e7PMVA7:{hover:true}};const cycleOrder=[\"cOgd5cPD_\",\"u8e7PMVA7\"];const serializationHash=\"framer-mbiIx\";const variantClassNames={cOgd5cPD_:\"framer-v-1gxklv7\",u8e7PMVA7:\"framer-v-z4clni\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={Sw5HDVzb_:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={duration:0,type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const numberToString=(value,options={},activeLocale)=>{const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const{useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Icon:\"u8e7PMVA7\",Image:\"cOgd5cPD_\"};const getProps=({amount,height,icon,id,link,name1,priceDE,priceMX,productImage,width,...props})=>{return{...props,b3XhJXWHc:name1??props.b3XhJXWHc??\"NUBIOTEK\\xae HYPER FBK\",CqXepztG8:amount??props.CqXepztG8??\"1 Lt.\",eIDTCCbFG:priceDE??props.eIDTCCbFG??8.17,JKMDVHmuD:priceMX??props.JKMDVHmuD??8.17,M8b9yUOFa:link??props.M8b9yUOFa,moJpa9fOL:productImage??props.moJpa9fOL,variant:humanReadableVariantMap[props.variant]??props.variant??\"cOgd5cPD_\",VXSpRY0gq:icon??props.VXSpRY0gq??\"GasCan\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,moJpa9fOL,b3XhJXWHc,JKMDVHmuD,eIDTCCbFG,CqXepztG8,VXSpRY0gq,M8b9yUOFa,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"cOgd5cPD_\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"u8e7PMVA7-hover\")return false;if(baseVariant===\"u8e7PMVA7\")return false;return true;};const visible=equals(activeLocale?.id,\"default\");const activeLocaleCode=useLocaleCode();const textContent=numberToString(JKMDVHmuD,{currency:\"USD\",currencyDisplay:\"code\",locale:\"\",notation:\"standard\",style:\"currency\"},activeLocaleCode);const visible1=equals(activeLocale?.id,\"Sw5HDVzb_\");const textContent1=numberToString(eIDTCCbFG,{currency:\"EUR\",currencyDisplay:\"symbol\",locale:\"de-DE\",notation:\"standard\",style:\"currency\"},activeLocaleCode);const isDisplayed1=()=>{if(gestureVariant===\"u8e7PMVA7-hover\")return true;if(baseVariant===\"u8e7PMVA7\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:M8b9yUOFa,openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1gxklv7\",className,classNames)} framer-l6mtyg`,\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"cOgd5cPD_\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-17156bee-bef5-413c-9e74-8c35efc3654d, rgb(196, 198, 207))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-85d59ded-713e-4be1-aad9-bf27f8e34dae, rgb(244, 243, 247))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},variants:{\"cOgd5cPD_-hover\":{\"--border-color\":\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",backgroundColor:\"var(--token-a95e4b89-6e82-4ea6-94e0-51eacce68efc, rgba(39, 94, 167, 0.15))\"},\"u8e7PMVA7-hover\":{\"--border-color\":\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",backgroundColor:\"var(--token-a95e4b89-6e82-4ea6-94e0-51eacce68efc, rgba(39, 94, 167, 0.15))\"}},...addPropertyOverrides({\"cOgd5cPD_-hover\":{\"data-framer-name\":undefined},\"u8e7PMVA7-hover\":{\"data-framer-name\":undefined},u8e7PMVA7:{\"data-framer-name\":\"Icon\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:750,intrinsicWidth:1e3,pixelHeight:1500,pixelWidth:2e3,sizes:`calc((${componentViewport?.width||\"100vw\"} - 32px) * 0.739)`,...toResponsiveImage(moJpa9fOL),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-svd8uq\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"EnJYoydMC\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fke2ga\",layoutDependency:layoutDependency,layoutId:\"qTQI36uOo\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1symn0m\",layoutDependency:layoutDependency,layoutId:\"JPJpDFFNs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-i4wtqk\",\"data-styles-preset\":\"pKhxVF0uy\",children:\"NUBIOTEK\\xae HYPER FBK\"})}),className:\"framer-th4045\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rQ09nXkJa\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:b3XhJXWHc,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-i4wtqk\",\"data-styles-preset\":\"pKhxVF0uy\",children:\"1 Lt.\"})}),className:\"framer-14dxjm7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FxmD98dSx\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:CqXepztG8,verticalAlignment:\"top\",withExternalLayout:true})]}),visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-n6n3kw\",\"data-styles-preset\":\"yjWuwrpQx\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167)))\"},children:\"USD\\xa08.17\"})}),className:\"framer-gspqzh\",\"data-framer-name\":\"Font\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"p3bHrADgr\",style:{\"--extracted-1lwpl3i\":\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\"},text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),visible1&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113)))\"},children:\"8,17\\xa0\u20AC\"})}),className:\"framer-ppcqul\",\"data-framer-name\":\"Font\",fonts:[\"GF;Montserrat-500\"],layoutDependency:layoutDependency,layoutId:\"aEm5GMBgK\",style:{\"--extracted-r6o4lv\":\"var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113))\"},text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eu7dld-container\",layoutDependency:layoutDependency,layoutId:\"ICBDx7fne-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",height:\"100%\",iconSearch:getLocalizedValue(\"v0\",activeLocale)??\"House\",iconSelection:VXSpRY0gq,id:\"ICBDx7fne\",layoutId:\"ICBDx7fne\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"thin\",width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mbiIx.framer-l6mtyg, .framer-mbiIx .framer-l6mtyg { display: block; }\",\".framer-mbiIx.framer-1gxklv7 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 262px; justify-content: center; overflow: hidden; padding: 16px; position: relative; text-decoration: none; width: 350px; will-change: var(--framer-will-change-override, transform); }\",\".framer-mbiIx .framer-svd8uq { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 150px); overflow: visible; position: relative; width: 74%; }\",\".framer-mbiIx .framer-fke2ga { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-mbiIx .framer-1symn0m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 12px 0px 0px; position: relative; width: min-content; }\",\".framer-mbiIx .framer-th4045, .framer-mbiIx .framer-14dxjm7, .framer-mbiIx .framer-gspqzh, .framer-mbiIx .framer-ppcqul { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-mbiIx .framer-1eu7dld-container { aspect-ratio: 0.8411764705882353 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 238px); position: relative; width: 45%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mbiIx.framer-1gxklv7, .framer-mbiIx .framer-1symn0m { gap: 0px; } .framer-mbiIx.framer-1gxklv7 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-mbiIx.framer-1gxklv7 > :first-child, .framer-mbiIx .framer-1symn0m > :first-child { margin-top: 0px; } .framer-mbiIx.framer-1gxklv7 > :last-child, .framer-mbiIx .framer-1symn0m > :last-child { margin-bottom: 0px; } .framer-mbiIx .framer-1symn0m > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-mbiIx.framer-v-z4clni.framer-1gxklv7 { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 262px); }\",\".framer-mbiIx.framer-v-z4clni .framer-fke2ga { order: 2; }\",\".framer-mbiIx.framer-v-z4clni .framer-1eu7dld-container { order: 1; }\",\".framer-mbiIx.framer-v-1gxklv7.hover.framer-1gxklv7 { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 266px); width: 354px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-mbiIx[data-border=\"true\"]::after, .framer-mbiIx [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 262\n * @framerIntrinsicWidth 350\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"u8e7PMVA7\":{\"layout\":[\"fixed\",\"fixed\"]},\"PEubDXmwo\":{\"layout\":[\"fixed\",\"fixed\"]},\"W4FuuWmNC\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"moJpa9fOL\":\"productImage\",\"b3XhJXWHc\":\"name1\",\"JKMDVHmuD\":\"priceMX\",\"eIDTCCbFG\":\"priceDE\",\"CqXepztG8\":\"amount\",\"VXSpRY0gq\":\"icon\",\"M8b9yUOFa\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNe0YI6XE9=withCSS(Component,css,\"framer-mbiIx\");export default FramerNe0YI6XE9;FramerNe0YI6XE9.displayName=\"BTK/Product Card\";FramerNe0YI6XE9.defaultProps={height:262,width:350};addPropertyControls(FramerNe0YI6XE9,{variant:{options:[\"cOgd5cPD_\",\"u8e7PMVA7\"],optionTitles:[\"Image\",\"Icon\"],title:\"Variant\",type:ControlType.Enum},moJpa9fOL:{title:\"Product image\",type:ControlType.ResponsiveImage},b3XhJXWHc:{defaultValue:\"NUBIOTEK\\xae HYPER FBK\",title:\"Name\",type:ControlType.String},JKMDVHmuD:{defaultValue:8.17,displayStepper:true,title:\"Price MX\",type:ControlType.Number},eIDTCCbFG:{defaultValue:8.17,displayStepper:true,title:\"Price DE\",type:ControlType.Number},CqXepztG8:{defaultValue:\"1 Lt.\",displayTextArea:false,title:\"Amount\",type:ControlType.String},VXSpRY0gq:PhosphorControls?.[\"iconSelection\"]&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"GasCan\",description:undefined,hidden:undefined,title:\"Icon\"},M8b9yUOFa:{title:\"Link\",type:ControlType.Link}});addFonts(FramerNe0YI6XE9,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew7Y3tcoqK5.woff2\",weight:\"500\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNe0YI6XE9\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"350\",\"framerIntrinsicHeight\":\"262\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"moJpa9fOL\\\":\\\"productImage\\\",\\\"b3XhJXWHc\\\":\\\"name1\\\",\\\"JKMDVHmuD\\\":\\\"priceMX\\\",\\\"eIDTCCbFG\\\":\\\"priceDE\\\",\\\"CqXepztG8\\\":\\\"amount\\\",\\\"VXSpRY0gq\\\":\\\"icon\\\",\\\"M8b9yUOFa\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"u8e7PMVA7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PEubDXmwo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"W4FuuWmNC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as localizedValues from\"./TdH0xnVdZ-0.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const enabledGestures={eaCJ5HdXh:{hover:true},zW0Ylhkr3:{hover:true}};const cycleOrder=[\"zW0Ylhkr3\",\"eaCJ5HdXh\"];const serializationHash=\"framer-Cjb97\";const variantClassNames={eaCJ5HdXh:\"framer-v-b8zxq8\",zW0Ylhkr3:\"framer-v-tv9h5m\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={Sw5HDVzb_:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Datasheet DE\":\"eaCJ5HdXh\",\"Datasheet MX\":\"zW0Ylhkr3\"};const getProps=({height,icon,icon2,id,link,tap,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,gr9ZCHGtN:tap!==null&&tap!==void 0?tap:props.gr9ZCHGtN,Js5Czaztf:(_ref=icon2!==null&&icon2!==void 0?icon2:props.Js5Czaztf)!==null&&_ref!==void 0?_ref:\"Link\",ko_tw_qVF:(_ref1=title!==null&&title!==void 0?title:props.ko_tw_qVF)!==null&&_ref1!==void 0?_ref1:\"Ficha t\\xe9cnica\",RYxCQW8QV:(_ref2=icon!==null&&icon!==void 0?icon:props.RYxCQW8QV)!==null&&_ref2!==void 0?_ref2:\"FilePdf\",snewGjd9G:link!==null&&link!==void 0?link:props.snewGjd9G,variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"zW0Ylhkr3\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,gr9ZCHGtN,ko_tw_qVF,RYxCQW8QV,Js5Czaztf,snewGjd9G,rfX4d8Fj1,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zW0Ylhkr3\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap19hwgzp=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(gr9ZCHGtN){const res=await gr9ZCHGtN(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:snewGjd9G,openInNewTab:true,...addPropertyOverrides({eaCJ5HdXh:{href:rfX4d8Fj1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-tv9h5m\",className,classNames)} framer-1khlwx3`,\"data-framer-name\":\"Datasheet MX\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"zW0Ylhkr3\",onTap:onTap19hwgzp,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-8cad37ef-3a3f-4dad-994e-51a3add7be6e, rgb(233, 231, 235))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"eaCJ5HdXh-hover\":{backgroundColor:\"var(--token-3636223f-35c8-4a2e-bbcb-8f7f8e7c26ec, rgb(217, 227, 248))\"},\"zW0Ylhkr3-hover\":{backgroundColor:\"var(--token-3636223f-35c8-4a2e-bbcb-8f7f8e7c26ec, rgb(217, 227, 248))\"}},...addPropertyOverrides({\"eaCJ5HdXh-hover\":{\"data-framer-name\":undefined},\"zW0Ylhkr3-hover\":{\"data-framer-name\":undefined},eaCJ5HdXh:{\"data-framer-name\":\"Datasheet DE\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p2tbg-container\",layoutDependency:layoutDependency,layoutId:\"U2gKs6TUr-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f7302d28-815b-4db1-ae23-b9c41b77a5f7, rgb(67, 71, 78))\",height:\"100%\",iconSearch:\"House\",iconSelection:RYxCQW8QV,id:\"U2gKs6TUr\",layoutId:\"U2gKs6TUr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f7302d28-815b-4db1-ae23-b9c41b77a5f7, rgb(67, 71, 78)))\"},children:\"Ficha t\\xe9cnica\"})}),className:\"framer-1lgeyoa\",fonts:[\"GF;Montserrat-500\"],layoutDependency:layoutDependency,layoutId:\"ECdCci1h5\",style:{\"--extracted-r6o4lv\":\"var(--token-f7302d28-815b-4db1-ae23-b9c41b77a5f7, rgb(67, 71, 78))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ko_tw_qVF,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6xj3o1-container\",layoutDependency:layoutDependency,layoutId:\"JJL5KL7tj-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",height:\"100%\",iconSearch:\"House\",iconSelection:Js5Czaztf,id:\"JJL5KL7tj\",layoutId:\"JJL5KL7tj\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Cjb97.framer-1khlwx3, .framer-Cjb97 .framer-1khlwx3 { display: block; }\",\".framer-Cjb97.framer-tv9h5m { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; text-decoration: none; user-select: none; width: 480px; }\",\".framer-Cjb97 .framer-1p2tbg-container, .framer-Cjb97 .framer-6xj3o1-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-Cjb97 .framer-1lgeyoa { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Cjb97.framer-tv9h5m { gap: 0px; } .framer-Cjb97.framer-tv9h5m > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-Cjb97.framer-tv9h5m > :first-child { margin-left: 0px; } .framer-Cjb97.framer-tv9h5m > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 53\n * @framerIntrinsicWidth 480\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"eaCJ5HdXh\":{\"layout\":[\"fixed\",\"auto\"]},\"sO7r3kd66\":{\"layout\":[\"fixed\",\"auto\"]},\"juR9VviAQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"gr9ZCHGtN\":\"tap\",\"ko_tw_qVF\":\"title\",\"RYxCQW8QV\":\"icon\",\"Js5Czaztf\":\"icon2\",\"snewGjd9G\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTdH0xnVdZ=withCSS(Component,css,\"framer-Cjb97\");export default FramerTdH0xnVdZ;FramerTdH0xnVdZ.displayName=\"BTK/Download file\";FramerTdH0xnVdZ.defaultProps={height:53,width:480};addPropertyControls(FramerTdH0xnVdZ,{variant:{options:[\"zW0Ylhkr3\",\"eaCJ5HdXh\"],optionTitles:[\"Datasheet MX\",\"Datasheet DE\"],title:\"Variant\",type:ControlType.Enum},gr9ZCHGtN:{title:\"Tap\",type:ControlType.EventHandler},ko_tw_qVF:{defaultValue:\"Ficha t\\xe9cnica\",displayTextArea:false,title:\"Title\",type:ControlType.String},RYxCQW8QV:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"FilePdf\",description:undefined,hidden:undefined,title:\"Icon\"},Js5Czaztf:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Link\",description:undefined,hidden:undefined,title:\"Icon 2\"},snewGjd9G:{title:\"Link\",type:ControlType.Link}});addFonts(FramerTdH0xnVdZ,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew7Y3tcoqK5.woff2\",weight:\"500\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTdH0xnVdZ\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eaCJ5HdXh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sO7r3kd66\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"juR9VviAQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"gr9ZCHGtN\\\":\\\"tap\\\",\\\"ko_tw_qVF\\\":\\\"title\\\",\\\"RYxCQW8QV\\\":\\\"icon\\\",\\\"Js5Czaztf\\\":\\\"icon2\\\",\\\"snewGjd9G\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"53\",\"framerIntrinsicWidth\":\"480\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TdH0xnVdZ.map", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/aw8lbeVWA8RTGvoI6MCW/58ZV12pJ6wpxTP242fnt/yW3B_7OOH.js\";import*as localizedValues from\"./ubdAZwxj1-0.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const enabledGestures={dIndJk8Xn:{hover:true}};const cycleOrder=[\"MbP4Ibuzv\",\"dIndJk8Xn\"];const serializationHash=\"framer-cn2rw\";const variantClassNames={dIndJk8Xn:\"framer-v-13uc3xy\",MbP4Ibuzv:\"framer-v-yhqdat\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={Sw5HDVzb_:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Filled:\"MbP4Ibuzv\",Outlined:\"dIndJk8Xn\"};const getProps=({height,icon,id,link,text,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,mRNgJRAOf:link!==null&&link!==void 0?link:props.mRNgJRAOf,r0KHO8k_2:(_ref=icon!==null&&icon!==void 0?icon:props.r0KHO8k_2)!==null&&_ref!==void 0?_ref:\"ShoppingCartSimple\",tFunZcLax:(_ref1=text!==null&&text!==void 0?text:props.tFunZcLax)!==null&&_ref1!==void 0?_ref1:\"Add to cart & save $10\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"MbP4Ibuzv\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,tFunZcLax,mRNgJRAOf,r0KHO8k_2,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MbP4Ibuzv\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:mRNgJRAOf,openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-yhqdat\",className,classNames)} framer-dex633`,\"data-framer-name\":\"Filled\",layoutDependency:layoutDependency,layoutId:\"MbP4Ibuzv\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"dIndJk8Xn-hover\":{backgroundColor:\"var(--token-a95e4b89-6e82-4ea6-94e0-51eacce68efc, rgba(39, 94, 167, 0.15))\"},dIndJk8Xn:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"dIndJk8Xn-hover\":{\"data-framer-name\":undefined},dIndJk8Xn:{\"data-border\":true,\"data-framer-name\":\"Outlined\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-188qusy-container\",layoutDependency:layoutDependency,layoutId:\"RaeQEWt5U-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-250570a5-1523-40f6-9c4c-a263883e5fcd, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:r0KHO8k_2,id:\"RaeQEWt5U\",layoutId:\"RaeQEWt5U\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\",...addPropertyOverrides({dIndJk8Xn:{color:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-61fnkj\",\"data-styles-preset\":\"yW3B_7OOH\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-250570a5-1523-40f6-9c4c-a263883e5fcd, rgb(255, 255, 255)))\"},children:\"Add to cart & save $10\"})}),className:\"framer-1ltfdgi\",\"data-framer-name\":\"Button\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PXHAzZoC0\",style:{\"--extracted-1eung3n\":\"var(--token-250570a5-1523-40f6-9c4c-a263883e5fcd, rgb(255, 255, 255))\"},text:tFunZcLax,variants:{dIndJk8Xn:{\"--extracted-1eung3n\":\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dIndJk8Xn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-61fnkj\",\"data-styles-preset\":\"yW3B_7OOH\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167)))\"},children:\"Add to cart & save $10\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cn2rw.framer-dex633, .framer-cn2rw .framer-dex633 { display: block; }\",\".framer-cn2rw.framer-yhqdat { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 60px; justify-content: center; overflow: hidden; padding: 14px 20px 14px 20px; position: relative; text-decoration: none; width: 473px; will-change: var(--framer-will-change-override, transform); }\",\".framer-cn2rw .framer-188qusy-container { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-cn2rw .framer-1ltfdgi { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cn2rw.framer-yhqdat { gap: 0px; } .framer-cn2rw.framer-yhqdat > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-cn2rw.framer-yhqdat > :first-child { margin-left: 0px; } .framer-cn2rw.framer-yhqdat > :last-child { margin-right: 0px; } }\",\".framer-cn2rw.framer-v-13uc3xy.framer-yhqdat { cursor: pointer; }\",...sharedStyle.css,'.framer-cn2rw[data-border=\"true\"]::after, .framer-cn2rw [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 473\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"dIndJk8Xn\":{\"layout\":[\"fixed\",\"fixed\"]},\"I4QDZOFL8\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"tFunZcLax\":\"text\",\"mRNgJRAOf\":\"link\",\"r0KHO8k_2\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerubdAZwxj1=withCSS(Component,css,\"framer-cn2rw\");export default FramerubdAZwxj1;FramerubdAZwxj1.displayName=\"Main Button\";FramerubdAZwxj1.defaultProps={height:60,width:473};addPropertyControls(FramerubdAZwxj1,{variant:{options:[\"MbP4Ibuzv\",\"dIndJk8Xn\"],optionTitles:[\"Filled\",\"Outlined\"],title:\"Variant\",type:ControlType.Enum},tFunZcLax:{defaultValue:\"Add to cart & save $10\",displayTextArea:false,title:\"Text\",type:ControlType.String},mRNgJRAOf:{title:\"Link\",type:ControlType.Link},r0KHO8k_2:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"ShoppingCartSimple\",description:undefined,hidden:undefined,title:\"Icon\"}});addFonts(FramerubdAZwxj1,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerubdAZwxj1\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"tFunZcLax\\\":\\\"text\\\",\\\"mRNgJRAOf\\\":\\\"link\\\",\\\"r0KHO8k_2\\\":\\\"icon\\\"}\",\"framerIntrinsicHeight\":\"60\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dIndJk8Xn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"I4QDZOFL8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"473\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ubdAZwxj1.map", "// Generated by Framer (cf240c2)\nvar _componentPresets_fonts,_componentPresets_fonts1,_componentPresets_fonts2,_componentPresets_fonts3,_componentPresets_fonts4,_componentPresets_fonts5;import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,LazyValue,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js\";import BTKChip from\"#framer/local/canvasComponent/ARMZLEvYm/ARMZLEvYm.js\";import Dropdown from\"#framer/local/canvasComponent/bK9wbRIXN/bK9wbRIXN.js\";import ProductFeatureCards from\"#framer/local/canvasComponent/IMATnjlcB/IMATnjlcB.js\";import BTKButton from\"#framer/local/canvasComponent/lVMUmNV2A/lVMUmNV2A.js\";import BTKProductCardFlip from\"#framer/local/canvasComponent/MVy2gyVBV/MVy2gyVBV.js\";import BTKProductCard from\"#framer/local/canvasComponent/Ne0YI6XE9/Ne0YI6XE9.js\";import BTKFooterWeb from\"#framer/local/canvasComponent/NzXJ0Sfjo/NzXJ0Sfjo.js\";import BTKNavbarCopy from\"#framer/local/canvasComponent/RpxAS082i/RpxAS082i.js\";import BTKDownloadFile from\"#framer/local/canvasComponent/TdH0xnVdZ/TdH0xnVdZ.js\";import MainButton from\"#framer/local/canvasComponent/ubdAZwxj1/ubdAZwxj1.js\";import Products,{enumToDisplayNameFunctions}from\"#framer/local/collection/P3YwLYrCH/P3YwLYrCH.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle4 from\"#framer/local/css/bvZMckgAN/bvZMckgAN.js\";import*as sharedStyle10 from\"#framer/local/css/GN81gzKH6/GN81gzKH6.js\";import*as sharedStyle1 from\"#framer/local/css/I6BUuK0q_/I6BUuK0q_.js\";import*as sharedStyle6 from\"#framer/local/css/KzORqp3rF/KzORqp3rF.js\";import*as sharedStyle3 from\"#framer/local/css/M_lbBsIKD/M_lbBsIKD.js\";import*as sharedStyle9 from\"#framer/local/css/M8GS7bVOf/M8GS7bVOf.js\";import*as sharedStyle2 from\"#framer/local/css/mNir_S1z7/mNir_S1z7.js\";import*as sharedStyle8 from\"#framer/local/css/nDeSFtac8/nDeSFtac8.js\";import*as sharedStyle from\"#framer/local/css/pKhxVF0uy/pKhxVF0uy.js\";import*as sharedStyle7 from\"#framer/local/css/xypKzoGYj/xypKzoGYj.js\";import*as sharedStyle5 from\"#framer/local/css/yW3B_7OOH/yW3B_7OOH.js\";import metadataProvider from\"#framer/local/webPageMetadata/Mfj65VgNa/Mfj65VgNa.js\";const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const BTKNavbarCopyFonts=getFonts(BTKNavbarCopy);const BTKNavbarCopyWithVariantAppearEffect=withVariantAppearEffect(BTKNavbarCopy);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const PhosphorFonts=getFonts(Phosphor);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const CarouselFonts=getFonts(Carousel);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const BTKChipFonts=getFonts(BTKChip);const MainButtonFonts=getFonts(MainButton);const DropdownFonts=getFonts(Dropdown);const BTKDownloadFileFonts=getFonts(BTKDownloadFile);const ProductFeatureCardsFonts=getFonts(ProductFeatureCards);const ProductFeatureCardsWithVariantAppearEffect=withVariantAppearEffect(ProductFeatureCards);const BTKProductCardFonts=getFonts(BTKProductCard);const MotionSectionWithFX=withFX(motion.section);const BTKButtonFonts=getFonts(BTKButton);const BTKProductCardFlipFonts=getFonts(BTKProductCardFlip);const MotionDivWithFX=withFX(motion.div);const BTKFooterWebFonts=getFonts(BTKFooterWeb);const breakpoints={A_gaNwQfH:\"(min-width: 1200px)\",TXuNMVODO:\"(min-width: 810px) and (max-width: 1199px)\",wchqfi5Zg:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-f3FeY\";const variantClassNames={A_gaNwQfH:\"framer-v-1mhjbgj\",TXuNMVODO:\"framer-v-a4uies\",wchqfi5Zg:\"framer-v-k5fr4d\"};const valuesByLocaleId={Sw5HDVzb_:new LazyValue(()=>import(\"./Mfj65VgNa-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 transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition1={damping:50,delay:.3,mass:1,stiffness:160,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transition2={delay:0,duration:1.5,ease:[.67,.01,.18,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition3={delay:.1,duration:1.5,ease:[.67,.01,.18,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={delay:.4,duration:1.5,ease:[.67,.01,.18,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={delay:.2,duration:1.5,ease:[.67,.01,.18,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const transition6={delay:.3,duration:1.5,ease:[.67,.01,.18,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const negate=value=>{return!value;};const numberToString=(value,options={},activeLocale)=>{const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const{useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const greaterThan=(a,b)=>{return typeof a===\"number\"&&typeof b===\"number\"?a>b:false;};const transition7={delay:.45,duration:1.5,ease:[.67,.01,.18,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const convertFromEnum=(value,activeLocale,{ma26Qj6DV,IxVtutIX6})=>{switch(value){case\"default\":return ma26Qj6DV;case\"Sw5HDVzb_\":return IxVtutIX6;default:return true;}};const toBoolean=value=>{return Boolean(value);};const convertFromEnum1=(value,activeLocale,{Byh9ZqV1F,BTfiCd0B4})=>{switch(value){case\"default\":return Byh9ZqV1F;case\"Sw5HDVzb_\":return BTfiCd0B4;default:return true;}};const convertFromEnum2=(value,activeLocale,{CF5FnJZL2,NIJfXovOT})=>{switch(value){case\"default\":return CF5FnJZL2;case\"Sw5HDVzb_\":return NIJfXovOT;default:return true;}};const convertFromEnum3=(value,activeLocale,{KSnh_KleD,O1TClIQnV})=>{switch(value){case\"default\":return KSnh_KleD;case\"Sw5HDVzb_\":return O1TClIQnV;default:return true;}};const convertFromEnum4=(value,activeLocale,{LGe2tFJ7i,mABwTbaL4})=>{switch(value){case\"default\":return LGe2tFJ7i;case\"Sw5HDVzb_\":return mABwTbaL4;default:return true;}};const convertFromEnum5=(value,activeLocale,{WhUrm0asV,XN2ZHyT0I})=>{switch(value){case\"default\":return WhUrm0asV;case\"Sw5HDVzb_\":return XN2ZHyT0I;default:return true;}};const transition8={delay:.5,duration:1.5,ease:[.67,.01,.18,1],type:\"tween\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const convertFromEnum6=(value,activeLocale)=>{switch(value){case\"default\":return\"Composici\\xf3n\";case\"Sw5HDVzb_\":return\"Zusammensetzung\";default:return\"\";}};const toString=value=>{return typeof value===\"string\"?value:String(value);};const convertFromEnum7=(value,activeLocale)=>{switch(value){case\"default\":return\"Caracter\\xedsticas fisicoqu\\xedmicas\";case\"Sw5HDVzb_\":return\"physikalisch-chemische Eigenschaften\";default:return\"\";}};const convertFromEnum8=(value,activeLocale,{zu9V9w57k,fMv7e0O0g})=>{switch(value){case\"default\":return zu9V9w57k;case\"Sw5HDVzb_\":return fMv7e0O0g;default:return undefined;}};const convertFromEnum9=(value,activeLocale,{HVIhzcu19,cZy4s4aT_})=>{switch(value){case\"default\":return HVIhzcu19;case\"Sw5HDVzb_\":return cZy4s4aT_;default:return undefined;}};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const isSet=value=>{if(Array.isArray(value)){return value.length>0;}return value!==undefined&&value!==null&&value!==\"\";};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:50};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"BYkydh_vP\";}else{return\"h5QCKuYoB\";}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"A_gaNwQfH\",Phone:\"wchqfi5Zg\",Tablet:\"TXuNMVODO\"};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:\"A_gaNwQfH\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){var _enumToDisplayNameFunctions_LXa5Usllu,_enumToDisplayNameFunctions_nxH24Ohrt;const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"Mfj65VgNa\",data:Products,type:\"Collection\"},select:[{collection:\"Mfj65VgNa\",name:\"LeMjBkh4u\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"xP3whClf3\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"BkA7imhWE\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"QBz_MVDyv\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"zzJBLdR5S\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"BHZA8Ym30\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"aKabLVz2a\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"hgbxjOnPw\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"LXa5Usllu\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"nxH24Ohrt\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"ymxM8A13p\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"Fgn1zsPPT\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"eCia3oEBa\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"UGX4PHsOf\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"UVjHLv96K\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"pyu6yYSqi\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"b5zoo1Z4I\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"CR3A2F4j3\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"UrdELWoUY\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"zTtE93E5I\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"SrAMZK3G5\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"PBOvU7vUl\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"h8mqRWKaJ\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"zu9V9w57k\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"fMv7e0O0g\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"HVIhzcu19\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"cZy4s4aT_\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"hiaO9smiQ\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"O4f6aiyJY\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"wEZ3WTX1R\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"ma26Qj6DV\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"g2mJm5iRD\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"Byh9ZqV1F\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"efZDbfNxr\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"CF5FnJZL2\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"swtF1AOZw\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"KSnh_KleD\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"IKLiUiNzk\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"LGe2tFJ7i\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"rCPch4VSQ\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"WhUrm0asV\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"UEHv686jw\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"IxVtutIX6\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"WSTpJNSAN\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"BTfiCd0B4\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"SVsqQEpxs\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"NIJfXovOT\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"UoF8oPhIp\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"O1TClIQnV\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"QNCodQCQZ\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"mABwTbaL4\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"pPvJwFuW1\",type:\"Identifier\"},{collection:\"Mfj65VgNa\",name:\"XN2ZHyT0I\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"Mfj65VgNa\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1,_getFromCurrentRouteData2,_getFromCurrentRouteData3,_getFromCurrentRouteData4,_getFromCurrentRouteData5,_getFromCurrentRouteData6,_getFromCurrentRouteData7,_getFromCurrentRouteData8,_getFromCurrentRouteData9,_getFromCurrentRouteData10,_getFromCurrentRouteData11,_getFromCurrentRouteData12,_getFromCurrentRouteData13,_getFromCurrentRouteData14,_getFromCurrentRouteData15,_getFromCurrentRouteData16,_getFromCurrentRouteData17,_getFromCurrentRouteData18,_getFromCurrentRouteData19,_getFromCurrentRouteData20,_getFromCurrentRouteData21,_getFromCurrentRouteData22,_getFromCurrentRouteData23,_getFromCurrentRouteData24,_getFromCurrentRouteData25,_getFromCurrentRouteData26,_getFromCurrentRouteData27,_getFromCurrentRouteData28,_getFromCurrentRouteData29,_getFromCurrentRouteData30,_getFromCurrentRouteData31,_getFromCurrentRouteData32,_getFromCurrentRouteData33,_getFromCurrentRouteData34,_getFromCurrentRouteData35,_getFromCurrentRouteData36,_getFromCurrentRouteData37,_getFromCurrentRouteData38,_getFromCurrentRouteData39,_getFromCurrentRouteData40,_getFromCurrentRouteData41,_getFromCurrentRouteData42,_getFromCurrentRouteData43,_getFromCurrentRouteData44,_getFromCurrentRouteData45;const{style,className,layoutId,variant,xP3whClf3=getFromCurrentRouteData(\"xP3whClf3\"),BkA7imhWE=getFromCurrentRouteData(\"BkA7imhWE\"),QBz_MVDyv=getFromCurrentRouteData(\"QBz_MVDyv\"),zzJBLdR5S=getFromCurrentRouteData(\"zzJBLdR5S\"),LXa5Usllu=getFromCurrentRouteData(\"LXa5Usllu\"),nxH24Ohrt=getFromCurrentRouteData(\"nxH24Ohrt\"),LeMjBkh4u=(_getFromCurrentRouteData=getFromCurrentRouteData(\"LeMjBkh4u\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",wEZ3WTX1R=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"wEZ3WTX1R\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:0,UEHv686jw=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"UEHv686jw\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:0,O4f6aiyJY=(_getFromCurrentRouteData3=getFromCurrentRouteData(\"O4f6aiyJY\"))!==null&&_getFromCurrentRouteData3!==void 0?_getFromCurrentRouteData3:0,BHZA8Ym30=(_getFromCurrentRouteData4=getFromCurrentRouteData(\"BHZA8Ym30\"))!==null&&_getFromCurrentRouteData4!==void 0?_getFromCurrentRouteData4:\"\",aKabLVz2a=(_getFromCurrentRouteData5=getFromCurrentRouteData(\"aKabLVz2a\"))!==null&&_getFromCurrentRouteData5!==void 0?_getFromCurrentRouteData5:\"\",ma26Qj6DV=(_getFromCurrentRouteData6=getFromCurrentRouteData(\"ma26Qj6DV\"))!==null&&_getFromCurrentRouteData6!==void 0?_getFromCurrentRouteData6:true,IxVtutIX6=(_getFromCurrentRouteData7=getFromCurrentRouteData(\"IxVtutIX6\"))!==null&&_getFromCurrentRouteData7!==void 0?_getFromCurrentRouteData7:true,Byh9ZqV1F=(_getFromCurrentRouteData8=getFromCurrentRouteData(\"Byh9ZqV1F\"))!==null&&_getFromCurrentRouteData8!==void 0?_getFromCurrentRouteData8:true,BTfiCd0B4=(_getFromCurrentRouteData9=getFromCurrentRouteData(\"BTfiCd0B4\"))!==null&&_getFromCurrentRouteData9!==void 0?_getFromCurrentRouteData9:true,CF5FnJZL2=(_getFromCurrentRouteData10=getFromCurrentRouteData(\"CF5FnJZL2\"))!==null&&_getFromCurrentRouteData10!==void 0?_getFromCurrentRouteData10:true,NIJfXovOT=(_getFromCurrentRouteData11=getFromCurrentRouteData(\"NIJfXovOT\"))!==null&&_getFromCurrentRouteData11!==void 0?_getFromCurrentRouteData11:true,KSnh_KleD=(_getFromCurrentRouteData12=getFromCurrentRouteData(\"KSnh_KleD\"))!==null&&_getFromCurrentRouteData12!==void 0?_getFromCurrentRouteData12:true,O1TClIQnV=(_getFromCurrentRouteData13=getFromCurrentRouteData(\"O1TClIQnV\"))!==null&&_getFromCurrentRouteData13!==void 0?_getFromCurrentRouteData13:true,LGe2tFJ7i=(_getFromCurrentRouteData14=getFromCurrentRouteData(\"LGe2tFJ7i\"))!==null&&_getFromCurrentRouteData14!==void 0?_getFromCurrentRouteData14:true,mABwTbaL4=(_getFromCurrentRouteData15=getFromCurrentRouteData(\"mABwTbaL4\"))!==null&&_getFromCurrentRouteData15!==void 0?_getFromCurrentRouteData15:true,WhUrm0asV=(_getFromCurrentRouteData16=getFromCurrentRouteData(\"WhUrm0asV\"))!==null&&_getFromCurrentRouteData16!==void 0?_getFromCurrentRouteData16:true,XN2ZHyT0I=(_getFromCurrentRouteData17=getFromCurrentRouteData(\"XN2ZHyT0I\"))!==null&&_getFromCurrentRouteData17!==void 0?_getFromCurrentRouteData17:true,UVjHLv96K=(_getFromCurrentRouteData18=getFromCurrentRouteData(\"UVjHLv96K\"))!==null&&_getFromCurrentRouteData18!==void 0?_getFromCurrentRouteData18:true,pyu6yYSqi=(_getFromCurrentRouteData19=getFromCurrentRouteData(\"pyu6yYSqi\"))!==null&&_getFromCurrentRouteData19!==void 0?_getFromCurrentRouteData19:true,ymxM8A13p=(_getFromCurrentRouteData20=getFromCurrentRouteData(\"ymxM8A13p\"))!==null&&_getFromCurrentRouteData20!==void 0?_getFromCurrentRouteData20:true,b5zoo1Z4I=(_getFromCurrentRouteData21=getFromCurrentRouteData(\"b5zoo1Z4I\"))!==null&&_getFromCurrentRouteData21!==void 0?_getFromCurrentRouteData21:true,CR3A2F4j3=(_getFromCurrentRouteData22=getFromCurrentRouteData(\"CR3A2F4j3\"))!==null&&_getFromCurrentRouteData22!==void 0?_getFromCurrentRouteData22:true,UrdELWoUY=(_getFromCurrentRouteData23=getFromCurrentRouteData(\"UrdELWoUY\"))!==null&&_getFromCurrentRouteData23!==void 0?_getFromCurrentRouteData23:true,PBOvU7vUl=(_getFromCurrentRouteData24=getFromCurrentRouteData(\"PBOvU7vUl\"))!==null&&_getFromCurrentRouteData24!==void 0?_getFromCurrentRouteData24:\"\",h8mqRWKaJ=(_getFromCurrentRouteData25=getFromCurrentRouteData(\"h8mqRWKaJ\"))!==null&&_getFromCurrentRouteData25!==void 0?_getFromCurrentRouteData25:\"\",zu9V9w57k=(_getFromCurrentRouteData26=getFromCurrentRouteData(\"zu9V9w57k\"))!==null&&_getFromCurrentRouteData26!==void 0?_getFromCurrentRouteData26:\"\",fMv7e0O0g=(_getFromCurrentRouteData27=getFromCurrentRouteData(\"fMv7e0O0g\"))!==null&&_getFromCurrentRouteData27!==void 0?_getFromCurrentRouteData27:\"\",HVIhzcu19=(_getFromCurrentRouteData28=getFromCurrentRouteData(\"HVIhzcu19\"))!==null&&_getFromCurrentRouteData28!==void 0?_getFromCurrentRouteData28:\"\",cZy4s4aT_=(_getFromCurrentRouteData29=getFromCurrentRouteData(\"cZy4s4aT_\"))!==null&&_getFromCurrentRouteData29!==void 0?_getFromCurrentRouteData29:\"\",hiaO9smiQ=(_getFromCurrentRouteData30=getFromCurrentRouteData(\"hiaO9smiQ\"))!==null&&_getFromCurrentRouteData30!==void 0?_getFromCurrentRouteData30:\"\",SrAMZK3G5=(_getFromCurrentRouteData31=getFromCurrentRouteData(\"SrAMZK3G5\"))!==null&&_getFromCurrentRouteData31!==void 0?_getFromCurrentRouteData31:\"\",zTtE93E5I=(_getFromCurrentRouteData32=getFromCurrentRouteData(\"zTtE93E5I\"))!==null&&_getFromCurrentRouteData32!==void 0?_getFromCurrentRouteData32:\"\",g2mJm5iRD=(_getFromCurrentRouteData33=getFromCurrentRouteData(\"g2mJm5iRD\"))!==null&&_getFromCurrentRouteData33!==void 0?_getFromCurrentRouteData33:0,WSTpJNSAN=(_getFromCurrentRouteData34=getFromCurrentRouteData(\"WSTpJNSAN\"))!==null&&_getFromCurrentRouteData34!==void 0?_getFromCurrentRouteData34:0,efZDbfNxr=(_getFromCurrentRouteData35=getFromCurrentRouteData(\"efZDbfNxr\"))!==null&&_getFromCurrentRouteData35!==void 0?_getFromCurrentRouteData35:0,SVsqQEpxs=(_getFromCurrentRouteData36=getFromCurrentRouteData(\"SVsqQEpxs\"))!==null&&_getFromCurrentRouteData36!==void 0?_getFromCurrentRouteData36:0,swtF1AOZw=(_getFromCurrentRouteData37=getFromCurrentRouteData(\"swtF1AOZw\"))!==null&&_getFromCurrentRouteData37!==void 0?_getFromCurrentRouteData37:0,UoF8oPhIp=(_getFromCurrentRouteData38=getFromCurrentRouteData(\"UoF8oPhIp\"))!==null&&_getFromCurrentRouteData38!==void 0?_getFromCurrentRouteData38:0,IKLiUiNzk=(_getFromCurrentRouteData39=getFromCurrentRouteData(\"IKLiUiNzk\"))!==null&&_getFromCurrentRouteData39!==void 0?_getFromCurrentRouteData39:0,QNCodQCQZ=(_getFromCurrentRouteData40=getFromCurrentRouteData(\"QNCodQCQZ\"))!==null&&_getFromCurrentRouteData40!==void 0?_getFromCurrentRouteData40:0,rCPch4VSQ=(_getFromCurrentRouteData41=getFromCurrentRouteData(\"rCPch4VSQ\"))!==null&&_getFromCurrentRouteData41!==void 0?_getFromCurrentRouteData41:0,pPvJwFuW1=(_getFromCurrentRouteData42=getFromCurrentRouteData(\"pPvJwFuW1\"))!==null&&_getFromCurrentRouteData42!==void 0?_getFromCurrentRouteData42:0,BHZA8Ym30C2_O8H85F,lP3tY_j3lC2_O8H85F,LeMjBkh4uC2_O8H85F,hgbxjOnPwC2_O8H85F,LXa5UslluC2_O8H85F,wEZ3WTX1RC2_O8H85F,UEHv686jwC2_O8H85F,idC2_O8H85F,BHZA8Ym30kUImJ78q_,lP3tY_j3lkUImJ78q_,LeMjBkh4ukUImJ78q_,hgbxjOnPwkUImJ78q_,LXa5UsllukUImJ78q_,wEZ3WTX1RkUImJ78q_,UEHv686jwkUImJ78q_,idkUImJ78q_,BHZA8Ym30C9XrYWyyY,lP3tY_j3lC9XrYWyyY,LeMjBkh4uC9XrYWyyY,hgbxjOnPwC9XrYWyyY,LXa5UslluC9XrYWyyY,wEZ3WTX1RC9XrYWyyY,UEHv686jwC9XrYWyyY,idC9XrYWyyY,BHZA8Ym30gAtzmtC3M,lP3tY_j3lgAtzmtC3M,LeMjBkh4ugAtzmtC3M,hgbxjOnPwgAtzmtC3M,LXa5UsllugAtzmtC3M,wEZ3WTX1RgAtzmtC3M,UEHv686jwgAtzmtC3M,idgAtzmtC3M,BHZA8Ym30LRS7xb__p,lP3tY_j3lLRS7xb__p,LeMjBkh4uLRS7xb__p,hgbxjOnPwLRS7xb__p,LXa5UslluLRS7xb__p,wEZ3WTX1RLRS7xb__p,UEHv686jwLRS7xb__p,idLRS7xb__p,UGX4PHsOf=(_getFromCurrentRouteData43=getFromCurrentRouteData(\"UGX4PHsOf\"))!==null&&_getFromCurrentRouteData43!==void 0?_getFromCurrentRouteData43:true,BHZA8Ym30LDOL1wJ_n,lP3tY_j3lLDOL1wJ_n,LeMjBkh4uLDOL1wJ_n,hgbxjOnPwLDOL1wJ_n,LXa5UslluLDOL1wJ_n,wEZ3WTX1RLDOL1wJ_n,UEHv686jwLDOL1wJ_n,HiU5rnhxmLDOL1wJ_n,idLDOL1wJ_n,eCia3oEBa=(_getFromCurrentRouteData44=getFromCurrentRouteData(\"eCia3oEBa\"))!==null&&_getFromCurrentRouteData44!==void 0?_getFromCurrentRouteData44:true,BHZA8Ym30Ma5RvOX4r,lP3tY_j3lMa5RvOX4r,LeMjBkh4uMa5RvOX4r,hgbxjOnPwMa5RvOX4r,LXa5UslluMa5RvOX4r,wEZ3WTX1RMa5RvOX4r,UEHv686jwMa5RvOX4r,idMa5RvOX4r,Fgn1zsPPT=(_getFromCurrentRouteData45=getFromCurrentRouteData(\"Fgn1zsPPT\"))!==null&&_getFromCurrentRouteData45!==void 0?_getFromCurrentRouteData45:true,BHZA8Ym30HcwmSfX8r,lP3tY_j3lHcwmSfX8r,LeMjBkh4uHcwmSfX8r,hgbxjOnPwHcwmSfX8r,LXa5UslluHcwmSfX8r,wEZ3WTX1RHcwmSfX8r,UEHv686jwHcwmSfX8r,idHcwmSfX8r,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,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);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-f3FeY`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-f3FeY`);};},[currentRouteData,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(!isBrowser())return true;if(baseVariant===\"wchqfi5Zg\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"TXuNMVODO\")return false;return true;};const elementId=useRouteElementId(\"JkcGBCXoY\");const ref2=React.useRef(null);const visible=negate(equals(LXa5Usllu,\"d67lT5dpG\"));const textContent=(_enumToDisplayNameFunctions_LXa5Usllu=enumToDisplayNameFunctions[\"LXa5Usllu\"])===null||_enumToDisplayNameFunctions_LXa5Usllu===void 0?void 0:_enumToDisplayNameFunctions_LXa5Usllu.call(enumToDisplayNameFunctions,LXa5Usllu,activeLocale);const visible1=negate(equals(nxH24Ohrt,\"d67lT5dpG\"));const textContent1=(_enumToDisplayNameFunctions_nxH24Ohrt=enumToDisplayNameFunctions[\"nxH24Ohrt\"])===null||_enumToDisplayNameFunctions_nxH24Ohrt===void 0?void 0:_enumToDisplayNameFunctions_nxH24Ohrt.call(enumToDisplayNameFunctions,nxH24Ohrt,activeLocale);const visible2=equals(activeLocale===null||activeLocale===void 0?void 0:activeLocale.id,\"default\");const activeLocaleCode=useLocaleCode();var _getLocalizedValue,_getLocalizedValue1;const textContent2=prefix(suffix(numberToString(wEZ3WTX1R,{currency:\"USD\",currencyDisplay:\"symbol\",locale:\"es-MX\",notation:\"standard\",style:\"currency\"},activeLocaleCode),(_getLocalizedValue=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"/Lt\"),(_getLocalizedValue1=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"Desde \");const visible3=equals(activeLocale===null||activeLocale===void 0?void 0:activeLocale.id,\"Sw5HDVzb_\");var _getLocalizedValue2,_getLocalizedValue3;const textContent3=prefix(suffix(numberToString(UEHv686jw,{currency:\"EUR\",currencyDisplay:\"symbol\",locale:\"de-DE\",notation:\"standard\",style:\"currency\"},activeLocaleCode),(_getLocalizedValue2=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"/Lt\"),(_getLocalizedValue3=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:\"Ab \");const visible4=greaterThan(O4f6aiyJY,0);var _getLocalizedValue4;const textContent4=suffix(numberToString(O4f6aiyJY,{currency:\"USD\",currencyDisplay:\"narrowSymbol\",locale:\"\",notation:\"standard\",style:\"currency\",useGrouping:true},activeLocaleCode),(_getLocalizedValue4=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:\" USD\");const visible5=toBoolean(convertFromEnum(activeLocale===null||activeLocale===void 0?void 0:activeLocale.id,activeLocale,{ma26Qj6DV,IxVtutIX6}));const router=useRouter();const visible6=toBoolean(convertFromEnum1(activeLocale===null||activeLocale===void 0?void 0:activeLocale.id,activeLocale,{Byh9ZqV1F,BTfiCd0B4}));const visible7=toBoolean(convertFromEnum2(activeLocale===null||activeLocale===void 0?void 0:activeLocale.id,activeLocale,{CF5FnJZL2,NIJfXovOT}));const visible8=toBoolean(convertFromEnum3(activeLocale===null||activeLocale===void 0?void 0:activeLocale.id,activeLocale,{KSnh_KleD,O1TClIQnV}));const visible9=toBoolean(convertFromEnum4(activeLocale===null||activeLocale===void 0?void 0:activeLocale.id,activeLocale,{LGe2tFJ7i,mABwTbaL4}));const visible10=toBoolean(convertFromEnum5(activeLocale===null||activeLocale===void 0?void 0:activeLocale.id,activeLocale,{WhUrm0asV,XN2ZHyT0I}));const visible11=negate(ymxM8A13p);const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const elementId1=useRouteElementId(\"wIT6HpMTp\");const visible12=isSet(zTtE93E5I);const elementId2=useRouteElementId(\"BscUmOXbd\");const elementId3=useRouteElementId(\"R3sySL0sF\");const elementId4=useRouteElementId(\"Fs1nw73CC\");const ref6=React.useRef(null);const elementId5=useRouteElementId(\"BCqzjKmSM\");const ref7=React.useRef(null);const elementId6=useRouteElementId(\"mn7554554\");const ref8=React.useRef(null);const elementId7=useRouteElementId(\"jgH_OiX5x\");const ref9=React.useRef(null);const visible13=negate(equals(activeLocale===null||activeLocale===void 0?void 0:activeLocale.id,\"Sw5HDVzb_\"));const elementId8=useRouteElementId(\"qf1a2DNae\");const ref10=React.useRef(null);const elementId9=useRouteElementId(\"NC2CbT4pb\");const ref11=React.useRef(null);const elementId10=useRouteElementId(\"oI2k3q3Zb\");const ref12=React.useRef(null);const elementId11=useRouteElementId(\"w7ftV6WtL\");const ref13=React.useRef(null);const elementId12=useRouteElementId(\"dhLFXTKOO\");const ref14=React.useRef(null);const elementId13=useRouteElementId(\"SCQyvxUG8\");const ref15=React.useRef(null);const elementId14=useRouteElementId(\"ReD0Z8Ymi\");const ref16=React.useRef(null);const elementId15=useRouteElementId(\"Gvtq60wNi\");const ref17=React.useRef(null);const elementId16=useRouteElementId(\"Ux8Y3wg7L\");const ref18=React.useRef(null);const elementId17=useRouteElementId(\"bBL6cnwPY\");const ref19=React.useRef(null);const elementId18=useRouteElementId(\"t4dlyfuHM\");const ref20=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];useCustomCursors({});var _getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16,_getLocalizedValue17,_getLocalizedValue18,_getLocalizedValue19,_getLocalizedValue20,_getLocalizedValue21,_getLocalizedValue22,_getLocalizedValue23,_getLocalizedValue24,_getLocalizedValue25,_getLocalizedValue26,_getLocalizedValue27,_getLocalizedValue28,_getLocalizedValue29,_getLocalizedValue30,_getLocalizedValue31,_getLocalizedValue32,_getLocalizedValue33,_getLocalizedValue34,_getLocalizedValue35,_getLocalizedValue36,_getLocalizedValue37,_getLocalizedValue38,_getLocalizedValue39,_getLocalizedValue40,_getLocalizedValue41,_getLocalizedValue42,_getLocalizedValue43,_getLocalizedValue44,_getLocalizedValue45,_getLocalizedValue46,_getLocalizedValue47,_getLocalizedValue48,_getLocalizedValue49,_getLocalizedValue50,_getLocalizedValue51,_getLocalizedValue52,_getLocalizedValue53,_getLocalizedValue54,_getLocalizedValue55,_getLocalizedValue56,_getLocalizedValue57,_getLocalizedValue58,_getLocalizedValue59,_getLocalizedValue60,_getLocalizedValue61,_getLocalizedValue62,_getLocalizedValue63,_getLocalizedValue64,_getLocalizedValue65,_getLocalizedValue66,_getLocalizedValue67,_getLocalizedValue68,_getLocalizedValue69,_getLocalizedValue70,_getLocalizedValue71,_getLocalizedValue72,_getLocalizedValue73,_getLocalizedValue74,_getLocalizedValue75,_getLocalizedValue76,_getLocalizedValue77,_getLocalizedValue78,_getLocalizedValue79,_getLocalizedValue80,_getLocalizedValue81,_getLocalizedValue82,_getLocalizedValue83,_getLocalizedValue84,_getLocalizedValue85,_getLocalizedValue86,_getLocalizedValue87,_getLocalizedValue88,_getLocalizedValue89,_getLocalizedValue90,_getLocalizedValue91;return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"A_gaNwQfH\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1mhjbgj\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yw9v1s\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{transformTemplate:transformTemplate2},wchqfi5Zg:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1aqy12e\",\"data-framer-appear-id\":\"1aqy12e\",\"data-framer-name\":\"top-left-gradient\",initial:animation1,name:\"top-left-gradient\",optimized:true,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17gutjy\",style:{rotate:90}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12wqnia\",\"data-framer-name\":\"gradient\",name:\"gradient\",style:{rotate:-90}})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-104ljtx-container\",\"data-framer-appear-id\":\"104ljtx\",initial:animation3,layoutScroll:true,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{__framer__scrollDirection:{direction:\"down\",target:\"lcAO4l3zu\"},variant:\"IRbSysquJ\"},wchqfi5Zg:{__framer__scrollDirection:{direction:\"down\",target:\"lcAO4l3zu\"},variant:\"IRbSysquJ\"}},children:/*#__PURE__*/_jsx(BTKNavbarCopyWithVariantAppearEffect,{__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:\"KuPQGySRV\"},__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"eC6mvMSJh\",layoutId:\"eC6mvMSJh\",style:{width:\"100%\"},variant:\"us8mK0Ee6\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-en8dx3\",\"data-framer-name\":\"Body\",name:\"Body\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-1mdb8e9 hidden-k5fr4d\",\"data-framer-name\":\"Trust\",name:\"Trust\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-ipa874\",\"data-framer-appear-id\":\"ipa874\",\"data-framer-name\":\"garanties\",initial:animation3,name:\"garanties\",optimized:true,style:{transformPerspective:1200},children:[isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"bVCKp_jLd\"},openInNewTab:true,children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation5,className:\"framer-18jhoxc hidden-a4uies framer-18aybn6\",\"data-framer-appear-id\":\"18jhoxc\",\"data-framer-name\":\"garantie 2\",initial:animation3,name:\"garantie 2\",optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nsy7pa\",\"data-framer-name\":\"icon\",name:\"icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gcoo3i\",\"data-framer-name\":\"receipt-refund\",name:\"receipt-refund\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10kwnm8-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-250570a5-1523-40f6-9c4c-a263883e5fcd, rgb(255, 255, 255))\",height:\"100%\",iconSearch:(_getLocalizedValue5=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:\"House\",iconSelection:\"Atom\",id:\"tvG1qAiGF\",layoutId:\"tvG1qAiGF\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11k3aq4\",\"data-framer-name\":\"texte\",name:\"texte\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue6=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-i4wtqk\",\"data-styles-preset\":\"pKhxVF0uy\",style:{\"--framer-text-color\":\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\"},children:\"Tecnolog\\xeda innovadora\"})}),className:\"framer-26fed4\",\"data-framer-name\":\"Font\",fonts:[\"Inter\"],name:\"Font\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue7=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113))\"},children:\"Respaldado por la ciencia\"})}),className:\"framer-n67guq\",\"data-framer-name\":\"Font\",fonts:[\"GF;Montserrat-500\"],name:\"Font\",verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://bioteksa.atlassian.net/servicedesk/customer/portal/4/group/4/create/15\",openInNewTab:true,children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation6,className:\"framer-xisv01 framer-18aybn6\",\"data-framer-appear-id\":\"xisv01\",\"data-framer-name\":\"garantie 1\",initial:animation3,name:\"garantie 1\",optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11u8lfc\",\"data-framer-name\":\"icon\",name:\"icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lg6a22\",\"data-framer-name\":\"cloud-arrow-down\",name:\"cloud-arrow-down\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tczi2r-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-250570a5-1523-40f6-9c4c-a263883e5fcd, rgb(255, 255, 255))\",height:\"100%\",iconSearch:(_getLocalizedValue8=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:\"House\",iconSelection:\"Plant\",id:\"c6uCgITMq\",layoutId:\"c6uCgITMq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10f08pq\",\"data-framer-name\":\"texte\",name:\"texte\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue9=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-i4wtqk\",\"data-styles-preset\":\"pKhxVF0uy\",style:{\"--framer-text-color\":\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\"},children:\"Asesoramos tus cultivos\"})}),className:\"framer-1uhwb9f\",\"data-framer-name\":\"Font\",fonts:[\"Inter\"],name:\"Font\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue10=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113))\"},children:\"Re\\xfanete con un experto Bioteksa\\xae\"})}),className:\"framer-186u7g2\",\"data-framer-name\":\"Font\",fonts:[\"GF;Montserrat-500\"],name:\"Font\",verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://ayuda.bioteksa.com\",children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation7,className:\"framer-484j0l framer-18aybn6\",\"data-framer-appear-id\":\"484j0l\",\"data-framer-name\":\"garantie 3\",initial:animation3,name:\"garantie 3\",optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-105xr0i\",\"data-framer-name\":\"icon\",name:\"icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-n71ryx\",\"data-framer-name\":\"envelope\",name:\"envelope\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sx6q2q-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-250570a5-1523-40f6-9c4c-a263883e5fcd, rgb(255, 255, 255))\",height:\"100%\",iconSearch:(_getLocalizedValue11=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:\"q\",iconSelection:\"Question\",id:\"NokPdLGhS\",layoutId:\"NokPdLGhS\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l7rn12\",\"data-framer-name\":\"texte\",name:\"texte\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue12=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-i4wtqk\",\"data-styles-preset\":\"pKhxVF0uy\",style:{\"--framer-text-color\":\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\"},children:\"Soporte en l\\xednea\"})}),className:\"framer-1rrn55o\",\"data-framer-name\":\"Font\",fonts:[\"Inter\"],name:\"Font\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue13=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113))\"},children:\"Consulta con un asesor.\"})}),className:\"framer-111lva3\",\"data-framer-name\":\"Font\",fonts:[\"GF;Montserrat-500\"],name:\"Font\",verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-eapc85\",\"data-framer-name\":\"Product\",id:elementId,name:\"Product\",ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ayc7ce\",\"data-framer-name\":\"left\",name:\"left\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1zanvj\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-rax25x\",\"data-framer-name\":\"carousel + button\",name:\"carousel + button\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1xma1ft\",\"data-framer-appear-id\":\"1xma1ft\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1geqywv-container\",\"data-framer-appear-id\":\"1geqywv\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:24,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"lKNOMrc2s\",layoutId:\"lKNOMrc2s\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:5,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"stretch\",widthColumns:2,widthInset:0,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:750,intrinsicWidth:1e3,pixelHeight:1500,pixelWidth:2e3,sizes:\"556px\",...toResponsiveImage(xP3whClf3),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1qqj4lg\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:750,intrinsicWidth:1e3,pixelHeight:1500,pixelWidth:2e3,sizes:\"556px\",...toResponsiveImage(BkA7imhWE),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-14oheo5\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:750,intrinsicWidth:1e3,pixelHeight:1500,pixelWidth:2e3,sizes:\"556px\",...toResponsiveImage(QBz_MVDyv),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-z6cd36\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:750,intrinsicWidth:1e3,pixelHeight:1500,pixelWidth:2e3,sizes:\"556px\",...toResponsiveImage(zzJBLdR5S),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1v94bhw\",\"data-framer-name\":\"image\",name:\"image\"})],snapObject:{fluid:true,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vbjmaw\",\"data-framer-name\":\"right\",name:\"right\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nxe89f\",\"data-framer-name\":\"title\",name:\"title\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation6,className:\"framer-i0zoxu\",\"data-framer-appear-id\":\"i0zoxu\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113))\",\"--framer-text-transform\":\"uppercase\"},children:\"Bioestimulante\"})})},wchqfi5Zg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113))\",\"--framer-text-transform\":\"uppercase\"},children:\"Bioestimulante\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113))\",\"--framer-text-transform\":\"uppercase\"},children:\"Bioestimulante\"})}),className:\"framer-1j55gse\",\"data-framer-name\":\"Et l\\xe0 un texte plus informatif\",fonts:[\"GF;Montserrat-600\"],name:\"Et l\\xe0 un texte plus informatif\",text:textContent,verticalAlignment:\"top\",withExternalLayout:true})}),visible1&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue14=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113))\",\"--framer-text-transform\":\"uppercase\"},children:\"|\"})}),className:\"framer-add7oq\",\"data-framer-name\":\"Et l\\xe0 un texte plus informatif\",fonts:[\"GF;Montserrat-600\"],name:\"Et l\\xe0 un texte plus informatif\",verticalAlignment:\"top\",withExternalLayout:true}),visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-adfe63c2-e614-4b94-a8f0-f0d65c195294, rgb(111, 86, 117))\",\"--framer-text-transform\":\"uppercase\"},children:\"Biostimulante\"})})},wchqfi5Zg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-adfe63c2-e614-4b94-a8f0-f0d65c195294, rgb(111, 86, 117))\",\"--framer-text-transform\":\"uppercase\"},children:\"Biostimulante\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113))\",\"--framer-text-transform\":\"uppercase\"},children:\"Nutrici\\xf3n foliar\"})}),className:\"framer-b2m5jt\",\"data-framer-name\":\"Et l\\xe0 un texte plus informatif\",fonts:[\"GF;Montserrat-600\"],name:\"Et l\\xe0 un texte plus informatif\",text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-color\":\"var(--token-04b93aaa-6f54-4983-90f7-1dfbceb49636, rgb(26, 27, 30))\"},children:\"NUBIOTEK\\xae HYPER ZN\"})}),className:\"framer-bsvaz8\",\"data-framer-appear-id\":\"bsvaz8\",\"data-framer-name\":\"Font\",fonts:[\"Inter\"],initial:animation3,name:\"Font\",optimized:true,style:{transformPerspective:1200},text:LeMjBkh4u,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-a4du9u\",\"data-framer-appear-id\":\"a4du9u\",\"data-framer-name\":\"Divider\",initial:animation3,name:\"Divider\",optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xrdd1t\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-14izygl\",\"data-framer-appear-id\":\"14izygl\",\"data-framer-name\":\"Frame 1\",initial:animation3,name:\"Frame 1\",optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1up2ny1\",\"data-framer-name\":\"price\",name:\"price\",children:[visible2&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-adfe63c2-e614-4b94-a8f0-f0d65c195294, rgb(111, 86, 117))\"},children:\"Desde USD\\xa020.44/Lt\"})}),className:\"framer-fu4p5t\",\"data-framer-name\":\"Price MX\",fonts:[\"GF;Montserrat-500\"],name:\"Price MX\",text:textContent2,verticalAlignment:\"top\",withExternalLayout:true}),visible3&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113))\"},children:\"$20.00 USD\"})})},wchqfi5Zg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113))\"},children:\"$20.00 USD\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\"},children:\"Ab 0,00\\xa0\u20AC/Lt\"})}),className:\"framer-1y1xtec\",\"data-framer-name\":\"Price DE\",fonts:[\"GF;Montserrat-500\"],name:\"Price DE\",text:textContent3,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x2u93d\",\"data-framer-name\":\"discount price\",name:\"discount price\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-50ea2ecb-5432-409b-9986-db675b071051, rgb(238, 240, 250))\",\"--framer-text-decoration\":\"line-through\",\"--framer-text-transform\":\"capitalize\"},children:\"$0.00 USD\"})})},wchqfi5Zg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-50ea2ecb-5432-409b-9986-db675b071051, rgb(238, 240, 250))\",\"--framer-text-decoration\":\"line-through\",\"--framer-text-transform\":\"capitalize\"},children:\"$0.00 USD\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-50ea2ecb-5432-409b-9986-db675b071051, rgb(238, 240, 250))\",\"--framer-text-decoration\":\"line-through\",\"--framer-text-transform\":\"capitalize\"},children:\"$0.00 USD\"})}),className:\"framer-uy7qz7\",\"data-framer-name\":\"Font\",fonts:[\"GF;Montserrat-500\"],name:\"Font\",text:textContent4,verticalAlignment:\"top\",withExternalLayout:true})})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-p48j7p\"})]}),/*#__PURE__*/_jsx(Link,{href:{hash:\":Fs1nw73CC\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation7,className:\"framer-id004e framer-18aybn6\",\"data-framer-appear-id\":\"id004e\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue15=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-i4wtqk\",\"data-styles-preset\":\"pKhxVF0uy\",style:{\"--framer-text-color\":\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\"},children:\"Ver tabla de precios\"})}),className:\"framer-1xjug7m\",\"data-framer-name\":\"Font\",fonts:[\"Inter\"],name:\"Font\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-blyi75-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",height:\"100%\",iconSearch:(_getLocalizedValue16=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:\"House\",iconSelection:\"CaretRight\",id:\"zFwPEyI8Y\",layoutId:\"zFwPEyI8Y\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fcqxf6\",\"data-framer-name\":\"ATC\",name:\"ATC\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3i1g5g\",\"data-framer-name\":\"Advantages\",name:\"Advantages\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-zl4ugm\",\"data-framer-appear-id\":\"zl4ugm\",\"data-framer-name\":\"Advantage 2\",initial:animation3,name:\"Advantage 2\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-color\":\"var(--token-04b93aaa-6f54-4983-90f7-1dfbceb49636, rgb(26, 27, 30))\"},children:\"BNF Optimizador de la Radiaci\\xf3n Fotosint\\xe9ticamente Activa. Fotos\\xedntesis en condiciones limitantes y limitadas.\"})}),className:\"framer-1ruw24f\",\"data-framer-name\":\"Font\",fonts:[\"Inter\"],name:\"Font\",text:aKabLVz2a,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-7dq96r\",\"data-framer-appear-id\":\"7dq96r\",\"data-framer-name\":\"Advantage 1\",initial:animation3,name:\"Advantage 1\",optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue17=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue17!==void 0?_getLocalizedValue17:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-i4wtqk\",\"data-styles-preset\":\"pKhxVF0uy\",style:{\"--framer-text-color\":\"var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113))\"},children:\"Tama\\xf1os disponibles\"})}),className:\"framer-1uzpaaj\",\"data-framer-name\":\"Font\",fonts:[\"Inter\"],name:\"Font\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11fawmk\",children:[visible5&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":BCqzjKmSM\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{hash:\":BCqzjKmSM\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{hash:\":BCqzjKmSM\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-86maiy-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{ulDDb2E9s:resolvedLinks[1]},wchqfi5Zg:{ulDDb2E9s:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(BTKChip,{aGgetsZcF:\"var(--token-8cad37ef-3a3f-4dad-994e-51a3add7be6e, rgb(233, 231, 235))\",AMcbmuyNR:(_getLocalizedValue=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"1 Lt.\",e_y4kqTc_:\"var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113))\",height:\"100%\",id:\"PE2_CqB3z\",jMdnAOK9d:false,layoutId:\"PE2_CqB3z\",Mso3gieoE:false,rAyiuf5vJ:\"var(--token-a95e4b89-6e82-4ea6-94e0-51eacce68efc, rgba(39, 94, 167, 0.15))\",sAQKPP5E0:\"StarFour\",ulDDb2E9s:resolvedLinks[0],variant:\"OMvjCXt6L\",width:\"100%\",wTN5vFwBa:{borderColor:'var(--token-17156bee-bef5-413c-9e74-8c35efc3654d, rgb(196, 198, 207)) /* {\"name\":\"outline-variant\"} */',borderStyle:\"solid\",borderWidth:1},xJmvZ95qr:{borderColor:'var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167)) /* {\"name\":\"primary\"} */',borderStyle:\"solid\",borderWidth:1}})})})});}}),visible6&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":mn7554554\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{hash:\":mn7554554\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{hash:\":mn7554554\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n1qq1v-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{ulDDb2E9s:resolvedLinks1[1]},wchqfi5Zg:{ulDDb2E9s:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(BTKChip,{aGgetsZcF:\"var(--token-8cad37ef-3a3f-4dad-994e-51a3add7be6e, rgb(233, 231, 235))\",AMcbmuyNR:(_getLocalizedValue=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"5 Lt.\",e_y4kqTc_:\"var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113))\",height:\"100%\",id:\"j2rXUr4ob\",jMdnAOK9d:false,layoutId:\"j2rXUr4ob\",Mso3gieoE:false,rAyiuf5vJ:\"var(--token-a95e4b89-6e82-4ea6-94e0-51eacce68efc, rgba(39, 94, 167, 0.15))\",sAQKPP5E0:\"StarFour\",ulDDb2E9s:resolvedLinks1[0],variant:\"OMvjCXt6L\",width:\"100%\",wTN5vFwBa:{borderColor:'var(--token-17156bee-bef5-413c-9e74-8c35efc3654d, rgb(196, 198, 207)) /* {\"name\":\"outline-variant\"} */',borderStyle:\"solid\",borderWidth:1},xJmvZ95qr:{borderColor:'var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167)) /* {\"name\":\"primary\"} */',borderStyle:\"solid\",borderWidth:1}})})})});}}),visible7&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":jgH_OiX5x\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{hash:\":jgH_OiX5x\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{hash:\":jgH_OiX5x\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-62e6cf-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{ulDDb2E9s:resolvedLinks2[1]},wchqfi5Zg:{ulDDb2E9s:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(BTKChip,{aGgetsZcF:\"var(--token-8cad37ef-3a3f-4dad-994e-51a3add7be6e, rgb(233, 231, 235))\",AMcbmuyNR:(_getLocalizedValue=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"20 Lt.\",e_y4kqTc_:\"var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113))\",height:\"100%\",id:\"AkqeEf2Js\",jMdnAOK9d:false,layoutId:\"AkqeEf2Js\",Mso3gieoE:false,rAyiuf5vJ:\"var(--token-a95e4b89-6e82-4ea6-94e0-51eacce68efc, rgba(39, 94, 167, 0.15))\",sAQKPP5E0:\"StarFour\",ulDDb2E9s:resolvedLinks2[0],variant:\"OMvjCXt6L\",width:\"100%\",wTN5vFwBa:{borderColor:'var(--token-17156bee-bef5-413c-9e74-8c35efc3654d, rgb(196, 198, 207)) /* {\"name\":\"outline-variant\"} */',borderStyle:\"solid\",borderWidth:1},xJmvZ95qr:{borderColor:'var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167)) /* {\"name\":\"primary\"} */',borderStyle:\"solid\",borderWidth:1}})})})});}}),visible8&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":qf1a2DNae\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{hash:\":qf1a2DNae\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{hash:\":qf1a2DNae\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hhl3pz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{ulDDb2E9s:resolvedLinks3[1]},wchqfi5Zg:{ulDDb2E9s:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(BTKChip,{aGgetsZcF:\"var(--token-8cad37ef-3a3f-4dad-994e-51a3add7be6e, rgb(233, 231, 235))\",AMcbmuyNR:(_getLocalizedValue=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"200 Lt.\",e_y4kqTc_:\"var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113))\",height:\"100%\",id:\"bgqyh2CNd\",jMdnAOK9d:false,layoutId:\"bgqyh2CNd\",Mso3gieoE:false,rAyiuf5vJ:\"var(--token-a95e4b89-6e82-4ea6-94e0-51eacce68efc, rgba(39, 94, 167, 0.15))\",sAQKPP5E0:\"StarFour\",ulDDb2E9s:resolvedLinks3[0],variant:\"OMvjCXt6L\",width:\"100%\",wTN5vFwBa:{borderColor:'var(--token-17156bee-bef5-413c-9e74-8c35efc3654d, rgb(196, 198, 207)) /* {\"name\":\"outline-variant\"} */',borderStyle:\"solid\",borderWidth:1},xJmvZ95qr:{borderColor:'var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167)) /* {\"name\":\"primary\"} */',borderStyle:\"solid\",borderWidth:1}})})})});}}),visible9&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":NC2CbT4pb\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{hash:\":NC2CbT4pb\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{hash:\":NC2CbT4pb\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rx3vc0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{ulDDb2E9s:resolvedLinks4[1]},wchqfi5Zg:{ulDDb2E9s:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(BTKChip,{aGgetsZcF:\"var(--token-8cad37ef-3a3f-4dad-994e-51a3add7be6e, rgb(233, 231, 235))\",AMcbmuyNR:(_getLocalizedValue=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"1,000 Lt.\",e_y4kqTc_:\"var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113))\",height:\"100%\",id:\"ke5zLRLFD\",jMdnAOK9d:false,layoutId:\"ke5zLRLFD\",Mso3gieoE:false,rAyiuf5vJ:\"var(--token-a95e4b89-6e82-4ea6-94e0-51eacce68efc, rgba(39, 94, 167, 0.15))\",sAQKPP5E0:\"StarFour\",ulDDb2E9s:resolvedLinks4[0],variant:\"OMvjCXt6L\",width:\"100%\",wTN5vFwBa:{borderColor:'var(--token-17156bee-bef5-413c-9e74-8c35efc3654d, rgb(196, 198, 207)) /* {\"name\":\"outline-variant\"} */',borderStyle:\"solid\",borderWidth:1},xJmvZ95qr:{borderColor:'var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167)) /* {\"name\":\"primary\"} */',borderStyle:\"solid\",borderWidth:1}})})})});}}),visible10&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":oI2k3q3Zb\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{hash:\":oI2k3q3Zb\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{hash:\":oI2k3q3Zb\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hx7wbv-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{ulDDb2E9s:resolvedLinks5[1]},wchqfi5Zg:{ulDDb2E9s:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(BTKChip,{aGgetsZcF:\"var(--token-8cad37ef-3a3f-4dad-994e-51a3add7be6e, rgb(233, 231, 235))\",AMcbmuyNR:(_getLocalizedValue=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Granel\",e_y4kqTc_:\"var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113))\",height:\"100%\",id:\"sfPeLAMZ3\",jMdnAOK9d:false,layoutId:\"sfPeLAMZ3\",Mso3gieoE:false,rAyiuf5vJ:\"var(--token-a95e4b89-6e82-4ea6-94e0-51eacce68efc, rgba(39, 94, 167, 0.15))\",sAQKPP5E0:\"StarFour\",ulDDb2E9s:resolvedLinks5[0],variant:\"OMvjCXt6L\",width:\"100%\",wTN5vFwBa:{borderColor:'var(--token-17156bee-bef5-413c-9e74-8c35efc3654d, rgb(196, 198, 207)) /* {\"name\":\"outline-variant\"} */',borderStyle:\"solid\",borderWidth:1},xJmvZ95qr:{borderColor:'var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167)) /* {\"name\":\"primary\"} */',borderStyle:\"solid\",borderWidth:1}})})})});}})]})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1ijaajl\",\"data-framer-appear-id\":\"1ijaajl\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1algbuk\",\"data-framer-appear-id\":\"1algbuk\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{children:(_getLocalizedValue18=getLocalizedValue(\"v22\",activeLocale))!==null&&_getLocalizedValue18!==void 0?_getLocalizedValue18:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113))\"},children:\"Protocolos en los que se utiliza\"})})},wchqfi5Zg:{children:(_getLocalizedValue19=getLocalizedValue(\"v23\",activeLocale))!==null&&_getLocalizedValue19!==void 0?_getLocalizedValue19:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113))\"},children:\"Protocolos en los que se utiliza\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue20=getLocalizedValue(\"v21\",activeLocale))!==null&&_getLocalizedValue20!==void 0?_getLocalizedValue20:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113))\"},children:\"Protocolos en los que se utiliza\"})}),className:\"framer-3i1jh1\",\"data-framer-name\":\"Font\",fonts:[\"GF;Montserrat-500\"],name:\"Font\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-176kc8o\",children:[UVjHLv96K&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":w7ftV6WtL\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{hash:\":w7ftV6WtL\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{hash:\":w7ftV6WtL\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c2q37y-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{ulDDb2E9s:resolvedLinks6[1]},wchqfi5Zg:{ulDDb2E9s:resolvedLinks6[2]}},children:/*#__PURE__*/_jsx(BTKChip,{aGgetsZcF:\"var(--token-15720aed-8434-409d-b39d-48f17d4c816a, rgb(194, 239, 173))\",AMcbmuyNR:(_getLocalizedValue=getLocalizedValue(\"v24\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Recuperaci\\xf3n de suelo\",e_y4kqTc_:\"var(--token-124f0357-6d7d-411d-a2af-7c4e60d53d9f, rgb(3, 33, 0))\",height:\"100%\",id:\"F0eNQ8kv3\",jMdnAOK9d:false,layoutId:\"F0eNQ8kv3\",Mso3gieoE:true,rAyiuf5vJ:\"var(--token-15720aed-8434-409d-b39d-48f17d4c816a, rgba(194, 239, 173, 0.6))\",sAQKPP5E0:\"FirstAidKit\",ulDDb2E9s:resolvedLinks6[0],variant:\"OMvjCXt6L\",width:\"100%\",wTN5vFwBa:{borderColor:'var(--token-17156bee-bef5-413c-9e74-8c35efc3654d, rgb(196, 198, 207)) /* {\"name\":\"outline-variant\"} */',borderStyle:\"solid\",borderWidth:0},xJmvZ95qr:{borderColor:'var(--token-64a43a0c-a423-4243-847e-83861b10109c, rgb(66, 104, 52)) /* {\"name\":\"soil-recovery\"} */',borderStyle:\"solid\",borderWidth:1}})})})});}}),pyu6yYSqi&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":dhLFXTKOO\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{hash:\":dhLFXTKOO\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{hash:\":dhLFXTKOO\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ulvn9n-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{ulDDb2E9s:resolvedLinks7[1]},wchqfi5Zg:{ulDDb2E9s:resolvedLinks7[2]}},children:/*#__PURE__*/_jsx(BTKChip,{aGgetsZcF:\"var(--token-5483056d-13dc-4584-a952-51c1d8c9223a, rgb(157, 240, 248))\",AMcbmuyNR:(_getLocalizedValue=getLocalizedValue(\"v25\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Antiestr\\xe9s\",e_y4kqTc_:\"var(--token-0196fafe-50ae-43d6-ace1-897d5cf17f67, rgb(0, 32, 34))\",height:\"100%\",id:\"IPIqUBtXF\",jMdnAOK9d:false,layoutId:\"IPIqUBtXF\",Mso3gieoE:true,rAyiuf5vJ:\"var(--token-5483056d-13dc-4584-a952-51c1d8c9223a, rgb(157, 240, 248))\",sAQKPP5E0:\"FlowerLotus\",ulDDb2E9s:resolvedLinks7[0],variant:\"OMvjCXt6L\",width:\"100%\",wTN5vFwBa:{borderColor:'var(--token-9a93e2f2-f6e7-4e1f-a065-db69505f6049, rgb(111, 236, 247)) /* {\"name\":\"antistress\"} */',borderStyle:\"solid\",borderWidth:0},xJmvZ95qr:{borderColor:'var(--token-9a93e2f2-f6e7-4e1f-a065-db69505f6049, rgb(111, 236, 247)) /* {\"name\":\"antistress\"} */',borderStyle:\"solid\",borderWidth:1}})})})});}}),visible11&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r94v1s-container\",children:/*#__PURE__*/_jsx(BTKChip,{aGgetsZcF:\"var(--token-8cad37ef-3a3f-4dad-994e-51a3add7be6e, rgb(233, 231, 235))\",AMcbmuyNR:(_getLocalizedValue21=getLocalizedValue(\"v26\",activeLocale))!==null&&_getLocalizedValue21!==void 0?_getLocalizedValue21:\"Sin protocolos\",e_y4kqTc_:\"var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113))\",height:\"100%\",id:\"h3qUl2loJ\",jMdnAOK9d:false,layoutId:\"h3qUl2loJ\",Mso3gieoE:true,rAyiuf5vJ:\"var(--token-a95e4b89-6e82-4ea6-94e0-51eacce68efc, rgba(39, 94, 167, 0.15))\",sAQKPP5E0:\"X\",variant:\"OMvjCXt6L\",width:\"100%\",wTN5vFwBa:{borderColor:'var(--token-17156bee-bef5-413c-9e74-8c35efc3654d, rgb(196, 198, 207)) /* {\"name\":\"outline-variant\"} */',borderStyle:\"solid\",borderWidth:1},xJmvZ95qr:{borderColor:'var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167)) /* {\"name\":\"primary\"} */',borderStyle:\"solid\",borderWidth:1}})})}),visible11&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kptLX_280\"},implicitPathVariables:undefined},{href:{webPageId:\"kptLX_280\"},implicitPathVariables:undefined},{href:{webPageId:\"kptLX_280\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oo3mdz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{ulDDb2E9s:resolvedLinks8[1]},wchqfi5Zg:{ulDDb2E9s:resolvedLinks8[2]}},children:/*#__PURE__*/_jsx(BTKChip,{aGgetsZcF:\"var(--token-3636223f-35c8-4a2e-bbcb-8f7f8e7c26ec, rgb(217, 227, 248))\",AMcbmuyNR:(_getLocalizedValue=getLocalizedValue(\"v27\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Ver protocolos de Nutrici\\xf3n\",e_y4kqTc_:\"var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113))\",height:\"100%\",id:\"xBqOukOQn\",jMdnAOK9d:false,layoutId:\"xBqOukOQn\",Mso3gieoE:true,rAyiuf5vJ:\"var(--token-3636223f-35c8-4a2e-bbcb-8f7f8e7c26ec, rgb(217, 227, 248))\",sAQKPP5E0:\"Plant\",ulDDb2E9s:resolvedLinks8[0],variant:\"le9UpNbwg\",width:\"100%\",wTN5vFwBa:{borderColor:'var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113)) /* {\"name\":\"secondary\"} */',borderStyle:\"solid\",borderWidth:0},xJmvZ95qr:{borderColor:'var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113)) /* {\"name\":\"secondary\"} */',borderStyle:\"solid\",borderWidth:1}})})})});}}),b5zoo1Z4I&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":SCQyvxUG8\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{hash:\":SCQyvxUG8\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{hash:\":SCQyvxUG8\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gyzn22-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{ulDDb2E9s:resolvedLinks9[1]},wchqfi5Zg:{ulDDb2E9s:resolvedLinks9[2]}},children:/*#__PURE__*/_jsx(BTKChip,{aGgetsZcF:\"var(--token-24d29480-7445-4fdf-9e94-f087f88766c6, rgb(255, 214, 253))\",AMcbmuyNR:(_getLocalizedValue=getLocalizedValue(\"v28\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Floraci\\xf3n \",e_y4kqTc_:\"var(--token-7f176d7c-3708-4b43-917b-c0e9a6346dbd, rgb(49, 9, 55))\",height:\"100%\",id:\"BhwuaGuwU\",jMdnAOK9d:false,layoutId:\"BhwuaGuwU\",Mso3gieoE:true,rAyiuf5vJ:\"var(--token-24d29480-7445-4fdf-9e94-f087f88766c6, rgba(255, 214, 253, 0.6))\",sAQKPP5E0:\"Flower\",ulDDb2E9s:resolvedLinks9[0],variant:\"OMvjCXt6L\",width:\"100%\",wTN5vFwBa:{borderColor:'var(--token-60dc6b20-60e1-4716-8529-5b1b9ba7daa0, rgb(124, 78, 127)) /* {\"name\":\"flowering\"} */',borderStyle:\"solid\",borderWidth:0},xJmvZ95qr:{borderColor:'var(--token-60dc6b20-60e1-4716-8529-5b1b9ba7daa0, rgb(124, 78, 127)) /* {\"name\":\"flowering\"} */',borderStyle:\"solid\",borderWidth:1}})})})});}}),CR3A2F4j3&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":ReD0Z8Ymi\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{hash:\":ReD0Z8Ymi\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{hash:\":ReD0Z8Ymi\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-121ee6l-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{ulDDb2E9s:resolvedLinks10[1]},wchqfi5Zg:{ulDDb2E9s:resolvedLinks10[2]}},children:/*#__PURE__*/_jsx(BTKChip,{aGgetsZcF:\"var(--token-77397f57-6b97-426e-aca7-27f2c8a0914e, rgb(248, 226, 135))\",AMcbmuyNR:(_getLocalizedValue=getLocalizedValue(\"v29\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Polinizaci\\xf3n\",e_y4kqTc_:\"var(--token-35159f1c-1e7b-4c9f-a328-83c7a614d150, rgb(34, 27, 0))\",height:\"100%\",id:\"H9gsbHHup\",jMdnAOK9d:false,layoutId:\"H9gsbHHup\",Mso3gieoE:true,rAyiuf5vJ:\"var(--token-77397f57-6b97-426e-aca7-27f2c8a0914e, rgba(248, 226, 135, 0.6))\",sAQKPP5E0:\"DotsNine\",ulDDb2E9s:resolvedLinks10[0],variant:\"OMvjCXt6L\",width:\"100%\",wTN5vFwBa:{borderColor:'var(--token-d401efe2-3ff9-4591-8512-7cf742f7de29, rgb(237, 206, 83)) /* {\"name\":\"pollination\"} */',borderStyle:\"solid\",borderWidth:0},xJmvZ95qr:{borderColor:'var(--token-d401efe2-3ff9-4591-8512-7cf742f7de29, rgb(237, 206, 83)) /* {\"name\":\"pollination\"} */',borderStyle:\"solid\",borderWidth:1}})})})});}}),UrdELWoUY&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Gvtq60wNi\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{hash:\":Gvtq60wNi\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{hash:\":Gvtq60wNi\",pathVariables:{BHZA8Ym30},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-czwy2n-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{ulDDb2E9s:resolvedLinks11[1]},wchqfi5Zg:{ulDDb2E9s:resolvedLinks11[2]}},children:/*#__PURE__*/_jsx(BTKChip,{aGgetsZcF:\"var(--token-a80f882d-7ecd-4418-85c1-1a037b8934cd, rgb(194, 239, 173))\",AMcbmuyNR:(_getLocalizedValue=getLocalizedValue(\"v30\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Llenado de Fruto\",e_y4kqTc_:\"var(--token-a174b37e-2b15-4c74-a096-95cd03c13c3b, rgb(3, 33, 0))\",height:\"100%\",id:\"jCBaXAj6n\",jMdnAOK9d:false,layoutId:\"jCBaXAj6n\",Mso3gieoE:true,rAyiuf5vJ:\"var(--token-a80f882d-7ecd-4418-85c1-1a037b8934cd, rgba(255, 218, 216, 0.6))\",sAQKPP5E0:\"StarFour\",ulDDb2E9s:resolvedLinks11[0],variant:\"OMvjCXt6L\",width:\"100%\",wTN5vFwBa:{borderColor:'var(--token-99f8e4e4-5aab-4ed2-9d56-c689d645ff9d, rgb(144, 74, 73)) /* {\"name\":\"fruit-filling\"} */',borderStyle:\"solid\",borderWidth:0},xJmvZ95qr:{borderColor:'var(--token-99f8e4e4-5aab-4ed2-9d56-c689d645ff9d, rgb(144, 74, 73)) /* {\"name\":\"fruit-filling\"} */',borderStyle:\"solid\",borderWidth:1}})})})});}})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{width:\"min(max((min(90vw, 1200px) - 32px) / 2, 1px), 480px)\"},wchqfi5Zg:{width:\"calc(min(90vw, 1200px) - 32px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"min(max((min(90vw, 1200px) - 54px) / 2, 1px), 480px)\",children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation9,className:\"framer-13gz25c-container\",\"data-framer-appear-id\":\"13gz25c\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(MainButton,{height:\"100%\",id:\"UY3wBYK7w\",layoutId:\"UY3wBYK7w\",mRNgJRAOf:\"https://bioteksa.atlassian.net/servicedesk/customer/portal/7\",r0KHO8k_2:\"ShoppingCartSimple\",style:{height:\"100%\",width:\"100%\"},tFunZcLax:(_getLocalizedValue22=getLocalizedValue(\"v31\",activeLocale))!==null&&_getLocalizedValue22!==void 0?_getLocalizedValue22:\"Cotiza aqu\\xed\",variant:\"MbP4Ibuzv\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10kybzd\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{width:\"min(max((min(90vw, 1200px) - 32px) / 2, 1px), 480px)\"},wchqfi5Zg:{width:\"calc(min(90vw, 1200px) - 32px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:53,width:\"min(max((min(90vw, 1200px) - 54px) / 2, 1px), 480px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ok5i1z-container\",children:/*#__PURE__*/_jsx(Dropdown,{height:\"100%\",id:\"aLEvARf9l\",iiMdOSMZJ:PBOvU7vUl,J7G7EXb9i:\"Atom\",layoutId:\"aLEvARf9l\",style:{width:\"100%\"},variant:\"Cvg7e3DL8\",W88zB8mIG:toString(convertFromEnum6(activeLocale===null||activeLocale===void 0?void 0:activeLocale.id,activeLocale)),width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{width:\"min(max((min(90vw, 1200px) - 32px) / 2, 1px), 480px)\"},wchqfi5Zg:{width:\"calc(min(90vw, 1200px) - 32px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:53,width:\"min(max((min(90vw, 1200px) - 54px) / 2, 1px), 480px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-10mi0yh-container\",children:/*#__PURE__*/_jsx(Dropdown,{height:\"100%\",id:\"Zcks6QwcX\",iiMdOSMZJ:h8mqRWKaJ,J7G7EXb9i:\"ListChecks\",layoutId:\"Zcks6QwcX\",style:{width:\"100%\"},variant:\"oafh41zIN\",W88zB8mIG:toString(convertFromEnum7(activeLocale===null||activeLocale===void 0?void 0:activeLocale.id,activeLocale)),width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromEnum8(activeLocale===null||activeLocale===void 0?void 0:activeLocale.id,activeLocale,{zu9V9w57k,fMv7e0O0g}),implicitPathVariables:undefined},{href:convertFromEnum8(activeLocale===null||activeLocale===void 0?void 0:activeLocale.id,activeLocale,{zu9V9w57k,fMv7e0O0g}),implicitPathVariables:undefined},{href:convertFromEnum8(activeLocale===null||activeLocale===void 0?void 0:activeLocale.id,activeLocale,{zu9V9w57k,fMv7e0O0g}),implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{width:\"min(max((min(90vw, 1200px) - 32px) / 2, 1px), 480px)\"},wchqfi5Zg:{width:\"calc(min(90vw, 1200px) - 32px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:53,width:\"min(max((min(90vw, 1200px) - 54px) / 2, 1px), 480px)\",children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1em0axt-container\",\"data-framer-appear-id\":\"1em0axt\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{snewGjd9G:resolvedLinks12[1]},wchqfi5Zg:{snewGjd9G:resolvedLinks12[2]}},children:/*#__PURE__*/_jsx(BTKDownloadFile,{height:\"100%\",id:\"nFCnFF0XG\",Js5Czaztf:\"Link\",ko_tw_qVF:(_getLocalizedValue=getLocalizedValue(\"v32\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Ficha t\\xe9cnica\",layoutId:\"nFCnFF0XG\",RYxCQW8QV:\"FilePdf\",snewGjd9G:resolvedLinks12[0],style:{width:\"100%\"},variant:\"zW0Ylhkr3\",width:\"100%\"})})})})});}}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromEnum9(activeLocale===null||activeLocale===void 0?void 0:activeLocale.id,activeLocale,{HVIhzcu19,cZy4s4aT_}),implicitPathVariables:undefined},{href:convertFromEnum9(activeLocale===null||activeLocale===void 0?void 0:activeLocale.id,activeLocale,{HVIhzcu19,cZy4s4aT_}),implicitPathVariables:undefined},{href:convertFromEnum9(activeLocale===null||activeLocale===void 0?void 0:activeLocale.id,activeLocale,{HVIhzcu19,cZy4s4aT_}),implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{width:\"min(max((min(90vw, 1200px) - 32px) / 2, 1px), 480px)\"},wchqfi5Zg:{width:\"calc(min(90vw, 1200px) - 32px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:53,width:\"min(max((min(90vw, 1200px) - 54px) / 2, 1px), 480px)\",children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-5fll45-container\",\"data-framer-appear-id\":\"5fll45\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{snewGjd9G:resolvedLinks13[1]},wchqfi5Zg:{snewGjd9G:resolvedLinks13[2]}},children:/*#__PURE__*/_jsx(BTKDownloadFile,{height:\"100%\",id:\"pVOPNuikx\",Js5Czaztf:\"Link\",ko_tw_qVF:(_getLocalizedValue=getLocalizedValue(\"v33\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Ficha de seguridad\",layoutId:\"pVOPNuikx\",RYxCQW8QV:\"FilePdf\",snewGjd9G:resolvedLinks13[0],style:{width:\"100%\"},variant:\"zW0Ylhkr3\",width:\"100%\"})})})})});}}),visible2&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:hiaO9smiQ,implicitPathVariables:undefined},{href:hiaO9smiQ,implicitPathVariables:undefined},{href:hiaO9smiQ,implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{width:\"min(max((min(90vw, 1200px) - 32px) / 2, 1px), 480px)\"},wchqfi5Zg:{width:\"calc(min(90vw, 1200px) - 32px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:53,width:\"min(max((min(90vw, 1200px) - 54px) / 2, 1px), 480px)\",children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1mlceaa-container\",\"data-framer-appear-id\":\"1mlceaa\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{snewGjd9G:resolvedLinks14[1]},wchqfi5Zg:{snewGjd9G:resolvedLinks14[2]}},children:/*#__PURE__*/_jsx(BTKDownloadFile,{height:\"100%\",id:\"Gs8cHsjot\",Js5Czaztf:\"Link\",ko_tw_qVF:(_getLocalizedValue=getLocalizedValue(\"v34\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Registro COFEPRIS\",layoutId:\"Gs8cHsjot\",RYxCQW8QV:\"FilePdf\",snewGjd9G:resolvedLinks14[0],style:{width:\"100%\"},variant:\"zW0Ylhkr3\",width:\"100%\"})})})})});}})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-lxkfmg\",\"data-framer-name\":\"BTK/ scroll container\",name:\"BTK/ scroll container\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"370px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vqosh7-container hidden-k5fr4d\",children:/*#__PURE__*/_jsx(ProductFeatureCardsWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref3,target:\"Yc9IpZUS3\"},{ref:ref4,target:\"DK6g9CgZW\"},{ref:ref5,target:\"minZ__7GB\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"A2BwAhwpJ\",layoutId:\"A2BwAhwpJ\",MNW8f0i8C:addImageAlt({src:\"https://framerusercontent.com/images/dYu3kMLaWSnlU2VznbwGQbGCtQ.jpg\",srcSet:\"https://framerusercontent.com/images/dYu3kMLaWSnlU2VznbwGQbGCtQ.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/dYu3kMLaWSnlU2VznbwGQbGCtQ.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/dYu3kMLaWSnlU2VznbwGQbGCtQ.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/dYu3kMLaWSnlU2VznbwGQbGCtQ.jpg 3456w\"},\"\"),OXEGka7QR:addImageAlt({src:\"https://framerusercontent.com/images/doTgWRKWedo1sUrIt0i2DBNcgi8.jpg\",srcSet:\"https://framerusercontent.com/images/doTgWRKWedo1sUrIt0i2DBNcgi8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/doTgWRKWedo1sUrIt0i2DBNcgi8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/doTgWRKWedo1sUrIt0i2DBNcgi8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/doTgWRKWedo1sUrIt0i2DBNcgi8.jpg 4000w\"},\"\"),style:{height:\"100%\",width:\"100%\"},TdmR1pQcH:addImageAlt({src:\"https://framerusercontent.com/images/2DZ0L7BC3bNHI05y0OS7iqFImA.jpg\",srcSet:\"https://framerusercontent.com/images/2DZ0L7BC3bNHI05y0OS7iqFImA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2DZ0L7BC3bNHI05y0OS7iqFImA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2DZ0L7BC3bNHI05y0OS7iqFImA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/2DZ0L7BC3bNHI05y0OS7iqFImA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/2DZ0L7BC3bNHI05y0OS7iqFImA.jpg 6000w\"},\"\"),variant:\"Yc9IpZUS3\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h3ddmd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1in2uj8\",\"data-framer-name\":\"items container\",id:elementId1,name:\"items container\",ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bj7ywk\",\"data-framer-name\":\"logo\",name:\"logo\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qtubqb-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-250570a5-1523-40f6-9c4c-a263883e5fcd, rgb(255, 255, 255))\",height:\"100%\",iconSearch:(_getLocalizedValue23=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue23!==void 0?_getLocalizedValue23:\"House\",iconSelection:\"Plant\",id:\"nR_cBxXLu\",layoutId:\"nR_cBxXLu\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15h66zf\",\"data-framer-name\":\"title\",name:\"title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-i4wtqk\",\"data-styles-preset\":\"pKhxVF0uy\",style:{\"--framer-text-color\":\"var(--token-adfe63c2-e614-4b94-a8f0-f0d65c195294, rgb(111, 86, 117))\"},children:\"NUBIOTEK\\xae HYPER ZN\"})}),className:\"framer-16o2erq\",\"data-framer-name\":\"Founders reviews\",fonts:[\"Inter\"],name:\"Founders reviews\",text:LeMjBkh4u,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue24=getLocalizedValue(\"v35\",activeLocale))!==null&&_getLocalizedValue24!==void 0?_getLocalizedValue24:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",children:\"Beneficios para la planta\"})}),className:\"framer-9v2thy\",\"data-framer-name\":\"Easy to customize and instantly downloadable,\",fonts:[\"Inter\"],name:\"Easy to customize and instantly downloadable,\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"kWyObkcbT\"],\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"n1fkI0ztE\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"hOs0PamKG\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:SrAMZK3G5,className:\"framer-1rdlk23\",\"data-framer-name\":\"Easy to customize and instantly downloadable, these mockups are perfect for showcasing your app or website in a realistic, professional setting.\",fonts:[\"Inter\"],name:\"Easy to customize and instantly downloadable, these mockups are perfect for showcasing your app or website in a realistic, professional setting.\",stylesPresetsClassNames:{a:\"framer-styles-preset-1a15id\",blockquote:\"framer-styles-preset-ojbp2z\",code:\"framer-styles-preset-1sn5zq6\",h1:\"framer-styles-preset-19s1ey5\",h2:\"framer-styles-preset-atp56u\",h3:\"framer-styles-preset-ur963b\",h4:\"framer-styles-preset-61fnkj\",h5:\"framer-styles-preset-20idwh\",h6:\"framer-styles-preset-i4wtqk\",img:\"framer-styles-preset-1gi8y24\",p:\"framer-styles-preset-gqt8v7\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible12&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uaz8n1\",\"data-framer-name\":\"items container\",id:elementId2,name:\"items container\",ref:ref4,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fhj9an\",\"data-framer-name\":\"logo\",name:\"logo\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8e7dae-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-250570a5-1523-40f6-9c4c-a263883e5fcd, rgb(255, 255, 255))\",height:\"100%\",iconSearch:(_getLocalizedValue25=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue25!==void 0?_getLocalizedValue25:\"House\",iconSelection:\"Mountains\",id:\"zjLnJOvV9\",layoutId:\"zjLnJOvV9\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7pxqgc\",\"data-framer-name\":\"title\",name:\"title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-i4wtqk\",\"data-styles-preset\":\"pKhxVF0uy\",style:{\"--framer-text-color\":\"var(--token-adfe63c2-e614-4b94-a8f0-f0d65c195294, rgb(111, 86, 117))\"},children:\"NUBIOTEK\\xae HYPER ZN\"})}),className:\"framer-qxzbde\",\"data-framer-name\":\"Founders reviews\",fonts:[\"Inter\"],name:\"Founders reviews\",text:LeMjBkh4u,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue26=getLocalizedValue(\"v36\",activeLocale))!==null&&_getLocalizedValue26!==void 0?_getLocalizedValue26:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",children:\"Beneficios para el suelo\"})}),className:\"framer-1cy7fjo\",\"data-framer-name\":\"Easy to customize and instantly downloadable,\",fonts:[\"Inter\"],name:\"Easy to customize and instantly downloadable,\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"kWyObkcbT\"],\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"n1fkI0ztE\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"hOs0PamKG\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:zTtE93E5I,className:\"framer-2q021w\",\"data-framer-name\":\"Easy to customize and instantly downloadable, these mockups are perfect for showcasing your app or website in a realistic, professional setting.\",fonts:[\"Inter\"],name:\"Easy to customize and instantly downloadable, these mockups are perfect for showcasing your app or website in a realistic, professional setting.\",stylesPresetsClassNames:{a:\"framer-styles-preset-1a15id\",blockquote:\"framer-styles-preset-ojbp2z\",code:\"framer-styles-preset-1sn5zq6\",h1:\"framer-styles-preset-19s1ey5\",h2:\"framer-styles-preset-atp56u\",h3:\"framer-styles-preset-ur963b\",h4:\"framer-styles-preset-61fnkj\",h5:\"framer-styles-preset-20idwh\",h6:\"framer-styles-preset-i4wtqk\",img:\"framer-styles-preset-1gi8y24\",p:\"framer-styles-preset-gqt8v7\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5928il\",\"data-framer-name\":\"items container\",id:elementId3,name:\"items container\",ref:ref5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14hwif8\",\"data-framer-name\":\"logo\",name:\"logo\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qmwhik-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-250570a5-1523-40f6-9c4c-a263883e5fcd, rgb(255, 255, 255))\",height:\"100%\",iconSearch:(_getLocalizedValue27=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue27!==void 0?_getLocalizedValue27:\"House\",iconSelection:\"Flask\",id:\"UqbJzbGQR\",layoutId:\"UqbJzbGQR\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17dzmuk\",\"data-framer-name\":\"title\",name:\"title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-i4wtqk\",\"data-styles-preset\":\"pKhxVF0uy\",style:{\"--framer-text-color\":\"var(--token-adfe63c2-e614-4b94-a8f0-f0d65c195294, rgb(111, 86, 117))\"},children:\"NUBIOTEK\\xae HYPER ZN\"})}),className:\"framer-mijpxk\",\"data-framer-name\":\"Founders reviews\",fonts:[\"Inter\"],name:\"Founders reviews\",text:LeMjBkh4u,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue28=getLocalizedValue(\"v37\",activeLocale))!==null&&_getLocalizedValue28!==void 0?_getLocalizedValue28:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",children:\"Nutrientes incluidos\"})}),className:\"framer-ora43j\",\"data-framer-name\":\"Easy to customize and instantly downloadable,\",fonts:[\"Inter\"],name:\"Easy to customize and instantly downloadable,\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"kWyObkcbT\"],\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"n1fkI0ztE\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"hOs0PamKG\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:PBOvU7vUl,className:\"framer-1ncluc0\",\"data-framer-name\":\"Easy to customize and instantly downloadable, these mockups are perfect for showcasing your app or website in a realistic, professional setting.\",fonts:[\"Inter\"],name:\"Easy to customize and instantly downloadable, these mockups are perfect for showcasing your app or website in a realistic, professional setting.\",stylesPresetsClassNames:{a:\"framer-styles-preset-1a15id\",blockquote:\"framer-styles-preset-ojbp2z\",code:\"framer-styles-preset-1sn5zq6\",h1:\"framer-styles-preset-19s1ey5\",h2:\"framer-styles-preset-atp56u\",h3:\"framer-styles-preset-ur963b\",h4:\"framer-styles-preset-61fnkj\",h5:\"framer-styles-preset-20idwh\",h6:\"framer-styles-preset-i4wtqk\",img:\"framer-styles-preset-1gi8y24\",p:\"framer-styles-preset-gqt8v7\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-iur0ao\",\"data-framer-name\":\"CTA\",id:elementId4,name:\"CTA\",ref:ref6,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-97z9sr\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17yqc0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-127e9ef\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-i4wtqk\",\"data-styles-preset\":\"pKhxVF0uy\",style:{\"--framer-text-color\":\"var(--token-adfe63c2-e614-4b94-a8f0-f0d65c195294, rgb(111, 86, 117))\"},children:\"NUBIOTEK\\xae HYPER ZN\"})}),className:\"framer-53gdmi\",\"data-framer-name\":\"Founders reviews\",fonts:[\"Inter\"],name:\"Founders reviews\",text:LeMjBkh4u,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue29=getLocalizedValue(\"v38\",activeLocale))!==null&&_getLocalizedValue29!==void 0?_getLocalizedValue29:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-alignment\":\"left\"},children:\"Precios\"})}),className:\"framer-1ek0ho6\",\"data-framer-name\":\"Font\",fonts:[\"Inter\"],name:\"Font\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wchqfi5Zg:{width:\"min(min(90vw, 1200px), 351px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation9,className:\"framer-1s3v3qt-container\",\"data-framer-appear-id\":\"1s3v3qt\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(MainButton,{height:\"100%\",id:\"ZrAxRtpsZ\",layoutId:\"ZrAxRtpsZ\",mRNgJRAOf:\"https://bioteksa.atlassian.net/servicedesk/customer/portal/7\",r0KHO8k_2:\"ShoppingCartSimple\",style:{width:\"100%\"},tFunZcLax:(_getLocalizedValue30=getLocalizedValue(\"v31\",activeLocale))!==null&&_getLocalizedValue30!==void 0?_getLocalizedValue30:\"Cotiza aqu\\xed\",variant:\"MbP4Ibuzv\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3ed3oj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{width:\"364px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:262,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pme4sm-container\",id:elementId5,ref:ref7,children:/*#__PURE__*/_jsx(BTKProductCard,{b3XhJXWHc:LeMjBkh4u,CqXepztG8:(_getLocalizedValue31=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue31!==void 0?_getLocalizedValue31:\"1 Lt.\",eIDTCCbFG:UEHv686jw,height:\"100%\",id:\"BCqzjKmSM\",JKMDVHmuD:wEZ3WTX1R,layoutId:\"BCqzjKmSM\",M8b9yUOFa:\"https://bioteksa.atlassian.net/servicedesk/customer/portal/7\",moJpa9fOL:toResponsiveImage(BkA7imhWE),style:{height:\"100%\",width:\"100%\"},variant:\"cOgd5cPD_\",VXSpRY0gq:\"GasCan\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{width:\"364px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:262,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vc6o1y-container\",id:elementId6,ref:ref8,children:/*#__PURE__*/_jsx(BTKProductCard,{b3XhJXWHc:LeMjBkh4u,CqXepztG8:(_getLocalizedValue32=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue32!==void 0?_getLocalizedValue32:\"5 Lt.\",eIDTCCbFG:WSTpJNSAN,height:\"100%\",id:\"mn7554554\",JKMDVHmuD:g2mJm5iRD,layoutId:\"mn7554554\",M8b9yUOFa:\"https://bioteksa.atlassian.net/servicedesk/customer/portal/7\",moJpa9fOL:toResponsiveImage(QBz_MVDyv),style:{height:\"100%\",width:\"100%\"},variant:\"cOgd5cPD_\",VXSpRY0gq:\"GasCan\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{width:\"364px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:262,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qv6ctb-container\",id:elementId7,ref:ref9,children:/*#__PURE__*/_jsx(BTKProductCard,{b3XhJXWHc:LeMjBkh4u,CqXepztG8:(_getLocalizedValue33=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue33!==void 0?_getLocalizedValue33:\"20 Lt.\",eIDTCCbFG:SVsqQEpxs,height:\"100%\",id:\"jgH_OiX5x\",JKMDVHmuD:efZDbfNxr,layoutId:\"jgH_OiX5x\",M8b9yUOFa:\"https://bioteksa.atlassian.net/servicedesk/customer/portal/7\",moJpa9fOL:toResponsiveImage(zzJBLdR5S),style:{height:\"100%\",width:\"100%\"},variant:\"cOgd5cPD_\",VXSpRY0gq:\"GasCan\",width:\"100%\"})})})}),visible13&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{width:\"364px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:262,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bbjqtc-container\",id:elementId8,ref:ref10,children:/*#__PURE__*/_jsx(BTKProductCard,{b3XhJXWHc:LeMjBkh4u,CqXepztG8:(_getLocalizedValue34=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue34!==void 0?_getLocalizedValue34:\"200 Lt.\",eIDTCCbFG:UoF8oPhIp,height:\"100%\",id:\"qf1a2DNae\",JKMDVHmuD:swtF1AOZw,layoutId:\"qf1a2DNae\",M8b9yUOFa:\"https://bioteksa.atlassian.net/servicedesk/customer/portal/7\",moJpa9fOL:toResponsiveImage(zzJBLdR5S),style:{height:\"100%\",width:\"100%\"},variant:\"u8e7PMVA7\",VXSpRY0gq:\"GasCan\",width:\"100%\"})})})}),visible13&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{width:\"364px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:262,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tsels1-container\",id:elementId9,ref:ref11,children:/*#__PURE__*/_jsx(BTKProductCard,{b3XhJXWHc:LeMjBkh4u,CqXepztG8:(_getLocalizedValue35=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue35!==void 0?_getLocalizedValue35:\"1,000 Lt.\",eIDTCCbFG:QNCodQCQZ,height:\"100%\",id:\"NC2CbT4pb\",JKMDVHmuD:IKLiUiNzk,layoutId:\"NC2CbT4pb\",M8b9yUOFa:\"https://bioteksa.atlassian.net/servicedesk/customer/portal/7\",moJpa9fOL:toResponsiveImage(zzJBLdR5S),style:{height:\"100%\",width:\"100%\"},variant:\"u8e7PMVA7\",VXSpRY0gq:\"GasCan\",width:\"100%\"})})})}),visible13&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{width:\"364px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:262,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pwstyc-container\",id:elementId10,ref:ref12,children:/*#__PURE__*/_jsx(BTKProductCard,{b3XhJXWHc:LeMjBkh4u,CqXepztG8:\"A granel* Por Lt.\",eIDTCCbFG:pPvJwFuW1,height:\"100%\",id:\"oI2k3q3Zb\",JKMDVHmuD:rCPch4VSQ,layoutId:\"oI2k3q3Zb\",M8b9yUOFa:\"https://bioteksa.atlassian.net/servicedesk/customer/portal/7\",moJpa9fOL:toResponsiveImage(zzJBLdR5S),style:{height:\"100%\",width:\"100%\"},variant:\"u8e7PMVA7\",VXSpRY0gq:\"GasCan\",width:\"100%\"})})})})]})]})]}),UVjHLv96K&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aasts5\",\"data-framer-name\":\"Soil protocol\",id:elementId11,name:\"Soil protocol\",ref:ref13,children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-13i363q\",\"data-framer-appear-id\":\"13i363q\",\"data-framer-name\":\"Divider\",initial:animation3,name:\"Divider\",optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3zdxep\",\"data-framer-name\":\"Stack\",name:\"Stack\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xvgfzq\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c8e6js\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-60ogof\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kptLX_280\"},implicitPathVariables:undefined},{href:{webPageId:\"kptLX_280\"},implicitPathVariables:undefined},{href:{webPageId:\"kptLX_280\"},implicitPathVariables:undefined}],children:resolvedLinks15=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ewwfd0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{ulDDb2E9s:resolvedLinks15[1]},wchqfi5Zg:{ulDDb2E9s:resolvedLinks15[2]}},children:/*#__PURE__*/_jsx(BTKChip,{aGgetsZcF:\"rgba(0, 0, 0, 0)\",AMcbmuyNR:(_getLocalizedValue=getLocalizedValue(\"v24\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Recuperaci\\xf3n de suelo\",e_y4kqTc_:\"var(--token-f7302d28-815b-4db1-ae23-b9c41b77a5f7, rgb(67, 71, 78))\",height:\"100%\",id:\"KUFnp40Uo\",jMdnAOK9d:false,layoutId:\"KUFnp40Uo\",Mso3gieoE:true,rAyiuf5vJ:\"var(--token-a95e4b89-6e82-4ea6-94e0-51eacce68efc, rgba(39, 94, 167, 0.15))\",sAQKPP5E0:\"FirstAidKit\",ulDDb2E9s:resolvedLinks15[0],variant:\"OMvjCXt6L\",width:\"100%\",wTN5vFwBa:{borderColor:'var(--token-e1eed3be-a86f-40d2-8068-4013dc88b17b, rgb(116, 119, 127)) /* {\"name\":\"outline\"} */',borderStyle:\"solid\",borderWidth:1},xJmvZ95qr:{borderColor:'var(--token-64a43a0c-a423-4243-847e-83861b10109c, rgb(124, 184, 103)) /* {\"name\":\"soil-recovery\"} */',borderStyle:\"solid\",borderWidth:1}})})})});}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tiyiav\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{children:(_getLocalizedValue36=getLocalizedValue(\"v40\",activeLocale))!==null&&_getLocalizedValue36!==void 0?_getLocalizedValue36:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-64a43a0c-a423-4243-847e-83861b10109c, rgb(66, 104, 52))\"},children:\"Productos para recuperaci\\xf3n de suelo\"})})},wchqfi5Zg:{children:(_getLocalizedValue37=getLocalizedValue(\"v40\",activeLocale))!==null&&_getLocalizedValue37!==void 0?_getLocalizedValue37:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-64a43a0c-a423-4243-847e-83861b10109c, rgb(66, 104, 52))\"},children:\"Productos para recuperaci\\xf3n de suelo\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue38=getLocalizedValue(\"v39\",activeLocale))!==null&&_getLocalizedValue38!==void 0?_getLocalizedValue38:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-color\":\"var(--token-64a43a0c-a423-4243-847e-83861b10109c, rgb(66, 104, 52))\"},children:\"Productos para recuperaci\\xf3n de suelo\"})}),className:\"framer-1638v7x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{children:(_getLocalizedValue39=getLocalizedValue(\"v42\",activeLocale))!==null&&_getLocalizedValue39!==void 0?_getLocalizedValue39:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-04b93aaa-6f54-4983-90f7-1dfbceb49636, rgb(26, 27, 30))\"},children:\"Productos que en conjunto logran recuperar el suelo, inducir la floraci\\xf3n, mejorar el llenado de fruto, entre otros.\"})})},wchqfi5Zg:{children:(_getLocalizedValue40=getLocalizedValue(\"v42\",activeLocale))!==null&&_getLocalizedValue40!==void 0?_getLocalizedValue40:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-04b93aaa-6f54-4983-90f7-1dfbceb49636, rgb(26, 27, 30))\"},children:\"Productos que en conjunto logran recuperar el suelo, inducir la floraci\\xf3n, mejorar el llenado de fruto, entre otros.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue41=getLocalizedValue(\"v41\",activeLocale))!==null&&_getLocalizedValue41!==void 0?_getLocalizedValue41:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-color\":\"var(--token-04b93aaa-6f54-4983-90f7-1dfbceb49636, rgb(26, 27, 30))\"},children:\"Productos que en conjunto logran recuperar el suelo, inducir la floraci\\xf3n, mejorar el llenado de fruto, entre otros.\"})}),className:\"framer-hho9v9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wchqfi5Zg:{width:\"min(90vw, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"266px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-19j3sq4-container\",children:/*#__PURE__*/_jsx(BTKButton,{bhhT7Ccf_:\"NavigateNext\",boYY5UeYQ:\"var(--token-8b746d7b-85b1-475d-bdda-49d7afef68f6, rgb(255, 255, 255))\",E93gyQDI7:(_getLocalizedValue42=getLocalizedValue(\"v43\",activeLocale))!==null&&_getLocalizedValue42!==void 0?_getLocalizedValue42:\"Haz tu plan personalizado\",fpONwbWM0:\"Add\",h_vh8pXXa:\"var(--token-d2026326-e259-4197-917a-c9c717d62665, rgb(255, 255, 255))\",height:\"100%\",id:\"szIr1WWzc\",kAPuwbghp:\"Rounded\",layoutId:\"szIr1WWzc\",mTl1MZTly:false,style:{width:\"100%\"},Te5L9h8Qb:\"https://bioteksa.atlassian.net/servicedesk/customer/portal/4/group/4/create/15\",variant:\"pypMrkgx4\",width:\"100%\",WN3hHglG6:false,X6i1PYrne:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",ybrhKLqoR:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",yRg7QBcF8:\"var(--token-64a43a0c-a423-4243-847e-83861b10109c, rgb(66, 104, 52))\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sgpw19\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"C2_O8H85F\",data:Products,type:\"Collection\"},select:[{collection:\"C2_O8H85F\",name:\"BHZA8Ym30\",type:\"Identifier\"},{collection:\"C2_O8H85F\",name:\"lP3tY_j3l\",type:\"Identifier\"},{collection:\"C2_O8H85F\",name:\"LeMjBkh4u\",type:\"Identifier\"},{collection:\"C2_O8H85F\",name:\"hgbxjOnPw\",type:\"Identifier\"},{collection:\"C2_O8H85F\",name:\"LXa5Usllu\",type:\"Identifier\"},{collection:\"C2_O8H85F\",name:\"wEZ3WTX1R\",type:\"Identifier\"},{collection:\"C2_O8H85F\",name:\"UEHv686jw\",type:\"Identifier\"},{collection:\"C2_O8H85F\",name:\"id\",type:\"Identifier\"}],where:{collection:\"C2_O8H85F\",name:\"UVjHLv96K\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"BHZA8Ym30\":BHZA8Ym30C2_O8H85F,\"lP3tY_j3l\":lP3tY_j3lC2_O8H85F,\"LeMjBkh4u\":LeMjBkh4uC2_O8H85F,\"hgbxjOnPw\":hgbxjOnPwC2_O8H85F,\"LXa5Usllu\":LXa5UslluC2_O8H85F,\"wEZ3WTX1R\":wEZ3WTX1RC2_O8H85F,\"UEHv686jw\":UEHv686jwC2_O8H85F,\"id\":idC2_O8H85F},i)=>{BHZA8Ym30C2_O8H85F!==null&&BHZA8Ym30C2_O8H85F!==void 0?BHZA8Ym30C2_O8H85F:BHZA8Ym30C2_O8H85F=\"\";LeMjBkh4uC2_O8H85F!==null&&LeMjBkh4uC2_O8H85F!==void 0?LeMjBkh4uC2_O8H85F:LeMjBkh4uC2_O8H85F=\"\";hgbxjOnPwC2_O8H85F!==null&&hgbxjOnPwC2_O8H85F!==void 0?hgbxjOnPwC2_O8H85F:hgbxjOnPwC2_O8H85F=\"\";wEZ3WTX1RC2_O8H85F!==null&&wEZ3WTX1RC2_O8H85F!==void 0?wEZ3WTX1RC2_O8H85F:wEZ3WTX1RC2_O8H85F=0;UEHv686jwC2_O8H85F!==null&&UEHv686jwC2_O8H85F!==void 0?UEHv686jwC2_O8H85F:UEHv686jwC2_O8H85F=0;return /*#__PURE__*/_jsx(LayoutGroup,{id:`C2_O8H85F-${idC2_O8H85F}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{BHZA8Ym30:BHZA8Ym30C2_O8H85F},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30C2_O8H85F},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30C2_O8H85F},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30C2_O8H85F},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined}],children:resolvedLinks16=>/*#__PURE__*/{var _enumToDisplayNameFunctions_LXa5Usllu;var _getLocalizedValue;return _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{height:350}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:391.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11qohvm-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{jXR4DAAND:resolvedLinks16[1]},wchqfi5Zg:{jXR4DAAND:resolvedLinks16[2]}},children:/*#__PURE__*/_jsx(BTKProductCardFlip,{ABhv6GCsx:(_getLocalizedValue=getLocalizedValue(\"v44\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"text\",DEiksJxAb:true,Eh4a4v33K:(_enumToDisplayNameFunctions_LXa5Usllu=enumToDisplayNameFunctions[\"LXa5Usllu\"])===null||_enumToDisplayNameFunctions_LXa5Usllu===void 0?void 0:_enumToDisplayNameFunctions_LXa5Usllu.call(enumToDisplayNameFunctions,LXa5UslluC2_O8H85F,activeLocale),HASs1KedR:false,height:\"100%\",hhYInBOPJ:\"var(--token-adfe63c2-e614-4b94-a8f0-f0d65c195294, rgb(111, 86, 117))\",HIyjoxv4J:UEHv686jwC2_O8H85F,id:\"K4vzcAlTG\",IwmUa7fO_:true,jXR4DAAND:resolvedLinks16[0],kGTDnQUxl:LeMjBkh4uC2_O8H85F,kmoHX7x2n:hgbxjOnPwC2_O8H85F,layoutId:\"K4vzcAlTG\",style:{height:\"100%\",width:\"100%\"},th9LK7nHW:\"var(--token-15720aed-8434-409d-b39d-48f17d4c816a, rgba(194, 239, 173, 0.6))\",TVKU7dHlb:toResponsiveImage(lP3tY_j3lC2_O8H85F),V9LwMVhGh:{borderColor:'var(--token-64a43a0c-a423-4243-847e-83861b10109c, rgb(124, 184, 103)) /* {\"name\":\"soil-recovery\"} */',borderStyle:\"solid\",borderWidth:1},variant:convertFromBoolean(equals(BHZA8Ym30,BHZA8Ym30C2_O8H85F),activeLocale),width:\"100%\",ZMJdsbA4M:wEZ3WTX1RC2_O8H85F})})})})});}})})},idC2_O8H85F);})})})})})]})]}),pyu6yYSqi&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6pdihl\",\"data-framer-name\":\"Antistress\",id:elementId12,name:\"Antistress\",ref:ref14,children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-u8o6bo\",\"data-framer-appear-id\":\"u8o6bo\",\"data-framer-name\":\"Divider\",initial:animation3,name:\"Divider\",optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xkmkcx\",\"data-framer-name\":\"Stack\",name:\"Stack\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oimdjn\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s7uyqa\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cxccuv\",children:[pyu6yYSqi&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XEjsjyP4j\"},implicitPathVariables:undefined},{href:{webPageId:\"XEjsjyP4j\"},implicitPathVariables:undefined},{href:{webPageId:\"XEjsjyP4j\"},implicitPathVariables:undefined}],children:resolvedLinks17=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hijxnj-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{ulDDb2E9s:resolvedLinks17[1]},wchqfi5Zg:{ulDDb2E9s:resolvedLinks17[2]}},children:/*#__PURE__*/_jsx(BTKChip,{aGgetsZcF:\"rgba(0, 0, 0, 0)\",AMcbmuyNR:(_getLocalizedValue=getLocalizedValue(\"v25\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Antiestr\\xe9s\",e_y4kqTc_:\"var(--token-f7302d28-815b-4db1-ae23-b9c41b77a5f7, rgb(67, 71, 78))\",height:\"100%\",id:\"qfB6IHEG6\",jMdnAOK9d:false,layoutId:\"qfB6IHEG6\",Mso3gieoE:true,rAyiuf5vJ:\"var(--token-a95e4b89-6e82-4ea6-94e0-51eacce68efc, rgba(39, 94, 167, 0.15))\",sAQKPP5E0:\"FlowerLotus\",ulDDb2E9s:resolvedLinks17[0],variant:\"OMvjCXt6L\",width:\"100%\",wTN5vFwBa:{borderColor:'var(--token-17156bee-bef5-413c-9e74-8c35efc3654d, rgb(196, 198, 207)) /* {\"name\":\"outline-variant\"} */',borderStyle:\"solid\",borderWidth:1},xJmvZ95qr:{borderColor:'var(--token-9a93e2f2-f6e7-4e1f-a065-db69505f6049, rgb(67, 188, 196)) /* {\"name\":\"antistress\"} */',borderStyle:\"solid\",borderWidth:1}})})})});}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uz8ed4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{children:(_getLocalizedValue43=getLocalizedValue(\"v46\",activeLocale))!==null&&_getLocalizedValue43!==void 0?_getLocalizedValue43:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9a93e2f2-f6e7-4e1f-a065-db69505f6049, rgb(0, 105, 112))\"},children:\"Protocolo antiestr\\xe9s para tus cultivos\"})})},wchqfi5Zg:{children:(_getLocalizedValue44=getLocalizedValue(\"v47\",activeLocale))!==null&&_getLocalizedValue44!==void 0?_getLocalizedValue44:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9a93e2f2-f6e7-4e1f-a065-db69505f6049, rgb(0, 105, 112))\"},children:\"Protocolo antiestr\\xe9s para tus cultivos\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue45=getLocalizedValue(\"v45\",activeLocale))!==null&&_getLocalizedValue45!==void 0?_getLocalizedValue45:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-color\":\"var(--token-9a93e2f2-f6e7-4e1f-a065-db69505f6049, rgb(0, 105, 112))\"},children:\"Protocolo antiestr\\xe9s para tus cultivos\"})}),className:\"framer-6bgm4j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{children:(_getLocalizedValue46=getLocalizedValue(\"v49\",activeLocale))!==null&&_getLocalizedValue46!==void 0?_getLocalizedValue46:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-04b93aaa-6f54-4983-90f7-1dfbceb49636, rgb(26, 27, 30))\"},children:\"Productos que en conjunto logran fortalece el sistema inmunol\\xf3gico, protege contra biobicidas y promueve la acumulaci\\xf3n de nutrientes, previniendo el estr\\xe9s por radiaci\\xf3n y calor.\"})})},wchqfi5Zg:{children:(_getLocalizedValue47=getLocalizedValue(\"v50\",activeLocale))!==null&&_getLocalizedValue47!==void 0?_getLocalizedValue47:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-04b93aaa-6f54-4983-90f7-1dfbceb49636, rgb(26, 27, 30))\"},children:\"Productos que en conjunto logran fortalece el sistema inmunol\\xf3gico, protege contra biobicidas y promueve la acumulaci\\xf3n de nutrientes, previniendo el estr\\xe9s por radiaci\\xf3n y calor.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue48=getLocalizedValue(\"v48\",activeLocale))!==null&&_getLocalizedValue48!==void 0?_getLocalizedValue48:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-color\":\"var(--token-04b93aaa-6f54-4983-90f7-1dfbceb49636, rgb(26, 27, 30))\"},children:\"Productos que en conjunto logran fortalece el sistema inmunol\\xf3gico, protege contra biobicidas y promueve la acumulaci\\xf3n de nutrientes, previniendo el estr\\xe9s por radiaci\\xf3n y calor.\"})}),className:\"framer-1r8zszf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wchqfi5Zg:{width:\"min(90vw, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"266px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iissaa-container\",children:/*#__PURE__*/_jsx(BTKButton,{bhhT7Ccf_:\"NavigateNext\",boYY5UeYQ:\"var(--token-4e545dd9-6318-4bb1-8053-0b6f65c0a6ad, rgb(0, 54, 58))\",E93gyQDI7:(_getLocalizedValue49=getLocalizedValue(\"v43\",activeLocale))!==null&&_getLocalizedValue49!==void 0?_getLocalizedValue49:\"Haz tu plan personalizado\",fpONwbWM0:\"Add\",h_vh8pXXa:\"var(--token-7cc0fa81-2146-4ced-b4ab-599fdf155859, rgb(255, 255, 255))\",height:\"100%\",id:\"m_lPeiQP3\",kAPuwbghp:\"Rounded\",layoutId:\"m_lPeiQP3\",mTl1MZTly:false,style:{width:\"100%\"},Te5L9h8Qb:\"https://bioteksa.atlassian.net/servicedesk/customer/portal/4/group/4/create/15\",variant:\"pypMrkgx4\",width:\"100%\",WN3hHglG6:false,X6i1PYrne:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",ybrhKLqoR:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",yRg7QBcF8:\"var(--token-9a93e2f2-f6e7-4e1f-a065-db69505f6049, rgb(0, 105, 112))\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c0kmi0\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"kUImJ78q_\",data:Products,type:\"Collection\"},select:[{collection:\"kUImJ78q_\",name:\"BHZA8Ym30\",type:\"Identifier\"},{collection:\"kUImJ78q_\",name:\"lP3tY_j3l\",type:\"Identifier\"},{collection:\"kUImJ78q_\",name:\"LeMjBkh4u\",type:\"Identifier\"},{collection:\"kUImJ78q_\",name:\"hgbxjOnPw\",type:\"Identifier\"},{collection:\"kUImJ78q_\",name:\"LXa5Usllu\",type:\"Identifier\"},{collection:\"kUImJ78q_\",name:\"wEZ3WTX1R\",type:\"Identifier\"},{collection:\"kUImJ78q_\",name:\"UEHv686jw\",type:\"Identifier\"},{collection:\"kUImJ78q_\",name:\"id\",type:\"Identifier\"}],where:{collection:\"kUImJ78q_\",name:\"pyu6yYSqi\",type:\"Identifier\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"BHZA8Ym30\":BHZA8Ym30kUImJ78q_,\"lP3tY_j3l\":lP3tY_j3lkUImJ78q_,\"LeMjBkh4u\":LeMjBkh4ukUImJ78q_,\"hgbxjOnPw\":hgbxjOnPwkUImJ78q_,\"LXa5Usllu\":LXa5UsllukUImJ78q_,\"wEZ3WTX1R\":wEZ3WTX1RkUImJ78q_,\"UEHv686jw\":UEHv686jwkUImJ78q_,\"id\":idkUImJ78q_},i)=>{BHZA8Ym30kUImJ78q_!==null&&BHZA8Ym30kUImJ78q_!==void 0?BHZA8Ym30kUImJ78q_:BHZA8Ym30kUImJ78q_=\"\";LeMjBkh4ukUImJ78q_!==null&&LeMjBkh4ukUImJ78q_!==void 0?LeMjBkh4ukUImJ78q_:LeMjBkh4ukUImJ78q_=\"\";hgbxjOnPwkUImJ78q_!==null&&hgbxjOnPwkUImJ78q_!==void 0?hgbxjOnPwkUImJ78q_:hgbxjOnPwkUImJ78q_=\"\";wEZ3WTX1RkUImJ78q_!==null&&wEZ3WTX1RkUImJ78q_!==void 0?wEZ3WTX1RkUImJ78q_:wEZ3WTX1RkUImJ78q_=0;UEHv686jwkUImJ78q_!==null&&UEHv686jwkUImJ78q_!==void 0?UEHv686jwkUImJ78q_:UEHv686jwkUImJ78q_=0;return /*#__PURE__*/_jsx(LayoutGroup,{id:`kUImJ78q_-${idkUImJ78q_}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{BHZA8Ym30:BHZA8Ym30kUImJ78q_},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30kUImJ78q_},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30kUImJ78q_},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30kUImJ78q_},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined}],children:resolvedLinks18=>/*#__PURE__*/{var _enumToDisplayNameFunctions_LXa5Usllu;var _getLocalizedValue;return _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{height:350}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:391.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-57x0yv-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{jXR4DAAND:resolvedLinks18[1]},wchqfi5Zg:{jXR4DAAND:resolvedLinks18[2]}},children:/*#__PURE__*/_jsx(BTKProductCardFlip,{ABhv6GCsx:(_getLocalizedValue=getLocalizedValue(\"v44\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"text\",DEiksJxAb:true,Eh4a4v33K:(_enumToDisplayNameFunctions_LXa5Usllu=enumToDisplayNameFunctions[\"LXa5Usllu\"])===null||_enumToDisplayNameFunctions_LXa5Usllu===void 0?void 0:_enumToDisplayNameFunctions_LXa5Usllu.call(enumToDisplayNameFunctions,LXa5UsllukUImJ78q_,activeLocale),HASs1KedR:false,height:\"100%\",hhYInBOPJ:\"var(--token-adfe63c2-e614-4b94-a8f0-f0d65c195294, rgb(111, 86, 117))\",HIyjoxv4J:UEHv686jwkUImJ78q_,id:\"ro82seAsb\",IwmUa7fO_:true,jXR4DAAND:resolvedLinks18[0],kGTDnQUxl:LeMjBkh4ukUImJ78q_,kmoHX7x2n:hgbxjOnPwkUImJ78q_,layoutId:\"ro82seAsb\",style:{height:\"100%\",width:\"100%\"},th9LK7nHW:\"var(--token-5483056d-13dc-4584-a952-51c1d8c9223a, rgba(157, 240, 248, 0.6))\",TVKU7dHlb:toResponsiveImage(lP3tY_j3lkUImJ78q_),V9LwMVhGh:{borderColor:'var(--token-9a93e2f2-f6e7-4e1f-a065-db69505f6049, rgb(67, 188, 196)) /* {\"name\":\"antistress\"} */',borderStyle:\"solid\",borderWidth:1},variant:convertFromBoolean(equals(BHZA8Ym30,BHZA8Ym30kUImJ78q_),activeLocale),width:\"100%\",ZMJdsbA4M:wEZ3WTX1RkUImJ78q_})})})})});}})})},idkUImJ78q_);})})})})})]})]}),b5zoo1Z4I&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yd6lwf\",\"data-framer-name\":\"Flowering\",id:elementId13,name:\"Flowering\",ref:ref15,children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-nyiza7\",\"data-framer-appear-id\":\"nyiza7\",\"data-framer-name\":\"Divider\",initial:animation3,name:\"Divider\",optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-106ibm4\",\"data-framer-name\":\"Stack\",name:\"Stack\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1id5yzp\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-igym62\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14dc04s\",children:[b5zoo1Z4I&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rbNQERRZH\"},implicitPathVariables:undefined},{href:{webPageId:\"rbNQERRZH\"},implicitPathVariables:undefined},{href:{webPageId:\"rbNQERRZH\"},implicitPathVariables:undefined}],children:resolvedLinks19=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bnzzys-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{ulDDb2E9s:resolvedLinks19[1]},wchqfi5Zg:{ulDDb2E9s:resolvedLinks19[2]}},children:/*#__PURE__*/_jsx(BTKChip,{aGgetsZcF:\"rgba(233, 231, 235, 0)\",AMcbmuyNR:(_getLocalizedValue=getLocalizedValue(\"v28\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Floraci\\xf3n \",e_y4kqTc_:\"var(--token-f7302d28-815b-4db1-ae23-b9c41b77a5f7, rgb(67, 71, 78))\",height:\"100%\",id:\"rXepRc13_\",jMdnAOK9d:false,layoutId:\"rXepRc13_\",Mso3gieoE:true,rAyiuf5vJ:\"var(--token-a95e4b89-6e82-4ea6-94e0-51eacce68efc, rgba(39, 94, 167, 0.15))\",sAQKPP5E0:\"Flower\",ulDDb2E9s:resolvedLinks19[0],variant:\"OMvjCXt6L\",width:\"100%\",wTN5vFwBa:{borderColor:'var(--token-17156bee-bef5-413c-9e74-8c35efc3654d, rgb(196, 198, 207)) /* {\"name\":\"outline-variant\"} */',borderStyle:\"solid\",borderWidth:1},xJmvZ95qr:{borderColor:'var(--token-60dc6b20-60e1-4716-8529-5b1b9ba7daa0, rgb(198, 133, 201)) /* {\"name\":\"flowering\"} */',borderStyle:\"solid\",borderWidth:1}})})})});}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1au5xtj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{children:(_getLocalizedValue50=getLocalizedValue(\"v52\",activeLocale))!==null&&_getLocalizedValue50!==void 0?_getLocalizedValue50:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-60dc6b20-60e1-4716-8529-5b1b9ba7daa0, rgb(124, 78, 127))\"},children:\"Haz que tus cultivos florezcan\"})})},wchqfi5Zg:{children:(_getLocalizedValue51=getLocalizedValue(\"v53\",activeLocale))!==null&&_getLocalizedValue51!==void 0?_getLocalizedValue51:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-60dc6b20-60e1-4716-8529-5b1b9ba7daa0, rgb(124, 78, 127))\"},children:\"Haz que tus cultivos florezcan\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue52=getLocalizedValue(\"v51\",activeLocale))!==null&&_getLocalizedValue52!==void 0?_getLocalizedValue52:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-color\":\"var(--token-60dc6b20-60e1-4716-8529-5b1b9ba7daa0, rgb(124, 78, 127))\"},children:\"Haz que tus cultivos florezcan\"})}),className:\"framer-hzqubr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{children:(_getLocalizedValue53=getLocalizedValue(\"v55\",activeLocale))!==null&&_getLocalizedValue53!==void 0?_getLocalizedValue53:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-04b93aaa-6f54-4983-90f7-1dfbceb49636, rgb(26, 27, 30))\"},children:\"Productos que en conjunto logran estimular lproducci\\xf3n de biomasa y mejora la calidad de frutos.\"})})},wchqfi5Zg:{children:(_getLocalizedValue54=getLocalizedValue(\"v56\",activeLocale))!==null&&_getLocalizedValue54!==void 0?_getLocalizedValue54:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-04b93aaa-6f54-4983-90f7-1dfbceb49636, rgb(26, 27, 30))\"},children:\"Productos que en conjunto logran estimular lproducci\\xf3n de biomasa y mejora la calidad de frutos.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue55=getLocalizedValue(\"v54\",activeLocale))!==null&&_getLocalizedValue55!==void 0?_getLocalizedValue55:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-color\":\"var(--token-04b93aaa-6f54-4983-90f7-1dfbceb49636, rgb(26, 27, 30))\"},children:\"Productos que en conjunto logran estimular la producci\\xf3n de biomasa y mejora la calidad de frutos.\"})}),className:\"framer-1chs0xz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wchqfi5Zg:{width:\"min(90vw, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"266px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uj0f80-container\",children:/*#__PURE__*/_jsx(BTKButton,{bhhT7Ccf_:\"NavigateNext\",boYY5UeYQ:\"var(--token-69a80734-fc53-4b2f-a556-129b6f4a27d8, rgb(255, 255, 255))\",E93gyQDI7:(_getLocalizedValue56=getLocalizedValue(\"v43\",activeLocale))!==null&&_getLocalizedValue56!==void 0?_getLocalizedValue56:\"Haz tu plan personalizado\",fpONwbWM0:\"Add\",h_vh8pXXa:\"var(--token-7cc0fa81-2146-4ced-b4ab-599fdf155859, rgb(255, 255, 255))\",height:\"100%\",id:\"sFla_mZ_y\",kAPuwbghp:\"Rounded\",layoutId:\"sFla_mZ_y\",mTl1MZTly:false,style:{width:\"100%\"},Te5L9h8Qb:\"https://bioteksa.atlassian.net/servicedesk/customer/portal/4/group/4/create/15\",variant:\"pypMrkgx4\",width:\"100%\",WN3hHglG6:false,X6i1PYrne:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",ybrhKLqoR:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",yRg7QBcF8:\"var(--token-60dc6b20-60e1-4716-8529-5b1b9ba7daa0, rgb(124, 78, 127))\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kq7h74\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"C9XrYWyyY\",data:Products,type:\"Collection\"},select:[{collection:\"C9XrYWyyY\",name:\"BHZA8Ym30\",type:\"Identifier\"},{collection:\"C9XrYWyyY\",name:\"lP3tY_j3l\",type:\"Identifier\"},{collection:\"C9XrYWyyY\",name:\"LeMjBkh4u\",type:\"Identifier\"},{collection:\"C9XrYWyyY\",name:\"hgbxjOnPw\",type:\"Identifier\"},{collection:\"C9XrYWyyY\",name:\"LXa5Usllu\",type:\"Identifier\"},{collection:\"C9XrYWyyY\",name:\"wEZ3WTX1R\",type:\"Identifier\"},{collection:\"C9XrYWyyY\",name:\"UEHv686jw\",type:\"Identifier\"},{collection:\"C9XrYWyyY\",name:\"id\",type:\"Identifier\"}],where:{collection:\"C9XrYWyyY\",name:\"b5zoo1Z4I\",type:\"Identifier\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2.map(({\"BHZA8Ym30\":BHZA8Ym30C9XrYWyyY,\"lP3tY_j3l\":lP3tY_j3lC9XrYWyyY,\"LeMjBkh4u\":LeMjBkh4uC9XrYWyyY,\"hgbxjOnPw\":hgbxjOnPwC9XrYWyyY,\"LXa5Usllu\":LXa5UslluC9XrYWyyY,\"wEZ3WTX1R\":wEZ3WTX1RC9XrYWyyY,\"UEHv686jw\":UEHv686jwC9XrYWyyY,\"id\":idC9XrYWyyY},i)=>{BHZA8Ym30C9XrYWyyY!==null&&BHZA8Ym30C9XrYWyyY!==void 0?BHZA8Ym30C9XrYWyyY:BHZA8Ym30C9XrYWyyY=\"\";LeMjBkh4uC9XrYWyyY!==null&&LeMjBkh4uC9XrYWyyY!==void 0?LeMjBkh4uC9XrYWyyY:LeMjBkh4uC9XrYWyyY=\"\";hgbxjOnPwC9XrYWyyY!==null&&hgbxjOnPwC9XrYWyyY!==void 0?hgbxjOnPwC9XrYWyyY:hgbxjOnPwC9XrYWyyY=\"\";wEZ3WTX1RC9XrYWyyY!==null&&wEZ3WTX1RC9XrYWyyY!==void 0?wEZ3WTX1RC9XrYWyyY:wEZ3WTX1RC9XrYWyyY=0;UEHv686jwC9XrYWyyY!==null&&UEHv686jwC9XrYWyyY!==void 0?UEHv686jwC9XrYWyyY:UEHv686jwC9XrYWyyY=0;return /*#__PURE__*/_jsx(LayoutGroup,{id:`C9XrYWyyY-${idC9XrYWyyY}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{BHZA8Ym30:BHZA8Ym30C9XrYWyyY},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30C9XrYWyyY},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30C9XrYWyyY},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30C9XrYWyyY},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined}],children:resolvedLinks20=>/*#__PURE__*/{var _enumToDisplayNameFunctions_LXa5Usllu;var _getLocalizedValue;return _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{height:350}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:391.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fp1v46-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{jXR4DAAND:resolvedLinks20[1]},wchqfi5Zg:{jXR4DAAND:resolvedLinks20[2]}},children:/*#__PURE__*/_jsx(BTKProductCardFlip,{ABhv6GCsx:(_getLocalizedValue=getLocalizedValue(\"v44\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"text\",DEiksJxAb:true,Eh4a4v33K:(_enumToDisplayNameFunctions_LXa5Usllu=enumToDisplayNameFunctions[\"LXa5Usllu\"])===null||_enumToDisplayNameFunctions_LXa5Usllu===void 0?void 0:_enumToDisplayNameFunctions_LXa5Usllu.call(enumToDisplayNameFunctions,LXa5UslluC9XrYWyyY,activeLocale),HASs1KedR:false,height:\"100%\",hhYInBOPJ:\"var(--token-adfe63c2-e614-4b94-a8f0-f0d65c195294, rgb(111, 86, 117))\",HIyjoxv4J:UEHv686jwC9XrYWyyY,id:\"Kb_dfvN_b\",IwmUa7fO_:true,jXR4DAAND:resolvedLinks20[0],kGTDnQUxl:LeMjBkh4uC9XrYWyyY,kmoHX7x2n:hgbxjOnPwC9XrYWyyY,layoutId:\"Kb_dfvN_b\",style:{height:\"100%\",width:\"100%\"},th9LK7nHW:\"var(--token-24d29480-7445-4fdf-9e94-f087f88766c6, rgba(255, 214, 253, 0.6))\",TVKU7dHlb:toResponsiveImage(lP3tY_j3lC9XrYWyyY),V9LwMVhGh:{borderColor:'var(--token-60dc6b20-60e1-4716-8529-5b1b9ba7daa0, rgb(198, 133, 201)) /* {\"name\":\"flowering\"} */',borderStyle:\"solid\",borderWidth:1},variant:convertFromBoolean(equals(BHZA8Ym30,BHZA8Ym30C9XrYWyyY),activeLocale),width:\"100%\",ZMJdsbA4M:wEZ3WTX1RC9XrYWyyY})})})})});}})})},idC9XrYWyyY);})})})})})]})]}),CR3A2F4j3&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1co2j4d\",\"data-framer-name\":\"Pollination\",id:elementId14,name:\"Pollination\",ref:ref16,children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1arcjno\",\"data-framer-appear-id\":\"1arcjno\",\"data-framer-name\":\"Divider\",initial:animation3,name:\"Divider\",optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kxm2ys\",\"data-framer-name\":\"Stack\",name:\"Stack\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15khkem\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q9yq0s\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14wiod3\",children:[CR3A2F4j3&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JrmVFbKnC\"},implicitPathVariables:undefined},{href:{webPageId:\"JrmVFbKnC\"},implicitPathVariables:undefined},{href:{webPageId:\"JrmVFbKnC\"},implicitPathVariables:undefined}],children:resolvedLinks21=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lsxqms-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{ulDDb2E9s:resolvedLinks21[1]},wchqfi5Zg:{ulDDb2E9s:resolvedLinks21[2]}},children:/*#__PURE__*/_jsx(BTKChip,{aGgetsZcF:\"rgba(255, 218, 216, 0)\",AMcbmuyNR:(_getLocalizedValue=getLocalizedValue(\"v29\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Polinizaci\\xf3n\",e_y4kqTc_:\"var(--token-f7302d28-815b-4db1-ae23-b9c41b77a5f7, rgb(67, 71, 78))\",height:\"100%\",id:\"R7UEfLFrQ\",jMdnAOK9d:false,layoutId:\"R7UEfLFrQ\",Mso3gieoE:true,rAyiuf5vJ:\"var(--token-a95e4b89-6e82-4ea6-94e0-51eacce68efc, rgba(39, 94, 167, 0.15))\",sAQKPP5E0:\"DotsNine\",ulDDb2E9s:resolvedLinks21[0],variant:\"OMvjCXt6L\",width:\"100%\",wTN5vFwBa:{borderColor:'var(--token-17156bee-bef5-413c-9e74-8c35efc3654d, rgb(196, 198, 207)) /* {\"name\":\"outline-variant\"} */',borderStyle:\"solid\",borderWidth:1},xJmvZ95qr:{borderColor:'var(--token-d401efe2-3ff9-4591-8512-7cf742f7de29, rgb(237, 197, 64)) /* {\"name\":\"pollination\"} */',borderStyle:\"solid\",borderWidth:1}})})})});}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19vgou9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{children:(_getLocalizedValue57=getLocalizedValue(\"v58\",activeLocale))!==null&&_getLocalizedValue57!==void 0?_getLocalizedValue57:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d401efe2-3ff9-4591-8512-7cf742f7de29, rgb(227, 187, 54))\"},children:\"Crea un h\\xedpercultivo, mejora tu polinizaci\\xf3n\"})})},wchqfi5Zg:{children:(_getLocalizedValue58=getLocalizedValue(\"v59\",activeLocale))!==null&&_getLocalizedValue58!==void 0?_getLocalizedValue58:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d401efe2-3ff9-4591-8512-7cf742f7de29, rgb(227, 187, 54))\"},children:\"Crea un h\\xedpercultivo, mejora tu polinizaci\\xf3n\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue59=getLocalizedValue(\"v57\",activeLocale))!==null&&_getLocalizedValue59!==void 0?_getLocalizedValue59:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-color\":\"var(--token-d401efe2-3ff9-4591-8512-7cf742f7de29, rgb(227, 187, 54))\"},children:\"Crea un h\\xedpercultivo, mejora tu polinizaci\\xf3n\"})}),className:\"framer-6d24mu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{children:(_getLocalizedValue60=getLocalizedValue(\"v61\",activeLocale))!==null&&_getLocalizedValue60!==void 0?_getLocalizedValue60:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-35159f1c-1e7b-4c9f-a328-83c7a614d150, rgb(34, 27, 0))\"},children:\"Productos que en conjunto logran fortalecer la estructura celular y aceleran la fertilidad para una polinizaci\\xf3n eficaz.\"})})},wchqfi5Zg:{children:(_getLocalizedValue61=getLocalizedValue(\"v62\",activeLocale))!==null&&_getLocalizedValue61!==void 0?_getLocalizedValue61:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-35159f1c-1e7b-4c9f-a328-83c7a614d150, rgb(34, 27, 0))\"},children:\"Productos que en conjunto logran fortalecer la estructura celular y aceleran la fertilidad para una polinizaci\\xf3n eficaz.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue62=getLocalizedValue(\"v60\",activeLocale))!==null&&_getLocalizedValue62!==void 0?_getLocalizedValue62:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-color\":\"var(--token-35159f1c-1e7b-4c9f-a328-83c7a614d150, rgb(34, 27, 0))\"},children:\"Productos que en conjunto logran fortalecer la estructura celular y aceleran la fertilidad para una polinizaci\\xf3n eficaz.\"})}),className:\"framer-1a7co46\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wchqfi5Zg:{width:\"min(90vw, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"266px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-17zvn23-container\",children:/*#__PURE__*/_jsx(BTKButton,{bhhT7Ccf_:\"NavigateNext\",boYY5UeYQ:\"var(--token-d2026326-e259-4197-917a-c9c717d62665, rgb(58, 48, 0))\",E93gyQDI7:(_getLocalizedValue63=getLocalizedValue(\"v43\",activeLocale))!==null&&_getLocalizedValue63!==void 0?_getLocalizedValue63:\"Haz tu plan personalizado\",fpONwbWM0:\"Add\",h_vh8pXXa:\"var(--token-7cc0fa81-2146-4ced-b4ab-599fdf155859, rgb(255, 255, 255))\",height:\"100%\",id:\"w0T5Syxrx\",kAPuwbghp:\"Rounded\",layoutId:\"w0T5Syxrx\",mTl1MZTly:false,style:{width:\"100%\"},Te5L9h8Qb:\"https://bioteksa.atlassian.net/servicedesk/customer/portal/4/group/4/create/15\",variant:\"pypMrkgx4\",width:\"100%\",WN3hHglG6:false,X6i1PYrne:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",ybrhKLqoR:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",yRg7QBcF8:\"var(--token-d401efe2-3ff9-4591-8512-7cf742f7de29, rgb(237, 206, 83))\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wqy7rc\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"gAtzmtC3M\",data:Products,type:\"Collection\"},select:[{collection:\"gAtzmtC3M\",name:\"BHZA8Ym30\",type:\"Identifier\"},{collection:\"gAtzmtC3M\",name:\"lP3tY_j3l\",type:\"Identifier\"},{collection:\"gAtzmtC3M\",name:\"LeMjBkh4u\",type:\"Identifier\"},{collection:\"gAtzmtC3M\",name:\"hgbxjOnPw\",type:\"Identifier\"},{collection:\"gAtzmtC3M\",name:\"LXa5Usllu\",type:\"Identifier\"},{collection:\"gAtzmtC3M\",name:\"wEZ3WTX1R\",type:\"Identifier\"},{collection:\"gAtzmtC3M\",name:\"UEHv686jw\",type:\"Identifier\"},{collection:\"gAtzmtC3M\",name:\"id\",type:\"Identifier\"}],where:{collection:\"gAtzmtC3M\",name:\"CR3A2F4j3\",type:\"Identifier\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3.map(({\"BHZA8Ym30\":BHZA8Ym30gAtzmtC3M,\"lP3tY_j3l\":lP3tY_j3lgAtzmtC3M,\"LeMjBkh4u\":LeMjBkh4ugAtzmtC3M,\"hgbxjOnPw\":hgbxjOnPwgAtzmtC3M,\"LXa5Usllu\":LXa5UsllugAtzmtC3M,\"wEZ3WTX1R\":wEZ3WTX1RgAtzmtC3M,\"UEHv686jw\":UEHv686jwgAtzmtC3M,\"id\":idgAtzmtC3M},i)=>{BHZA8Ym30gAtzmtC3M!==null&&BHZA8Ym30gAtzmtC3M!==void 0?BHZA8Ym30gAtzmtC3M:BHZA8Ym30gAtzmtC3M=\"\";LeMjBkh4ugAtzmtC3M!==null&&LeMjBkh4ugAtzmtC3M!==void 0?LeMjBkh4ugAtzmtC3M:LeMjBkh4ugAtzmtC3M=\"\";hgbxjOnPwgAtzmtC3M!==null&&hgbxjOnPwgAtzmtC3M!==void 0?hgbxjOnPwgAtzmtC3M:hgbxjOnPwgAtzmtC3M=\"\";wEZ3WTX1RgAtzmtC3M!==null&&wEZ3WTX1RgAtzmtC3M!==void 0?wEZ3WTX1RgAtzmtC3M:wEZ3WTX1RgAtzmtC3M=0;UEHv686jwgAtzmtC3M!==null&&UEHv686jwgAtzmtC3M!==void 0?UEHv686jwgAtzmtC3M:UEHv686jwgAtzmtC3M=0;return /*#__PURE__*/_jsx(LayoutGroup,{id:`gAtzmtC3M-${idgAtzmtC3M}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{BHZA8Ym30:BHZA8Ym30gAtzmtC3M},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30gAtzmtC3M},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30gAtzmtC3M},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30gAtzmtC3M},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined}],children:resolvedLinks22=>/*#__PURE__*/{var _enumToDisplayNameFunctions_LXa5Usllu;var _getLocalizedValue;return _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{height:350}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:391.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9y25pg-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{jXR4DAAND:resolvedLinks22[1]},wchqfi5Zg:{jXR4DAAND:resolvedLinks22[2]}},children:/*#__PURE__*/_jsx(BTKProductCardFlip,{ABhv6GCsx:(_getLocalizedValue=getLocalizedValue(\"v44\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"text\",DEiksJxAb:true,Eh4a4v33K:(_enumToDisplayNameFunctions_LXa5Usllu=enumToDisplayNameFunctions[\"LXa5Usllu\"])===null||_enumToDisplayNameFunctions_LXa5Usllu===void 0?void 0:_enumToDisplayNameFunctions_LXa5Usllu.call(enumToDisplayNameFunctions,LXa5UsllugAtzmtC3M,activeLocale),HASs1KedR:false,height:\"100%\",hhYInBOPJ:\"var(--token-adfe63c2-e614-4b94-a8f0-f0d65c195294, rgb(111, 86, 117))\",HIyjoxv4J:UEHv686jwgAtzmtC3M,id:\"XttKwls6w\",IwmUa7fO_:true,jXR4DAAND:resolvedLinks22[0],kGTDnQUxl:LeMjBkh4ugAtzmtC3M,kmoHX7x2n:hgbxjOnPwgAtzmtC3M,layoutId:\"XttKwls6w\",style:{height:\"100%\",width:\"100%\"},th9LK7nHW:\"var(--token-77397f57-6b97-426e-aca7-27f2c8a0914e, rgba(248, 226, 135, 0.6))\",TVKU7dHlb:toResponsiveImage(lP3tY_j3lgAtzmtC3M),V9LwMVhGh:{borderColor:'var(--token-d401efe2-3ff9-4591-8512-7cf742f7de29, rgb(237, 197, 64)) /* {\"name\":\"pollination\"} */',borderStyle:\"solid\",borderWidth:1},variant:convertFromBoolean(equals(BHZA8Ym30,BHZA8Ym30gAtzmtC3M),activeLocale),width:\"100%\",ZMJdsbA4M:wEZ3WTX1RgAtzmtC3M})})})})});}})})},idgAtzmtC3M);})})})})})]})]}),UrdELWoUY&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u8niw4\",\"data-framer-name\":\"Fruit Filling\",id:elementId15,name:\"Fruit Filling\",ref:ref17,children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1kd04om\",\"data-framer-appear-id\":\"1kd04om\",\"data-framer-name\":\"Divider\",initial:animation3,name:\"Divider\",optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-61d1rv\",\"data-framer-name\":\"Stack\",name:\"Stack\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uboqfc\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y2ec39\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vmfmz8\",children:[UrdELWoUY&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"as0Klsi5F\"},implicitPathVariables:undefined},{href:{webPageId:\"as0Klsi5F\"},implicitPathVariables:undefined},{href:{webPageId:\"as0Klsi5F\"},implicitPathVariables:undefined}],children:resolvedLinks23=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vywv0d-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{ulDDb2E9s:resolvedLinks23[1]},wchqfi5Zg:{ulDDb2E9s:resolvedLinks23[2]}},children:/*#__PURE__*/_jsx(BTKChip,{aGgetsZcF:\"rgba(233, 231, 235, 0)\",AMcbmuyNR:(_getLocalizedValue=getLocalizedValue(\"v30\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Llenado de Fruto\",e_y4kqTc_:\"var(--token-f7302d28-815b-4db1-ae23-b9c41b77a5f7, rgb(67, 71, 78))\",height:\"100%\",id:\"dWRtRpdhW\",jMdnAOK9d:false,layoutId:\"dWRtRpdhW\",Mso3gieoE:true,rAyiuf5vJ:\"var(--token-a95e4b89-6e82-4ea6-94e0-51eacce68efc, rgba(39, 94, 167, 0.15))\",sAQKPP5E0:\"StarFour\",ulDDb2E9s:resolvedLinks23[0],variant:\"OMvjCXt6L\",width:\"100%\",wTN5vFwBa:{borderColor:'var(--token-17156bee-bef5-413c-9e74-8c35efc3654d, rgb(196, 198, 207)) /* {\"name\":\"outline-variant\"} */',borderStyle:\"solid\",borderWidth:1},xJmvZ95qr:{borderColor:'var(--token-99f8e4e4-5aab-4ed2-9d56-c689d645ff9d, rgb(224, 122, 119)) /* {\"name\":\"fruit-filling\"} */',borderStyle:\"solid\",borderWidth:1}})})})});}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mu1ny3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{children:(_getLocalizedValue64=getLocalizedValue(\"v64\",activeLocale))!==null&&_getLocalizedValue64!==void 0?_getLocalizedValue64:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-99f8e4e4-5aab-4ed2-9d56-c689d645ff9d, rgb(144, 74, 73))\"},children:\"Optimiza los nutrientes y la calidad de tus frutos\"})})},wchqfi5Zg:{children:(_getLocalizedValue65=getLocalizedValue(\"v65\",activeLocale))!==null&&_getLocalizedValue65!==void 0?_getLocalizedValue65:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-99f8e4e4-5aab-4ed2-9d56-c689d645ff9d, rgb(144, 74, 73))\"},children:\"Optimiza los nutrientes y la calidad de tus frutos\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue66=getLocalizedValue(\"v63\",activeLocale))!==null&&_getLocalizedValue66!==void 0?_getLocalizedValue66:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-color\":\"var(--token-99f8e4e4-5aab-4ed2-9d56-c689d645ff9d, rgb(144, 74, 73))\"},children:\"Optimiza los nutrientes y la calidad de tus frutos\"})}),className:\"framer-ojv28r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{children:(_getLocalizedValue67=getLocalizedValue(\"v67\",activeLocale))!==null&&_getLocalizedValue67!==void 0?_getLocalizedValue67:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-04b93aaa-6f54-4983-90f7-1dfbceb49636, rgb(26, 27, 30))\"},children:\"Productos que en conjunto influyen en los procesos metab\\xf3licos, mejorando la conversi\\xf3n de energ\\xeda solar en carbohidratos almacenados en los frutos.\"})})},wchqfi5Zg:{children:(_getLocalizedValue68=getLocalizedValue(\"v68\",activeLocale))!==null&&_getLocalizedValue68!==void 0?_getLocalizedValue68:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-04b93aaa-6f54-4983-90f7-1dfbceb49636, rgb(26, 27, 30))\"},children:\"Productos que en conjunto influyen en los procesos metab\\xf3licos, mejorando la conversi\\xf3n de energ\\xeda solar en carbohidratos almacenados en los frutos.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue69=getLocalizedValue(\"v66\",activeLocale))!==null&&_getLocalizedValue69!==void 0?_getLocalizedValue69:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-color\":\"var(--token-04b93aaa-6f54-4983-90f7-1dfbceb49636, rgb(26, 27, 30))\"},children:\"Productos que en conjunto influyen en los procesos metab\\xf3licos, mejorando la conversi\\xf3n de energ\\xeda solar en carbohidratos almacenados en los frutos.\"})}),className:\"framer-4ldcbp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wchqfi5Zg:{width:\"min(90vw, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"266px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-71l9k6-container\",children:/*#__PURE__*/_jsx(BTKButton,{bhhT7Ccf_:\"NavigateNext\",boYY5UeYQ:\"var(--token-58707d2f-d1e8-40ce-b84a-5235d58aca3e, rgb(255, 255, 255))\",E93gyQDI7:(_getLocalizedValue70=getLocalizedValue(\"v43\",activeLocale))!==null&&_getLocalizedValue70!==void 0?_getLocalizedValue70:\"Haz tu plan personalizado\",fpONwbWM0:\"Add\",h_vh8pXXa:\"var(--token-7cc0fa81-2146-4ced-b4ab-599fdf155859, rgb(255, 255, 255))\",height:\"100%\",id:\"yk3vp_fob\",kAPuwbghp:\"Rounded\",layoutId:\"yk3vp_fob\",mTl1MZTly:false,style:{width:\"100%\"},Te5L9h8Qb:\"https://bioteksa.atlassian.net/servicedesk/customer/portal/4/group/4/create/15\",variant:\"pypMrkgx4\",width:\"100%\",WN3hHglG6:false,X6i1PYrne:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",ybrhKLqoR:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",yRg7QBcF8:\"var(--token-99f8e4e4-5aab-4ed2-9d56-c689d645ff9d, rgb(144, 74, 73))\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nf0sou\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"LRS7xb__p\",data:Products,type:\"Collection\"},select:[{collection:\"LRS7xb__p\",name:\"BHZA8Ym30\",type:\"Identifier\"},{collection:\"LRS7xb__p\",name:\"lP3tY_j3l\",type:\"Identifier\"},{collection:\"LRS7xb__p\",name:\"LeMjBkh4u\",type:\"Identifier\"},{collection:\"LRS7xb__p\",name:\"hgbxjOnPw\",type:\"Identifier\"},{collection:\"LRS7xb__p\",name:\"LXa5Usllu\",type:\"Identifier\"},{collection:\"LRS7xb__p\",name:\"wEZ3WTX1R\",type:\"Identifier\"},{collection:\"LRS7xb__p\",name:\"UEHv686jw\",type:\"Identifier\"},{collection:\"LRS7xb__p\",name:\"id\",type:\"Identifier\"}],where:{collection:\"LRS7xb__p\",name:\"UrdELWoUY\",type:\"Identifier\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4.map(({\"BHZA8Ym30\":BHZA8Ym30LRS7xb__p,\"lP3tY_j3l\":lP3tY_j3lLRS7xb__p,\"LeMjBkh4u\":LeMjBkh4uLRS7xb__p,\"hgbxjOnPw\":hgbxjOnPwLRS7xb__p,\"LXa5Usllu\":LXa5UslluLRS7xb__p,\"wEZ3WTX1R\":wEZ3WTX1RLRS7xb__p,\"UEHv686jw\":UEHv686jwLRS7xb__p,\"id\":idLRS7xb__p},i)=>{BHZA8Ym30LRS7xb__p!==null&&BHZA8Ym30LRS7xb__p!==void 0?BHZA8Ym30LRS7xb__p:BHZA8Ym30LRS7xb__p=\"\";LeMjBkh4uLRS7xb__p!==null&&LeMjBkh4uLRS7xb__p!==void 0?LeMjBkh4uLRS7xb__p:LeMjBkh4uLRS7xb__p=\"\";hgbxjOnPwLRS7xb__p!==null&&hgbxjOnPwLRS7xb__p!==void 0?hgbxjOnPwLRS7xb__p:hgbxjOnPwLRS7xb__p=\"\";wEZ3WTX1RLRS7xb__p!==null&&wEZ3WTX1RLRS7xb__p!==void 0?wEZ3WTX1RLRS7xb__p:wEZ3WTX1RLRS7xb__p=0;UEHv686jwLRS7xb__p!==null&&UEHv686jwLRS7xb__p!==void 0?UEHv686jwLRS7xb__p:UEHv686jwLRS7xb__p=0;return /*#__PURE__*/_jsx(LayoutGroup,{id:`LRS7xb__p-${idLRS7xb__p}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{BHZA8Ym30:BHZA8Ym30LRS7xb__p},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30LRS7xb__p},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30LRS7xb__p},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30LRS7xb__p},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined}],children:resolvedLinks24=>/*#__PURE__*/{var _enumToDisplayNameFunctions_LXa5Usllu;var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:391.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-155bsqt-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{jXR4DAAND:resolvedLinks24[1]},wchqfi5Zg:{jXR4DAAND:resolvedLinks24[2]}},children:/*#__PURE__*/_jsx(BTKProductCardFlip,{ABhv6GCsx:(_getLocalizedValue=getLocalizedValue(\"v44\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"text\",DEiksJxAb:true,Eh4a4v33K:(_enumToDisplayNameFunctions_LXa5Usllu=enumToDisplayNameFunctions[\"LXa5Usllu\"])===null||_enumToDisplayNameFunctions_LXa5Usllu===void 0?void 0:_enumToDisplayNameFunctions_LXa5Usllu.call(enumToDisplayNameFunctions,LXa5UslluLRS7xb__p,activeLocale),HASs1KedR:false,height:\"100%\",hhYInBOPJ:\"var(--token-adfe63c2-e614-4b94-a8f0-f0d65c195294, rgb(111, 86, 117))\",HIyjoxv4J:UEHv686jwLRS7xb__p,id:\"ZBJ0rPok0\",IwmUa7fO_:true,jXR4DAAND:resolvedLinks24[0],kGTDnQUxl:LeMjBkh4uLRS7xb__p,kmoHX7x2n:hgbxjOnPwLRS7xb__p,layoutId:\"ZBJ0rPok0\",style:{height:\"100%\",width:\"100%\"},th9LK7nHW:\"var(--token-a80f882d-7ecd-4418-85c1-1a037b8934cd, rgba(255, 218, 216, 0.6))\",TVKU7dHlb:toResponsiveImage(lP3tY_j3lLRS7xb__p),V9LwMVhGh:{borderColor:'var(--token-99f8e4e4-5aab-4ed2-9d56-c689d645ff9d, rgb(224, 122, 119)) /* {\"name\":\"fruit-filling\"} */',borderStyle:\"solid\",borderWidth:1},variant:convertFromBoolean(equals(BHZA8Ym30,BHZA8Ym30LRS7xb__p),activeLocale),width:\"100%\",ZMJdsbA4M:wEZ3WTX1RLRS7xb__p})})})});}})})},idLRS7xb__p);})})})})})]})]}),visible11&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1118t8m\",children:[UGX4PHsOf&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ja8fg\",\"data-framer-name\":\"Bioestimulant\",id:elementId16,name:\"Bioestimulant\",ref:ref18,children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-m9i3ab\",\"data-framer-appear-id\":\"m9i3ab\",\"data-framer-name\":\"Divider\",initial:animation3,name:\"Divider\",optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-p4d6ky\",\"data-framer-name\":\"Stack\",name:\"Stack\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xc0nlo\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kgf09\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ey1743\",children:[UGX4PHsOf&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"iQ8OI7NqV\"},implicitPathVariables:undefined},{href:{webPageId:\"iQ8OI7NqV\"},implicitPathVariables:undefined},{href:{webPageId:\"iQ8OI7NqV\"},implicitPathVariables:undefined}],children:resolvedLinks25=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nlb2gv-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{ulDDb2E9s:resolvedLinks25[1]},wchqfi5Zg:{ulDDb2E9s:resolvedLinks25[2]}},children:/*#__PURE__*/_jsx(BTKChip,{aGgetsZcF:\"rgba(233, 231, 235, 0)\",AMcbmuyNR:(_getLocalizedValue=getLocalizedValue(\"v69\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Bioestimulantes\",e_y4kqTc_:\"var(--token-f7302d28-815b-4db1-ae23-b9c41b77a5f7, rgb(67, 71, 78))\",height:\"100%\",id:\"Td86Pwu3q\",jMdnAOK9d:false,layoutId:\"Td86Pwu3q\",Mso3gieoE:true,rAyiuf5vJ:\"var(--token-a95e4b89-6e82-4ea6-94e0-51eacce68efc, rgba(39, 94, 167, 0.15))\",sAQKPP5E0:\"TrendUp\",ulDDb2E9s:resolvedLinks25[0],variant:\"OMvjCXt6L\",width:\"100%\",wTN5vFwBa:{borderColor:'var(--token-17156bee-bef5-413c-9e74-8c35efc3654d, rgb(196, 198, 207)) /* {\"name\":\"outline-variant\"} */',borderStyle:\"solid\",borderWidth:1},xJmvZ95qr:{borderColor:'var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167)) /* {\"name\":\"primary\"} */',borderStyle:\"solid\",borderWidth:1}})})})});}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yfnubw\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{children:(_getLocalizedValue71=getLocalizedValue(\"v71\",activeLocale))!==null&&_getLocalizedValue71!==void 0?_getLocalizedValue71:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\"},children:\"Haz a tu cultivo m\\xe1s eficaz\"})})},wchqfi5Zg:{children:(_getLocalizedValue72=getLocalizedValue(\"v72\",activeLocale))!==null&&_getLocalizedValue72!==void 0?_getLocalizedValue72:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\"},children:\"Haz a tu cultivo m\\xe1s eficaz\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue73=getLocalizedValue(\"v70\",activeLocale))!==null&&_getLocalizedValue73!==void 0?_getLocalizedValue73:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-color\":\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\"},children:\"Haz a tu cultivo m\\xe1s eficaz\"})}),className:\"framer-1msvtd1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{children:(_getLocalizedValue74=getLocalizedValue(\"v74\",activeLocale))!==null&&_getLocalizedValue74!==void 0?_getLocalizedValue74:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-04b93aaa-6f54-4983-90f7-1dfbceb49636, rgb(26, 27, 30))\"},children:\"Compuestos org\\xe1nicos que logran mejorar el uso eficiente de los nutrientes y la tolerancia a las condiciones clim\\xe1ticas adversas.\"})})},wchqfi5Zg:{children:(_getLocalizedValue75=getLocalizedValue(\"v75\",activeLocale))!==null&&_getLocalizedValue75!==void 0?_getLocalizedValue75:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-04b93aaa-6f54-4983-90f7-1dfbceb49636, rgb(26, 27, 30))\"},children:\"Compuestos org\\xe1nicos que logran mejorar el uso eficiente de los nutrientes y la tolerancia a las condiciones clim\\xe1ticas adversas.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue76=getLocalizedValue(\"v73\",activeLocale))!==null&&_getLocalizedValue76!==void 0?_getLocalizedValue76:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-color\":\"var(--token-04b93aaa-6f54-4983-90f7-1dfbceb49636, rgb(26, 27, 30))\"},children:\"Compuestos org\\xe1nicos que logran mejorar el uso eficiente de los nutrientes y la tolerancia a las condiciones clim\\xe1ticas adversas.\"})}),className:\"framer-d5ypvz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wchqfi5Zg:{width:\"min(90vw, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"266px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wme8m9-container\",children:/*#__PURE__*/_jsx(BTKButton,{bhhT7Ccf_:\"NavigateNext\",boYY5UeYQ:\"var(--token-250570a5-1523-40f6-9c4c-a263883e5fcd, rgb(255, 255, 255))\",E93gyQDI7:(_getLocalizedValue77=getLocalizedValue(\"v43\",activeLocale))!==null&&_getLocalizedValue77!==void 0?_getLocalizedValue77:\"Haz tu plan personalizado\",fpONwbWM0:\"Add\",h_vh8pXXa:\"var(--token-250570a5-1523-40f6-9c4c-a263883e5fcd, rgb(255, 255, 255))\",height:\"100%\",id:\"uhUy4WMkD\",kAPuwbghp:\"Rounded\",layoutId:\"uhUy4WMkD\",mTl1MZTly:false,style:{width:\"100%\"},Te5L9h8Qb:\"https://bioteksa.atlassian.net/servicedesk/customer/portal/4/group/4/create/15\",variant:\"pypMrkgx4\",width:\"100%\",WN3hHglG6:false,X6i1PYrne:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",ybrhKLqoR:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",yRg7QBcF8:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-128w2o1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"LDOL1wJ_n\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"LDOL1wJ_n\",name:\"BHZA8Ym30\",type:\"Identifier\"},{collection:\"LDOL1wJ_n\",name:\"lP3tY_j3l\",type:\"Identifier\"},{collection:\"LDOL1wJ_n\",name:\"LeMjBkh4u\",type:\"Identifier\"},{collection:\"LDOL1wJ_n\",name:\"hgbxjOnPw\",type:\"Identifier\"},{collection:\"LDOL1wJ_n\",name:\"LXa5Usllu\",type:\"Identifier\"},{collection:\"LDOL1wJ_n\",name:\"wEZ3WTX1R\",type:\"Identifier\"},{collection:\"LDOL1wJ_n\",name:\"UEHv686jw\",type:\"Identifier\"},{collection:\"LDOL1wJ_n\",name:\"HiU5rnhxm\",type:\"Identifier\"},{collection:\"LDOL1wJ_n\",name:\"id\",type:\"Identifier\"}],where:{collection:\"LDOL1wJ_n\",name:\"UGX4PHsOf\",type:\"Identifier\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5.map(({\"BHZA8Ym30\":BHZA8Ym30LDOL1wJ_n,\"lP3tY_j3l\":lP3tY_j3lLDOL1wJ_n,\"LeMjBkh4u\":LeMjBkh4uLDOL1wJ_n,\"hgbxjOnPw\":hgbxjOnPwLDOL1wJ_n,\"LXa5Usllu\":LXa5UslluLDOL1wJ_n,\"wEZ3WTX1R\":wEZ3WTX1RLDOL1wJ_n,\"UEHv686jw\":UEHv686jwLDOL1wJ_n,\"HiU5rnhxm\":HiU5rnhxmLDOL1wJ_n,\"id\":idLDOL1wJ_n},i)=>{BHZA8Ym30LDOL1wJ_n!==null&&BHZA8Ym30LDOL1wJ_n!==void 0?BHZA8Ym30LDOL1wJ_n:BHZA8Ym30LDOL1wJ_n=\"\";LeMjBkh4uLDOL1wJ_n!==null&&LeMjBkh4uLDOL1wJ_n!==void 0?LeMjBkh4uLDOL1wJ_n:LeMjBkh4uLDOL1wJ_n=\"\";hgbxjOnPwLDOL1wJ_n!==null&&hgbxjOnPwLDOL1wJ_n!==void 0?hgbxjOnPwLDOL1wJ_n:hgbxjOnPwLDOL1wJ_n=\"\";wEZ3WTX1RLDOL1wJ_n!==null&&wEZ3WTX1RLDOL1wJ_n!==void 0?wEZ3WTX1RLDOL1wJ_n:wEZ3WTX1RLDOL1wJ_n=0;UEHv686jwLDOL1wJ_n!==null&&UEHv686jwLDOL1wJ_n!==void 0?UEHv686jwLDOL1wJ_n:UEHv686jwLDOL1wJ_n=0;HiU5rnhxmLDOL1wJ_n!==null&&HiU5rnhxmLDOL1wJ_n!==void 0?HiU5rnhxmLDOL1wJ_n:HiU5rnhxmLDOL1wJ_n=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`LDOL1wJ_n-${idLDOL1wJ_n}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{BHZA8Ym30:BHZA8Ym30LDOL1wJ_n},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30LDOL1wJ_n},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30LDOL1wJ_n},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30LDOL1wJ_n},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined}],children:resolvedLinks26=>{var _enumToDisplayNameFunctions_LXa5Usllu;return /*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{height:350}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:391.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kdkjo-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{jXR4DAAND:resolvedLinks26[1]},wchqfi5Zg:{jXR4DAAND:resolvedLinks26[2]}},children:/*#__PURE__*/_jsx(BTKProductCardFlip,{ABhv6GCsx:HiU5rnhxmLDOL1wJ_n,DEiksJxAb:true,Eh4a4v33K:(_enumToDisplayNameFunctions_LXa5Usllu=enumToDisplayNameFunctions[\"LXa5Usllu\"])===null||_enumToDisplayNameFunctions_LXa5Usllu===void 0?void 0:_enumToDisplayNameFunctions_LXa5Usllu.call(enumToDisplayNameFunctions,LXa5UslluLDOL1wJ_n,activeLocale),HASs1KedR:false,height:\"100%\",hhYInBOPJ:\"var(--token-adfe63c2-e614-4b94-a8f0-f0d65c195294, rgb(111, 86, 117))\",HIyjoxv4J:UEHv686jwLDOL1wJ_n,id:\"XPdgR5uyr\",IwmUa7fO_:true,jXR4DAAND:resolvedLinks26[0],kGTDnQUxl:LeMjBkh4uLDOL1wJ_n,kmoHX7x2n:hgbxjOnPwLDOL1wJ_n,layoutId:\"XPdgR5uyr\",style:{height:\"100%\",width:\"100%\"},th9LK7nHW:\"var(--token-a95e4b89-6e82-4ea6-94e0-51eacce68efc, rgba(39, 94, 167, 0.15))\",TVKU7dHlb:toResponsiveImage(lP3tY_j3lLDOL1wJ_n),V9LwMVhGh:{borderColor:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",borderStyle:\"solid\",borderWidth:1},variant:convertFromBoolean(equals(BHZA8Ym30,BHZA8Ym30LDOL1wJ_n),activeLocale),width:\"100%\",ZMJdsbA4M:wEZ3WTX1RLDOL1wJ_n})})})})});}})})},idLDOL1wJ_n);})})})})})]})]}),eCia3oEBa&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-196z4kg\",\"data-framer-name\":\"Foliar\",id:elementId17,name:\"Foliar\",ref:ref19,children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-ph1sap\",\"data-framer-appear-id\":\"ph1sap\",\"data-framer-name\":\"Divider\",initial:animation3,name:\"Divider\",optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ty87sm\",\"data-framer-name\":\"Stack\",name:\"Stack\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g8fqp7\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mhbkt0\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zl3bkl\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c1eutv\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{children:(_getLocalizedValue78=getLocalizedValue(\"v77\",activeLocale))!==null&&_getLocalizedValue78!==void 0?_getLocalizedValue78:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-82583cca-c067-48da-b384-fbd142a292eb, rgb(0, 107, 93))\"},children:\"Nutrici\\xf3n de tu cultivo via foliar\"})})},wchqfi5Zg:{children:(_getLocalizedValue79=getLocalizedValue(\"v78\",activeLocale))!==null&&_getLocalizedValue79!==void 0?_getLocalizedValue79:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-82583cca-c067-48da-b384-fbd142a292eb, rgb(0, 107, 93))\"},children:\"Nutrici\\xf3n de tu cultivo via foliar\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue80=getLocalizedValue(\"v76\",activeLocale))!==null&&_getLocalizedValue80!==void 0?_getLocalizedValue80:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-color\":\"var(--token-82583cca-c067-48da-b384-fbd142a292eb, rgb(0, 107, 93))\"},children:\"Nutrici\\xf3n de tu cultivo via foliar\"})}),className:\"framer-11hr1wp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{children:(_getLocalizedValue81=getLocalizedValue(\"v55\",activeLocale))!==null&&_getLocalizedValue81!==void 0?_getLocalizedValue81:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-04b93aaa-6f54-4983-90f7-1dfbceb49636, rgb(26, 27, 30))\"},children:\"Productos que en conjunto logran estimular lproducci\\xf3n de biomasa y mejora la calidad de frutos.\"})})},wchqfi5Zg:{children:(_getLocalizedValue82=getLocalizedValue(\"v56\",activeLocale))!==null&&_getLocalizedValue82!==void 0?_getLocalizedValue82:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-04b93aaa-6f54-4983-90f7-1dfbceb49636, rgb(26, 27, 30))\"},children:\"Productos que en conjunto logran estimular lproducci\\xf3n de biomasa y mejora la calidad de frutos.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue83=getLocalizedValue(\"v79\",activeLocale))!==null&&_getLocalizedValue83!==void 0?_getLocalizedValue83:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-color\":\"var(--token-04b93aaa-6f54-4983-90f7-1dfbceb49636, rgb(26, 27, 30))\"},children:\"Productos dise\\xf1ados para la absorci\\xf3n de nutrientes directamente de las hojas de la planta.\"})}),className:\"framer-1q29om\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{width:\"276px\"},wchqfi5Zg:{width:\"min(90vw, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"266px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ivpmdh-container\",children:/*#__PURE__*/_jsx(BTKButton,{bhhT7Ccf_:\"NavigateNext\",boYY5UeYQ:\"var(--token-a01704da-6500-40ce-87b2-a64b31b9aec2, rgb(255, 255, 255))\",E93gyQDI7:(_getLocalizedValue84=getLocalizedValue(\"v43\",activeLocale))!==null&&_getLocalizedValue84!==void 0?_getLocalizedValue84:\"Haz tu plan personalizado\",fpONwbWM0:\"Add\",h_vh8pXXa:\"var(--token-7cc0fa81-2146-4ced-b4ab-599fdf155859, rgb(255, 255, 255))\",height:\"100%\",id:\"WdflCWTKF\",kAPuwbghp:\"Rounded\",layoutId:\"WdflCWTKF\",mTl1MZTly:false,style:{width:\"100%\"},Te5L9h8Qb:\"https://bioteksa.atlassian.net/servicedesk/customer/portal/4/group/4/create/15\",variant:\"pypMrkgx4\",width:\"100%\",WN3hHglG6:false,X6i1PYrne:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",ybrhKLqoR:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",yRg7QBcF8:\"var(--token-82583cca-c067-48da-b384-fbd142a292eb, rgb(0, 107, 93))\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-irixl9\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Ma5RvOX4r\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},orderBy:[{collection:\"Ma5RvOX4r\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"Ma5RvOX4r\",name:\"BHZA8Ym30\",type:\"Identifier\"},{collection:\"Ma5RvOX4r\",name:\"lP3tY_j3l\",type:\"Identifier\"},{collection:\"Ma5RvOX4r\",name:\"LeMjBkh4u\",type:\"Identifier\"},{collection:\"Ma5RvOX4r\",name:\"hgbxjOnPw\",type:\"Identifier\"},{collection:\"Ma5RvOX4r\",name:\"LXa5Usllu\",type:\"Identifier\"},{collection:\"Ma5RvOX4r\",name:\"wEZ3WTX1R\",type:\"Identifier\"},{collection:\"Ma5RvOX4r\",name:\"UEHv686jw\",type:\"Identifier\"},{collection:\"Ma5RvOX4r\",name:\"id\",type:\"Identifier\"}],where:{collection:\"Ma5RvOX4r\",name:\"eCia3oEBa\",type:\"Identifier\"}},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6.map(({\"BHZA8Ym30\":BHZA8Ym30Ma5RvOX4r,\"lP3tY_j3l\":lP3tY_j3lMa5RvOX4r,\"LeMjBkh4u\":LeMjBkh4uMa5RvOX4r,\"hgbxjOnPw\":hgbxjOnPwMa5RvOX4r,\"LXa5Usllu\":LXa5UslluMa5RvOX4r,\"wEZ3WTX1R\":wEZ3WTX1RMa5RvOX4r,\"UEHv686jw\":UEHv686jwMa5RvOX4r,\"id\":idMa5RvOX4r},i)=>{BHZA8Ym30Ma5RvOX4r!==null&&BHZA8Ym30Ma5RvOX4r!==void 0?BHZA8Ym30Ma5RvOX4r:BHZA8Ym30Ma5RvOX4r=\"\";LeMjBkh4uMa5RvOX4r!==null&&LeMjBkh4uMa5RvOX4r!==void 0?LeMjBkh4uMa5RvOX4r:LeMjBkh4uMa5RvOX4r=\"\";hgbxjOnPwMa5RvOX4r!==null&&hgbxjOnPwMa5RvOX4r!==void 0?hgbxjOnPwMa5RvOX4r:hgbxjOnPwMa5RvOX4r=\"\";wEZ3WTX1RMa5RvOX4r!==null&&wEZ3WTX1RMa5RvOX4r!==void 0?wEZ3WTX1RMa5RvOX4r:wEZ3WTX1RMa5RvOX4r=0;UEHv686jwMa5RvOX4r!==null&&UEHv686jwMa5RvOX4r!==void 0?UEHv686jwMa5RvOX4r:UEHv686jwMa5RvOX4r=0;return /*#__PURE__*/_jsx(LayoutGroup,{id:`Ma5RvOX4r-${idMa5RvOX4r}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{BHZA8Ym30:BHZA8Ym30Ma5RvOX4r},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30Ma5RvOX4r},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30Ma5RvOX4r},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30Ma5RvOX4r},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined}],children:resolvedLinks27=>/*#__PURE__*/{var _enumToDisplayNameFunctions_LXa5Usllu;var _getLocalizedValue;return _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{height:350}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:325,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uidt95-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{jXR4DAAND:resolvedLinks27[1]},wchqfi5Zg:{jXR4DAAND:resolvedLinks27[2]}},children:/*#__PURE__*/_jsx(BTKProductCardFlip,{ABhv6GCsx:(_getLocalizedValue=getLocalizedValue(\"v44\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"text\",DEiksJxAb:true,Eh4a4v33K:(_enumToDisplayNameFunctions_LXa5Usllu=enumToDisplayNameFunctions[\"LXa5Usllu\"])===null||_enumToDisplayNameFunctions_LXa5Usllu===void 0?void 0:_enumToDisplayNameFunctions_LXa5Usllu.call(enumToDisplayNameFunctions,LXa5UslluMa5RvOX4r,activeLocale),HASs1KedR:false,height:\"100%\",hhYInBOPJ:\"var(--token-adfe63c2-e614-4b94-a8f0-f0d65c195294, rgb(111, 86, 117))\",HIyjoxv4J:UEHv686jwMa5RvOX4r,id:\"wEDnclHD1\",IwmUa7fO_:true,jXR4DAAND:resolvedLinks27[0],kGTDnQUxl:LeMjBkh4uMa5RvOX4r,kmoHX7x2n:hgbxjOnPwMa5RvOX4r,layoutId:\"wEDnclHD1\",style:{height:\"100%\",width:\"100%\"},th9LK7nHW:\"var(--token-a95e4b89-6e82-4ea6-94e0-51eacce68efc, rgba(39, 94, 167, 0.15))\",TVKU7dHlb:toResponsiveImage(lP3tY_j3lMa5RvOX4r),V9LwMVhGh:{borderColor:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",borderStyle:\"solid\",borderWidth:1},variant:convertFromBoolean(equals(BHZA8Ym30,BHZA8Ym30Ma5RvOX4r),activeLocale),width:\"100%\",ZMJdsbA4M:wEZ3WTX1RMa5RvOX4r})})})})});}})})},idMa5RvOX4r);})})})})})]})]}),Fgn1zsPPT&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ezd2ks\",\"data-framer-name\":\"Edaphic\",id:elementId18,name:\"Edaphic\",ref:ref20,children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-agn14m\",\"data-framer-appear-id\":\"agn14m\",\"data-framer-name\":\"Divider\",initial:animation3,name:\"Divider\",optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-140j23k\",\"data-framer-name\":\"Stack\",name:\"Stack\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rpy6q8\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5bekmb\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-115webj\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tP9PpAtKh\"},implicitPathVariables:undefined},{href:{webPageId:\"tP9PpAtKh\"},implicitPathVariables:undefined},{href:{webPageId:\"tP9PpAtKh\"},implicitPathVariables:undefined}],children:resolvedLinks28=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zxdj9s-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{ulDDb2E9s:resolvedLinks28[1]},wchqfi5Zg:{ulDDb2E9s:resolvedLinks28[2]}},children:/*#__PURE__*/_jsx(BTKChip,{aGgetsZcF:\"rgba(233, 231, 235, 0)\",AMcbmuyNR:(_getLocalizedValue=getLocalizedValue(\"v80\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Nutrici\\xf3n ed\\xe1fica\",e_y4kqTc_:\"var(--token-f7302d28-815b-4db1-ae23-b9c41b77a5f7, rgb(67, 71, 78))\",height:\"100%\",id:\"MSiFeJQxG\",jMdnAOK9d:false,layoutId:\"MSiFeJQxG\",Mso3gieoE:true,rAyiuf5vJ:\"var(--token-a95e4b89-6e82-4ea6-94e0-51eacce68efc, rgba(39, 94, 167, 0.15))\",sAQKPP5E0:\"BoundingBox\",ulDDb2E9s:resolvedLinks28[0],variant:\"OMvjCXt6L\",width:\"100%\",wTN5vFwBa:{borderColor:'var(--token-17156bee-bef5-413c-9e74-8c35efc3654d, rgb(196, 198, 207)) /* {\"name\":\"outline-variant\"} */',borderStyle:\"solid\",borderWidth:1},xJmvZ95qr:{borderColor:'var(--token-8d5786e9-bffd-4e0c-833c-3e62d0f6f626, rgb(85, 95, 113)) /* {\"name\":\"secondary\"} */',borderStyle:\"solid\",borderWidth:1}})})})});}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gjwasg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{children:(_getLocalizedValue85=getLocalizedValue(\"v82\",activeLocale))!==null&&_getLocalizedValue85!==void 0?_getLocalizedValue85:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7c16a05c-8409-48a5-8467-16a641dea50e, rgb(167, 57, 25))\"},children:\"Nutrici\\xf3n de tu cultivo al suelo\"})})},wchqfi5Zg:{children:(_getLocalizedValue86=getLocalizedValue(\"v83\",activeLocale))!==null&&_getLocalizedValue86!==void 0?_getLocalizedValue86:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c16a05c-8409-48a5-8467-16a641dea50e, rgb(167, 57, 25))\"},children:\"Nutrici\\xf3n de tu cultivo al suelo\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue87=getLocalizedValue(\"v81\",activeLocale))!==null&&_getLocalizedValue87!==void 0?_getLocalizedValue87:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-atp56u\",\"data-styles-preset\":\"I6BUuK0q_\",style:{\"--framer-text-color\":\"var(--token-7c16a05c-8409-48a5-8467-16a641dea50e, rgb(167, 57, 25))\"},children:\"Nutrici\\xf3n de tu cultivo al suelo\"})}),className:\"framer-1rg1qtl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{children:(_getLocalizedValue88=getLocalizedValue(\"v84\",activeLocale))!==null&&_getLocalizedValue88!==void 0?_getLocalizedValue88:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-04b93aaa-6f54-4983-90f7-1dfbceb49636, rgb(26, 27, 30))\"},children:\"Productos dise\\xf1ados para la absorci\\xf3n de nutrientes directamente de las hojas de la planta.\"})})},wchqfi5Zg:{children:(_getLocalizedValue89=getLocalizedValue(\"v85\",activeLocale))!==null&&_getLocalizedValue89!==void 0?_getLocalizedValue89:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-04b93aaa-6f54-4983-90f7-1dfbceb49636, rgb(26, 27, 30))\"},children:\"Productos dise\\xf1ados para la absorci\\xf3n de nutrientes directamente de las hojas de la planta.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue90=getLocalizedValue(\"v79\",activeLocale))!==null&&_getLocalizedValue90!==void 0?_getLocalizedValue90:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gqt8v7\",\"data-styles-preset\":\"mNir_S1z7\",style:{\"--framer-text-color\":\"var(--token-04b93aaa-6f54-4983-90f7-1dfbceb49636, rgb(26, 27, 30))\"},children:\"Productos dise\\xf1ados para la absorci\\xf3n de nutrientes directamente de las hojas de la planta.\"})}),className:\"framer-url174\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wchqfi5Zg:{width:\"min(90vw, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"266px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-71hcvs-container\",children:/*#__PURE__*/_jsx(BTKButton,{bhhT7Ccf_:\"NavigateNext\",boYY5UeYQ:\"var(--token-6b7976cf-17e3-4913-8466-60618d63c938, rgb(255, 255, 255))\",E93gyQDI7:(_getLocalizedValue91=getLocalizedValue(\"v43\",activeLocale))!==null&&_getLocalizedValue91!==void 0?_getLocalizedValue91:\"Haz tu plan personalizado\",fpONwbWM0:\"Add\",h_vh8pXXa:\"var(--token-7cc0fa81-2146-4ced-b4ab-599fdf155859, rgb(255, 255, 255))\",height:\"100%\",id:\"Pqjb2P1i0\",kAPuwbghp:\"Rounded\",layoutId:\"Pqjb2P1i0\",mTl1MZTly:false,style:{width:\"100%\"},Te5L9h8Qb:\"https://bioteksa.atlassian.net/servicedesk/customer/portal/4/group/4/create/15\",variant:\"pypMrkgx4\",width:\"100%\",WN3hHglG6:false,X6i1PYrne:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",ybrhKLqoR:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",yRg7QBcF8:\"var(--token-7c16a05c-8409-48a5-8467-16a641dea50e, rgb(167, 57, 25))\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7fgkov\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"HcwmSfX8r\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},orderBy:[{collection:\"HcwmSfX8r\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"HcwmSfX8r\",name:\"BHZA8Ym30\",type:\"Identifier\"},{collection:\"HcwmSfX8r\",name:\"lP3tY_j3l\",type:\"Identifier\"},{collection:\"HcwmSfX8r\",name:\"LeMjBkh4u\",type:\"Identifier\"},{collection:\"HcwmSfX8r\",name:\"hgbxjOnPw\",type:\"Identifier\"},{collection:\"HcwmSfX8r\",name:\"LXa5Usllu\",type:\"Identifier\"},{collection:\"HcwmSfX8r\",name:\"wEZ3WTX1R\",type:\"Identifier\"},{collection:\"HcwmSfX8r\",name:\"UEHv686jw\",type:\"Identifier\"},{collection:\"HcwmSfX8r\",name:\"id\",type:\"Identifier\"}],where:{collection:\"HcwmSfX8r\",name:\"Fgn1zsPPT\",type:\"Identifier\"}},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7.map(({\"BHZA8Ym30\":BHZA8Ym30HcwmSfX8r,\"lP3tY_j3l\":lP3tY_j3lHcwmSfX8r,\"LeMjBkh4u\":LeMjBkh4uHcwmSfX8r,\"hgbxjOnPw\":hgbxjOnPwHcwmSfX8r,\"LXa5Usllu\":LXa5UslluHcwmSfX8r,\"wEZ3WTX1R\":wEZ3WTX1RHcwmSfX8r,\"UEHv686jw\":UEHv686jwHcwmSfX8r,\"id\":idHcwmSfX8r},i)=>{BHZA8Ym30HcwmSfX8r!==null&&BHZA8Ym30HcwmSfX8r!==void 0?BHZA8Ym30HcwmSfX8r:BHZA8Ym30HcwmSfX8r=\"\";LeMjBkh4uHcwmSfX8r!==null&&LeMjBkh4uHcwmSfX8r!==void 0?LeMjBkh4uHcwmSfX8r:LeMjBkh4uHcwmSfX8r=\"\";hgbxjOnPwHcwmSfX8r!==null&&hgbxjOnPwHcwmSfX8r!==void 0?hgbxjOnPwHcwmSfX8r:hgbxjOnPwHcwmSfX8r=\"\";wEZ3WTX1RHcwmSfX8r!==null&&wEZ3WTX1RHcwmSfX8r!==void 0?wEZ3WTX1RHcwmSfX8r:wEZ3WTX1RHcwmSfX8r=0;UEHv686jwHcwmSfX8r!==null&&UEHv686jwHcwmSfX8r!==void 0?UEHv686jwHcwmSfX8r:UEHv686jwHcwmSfX8r=0;return /*#__PURE__*/_jsx(LayoutGroup,{id:`HcwmSfX8r-${idHcwmSfX8r}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{BHZA8Ym30:BHZA8Ym30HcwmSfX8r},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30HcwmSfX8r},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30HcwmSfX8r},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined},{href:{pathVariables:{BHZA8Ym30:BHZA8Ym30HcwmSfX8r},webPageId:\"Mfj65VgNa\"},implicitPathVariables:undefined}],children:resolvedLinks29=>/*#__PURE__*/{var _enumToDisplayNameFunctions_LXa5Usllu;var _getLocalizedValue;return _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{height:350}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:391.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-46bds4-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{jXR4DAAND:resolvedLinks29[1]},wchqfi5Zg:{jXR4DAAND:resolvedLinks29[2]}},children:/*#__PURE__*/_jsx(BTKProductCardFlip,{ABhv6GCsx:(_getLocalizedValue=getLocalizedValue(\"v44\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"text\",DEiksJxAb:true,Eh4a4v33K:(_enumToDisplayNameFunctions_LXa5Usllu=enumToDisplayNameFunctions[\"LXa5Usllu\"])===null||_enumToDisplayNameFunctions_LXa5Usllu===void 0?void 0:_enumToDisplayNameFunctions_LXa5Usllu.call(enumToDisplayNameFunctions,LXa5UslluHcwmSfX8r,activeLocale),HASs1KedR:false,height:\"100%\",hhYInBOPJ:\"var(--token-adfe63c2-e614-4b94-a8f0-f0d65c195294, rgb(111, 86, 117))\",HIyjoxv4J:UEHv686jwHcwmSfX8r,id:\"tEwzHO2vt\",IwmUa7fO_:true,jXR4DAAND:resolvedLinks29[0],kGTDnQUxl:LeMjBkh4uHcwmSfX8r,kmoHX7x2n:hgbxjOnPwHcwmSfX8r,layoutId:\"tEwzHO2vt\",style:{height:\"100%\",width:\"100%\"},th9LK7nHW:\"var(--token-a95e4b89-6e82-4ea6-94e0-51eacce68efc, rgba(39, 94, 167, 0.15))\",TVKU7dHlb:toResponsiveImage(lP3tY_j3lHcwmSfX8r),V9LwMVhGh:{borderColor:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\",borderStyle:\"solid\",borderWidth:1},variant:convertFromBoolean(equals(BHZA8Ym30,BHZA8Ym30HcwmSfX8r),activeLocale),width:\"100%\",ZMJdsbA4M:wEZ3WTX1RHcwmSfX8r})})})})});}})})},idHcwmSfX8r);})})})})})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:711,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ipvyqx-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TXuNMVODO:{variant:\"Sr50vU1y6\"},wchqfi5Zg:{variant:\"bi51QiNFt\"}},children:/*#__PURE__*/_jsx(BTKFooterWeb,{height:\"100%\",id:\"jT5gAthPc\",layoutId:\"jT5gAthPc\",style:{width:\"100%\"},variant:\"u8CXS21xy\",width:\"100%\",woL945RoP:\"var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, rgb(39, 94, 167))\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-f3FeY { background: var(--token-b07a9cf1-6876-49b7-94f6-d352b04ef565, rgb(255, 255, 255)); }`,\".framer-f3FeY.framer-18aybn6, .framer-f3FeY .framer-18aybn6 { display: block; }\",\".framer-f3FeY.framer-1mhjbgj { align-content: center; align-items: center; background-color: var(--token-b07a9cf1-6876-49b7-94f6-d352b04ef565, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 72px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-f3FeY .framer-1yw9v1s { flex: none; height: 437px; left: -2px; overflow: hidden; position: absolute; top: -2px; width: 564px; z-index: 0; }\",\".framer-f3FeY .framer-1aqy12e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; min-height: 437px; min-width: 564px; overflow: hidden; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: min-content; z-index: 0; }\",'.framer-f3FeY .framer-17gutjy { background: linear-gradient(90deg, rgba(0, 70, 139, 0) -23.27220480668757%, var(--token-b07a9cf1-6876-49b7-94f6-d352b04ef565, rgb(255, 255, 255)) /* {\"name\":\"surface-container-lowest\"} */ 89.34639498432601%); bottom: 72px; flex: none; left: 47px; overflow: hidden; position: absolute; top: -46px; width: 319px; z-index: 1; }','.framer-f3FeY .framer-12wqnia { -webkit-filter: saturate(1.3); background: linear-gradient(180deg, var(--token-2df22b57-28f9-4351-b83b-e479bdfe5226, #d6e3ff) /* {\"name\":\"primary-container\"} */ -6.988603988603999%, var(--token-b07a9cf1-6876-49b7-94f6-d352b04ef565, rgb(255, 255, 255)) /* {\"name\":\"surface-container-lowest\"} */ 77.61538461538461%); filter: saturate(1.3); flex: none; height: 540px; left: calc(47.87234042553194% - 312px / 2); position: absolute; top: -114px; width: 312px; z-index: 0; }',\".framer-f3FeY .framer-104ljtx-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 2; }\",\".framer-f3FeY .framer-en8dx3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-f3FeY .framer-1mdb8e9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 32px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-f3FeY .framer-ipa874 { align-content: center; align-items: center; background-color: var(--token-a95e4b89-6e82-4ea6-94e0-51eacce68efc, rgba(39, 94, 167, 0.15)); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 32px; position: relative; width: 90%; will-change: var(--framer-will-change-override, transform); }\",\".framer-f3FeY .framer-18jhoxc, .framer-f3FeY .framer-xisv01, .framer-f3FeY .framer-484j0l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-f3FeY .framer-nsy7pa, .framer-f3FeY .framer-11u8lfc, .framer-f3FeY .framer-105xr0i { align-content: flex-start; align-items: flex-start; background-color: var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, #275ea7); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.04), 0px 4px 4px -2px rgba(0, 0, 0, 0.03999999910593033); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px; position: relative; width: min-content; }\",\".framer-f3FeY .framer-1gcoo3i { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 20px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 20px; }\",\".framer-f3FeY .framer-10kwnm8-container, .framer-f3FeY .framer-1tczi2r-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 19px; }\",\".framer-f3FeY .framer-11k3aq4, .framer-f3FeY .framer-10f08pq, .framer-f3FeY .framer-l7rn12 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-f3FeY .framer-26fed4, .framer-f3FeY .framer-n67guq, .framer-f3FeY .framer-186u7g2, .framer-f3FeY .framer-1rrn55o, .framer-f3FeY .framer-111lva3, .framer-f3FeY .framer-1j55gse, .framer-f3FeY .framer-add7oq, .framer-f3FeY .framer-b2m5jt, .framer-f3FeY .framer-fu4p5t, .framer-f3FeY .framer-1y1xtec, .framer-f3FeY .framer-uy7qz7, .framer-f3FeY .framer-1xjug7m, .framer-f3FeY .framer-16o2erq, .framer-f3FeY .framer-qxzbde, .framer-f3FeY .framer-mijpxk, .framer-f3FeY .framer-53gdmi { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-f3FeY .framer-1lg6a22 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 20px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 20px; }\",\".framer-f3FeY .framer-1uhwb9f { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 192px; word-break: break-word; word-wrap: break-word; }\",\".framer-f3FeY .framer-n71ryx { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 20px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 20px; }\",\".framer-f3FeY .framer-sx6q2q-container { aspect-ratio: 0.8636363636363636 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 19px; }\",\".framer-f3FeY .framer-eapc85 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 54px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 90px 0px 90px 0px; position: relative; width: 90%; }\",\".framer-f3FeY .framer-1ayc7ce { align-content: center; align-items: center; align-self: stretch; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-f3FeY .framer-1zanvj { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-f3FeY .framer-rax25x { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 80px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-f3FeY .framer-1xma1ft { align-content: center; align-items: center; background-color: var(--token-85d59ded-713e-4be1-aad9-bf27f8e34dae, #f4f3f7); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 500px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-f3FeY .framer-1geqywv-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; z-index: 1; }\",\".framer-f3FeY .framer-1qqj4lg, .framer-f3FeY .framer-14oheo5, .framer-f3FeY .framer-z6cd36, .framer-f3FeY .framer-1v94bhw { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 417px); overflow: visible; position: relative; width: 556px; }\",\".framer-f3FeY .framer-vbjmaw { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 480px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-f3FeY .framer-nxe89f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-f3FeY .framer-i0zoxu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-f3FeY .framer-bsvaz8, .framer-f3FeY .framer-1ruw24f, .framer-f3FeY .framer-1uzpaaj, .framer-f3FeY .framer-3i1jh1, .framer-f3FeY .framer-9v2thy, .framer-f3FeY .framer-1cy7fjo, .framer-f3FeY .framer-ora43j { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-f3FeY .framer-a4du9u, .framer-f3FeY .framer-13i363q, .framer-f3FeY .framer-u8o6bo, .framer-f3FeY .framer-nyiza7, .framer-f3FeY .framer-1arcjno, .framer-f3FeY .framer-1kd04om, .framer-f3FeY .framer-m9i3ab, .framer-f3FeY .framer-ph1sap, .framer-f3FeY .framer-agn14m { align-content: flex-start; align-items: flex-start; background-color: var(--token-17156bee-bef5-413c-9e74-8c35efc3654d, #c4c6cf); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-f3FeY .framer-xrdd1t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-f3FeY .framer-14izygl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 4px 0px 4px 0px; position: relative; width: 100%; }\",\".framer-f3FeY .framer-1up2ny1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 28px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-f3FeY .framer-1x2u93d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 28px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-f3FeY .framer-p48j7p { align-content: center; align-items: center; background-color: var(--token-a95e4b89-6e82-4ea6-94e0-51eacce68efc, rgba(39, 94, 167, 0.15)); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 175px; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f3FeY .framer-id004e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-f3FeY .framer-blyi75-container { flex: none; height: 20px; position: relative; width: 13px; }\",\".framer-f3FeY .framer-1fcqxf6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-f3FeY .framer-3i1g5g { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 16px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-f3FeY .framer-zl4ugm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-f3FeY .framer-7dq96r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-f3FeY .framer-11fawmk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-f3FeY .framer-86maiy-container, .framer-f3FeY .framer-1n1qq1v-container, .framer-f3FeY .framer-62e6cf-container, .framer-f3FeY .framer-hhl3pz-container, .framer-f3FeY .framer-1rx3vc0-container, .framer-f3FeY .framer-hx7wbv-container, .framer-f3FeY .framer-1c2q37y-container, .framer-f3FeY .framer-1ulvn9n-container, .framer-f3FeY .framer-1r94v1s-container, .framer-f3FeY .framer-1oo3mdz-container, .framer-f3FeY .framer-gyzn22-container, .framer-f3FeY .framer-121ee6l-container, .framer-f3FeY .framer-czwy2n-container, .framer-f3FeY .framer-ewwfd0-container, .framer-f3FeY .framer-1hijxnj-container, .framer-f3FeY .framer-bnzzys-container, .framer-f3FeY .framer-lsxqms-container, .framer-f3FeY .framer-1vywv0d-container, .framer-f3FeY .framer-1nlb2gv-container, .framer-f3FeY .framer-zxdj9s-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-f3FeY .framer-1ijaajl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-f3FeY .framer-1algbuk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-f3FeY .framer-176kc8o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-f3FeY .framer-13gz25c-container { flex: none; height: 60px; position: relative; width: 100%; z-index: 1; }\",\".framer-f3FeY .framer-10kybzd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-f3FeY .framer-1ok5i1z-container, .framer-f3FeY .framer-10mi0yh-container, .framer-f3FeY .framer-1em0axt-container, .framer-f3FeY .framer-5fll45-container, .framer-f3FeY .framer-1mlceaa-container, .framer-f3FeY .framer-19j3sq4-container, .framer-f3FeY .framer-1iissaa-container, .framer-f3FeY .framer-1uj0f80-container, .framer-f3FeY .framer-17zvn23-container, .framer-f3FeY .framer-71l9k6-container, .framer-f3FeY .framer-1wme8m9-container, .framer-f3FeY .framer-1ivpmdh-container, .framer-f3FeY .framer-71hcvs-container, .framer-f3FeY .framer-ipvyqx-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-f3FeY .framer-lxkfmg { align-content: flex-start; align-items: flex-start; background-color: var(--token-b07a9cf1-6876-49b7-94f6-d352b04ef565, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 54px; height: min-content; justify-content: center; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-f3FeY .framer-1vqosh7-container { flex: none; height: 400px; position: sticky; top: 120px; width: 370px; will-change: transform; z-index: 1; }\",\".framer-f3FeY .framer-h3ddmd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 88px; height: 1820px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-f3FeY .framer-1in2uj8 { align-content: flex-start; align-items: flex-start; background-color: var(--token-b07a9cf1-6876-49b7-94f6-d352b04ef565, #ffffff); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: center; max-width: 500px; overflow: visible; padding: 37px 0px 37px 0px; position: relative; width: min-content; }\",\".framer-f3FeY .framer-bj7ywk, .framer-f3FeY .framer-fhj9an, .framer-f3FeY .framer-14hwif8 { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-c077b8ba-5850-4f8b-9d9c-d06954dad821, #275ea7); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 11px 20px 0px rgba(0, 0, 0, 0.15); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 50px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f3FeY .framer-qtubqb-container, .framer-f3FeY .framer-8e7dae-container, .framer-f3FeY .framer-qmwhik-container { flex: none; height: 25px; position: relative; width: 25px; }\",\".framer-f3FeY .framer-15h66zf, .framer-f3FeY .framer-7pxqgc, .framer-f3FeY .framer-17dzmuk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-f3FeY .framer-1rdlk23, .framer-f3FeY .framer-2q021w, .framer-f3FeY .framer-1ncluc0 { flex: none; height: auto; position: relative; width: 400px; }\",\".framer-f3FeY .framer-1uaz8n1, .framer-f3FeY .framer-5928il { align-content: flex-start; align-items: flex-start; background-color: var(--token-b07a9cf1-6876-49b7-94f6-d352b04ef565, #ffffff); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: center; max-width: 400px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-f3FeY .framer-iur0ao { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px 0px 100px 0px; position: relative; scroll-margin-top: 150px; width: 90%; }\",\".framer-f3FeY .framer-97z9sr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 80px; width: min-content; will-change: transform; z-index: 1; }\",\".framer-f3FeY .framer-17yqc0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 32px 0px 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-f3FeY .framer-127e9ef { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-f3FeY .framer-1ek0ho6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 325px; word-break: break-word; word-wrap: break-word; }\",\".framer-f3FeY .framer-1s3v3qt-container { align-self: stretch; flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-f3FeY .framer-3ed3oj { display: grid; flex: 1 0 0px; gap: 16px; grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-f3FeY .framer-pme4sm-container, .framer-f3FeY .framer-vc6o1y-container { align-self: start; aspect-ratio: 1.333969465648855 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 150px); justify-self: center; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-f3FeY .framer-1qv6ctb-container, .framer-f3FeY .framer-1bbjqtc-container, .framer-f3FeY .framer-tsels1-container, .framer-f3FeY .framer-1pwstyc-container { align-self: start; aspect-ratio: 1.333969465648855 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 150px); justify-self: center; position: relative; scroll-margin-top: 80px; width: 100%; }\",\".framer-f3FeY .framer-aasts5, .framer-f3FeY .framer-6pdihl, .framer-f3FeY .framer-1yd6lwf, .framer-f3FeY .framer-1co2j4d, .framer-f3FeY .framer-u8niw4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 80px; width: 90%; }\",\".framer-f3FeY .framer-3zdxep, .framer-f3FeY .framer-1xkmkcx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-f3FeY .framer-xvgfzq, .framer-f3FeY .framer-1oimdjn, .framer-f3FeY .framer-1id5yzp, .framer-f3FeY .framer-15khkem, .framer-f3FeY .framer-uboqfc, .framer-f3FeY .framer-1xc0nlo, .framer-f3FeY .framer-1g8fqp7, .framer-f3FeY .framer-1rpy6q8 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px 24px 0px 0px; position: relative; width: 290px; }\",\".framer-f3FeY .framer-1c8e6js, .framer-f3FeY .framer-s7uyqa, .framer-f3FeY .framer-igym62, .framer-f3FeY .framer-q9yq0s, .framer-f3FeY .framer-y2ec39, .framer-f3FeY .framer-kgf09, .framer-f3FeY .framer-mhbkt0, .framer-f3FeY .framer-5bekmb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: sticky; top: 80px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-f3FeY .framer-60ogof, .framer-f3FeY .framer-14dc04s, .framer-f3FeY .framer-14wiod3, .framer-f3FeY .framer-vmfmz8, .framer-f3FeY .framer-1ey1743, .framer-f3FeY .framer-zl3bkl, .framer-f3FeY .framer-115webj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-f3FeY .framer-tiyiav, .framer-f3FeY .framer-uz8ed4, .framer-f3FeY .framer-1au5xtj, .framer-f3FeY .framer-19vgou9, .framer-f3FeY .framer-mu1ny3, .framer-f3FeY .framer-yfnubw, .framer-f3FeY .framer-c1eutv, .framer-f3FeY .framer-1gjwasg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-f3FeY .framer-1638v7x, .framer-f3FeY .framer-hho9v9, .framer-f3FeY .framer-6bgm4j, .framer-f3FeY .framer-1r8zszf, .framer-f3FeY .framer-hzqubr, .framer-f3FeY .framer-1chs0xz, .framer-f3FeY .framer-6d24mu, .framer-f3FeY .framer-1a7co46, .framer-f3FeY .framer-ojv28r, .framer-f3FeY .framer-4ldcbp, .framer-f3FeY .framer-1msvtd1, .framer-f3FeY .framer-d5ypvz, .framer-f3FeY .framer-11hr1wp, .framer-f3FeY .framer-1q29om, .framer-f3FeY .framer-1rg1qtl, .framer-f3FeY .framer-url174 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-f3FeY .framer-sgpw19, .framer-f3FeY .framer-1c0kmi0, .framer-f3FeY .framer-1kq7h74, .framer-f3FeY .framer-wqy7rc, .framer-f3FeY .framer-1nf0sou, .framer-f3FeY .framer-128w2o1, .framer-f3FeY .framer-irixl9, .framer-f3FeY .framer-7fgkov { display: grid; flex: 1 0 0px; gap: 16px; grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-f3FeY .framer-11qohvm-container, .framer-f3FeY .framer-57x0yv-container, .framer-f3FeY .framer-1fp1v46-container, .framer-f3FeY .framer-9y25pg-container, .framer-f3FeY .framer-155bsqt-container, .framer-f3FeY .framer-1kdkjo-container, .framer-f3FeY .framer-46bds4-container { align-self: start; flex: none; height: 392px; justify-self: start; position: relative; width: 100%; }\",\".framer-f3FeY .framer-1cxccuv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-f3FeY .framer-106ibm4, .framer-f3FeY .framer-1kxm2ys, .framer-f3FeY .framer-61d1rv, .framer-f3FeY .framer-p4d6ky, .framer-f3FeY .framer-ty87sm, .framer-f3FeY .framer-140j23k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-f3FeY .framer-1118t8m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-f3FeY .framer-16ja8fg, .framer-f3FeY .framer-196z4kg, .framer-f3FeY .framer-1ezd2ks { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 80px; width: 100%; }\",\".framer-f3FeY .framer-uidt95-container { align-self: start; flex: none; height: 325px; justify-self: start; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-f3FeY.framer-1mhjbgj, .framer-f3FeY .framer-1aqy12e, .framer-f3FeY .framer-en8dx3, .framer-f3FeY .framer-1mdb8e9, .framer-f3FeY .framer-18jhoxc, .framer-f3FeY .framer-nsy7pa, .framer-f3FeY .framer-1gcoo3i, .framer-f3FeY .framer-11k3aq4, .framer-f3FeY .framer-xisv01, .framer-f3FeY .framer-11u8lfc, .framer-f3FeY .framer-1lg6a22, .framer-f3FeY .framer-10f08pq, .framer-f3FeY .framer-484j0l, .framer-f3FeY .framer-105xr0i, .framer-f3FeY .framer-n71ryx, .framer-f3FeY .framer-l7rn12, .framer-f3FeY .framer-eapc85, .framer-f3FeY .framer-1ayc7ce, .framer-f3FeY .framer-1zanvj, .framer-f3FeY .framer-rax25x, .framer-f3FeY .framer-1xma1ft, .framer-f3FeY .framer-vbjmaw, .framer-f3FeY .framer-nxe89f, .framer-f3FeY .framer-i0zoxu, .framer-f3FeY .framer-a4du9u, .framer-f3FeY .framer-xrdd1t, .framer-f3FeY .framer-14izygl, .framer-f3FeY .framer-1up2ny1, .framer-f3FeY .framer-1x2u93d, .framer-f3FeY .framer-p48j7p, .framer-f3FeY .framer-id004e, .framer-f3FeY .framer-1fcqxf6, .framer-f3FeY .framer-3i1g5g, .framer-f3FeY .framer-zl4ugm, .framer-f3FeY .framer-7dq96r, .framer-f3FeY .framer-11fawmk, .framer-f3FeY .framer-1ijaajl, .framer-f3FeY .framer-1algbuk, .framer-f3FeY .framer-176kc8o, .framer-f3FeY .framer-10kybzd, .framer-f3FeY .framer-lxkfmg, .framer-f3FeY .framer-h3ddmd, .framer-f3FeY .framer-1in2uj8, .framer-f3FeY .framer-bj7ywk, .framer-f3FeY .framer-15h66zf, .framer-f3FeY .framer-1uaz8n1, .framer-f3FeY .framer-fhj9an, .framer-f3FeY .framer-7pxqgc, .framer-f3FeY .framer-5928il, .framer-f3FeY .framer-14hwif8, .framer-f3FeY .framer-17dzmuk, .framer-f3FeY .framer-97z9sr, .framer-f3FeY .framer-17yqc0, .framer-f3FeY .framer-127e9ef, .framer-f3FeY .framer-aasts5, .framer-f3FeY .framer-13i363q, .framer-f3FeY .framer-3zdxep, .framer-f3FeY .framer-xvgfzq, .framer-f3FeY .framer-1c8e6js, .framer-f3FeY .framer-60ogof, .framer-f3FeY .framer-tiyiav, .framer-f3FeY .framer-6pdihl, .framer-f3FeY .framer-u8o6bo, .framer-f3FeY .framer-1xkmkcx, .framer-f3FeY .framer-1oimdjn, .framer-f3FeY .framer-s7uyqa, .framer-f3FeY .framer-1cxccuv, .framer-f3FeY .framer-uz8ed4, .framer-f3FeY .framer-1yd6lwf, .framer-f3FeY .framer-nyiza7, .framer-f3FeY .framer-106ibm4, .framer-f3FeY .framer-1id5yzp, .framer-f3FeY .framer-igym62, .framer-f3FeY .framer-14dc04s, .framer-f3FeY .framer-1au5xtj, .framer-f3FeY .framer-1co2j4d, .framer-f3FeY .framer-1arcjno, .framer-f3FeY .framer-1kxm2ys, .framer-f3FeY .framer-15khkem, .framer-f3FeY .framer-q9yq0s, .framer-f3FeY .framer-14wiod3, .framer-f3FeY .framer-19vgou9, .framer-f3FeY .framer-u8niw4, .framer-f3FeY .framer-1kd04om, .framer-f3FeY .framer-61d1rv, .framer-f3FeY .framer-uboqfc, .framer-f3FeY .framer-y2ec39, .framer-f3FeY .framer-vmfmz8, .framer-f3FeY .framer-mu1ny3, .framer-f3FeY .framer-1118t8m, .framer-f3FeY .framer-16ja8fg, .framer-f3FeY .framer-m9i3ab, .framer-f3FeY .framer-p4d6ky, .framer-f3FeY .framer-1xc0nlo, .framer-f3FeY .framer-kgf09, .framer-f3FeY .framer-1ey1743, .framer-f3FeY .framer-yfnubw, .framer-f3FeY .framer-196z4kg, .framer-f3FeY .framer-ph1sap, .framer-f3FeY .framer-ty87sm, .framer-f3FeY .framer-1g8fqp7, .framer-f3FeY .framer-mhbkt0, .framer-f3FeY .framer-zl3bkl, .framer-f3FeY .framer-c1eutv, .framer-f3FeY .framer-1ezd2ks, .framer-f3FeY .framer-agn14m, .framer-f3FeY .framer-140j23k, .framer-f3FeY .framer-1rpy6q8, .framer-f3FeY .framer-5bekmb, .framer-f3FeY .framer-115webj, .framer-f3FeY .framer-1gjwasg { gap: 0px; } .framer-f3FeY.framer-1mhjbgj > *, .framer-f3FeY .framer-11k3aq4 > *, .framer-f3FeY .framer-1lg6a22 > *, .framer-f3FeY .framer-10f08pq > *, .framer-f3FeY .framer-n71ryx > *, .framer-f3FeY .framer-l7rn12 > *, .framer-f3FeY .framer-xrdd1t > *, .framer-f3FeY .framer-1x2u93d > *, .framer-f3FeY .framer-zl4ugm > *, .framer-f3FeY .framer-15h66zf > *, .framer-f3FeY .framer-7pxqgc > *, .framer-f3FeY .framer-17dzmuk > *, .framer-f3FeY .framer-97z9sr > *, .framer-f3FeY .framer-127e9ef > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-f3FeY.framer-1mhjbgj > :first-child, .framer-f3FeY .framer-1aqy12e > :first-child, .framer-f3FeY .framer-en8dx3 > :first-child, .framer-f3FeY .framer-1mdb8e9 > :first-child, .framer-f3FeY .framer-11k3aq4 > :first-child, .framer-f3FeY .framer-1lg6a22 > :first-child, .framer-f3FeY .framer-10f08pq > :first-child, .framer-f3FeY .framer-n71ryx > :first-child, .framer-f3FeY .framer-l7rn12 > :first-child, .framer-f3FeY .framer-1ayc7ce > :first-child, .framer-f3FeY .framer-rax25x > :first-child, .framer-f3FeY .framer-vbjmaw > :first-child, .framer-f3FeY .framer-nxe89f > :first-child, .framer-f3FeY .framer-xrdd1t > :first-child, .framer-f3FeY .framer-1x2u93d > :first-child, .framer-f3FeY .framer-1fcqxf6 > :first-child, .framer-f3FeY .framer-3i1g5g > :first-child, .framer-f3FeY .framer-zl4ugm > :first-child, .framer-f3FeY .framer-7dq96r > :first-child, .framer-f3FeY .framer-1ijaajl > :first-child, .framer-f3FeY .framer-1algbuk > :first-child, .framer-f3FeY .framer-10kybzd > :first-child, .framer-f3FeY .framer-h3ddmd > :first-child, .framer-f3FeY .framer-1in2uj8 > :first-child, .framer-f3FeY .framer-15h66zf > :first-child, .framer-f3FeY .framer-1uaz8n1 > :first-child, .framer-f3FeY .framer-7pxqgc > :first-child, .framer-f3FeY .framer-5928il > :first-child, .framer-f3FeY .framer-17dzmuk > :first-child, .framer-f3FeY .framer-97z9sr > :first-child, .framer-f3FeY .framer-17yqc0 > :first-child, .framer-f3FeY .framer-127e9ef > :first-child, .framer-f3FeY .framer-aasts5 > :first-child, .framer-f3FeY .framer-xvgfzq > :first-child, .framer-f3FeY .framer-1c8e6js > :first-child, .framer-f3FeY .framer-60ogof > :first-child, .framer-f3FeY .framer-tiyiav > :first-child, .framer-f3FeY .framer-6pdihl > :first-child, .framer-f3FeY .framer-1oimdjn > :first-child, .framer-f3FeY .framer-s7uyqa > :first-child, .framer-f3FeY .framer-1cxccuv > :first-child, .framer-f3FeY .framer-uz8ed4 > :first-child, .framer-f3FeY .framer-1yd6lwf > :first-child, .framer-f3FeY .framer-1id5yzp > :first-child, .framer-f3FeY .framer-igym62 > :first-child, .framer-f3FeY .framer-14dc04s > :first-child, .framer-f3FeY .framer-1au5xtj > :first-child, .framer-f3FeY .framer-1co2j4d > :first-child, .framer-f3FeY .framer-15khkem > :first-child, .framer-f3FeY .framer-q9yq0s > :first-child, .framer-f3FeY .framer-14wiod3 > :first-child, .framer-f3FeY .framer-19vgou9 > :first-child, .framer-f3FeY .framer-u8niw4 > :first-child, .framer-f3FeY .framer-uboqfc > :first-child, .framer-f3FeY .framer-y2ec39 > :first-child, .framer-f3FeY .framer-vmfmz8 > :first-child, .framer-f3FeY .framer-mu1ny3 > :first-child, .framer-f3FeY .framer-1118t8m > :first-child, .framer-f3FeY .framer-16ja8fg > :first-child, .framer-f3FeY .framer-1xc0nlo > :first-child, .framer-f3FeY .framer-kgf09 > :first-child, .framer-f3FeY .framer-1ey1743 > :first-child, .framer-f3FeY .framer-yfnubw > :first-child, .framer-f3FeY .framer-196z4kg > :first-child, .framer-f3FeY .framer-1g8fqp7 > :first-child, .framer-f3FeY .framer-mhbkt0 > :first-child, .framer-f3FeY .framer-zl3bkl > :first-child, .framer-f3FeY .framer-c1eutv > :first-child, .framer-f3FeY .framer-1ezd2ks > :first-child, .framer-f3FeY .framer-1rpy6q8 > :first-child, .framer-f3FeY .framer-5bekmb > :first-child, .framer-f3FeY .framer-115webj > :first-child, .framer-f3FeY .framer-1gjwasg > :first-child { margin-top: 0px; } .framer-f3FeY.framer-1mhjbgj > :last-child, .framer-f3FeY .framer-1aqy12e > :last-child, .framer-f3FeY .framer-en8dx3 > :last-child, .framer-f3FeY .framer-1mdb8e9 > :last-child, .framer-f3FeY .framer-11k3aq4 > :last-child, .framer-f3FeY .framer-1lg6a22 > :last-child, .framer-f3FeY .framer-10f08pq > :last-child, .framer-f3FeY .framer-n71ryx > :last-child, .framer-f3FeY .framer-l7rn12 > :last-child, .framer-f3FeY .framer-1ayc7ce > :last-child, .framer-f3FeY .framer-rax25x > :last-child, .framer-f3FeY .framer-vbjmaw > :last-child, .framer-f3FeY .framer-nxe89f > :last-child, .framer-f3FeY .framer-xrdd1t > :last-child, .framer-f3FeY .framer-1x2u93d > :last-child, .framer-f3FeY .framer-1fcqxf6 > :last-child, .framer-f3FeY .framer-3i1g5g > :last-child, .framer-f3FeY .framer-zl4ugm > :last-child, .framer-f3FeY .framer-7dq96r > :last-child, .framer-f3FeY .framer-1ijaajl > :last-child, .framer-f3FeY .framer-1algbuk > :last-child, .framer-f3FeY .framer-10kybzd > :last-child, .framer-f3FeY .framer-h3ddmd > :last-child, .framer-f3FeY .framer-1in2uj8 > :last-child, .framer-f3FeY .framer-15h66zf > :last-child, .framer-f3FeY .framer-1uaz8n1 > :last-child, .framer-f3FeY .framer-7pxqgc > :last-child, .framer-f3FeY .framer-5928il > :last-child, .framer-f3FeY .framer-17dzmuk > :last-child, .framer-f3FeY .framer-97z9sr > :last-child, .framer-f3FeY .framer-17yqc0 > :last-child, .framer-f3FeY .framer-127e9ef > :last-child, .framer-f3FeY .framer-aasts5 > :last-child, .framer-f3FeY .framer-xvgfzq > :last-child, .framer-f3FeY .framer-1c8e6js > :last-child, .framer-f3FeY .framer-60ogof > :last-child, .framer-f3FeY .framer-tiyiav > :last-child, .framer-f3FeY .framer-6pdihl > :last-child, .framer-f3FeY .framer-1oimdjn > :last-child, .framer-f3FeY .framer-s7uyqa > :last-child, .framer-f3FeY .framer-1cxccuv > :last-child, .framer-f3FeY .framer-uz8ed4 > :last-child, .framer-f3FeY .framer-1yd6lwf > :last-child, .framer-f3FeY .framer-1id5yzp > :last-child, .framer-f3FeY .framer-igym62 > :last-child, .framer-f3FeY .framer-14dc04s > :last-child, .framer-f3FeY .framer-1au5xtj > :last-child, .framer-f3FeY .framer-1co2j4d > :last-child, .framer-f3FeY .framer-15khkem > :last-child, .framer-f3FeY .framer-q9yq0s > :last-child, .framer-f3FeY .framer-14wiod3 > :last-child, .framer-f3FeY .framer-19vgou9 > :last-child, .framer-f3FeY .framer-u8niw4 > :last-child, .framer-f3FeY .framer-uboqfc > :last-child, .framer-f3FeY .framer-y2ec39 > :last-child, .framer-f3FeY .framer-vmfmz8 > :last-child, .framer-f3FeY .framer-mu1ny3 > :last-child, .framer-f3FeY .framer-1118t8m > :last-child, .framer-f3FeY .framer-16ja8fg > :last-child, .framer-f3FeY .framer-1xc0nlo > :last-child, .framer-f3FeY .framer-kgf09 > :last-child, .framer-f3FeY .framer-1ey1743 > :last-child, .framer-f3FeY .framer-yfnubw > :last-child, .framer-f3FeY .framer-196z4kg > :last-child, .framer-f3FeY .framer-1g8fqp7 > :last-child, .framer-f3FeY .framer-mhbkt0 > :last-child, .framer-f3FeY .framer-zl3bkl > :last-child, .framer-f3FeY .framer-c1eutv > :last-child, .framer-f3FeY .framer-1ezd2ks > :last-child, .framer-f3FeY .framer-1rpy6q8 > :last-child, .framer-f3FeY .framer-5bekmb > :last-child, .framer-f3FeY .framer-115webj > :last-child, .framer-f3FeY .framer-1gjwasg > :last-child { margin-bottom: 0px; } .framer-f3FeY .framer-1aqy12e > *, .framer-f3FeY .framer-en8dx3 > *, .framer-f3FeY .framer-1mdb8e9 > *, .framer-f3FeY .framer-rax25x > *, .framer-f3FeY .framer-17yqc0 > *, .framer-f3FeY .framer-60ogof > *, .framer-f3FeY .framer-tiyiav > *, .framer-f3FeY .framer-1cxccuv > *, .framer-f3FeY .framer-uz8ed4 > *, .framer-f3FeY .framer-14dc04s > *, .framer-f3FeY .framer-1au5xtj > *, .framer-f3FeY .framer-14wiod3 > *, .framer-f3FeY .framer-19vgou9 > *, .framer-f3FeY .framer-vmfmz8 > *, .framer-f3FeY .framer-mu1ny3 > *, .framer-f3FeY .framer-1118t8m > *, .framer-f3FeY .framer-1ey1743 > *, .framer-f3FeY .framer-yfnubw > *, .framer-f3FeY .framer-zl3bkl > *, .framer-f3FeY .framer-c1eutv > *, .framer-f3FeY .framer-115webj > *, .framer-f3FeY .framer-1gjwasg > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-f3FeY .framer-18jhoxc > *, .framer-f3FeY .framer-xisv01 > *, .framer-f3FeY .framer-484j0l > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-f3FeY .framer-18jhoxc > :first-child, .framer-f3FeY .framer-nsy7pa > :first-child, .framer-f3FeY .framer-1gcoo3i > :first-child, .framer-f3FeY .framer-xisv01 > :first-child, .framer-f3FeY .framer-11u8lfc > :first-child, .framer-f3FeY .framer-484j0l > :first-child, .framer-f3FeY .framer-105xr0i > :first-child, .framer-f3FeY .framer-eapc85 > :first-child, .framer-f3FeY .framer-1zanvj > :first-child, .framer-f3FeY .framer-1xma1ft > :first-child, .framer-f3FeY .framer-i0zoxu > :first-child, .framer-f3FeY .framer-a4du9u > :first-child, .framer-f3FeY .framer-14izygl > :first-child, .framer-f3FeY .framer-1up2ny1 > :first-child, .framer-f3FeY .framer-p48j7p > :first-child, .framer-f3FeY .framer-id004e > :first-child, .framer-f3FeY .framer-11fawmk > :first-child, .framer-f3FeY .framer-176kc8o > :first-child, .framer-f3FeY .framer-lxkfmg > :first-child, .framer-f3FeY .framer-bj7ywk > :first-child, .framer-f3FeY .framer-fhj9an > :first-child, .framer-f3FeY .framer-14hwif8 > :first-child, .framer-f3FeY .framer-13i363q > :first-child, .framer-f3FeY .framer-3zdxep > :first-child, .framer-f3FeY .framer-u8o6bo > :first-child, .framer-f3FeY .framer-1xkmkcx > :first-child, .framer-f3FeY .framer-nyiza7 > :first-child, .framer-f3FeY .framer-106ibm4 > :first-child, .framer-f3FeY .framer-1arcjno > :first-child, .framer-f3FeY .framer-1kxm2ys > :first-child, .framer-f3FeY .framer-1kd04om > :first-child, .framer-f3FeY .framer-61d1rv > :first-child, .framer-f3FeY .framer-m9i3ab > :first-child, .framer-f3FeY .framer-p4d6ky > :first-child, .framer-f3FeY .framer-ph1sap > :first-child, .framer-f3FeY .framer-ty87sm > :first-child, .framer-f3FeY .framer-agn14m > :first-child, .framer-f3FeY .framer-140j23k > :first-child { margin-left: 0px; } .framer-f3FeY .framer-18jhoxc > :last-child, .framer-f3FeY .framer-nsy7pa > :last-child, .framer-f3FeY .framer-1gcoo3i > :last-child, .framer-f3FeY .framer-xisv01 > :last-child, .framer-f3FeY .framer-11u8lfc > :last-child, .framer-f3FeY .framer-484j0l > :last-child, .framer-f3FeY .framer-105xr0i > :last-child, .framer-f3FeY .framer-eapc85 > :last-child, .framer-f3FeY .framer-1zanvj > :last-child, .framer-f3FeY .framer-1xma1ft > :last-child, .framer-f3FeY .framer-i0zoxu > :last-child, .framer-f3FeY .framer-a4du9u > :last-child, .framer-f3FeY .framer-14izygl > :last-child, .framer-f3FeY .framer-1up2ny1 > :last-child, .framer-f3FeY .framer-p48j7p > :last-child, .framer-f3FeY .framer-id004e > :last-child, .framer-f3FeY .framer-11fawmk > :last-child, .framer-f3FeY .framer-176kc8o > :last-child, .framer-f3FeY .framer-lxkfmg > :last-child, .framer-f3FeY .framer-bj7ywk > :last-child, .framer-f3FeY .framer-fhj9an > :last-child, .framer-f3FeY .framer-14hwif8 > :last-child, .framer-f3FeY .framer-13i363q > :last-child, .framer-f3FeY .framer-3zdxep > :last-child, .framer-f3FeY .framer-u8o6bo > :last-child, .framer-f3FeY .framer-1xkmkcx > :last-child, .framer-f3FeY .framer-nyiza7 > :last-child, .framer-f3FeY .framer-106ibm4 > :last-child, .framer-f3FeY .framer-1arcjno > :last-child, .framer-f3FeY .framer-1kxm2ys > :last-child, .framer-f3FeY .framer-1kd04om > :last-child, .framer-f3FeY .framer-61d1rv > :last-child, .framer-f3FeY .framer-m9i3ab > :last-child, .framer-f3FeY .framer-p4d6ky > :last-child, .framer-f3FeY .framer-ph1sap > :last-child, .framer-f3FeY .framer-ty87sm > :last-child, .framer-f3FeY .framer-agn14m > :last-child, .framer-f3FeY .framer-140j23k > :last-child { margin-right: 0px; } .framer-f3FeY .framer-nsy7pa > *, .framer-f3FeY .framer-11u8lfc > *, .framer-f3FeY .framer-105xr0i > *, .framer-f3FeY .framer-1zanvj > *, .framer-f3FeY .framer-1xma1ft > *, .framer-f3FeY .framer-i0zoxu > *, .framer-f3FeY .framer-p48j7p > *, .framer-f3FeY .framer-11fawmk > *, .framer-f3FeY .framer-176kc8o > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-f3FeY .framer-1gcoo3i > *, .framer-f3FeY .framer-a4du9u > *, .framer-f3FeY .framer-1up2ny1 > *, .framer-f3FeY .framer-bj7ywk > *, .framer-f3FeY .framer-fhj9an > *, .framer-f3FeY .framer-14hwif8 > *, .framer-f3FeY .framer-13i363q > *, .framer-f3FeY .framer-3zdxep > *, .framer-f3FeY .framer-u8o6bo > *, .framer-f3FeY .framer-1xkmkcx > *, .framer-f3FeY .framer-nyiza7 > *, .framer-f3FeY .framer-106ibm4 > *, .framer-f3FeY .framer-1arcjno > *, .framer-f3FeY .framer-1kxm2ys > *, .framer-f3FeY .framer-1kd04om > *, .framer-f3FeY .framer-61d1rv > *, .framer-f3FeY .framer-m9i3ab > *, .framer-f3FeY .framer-p4d6ky > *, .framer-f3FeY .framer-ph1sap > *, .framer-f3FeY .framer-ty87sm > *, .framer-f3FeY .framer-agn14m > *, .framer-f3FeY .framer-140j23k > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-f3FeY .framer-eapc85 > *, .framer-f3FeY .framer-lxkfmg > * { margin: 0px; margin-left: calc(54px / 2); margin-right: calc(54px / 2); } .framer-f3FeY .framer-1ayc7ce > *, .framer-f3FeY .framer-xvgfzq > *, .framer-f3FeY .framer-1oimdjn > *, .framer-f3FeY .framer-1id5yzp > *, .framer-f3FeY .framer-15khkem > *, .framer-f3FeY .framer-uboqfc > *, .framer-f3FeY .framer-1xc0nlo > *, .framer-f3FeY .framer-1g8fqp7 > *, .framer-f3FeY .framer-1rpy6q8 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-f3FeY .framer-vbjmaw > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-f3FeY .framer-nxe89f > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-f3FeY .framer-14izygl > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-f3FeY .framer-id004e > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-f3FeY .framer-1fcqxf6 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-f3FeY .framer-3i1g5g > *, .framer-f3FeY .framer-1in2uj8 > *, .framer-f3FeY .framer-1uaz8n1 > *, .framer-f3FeY .framer-5928il > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-f3FeY .framer-7dq96r > *, .framer-f3FeY .framer-1ijaajl > *, .framer-f3FeY .framer-1algbuk > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-f3FeY .framer-10kybzd > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-f3FeY .framer-h3ddmd > * { margin: 0px; margin-bottom: calc(88px / 2); margin-top: calc(88px / 2); } .framer-f3FeY .framer-aasts5 > *, .framer-f3FeY .framer-6pdihl > *, .framer-f3FeY .framer-1yd6lwf > *, .framer-f3FeY .framer-1co2j4d > *, .framer-f3FeY .framer-u8niw4 > *, .framer-f3FeY .framer-16ja8fg > *, .framer-f3FeY .framer-196z4kg > *, .framer-f3FeY .framer-1ezd2ks > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-f3FeY .framer-1c8e6js > *, .framer-f3FeY .framer-s7uyqa > *, .framer-f3FeY .framer-igym62 > *, .framer-f3FeY .framer-q9yq0s > *, .framer-f3FeY .framer-y2ec39 > *, .framer-f3FeY .framer-kgf09 > *, .framer-f3FeY .framer-mhbkt0 > *, .framer-f3FeY .framer-5bekmb > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-f3FeY { background: var(--token-b07a9cf1-6876-49b7-94f6-d352b04ef565, rgb(255, 255, 255)); } .framer-f3FeY.framer-1mhjbgj { width: 810px; } .framer-f3FeY .framer-1yw9v1s { right: 0px; width: unset; } .framer-f3FeY .framer-1aqy12e { left: 0px; min-width: unset; transform: translateY(-50%); width: 564px; } .framer-f3FeY .framer-17gutjy { bottom: unset; height: 411px; left: 47px; top: calc(36.38443935926776% - 411px / 2); width: 319px; } .framer-f3FeY .framer-12wqnia { left: 114px; top: calc(35.69794050343252% - 540px / 2); } .framer-f3FeY .framer-1mdb8e9, .framer-f3FeY .framer-1vqosh7-container, .framer-f3FeY .framer-97z9sr { order: 0; } .framer-f3FeY .framer-ipa874 { flex-wrap: wrap; gap: 32px; justify-content: center; } .framer-f3FeY .framer-xisv01 { order: 1; width: 49%; } .framer-f3FeY .framer-484j0l { order: 2; width: 40%; } .framer-f3FeY .framer-eapc85 { gap: 32px; order: 1; } .framer-f3FeY .framer-1xma1ft { height: 355px; } .framer-f3FeY .framer-lxkfmg { order: 2; padding: 120px 4px 120px 4px; width: 90%; } .framer-f3FeY .framer-h3ddmd { flex: 1 0 0px; order: 1; width: 1px; } .framer-f3FeY .framer-1in2uj8, .framer-f3FeY .framer-15h66zf, .framer-f3FeY .framer-1rdlk23, .framer-f3FeY .framer-1uaz8n1, .framer-f3FeY .framer-7pxqgc, .framer-f3FeY .framer-2q021w, .framer-f3FeY .framer-17dzmuk, .framer-f3FeY .framer-1ncluc0 { width: 100%; } .framer-f3FeY .framer-5928il { max-width: unset; width: 100%; } .framer-f3FeY .framer-iur0ao { order: 3; } .framer-f3FeY .framer-3ed3oj { flex: none; justify-content: start; order: 1; width: 364px; } .framer-f3FeY .framer-pme4sm-container, .framer-f3FeY .framer-vc6o1y-container, .framer-f3FeY .framer-1qv6ctb-container, .framer-f3FeY .framer-1bbjqtc-container, .framer-f3FeY .framer-tsels1-container, .framer-f3FeY .framer-1pwstyc-container { aspect-ratio: 1.3893129770992367 / 1; height: var(--framer-aspect-ratio-supported, 262px); width: 364px; } .framer-f3FeY .framer-3zdxep, .framer-f3FeY .framer-1xkmkcx { gap: 16px; } .framer-f3FeY .framer-xvgfzq, .framer-f3FeY .framer-1oimdjn, .framer-f3FeY .framer-1id5yzp, .framer-f3FeY .framer-15khkem, .framer-f3FeY .framer-uboqfc, .framer-f3FeY .framer-1xc0nlo, .framer-f3FeY .framer-1rpy6q8 { padding: 16px 24px 0px 0px; position: sticky; top: 0px; will-change: transform; z-index: 1; } .framer-f3FeY .framer-1638v7x, .framer-f3FeY .framer-hho9v9, .framer-f3FeY .framer-6bgm4j, .framer-f3FeY .framer-1r8zszf, .framer-f3FeY .framer-hzqubr, .framer-f3FeY .framer-1chs0xz, .framer-f3FeY .framer-6d24mu, .framer-f3FeY .framer-1a7co46, .framer-f3FeY .framer-ojv28r, .framer-f3FeY .framer-4ldcbp, .framer-f3FeY .framer-1msvtd1, .framer-f3FeY .framer-d5ypvz, .framer-f3FeY .framer-11hr1wp, .framer-f3FeY .framer-1q29om, .framer-f3FeY .framer-1rg1qtl, .framer-f3FeY .framer-url174 { width: 93%; } .framer-f3FeY .framer-11qohvm-container, .framer-f3FeY .framer-57x0yv-container, .framer-f3FeY .framer-1fp1v46-container, .framer-f3FeY .framer-9y25pg-container, .framer-f3FeY .framer-1kdkjo-container, .framer-f3FeY .framer-uidt95-container, .framer-f3FeY .framer-46bds4-container { height: 350px; } .framer-f3FeY .framer-106ibm4, .framer-f3FeY .framer-1kxm2ys, .framer-f3FeY .framer-61d1rv, .framer-f3FeY .framer-p4d6ky, .framer-f3FeY .framer-ty87sm, .framer-f3FeY .framer-140j23k { align-content: flex-start; align-items: flex-start; gap: 16px; } .framer-f3FeY .framer-1118t8m { overflow: visible; } .framer-f3FeY .framer-1g8fqp7 { padding: 16px 24px 0px 0px; position: sticky; top: 0px; width: 300px; will-change: transform; z-index: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-f3FeY .framer-ipa874, .framer-f3FeY .framer-eapc85, .framer-f3FeY .framer-3zdxep, .framer-f3FeY .framer-1xkmkcx, .framer-f3FeY .framer-106ibm4, .framer-f3FeY .framer-1kxm2ys, .framer-f3FeY .framer-61d1rv, .framer-f3FeY .framer-p4d6ky, .framer-f3FeY .framer-ty87sm, .framer-f3FeY .framer-140j23k { gap: 0px; } .framer-f3FeY .framer-ipa874 > *, .framer-f3FeY .framer-eapc85 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-f3FeY .framer-ipa874 > :first-child, .framer-f3FeY .framer-eapc85 > :first-child, .framer-f3FeY .framer-3zdxep > :first-child, .framer-f3FeY .framer-1xkmkcx > :first-child, .framer-f3FeY .framer-106ibm4 > :first-child, .framer-f3FeY .framer-1kxm2ys > :first-child, .framer-f3FeY .framer-61d1rv > :first-child, .framer-f3FeY .framer-p4d6ky > :first-child, .framer-f3FeY .framer-ty87sm > :first-child, .framer-f3FeY .framer-140j23k > :first-child { margin-left: 0px; } .framer-f3FeY .framer-ipa874 > :last-child, .framer-f3FeY .framer-eapc85 > :last-child, .framer-f3FeY .framer-3zdxep > :last-child, .framer-f3FeY .framer-1xkmkcx > :last-child, .framer-f3FeY .framer-106ibm4 > :last-child, .framer-f3FeY .framer-1kxm2ys > :last-child, .framer-f3FeY .framer-61d1rv > :last-child, .framer-f3FeY .framer-p4d6ky > :last-child, .framer-f3FeY .framer-ty87sm > :last-child, .framer-f3FeY .framer-140j23k > :last-child { margin-right: 0px; } .framer-f3FeY .framer-3zdxep > *, .framer-f3FeY .framer-1xkmkcx > *, .framer-f3FeY .framer-106ibm4 > *, .framer-f3FeY .framer-1kxm2ys > *, .framer-f3FeY .framer-61d1rv > *, .framer-f3FeY .framer-p4d6ky > *, .framer-f3FeY .framer-ty87sm > *, .framer-f3FeY .framer-140j23k > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-f3FeY { background: var(--token-b07a9cf1-6876-49b7-94f6-d352b04ef565, rgb(255, 255, 255)); } .framer-f3FeY.framer-1mhjbgj { width: 390px; } .framer-f3FeY .framer-1yw9v1s { order: 0; right: 0px; width: unset; } .framer-f3FeY .framer-1aqy12e { left: 0px; min-width: unset; transform: translateY(-50%); width: 564px; } .framer-f3FeY .framer-17gutjy { bottom: unset; height: 411px; left: 47px; top: calc(36.38443935926776% - 411px / 2); width: 319px; } .framer-f3FeY .framer-12wqnia { left: 114px; top: calc(35.69794050343252% - 540px / 2); } .framer-f3FeY .framer-104ljtx-container { order: 1; } .framer-f3FeY .framer-en8dx3 { gap: 25px; order: 2; } .framer-f3FeY .framer-eapc85 { flex-direction: column; order: 0; padding: 16px 16px 60px 16px; } .framer-f3FeY .framer-1ayc7ce { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-f3FeY .framer-1xma1ft { height: 331px; } .framer-f3FeY .framer-vbjmaw { flex: none; max-width: unset; width: 100%; } .framer-f3FeY .framer-lxkfmg { align-content: center; align-items: center; flex-direction: column; order: 2; padding: 60px 16px 60px 16px; } .framer-f3FeY .framer-h3ddmd { gap: 2px; height: min-content; order: 0; width: 90%; } .framer-f3FeY .framer-1in2uj8 { flex: none; height: min-content; order: 1; padding: 32px 0px 32px 0px; width: 100%; } .framer-f3FeY .framer-15h66zf, .framer-f3FeY .framer-1rdlk23, .framer-f3FeY .framer-7pxqgc, .framer-f3FeY .framer-2q021w, .framer-f3FeY .framer-17dzmuk, .framer-f3FeY .framer-1ncluc0, .framer-f3FeY .framer-1ek0ho6 { width: 100%; } .framer-f3FeY .framer-1uaz8n1 { flex: none; height: min-content; order: 0; padding: 32px 0px 32px 0px; width: 100%; } .framer-f3FeY .framer-5928il { flex: none; height: min-content; order: 2; padding: 32px 0px 32px 0px; width: 100%; } .framer-f3FeY .framer-iur0ao { flex-direction: column; gap: 24px; justify-content: center; order: 3; } .framer-f3FeY .framer-97z9sr { justify-content: flex-start; position: relative; top: unset; width: 100%; } .framer-f3FeY .framer-17yqc0 { max-width: 351px; padding: 0px; width: 100%; } .framer-f3FeY .framer-127e9ef, .framer-f3FeY .framer-1s3v3qt-container { align-self: unset; width: 100%; } .framer-f3FeY .framer-3ed3oj { flex: none; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); justify-content: start; width: 100%; } .framer-f3FeY .framer-pme4sm-container, .framer-f3FeY .framer-vc6o1y-container, .framer-f3FeY .framer-1qv6ctb-container, .framer-f3FeY .framer-1bbjqtc-container, .framer-f3FeY .framer-tsels1-container, .framer-f3FeY .framer-1pwstyc-container { justify-self: start; } .framer-f3FeY .framer-aasts5 { order: 3; } .framer-f3FeY .framer-3zdxep, .framer-f3FeY .framer-1xkmkcx, .framer-f3FeY .framer-106ibm4, .framer-f3FeY .framer-1kxm2ys, .framer-f3FeY .framer-61d1rv, .framer-f3FeY .framer-p4d6ky, .framer-f3FeY .framer-ty87sm, .framer-f3FeY .framer-140j23k { flex-direction: column; gap: 16px; padding: 0px 0px 20px 0px; } .framer-f3FeY .framer-xvgfzq, .framer-f3FeY .framer-1oimdjn { align-content: center; align-items: center; align-self: unset; height: min-content; padding: 16px 0px 0px 0px; width: 100%; } .framer-f3FeY .framer-1c8e6js { justify-content: center; padding: 0px 0px 17px 0px; position: relative; top: unset; } .framer-f3FeY .framer-sgpw19, .framer-f3FeY .framer-1c0kmi0, .framer-f3FeY .framer-1kq7h74, .framer-f3FeY .framer-wqy7rc, .framer-f3FeY .framer-1nf0sou, .framer-f3FeY .framer-128w2o1, .framer-f3FeY .framer-irixl9, .framer-f3FeY .framer-7fgkov { flex: none; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); width: 100%; } .framer-f3FeY .framer-6pdihl { order: 4; } .framer-f3FeY .framer-s7uyqa, .framer-f3FeY .framer-igym62, .framer-f3FeY .framer-kgf09, .framer-f3FeY .framer-mhbkt0, .framer-f3FeY .framer-5bekmb { align-content: center; align-items: center; position: relative; top: unset; } .framer-f3FeY .framer-1cxccuv, .framer-f3FeY .framer-14dc04s, .framer-f3FeY .framer-q9yq0s, .framer-f3FeY .framer-14wiod3, .framer-f3FeY .framer-y2ec39, .framer-f3FeY .framer-vmfmz8, .framer-f3FeY .framer-1ey1743, .framer-f3FeY .framer-zl3bkl, .framer-f3FeY .framer-115webj { align-content: center; align-items: center; } .framer-f3FeY .framer-6bgm4j, .framer-f3FeY .framer-1r8zszf, .framer-f3FeY .framer-hzqubr, .framer-f3FeY .framer-1chs0xz, .framer-f3FeY .framer-6d24mu, .framer-f3FeY .framer-1a7co46, .framer-f3FeY .framer-ojv28r, .framer-f3FeY .framer-4ldcbp, .framer-f3FeY .framer-1msvtd1, .framer-f3FeY .framer-d5ypvz, .framer-f3FeY .framer-11hr1wp, .framer-f3FeY .framer-1q29om, .framer-f3FeY .framer-1rg1qtl, .framer-f3FeY .framer-url174 { width: 95%; } .framer-f3FeY .framer-1yd6lwf { order: 5; } .framer-f3FeY .framer-1id5yzp, .framer-f3FeY .framer-15khkem, .framer-f3FeY .framer-uboqfc, .framer-f3FeY .framer-1xc0nlo, .framer-f3FeY .framer-1g8fqp7, .framer-f3FeY .framer-1rpy6q8 { align-content: center; align-items: center; align-self: unset; height: min-content; justify-content: center; padding: 16px 0px 0px 0px; width: 100%; } .framer-f3FeY .framer-1co2j4d { order: 6; } .framer-f3FeY .framer-u8niw4 { order: 7; } .framer-f3FeY .framer-1118t8m { order: 8; } .framer-f3FeY .framer-ipvyqx-container { order: 9; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-f3FeY .framer-en8dx3, .framer-f3FeY .framer-eapc85, .framer-f3FeY .framer-lxkfmg, .framer-f3FeY .framer-h3ddmd, .framer-f3FeY .framer-iur0ao, .framer-f3FeY .framer-3zdxep, .framer-f3FeY .framer-1xkmkcx, .framer-f3FeY .framer-106ibm4, .framer-f3FeY .framer-1kxm2ys, .framer-f3FeY .framer-61d1rv, .framer-f3FeY .framer-p4d6ky, .framer-f3FeY .framer-ty87sm, .framer-f3FeY .framer-140j23k { gap: 0px; } .framer-f3FeY .framer-en8dx3 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-f3FeY .framer-en8dx3 > :first-child, .framer-f3FeY .framer-eapc85 > :first-child, .framer-f3FeY .framer-lxkfmg > :first-child, .framer-f3FeY .framer-h3ddmd > :first-child, .framer-f3FeY .framer-iur0ao > :first-child, .framer-f3FeY .framer-3zdxep > :first-child, .framer-f3FeY .framer-1xkmkcx > :first-child, .framer-f3FeY .framer-106ibm4 > :first-child, .framer-f3FeY .framer-1kxm2ys > :first-child, .framer-f3FeY .framer-61d1rv > :first-child, .framer-f3FeY .framer-p4d6ky > :first-child, .framer-f3FeY .framer-ty87sm > :first-child, .framer-f3FeY .framer-140j23k > :first-child { margin-top: 0px; } .framer-f3FeY .framer-en8dx3 > :last-child, .framer-f3FeY .framer-eapc85 > :last-child, .framer-f3FeY .framer-lxkfmg > :last-child, .framer-f3FeY .framer-h3ddmd > :last-child, .framer-f3FeY .framer-iur0ao > :last-child, .framer-f3FeY .framer-3zdxep > :last-child, .framer-f3FeY .framer-1xkmkcx > :last-child, .framer-f3FeY .framer-106ibm4 > :last-child, .framer-f3FeY .framer-1kxm2ys > :last-child, .framer-f3FeY .framer-61d1rv > :last-child, .framer-f3FeY .framer-p4d6ky > :last-child, .framer-f3FeY .framer-ty87sm > :last-child, .framer-f3FeY .framer-140j23k > :last-child { margin-bottom: 0px; } .framer-f3FeY .framer-eapc85 > *, .framer-f3FeY .framer-lxkfmg > * { margin: 0px; margin-bottom: calc(54px / 2); margin-top: calc(54px / 2); } .framer-f3FeY .framer-h3ddmd > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-f3FeY .framer-iur0ao > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-f3FeY .framer-3zdxep > *, .framer-f3FeY .framer-1xkmkcx > *, .framer-f3FeY .framer-106ibm4 > *, .framer-f3FeY .framer-1kxm2ys > *, .framer-f3FeY .framer-61d1rv > *, .framer-f3FeY .framer-p4d6ky > *, .framer-f3FeY .framer-ty87sm > *, .framer-f3FeY .framer-140j23k > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6174\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TXuNMVODO\":{\"layout\":[\"fixed\",\"auto\"]},\"wchqfi5Zg\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerMfj65VgNa=withCSS(Component,css,\"framer-f3FeY\");export default FramerMfj65VgNa;FramerMfj65VgNa.displayName=\"Home\";FramerMfj65VgNa.defaultProps={height:6174,width:1200};addFonts(FramerMfj65VgNa,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew7Y3tcoqK5.woff2\",weight:\"500\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w7Y3tcoqK5.woff2\",weight:\"600\"}]},...BTKNavbarCopyFonts,...PhosphorFonts,...CarouselFonts,...BTKChipFonts,...MainButtonFonts,...DropdownFonts,...BTKDownloadFileFonts,...ProductFeatureCardsFonts,...BTKProductCardFonts,...BTKButtonFonts,...BTKProductCardFlipFonts,...BTKFooterWebFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"hOs0PamKG\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"hOs0PamKG\"]):[],...((_componentPresets_fonts2=componentPresets.fonts)===null||_componentPresets_fonts2===void 0?void 0:_componentPresets_fonts2[\"kWyObkcbT\"])?getFontsFromComponentPreset((_componentPresets_fonts3=componentPresets.fonts)===null||_componentPresets_fonts3===void 0?void 0:_componentPresets_fonts3[\"kWyObkcbT\"]):[],...((_componentPresets_fonts4=componentPresets.fonts)===null||_componentPresets_fonts4===void 0?void 0:_componentPresets_fonts4[\"n1fkI0ztE\"])?getFontsFromComponentPreset((_componentPresets_fonts5=componentPresets.fonts)===null||_componentPresets_fonts5===void 0?void 0:_componentPresets_fonts5[\"n1fkI0ztE\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMfj65VgNa\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"6174\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TXuNMVODO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wchqfi5Zg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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AY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YA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",
  "names": ["clamp", "t", "e", "progress", "t", "e", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "bK9wbRIXN_0_exports", "__export", "__FramerMetadata__", "v0", "v0", "__FramerMetadata__", "_componentPresets_fonts", "_componentPresets_fonts1", "_componentPresets_fonts2", "_componentPresets_fonts3", "_componentPresets_fonts4", "_componentPresets_fonts5", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "bK9wbRIXN_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "icon", "id", "question", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "iiMdOSMZJ", "J7G7EXb9i", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapaolt5f", "args", "onTapoc1aq9", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "ComponentPresetsProvider", "css", "FramerbK9wbRIXN", "withCSS", "bK9wbRIXN_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "Ne0YI6XE9_0_exports", "__export", "__FramerMetadata__", "v0", "v0", "__FramerMetadata__", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "Ne0YI6XE9_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "toResponsiveImage", "equals", "b", "numberToString", "options", "activeLocale", "fallbackLocale", "useGrouping", "notation", "compactDisplay", "style", "currency", "currencyDisplay", "unit", "unitDisplay", "minimumFractionDigits", "maximumFractionDigits", "minimumIntegerDigits", "formatOptions", "number", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "amount", "height", "icon", "id", "link", "name1", "priceDE", "priceMX", "productImage", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "className", "layoutId", "moJpa9fOL", "b3XhJXWHc", "JKMDVHmuD", "eIDTCCbFG", "CqXepztG8", "VXSpRY0gq", "M8b9yUOFa", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "visible", "activeLocaleCode", "useLocaleCode", "textContent", "visible1", "textContent1", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "RichText2", "ComponentViewportProvider", "css", "FramerNe0YI6XE9", "withCSS", "Ne0YI6XE9_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "icon", "icon2", "id", "link", "tap", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "gr9ZCHGtN", "ko_tw_qVF", "RYxCQW8QV", "Js5Czaztf", "snewGjd9G", "rfX4d8Fj1", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap19hwgzp", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "addPropertyOverrides", "u", "cx", "serializationHash", "ComponentViewportProvider", "Icon", "RichText2", "css", "FramerTdH0xnVdZ", "withCSS", "TdH0xnVdZ_default", "addPropertyControls", "ControlType", "PhosphorControls", "addFonts", "PhosphorFonts", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "icon", "id", "link", "text", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "tFunZcLax", "mRNgJRAOf", "r0KHO8k_2", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "serializationHash", "addPropertyOverrides", "ComponentViewportProvider", "Icon", "RichText2", "css", "FramerubdAZwxj1", "withCSS", "ubdAZwxj1_default", "addPropertyControls", "ControlType", "PhosphorControls", "addFonts", "PhosphorFonts", "getFontsFromSharedStyle", "fonts", "_componentPresets_fonts", "_componentPresets_fonts1", "_componentPresets_fonts2", "_componentPresets_fonts3", "_componentPresets_fonts4", "_componentPresets_fonts5", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "BTKNavbarCopyFonts", "getFonts", "RpxAS082i_default", "BTKNavbarCopyWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithOptimizedAppearEffect", "Container", "PhosphorFonts", "Icon", "MotionAWithOptimizedAppearEffect", "CarouselFonts", "Carousel", "RichTextWithOptimizedAppearEffect", "RichText2", "BTKChipFonts", "ARMZLEvYm_default", "MainButtonFonts", "ubdAZwxj1_default", "DropdownFonts", "bK9wbRIXN_default", "BTKDownloadFileFonts", "TdH0xnVdZ_default", "ProductFeatureCardsFonts", "IMATnjlcB_default", "ProductFeatureCardsWithVariantAppearEffect", "BTKProductCardFonts", "Ne0YI6XE9_default", "MotionSectionWithFX", "withFX", "BTKButtonFonts", "lVMUmNV2A_default", "BTKProductCardFlipFonts", "MVy2gyVBV_default", "MotionDivWithFX", "BTKFooterWebFonts", "NzXJ0Sfjo_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "valuesByLocaleId", "LazyValue", "preloadLocalizedValues", "locale", "promises", "values", "promise", "getLocalizedValue", "key", "value", "transformTemplate1", "_", "transition1", "animation", "animation1", "transformTemplate2", "transition2", "animation2", "animation3", "transition3", "animation4", "transition4", "animation5", "transition5", "animation6", "transition6", "animation7", "toResponsiveImage", "equals", "b", "negate", "numberToString", "options", "activeLocale", "fallbackLocale", "useGrouping", "notation", "compactDisplay", "style", "currency", "currencyDisplay", "unit", "unitDisplay", "minimumFractionDigits", "maximumFractionDigits", "minimumIntegerDigits", "formatOptions", "number", "suffix", "prefix", "greaterThan", "transition7", "animation8", "convertFromEnum", "ma26Qj6DV", "IxVtutIX6", "toBoolean", "convertFromEnum1", "Byh9ZqV1F", "BTfiCd0B4", "convertFromEnum2", "CF5FnJZL2", "NIJfXovOT", "convertFromEnum3", "KSnh_KleD", "O1TClIQnV", "convertFromEnum4", "LGe2tFJ7i", "mABwTbaL4", "convertFromEnum5", "WhUrm0asV", "XN2ZHyT0I", "transition8", "animation9", "convertFromEnum6", "toString", "convertFromEnum7", "convertFromEnum8", "zu9V9w57k", "fMv7e0O0g", "convertFromEnum9", "HVIhzcu19", "cZy4s4aT_", "addImageAlt", "image", "alt", "isSet", "animation10", "animation11", "convertFromBoolean", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "_enumToDisplayNameFunctions_LXa5Usllu", "_enumToDisplayNameFunctions_nxH24Ohrt", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "P3YwLYrCH_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "_getFromCurrentRouteData3", "_getFromCurrentRouteData4", "_getFromCurrentRouteData5", "_getFromCurrentRouteData6", "_getFromCurrentRouteData7", "_getFromCurrentRouteData8", "_getFromCurrentRouteData9", "_getFromCurrentRouteData10", "_getFromCurrentRouteData11", "_getFromCurrentRouteData12", "_getFromCurrentRouteData13", "_getFromCurrentRouteData14", "_getFromCurrentRouteData15", "_getFromCurrentRouteData16", "_getFromCurrentRouteData17", "_getFromCurrentRouteData18", "_getFromCurrentRouteData19", "_getFromCurrentRouteData20", "_getFromCurrentRouteData21", "_getFromCurrentRouteData22", "_getFromCurrentRouteData23", "_getFromCurrentRouteData24", "_getFromCurrentRouteData25", "_getFromCurrentRouteData26", "_getFromCurrentRouteData27", "_getFromCurrentRouteData28", "_getFromCurrentRouteData29", "_getFromCurrentRouteData30", "_getFromCurrentRouteData31", "_getFromCurrentRouteData32", "_getFromCurrentRouteData33", "_getFromCurrentRouteData34", "_getFromCurrentRouteData35", "_getFromCurrentRouteData36", "_getFromCurrentRouteData37", "_getFromCurrentRouteData38", "_getFromCurrentRouteData39", "_getFromCurrentRouteData40", "_getFromCurrentRouteData41", "_getFromCurrentRouteData42", "_getFromCurrentRouteData43", "_getFromCurrentRouteData44", "_getFromCurrentRouteData45", "className", "layoutId", "variant", "xP3whClf3", "BkA7imhWE", "QBz_MVDyv", "zzJBLdR5S", "LXa5Usllu", "nxH24Ohrt", "LeMjBkh4u", "wEZ3WTX1R", "UEHv686jw", "O4f6aiyJY", "BHZA8Ym30", "aKabLVz2a", "UVjHLv96K", "pyu6yYSqi", "ymxM8A13p", "b5zoo1Z4I", "CR3A2F4j3", "UrdELWoUY", "PBOvU7vUl", "h8mqRWKaJ", "hiaO9smiQ", "SrAMZK3G5", "zTtE93E5I", "g2mJm5iRD", "WSTpJNSAN", "efZDbfNxr", "SVsqQEpxs", "swtF1AOZw", "UoF8oPhIp", "IKLiUiNzk", "QNCodQCQZ", "rCPch4VSQ", "pPvJwFuW1", "BHZA8Ym30C2_O8H85F", "lP3tY_j3lC2_O8H85F", "LeMjBkh4uC2_O8H85F", "hgbxjOnPwC2_O8H85F", "LXa5UslluC2_O8H85F", "wEZ3WTX1RC2_O8H85F", "UEHv686jwC2_O8H85F", "idC2_O8H85F", "BHZA8Ym30kUImJ78q_", "lP3tY_j3lkUImJ78q_", "LeMjBkh4ukUImJ78q_", "hgbxjOnPwkUImJ78q_", "LXa5UsllukUImJ78q_", "wEZ3WTX1RkUImJ78q_", "UEHv686jwkUImJ78q_", "idkUImJ78q_", "BHZA8Ym30C9XrYWyyY", "lP3tY_j3lC9XrYWyyY", "LeMjBkh4uC9XrYWyyY", "hgbxjOnPwC9XrYWyyY", "LXa5UslluC9XrYWyyY", "wEZ3WTX1RC9XrYWyyY", "UEHv686jwC9XrYWyyY", "idC9XrYWyyY", "BHZA8Ym30gAtzmtC3M", "lP3tY_j3lgAtzmtC3M", "LeMjBkh4ugAtzmtC3M", "hgbxjOnPwgAtzmtC3M", "LXa5UsllugAtzmtC3M", "wEZ3WTX1RgAtzmtC3M", "UEHv686jwgAtzmtC3M", "idgAtzmtC3M", "BHZA8Ym30LRS7xb__p", "lP3tY_j3lLRS7xb__p", "LeMjBkh4uLRS7xb__p", "hgbxjOnPwLRS7xb__p", "LXa5UslluLRS7xb__p", "wEZ3WTX1RLRS7xb__p", "UEHv686jwLRS7xb__p", "idLRS7xb__p", "UGX4PHsOf", "BHZA8Ym30LDOL1wJ_n", "lP3tY_j3lLDOL1wJ_n", "LeMjBkh4uLDOL1wJ_n", "hgbxjOnPwLDOL1wJ_n", "LXa5UslluLDOL1wJ_n", "wEZ3WTX1RLDOL1wJ_n", "UEHv686jwLDOL1wJ_n", "HiU5rnhxmLDOL1wJ_n", "idLDOL1wJ_n", "eCia3oEBa", "BHZA8Ym30Ma5RvOX4r", "lP3tY_j3lMa5RvOX4r", "LeMjBkh4uMa5RvOX4r", "hgbxjOnPwMa5RvOX4r", "LXa5UslluMa5RvOX4r", "wEZ3WTX1RMa5RvOX4r", "UEHv686jwMa5RvOX4r", "idMa5RvOX4r", "Fgn1zsPPT", "BHZA8Ym30HcwmSfX8r", "lP3tY_j3lHcwmSfX8r", "LeMjBkh4uHcwmSfX8r", "hgbxjOnPwHcwmSfX8r", "LXa5UslluHcwmSfX8r", "wEZ3WTX1RHcwmSfX8r", "UEHv686jwHcwmSfX8r", "idHcwmSfX8r", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "preloadPromise", "ref1", "pe", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref2", "visible", "textContent", "enumToDisplayNameFunctions", "visible1", "textContent1", "visible2", "activeLocaleCode", "useLocaleCode", "_getLocalizedValue", "_getLocalizedValue1", "textContent2", "visible3", "_getLocalizedValue2", "_getLocalizedValue3", "textContent3", "visible4", "_getLocalizedValue4", "textContent4", "visible5", "router", "useRouter", "visible6", "visible7", "visible8", "visible9", "visible10", "visible11", "ref3", "ref4", "ref5", "elementId1", "visible12", "elementId2", "elementId3", "elementId4", "ref6", "elementId5", "ref7", "elementId6", "ref8", "elementId7", "ref9", "visible13", "elementId8", "ref10", "elementId9", "ref11", "elementId10", "ref12", "elementId11", "ref13", "elementId12", "ref14", "elementId13", "ref15", "elementId14", "ref16", "elementId15", "ref17", "elementId16", "ref18", "elementId17", "ref19", "elementId18", "ref20", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "_getLocalizedValue17", "_getLocalizedValue18", "_getLocalizedValue19", "_getLocalizedValue20", "_getLocalizedValue21", "_getLocalizedValue22", "_getLocalizedValue23", "_getLocalizedValue24", "_getLocalizedValue25", "_getLocalizedValue26", "_getLocalizedValue27", "_getLocalizedValue28", "_getLocalizedValue29", "_getLocalizedValue30", "_getLocalizedValue31", "_getLocalizedValue32", "_getLocalizedValue33", "_getLocalizedValue34", "_getLocalizedValue35", "_getLocalizedValue36", "_getLocalizedValue37", "_getLocalizedValue38", "_getLocalizedValue39", "_getLocalizedValue40", "_getLocalizedValue41", "_getLocalizedValue42", "_getLocalizedValue43", "_getLocalizedValue44", "_getLocalizedValue45", "_getLocalizedValue46", "_getLocalizedValue47", "_getLocalizedValue48", "_getLocalizedValue49", "_getLocalizedValue50", "_getLocalizedValue51", "_getLocalizedValue52", "_getLocalizedValue53", "_getLocalizedValue54", "_getLocalizedValue55", "_getLocalizedValue56", "_getLocalizedValue57", "_getLocalizedValue58", "_getLocalizedValue59", "_getLocalizedValue60", "_getLocalizedValue61", "_getLocalizedValue62", "_getLocalizedValue63", "_getLocalizedValue64", "_getLocalizedValue65", "_getLocalizedValue66", "_getLocalizedValue67", "_getLocalizedValue68", "_getLocalizedValue69", "_getLocalizedValue70", "_getLocalizedValue71", "_getLocalizedValue72", "_getLocalizedValue73", "_getLocalizedValue74", "_getLocalizedValue75", "_getLocalizedValue76", "_getLocalizedValue77", "_getLocalizedValue78", "_getLocalizedValue79", "_getLocalizedValue80", "_getLocalizedValue81", "_getLocalizedValue82", "_getLocalizedValue83", "_getLocalizedValue84", "_getLocalizedValue85", "_getLocalizedValue86", "_getLocalizedValue87", "_getLocalizedValue88", "_getLocalizedValue89", "_getLocalizedValue90", "_getLocalizedValue91", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "PropertyOverrides2", "ComponentViewportProvider", "Link", "x", "Image2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "resolvedLinks14", "ComponentPresetsProvider", "resolvedLinks15", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "resolvedLinks16", "resolvedLinks17", "collection1", "paginationInfo1", "loadMore1", "resolvedLinks18", "resolvedLinks19", "collection2", "paginationInfo2", "loadMore2", "resolvedLinks20", "resolvedLinks21", "collection3", "paginationInfo3", "loadMore3", "resolvedLinks22", "resolvedLinks23", "collection4", "paginationInfo4", "loadMore4", "resolvedLinks24", "resolvedLinks25", "collection5", "paginationInfo5", "loadMore5", "resolvedLinks26", "collection6", "paginationInfo6", "loadMore6", "resolvedLinks27", "resolvedLinks28", "collection7", "paginationInfo7", "loadMore7", "resolvedLinks29", "css", "FramerMfj65VgNa", "withCSS", "Mfj65VgNa_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
