    <style>
        html {
            --scroll-behavior: smooth;
            scroll-behavior: smooth;
        }

        .fusion-fullwidth.intro-box-wrapper {
            position: fixed;
        }

        html.avada-is-100-percent-template #main.width-100 {
            padding-left: 0;
            padding-right: 0;
        }

        .intro-box-inner {
            height: 100vh;
            width: 100%;
            box-sizing: border-box;
        }

        .intro-box-inner:after {
            content: '';
            display: block;
            width: 100%;
            height: 25vh;
            position: absolute;
            background: linear-gradient(0deg, rgba(2, 44, 64, 1) 0%, rgba(2, 44, 64, 0) 100%);
            bottom: 0;
            z-index: 1;
            pointer-events: none;
        }

        .swiper-container {
            width: 100%;
            height: 100%;
        }

        .swiper-slide {
            background-size: cover !important;
            height: 100% !important;
        }

        .swiper-slide:nth-child(2) {
            background: url("https://www.stelter.de/wp-content/uploads/2021/08/automotive-referenzen-stelter-1920w.jpg") no-repeat center bottom;
        }

        .swiper-slide:nth-child(3) {
            background: url("https://www.stelter.de/wp-content/uploads/2021/08/kompetenzen-stelter-1920w.jpg") no-repeat center center;
        }

        .swiper-slide:nth-child(4) {
            background: url("https://www.stelter.de/wp-content/uploads/2021/08/unternehmen-stelter-1920w.jpg") no-repeat center bottom;
        }

        .swiper-slide:nth-child(5) {
            background: url("https://www.stelter.de/wp-content/uploads/2021/09/karriere-3-stelter-1920w.jpg") no-repeat center top;
        }

        .swiper-slide:nth-child(6) {
            background: url("https://www.stelter.de/wp-content/uploads/2021/08/kontakt-stelter-1920w.jpg") no-repeat center 70%;
        }

        .slider-menu {
            position: absolute;
            top: 30px;
            left: 0;
            height: calc(100vh - 60px);
            width: 100%;
            z-index: 100;
            visibility: hidden;
            transition: all .5s ease;
        }

        .slider-menu.active {
            display: block;
            visibility: visible;
        }

        .slider-menu-wrapper {
            position: absolute;
            right: -100%;
            background: #f4f4f4;
            height: 100%;
            width: 50%;
            transition: all .5s ease;
            overflow: scroll;
            padding: 60px 0;
            box-sizing: border-box;
        }

        .slider-menu.active .slider-menu-wrapper {
            right: 30px;
        }

        .slider-menu-wrapper img {
            display: block;
            width: 100%;
        }

        .slider-menu-wrapper a {
            width: 100%;
        }

        .slider-menu-close {
            position: absolute;
            right: 30px;
            top: 20px;
            cursor: pointer;
            font-size: 24px;
        }

        .header-textbox-wrapper {
            z-index: 1;
            transition: height .3s ease-out;
        }

        .header-textbox-wrapper.hidden {
            display: none;
        }

        .swiper-container-vertical > .swiper-pagination-bullets {
            right: 40px !important;
            transform: translateY(-50%);
        }

        .swiper-container-vertical > .swiper-pagination .swiper-pagination-bullet {
            background: rgba(255, 255, 255, 0.5);
            opacity: 1;
        }

        .swiper-container-vertical > .swiper-pagination .swiper-pagination-bullet-active {
            background: rgba(255, 255, 255, 1);
            opacity: 1;
        }

        .swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
            margin: 10px 0 !important;
        }

        .menuItemActive a .menu-text {
            color: #00afe6 !important;
        }

        .separator-line {
            width: 0;
        }

        .next-chapter-navigation {
            position: fixed;
            display: flex;
            align-items: center;
            top: calc(100% - 150px);
            left: 120px;
            z-index: 9;
            cursor: pointer;
            transition: top .3s ease;
        }

        .next-chapter-navigation.hidden {
            display: none;
        }

        .next-chapter-navigation-text {
            color: #ffffff;
            line-height: 1.2;
            font-size: 22px;
            font-family: "TT Commons Medium", sans-serif;
            font-weight: 400;
            text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25)
        }

        .next-chapter-navigation-arrow {
            display: flex;
            align-items: center;
            margin-left: 15px;
        }

        .next-chapter-navigation-arrow svg {
            width: 18px;
            animation: scrollDownArrow 3s infinite;
        }

        .next-chapter-navigation-arrow svg polyline {
            fill: none;
            stroke: #ffffff;
            stroke-width: 7px;
        }

        /* FadeIn Box */

        .header-textbox-wrapper.fadeIn {
            animation: boxFadeIn 400ms ease forwards;
        }

        @keyframes boxFadeIn {
            0% {
                clip-path: polygon(60px 0%, 0 0, 60px 0, 0 60px, 0 100%, 0% 60px);
                animation-timing-function: linear;
            }

            50% {
                clip-path: polygon(60px 0%, 100% 0, 100% 0, 0 100%, 0 100%, 0% 60px);
            }

            100% {
                clip-path: polygon(60px 0%, 100% 0, 100% calc(100% - 120px), calc(100% - 120px) 100%, 0 100%, 0% 60px);
            }
        }

        /* FadeIn h2 */

        .header-textbox-wrapper.fadeIn h1 {
            opacity: 0;
            animation-delay: 200ms !important;
            animation: h2FadeIn 400ms ease-out forwards;
        }

        @keyframes h2FadeIn {
            from {
                transform: translateY(100px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* FadeIn seperator-line */

        .header-textbox-wrapper.fadeIn .separator-line {
            animation-delay: 300ms !important;
            animation: seperatorLineFadeIn 300ms ease-out forwards;
        }

        @keyframes seperatorLineFadeIn {
            from {
                width: 0;
            }

            to {
                width: 180px;
            }
        }

        /* FadeIn paragraph */

        .header-textbox-wrapper.fadeIn p {
            opacity: 0;
            animation-delay: 400ms !important;
            animation: paraFadeIn 500ms ease-out forwards;
        }

        @keyframes paraFadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* FadeIn link */

        .header-textbox-wrapper.fadeIn a {
            opacity: 0;
            animation-delay: 500ms !important;
            animation: linkFadeIn 500ms ease-out forwards;
        }

        @keyframes linkFadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* FadeOut h2 */

        .header-textbox-wrapper.fadeOut h1 {
            animation: h2FadeOut 300ms ease-out forwards;
        }

        @keyframes h2FadeOut {
            from {
                transform: translateY(0);
                opacity: 1;
            }

            to {
                transform: translateY(-100px);
                opacity: 0;
            }
        }

        /* FadeOut Line */

        .header-textbox-wrapper.fadeOut .separator-line {
            animation-delay: 100ms !important;
            animation: seperatorLineFadeOut 300ms ease-out forwards;
        }

        @keyframes seperatorLineFadeOut {
            from {
                width: 180px
            }

            to {
                width: 0;
            }
        }

        /* FadeOut paragraph */

        .header-textbox-wrapper.fadeOut p {
            animation-delay: 200ms !important;
            animation: paraFadeOut 300ms ease-out forwards;
        }

        @keyframes paraFadeOut {
            from {
                opacity: 1;
            }

            to {
                opacity: 0;
            }
        }

        /* FadeOut link */

        .header-textbox-wrapper.fadeOut a {
            animation-delay: 300ms !important;
            animation: linkFadeOut 300ms ease-out forwards;
        }

        @keyframes linkFadeOut {
            from {
                opacity: 1;
            }

            to {
                opacity: 0;
            }
        }


        /* FadeOut Box */

        .header-textbox-wrapper.fadeOut {
            animation-delay: 400ms !important;
            animation: fadeBoxOut 300ms ease forwards;
        }

        @keyframes fadeBoxOut {
            0% {
                clip-path: polygon(60px 0%, 100% 0, 100% calc(100% - 120px), calc(100% - 120px) 100%, 0 100%, 0% 60px);
                animation-timing-function: linear;
            }

            50% {
                clip-path: polygon(100% 0%, 100% 0, 100% calc(100% - 120px), calc(100% - 120px) 100%, 0 100%, 0% 100%);
            }

            100% {
                clip-path: polygon(100% calc(100% - 120px), 100% calc(100% - 120px), 100% calc(100% - 120px), calc(100% - 120px) 100%, calc(100% - 120px) 100%, calc(100% - 120px) 100%);
            }
        }

        @media (max-width: 1280px) {
            .next-chapter-navigation {
                top: unset;
                bottom: 10vh;
            }
        }

        @media (max-width: 767px) {
            .next-chapter-navigation {
                position: absolute;
                left: 77px;
                width: 175px;
                top: unset;
                bottom: 15px;
            }

            .next-chapter-navigation-text {
                font-size: 15px;
            }

            .next-chapter-navigation-arrow {
                margin-left: 8px;
            }

            .next-chapter-navigation-arrow svg {
                width: 14px;
            }

            .intro-box-inner, .intro-box-inner > * {
                display: none !important;
            }

            .header-textbox-wrapper {
                position: relative;
                top: 0;
                left: 45px;
                width: calc(100% - 90px);
                z-index: 2;
            }

            .header-textbox-wrapper + div {
                position: relative;
                left: 45px;
                height: 100%;
                width: calc(100% - 90px);
            }

            .header-textbox-wrapper + div > span.fusion-imageframe {
                margin-top: -60px;
                height: calc(100% + 60px);
                position: relative;
            }

            .header-textbox-wrapper + div > span.fusion-imageframe:after {
                content: '';
                position: absolute;
                width: 100%;
                height: 10vh;
                bottom: 0;
                left: 0;
                background: linear-gradient(0deg, rgba(2, 44, 64, 1) 0%, rgba(2, 44, 64, 0) 100%);
            }

            .header-textbox-wrapper + div > span.fusion-imageframe > img {
                height: 100%;
                object-fit: cover;
            }

            #main {
                overflow: hidden !important;
            }

            .fusion-video,
            .fusion-video .video-wrapper,
            .fusion-video .video-wrapper video {
                height: 100%;
            }

            .fusion-menu-anchor {
                visibility: hidden;
                position: relative;
                top: -15px;
            }
        }
    </style>
    <link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css">
    <div class="intro-box-inner">
        <div class="swiper-container">
            <div class="swiper-wrapper">
                <div class="swiper-slide" data-hash="willkommen">
                    <video style="width: 100%;height: 100%;object-fit: cover;"
                           src="https://www.stelter.de/wp-content/uploads/2021/08/stelter-backgroundvideo-final.mp4"
                           preload="none"
                           autoplay muted loop></video>
                </div>
                <div class="swiper-slide" data-hash="products"></div>
                <div class="swiper-slide" data-hash="competences"></div>
                <div class="swiper-slide" data-hash="company"></div>
                <div class="swiper-slide" data-hash="career"></div>
                <div class="swiper-slide" data-hash="contact"></div>
            </div>
        </div>
        <div class="header-textbox-wrapper hidden">
            <h1 class="headline">Willkommen bei Stelter.</h1>
            <div class="separator-line"></div>
            <p>Hightech-Zahnräder für Automotive-, Windkraft- und Bahnindustrie sowie klassische Industrie. Seit
                1950. </p>
            <a href="#" id="jsMenuButton">mehr erfahren</a>
        </div>
        <div class="next-chapter-navigation">
            <span class="next-chapter-navigation-text"></span>
            <div class="next-chapter-navigation-arrow">
                <svg viewBox="0 0 100 100">
                    <polyline points="0,25 50,75 100,25"/>
                </svg>
            </div>
        </div>
    </div>


    <script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
    <script>
        window.onload = function () {
            const headerTextboxWrapper = document.querySelector('.header-textbox-wrapper');
            const nextChapterNavigation = document.querySelector('.next-chapter-navigation');
            const nextChapterNavigationText = nextChapterNavigation.querySelector('.next-chapter-navigation-text');
            const h2 = document.querySelector('.header-textbox-wrapper h1');
            const p = document.querySelector('.header-textbox-wrapper p');
            const a = document.querySelector('.header-textbox-wrapper a');
            const mainMenu = document.querySelector('#mainMenu');
            const mainMenuNavList = mainMenu.querySelectorAll('nav > ul > li');
            const mainMenuLanguageSwitcherLinks = mainMenu.querySelectorAll('.wpml-ls-link');
            let isMenuOverlayShowing = false;

            let homeIntroSlider = new Swiper('.swiper-container', {
                direction: 'vertical',
                slidesPerView: 1,
                speed: 500,
                simulateTouch: false,
                hashNavigation: true,
                mousewheel: true,
                pagination: {
                    el: '.swiper-pagination',
                    clickable: true,
                },
            })

            let slideData = [{
                heading: "Willkommen bei Stelter.",
                paragraph: "Hightech-Zahnräder für Automotive-, Windkraft- und Bahnindustrie sowie klassische Industrie. Seit 1950.",
                anchorLink: "#intro",
                anchorText: "Lernen Sie uns kennen!"
            }, {
                heading: "Warum wir für Sie der beste Partner sind?",
                paragraph: "Weil wir seit mehr als 70 Jahren Präzisionszahnräder in höchster Qualität herstellen – von Modul 0,5 bis 44 und mit Stückgewichten von bis zu 2 Tonnen.",
                anchorLink: "#overlay-products",
                anchorText: "Unsere Branchenlösungen"
            }, {
                heading: "Warum unsere Zahnräder besser sind?",
                paragraph: "Weil wir höchste Präzision mit hochautomatisierten Fertigungsprozessen und modernsten Maschinen bei maximaler Wirtschaftlichkeit garantieren.",
                anchorLink: "#overlay-competences",
                anchorText: "Unsere Kompetenzen"
            }, {
                heading: "Warum Stelter?",
                paragraph: "Weil wir Mensch und Maschine einzigartig verzahnen, um auch Ihren Erfolg anzutreiben.",
                anchorLink: "#overlay-company",
                anchorText: "Das Unternehmen im Überblick"
            }, {
                heading: "Warum wir Perspektiven bieten?",
                paragraph: "Weil wir kontinuierlich in die Zukunft investieren: in unsere Mitarbeiter genauso wie in unseren Hightech-Maschinenpark.",
                anchorLink: "#overlay-career",
                anchorText: "Karriere bei Stelter"
            }, {
                heading: "Warum es sich lohnt, mit uns zu sprechen?",
                paragraph: "Weil wir Ihre Anforderungen und Bedürfnisse professionell in den Mittelpunkt stellen – leidenschaftlich, präzise und just in time.",
                anchorLink: "#overlay-contact",
                anchorText: "Kontakt und Service"
            },]

            if ('en' === 'en') {
                slideData = [{
                    heading: "Welcome at Stelter.",
                    paragraph: "High-tech gears for the automotive, wind power and rail industries as well as classic industry. Since 1950.",
                    anchorLink: "#intro",
                    anchorText: "Get to know us!"
                }, {
                    heading: "Why are we the best partner for you?",
                    paragraph: "Because we have been producing precision gears of the highest quality for more than 70 years - from module 0.5 to 44 and with unit weights of up to 2 tons.",
                    anchorLink: "#overlay-products",
                    anchorText: "Our industry solutions"
                }, {
                    heading: "Why are our gears better?",
                    paragraph: "Because we guarantee the highest precision with highly automated production processes and the most modern machines with maximum efficiency.",
                    anchorLink: "#overlay-competences",
                    anchorText: "Our competences"
                }, {
                    heading: "Why Stelter?",
                    paragraph: "Because we uniquely dovetail man and machine to drive your success, too.",
                    anchorLink: "#overlay-company",
                    anchorText: "The company at a glance"
                }, {
                    heading: "Why we offer perspectives?",
                    paragraph: "Because we continuously invest in the future: in our employees as well as in our high-tech machinery.",
                    anchorLink: "#overlay-career",
                    anchorText: "Career with Stelter"
                }, {
                    heading: "Why it is worth talking to us?",
                    paragraph: "Because we focus on your requirements and needs professionally - passionately, precisely and just in time.",
                    anchorLink: "#overlay-contact",
                    anchorText: "Contact and service"
                },]
            }

            function handleBoxChange() {
                if (homeIntroSlider.isBeginning) {
                    mainMenuNavList[0].classList.remove('menuItemActive');
                } else {
                    setActiveMenuItem();
                }

                headerTextboxWrapper.classList.remove('fadeIn');

                headerTextboxWrapper.classList.add('fadeOut');
                setTimeout(function () {
                    h2.innerHTML = slideData[homeIntroSlider.activeIndex].heading;
                    p.innerHTML = slideData[homeIntroSlider.activeIndex].paragraph;
                    a.href = slideData[homeIntroSlider.activeIndex].anchorLink;
                    a.innerHTML = slideData[homeIntroSlider.activeIndex].anchorText;
                    updateOffCanvas();
                    headerTextboxWrapper.classList.remove('hidden');
                    headerTextboxWrapper.classList.replace('fadeOut', 'fadeIn');

                    for (let item of mainMenuLanguageSwitcherLinks) {
                        item.classList.add('avada-noscroll');
                        item.href = item.href.split('#')[0];
                        item.href += window.location.hash;
                    }
                }, 700);

                if (homeIntroSlider.activeIndex >= 5) {
                    nextChapterNavigation.classList.add('hidden');
                } else {
                    nextChapterNavigation.classList.remove('hidden');
                    nextChapterNavigationText.innerHTML = slideData[(homeIntroSlider.activeIndex + 1)].heading;
                }

            }


            function setActiveMenuItem() {
                for (let item of mainMenuNavList) {
                    item.classList.remove('menuItemActive');
                }
                mainMenuNavList[(homeIntroSlider.activeIndex - 1)].classList.add('menuItemActive');
            }

            nextChapterNavigation.addEventListener('click', function () {
                homeIntroSlider.slideNext();
            })

            a.addEventListener('click', function () {
                if (a.href.includes('#intro')) {
                    homeIntroSlider.slideNext();
                }
            })

            homeIntroSlider.on('slideChange', function () {
                handleBoxChange();
                setTimeout(function () {
                    homeIntroSlider.update();
                }, 200)
            })
            handleBoxChange();

            let customUpdateCounter = 0;
            let updateInterval = setInterval(function () {
                homeIntroSlider.update();
                if (customUpdateCounter > 20) {
                    clearInterval(updateInterval);
                } else {
                    customUpdateCounter++;
                }
            }, 200)
        }
    </script>
    {"id":5369,"date":"2021-12-08T09:45:55","date_gmt":"2021-12-08T08:45:55","guid":{"rendered":"https:\/\/www.stelter.de\/start-page\/"},"modified":"2021-12-09T09:33:31","modified_gmt":"2021-12-09T08:33:31","slug":"start-page","status":"publish","type":"page","link":"https:\/\/www.stelter.de\/en\/","title":{"rendered":"Home"},"content":{"rendered":"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-1 fusion-flex-container hundred-percent-fullwidth non-hundred-percent-height-scrolling fusion-no-medium-visibility fusion-no-large-visibility\" style=\"background-color: #f9f9f9;background-position: center center;background-repeat: no-repeat;border-width: 0px 0 0px 0;border-color:#ffffff;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-stretch\" style=\"width:calc( 100% + 0px ) !important;max-width:calc( 100% + 0px ) !important;margin-left: calc(-0px \/ 2 );margin-right: calc(-0px \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-0 fusion_builder_column_1_1 1_1 fusion-flex-column scroll-down-arrow\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"header-textbox-wrapper\" ><h1 class=\"headline\">Welcome to Stelter.<\/h1><div class=\"separator-line\"><\/div><p>High-tech gears for the automotive, wind power, rail and traditional industries. Since 1950.<\/p><a href=\"#products\" target=\"_self\">Learn about us!<\/a><\/div><div class=\"fusion-video fusion-selfhosted-video fusion-no-medium-visibility fusion-no-large-visibility\" style=\"margin-top:-60px;max-width:100%;\"><div class=\"video-wrapper\"><video playsinline=\"true\" width=\"100%\" style=\"object-fit: cover;\" autoplay=\"true\" muted=\"true\" loop=\"true\" poster=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/09\/stelter-backgroundvideo-mobile.jpeg\" preload=\"metadata\"><source src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/09\/stelter-backgroundvideo-mobile.webm\" type=\"video\/webm\"><source src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/09\/stelter-backgroundvideo-mobile.mp4\" type=\"video\/mp4\">Sorry, your browser doesn&#039;t support embedded videos.<\/video><\/div><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-0{width:100% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-0 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 0;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 0;}@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-0{width:100% !important;order : 0;}.fusion-builder-column-0 > .fusion-column-wrapper {margin-right : 0;margin-left : 0;}}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-0{width:100% !important;order : 0;}.fusion-builder-column-0 > .fusion-column-wrapper {margin-right : 0;margin-left : 0;}}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-1{ padding-top : 0px;margin-top : 15px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;min-height:calc(100vh - 60px);}<\/style><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-2 fusion-flex-container hundred-percent-fullwidth non-hundred-percent-height-scrolling fusion-no-medium-visibility fusion-no-large-visibility\" style=\"background-color: #f9f9f9;background-position: center center;background-repeat: no-repeat;border-width: 0px 0 0px 0;border-color:#ffffff;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-stretch\" style=\"width:calc( 100% + 0px ) !important;max-width:calc( 100% + 0px ) !important;margin-left: calc(-0px \/ 2 );margin-right: calc(-0px \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-1 fusion_builder_column_1_1 1_1 fusion-flex-column scroll-down-arrow\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-menu-anchor\" id=\"products\"><\/div><div class=\"header-textbox-wrapper\" ><h2 class=\"headline\">Why are we the best partner for you?<\/h2><div class=\"separator-line\"><\/div><p>Because we have been producing precision gears of the highest quality for more than 70 years \u2013 from module 0.5 to 44 and with unit weights of up to 2 tons.<\/p><a href=\"#overlay-products\" target=\"_self\">Our industry solutions<\/a><\/div><div ><style>.fusion-imageframe.imageframe-1{ margin-top : -60px;}<\/style><span class=\" fusion-imageframe imageframe-none imageframe-1 hover-type-none\"><img decoding=\"async\" width=\"1920\" height=\"1440\" title=\"automotive-referenzen-stelter-1920w\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/08\/automotive-referenzen-stelter-1920w.jpg\" alt class=\"img-responsive wp-image-4359\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/08\/automotive-referenzen-stelter-1920w-768x576.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/08\/automotive-referenzen-stelter-1920w-1536x1152.jpg 1536w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/08\/automotive-referenzen-stelter-1920w.jpg 1920w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/><\/span><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-1{width:100% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-1 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 0;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 0;}@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-1{width:100% !important;order : 0;}.fusion-builder-column-1 > .fusion-column-wrapper {margin-right : 0;margin-left : 0;}}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-1{width:100% !important;order : 0;}.fusion-builder-column-1 > .fusion-column-wrapper {margin-right : 0;margin-left : 0;}}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-2{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;min-height:calc(100vh - 60px);}<\/style><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-3 fusion-flex-container scroll-down-arrow hundred-percent-fullwidth non-hundred-percent-height-scrolling fusion-no-medium-visibility fusion-no-large-visibility\" style=\"background-color: #f9f9f9;background-position: center center;background-repeat: no-repeat;border-width: 0px 0 0px 0;border-color:#ffffff;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-stretch\" style=\"width:calc( 100% + 0px ) !important;max-width:calc( 100% + 0px ) !important;margin-left: calc(-0px \/ 2 );margin-right: calc(-0px \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-2 fusion_builder_column_1_1 1_1 fusion-flex-column scroll-down-arrow\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-menu-anchor\" id=\"competences\"><\/div><div class=\"header-textbox-wrapper\" ><h2 class=\"headline\">Why are our gears better?<\/h2><div class=\"separator-line\"><\/div><p>Because we guarantee peak precision with highly automated production processes and state-of-the-art machinery at maximum efficiency.<\/p><a href=\"#overlay-competences\" target=\"_self\">Our expertise<\/a><\/div><div ><style>.fusion-imageframe.imageframe-2{ margin-top : -60px;}<\/style><span class=\" fusion-imageframe imageframe-none imageframe-2 hover-type-none\"><img decoding=\"async\" width=\"1920\" height=\"1440\" title=\"kompetenzen-stelter-1920w\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/08\/kompetenzen-stelter-1920w.jpg\" alt class=\"img-responsive wp-image-4357\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/08\/kompetenzen-stelter-1920w-768x576.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/08\/kompetenzen-stelter-1920w-1536x1152.jpg 1536w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/08\/kompetenzen-stelter-1920w.jpg 1920w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/><\/span><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-2{width:100% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-2 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 0;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 0;}@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-2{width:100% !important;order : 0;}.fusion-builder-column-2 > .fusion-column-wrapper {margin-right : 0;margin-left : 0;}}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-2{width:100% !important;order : 0;}.fusion-builder-column-2 > .fusion-column-wrapper {margin-right : 0;margin-left : 0;}}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-3{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;min-height:calc(100vh - 60px);}<\/style><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-4 fusion-flex-container hundred-percent-fullwidth non-hundred-percent-height-scrolling fusion-no-medium-visibility fusion-no-large-visibility\" style=\"background-color: #f9f9f9;background-position: center center;background-repeat: no-repeat;border-width: 0px 0 0px 0;border-color:#ffffff;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-stretch\" style=\"width:calc( 100% + 0px ) !important;max-width:calc( 100% + 0px ) !important;margin-left: calc(-0px \/ 2 );margin-right: calc(-0px \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-3 fusion_builder_column_1_1 1_1 fusion-flex-column scroll-down-arrow\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-menu-anchor\" id=\"company\"><\/div><div class=\"header-textbox-wrapper\" ><h2 class=\"headline\">Why Stelter?<\/h2><div class=\"separator-line\"><\/div><p>Because we uniquely cog man and machine together to drive your success.<\/p><a href=\"#overlay-company\" target=\"_self\">The company at a glance<\/a><\/div><div ><style>.fusion-imageframe.imageframe-3{ margin-top : -60px;}<\/style><span class=\" fusion-imageframe imageframe-none imageframe-3 hover-type-none\"><img decoding=\"async\" width=\"1919\" height=\"1440\" title=\"unternehmen-stelter-1920w\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/08\/unternehmen-stelter-1920w.jpg\" alt class=\"img-responsive wp-image-4415\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/08\/unternehmen-stelter-1920w-768x576.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/08\/unternehmen-stelter-1920w-1536x1153.jpg 1536w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/08\/unternehmen-stelter-1920w.jpg 1919w\" sizes=\"(max-width: 1919px) 100vw, 1919px\" \/><\/span><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-3{width:100% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-3 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 0;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 0;}@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-3{width:100% !important;order : 0;}.fusion-builder-column-3 > .fusion-column-wrapper {margin-right : 0;margin-left : 0;}}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-3{width:100% !important;order : 0;}.fusion-builder-column-3 > .fusion-column-wrapper {margin-right : 0;margin-left : 0;}}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-4{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;min-height:calc(100vh - 60px);}<\/style><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-5 fusion-flex-container hundred-percent-fullwidth non-hundred-percent-height-scrolling fusion-no-medium-visibility fusion-no-large-visibility\" style=\"background-color: #f9f9f9;background-position: center center;background-repeat: no-repeat;border-width: 0px 0 0px 0;border-color:#ffffff;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-stretch\" style=\"width:calc( 100% + 0px ) !important;max-width:calc( 100% + 0px ) !important;margin-left: calc(-0px \/ 2 );margin-right: calc(-0px \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-4 fusion_builder_column_1_1 1_1 fusion-flex-column scroll-down-arrow\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-menu-anchor\" id=\"carreer\"><\/div><div class=\"header-textbox-wrapper\" ><h2 class=\"headline\">Why do we offer prospects?<\/h2><div class=\"separator-line\"><\/div><p>Because we continuously invest in the future: both in our employees and our high-tech machinery.<\/p><a href=\"#overlay-career\" target=\"_self\">Careers at Stelter<\/a><\/div><div ><style>.fusion-imageframe.imageframe-4{ margin-top : -60px;}<\/style><span class=\" fusion-imageframe imageframe-none imageframe-4 hover-type-none\"><img decoding=\"async\" width=\"1920\" height=\"1080\" title=\"karriere-3-stelter-1920w\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/09\/karriere-3-stelter-1920w.jpg\" alt class=\"img-responsive wp-image-5136\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/09\/karriere-3-stelter-1920w-768x432.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/09\/karriere-3-stelter-1920w-1536x864.jpg 1536w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/09\/karriere-3-stelter-1920w.jpg 1920w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/><\/span><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-4{width:100% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-4 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 0;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 0;}@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-4{width:100% !important;order : 0;}.fusion-builder-column-4 > .fusion-column-wrapper {margin-right : 0;margin-left : 0;}}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-4{width:100% !important;order : 0;}.fusion-builder-column-4 > .fusion-column-wrapper {margin-right : 0;margin-left : 0;}}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-5{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;min-height:calc(100vh - 60px);}<\/style><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-6 fusion-flex-container hundred-percent-fullwidth non-hundred-percent-height-scrolling fusion-no-medium-visibility fusion-no-large-visibility\" style=\"background-color: #f9f9f9;background-position: center center;background-repeat: no-repeat;border-width: 0px 0 0px 0;border-color:#ffffff;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-stretch\" style=\"width:calc( 100% + 0px ) !important;max-width:calc( 100% + 0px ) !important;margin-left: calc(-0px \/ 2 );margin-right: calc(-0px \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-5 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-menu-anchor\" id=\"contact\"><\/div><div class=\"header-textbox-wrapper\" ><h2 class=\"headline\">Why is it worth talking to us?<\/h2><div class=\"separator-line\"><\/div><p>Because we professionally place a focus on your needs and requirements \u2013 with passion, precision, and just in time.<\/p><a href=\"#overlay-contact\" target=\"_self\">Contact and service<\/a><\/div><div ><style>.fusion-imageframe.imageframe-5{ margin-top : -60px;}<\/style><span class=\" fusion-imageframe imageframe-none imageframe-5 hover-type-none\"><img decoding=\"async\" width=\"1920\" height=\"1440\" title=\"kontakt-stelter-1920w\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/08\/kontakt-stelter-1920w.jpg\" alt class=\"img-responsive wp-image-4358\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/08\/kontakt-stelter-1920w-768x576.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/08\/kontakt-stelter-1920w-1536x1152.jpg 1536w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/08\/kontakt-stelter-1920w.jpg 1920w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/><\/span><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-5{width:100% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-5 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 0;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 0;}@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-5{width:100% !important;order : 0;}.fusion-builder-column-5 > .fusion-column-wrapper {margin-right : 0;margin-left : 0;}}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-5{width:100% !important;order : 0;}.fusion-builder-column-5 > .fusion-column-wrapper {margin-right : 0;margin-left : 0;}}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-6{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;min-height:calc(100vh - 0px);}<\/style><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-7 fusion-flex-container hundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: #f9f9f9;background-position: center center;background-repeat: no-repeat;border-width: 0px 0 0px 0;border-color:#ffffff;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-stretch\" style=\"width:calc( 100% + 0px ) !important;max-width:calc( 100% + 0px ) !important;margin-left: calc(-0px \/ 2 );margin-right: calc(-0px \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-6 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"off-canvas-content\" data-trigger=\"overlay-products\">\n                    <div class=\"off-canvas-content-wrapper\">\n                        <div class=\"off-canvas-content-close\"><span class=\"fas fa-times\"><\/span><\/div>\n                        <div class=\"off-canvas-content-content\"><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-7-1 fusion-flex-container hundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: #f9f9f9;background-position: center center;background-repeat: no-repeat;border-width: 0px 0 0px 0;border-color:#ffffff;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"width:107% !important;max-width:107% !important;margin-left: calc(-7% \/ 2 );margin-right: calc(-7% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-7 fusion_builder_column_1_2 1_2 fusion-flex-column fusion-column-inner-bg-wrapper\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"padding: 0px 0px 0px 0px;\"><div ><span class=\" fusion-imageframe imageframe-none imageframe-6 hover-type-none\"><img decoding=\"async\" width=\"1920\" height=\"1440\" title=\"pkw-stelter-1920w\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/07\/pkw-stelter-1920w.jpg\" alt class=\"img-responsive wp-image-3846\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/07\/pkw-stelter-1920w-768x576.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/07\/pkw-stelter-1920w-1536x1152.jpg 1536w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/07\/pkw-stelter-1920w.jpg 1920w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/><\/span><\/div><style type=\"text\/css\">@media only screen and (max-width:1200px) {.fusion-title.fusion-title-1{margin-top:25px!important; margin-right:0px!important;margin-bottom:10px!important;margin-left:0px!important;}}@media only screen and (max-width:767px) {.fusion-title.fusion-title-1{margin-top:25px!important; margin-right:0px!important;margin-bottom:10px!important; margin-left:0px!important;}}<\/style><div class=\"fusion-title title fusion-title-1 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"font-size:27px;margin-top:25px;margin-right:0px;margin-bottom:10px;margin-left:0px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:27;line-height:1.1;\">Cars<\/h2><\/div><div class=\"fusion-text fusion-text-1 image-caption\"><p>From drive wheels in engines to gear wheels: we cover the entire automotive sector. <a href=\"#\" class=\" fusion-text-flow fusion-link\" style=\"font-size:18px;display:block;margin-top:8px;font-family: TT Commons Medium, sans-serif;font-weight: 400;\">learn more<svg style=\"position: relative; top: 1px; transform: rotate(-90deg); height:14px; margin-left: 8px\" viewBox=\"0 0 100 100\"><polyline fill=\"none\" stroke=\"#00afe6\" stroke-width=\"10px\" points=\"0,25 50,75 100,25\"\/><\/svg><\/a><\/p>\n<\/div><\/div><span class=\"fusion-column-inner-bg hover-type-none\"><a class=\"fusion-column-anchor\" href=\"https:\/\/www.stelter.de\/en\/products\/cars\/\"><span class=\"fusion-column-inner-bg-image\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;\"><\/span><\/a><\/span><style type=\"text\/css\">.fusion-body .fusion-builder-column-7{width:50% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-7 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 6.51%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 6.51%;}.fusion-flex-container .fusion-row .fusion-builder-column-7 > .fusion-column-inner-bg { margin-right:6.51%;margin-left:6.51%; }@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-7{width:50% !important;order : 0;}.fusion-builder-column-7 > .fusion-column-wrapper {margin-right : 6.51%;margin-left : 6.51%;}.fusion-flex-container .fusion-row .fusion-builder-column-7 > .fusion-column-inner-bg { margin-right:6.51%;margin-left:6.51%; }}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-7{width:100% !important;order : 0;margin-bottom : 50px;}.fusion-builder-column-7 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}.fusion-flex-container .fusion-row .fusion-builder-column-7 > .fusion-column-inner-bg { margin-right:3.255%;margin-left:3.255%; }}<\/style><style type=\"text\/css\">.fusion-builder-column-7{filter: opacity(100%);transition: filter 0.3s ease;}.fusion-builder-column-7:hover{filter: opacity(50%);}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-8 fusion_builder_column_1_2 1_2 fusion-flex-column fusion-column-inner-bg-wrapper\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"padding: 0px 0px 0px 0px;\"><div ><span class=\" fusion-imageframe imageframe-none imageframe-7 hover-type-none\"><img decoding=\"async\" width=\"1920\" height=\"1440\" title=\"nutzfahrzeuge-stelter-1920w\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/nutzfahrzeuge-stelter-1920w.jpg\" alt class=\"img-responsive wp-image-2026\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/nutzfahrzeuge-stelter-1920w-768x576.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/nutzfahrzeuge-stelter-1920w-1536x1152.jpg 1536w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/nutzfahrzeuge-stelter-1920w.jpg 1920w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/><\/span><\/div><style type=\"text\/css\">@media only screen and (max-width:1200px) {.fusion-title.fusion-title-2{margin-top:25px!important; margin-right:0px!important;margin-bottom:10px!important;margin-left:0px!important;}}@media only screen and (max-width:767px) {.fusion-title.fusion-title-2{margin-top:25px!important; margin-right:0px!important;margin-bottom:10px!important; margin-left:0px!important;}}<\/style><div class=\"fusion-title title fusion-title-2 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"font-size:27px;margin-top:25px;margin-right:0px;margin-bottom:10px;margin-left:0px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:27;line-height:1.1;\">Commercial vehicles<\/h2><\/div><div class=\"fusion-text fusion-text-2 image-caption\"><p>Reputable manufacturers rely on extremely durable gears from Stelter. <a href=\"#\" class=\" fusion-text-flow fusion-link\" style=\"font-size:18px;display:block;margin-top:8px;font-family: TT Commons Medium, sans-serif;font-weight: 400;\">learn more<svg style=\"position: relative; top: 1px; transform: rotate(-90deg); height:14px; margin-left: 8px\" viewBox=\"0 0 100 100\"><polyline fill=\"none\" stroke=\"#00afe6\" stroke-width=\"10px\" points=\"0,25 50,75 100,25\"\/><\/svg><\/a><\/p>\n<\/div><\/div><span class=\"fusion-column-inner-bg hover-type-none\"><a class=\"fusion-column-anchor\" href=\"https:\/\/www.stelter.de\/en\/products\/commercial-vehicles\/\"><span class=\"fusion-column-inner-bg-image\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;\"><\/span><\/a><\/span><style type=\"text\/css\">.fusion-body .fusion-builder-column-8{width:50% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-8 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 6.51%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 6.51%;}.fusion-flex-container .fusion-row .fusion-builder-column-8 > .fusion-column-inner-bg { margin-right:6.51%;margin-left:6.51%; }@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-8{width:50% !important;order : 0;}.fusion-builder-column-8 > .fusion-column-wrapper {margin-right : 6.51%;margin-left : 6.51%;}.fusion-flex-container .fusion-row .fusion-builder-column-8 > .fusion-column-inner-bg { margin-right:6.51%;margin-left:6.51%; }}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-8{width:100% !important;order : 0;margin-bottom : 50px;}.fusion-builder-column-8 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}.fusion-flex-container .fusion-row .fusion-builder-column-8 > .fusion-column-inner-bg { margin-right:3.255%;margin-left:3.255%; }}<\/style><style type=\"text\/css\">.fusion-builder-column-8{filter: opacity(100%);transition: filter 0.3s ease;}.fusion-builder-column-8:hover{filter: opacity(50%);}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-9 fusion_builder_column_1_1 1_1 fusion-flex-column fusion-no-small-visibility\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-top:1.4em;margin-bottom:1.4em;width:100%;\"><\/div>\n<\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-9{width:100% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-9 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.255%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.255%;}@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-9{width:100% !important;order : 0;}.fusion-builder-column-9 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-9{width:100% !important;order : 0;}.fusion-builder-column-9 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-10 fusion_builder_column_1_2 1_2 fusion-flex-column fusion-column-inner-bg-wrapper\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"padding: 0px 0px 0px 0px;\"><div ><span class=\" fusion-imageframe imageframe-none imageframe-8 hover-type-none\"><img decoding=\"async\" width=\"1920\" height=\"1440\" title=\"e-mobilitaet-stelter-1920w\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/e-mobilitaet-stelter-1920w.jpg\" alt class=\"img-responsive wp-image-2024\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/e-mobilitaet-stelter-1920w-768x576.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/e-mobilitaet-stelter-1920w-1536x1152.jpg 1536w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/e-mobilitaet-stelter-1920w.jpg 1920w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/><\/span><\/div><style type=\"text\/css\">@media only screen and (max-width:1200px) {.fusion-title.fusion-title-3{margin-top:25px!important; margin-right:0px!important;margin-bottom:10px!important;margin-left:0px!important;}}@media only screen and (max-width:767px) {.fusion-title.fusion-title-3{margin-top:25px!important; margin-right:0px!important;margin-bottom:10px!important; margin-left:0px!important;}}<\/style><div class=\"fusion-title title fusion-title-3 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"font-size:27px;margin-top:25px;margin-right:0px;margin-bottom:10px;margin-left:0px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:27;line-height:1.1;\">E-mobility<\/h2><\/div><div class=\"fusion-text fusion-text-3 image-caption\"><p>Stelter produces all the gear components for electric vehicles. <a href=\"#\" class=\" fusion-text-flow fusion-link\" style=\"font-size:18px;display:block;margin-top:8px;font-family: TT Commons Medium, sans-serif;font-weight: 400;\">learn more<svg style=\"position: relative; top: 1px; transform: rotate(-90deg); height:14px; margin-left: 8px\" viewBox=\"0 0 100 100\"><polyline fill=\"none\" stroke=\"#00afe6\" stroke-width=\"10px\" points=\"0,25 50,75 100,25\"\/><\/svg><\/a><\/p>\n<\/div><\/div><span class=\"fusion-column-inner-bg hover-type-none\"><a class=\"fusion-column-anchor\" href=\"https:\/\/www.stelter.de\/en\/products\/e-mobility\/\"><span class=\"fusion-column-inner-bg-image\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;\"><\/span><\/a><\/span><style type=\"text\/css\">.fusion-body .fusion-builder-column-10{width:50% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-10 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 6.51%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 6.51%;}.fusion-flex-container .fusion-row .fusion-builder-column-10 > .fusion-column-inner-bg { margin-right:6.51%;margin-left:6.51%; }@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-10{width:50% !important;order : 0;}.fusion-builder-column-10 > .fusion-column-wrapper {margin-right : 6.51%;margin-left : 6.51%;}.fusion-flex-container .fusion-row .fusion-builder-column-10 > .fusion-column-inner-bg { margin-right:6.51%;margin-left:6.51%; }}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-10{width:100% !important;order : 0;margin-bottom : 50px;}.fusion-builder-column-10 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}.fusion-flex-container .fusion-row .fusion-builder-column-10 > .fusion-column-inner-bg { margin-right:3.255%;margin-left:3.255%; }}<\/style><style type=\"text\/css\">.fusion-builder-column-10{filter: opacity(100%);transition: filter 0.3s ease;}.fusion-builder-column-10:hover{filter: opacity(50%);}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-11 fusion_builder_column_1_2 1_2 fusion-flex-column fusion-column-inner-bg-wrapper\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"padding: 0px 0px 0px 0px;\"><div ><span class=\" fusion-imageframe imageframe-none imageframe-9 hover-type-none\"><img decoding=\"async\" width=\"1920\" height=\"1440\" title=\"windkraft-stelter-1920w\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/windkraft-stelter-1920w.jpg\" alt class=\"img-responsive wp-image-2031\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/windkraft-stelter-1920w-768x576.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/windkraft-stelter-1920w-1536x1152.jpg 1536w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/windkraft-stelter-1920w.jpg 1920w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/><\/span><\/div><style type=\"text\/css\">@media only screen and (max-width:1200px) {.fusion-title.fusion-title-4{margin-top:25px!important; margin-right:0px!important;margin-bottom:10px!important;margin-left:0px!important;}}@media only screen and (max-width:767px) {.fusion-title.fusion-title-4{margin-top:25px!important; margin-right:0px!important;margin-bottom:10px!important; margin-left:0px!important;}}<\/style><div class=\"fusion-title title fusion-title-4 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"font-size:27px;margin-top:25px;margin-right:0px;margin-bottom:10px;margin-left:0px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:27;line-height:1.1;\">Wind power<\/h2><\/div><div class=\"fusion-text fusion-text-4 image-caption\"><p>The automated production of high-precision sun and planet gears is our core competence. <a href=\"#\" class=\" fusion-text-flow fusion-link\" style=\"font-size:18px;display:block;margin-top:8px;font-family: TT Commons Medium, sans-serif;font-weight: 400;\">learn more<svg style=\"position: relative; top: 1px; transform: rotate(-90deg); height:14px; margin-left: 8px\" viewBox=\"0 0 100 100\"><polyline fill=\"none\" stroke=\"#00afe6\" stroke-width=\"10px\" points=\"0,25 50,75 100,25\"\/><\/svg><\/a><\/p>\n<\/div><\/div><span class=\"fusion-column-inner-bg hover-type-none\"><a class=\"fusion-column-anchor\" href=\"https:\/\/www.stelter.de\/en\/products\/wind-power\/\"><span class=\"fusion-column-inner-bg-image\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;\"><\/span><\/a><\/span><style type=\"text\/css\">.fusion-body .fusion-builder-column-11{width:50% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-11 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 6.51%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 6.51%;}.fusion-flex-container .fusion-row .fusion-builder-column-11 > .fusion-column-inner-bg { margin-right:6.51%;margin-left:6.51%; }@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-11{width:50% !important;order : 0;}.fusion-builder-column-11 > .fusion-column-wrapper {margin-right : 6.51%;margin-left : 6.51%;}.fusion-flex-container .fusion-row .fusion-builder-column-11 > .fusion-column-inner-bg { margin-right:6.51%;margin-left:6.51%; }}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-11{width:100% !important;order : 0;margin-bottom : 50px;}.fusion-builder-column-11 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}.fusion-flex-container .fusion-row .fusion-builder-column-11 > .fusion-column-inner-bg { margin-right:3.255%;margin-left:3.255%; }}<\/style><style type=\"text\/css\">.fusion-builder-column-11{filter: opacity(100%);transition: filter 0.3s ease;}.fusion-builder-column-11:hover{filter: opacity(50%);}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-12 fusion_builder_column_1_1 1_1 fusion-flex-column fusion-no-small-visibility\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-top:1.4em;margin-bottom:1.4em;width:100%;\"><\/div>\n<\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-12{width:100% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-12 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.255%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.255%;}@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-12{width:100% !important;order : 0;}.fusion-builder-column-12 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-12{width:100% !important;order : 0;}.fusion-builder-column-12 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-13 fusion_builder_column_1_2 1_2 fusion-flex-column fusion-column-inner-bg-wrapper\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"padding: 0px 0px 0px 0px;\"><div ><span class=\" fusion-imageframe imageframe-none imageframe-10 hover-type-none\"><img decoding=\"async\" width=\"1920\" height=\"1440\" title=\"bahnverkehr-stelter-1920w\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/bahnverkehr-stelter-1920w.jpg\" alt class=\"img-responsive wp-image-2029\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/bahnverkehr-stelter-1920w-768x576.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/bahnverkehr-stelter-1920w-1536x1152.jpg 1536w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/bahnverkehr-stelter-1920w.jpg 1920w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/><\/span><\/div><style type=\"text\/css\">@media only screen and (max-width:1200px) {.fusion-title.fusion-title-5{margin-top:25px!important; margin-right:0px!important;margin-bottom:10px!important;margin-left:0px!important;}}@media only screen and (max-width:767px) {.fusion-title.fusion-title-5{margin-top:25px!important; margin-right:0px!important;margin-bottom:10px!important; margin-left:0px!important;}}<\/style><div class=\"fusion-title title fusion-title-5 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"font-size:27px;margin-top:25px;margin-right:0px;margin-bottom:10px;margin-left:0px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:27;line-height:1.1;\">Rail transport<\/h2><\/div><div class=\"fusion-text fusion-text-5 image-caption\"><p>Stelter gears and shafts for global rail transport. <a href=\"#\" class=\" fusion-text-flow fusion-link\" style=\"font-size:18px;display:block;margin-top:8px;font-family: TT Commons Medium, sans-serif;font-weight: 400;\">learn more<svg style=\"position: relative; top: 1px; transform: rotate(-90deg); height:14px; margin-left: 8px\" viewBox=\"0 0 100 100\"><polyline fill=\"none\" stroke=\"#00afe6\" stroke-width=\"10px\" points=\"0,25 50,75 100,25\"\/><\/svg><\/a><\/p>\n<\/div><\/div><span class=\"fusion-column-inner-bg hover-type-none\"><a class=\"fusion-column-anchor\" href=\"https:\/\/www.stelter.de\/en\/products\/rail-transport\/\"><span class=\"fusion-column-inner-bg-image\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;\"><\/span><\/a><\/span><style type=\"text\/css\">.fusion-body .fusion-builder-column-13{width:50% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-13 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 6.51%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 6.51%;}.fusion-flex-container .fusion-row .fusion-builder-column-13 > .fusion-column-inner-bg { margin-right:6.51%;margin-left:6.51%; }@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-13{width:50% !important;order : 0;}.fusion-builder-column-13 > .fusion-column-wrapper {margin-right : 6.51%;margin-left : 6.51%;}.fusion-flex-container .fusion-row .fusion-builder-column-13 > .fusion-column-inner-bg { margin-right:6.51%;margin-left:6.51%; }}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-13{width:100% !important;order : 0;margin-bottom : 50px;}.fusion-builder-column-13 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}.fusion-flex-container .fusion-row .fusion-builder-column-13 > .fusion-column-inner-bg { margin-right:3.255%;margin-left:3.255%; }}<\/style><style type=\"text\/css\">.fusion-builder-column-13{filter: opacity(100%);transition: filter 0.3s ease;}.fusion-builder-column-13:hover{filter: opacity(50%);}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-14 fusion_builder_column_1_2 1_2 fusion-flex-column fusion-column-inner-bg-wrapper\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"padding: 0px 0px 0px 0px;\"><div ><span class=\" fusion-imageframe imageframe-none imageframe-11 hover-type-none\"><img decoding=\"async\" width=\"1920\" height=\"1440\" title=\"weitere-produkte-stelter-1920w\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/weitere-produkte-stelter-1920w.jpg\" alt class=\"img-responsive wp-image-2030\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/weitere-produkte-stelter-1920w-768x576.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/weitere-produkte-stelter-1920w-1536x1152.jpg 1536w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/weitere-produkte-stelter-1920w.jpg 1920w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/><\/span><\/div><style type=\"text\/css\">@media only screen and (max-width:1200px) {.fusion-title.fusion-title-6{margin-top:25px!important; margin-right:0px!important;margin-bottom:10px!important;margin-left:0px!important;}}@media only screen and (max-width:767px) {.fusion-title.fusion-title-6{margin-top:25px!important; margin-right:0px!important;margin-bottom:10px!important; margin-left:0px!important;}}<\/style><div class=\"fusion-title title fusion-title-6 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"font-size:27px;margin-top:25px;margin-right:0px;margin-bottom:10px;margin-left:0px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:27;line-height:1.1;\">More products<\/h2><\/div><div class=\"fusion-text fusion-text-6 image-caption\"><p>Our precision gears are the backbone of thousands of transmission systems and machine types all across Europe. <a href=\"#\" class=\" fusion-text-flow fusion-link\" style=\"font-size:18px;display:block;margin-top:8px;font-family: TT Commons Medium, sans-serif;font-weight: 400;\">learn more<svg style=\"position: relative; top: 1px; transform: rotate(-90deg); height:14px; margin-left: 8px\" viewBox=\"0 0 100 100\"><polyline fill=\"none\" stroke=\"#00afe6\" stroke-width=\"10px\" points=\"0,25 50,75 100,25\"\/><\/svg><\/a><\/p>\n<\/div><\/div><span class=\"fusion-column-inner-bg hover-type-none\"><a class=\"fusion-column-anchor\" href=\"https:\/\/www.stelter.de\/en\/products\/more-products\/\"><span class=\"fusion-column-inner-bg-image\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;\"><\/span><\/a><\/span><style type=\"text\/css\">.fusion-body .fusion-builder-column-14{width:50% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-14 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 6.51%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 6.51%;}.fusion-flex-container .fusion-row .fusion-builder-column-14 > .fusion-column-inner-bg { margin-right:6.51%;margin-left:6.51%; }@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-14{width:50% !important;order : 0;}.fusion-builder-column-14 > .fusion-column-wrapper {margin-right : 6.51%;margin-left : 6.51%;}.fusion-flex-container .fusion-row .fusion-builder-column-14 > .fusion-column-inner-bg { margin-right:6.51%;margin-left:6.51%; }}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-14{width:100% !important;order : 0;margin-bottom : 50px;}.fusion-builder-column-14 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}.fusion-flex-container .fusion-row .fusion-builder-column-14 > .fusion-column-inner-bg { margin-right:3.255%;margin-left:3.255%; }}<\/style><style type=\"text\/css\">.fusion-builder-column-14{filter: opacity(100%);transition: filter 0.3s ease;}.fusion-builder-column-14:hover{filter: opacity(50%);}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-15 fusion_builder_column_1_1 1_1 fusion-flex-column fusion-no-small-visibility\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-top:1.4em;margin-bottom:1.4em;width:100%;\"><\/div>\n<\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-15{width:100% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-15 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.255%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.255%;}@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-15{width:100% !important;order : 0;}.fusion-builder-column-15 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-15{width:100% !important;order : 0;}.fusion-builder-column-15 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-16 fusion_builder_column_1_2 1_2 fusion-flex-column fusion-column-inner-bg-wrapper\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"padding: 0px 0px 0px 0px;\"><div ><span class=\" fusion-imageframe imageframe-none imageframe-12 hover-type-none\"><img decoding=\"async\" width=\"1920\" height=\"1440\" title=\"dienstleistungen-haerterei-3-stelter\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/09\/dienstleistungen-haerterei-3-stelter.jpg\" alt class=\"img-responsive wp-image-5276\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/09\/dienstleistungen-haerterei-3-stelter-768x576.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/09\/dienstleistungen-haerterei-3-stelter-1536x1152.jpg 1536w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/09\/dienstleistungen-haerterei-3-stelter.jpg 1920w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/><\/span><\/div><style type=\"text\/css\">@media only screen and (max-width:1200px) {.fusion-title.fusion-title-7{margin-top:25px!important; margin-right:0px!important;margin-bottom:10px!important;margin-left:0px!important;}}@media only screen and (max-width:767px) {.fusion-title.fusion-title-7{margin-top:25px!important; margin-right:0px!important;margin-bottom:10px!important; margin-left:0px!important;}}<\/style><div class=\"fusion-title title fusion-title-7 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"font-size:27px;margin-top:25px;margin-right:0px;margin-bottom:10px;margin-left:0px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:27;line-height:1.1;\">Services<\/h2><\/div><div class=\"fusion-text fusion-text-7 image-caption\"><p>Further expertise that we can provide you with. <a href=\"#\" class=\" fusion-text-flow fusion-link\" style=\"font-size:18px;display:block;margin-top:8px;font-family: TT Commons Medium, sans-serif;font-weight: 400;\">learn more<svg style=\"position: relative; top: 1px; transform: rotate(-90deg); height:14px; margin-left: 8px\" viewBox=\"0 0 100 100\"><polyline fill=\"none\" stroke=\"#00afe6\" stroke-width=\"10px\" points=\"0,25 50,75 100,25\"\/><\/svg><\/a><\/p>\n<\/div><\/div><span class=\"fusion-column-inner-bg hover-type-none\"><a class=\"fusion-column-anchor\" href=\"https:\/\/www.stelter.de\/en\/products\/services\/\"><span class=\"fusion-column-inner-bg-image\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;\"><\/span><\/a><\/span><style type=\"text\/css\">.fusion-body .fusion-builder-column-16{width:50% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-16 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 6.51%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 6.51%;}.fusion-flex-container .fusion-row .fusion-builder-column-16 > .fusion-column-inner-bg { margin-right:6.51%;margin-left:6.51%; }@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-16{width:50% !important;order : 0;}.fusion-builder-column-16 > .fusion-column-wrapper {margin-right : 6.51%;margin-left : 6.51%;}.fusion-flex-container .fusion-row .fusion-builder-column-16 > .fusion-column-inner-bg { margin-right:6.51%;margin-left:6.51%; }}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-16{width:100% !important;order : 0;}.fusion-builder-column-16 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}.fusion-flex-container .fusion-row .fusion-builder-column-16 > .fusion-column-inner-bg { margin-right:3.255%;margin-left:3.255%; }}<\/style><style type=\"text\/css\">.fusion-builder-column-16{filter: opacity(100%);transition: filter 0.3s ease;}.fusion-builder-column-16:hover{filter: opacity(50%);}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-7-1{ padding-top : 2vw;margin-top : 0px;padding-right : 6vw;padding-bottom : 3vw;margin-bottom : 0px;padding-left : 6vw;}<\/style><\/div><\/div>\n                    <\/div>\n                <\/div><div class=\"off-canvas-content\" data-trigger=\"overlay-competences\">\n                    <div class=\"off-canvas-content-wrapper\">\n                        <div class=\"off-canvas-content-close\"><span class=\"fas fa-times\"><\/span><\/div>\n                        <div class=\"off-canvas-content-content\"><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-7-2 fusion-flex-container hundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: #f9f9f9;background-position: center center;background-repeat: no-repeat;border-width: 0px 0 0px 0;border-color:#ffffff;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"width:107% !important;max-width:107% !important;margin-left: calc(-7% \/ 2 );margin-right: calc(-7% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-17 fusion_builder_column_1_3 1_3 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div ><span class=\" fusion-imageframe imageframe-none imageframe-13 hover-type-none\"><img decoding=\"async\" width=\"1440\" height=\"1440\" title=\"fertigungsprozesse-stelter-1200w\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/04\/fertigungsprozesse-stelter-1200w.jpg\" alt class=\"img-responsive wp-image-2936\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/04\/fertigungsprozesse-stelter-1200w-768x768.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/04\/fertigungsprozesse-stelter-1200w.jpg 1440w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" \/><\/span><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-17{width:33.333333333333% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-17 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 9.765%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 9.765%;}@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-17{width:33.333333333333% !important;order : 0;}.fusion-builder-column-17 > .fusion-column-wrapper {margin-right : 9.765%;margin-left : 9.765%;}}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-17{width:100% !important;order : 0;}.fusion-builder-column-17 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-18 fusion_builder_column_2_3 2_3 fusion-flex-column fusion-column-inner-bg-wrapper\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"padding: 0px 0px 0px 0px;\"><style type=\"text\/css\">@media only screen and (max-width:1200px) {.fusion-title.fusion-title-8{margin-top:0px!important; margin-right:0px!important;margin-bottom:0px!important;margin-left:0px!important;}}@media only screen and (max-width:767px) {.fusion-title.fusion-title-8{margin-top:25px!important; margin-right:0px!important;margin-bottom:0px!important; margin-left:0px!important;}}<\/style><div class=\"fusion-title title fusion-title-8 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"font-size:34px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:34;line-height:1.1;\">Production processes<\/h2><\/div><div class=\"fusion-separator\" style=\"align-self: flex-start;margin-right:auto;margin-top:20px;margin-bottom:20px;width:100%;max-width:200px;\"><div class=\"fusion-separator-border sep-single sep-solid\" style=\"border-color:#00afe6;border-top-width:1px;\"><\/div><\/div><div class=\"fusion-text fusion-text-8\"><p>Supported by around 200 robots, our entire process chain ensures efficiency in series production and fulfils specifications up to module 44 and 2-ton unit weights. <a href=\"#\" class=\" fusion-text-flow fusion-link\" style=\"font-size:18px;display:block;margin-top:8px;font-family: TT Commons Medium, sans-serif;font-weight: 400;\">learn more<svg style=\"position: relative; top: 1px; transform: rotate(-90deg); height:14px; margin-left: 8px\" viewBox=\"0 0 100 100\"><polyline fill=\"none\" stroke=\"#00afe6\" stroke-width=\"10px\" points=\"0,25 50,75 100,25\"\/><\/svg><\/a><\/p>\n<\/div><\/div><span class=\"fusion-column-inner-bg hover-type-none\"><a class=\"fusion-column-anchor\" href=\"https:\/\/www.stelter.de\/en\/expertise\/production-processes\/\"><span class=\"fusion-column-inner-bg-image\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;\"><\/span><\/a><\/span><style type=\"text\/css\">.fusion-body .fusion-builder-column-18{width:66.666666666667% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-18 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 4.8825%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-18 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-18{width:66.666666666667% !important;order : 0;}.fusion-builder-column-18 > .fusion-column-wrapper {margin-right : 4.8825%;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-18 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-18{width:100% !important;order : 0;}.fusion-builder-column-18 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}.fusion-flex-container .fusion-row .fusion-builder-column-18 > .fusion-column-inner-bg { margin-right:3.255%;margin-left:3.255%; }}<\/style><style type=\"text\/css\">.fusion-builder-column-18{filter: opacity(100%);transition: filter 0.3s ease;}.fusion-builder-column-18:hover{filter: opacity(50%);}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-7-2{ padding-top : 3vw;margin-top : 0px;padding-right : 6vw;padding-bottom : 3vw;margin-bottom : 0px;padding-left : 6vw;}<\/style><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-7-3 fusion-flex-container hundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: #f9f9f9;background-position: center center;background-repeat: no-repeat;border-width: 0px 0 0px 0;border-color:#ffffff;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"width:107% !important;max-width:107% !important;margin-left: calc(-7% \/ 2 );margin-right: calc(-7% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-19 fusion_builder_column_1_3 1_3 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div ><span class=\" fusion-imageframe imageframe-none imageframe-14 hover-type-none\"><img decoding=\"async\" width=\"1200\" height=\"1200\" title=\"magic-hands-stelter-1200w\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/magic-hands-stelter-1200w.jpg\" alt class=\"img-responsive wp-image-2020\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/magic-hands-stelter-1200w-768x768.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/magic-hands-stelter-1200w.jpg 1200w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/span><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-19{width:33.333333333333% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-19 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 9.765%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 9.765%;}@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-19{width:33.333333333333% !important;order : 0;}.fusion-builder-column-19 > .fusion-column-wrapper {margin-right : 9.765%;margin-left : 9.765%;}}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-19{width:100% !important;order : 0;}.fusion-builder-column-19 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-20 fusion_builder_column_2_3 2_3 fusion-flex-column fusion-column-inner-bg-wrapper\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"padding: 0px 0px 0px 0px;\"><style type=\"text\/css\">@media only screen and (max-width:1200px) {.fusion-title.fusion-title-9{margin-top:0px!important; margin-right:0px!important;margin-bottom:0px!important;margin-left:0px!important;}}@media only screen and (max-width:767px) {.fusion-title.fusion-title-9{margin-top:25px!important; margin-right:0px!important;margin-bottom:0px!important; margin-left:0px!important;}}<\/style><div class=\"fusion-title title fusion-title-9 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"font-size:34px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:34;line-height:1.1;\">Magic hands<\/h2><\/div><div class=\"fusion-separator\" style=\"align-self: flex-start;margin-right:auto;margin-top:20px;margin-bottom:20px;width:100%;max-width:200px;\"><div class=\"fusion-separator-border sep-single sep-solid\" style=\"border-color:#00afe6;border-top-width:1px;\"><\/div><\/div><div class=\"fusion-text fusion-text-9\"><p>We also fulfil special requests, such as ready-to-install components and assemblies \u2013 just in time. To do this we develop fully interlinked processing centres.<a href=\"#\" class=\" fusion-text-flow fusion-link\" style=\"font-size:18px;display:block;margin-top:8px;font-family: TT Commons Medium, sans-serif;font-weight: 400;\">learn more<svg style=\"position: relative; top: 1px; transform: rotate(-90deg); height:14px; margin-left: 8px\" viewBox=\"0 0 100 100\"><polyline fill=\"none\" stroke=\"#00afe6\" stroke-width=\"10px\" points=\"0,25 50,75 100,25\"\/><\/svg><\/a><\/p>\n<\/div><\/div><span class=\"fusion-column-inner-bg hover-type-none\"><a class=\"fusion-column-anchor\" href=\"https:\/\/www.stelter.de\/en\/expertise\/magic-hands\/\"><span class=\"fusion-column-inner-bg-image\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;\"><\/span><\/a><\/span><style type=\"text\/css\">.fusion-body .fusion-builder-column-20{width:66.666666666667% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-20 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 4.8825%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-20 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-20{width:66.666666666667% !important;order : 0;}.fusion-builder-column-20 > .fusion-column-wrapper {margin-right : 4.8825%;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-20 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-20{width:100% !important;order : 0;}.fusion-builder-column-20 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}.fusion-flex-container .fusion-row .fusion-builder-column-20 > .fusion-column-inner-bg { margin-right:3.255%;margin-left:3.255%; }}<\/style><style type=\"text\/css\">.fusion-builder-column-20{filter: opacity(100%);transition: filter 0.3s ease;}.fusion-builder-column-20:hover{filter: opacity(50%);}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-7-3{ padding-top : 0px;margin-top : 0px;padding-right : 6vw;padding-bottom : 3vw;margin-bottom : 0px;padding-left : 6vw;}<\/style><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-7-4 fusion-flex-container hundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: #f9f9f9;background-position: center center;background-repeat: no-repeat;border-width: 0px 0 0px 0;border-color:#ffffff;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"width:107% !important;max-width:107% !important;margin-left: calc(-7% \/ 2 );margin-right: calc(-7% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-21 fusion_builder_column_1_3 1_3 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div ><span class=\" fusion-imageframe imageframe-none imageframe-15 hover-type-none\"><img decoding=\"async\" width=\"1440\" height=\"1440\" title=\"qualitaetsmanagment-stelter-2-1200w\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/08\/qualitaetsmanagment-stelter-2-1200w.jpg\" alt class=\"img-responsive wp-image-4470\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/08\/qualitaetsmanagment-stelter-2-1200w-768x768.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/08\/qualitaetsmanagment-stelter-2-1200w.jpg 1440w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" \/><\/span><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-21{width:33.333333333333% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-21 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 9.765%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 9.765%;}@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-21{width:33.333333333333% !important;order : 0;}.fusion-builder-column-21 > .fusion-column-wrapper {margin-right : 9.765%;margin-left : 9.765%;}}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-21{width:100% !important;order : 0;}.fusion-builder-column-21 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-22 fusion_builder_column_2_3 2_3 fusion-flex-column fusion-column-inner-bg-wrapper\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"padding: 0px 0px 0px 0px;\"><style type=\"text\/css\">@media only screen and (max-width:1200px) {.fusion-title.fusion-title-10{margin-top:0px!important; margin-right:0px!important;margin-bottom:0px!important;margin-left:0px!important;}}@media only screen and (max-width:767px) {.fusion-title.fusion-title-10{margin-top:25px!important; margin-right:0px!important;margin-bottom:0px!important; margin-left:0px!important;}}<\/style><div class=\"fusion-title title fusion-title-10 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"font-size:34px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:34;line-height:1.1;\">Quality management<\/h2><\/div><div class=\"fusion-separator\" style=\"align-self: flex-start;margin-right:auto;margin-top:20px;margin-bottom:20px;width:100%;max-width:200px;\"><div class=\"fusion-separator-border sep-single sep-solid\" style=\"border-color:#00afe6;border-top-width:1px;\"><\/div><\/div><div class=\"fusion-text fusion-text-10\"><p>As part of our zero-defect strategy, we leave nothing to chance and document everything by default. We are also certified to IATF 16949. <a href=\"#\" class=\" fusion-text-flow fusion-link\" style=\"font-size:18px;display:block;margin-top:8px;font-family: TT Commons Medium, sans-serif;font-weight: 400;\">learn more<svg style=\"position: relative; top: 1px; transform: rotate(-90deg); height:14px; margin-left: 8px\" viewBox=\"0 0 100 100\"><polyline fill=\"none\" stroke=\"#00afe6\" stroke-width=\"10px\" points=\"0,25 50,75 100,25\"\/><\/svg><\/a><\/p>\n<\/div><\/div><span class=\"fusion-column-inner-bg hover-type-none\"><a class=\"fusion-column-anchor\" href=\"https:\/\/www.stelter.de\/en\/expertise\/quality-management\/\"><span class=\"fusion-column-inner-bg-image\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;\"><\/span><\/a><\/span><style type=\"text\/css\">.fusion-body .fusion-builder-column-22{width:66.666666666667% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-22 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 4.8825%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-22 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-22{width:66.666666666667% !important;order : 0;}.fusion-builder-column-22 > .fusion-column-wrapper {margin-right : 4.8825%;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-22 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-22{width:100% !important;order : 0;}.fusion-builder-column-22 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}.fusion-flex-container .fusion-row .fusion-builder-column-22 > .fusion-column-inner-bg { margin-right:3.255%;margin-left:3.255%; }}<\/style><style type=\"text\/css\">.fusion-builder-column-22{filter: opacity(100%);transition: filter 0.3s ease;}.fusion-builder-column-22:hover{filter: opacity(50%);}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-7-4{ padding-top : 0px;margin-top : 0px;padding-right : 6vw;padding-bottom : 3vw;margin-bottom : 0px;padding-left : 6vw;}<\/style><\/div><\/div>\n                    <\/div>\n                <\/div><div class=\"off-canvas-content\" data-trigger=\"overlay-company\">\n                    <div class=\"off-canvas-content-wrapper\">\n                        <div class=\"off-canvas-content-close\"><span class=\"fas fa-times\"><\/span><\/div>\n                        <div class=\"off-canvas-content-content\"><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-7-5 fusion-flex-container hundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: #f9f9f9;background-position: center center;background-repeat: no-repeat;border-width: 0px 0 0px 0;border-color:#ffffff;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"width:107% !important;max-width:107% !important;margin-left: calc(-7% \/ 2 );margin-right: calc(-7% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-23 fusion_builder_column_1_3 1_3 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div ><span class=\" fusion-imageframe imageframe-none imageframe-16 hover-type-none\"><img decoding=\"async\" width=\"1200\" height=\"1200\" title=\"ueber-uns-stelter-1200w\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/09\/ueber-uns-stelter-1200w.jpg\" alt class=\"img-responsive wp-image-5690\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/09\/ueber-uns-stelter-1200w-768x768.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/09\/ueber-uns-stelter-1200w.jpg 1200w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/span><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-23{width:33.333333333333% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-23 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 9.765%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 9.765%;}@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-23{width:33.333333333333% !important;order : 0;}.fusion-builder-column-23 > .fusion-column-wrapper {margin-right : 9.765%;margin-left : 9.765%;}}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-23{width:100% !important;order : 0;}.fusion-builder-column-23 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-24 fusion_builder_column_2_3 2_3 fusion-flex-column fusion-column-inner-bg-wrapper\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"padding: 0px 0px 0px 0px;\"><style type=\"text\/css\">@media only screen and (max-width:1200px) {.fusion-title.fusion-title-11{margin-top:0px!important; margin-right:0px!important;margin-bottom:0px!important;margin-left:0px!important;}}@media only screen and (max-width:767px) {.fusion-title.fusion-title-11{margin-top:25px!important; margin-right:0px!important;margin-bottom:0px!important; margin-left:0px!important;}}<\/style><div class=\"fusion-title title fusion-title-11 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"font-size:34px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:34;line-height:1.1;\">About us<\/h2><\/div><div class=\"fusion-separator\" style=\"align-self: flex-start;margin-right:auto;margin-top:20px;margin-bottom:20px;width:100%;max-width:200px;\"><div class=\"fusion-separator-border sep-single sep-solid\" style=\"border-color:#00afe6;border-top-width:1px;\"><\/div><\/div><div class=\"fusion-text fusion-text-11 fusion-text-no-margin\"><p>Founded in 1950, our company developed into the leader in quality for metal gears and sprockets Europe-wide. <a href=\"..\/unternehmen\/ueber-uns\" class=\" fusion-text-flow fusion-link\" style=\"font-size:18px;display:block;margin-top:8px;font-family: TT Commons Medium, sans-serif;font-weight: 400;\">learn more<svg style=\"position: relative; top: 1px; transform: rotate(-90deg); height:14px; margin-left: 8px\" viewBox=\"0 0 100 100\"><polyline fill=\"none\" stroke=\"#00afe6\" stroke-width=\"10px\" points=\"0,25 50,75 100,25\"\/><\/svg><\/a><\/p>\n<\/div><\/div><span class=\"fusion-column-inner-bg hover-type-zoomin\"><a class=\"fusion-column-anchor\" href=\"https:\/\/www.stelter.de\/en\/the-company\/about-us\/\"><span class=\"fusion-column-inner-bg-image\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;\"><\/span><\/a><\/span><style type=\"text\/css\">.fusion-body .fusion-builder-column-24{width:66.666666666667% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-24 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 4.8825%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-24 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-24{width:66.666666666667% !important;order : 0;}.fusion-builder-column-24 > .fusion-column-wrapper {margin-right : 4.8825%;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-24 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-24{width:100% !important;order : 0;}.fusion-builder-column-24 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}.fusion-flex-container .fusion-row .fusion-builder-column-24 > .fusion-column-inner-bg { margin-right:3.255%;margin-left:3.255%; }}<\/style><style type=\"text\/css\">.fusion-builder-column-24{filter: opacity(100%);transition: filter 0.3s ease;}.fusion-builder-column-24:hover{filter: opacity(50%);}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-fullwidth.fusion-builder-row-7-5 a:not(.awb-custom-text-hover-color):not(.fusion-button):not(.fusion-builder-module-control):not(.fusion-social-network-icon):not(.fb-icon-element):not(.fusion-countdown-link):not(.fusion-rollover-link):not(.fusion-rollover-gallery):not(.fusion-button-bar):not(.add_to_cart_button):not(.show_details_button):not(.product_type_external):not(.fusion-view-cart):not(.fusion-quick-view):not(.fusion-rollover-title-link):not(.fusion-breadcrumb-link):hover, .fusion-fullwidth.fusion-builder-row-7-5 a:not(.awb-custom-text-hover-color):not(.fusion-button):not(.fusion-builder-module-control):not(.fusion-social-network-icon):not(.fb-icon-element):not(.fusion-countdown-link):not(.fusion-rollover-link):not(.fusion-rollover-gallery):not(.fusion-button-bar):not(.add_to_cart_button):not(.show_details_button):not(.product_type_external):not(.fusion-view-cart):not(.fusion-quick-view):not(.fusion-rollover-title-link):not(.fusion-breadcrumb-link):hover:before, .fusion-fullwidth.fusion-builder-row-7-5 a:not(.awb-custom-text-hover-color):not(.fusion-button):not(.fusion-builder-module-control):not(.fusion-social-network-icon):not(.fb-icon-element):not(.fusion-countdown-link):not(.fusion-rollover-link):not(.fusion-rollover-gallery):not(.fusion-button-bar):not(.add_to_cart_button):not(.show_details_button):not(.product_type_external):not(.fusion-view-cart):not(.fusion-quick-view):not(.fusion-rollover-title-link):not(.fusion-breadcrumb-link):hover:after {color: #022c4e;}.fusion-fullwidth.fusion-builder-row-7-5 .pagination a.inactive:hover, .fusion-fullwidth.fusion-builder-row-7-5 .fusion-filters .fusion-filter.fusion-active a {border-color: #022c4e;}.fusion-fullwidth.fusion-builder-row-7-5 .pagination .current {border-color: #022c4e; background-color: #022c4e;}.fusion-fullwidth.fusion-builder-row-7-5 .fusion-filters .fusion-filter.fusion-active a, .fusion-fullwidth.fusion-builder-row-7-5 .fusion-date-and-formats .fusion-format-box, .fusion-fullwidth.fusion-builder-row-7-5 .fusion-popover, .fusion-fullwidth.fusion-builder-row-7-5 .tooltip-shortcode {color: #022c4e;}#wrapper .fusion-fullwidth.fusion-builder-row-7-5 .fusion-widget-area .fusion-vertical-menu-widget .menu li.current_page_ancestor > a, #wrapper .fusion-fullwidth.fusion-builder-row-7-5 .fusion-widget-area .fusion-vertical-menu-widget .menu li.current_page_ancestor > a:before, #wrapper .fusion-fullwidth.fusion-builder-row-7-5 .fusion-widget-area .fusion-vertical-menu-widget .current-menu-item > a, #wrapper .fusion-fullwidth.fusion-builder-row-7-5 .fusion-widget-area .fusion-vertical-menu-widget .current-menu-item > a:before, #wrapper .fusion-fullwidth.fusion-builder-row-7-5 .fusion-widget-area .fusion-vertical-menu-widget .current_page_item > a, #wrapper .fusion-fullwidth.fusion-builder-row-7-5 .fusion-widget-area .fusion-vertical-menu-widget .current_page_item > a:before {color: #022c4e;}#wrapper .fusion-fullwidth.fusion-builder-row-7-5 .fusion-widget-area .widget_nav_menu .menu li.current_page_ancestor > a, #wrapper .fusion-fullwidth.fusion-builder-row-7-5 .fusion-widget-area .widget_nav_menu .menu li.current_page_ancestor > a:before, #wrapper .fusion-fullwidth.fusion-builder-row-7-5 .fusion-widget-area .widget_nav_menu .current-menu-item > a, #wrapper .fusion-fullwidth.fusion-builder-row-7-5 .fusion-widget-area .widget_nav_menu .current-menu-item > a:before, #wrapper .fusion-fullwidth.fusion-builder-row-7-5 .fusion-widget-area .widget_nav_menu .current_page_item > a, #wrapper .fusion-fullwidth.fusion-builder-row-7-5 .fusion-widget-area .widget_nav_menu .current_page_item > a:before {color: #022c4e;}#wrapper .fusion-fullwidth.fusion-builder-row-7-5 .fusion-vertical-menu-widget .menu li.current_page_item > a { border-right-color:#022c4e;border-left-color:#022c4e;}#wrapper .fusion-fullwidth.fusion-builder-row-7-5 .fusion-widget-area .tagcloud a:hover { color: #fff; background-color: #022c4e;border-color: #022c4e;}#main .fusion-fullwidth.fusion-builder-row-7-5 .post .blog-shortcode-post-title a:hover {color: #022c4e;}.fusion-body .fusion-flex-container.fusion-builder-row-7-5{ padding-top : 3vw;margin-top : 0px;padding-right : 6vw;padding-bottom : 3vw;margin-bottom : 0px;padding-left : 6vw;}<\/style><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-7-6 fusion-flex-container hundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: #f9f9f9;background-position: center center;background-repeat: no-repeat;border-width: 0px 0 0px 0;border-color:#ffffff;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"width:107% !important;max-width:107% !important;margin-left: calc(-7% \/ 2 );margin-right: calc(-7% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-25 fusion_builder_column_1_3 1_3 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div ><span class=\" fusion-imageframe imageframe-none imageframe-17 hover-type-none\"><img decoding=\"async\" width=\"1200\" height=\"1200\" title=\"standort-stelter-1200w\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/05\/standort-stelter-1200w.jpg\" alt class=\"img-responsive wp-image-3386\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/05\/standort-stelter-1200w-768x768.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/05\/standort-stelter-1200w.jpg 1200w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/span><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-25{width:33.333333333333% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-25 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 9.765%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 9.765%;}@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-25{width:33.333333333333% !important;order : 0;}.fusion-builder-column-25 > .fusion-column-wrapper {margin-right : 9.765%;margin-left : 9.765%;}}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-25{width:100% !important;order : 0;}.fusion-builder-column-25 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-26 fusion_builder_column_2_3 2_3 fusion-flex-column fusion-column-inner-bg-wrapper\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"padding: 0px 0px 0px 0px;\"><style type=\"text\/css\">@media only screen and (max-width:1200px) {.fusion-title.fusion-title-12{margin-top:0px!important; margin-right:0px!important;margin-bottom:0px!important;margin-left:0px!important;}}@media only screen and (max-width:767px) {.fusion-title.fusion-title-12{margin-top:25px!important; margin-right:0px!important;margin-bottom:0px!important; margin-left:0px!important;}}<\/style><div class=\"fusion-title title fusion-title-12 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"font-size:34px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:34;line-height:1.1;\">Location<\/h2><\/div><div class=\"fusion-separator\" style=\"align-self: flex-start;margin-right:auto;margin-top:20px;margin-bottom:20px;width:100%;max-width:200px;\"><div class=\"fusion-separator-border sep-single sep-solid\" style=\"border-color:#00afe6;border-top-width:1px;\"><\/div><\/div><div class=\"fusion-text fusion-text-12 fusion-text-no-margin\"><p>Stelter produces small and large series exclusively in Germany, and does so on premises spanning 29,000\u00a0m\u00b2. Certified to IATF 16949, ISO 14001, ISO 50001. <a href=\"..\/unternehmen\/standort\" class=\" fusion-text-flow fusion-link\" style=\"font-size:18px;display:block;margin-top:8px;font-family: TT Commons Medium, sans-serif;font-weight: 400;\">learn more<svg style=\"position: relative; top: 1px; transform: rotate(-90deg); height:14px; margin-left: 8px\" viewBox=\"0 0 100 100\"><polyline fill=\"none\" stroke=\"#00afe6\" stroke-width=\"10px\" points=\"0,25 50,75 100,25\"\/><\/svg><\/a><\/p>\n<\/div><\/div><span class=\"fusion-column-inner-bg hover-type-none\"><a class=\"fusion-column-anchor\" href=\"https:\/\/www.stelter.de\/en\/the-company\/location\/\"><span class=\"fusion-column-inner-bg-image\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;\"><\/span><\/a><\/span><style type=\"text\/css\">.fusion-body .fusion-builder-column-26{width:66.666666666667% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-26 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 4.8825%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-26 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-26{width:66.666666666667% !important;order : 0;}.fusion-builder-column-26 > .fusion-column-wrapper {margin-right : 4.8825%;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-26 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-26{width:100% !important;order : 0;}.fusion-builder-column-26 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}.fusion-flex-container .fusion-row .fusion-builder-column-26 > .fusion-column-inner-bg { margin-right:3.255%;margin-left:3.255%; }}<\/style><style type=\"text\/css\">.fusion-builder-column-26{filter: opacity(100%);transition: filter 0.3s ease;}.fusion-builder-column-26:hover{filter: opacity(50%);}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-7-6{ padding-top : 0px;margin-top : 0px;padding-right : 6vw;padding-bottom : 3vw;margin-bottom : 0px;padding-left : 6vw;}<\/style><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-7-7 fusion-flex-container hundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: #f9f9f9;background-position: center center;background-repeat: no-repeat;border-width: 0px 0 0px 0;border-color:#ffffff;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"width:107% !important;max-width:107% !important;margin-left: calc(-7% \/ 2 );margin-right: calc(-7% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-27 fusion_builder_column_1_3 1_3 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div ><span class=\" fusion-imageframe imageframe-none imageframe-18 hover-type-none\"><img decoding=\"async\" width=\"1200\" height=\"1200\" title=\"verantwortung-stelter-1200w\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/09\/verantwortung-stelter-1200w.jpg\" alt class=\"img-responsive wp-image-3829\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/09\/verantwortung-stelter-1200w-768x768.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/09\/verantwortung-stelter-1200w.jpg 1200w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/span><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-27{width:33.333333333333% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-27 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 9.765%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 9.765%;}@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-27{width:33.333333333333% !important;order : 0;}.fusion-builder-column-27 > .fusion-column-wrapper {margin-right : 9.765%;margin-left : 9.765%;}}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-27{width:100% !important;order : 0;}.fusion-builder-column-27 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-28 fusion_builder_column_2_3 2_3 fusion-flex-column fusion-column-inner-bg-wrapper\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"padding: 0px 0px 0px 0px;\"><style type=\"text\/css\">@media only screen and (max-width:1200px) {.fusion-title.fusion-title-13{margin-top:0px!important; margin-right:0px!important;margin-bottom:0px!important;margin-left:0px!important;}}@media only screen and (max-width:767px) {.fusion-title.fusion-title-13{margin-top:25px!important; margin-right:0px!important;margin-bottom:0px!important; margin-left:0px!important;}}<\/style><div class=\"fusion-title title fusion-title-13 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"font-size:34px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:34;line-height:1.1;\">Responsibility<\/h2><\/div><div class=\"fusion-separator\" style=\"align-self: flex-start;margin-right:auto;margin-top:20px;margin-bottom:20px;width:100%;max-width:200px;\"><div class=\"fusion-separator-border sep-single sep-solid\" style=\"border-color:#00afe6;border-top-width:1px;\"><\/div><\/div><div class=\"fusion-text fusion-text-13 fusion-text-no-margin\"><p>We have an obligation towards our employees, customers and the environment. Learn about how we fulfil it. <a href=\"..\/unternehmen\/verantwortung\" class=\" fusion-text-flow fusion-link\" style=\"font-size:18px;display:block;margin-top:8px;font-family: TT Commons Medium, sans-serif;font-weight: 400;\">learn more<svg style=\"position: relative; top: 1px; transform: rotate(-90deg); height:14px; margin-left: 8px\" viewBox=\"0 0 100 100\"><polyline fill=\"none\" stroke=\"#00afe6\" stroke-width=\"10px\" points=\"0,25 50,75 100,25\"\/><\/svg><\/a><\/p>\n<\/div><\/div><span class=\"fusion-column-inner-bg hover-type-none\"><a class=\"fusion-column-anchor\" href=\"https:\/\/www.stelter.de\/en\/the-company\/responsibility\/\"><span class=\"fusion-column-inner-bg-image\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;\"><\/span><\/a><\/span><style type=\"text\/css\">.fusion-body .fusion-builder-column-28{width:66.666666666667% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-28 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 4.8825%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-28 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-28{width:66.666666666667% !important;order : 0;}.fusion-builder-column-28 > .fusion-column-wrapper {margin-right : 4.8825%;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-28 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-28{width:100% !important;order : 0;}.fusion-builder-column-28 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}.fusion-flex-container .fusion-row .fusion-builder-column-28 > .fusion-column-inner-bg { margin-right:3.255%;margin-left:3.255%; }}<\/style><style type=\"text\/css\">.fusion-builder-column-28{filter: brightness(100%) opacity(100%);transition: filter 0.3s ease;}.fusion-builder-column-28:hover{filter: brightness(110%) opacity(50%);}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-fullwidth.fusion-builder-row-7-7 a:not(.awb-custom-text-hover-color):not(.fusion-button):not(.fusion-builder-module-control):not(.fusion-social-network-icon):not(.fb-icon-element):not(.fusion-countdown-link):not(.fusion-rollover-link):not(.fusion-rollover-gallery):not(.fusion-button-bar):not(.add_to_cart_button):not(.show_details_button):not(.product_type_external):not(.fusion-view-cart):not(.fusion-quick-view):not(.fusion-rollover-title-link):not(.fusion-breadcrumb-link):hover, .fusion-fullwidth.fusion-builder-row-7-7 a:not(.awb-custom-text-hover-color):not(.fusion-button):not(.fusion-builder-module-control):not(.fusion-social-network-icon):not(.fb-icon-element):not(.fusion-countdown-link):not(.fusion-rollover-link):not(.fusion-rollover-gallery):not(.fusion-button-bar):not(.add_to_cart_button):not(.show_details_button):not(.product_type_external):not(.fusion-view-cart):not(.fusion-quick-view):not(.fusion-rollover-title-link):not(.fusion-breadcrumb-link):hover:before, .fusion-fullwidth.fusion-builder-row-7-7 a:not(.awb-custom-text-hover-color):not(.fusion-button):not(.fusion-builder-module-control):not(.fusion-social-network-icon):not(.fb-icon-element):not(.fusion-countdown-link):not(.fusion-rollover-link):not(.fusion-rollover-gallery):not(.fusion-button-bar):not(.add_to_cart_button):not(.show_details_button):not(.product_type_external):not(.fusion-view-cart):not(.fusion-quick-view):not(.fusion-rollover-title-link):not(.fusion-breadcrumb-link):hover:after {color: #022c4e;}.fusion-fullwidth.fusion-builder-row-7-7 .pagination a.inactive:hover, .fusion-fullwidth.fusion-builder-row-7-7 .fusion-filters .fusion-filter.fusion-active a {border-color: #022c4e;}.fusion-fullwidth.fusion-builder-row-7-7 .pagination .current {border-color: #022c4e; background-color: #022c4e;}.fusion-fullwidth.fusion-builder-row-7-7 .fusion-filters .fusion-filter.fusion-active a, .fusion-fullwidth.fusion-builder-row-7-7 .fusion-date-and-formats .fusion-format-box, .fusion-fullwidth.fusion-builder-row-7-7 .fusion-popover, .fusion-fullwidth.fusion-builder-row-7-7 .tooltip-shortcode {color: #022c4e;}#wrapper .fusion-fullwidth.fusion-builder-row-7-7 .fusion-widget-area .fusion-vertical-menu-widget .menu li.current_page_ancestor > a, #wrapper .fusion-fullwidth.fusion-builder-row-7-7 .fusion-widget-area .fusion-vertical-menu-widget .menu li.current_page_ancestor > a:before, #wrapper .fusion-fullwidth.fusion-builder-row-7-7 .fusion-widget-area .fusion-vertical-menu-widget .current-menu-item > a, #wrapper .fusion-fullwidth.fusion-builder-row-7-7 .fusion-widget-area .fusion-vertical-menu-widget .current-menu-item > a:before, #wrapper .fusion-fullwidth.fusion-builder-row-7-7 .fusion-widget-area .fusion-vertical-menu-widget .current_page_item > a, #wrapper .fusion-fullwidth.fusion-builder-row-7-7 .fusion-widget-area .fusion-vertical-menu-widget .current_page_item > a:before {color: #022c4e;}#wrapper .fusion-fullwidth.fusion-builder-row-7-7 .fusion-widget-area .widget_nav_menu .menu li.current_page_ancestor > a, #wrapper .fusion-fullwidth.fusion-builder-row-7-7 .fusion-widget-area .widget_nav_menu .menu li.current_page_ancestor > a:before, #wrapper .fusion-fullwidth.fusion-builder-row-7-7 .fusion-widget-area .widget_nav_menu .current-menu-item > a, #wrapper .fusion-fullwidth.fusion-builder-row-7-7 .fusion-widget-area .widget_nav_menu .current-menu-item > a:before, #wrapper .fusion-fullwidth.fusion-builder-row-7-7 .fusion-widget-area .widget_nav_menu .current_page_item > a, #wrapper .fusion-fullwidth.fusion-builder-row-7-7 .fusion-widget-area .widget_nav_menu .current_page_item > a:before {color: #022c4e;}#wrapper .fusion-fullwidth.fusion-builder-row-7-7 .fusion-vertical-menu-widget .menu li.current_page_item > a { border-right-color:#022c4e;border-left-color:#022c4e;}#wrapper .fusion-fullwidth.fusion-builder-row-7-7 .fusion-widget-area .tagcloud a:hover { color: #fff; background-color: #022c4e;border-color: #022c4e;}#main .fusion-fullwidth.fusion-builder-row-7-7 .post .blog-shortcode-post-title a:hover {color: #022c4e;}.fusion-body .fusion-flex-container.fusion-builder-row-7-7{ padding-top : 0px;margin-top : 0px;padding-right : 6vw;padding-bottom : 3vw;margin-bottom : 0px;padding-left : 6vw;}<\/style><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-7-8 fusion-flex-container hundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: #f9f9f9;background-position: center center;background-repeat: no-repeat;border-width: 0px 0 0px 0;border-color:#ffffff;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"width:107% !important;max-width:107% !important;margin-left: calc(-7% \/ 2 );margin-right: calc(-7% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-29 fusion_builder_column_1_3 1_3 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div ><span class=\" fusion-imageframe imageframe-none imageframe-19 hover-type-none\"><img decoding=\"async\" width=\"1440\" height=\"1440\" title=\"aktuelles-stelter-1200w\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/07\/aktuelles-stelter-1200w.jpg\" alt class=\"img-responsive wp-image-3811\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/07\/aktuelles-stelter-1200w-768x768.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/07\/aktuelles-stelter-1200w.jpg 1440w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" \/><\/span><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-29{width:33.333333333333% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-29 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 9.765%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 9.765%;}@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-29{width:33.333333333333% !important;order : 0;}.fusion-builder-column-29 > .fusion-column-wrapper {margin-right : 9.765%;margin-left : 9.765%;}}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-29{width:100% !important;order : 0;}.fusion-builder-column-29 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-30 fusion_builder_column_2_3 2_3 fusion-flex-column fusion-column-inner-bg-wrapper\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"padding: 0px 0px 0px 0px;\"><style type=\"text\/css\">@media only screen and (max-width:1200px) {.fusion-title.fusion-title-14{margin-top:0px!important; margin-right:0px!important;margin-bottom:0px!important;margin-left:0px!important;}}@media only screen and (max-width:767px) {.fusion-title.fusion-title-14{margin-top:25px!important; margin-right:0px!important;margin-bottom:0px!important; margin-left:0px!important;}}<\/style><div class=\"fusion-title title fusion-title-14 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"font-size:34px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:34;line-height:1.1;\">Latest news<\/h2><\/div><div class=\"fusion-separator\" style=\"align-self: flex-start;margin-right:auto;margin-top:20px;margin-bottom:20px;width:100%;max-width:200px;\"><div class=\"fusion-separator-border sep-single sep-solid\" style=\"border-color:#00afe6;border-top-width:1px;\"><\/div><\/div><div class=\"fusion-text fusion-text-14 fusion-text-no-margin\"><p>Whether it be new projects and product developments or technical papers and trade fair dates: we bring it to you here first. <a href=\"..\/unternehmen\/aktuelles\" class=\" fusion-text-flow fusion-link\" style=\"font-size:18px;display:block;margin-top:8px;font-family: TT Commons Medium, sans-serif;font-weight: 400;\">learn more<svg style=\"position: relative; top: 1px; transform: rotate(-90deg); height:14px; margin-left: 8px\" viewBox=\"0 0 100 100\"><polyline fill=\"none\" stroke=\"#00afe6\" stroke-width=\"10px\" points=\"0,25 50,75 100,25\"\/><\/svg><\/a><\/p>\n<\/div><\/div><span class=\"fusion-column-inner-bg hover-type-none\"><a class=\"fusion-column-anchor\" href=\"https:\/\/www.stelter.de\/en\/the-company\/latest-news\/\"><span class=\"fusion-column-inner-bg-image\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;\"><\/span><\/a><\/span><style type=\"text\/css\">.fusion-body .fusion-builder-column-30{width:66.666666666667% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-30 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 4.8825%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-30 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-30{width:66.666666666667% !important;order : 0;}.fusion-builder-column-30 > .fusion-column-wrapper {margin-right : 4.8825%;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-30 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-30{width:100% !important;order : 0;}.fusion-builder-column-30 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}.fusion-flex-container .fusion-row .fusion-builder-column-30 > .fusion-column-inner-bg { margin-right:3.255%;margin-left:3.255%; }}<\/style><style type=\"text\/css\">.fusion-builder-column-30{filter: opacity(100%);transition: filter 0.3s ease;}.fusion-builder-column-30:hover{filter: opacity(65%);}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-7-8{ padding-top : 0px;margin-top : 0px;padding-right : 6vw;padding-bottom : 3vw;margin-bottom : 0px;padding-left : 6vw;}<\/style><\/div><\/div>\n                    <\/div>\n                <\/div><div class=\"off-canvas-content\" data-trigger=\"overlay-career\">\n                    <div class=\"off-canvas-content-wrapper\">\n                        <div class=\"off-canvas-content-close\"><span class=\"fas fa-times\"><\/span><\/div>\n                        <div class=\"off-canvas-content-content\"><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-7-9 fusion-flex-container hundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: #f9f9f9;background-position: center center;background-repeat: no-repeat;border-width: 0px 0 0px 0;border-color:#ffffff;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"width:107% !important;max-width:107% !important;margin-left: calc(-7% \/ 2 );margin-right: calc(-7% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-31 fusion_builder_column_1_3 1_3 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div ><span class=\" fusion-imageframe imageframe-none imageframe-20 hover-type-none\"><img decoding=\"async\" width=\"1200\" height=\"1200\" title=\"ausbildung-stelter-1200w\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/ausbildung-stelter-1200w.jpg\" alt class=\"img-responsive wp-image-1999\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/ausbildung-stelter-1200w-768x768.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/ausbildung-stelter-1200w.jpg 1200w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/span><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-31{width:33.333333333333% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-31 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 9.765%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 9.765%;}@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-31{width:33.333333333333% !important;order : 0;}.fusion-builder-column-31 > .fusion-column-wrapper {margin-right : 9.765%;margin-left : 9.765%;}}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-31{width:100% !important;order : 0;}.fusion-builder-column-31 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-32 fusion_builder_column_2_3 2_3 fusion-flex-column fusion-column-inner-bg-wrapper\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"padding: 0px 0px 0px 0px;\"><style type=\"text\/css\">@media only screen and (max-width:1200px) {.fusion-title.fusion-title-15{margin-top:0px!important; margin-right:0px!important;margin-bottom:0px!important;margin-left:0px!important;}}@media only screen and (max-width:767px) {.fusion-title.fusion-title-15{margin-top:25px!important; margin-right:0px!important;margin-bottom:0px!important; margin-left:0px!important;}}<\/style><div class=\"fusion-title title fusion-title-15 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"font-size:34px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:34;line-height:1.1;\">Training<\/h2><\/div><div class=\"fusion-separator\" style=\"align-self: flex-start;margin-right:auto;margin-top:20px;margin-bottom:20px;width:100%;max-width:200px;\"><div class=\"fusion-separator-border sep-single sep-solid\" style=\"border-color:#00afe6;border-top-width:1px;\"><\/div><\/div><div class=\"fusion-text fusion-text-15 fusion-text-no-margin\"><p>Discover the opportunities at Stelter for successfully starting your career and find the right position with us. <a href=\"..\/karriere\/ausbildung\" class=\" fusion-text-flow fusion-link\" style=\"font-size:18px;display:block;margin-top:8px;font-family: TT Commons Medium, sans-serif;font-weight: 400;\">learn more<svg style=\"position: relative; top: 1px; transform: rotate(-90deg); height:14px; margin-left: 8px\" viewBox=\"0 0 100 100\"><polyline fill=\"none\" stroke=\"#00afe6\" stroke-width=\"10px\" points=\"0,25 50,75 100,25\"\/><\/svg><\/a><\/p>\n<\/div><\/div><span class=\"fusion-column-inner-bg hover-type-none\"><a class=\"fusion-column-anchor\" href=\"https:\/\/www.stelter.de\/en\/careers\/training\/\"><span class=\"fusion-column-inner-bg-image\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;\"><\/span><\/a><\/span><style type=\"text\/css\">.fusion-body .fusion-builder-column-32{width:66.666666666667% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-32 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 4.8825%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-32 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-32{width:66.666666666667% !important;order : 0;}.fusion-builder-column-32 > .fusion-column-wrapper {margin-right : 4.8825%;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-32 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-32{width:100% !important;order : 0;}.fusion-builder-column-32 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}.fusion-flex-container .fusion-row .fusion-builder-column-32 > .fusion-column-inner-bg { margin-right:3.255%;margin-left:3.255%; }}<\/style><style type=\"text\/css\">.fusion-builder-column-32{filter: opacity(100%);transition: filter 0.3s ease;}.fusion-builder-column-32:hover{filter: opacity(65%);}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-7-9{ padding-top : 0px;margin-top : 0px;padding-right : 6vw;padding-bottom : 3vw;margin-bottom : 0px;padding-left : 6vw;}<\/style><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-7-10 fusion-flex-container hundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: #f9f9f9;background-position: center center;background-repeat: no-repeat;border-width: 0px 0 0px 0;border-color:#ffffff;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"width:107% !important;max-width:107% !important;margin-left: calc(-7% \/ 2 );margin-right: calc(-7% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-33 fusion_builder_column_1_3 1_3 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div ><span class=\" fusion-imageframe imageframe-none imageframe-21 hover-type-none\"><img decoding=\"async\" width=\"1441\" height=\"1440\" title=\"arbeiten-bei-stelter-stelter-1200w\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/arbeiten-bei-stelter-stelter-1200w.jpg\" alt class=\"img-responsive wp-image-2001\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/arbeiten-bei-stelter-stelter-1200w-768x767.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/arbeiten-bei-stelter-stelter-1200w.jpg 1441w\" sizes=\"(max-width: 1441px) 100vw, 1441px\" \/><\/span><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-33{width:33.333333333333% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-33 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 9.765%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 9.765%;}@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-33{width:33.333333333333% !important;order : 0;}.fusion-builder-column-33 > .fusion-column-wrapper {margin-right : 9.765%;margin-left : 9.765%;}}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-33{width:100% !important;order : 0;}.fusion-builder-column-33 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-34 fusion_builder_column_2_3 2_3 fusion-flex-column fusion-column-inner-bg-wrapper\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"padding: 0px 0px 0px 0px;\"><style type=\"text\/css\">@media only screen and (max-width:1200px) {.fusion-title.fusion-title-16{margin-top:0px!important; margin-right:0px!important;margin-bottom:0px!important;margin-left:0px!important;}}@media only screen and (max-width:767px) {.fusion-title.fusion-title-16{margin-top:25px!important; margin-right:0px!important;margin-bottom:0px!important; margin-left:0px!important;}}<\/style><div class=\"fusion-title title fusion-title-16 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"font-size:34px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:34;line-height:1.1;\">Work at Stelter<\/h2><\/div><div class=\"fusion-separator\" style=\"align-self: flex-start;margin-right:auto;margin-top:20px;margin-bottom:20px;width:100%;max-width:200px;\"><div class=\"fusion-separator-border sep-single sep-solid\" style=\"border-color:#00afe6;border-top-width:1px;\"><\/div><\/div><div class=\"fusion-text fusion-text-16 fusion-text-no-margin\"><p>Learn how our high-tech gears can also drive careers. <a href=\"..\/karriere\/arbeiten-bei-stelter\" class=\" fusion-text-flow fusion-link\" style=\"font-size:18px;display:block;margin-top:8px;font-family: TT Commons Medium, sans-serif;font-weight: 400;\">learn more<svg style=\"position: relative; top: 1px; transform: rotate(-90deg); height:14px; margin-left: 8px\" viewBox=\"0 0 100 100\"><polyline fill=\"none\" stroke=\"#00afe6\" stroke-width=\"10px\" points=\"0,25 50,75 100,25\"\/><\/svg><\/a><\/p>\n<\/div><\/div><span class=\"fusion-column-inner-bg hover-type-none\"><a class=\"fusion-column-anchor\" href=\"https:\/\/www.stelter.de\/en\/careers\/work-at-stelter\/\"><span class=\"fusion-column-inner-bg-image\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;\"><\/span><\/a><\/span><style type=\"text\/css\">.fusion-body .fusion-builder-column-34{width:66.666666666667% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-34 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 4.8825%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-34 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-34{width:66.666666666667% !important;order : 0;}.fusion-builder-column-34 > .fusion-column-wrapper {margin-right : 4.8825%;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-34 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-34{width:100% !important;order : 0;}.fusion-builder-column-34 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}.fusion-flex-container .fusion-row .fusion-builder-column-34 > .fusion-column-inner-bg { margin-right:3.255%;margin-left:3.255%; }}<\/style><style type=\"text\/css\">.fusion-builder-column-34{filter: opacity(100%);transition: filter 0.3s ease;}.fusion-builder-column-34:hover{filter: opacity(50%);}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-7-10{ padding-top : 0px;margin-top : 0px;padding-right : 6vw;padding-bottom : 3vw;margin-bottom : 0px;padding-left : 6vw;}<\/style><\/div><\/div>\n                    <\/div>\n                <\/div><div class=\"off-canvas-content\" data-trigger=\"overlay-contact\">\n                    <div class=\"off-canvas-content-wrapper\">\n                        <div class=\"off-canvas-content-close\"><span class=\"fas fa-times\"><\/span><\/div>\n                        <div class=\"off-canvas-content-content\"><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-7-11 fusion-flex-container hundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: #f9f9f9;background-position: center center;background-repeat: no-repeat;border-width: 0px 0 0px 0;border-color:#ffffff;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"width:107% !important;max-width:107% !important;margin-left: calc(-7% \/ 2 );margin-right: calc(-7% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-35 fusion_builder_column_1_3 1_3 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div ><span class=\" fusion-imageframe imageframe-none imageframe-22 hover-type-none\"><img decoding=\"async\" width=\"1440\" height=\"1440\" title=\"ansprechpartner-stelter-1200w\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/ansprechpartner-stelter-1200w.jpg\" alt class=\"img-responsive wp-image-2005\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/ansprechpartner-stelter-1200w-768x768.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/03\/ansprechpartner-stelter-1200w.jpg 1440w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" \/><\/span><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-35{width:33.333333333333% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-35 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 9.765%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 9.765%;}@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-35{width:33.333333333333% !important;order : 0;}.fusion-builder-column-35 > .fusion-column-wrapper {margin-right : 9.765%;margin-left : 9.765%;}}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-35{width:100% !important;order : 0;}.fusion-builder-column-35 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-36 fusion_builder_column_2_3 2_3 fusion-flex-column fusion-column-inner-bg-wrapper\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"padding: 0px 0px 0px 0px;\"><style type=\"text\/css\">@media only screen and (max-width:1200px) {.fusion-title.fusion-title-17{margin-top:0px!important; margin-right:0px!important;margin-bottom:0px!important;margin-left:0px!important;}}@media only screen and (max-width:767px) {.fusion-title.fusion-title-17{margin-top:25px!important; margin-right:0px!important;margin-bottom:0px!important; margin-left:0px!important;}}<\/style><div class=\"fusion-title title fusion-title-17 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"font-size:34px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:34;line-height:1.1;\">Contact options<\/h2><\/div><div class=\"fusion-separator\" style=\"align-self: flex-start;margin-right:auto;margin-top:20px;margin-bottom:20px;width:100%;max-width:200px;\"><div class=\"fusion-separator-border sep-single sep-solid\" style=\"border-color:#00afe6;border-top-width:1px;\"><\/div><\/div><div class=\"fusion-text fusion-text-17 fusion-text-no-margin\"><p>Learn how to reach the correct contact person at Stelter. <a href=\"#\" class=\" fusion-text-flow fusion-link\" style=\"font-size:18px;display:block;margin-top:8px;font-family: TT Commons Medium, sans-serif;font-weight: 400;\">learn more<svg style=\"position: relative; top: 1px; transform: rotate(-90deg); height:14px; margin-left: 8px\" viewBox=\"0 0 100 100\"><polyline fill=\"none\" stroke=\"#00afe6\" stroke-width=\"10px\" points=\"0,25 50,75 100,25\"\/><\/svg><\/a><\/p>\n<\/div><\/div><span class=\"fusion-column-inner-bg hover-type-none\"><a class=\"fusion-column-anchor\" href=\"https:\/\/www.stelter.de\/en\/contact\/contact-person\/\"><span class=\"fusion-column-inner-bg-image\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;\"><\/span><\/a><\/span><style type=\"text\/css\">.fusion-body .fusion-builder-column-36{width:66.666666666667% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-36 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 4.8825%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-36 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-36{width:66.666666666667% !important;order : 0;}.fusion-builder-column-36 > .fusion-column-wrapper {margin-right : 4.8825%;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-36 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-36{width:100% !important;order : 0;}.fusion-builder-column-36 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}.fusion-flex-container .fusion-row .fusion-builder-column-36 > .fusion-column-inner-bg { margin-right:3.255%;margin-left:3.255%; }}<\/style><style type=\"text\/css\">.fusion-builder-column-36{filter: opacity(100%);transition: filter 0.3s ease;}.fusion-builder-column-36:hover{filter: opacity(50%);}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-7-11{ padding-top : 3vw;margin-top : 0px;padding-right : 6vw;padding-bottom : 3vw;margin-bottom : 0px;padding-left : 6vw;}<\/style><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-7-12 fusion-flex-container hundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: #f9f9f9;background-position: center center;background-repeat: no-repeat;border-width: 0px 0 0px 0;border-color:#ffffff;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"width:107% !important;max-width:107% !important;margin-left: calc(-7% \/ 2 );margin-right: calc(-7% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-37 fusion_builder_column_1_3 1_3 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div ><span class=\" fusion-imageframe imageframe-none imageframe-23 hover-type-none\"><img decoding=\"async\" width=\"1200\" height=\"1200\" title=\"standort-stelter-1200w\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/05\/standort-stelter-1200w.jpg\" alt class=\"img-responsive wp-image-3386\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/05\/standort-stelter-1200w-768x768.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/05\/standort-stelter-1200w.jpg 1200w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/span><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-37{width:33.333333333333% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-37 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 9.765%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 9.765%;}@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-37{width:33.333333333333% !important;order : 0;}.fusion-builder-column-37 > .fusion-column-wrapper {margin-right : 9.765%;margin-left : 9.765%;}}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-37{width:100% !important;order : 0;}.fusion-builder-column-37 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-38 fusion_builder_column_2_3 2_3 fusion-flex-column fusion-column-inner-bg-wrapper\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"padding: 0px 0px 0px 0px;\"><style type=\"text\/css\">@media only screen and (max-width:1200px) {.fusion-title.fusion-title-18{margin-top:0px!important; margin-right:0px!important;margin-bottom:0px!important;margin-left:0px!important;}}@media only screen and (max-width:767px) {.fusion-title.fusion-title-18{margin-top:25px!important; margin-right:0px!important;margin-bottom:0px!important; margin-left:0px!important;}}<\/style><div class=\"fusion-title title fusion-title-18 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"font-size:34px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:34;line-height:1.1;\">Directions<\/h2><\/div><div class=\"fusion-separator\" style=\"align-self: flex-start;margin-right:auto;margin-top:20px;margin-bottom:20px;width:100%;max-width:200px;\"><div class=\"fusion-separator-border sep-single sep-solid\" style=\"border-color:#00afe6;border-top-width:1px;\"><\/div><\/div><div class=\"fusion-text fusion-text-18 fusion-text-no-margin\"><p>The quickest way to us at Bramstedter Kirchweg 49 in Bassum. Planned to precision. <a href=\"#\" class=\" fusion-text-flow fusion-link\" style=\"font-size:18px;display:block;margin-top:8px;font-family: TT Commons Medium, sans-serif;font-weight: 400;\">learn more<svg style=\"position: relative; top: 1px; transform: rotate(-90deg); height:14px; margin-left: 8px\" viewBox=\"0 0 100 100\"><polyline fill=\"none\" stroke=\"#00afe6\" stroke-width=\"10px\" points=\"0,25 50,75 100,25\"\/><\/svg><\/a><\/p>\n<\/div><\/div><span class=\"fusion-column-inner-bg hover-type-none\"><a class=\"fusion-column-anchor\" href=\"https:\/\/www.stelter.de\/en\/contact\/directions\/\"><span class=\"fusion-column-inner-bg-image\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;\"><\/span><\/a><\/span><style type=\"text\/css\">.fusion-body .fusion-builder-column-38{width:66.666666666667% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-38 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 4.8825%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-38 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-38{width:66.666666666667% !important;order : 0;}.fusion-builder-column-38 > .fusion-column-wrapper {margin-right : 4.8825%;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-38 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-38{width:100% !important;order : 0;}.fusion-builder-column-38 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}.fusion-flex-container .fusion-row .fusion-builder-column-38 > .fusion-column-inner-bg { margin-right:3.255%;margin-left:3.255%; }}<\/style><style type=\"text\/css\">.fusion-builder-column-38{filter: opacity(100%);transition: filter 0.3s ease;}.fusion-builder-column-38:hover{filter: opacity(50%);}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-7-12{ padding-top : 0px;margin-top : 0px;padding-right : 6vw;padding-bottom : 3vw;margin-bottom : 0px;padding-left : 6vw;}<\/style><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-7-13 fusion-flex-container hundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: #f9f9f9;background-position: center center;background-repeat: no-repeat;border-width: 0px 0 0px 0;border-color:#ffffff;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"width:107% !important;max-width:107% !important;margin-left: calc(-7% \/ 2 );margin-right: calc(-7% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-39 fusion_builder_column_1_3 1_3 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div ><span class=\" fusion-imageframe imageframe-none imageframe-24 hover-type-none\"><img decoding=\"async\" width=\"1440\" height=\"1440\" title=\"fuer-lieferanten-stelter-1200w\" src=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/06\/fuer-lieferanten-stelter-1200w.jpg\" alt class=\"img-responsive wp-image-5680\" srcset=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/06\/fuer-lieferanten-stelter-1200w-768x768.jpg 768w, https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/06\/fuer-lieferanten-stelter-1200w.jpg 1440w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" \/><\/span><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-39{width:33.333333333333% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-39 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 9.765%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 9.765%;}@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-39{width:33.333333333333% !important;order : 0;}.fusion-builder-column-39 > .fusion-column-wrapper {margin-right : 9.765%;margin-left : 9.765%;}}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-39{width:100% !important;order : 0;}.fusion-builder-column-39 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-40 fusion_builder_column_2_3 2_3 fusion-flex-column fusion-column-inner-bg-wrapper\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"padding: 0px 0px 0px 0px;\"><style type=\"text\/css\">@media only screen and (max-width:1200px) {.fusion-title.fusion-title-19{margin-top:0px!important; margin-right:0px!important;margin-bottom:0px!important;margin-left:0px!important;}}@media only screen and (max-width:767px) {.fusion-title.fusion-title-19{margin-top:25px!important; margin-right:0px!important;margin-bottom:0px!important; margin-left:0px!important;}}<\/style><div class=\"fusion-title title fusion-title-19 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"font-size:34px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:34;line-height:1.1;\">Information for suppliers<\/h2><\/div><div class=\"fusion-separator\" style=\"align-self: flex-start;margin-right:auto;margin-top:20px;margin-bottom:20px;width:100%;max-width:200px;\"><div class=\"fusion-separator-border sep-single sep-solid\" style=\"border-color:#00afe6;border-top-width:1px;\"><\/div><\/div><div class=\"fusion-text fusion-text-19 fusion-text-no-margin\"><p>All the important information and documents for suppliers, and for those who want to become one. <a href=\"#\" class=\" fusion-text-flow fusion-link\" style=\"font-size:18px;display:block;margin-top:8px;font-family: TT Commons Medium, sans-serif;font-weight: 400;\">learn more<svg style=\"position: relative; top: 1px; transform: rotate(-90deg); height:14px; margin-left: 8px\" viewBox=\"0 0 100 100\"><polyline fill=\"none\" stroke=\"#00afe6\" stroke-width=\"10px\" points=\"0,25 50,75 100,25\"\/><\/svg><\/a><\/p>\n<\/div><\/div><span class=\"fusion-column-inner-bg hover-type-none\"><a class=\"fusion-column-anchor\" href=\"https:\/\/www.stelter.de\/en\/contact\/for-suppliers\/\"><span class=\"fusion-column-inner-bg-image\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;\"><\/span><\/a><\/span><style type=\"text\/css\">.fusion-body .fusion-builder-column-40{width:66.666666666667% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-40 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 4.8825%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-40 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-40{width:66.666666666667% !important;order : 0;}.fusion-builder-column-40 > .fusion-column-wrapper {margin-right : 4.8825%;margin-left : 4.8825%;}.fusion-flex-container .fusion-row .fusion-builder-column-40 > .fusion-column-inner-bg { margin-right:4.8825%;margin-left:4.8825%; }}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-40{width:100% !important;order : 0;}.fusion-builder-column-40 > .fusion-column-wrapper {margin-right : 3.255%;margin-left : 3.255%;}.fusion-flex-container .fusion-row .fusion-builder-column-40 > .fusion-column-inner-bg { margin-right:3.255%;margin-left:3.255%; }}<\/style><style type=\"text\/css\">.fusion-builder-column-40{filter: opacity(100%);transition: filter 0.3s ease;}.fusion-builder-column-40:hover{filter: opacity(50%);}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-7-13{ padding-top : 0px;margin-top : 0px;padding-right : 6vw;padding-bottom : 3vw;margin-bottom : 0px;padding-left : 6vw;}<\/style><\/div><\/div>\n                    <\/div>\n                <\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-6{width:100% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-6 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 0;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 0;}@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-6{width:100% !important;order : 0;}.fusion-builder-column-6 > .fusion-column-wrapper {margin-right : 0;margin-left : 0;}}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-6{width:100% !important;order : 0;}.fusion-builder-column-6 > .fusion-column-wrapper {margin-right : 0;margin-left : 0;}}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-7{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}<\/style><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-8 fusion-flex-container intro-box-wrapper hundred-percent-fullwidth hundred-percent-height hundred-percent-height-center-content non-hundred-percent-height-scrolling fusion-no-small-visibility\" style=\"background-color: #f9f9f9;background-position: center center;background-repeat: no-repeat;border-width: 0px 0 0px 0;border-color:#ffffff;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-stretch\" style=\"width:calc( 100% + 0px ) !important;max-width:calc( 100% + 0px ) !important;margin-left: calc(-0px \/ 2 );margin-right: calc(-0px \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-41 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-text fusion-text-20\">\n<\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-41{width:100% !important;margin-top : 0px;margin-bottom : 0px;}.fusion-builder-column-41 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 0;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 0;}@media only screen and (max-width:1200px) {.fusion-body .fusion-builder-column-41{width:100% !important;order : 0;}.fusion-builder-column-41 > .fusion-column-wrapper {margin-right : 0;margin-left : 0;}}@media only screen and (max-width:767px) {.fusion-body .fusion-builder-column-41{width:100% !important;order : 0;}.fusion-builder-column-41 > .fusion-column-wrapper {margin-right : 0;margin-left : 0;}}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-8{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}<\/style><\/div><\/p>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"100-width.php","meta":{"footnotes":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.7 (Yoast SEO v21.7) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Welcome to Stelter | driven by gears.<\/title>\n<meta name=\"description\" content=\"High-tech gears for the automotive, wind power and rail industries and traditional industry. Since 1950.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.stelter.de\/en\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Welcome to Stelter | driven by gears.\" \/>\n<meta property=\"og:description\" content=\"High-tech gears for the automotive, wind power and rail industries and traditional industry. Since 1950.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.stelter.de\/en\/\" \/>\n<meta property=\"og:site_name\" content=\"Stelter\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/de-de.facebook.com\/stelterzahnradfabrik\" \/>\n<meta property=\"article:modified_time\" content=\"2021-12-09T08:33:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/09\/logo-share-stelter.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"1200\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"30 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.stelter.de\/en\/\",\"url\":\"https:\/\/www.stelter.de\/en\/\",\"name\":\"Welcome to Stelter | driven by gears.\",\"isPartOf\":{\"@id\":\"https:\/\/www.stelter.de\/en\/#website\"},\"datePublished\":\"2021-12-08T08:45:55+00:00\",\"dateModified\":\"2021-12-09T08:33:31+00:00\",\"description\":\"High-tech gears for the automotive, wind power and rail industries and traditional industry. Since 1950.\",\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.stelter.de\/en\/\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.stelter.de\/en\/#website\",\"url\":\"https:\/\/www.stelter.de\/en\/\",\"name\":\"Stelter\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.stelter.de\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.stelter.de\/en\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.stelter.de\/en\/#organization\",\"name\":\"Stelter\",\"url\":\"https:\/\/www.stelter.de\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.stelter.de\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/09\/logo-share-stelter.jpg\",\"contentUrl\":\"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/09\/logo-share-stelter.jpg\",\"width\":1200,\"height\":1200,\"caption\":\"Stelter\"},\"image\":{\"@id\":\"https:\/\/www.stelter.de\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/de-de.facebook.com\/stelterzahnradfabrik\",\"https:\/\/de.linkedin.com\/company\/stelter-zahnradfabrik-gmbh\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Welcome to Stelter | driven by gears.","description":"High-tech gears for the automotive, wind power and rail industries and traditional industry. Since 1950.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.stelter.de\/en\/","og_locale":"en_GB","og_type":"article","og_title":"Welcome to Stelter | driven by gears.","og_description":"High-tech gears for the automotive, wind power and rail industries and traditional industry. Since 1950.","og_url":"https:\/\/www.stelter.de\/en\/","og_site_name":"Stelter","article_publisher":"https:\/\/de-de.facebook.com\/stelterzahnradfabrik","article_modified_time":"2021-12-09T08:33:31+00:00","og_image":[{"width":1200,"height":1200,"url":"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/09\/logo-share-stelter.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Estimated reading time":"30 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.stelter.de\/en\/","url":"https:\/\/www.stelter.de\/en\/","name":"Welcome to Stelter | driven by gears.","isPartOf":{"@id":"https:\/\/www.stelter.de\/en\/#website"},"datePublished":"2021-12-08T08:45:55+00:00","dateModified":"2021-12-09T08:33:31+00:00","description":"High-tech gears for the automotive, wind power and rail industries and traditional industry. Since 1950.","inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.stelter.de\/en\/"]}]},{"@type":"WebSite","@id":"https:\/\/www.stelter.de\/en\/#website","url":"https:\/\/www.stelter.de\/en\/","name":"Stelter","description":"","publisher":{"@id":"https:\/\/www.stelter.de\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.stelter.de\/en\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/www.stelter.de\/en\/#organization","name":"Stelter","url":"https:\/\/www.stelter.de\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.stelter.de\/en\/#\/schema\/logo\/image\/","url":"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/09\/logo-share-stelter.jpg","contentUrl":"https:\/\/www.stelter.de\/wp-content\/uploads\/2021\/09\/logo-share-stelter.jpg","width":1200,"height":1200,"caption":"Stelter"},"image":{"@id":"https:\/\/www.stelter.de\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/de-de.facebook.com\/stelterzahnradfabrik","https:\/\/de.linkedin.com\/company\/stelter-zahnradfabrik-gmbh"]}]}},"_links":{"self":[{"href":"https:\/\/www.stelter.de\/en\/wp-json\/wp\/v2\/pages\/5369"}],"collection":[{"href":"https:\/\/www.stelter.de\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.stelter.de\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.stelter.de\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.stelter.de\/en\/wp-json\/wp\/v2\/comments?post=5369"}],"version-history":[{"count":4,"href":"https:\/\/www.stelter.de\/en\/wp-json\/wp\/v2\/pages\/5369\/revisions"}],"predecessor-version":[{"id":5619,"href":"https:\/\/www.stelter.de\/en\/wp-json\/wp\/v2\/pages\/5369\/revisions\/5619"}],"wp:attachment":[{"href":"https:\/\/www.stelter.de\/en\/wp-json\/wp\/v2\/media?parent=5369"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}