Description
The self-propelled Baumr-AG 790SXe lawn mower offers powerful, easy mowing with its 18″ cutting width and big 224cc 4-stroke engine delivering a massive 6.0 horsepower. The electric start, powered by a 20V Li-ion battery, lets you begin with a button push. Built with a tough steel deck, all-terrain wheels and self-propelled design, it navigates smoothly over any surface, especially on large or sloping blocks.
Enjoy 7 adjustable cutting heights (25mm–75mm) for a perfect finish. Four swing-back blades provide a clean cut and handle debris impact. It has a large 55L catcher for less frequent emptying. The high-efficiency air filter boosts engine performance and reduces emissions. Plus, mulching and side discharge options add flexibility, and a 2-year warranty offers peace of mind.
Experience effortless, high-performance mowing with the self-propelled Baumr-AG 18″ 790SXe. Designed for power, ease, and precision, it’s the ideal choice for keeping your lawn in top shape.
const scrollElements = document.querySelectorAll(".animate__animated");
scrollElements.forEach((el) => { el.style.opacity = 0 })
const elementInView = (el, dividend = 1) => { const elementTop = el.getBoundingClientRect().top;
return ( elementTop <= (window.innerHeight || document.documentElement.clientHeight) / dividend ); }; const elementOutofView = (el) => { const elementTop = el.getBoundingClientRect().top;
return ( elementTop > (window.innerHeight || document.documentElement.clientHeight) ); };
const displayScrollElement = (element) => { element.classList.add("animate__fadeIn"); };
const hideScrollElement = (element) => { element.classList.remove("animate__fadeIn"); };
const handleScrollAnimation = () => { scrollElements.forEach((el) => { if (elementInView(el, 1.25)) { displayScrollElement(el); } else if (elementOutofView(el)) { hideScrollElement(el) } }) }
window.addEventListener("scroll", () => { handleScrollAnimation(); });








