 		<div id="community_row" class="timeline community_row51123 community_row vc_row wpb_row vc_row-fluid community-list-row  ">
			 <ol>
		
		<li class='community-item-wrapper presse-carousel-item' >
		
	
			<div class='community-wrapper' >
				 <time class="bind-red-text bind-header-image-text community-title bind-time" >1976</time>  <div class="bind-white-text community-subtitle" >Roland and Fritz Binder establish a sole proprietorship with a manufacturing location in Markertshofen. The main focus is on the production of wine storage tanks and beverage vessels.</div> 			</div>
			
	
	
	</li>

    	<li class='community-item-wrapper presse-carousel-item' >
		
	
			<div class='community-wrapper' >
				 <time class="bind-red-text bind-header-image-text community-title bind-time" >1979</time>  <div class="bind-white-text community-subtitle" >Binder GmbH Apparate- und Behälterbau is founded.</div> 			</div>
			
	
	
	</li>

    	<li class='community-item-wrapper presse-carousel-item' >
		
	
			<div class='community-wrapper' >
				 <time class="bind-red-text bind-header-image-text community-title bind-time" >1986-87</time>  <div class="bind-white-text community-subtitle" >A new building, consisting of a hall and office building in Crailsheim, is constructed. In 1987, the move to the new hall takes place. The focus shifts to the production of food and cosmetic vessels.</div> 			</div>
			
	
	
	</li>

    	<li class='community-item-wrapper presse-carousel-item' >
		
	
			<div class='community-wrapper' >
				 <time class="bind-red-text bind-header-image-text community-title bind-time" >1989/90</time>  <div class="bind-white-text community-subtitle" >There is an expansion of the production area and an addition to the office building.</div> 			</div>
			
	
	
	</li>

    	<li class='community-item-wrapper presse-carousel-item' >
		
	
			<div class='community-wrapper' >
				 <time class="bind-red-text bind-header-image-text community-title bind-time" >2001</time>  <div class="bind-white-text community-subtitle" >Anniversary year with the expansion of the pickling plant and shipping area. The emphasis now shifts to apparatus and vessels for pharmaceuticals, food, chemicals, and cosmetics.</div> 			</div>
			
	
	
	</li>

    	<li class='community-item-wrapper presse-carousel-item' >
		
	
			<div class='community-wrapper' >
				 <time class="bind-red-text bind-header-image-text community-title bind-time" >2012</time>  <div class="bind-white-text community-subtitle" >A new pickling plant is constructed, with a focus on pharmaceuticals, food, chemicals, and cosmetics, as well as welding constructions with mechanical processing in the pharmaceutical sector.</div> 			</div>
			
	
	
	</li>

    	<li class='community-item-wrapper presse-carousel-item' >
		
	
			<div class='community-wrapper' >
				 <time class="bind-red-text bind-header-image-text community-title bind-time" >2023</time>  <div class="bind-white-text community-subtitle" >The focus remains on apparatus and vessels for pharmaceuticals, food, chemicals, and cosmetics, as well as welding constructions with mechanical processing for the pharmaceutical sector. New additions include containers for the semiconductor industry.</div> 			</div>
			
	
	
	</li>

    		
				 <li></li>
				</ol> 
	  <div class="arrows">
			<button class="arrow arrow__prev disabled" disabled>
				<img src="/wp-content/uploads/2024/03/BINDER_Slide_Arrow_Left.png" alt="prev timeline arrow">
			</button>
			<button class="arrow arrow__next">
			   <img src="/wp-content/uploads/2024/03/BINDER_Slide_Arrow_Right.png" alt="next timeline arrow">
			</button>
	  </div>
   </div>
			


	<style>   
	  .community_row {
		/* display: flex;*/
		overflow: visible; /* Hide the scrollbar */
		cursor: grab;
	  }
		
	  .community_row .owl-item{display:inline-block !important;}
		/*.community_row .owl-nav.disabled{display:none;}*/
		.community_row .owl-stage{min-width:800vw;}
	  .community-carousel-item {
		/*flex: 0 0 auto;
		box-sizing: border-box;
		/*transition: transform 0.5s;*/
	  }
	</style>


	<script>
(function () {
  // VARIABLES
    const timeline = document.querySelector(".timeline ol"),
    elH = document.querySelectorAll(".timeline li > div"),
    arrows = document.querySelectorAll(".timeline .arrows .arrow"),
    arrowPrev = document.querySelector(".timeline .arrows .arrow__prev"),
    arrowNext = document.querySelector(".timeline .arrows .arrow__next"),
    firstItem = document.querySelector(".timeline li:first-child"),
    lastItem = document.querySelector(".timeline li:last-child"),
    xScrolling = 400,
    disabledClass = "disabled";

  // START
  window.addEventListener("load", init);

  function init() {
    setEqualHeights(elH);
    animateTl(xScrolling, arrows, timeline,arrowPrev,arrowNext);
    setSwipeFn(timeline, arrowPrev, arrowNext);
    setKeyboardFn(arrowPrev, arrowNext);
  }

  // SET EQUAL HEIGHTS
  function setEqualHeights(el) {
    let counter = 0;
    for (let i = 0; i < el.length; i++) {
      const singleHeight = el[i].offsetHeight;

      if (counter < singleHeight) {
        counter = singleHeight;
      }
    }

    for (let i = 0; i < el.length; i++) {
      el[i].style.height = `${counter}px`;
    }
  }

  // CHECK IF AN ELEMENT IS IN VIEWPORT
  // http://stackoverflow.com/questions/123999/how-to-tell-if-a-dom-element-is-visible-in-the-current-viewport
  function isElementInViewport(el) {
    const rect = el.getBoundingClientRect();
    return (
      rect.top >= 0 &&
      rect.left >= 0 &&
      rect.bottom <=
        (window.innerHeight || document.documentElement.clientHeight) &&
      rect.right <= (window.innerWidth || document.documentElement.clientWidth)
    );
  }

  // SET STATE OF PREV/NEXT ARROWS
  function setBtnState(el, flag = true) {
    if (flag) {
      el.classList.add(disabledClass);
    } else {
      if (el.classList.contains(disabledClass)) {
        el.classList.remove(disabledClass);
      }
      el.disabled = false;
    }
  }

// ANIMATE TIMELINE
function animateTl(scrolling, el, tl, arrowPrev, arrowNext) {
  let counter = 0;
  let counternext = 0;

  for (let i = 0; i < el.length; i++) {
    el[i].addEventListener("click", function () {
      if (!arrowPrev.disabled) {
        arrowPrev.disabled = true;
      }
      if (!arrowNext.disabled) {
        arrowNext.disabled = true;
      }

      const sign = this.classList.contains("arrow__prev") ? 1 : -1;
      counter += sign;
	  const numberOfItems = tl.querySelectorAll("li").length;
	  const scrollRight=numberOfItems - 5;
	  console.log("numberof items" + scrollRight);
      if(sign===-1 && counternext < scrollRight){
		  const transformValue = counter * scrolling;
	      tl.style.transform = `translateX(${transformValue}px)`;
		  counternext++;
		   console.log("counter" + counternext);
	  }
	  if(sign===1) {
		  const transformValue = counter * scrolling;
		  tl.style.transform = `translateX(${transformValue}px)`;
		  counternext--;
	  }
		  setTimeout(() => {
			arrowPrev.disabled = counter === 0;
			arrowNext.disabled = counternext >= scrollRight;
		  }, 50);
    });
  }
}








  // ADD SWIPE SUPPORT FOR TOUCH DEVICES
  function setSwipeFn(tl, prev, next) {
    const hammer = new Hammer(tl);
    hammer.on("swipeleft", () => next.click());
    hammer.on("swiperight", () => prev.click());
  }

  // ADD BASIC KEYBOARD FUNCTIONALITY
  function setKeyboardFn(prev, next) {
    document.addEventListener("keydown", (e) => {
      if (e.which === 37 || e.which === 39) {
        const timelineOfTop = timeline.offsetTop;
        const y = window.pageYOffset;
        if (timelineOfTop !== y) {
          window.scrollTo(0, timelineOfTop);
        }
        if (e.which === 37) {
          prev.click();
        } else if (e.which === 39) {
          next.click();
        }
      }
    });
  }
})();


	</script>
	{"id":2057,"date":"2023-11-16T16:05:54","date_gmt":"2023-11-16T16:05:54","guid":{"rendered":"https:\/\/binder.gundf-testingserver.de\/?page_id=2057"},"modified":"2026-01-26T11:11:18","modified_gmt":"2026-01-26T11:11:18","slug":"company","status":"publish","type":"page","link":"https:\/\/binder-behaelterbau.de\/en\/company\/","title":{"rendered":"Company"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; content_placement=&#8221;bottom&#8221;][vc_column css=&#8221;.vc_custom_1702385479126{padding-top: 0px !important;}&#8221;][vc_row_inner][vc_column_inner el_class=&#8221;bind-header-image-mockslider&#8221;][vc_single_image image=&#8221;895&#8243; img_size=&#8221;full&#8221; css=&#8221;.vc_custom_1703070104994{margin-bottom: 0px !important;}&#8221; el_class=&#8221;full-img&#8221;][\/vc_column_inner][\/vc_row_inner][vc_custom_heading text=&#8221;OUR BINDING &#8211;<br \/>\nSTRONG AS STEEL!&#8221; font_container=&#8221;tag:h3|text_align:left|color:%23ffffff&#8221; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;header-txt-custom&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; css=&#8221;.vc_custom_1702583616159{background-color: #1a2441 !important;}&#8221;][vc_column offset=&#8221;vc_hidden-xs&#8221;][vc_empty_space height=&#8221;50px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; content_placement=&#8221;top&#8221; css=&#8221;.vc_custom_1702387185375{background-color: #1a2441 !important;}&#8221;][vc_column width=&#8221;1\/2&#8243;][vc_custom_heading text=&#8221;BINDER GMBH&#8221; font_container=&#8221;tag:h2|text_align:left|color:%23ffffff&#8221; use_theme_fonts=&#8221;yes&#8221; css=&#8221;.vc_custom_1702643282467{margin-top: 0px !important;}&#8221; el_class=&#8221;bind-white-text&#8221;][vc_custom_heading text=&#8221;Apparate- und Beh\u00e4lterbau&#8221; font_container=&#8221;tag:h4|text_align:left|color:%2372b5cc&#8221; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;bind-blue-text&#8221;][\/vc_column][vc_column width=&#8221;1\/2&#8243; el_class=&#8221;no-top-mobile&#8221;][vc_column_text el_class=&#8221;bind-white-text&#8221;]Construction Since our founding in 1976, we, as a medium-sized company in Crailsheim, take pride in producing high-quality and custom products in the field of stainless-steel apparatus and container construction. Under the dedicated leadership of Roland, Martin, Thorsten, and Frank Binder, our company has evolved into a medium-sized, high-performance operation.<\/p>\n<p>Our 5,500 m\u00b2 production area is carefully divided into various sections, including goods receiving, preparation, assembly, grinding, mechanics, pickling, acceptance hall, shipping, and storage. This structure allows us to ensure a high level of production depth by conducting every step of the production process in-house, from design to documentation. With a proud view of our extensive machinery, we are capable of manufacturing a variety of high-quality and custom products tailored to the needs of our customers. Our focus is on configuring unique items for various industries, including pharmaceuticals, food, chemicals, and cosmetics.[\/vc_column_text][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; css=&#8221;.vc_custom_1702583616159{background-color: #1a2441 !important;}&#8221;][vc_column][vc_empty_space height=&#8221;50px&#8221; el_class=&#8221;small-mobile&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; bg_type=&#8221;bg_color&#8221; css=&#8221;.vc_custom_1703018604834{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-color: #1a2441 !important;}&#8221; el_class=&#8221;counter-row&#8221;][vc_column width=&#8221;1\/6&#8243; css=&#8221;.vc_custom_1703019712471{border-right-width: 3px !important;padding-top: 0px !important;border-right-color: #dd0b18 !important;border-right-style: dashed !important;}&#8221; offset=&#8221;vc_col-xs-4&#8243;]<div class=\"stats-block stats-top   vc_custom_1769425748804\"><div class=\"aio-icon-top\"><div class=\"ult-just-icon-wrapper  \"><div class=\"align-icon\" style=\"text-align:center;\"><\/div><\/div><\/div><div class=\"stats-desc\" id=\"counter-responsv-wrap-1922\"><div id=\"counter_115276456769e84c91f20a8\" data-id=\"counter_115276456769e84c91f20a8\"  data-ultimate-target='#counter-responsv-wrap-1922 .stats-number'  data-responsive-json-new='{\"font-size\":\"desktop:60px;\",\"line-height\":\"desktop:60px;\"}'  class=\"stats-number ult-responsive\" style=\" color:#ffffff; font-weight:bold;color:#ffffff;\" data-speed=\"3\" data-counter-value=\"50\" data-separator=\",\" data-decimal=\".\">0<\/div><div id=\"title-counter_115276456769e84c91f20a8\"  data-ultimate-target='#counter-responsv-wrap-1922 .stats-text'  data-responsive-json-new='{\"font-size\":\"\",\"line-height\":\"\"}'  class=\"stats-text ult-responsive\" style=\"font-size:18px; color:#ffffff; font-weight:bold;\">Years of experience<\/div><\/div><\/div>[\/vc_column][vc_column width=&#8221;1\/6&#8243; css=&#8221;.vc_custom_1703019828183{border-right-width: 3px !important;padding-top: 0px !important;border-right-color: #dd0b18 !important;border-right-style: dashed !important;}&#8221; offset=&#8221;vc_col-xs-4&#8243;]<div class=\"stats-block stats-top   vc_custom_1705487038208\"><div class=\"aio-icon-top\"><div class=\"ult-just-icon-wrapper  \"><div class=\"align-icon\" style=\"text-align:center;\"><\/div><\/div><\/div><div class=\"stats-desc\" id=\"counter-responsv-wrap-6509\"><div id=\"counter_277528944569e84c91f2187\" data-id=\"counter_277528944569e84c91f2187\"  data-ultimate-target='#counter-responsv-wrap-6509 .stats-number'  data-responsive-json-new='{\"font-size\":\"desktop:60px;\",\"line-height\":\"desktop:60px;\"}'  class=\"stats-number ult-responsive\" style=\" color:#ffffff; font-weight:bold;color:#ffffff;\" data-speed=\"3\" data-counter-value=\"50\" data-separator=\",\" data-decimal=\".\">0<\/div><div id=\"title-counter_277528944569e84c91f2187\"  data-ultimate-target='#counter-responsv-wrap-6509 .stats-text'  data-responsive-json-new='{\"font-size\":\"\",\"line-height\":\"\"}'  class=\"stats-text ult-responsive\" style=\"font-size:18px; color:#ffffff; font-weight:bold;\">Employees<\/div><\/div><\/div>[\/vc_column][vc_column width=&#8221;1\/6&#8243; css=&#8221;.vc_custom_1703020204001{border-right-width: 3px !important;padding-top: 0px !important;border-right-color: #dd0b18 !important;border-right-style: dashed !important;}&#8221; offset=&#8221;vc_col-xs-4&#8243; el_class=&#8221;border-right-none-m&#8221;]<div class=\"stats-block stats-top   vc_custom_1705487047773\"><div class=\"aio-icon-top\"><div class=\"ult-just-icon-wrapper  \"><div class=\"align-icon\" style=\"text-align:center;\"><\/div><\/div><\/div><div class=\"stats-desc\" id=\"counter-responsv-wrap-3430\"><div id=\"counter_250647360469e84c91f2236\" data-id=\"counter_250647360469e84c91f2236\"  data-ultimate-target='#counter-responsv-wrap-3430 .stats-number'  data-responsive-json-new='{\"font-size\":\"desktop:60px;\",\"line-height\":\"desktop:60px;\"}'  class=\"stats-number ult-responsive\" style=\" color:#ffffff; font-weight:bold;color:#ffffff;\" data-speed=\"3\" data-counter-value=\"5\" data-separator=\",\" data-decimal=\".\">0<\/div><div id=\"title-counter_250647360469e84c91f2236\"  data-ultimate-target='#counter-responsv-wrap-3430 .stats-text'  data-responsive-json-new='{\"font-size\":\"\",\"line-height\":\"\"}'  class=\"stats-text ult-responsive\" style=\"font-size:18px; color:#ffffff; font-weight:bold;\">Trainees<\/div><\/div><\/div>[\/vc_column][vc_column width=&#8221;1\/6&#8243; css=&#8221;.vc_custom_1703020133968{border-right-width: 3px !important;padding-top: 0px !important;border-right-color: #dd0b18 !important;border-right-style: dashed !important;}&#8221; offset=&#8221;vc_col-xs-4&#8243; el_class=&#8221;border-top-m&#8221;]<div class=\"stats-block stats-top   vc_custom_1705487060670\"><div class=\"aio-icon-top\"><div class=\"ult-just-icon-wrapper  \"><div class=\"align-icon\" style=\"text-align:center;\"><\/div><\/div><\/div><div class=\"stats-desc\" id=\"counter-responsv-wrap-7208\"><div id=\"counter_114150242169e84c91f22d1\" data-id=\"counter_114150242169e84c91f22d1\"  data-ultimate-target='#counter-responsv-wrap-7208 .stats-number'  data-responsive-json-new='{\"font-size\":\"desktop:60px;\",\"line-height\":\"desktop:60px;\"}'  class=\"stats-number ult-responsive\" style=\" color:#ffffff; font-weight:bold;color:#ffffff;\" data-speed=\"3\" data-counter-value=\"5500\" data-separator=\",\" data-decimal=\".\">0<\/div><div id=\"title-counter_114150242169e84c91f22d1\"  data-ultimate-target='#counter-responsv-wrap-7208 .stats-text'  data-responsive-json-new='{\"font-size\":\"\",\"line-height\":\"\"}'  class=\"stats-text ult-responsive\" style=\"font-size:18px; color:#ffffff; font-weight:bold;\">m\u00b2 Production area<\/div><\/div><\/div>[\/vc_column][vc_column width=&#8221;1\/6&#8243; css=&#8221;.vc_custom_1703020142876{border-right-width: 3px !important;padding-top: 0px !important;border-right-color: #dd0b18 !important;border-right-style: dashed !important;}&#8221; offset=&#8221;vc_col-xs-4&#8243; el_class=&#8221;border-top-m&#8221;]<div class=\"stats-block stats-top   vc_custom_1705487068613\"><div class=\"aio-icon-top\"><div class=\"ult-just-icon-wrapper  \"><div class=\"align-icon\" style=\"text-align:center;\"><\/div><\/div><\/div><div class=\"stats-desc\" id=\"counter-responsv-wrap-4590\"><div id=\"counter_37898839269e84c91f237f\" data-id=\"counter_37898839269e84c91f237f\"  data-ultimate-target='#counter-responsv-wrap-4590 .stats-number'  data-responsive-json-new='{\"font-size\":\"desktop:60px;\",\"line-height\":\"desktop:60px;\"}'  class=\"stats-number ult-responsive\" style=\" color:#ffffff; font-weight:bold;color:#ffffff;\" data-speed=\"3\" data-counter-value=\"21\" data-separator=\",\" data-decimal=\".\">0<\/div><div id=\"title-counter_37898839269e84c91f237f\"  data-ultimate-target='#counter-responsv-wrap-4590 .stats-text'  data-responsive-json-new='{\"font-size\":\"\",\"line-height\":\"\"}'  class=\"stats-text ult-responsive\" style=\"font-size:18px; color:#ffffff; font-weight:bold;\">Countries<\/div><\/div><\/div>[\/vc_column][vc_column width=&#8221;1\/6&#8243; css=&#8221;.vc_custom_1703020148860{border-right-width: 3px !important;padding-top: 0px !important;border-right-color: #dd0b18 !important;}&#8221; offset=&#8221;vc_col-xs-4&#8243; el_class=&#8221;border-top-m&#8221;]<div class=\"stats-block stats-top   vc_custom_1705487078476\"><div class=\"aio-icon-top\"><div class=\"ult-just-icon-wrapper  \"><div class=\"align-icon\" style=\"text-align:center;\"><\/div><\/div><\/div><div class=\"stats-desc\" id=\"counter-responsv-wrap-5206\"><div id=\"counter_81181850169e84c91f2426\" data-id=\"counter_81181850169e84c91f2426\"  data-ultimate-target='#counter-responsv-wrap-5206 .stats-number'  data-responsive-json-new='{\"font-size\":\"desktop:60px;\",\"line-height\":\"desktop:60px;\"}'  class=\"stats-number ult-responsive\" style=\" color:#ffffff; font-weight:bold;color:#ffffff;\" data-speed=\"3\" data-counter-value=\"4\" data-separator=\",\" data-decimal=\".\">0<\/div><div id=\"title-counter_81181850169e84c91f2426\"  data-ultimate-target='#counter-responsv-wrap-5206 .stats-text'  data-responsive-json-new='{\"font-size\":\"\",\"line-height\":\"\"}'  class=\"stats-text ult-responsive\" style=\"font-size:18px; color:#ffffff; font-weight:bold;\">Branches<\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; css=&#8221;.vc_custom_1702583616159{background-color: #1a2441 !important;}&#8221;][vc_column][vc_empty_space height=&#8221;50px&#8221; el_class=&#8221;small-mobile&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; content_placement=&#8221;middle&#8221; css=&#8221;.vc_custom_1703160457659{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}&#8221; el_class=&#8221;reverse-mobile right-no-space&#8221;][vc_column offset=&#8221;vc_col-md-4&#8243;][vc_custom_heading text=&#8221;BINDER -&#8221; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;bind-dark-text&#8221;][vc_custom_heading text=&#8221;Simply Unique&#8221; font_container=&#8221;tag:h4|text_align:left&#8221; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;bind-red-text&#8221;][vc_column_text]We value the versatility of our work and the familial cohesion within our team. A positive work environment and flat hierarchies are essential to us \u2013 all employees interact on an equal footing with mutual respect. This work atmosphere not only contributes to a pleasant environment but also fosters the creativity and efficiency of our employees. We take pride in creating not only products but also long-term partnerships. Our commitment to quality, individuality, and customer orientation is reflected in everything we do.[\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/12&#8243; offset=&#8221;vc_hidden-sm vc_hidden-xs&#8221;][\/vc_column][vc_column css=&#8221;.vc_custom_1702587876151{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}&#8221; offset=&#8221;vc_col-md-7&#8243;][vc_single_image image=&#8221;795&#8243; img_size=&#8221;full&#8221; css=&#8221;.vc_custom_1703054795281{margin-bottom: 0px !important;}&#8221; el_class=&#8221;full-img&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; bg_type=&#8221;image&#8221; parallax_style=&#8221;vcpb-default&#8221; bg_image_new=&#8221;id^336|url^https:\/\/binder-behaelterbau.de\/wp-content\/uploads\/2023\/12\/csm_Luftaufnahme_2015_1_d238a535d5-Kopie@2x.png|caption^null|alt^null|title^csm_Luftaufnahme_2015_1_d238a535d5 Kopie@2x|description^null&#8221; bg_image_repeat=&#8221;no-repeat&#8221; bg_img_attach=&#8221;fixed&#8221; parallax_content=&#8221;parallax_content_value&#8221; parallax_content_sense=&#8221;50&#8243; el_class=&#8221;bind-timeline-wrapper blend-bg-row&#8221; css=&#8221;.vc_custom_1705325811422{margin-bottom: 0px !important;padding-bottom: 0px !important;}&#8221;][vc_column][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; css=&#8221;.vc_custom_1703159247397{background-color: #e0e0e0 !important;}&#8221;][vc_column][vc_empty_space height=&#8221;35px&#8221; el_class=&#8221;small-mobile&#8221;][vc_custom_heading text=&#8221;THE VISION&#8221; use_theme_fonts=&#8221;yes&#8221;][vc_custom_heading text=&#8221;The Vision of the Binder Family&#8221; font_container=&#8221;tag:h4|text_align:left|color:%23dd0b18&#8243; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;bind-blue-text&#8221;][vc_column_text]Our future direction is shaped by the cooperative leadership of two generations. Roland Binder, in collaboration with his sons Thorsten and Frank, along with their dedicated uncle Martin Binder, forms this guiding perspective for the company. The influential impact of the vision lies in the younger generation, represented by the brothers Thorsten and Frank Binder, whose guiding principle emphasizes the continuous success story of Binder GmbH Apparate- und Beh\u00e4lterbau after the generational change. This clear vision reflects the profound commitment of the Binder family, harmoniously combining tradition and innovation to create a sustainable and flourishing future for the company. On a broader scale, collaborative leadership emerges as the driving force behind the shared vision, based on the fusion of proven practices and forward-thinking ideas.[\/vc_column_text][vc_empty_space height=&#8221;100px&#8221; el_class=&#8221;small-mobile&#8221;][vc_row_inner][vc_column_inner width=&#8221;1\/6&#8243; offset=&#8221;vc_col-xs-1&#8243;][\/vc_column_inner][vc_column_inner width=&#8221;2\/3&#8243; offset=&#8221;vc_col-xs-10&#8243;][vc_column_text el_class=&#8221;binder-fam-quote no-margin&#8221;]<\/p>\n<h2 style=\"text-align: center;\">We want to remain at least as successful as before after the generational change. With new professionals and long-term employees, we aim to grow as a healthy company and explore new markets internationally.<\/h2>\n<p>[\/vc_column_text][\/vc_column_inner][vc_column_inner width=&#8221;1\/6&#8243; offset=&#8221;vc_col-xs-1&#8243;][\/vc_column_inner][\/vc_row_inner][vc_custom_heading text=&#8221;Binder Family&#8221; font_container=&#8221;tag:h4|text_align:center|color:%23dd0b18&#8243; use_theme_fonts=&#8221;yes&#8221;][vc_empty_space height=&#8221;35px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; css=&#8221;.vc_custom_1705091604980{background-color: #1a2441 !important;}&#8221;][vc_column][vc_empty_space height=&#8221;20px&#8221;][vc_custom_heading text=&#8221;OUR VALUES&#8221; font_container=&#8221;tag:h3|text_align:left|color:%23ffffff&#8221; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;bind-white-text&#8221;][vc_empty_space height=&#8221;20px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; content_placement=&#8221;bottom&#8221; el_class=&#8221;about-us-obj unter-grid&#8221;][vc_column width=&#8221;1\/2&#8243; css=&#8221;.vc_custom_1703161983743{margin-top: -35px !important;padding-top: 0px !important;}&#8221;][vc_row_inner][vc_column_inner el_class=&#8221;bind-header-image-mockslider&#8221;][vc_single_image image=&#8221;2351&#8243; img_size=&#8221;full&#8221; css=&#8221;.vc_custom_1705316201174{margin-bottom: 0px !important;}&#8221; el_class=&#8221;full-img&#8221;][\/vc_column_inner][\/vc_row_inner][vc_row_inner el_class=&#8221;text-over-image&#8221;][vc_column_inner width=&#8221;1\/6&#8243; offset=&#8221;vc_col-xs-1&#8243;][\/vc_column_inner][vc_column_inner width=&#8221;2\/3&#8243; offset=&#8221;vc_col-xs-10&#8243;][vc_custom_heading text=&#8221;Family-Oriented&#8221; font_container=&#8221;tag:h2|text_align:left|color:%23ffffff&#8221; use_theme_fonts=&#8221;yes&#8221;][vc_column_text el_class=&#8221;bind-text-white&#8221;]At Binder GmbH Apparate- und Beh\u00e4lterbau, a warm, family-like atmosphere shapes the daily work environment. The close bond among employees goes beyond purely business matters, creating a trusting environment where successes are celebrated together and challenges are collectively overcome.[\/vc_column_text][\/vc_column_inner][vc_column_inner width=&#8221;1\/6&#8243; offset=&#8221;vc_col-xs-1&#8243;][\/vc_column_inner][\/vc_row_inner][\/vc_column][vc_column width=&#8221;1\/2&#8243; css=&#8221;.vc_custom_1703161990576{margin-top: -35px !important;}&#8221;][vc_row_inner][vc_column_inner el_class=&#8221;bind-header-image-mockslider&#8221;][vc_single_image image=&#8221;844&#8243; img_size=&#8221;full&#8221; css=&#8221;.vc_custom_1705905415938{margin-bottom: 0px !important;}&#8221; el_class=&#8221;full-img&#8221;][\/vc_column_inner][\/vc_row_inner][vc_row_inner el_class=&#8221;text-over-image&#8221;][vc_column_inner width=&#8221;1\/6&#8243; offset=&#8221;vc_col-xs-1&#8243;][\/vc_column_inner][vc_column_inner width=&#8221;2\/3&#8243; offset=&#8221;vc_col-xs-10&#8243;][vc_custom_heading text=&#8221;Down-to-Earth&#8221; font_container=&#8221;tag:h2|text_align:left|color:%23ffffff&#8221; use_theme_fonts=&#8221;yes&#8221;][vc_column_text el_class=&#8221;bind-text-white&#8221;]Our down-to-earth nature is evident in our clear focus on solid craftsmanship and sustainable products. Binder GmbH Apparate- und Beh\u00e4lterbau values traditional values and is not distracted by short-term trends, as reflected in our emphasis on high-quality work.[\/vc_column_text][\/vc_column_inner][vc_column_inner width=&#8221;1\/6&#8243; offset=&#8221;vc_col-xs-1&#8243;][\/vc_column_inner][\/vc_row_inner][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; content_placement=&#8221;bottom&#8221; el_class=&#8221;about-us-obj unter-grid&#8221;][vc_column width=&#8221;1\/2&#8243; css=&#8221;.vc_custom_1703161983743{margin-top: -35px !important;padding-top: 0px !important;}&#8221;][vc_row_inner][vc_column_inner el_class=&#8221;bind-header-image-mockslider&#8221;][vc_single_image image=&#8221;1599&#8243; img_size=&#8221;full&#8221; css=&#8221;.vc_custom_1704712015339{margin-bottom: 0px !important;}&#8221; el_class=&#8221;full-img&#8221;][\/vc_column_inner][\/vc_row_inner][vc_row_inner el_class=&#8221;text-over-image&#8221;][vc_column_inner width=&#8221;1\/6&#8243; offset=&#8221;vc_col-xs-1&#8243;][\/vc_column_inner][vc_column_inner width=&#8221;2\/3&#8243; offset=&#8221;vc_col-xs-10&#8243;][vc_custom_heading text=&#8221;Helpful&#8221; font_container=&#8221;tag:h2|text_align:left|color:%23ffffff&#8221; use_theme_fonts=&#8221;yes&#8221;][vc_column_text el_class=&#8221;bind-text-white&#8221;]Helpfulness is a part of our corporate culture. Employees support each other not only professionally but also personally. This open attitude extends to customers and partners, where we strive to find solutions and maintain a collaborative partnership.[\/vc_column_text][\/vc_column_inner][vc_column_inner width=&#8221;1\/6&#8243; offset=&#8221;vc_col-xs-1&#8243;][\/vc_column_inner][\/vc_row_inner][\/vc_column][vc_column width=&#8221;1\/2&#8243; css=&#8221;.vc_custom_1703161990576{margin-top: -35px !important;}&#8221;][vc_row_inner][vc_column_inner el_class=&#8221;bind-header-image-mockslider&#8221;][vc_single_image image=&#8221;1601&#8243; img_size=&#8221;full&#8221; css=&#8221;.vc_custom_1704712027954{margin-bottom: 0px !important;}&#8221; el_class=&#8221;full-img&#8221;][\/vc_column_inner][\/vc_row_inner][vc_row_inner el_class=&#8221;text-over-image&#8221;][vc_column_inner width=&#8221;1\/6&#8243; offset=&#8221;vc_col-xs-1&#8243;][\/vc_column_inner][vc_column_inner width=&#8221;2\/3&#8243; offset=&#8221;vc_col-xs-10&#8243;][vc_custom_heading text=&#8221;Team Spirit&#8221; font_container=&#8221;tag:h2|text_align:left|color:%23ffffff&#8221; use_theme_fonts=&#8221;yes&#8221;][vc_column_text el_class=&#8221;bind-text-white&#8221;]Team spirit is a crucial factor for success at our company. Our 50 employees not only work together effectively but also share common values and goals. Through regular team-building activities and open communication, team spirit is actively promoted for harmonious collaboration.[\/vc_column_text][\/vc_column_inner][vc_column_inner width=&#8221;1\/6&#8243; offset=&#8221;vc_col-xs-1&#8243;][\/vc_column_inner][\/vc_row_inner][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; css=&#8221;.vc_custom_1702583616159{background-color: #1a2441 !important;}&#8221;][vc_column][vc_empty_space height=&#8221;50px&#8221; el_class=&#8221;no-space-mobile&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; css=&#8221;.vc_custom_1703159247397{background-color: #e0e0e0 !important;}&#8221;][vc_column][vc_empty_space height=&#8221;30px&#8221; el_class=&#8221;small-mobile&#8221;][vc_custom_heading text=&#8221;EXCLUSIVE INSIGHTS: VISIONS, VALUES, AND EVERYDAY WORK&#8221; use_theme_fonts=&#8221;yes&#8221;][vc_custom_heading text=&#8221;The management of BINDER in focus!&#8221; font_container=&#8221;tag:h4|text_align:left|color:%23dd0b18&#8243; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;bind-blue-text&#8221;][vc_row_inner][vc_column_inner width=&#8221;1\/2&#8243;]<div id=\"ultimate-video-375669e84c91f25bd\" class=\"ult-video  ult-adjust-bottom-margin ultimate-video-375669e84c91f25bd ultv-6073 \"><div class=\"ultv-video ultv-aspect-ratio-16_9 ultv-subscribe-responsive-none\" data-videotype=\"uv_iframe\">\n\t\t\t\t\t\t<div class=\"ultv-video__outer-wrap\" data-autoplay=\"0\" data-device=\"false\"  data-iconbg=\"#3A3A3A\" data-overcolor=\"\" data-defaultbg=\"#1f1f1e\" data-defaultplay=\"defaulticon\"><div class=\"ultv-video__play\" data-src=\"https:\/\/www.youtube.com\/embed\/SvYtt3mOz_Q?rel=0&#038;start&#038;end&#038;controls=1&#038;mute=0&#038;modestbranding=0&#038;autoplay=1\">\n\t\t\t\t\t\t\t\t<img decoding=\"async\" class=\"ultv-video__thumb\" src=\"https:\/\/i.ytimg.com\/vi\/SvYtt3mOz_Q\/maxresdefault.jpg\"\/>\n\t\t\t\t\t\t\t\t<div class=\"ultv-video__play-icon  ultv-animation-none\" style=\"width:75px\"><svg height=\"100%\" version=\"1.1\" viewBox=\"0 0 68 48\" width=\"100%\"><path class=\"ultv-youtube-icon-bg\" d=\"m .66,37.62 c 0,0 .66,4.70 2.70,6.77 2.58,2.71 5.98,2.63 7.49,2.91 5.43,.52 23.10,.68 23.12,.68 .00,-1.3e-5 14.29,-0.02 23.81,-0.71 1.32,-0.15 4.22,-0.17 6.81,-2.89 2.03,-2.07 2.70,-6.77 2.70,-6.77 0,0 .67,-5.52 .67,-11.04 l 0,-5.17 c 0,-5.52 -0.67,-11.04 -0.67,-11.04 0,0 -0.66,-4.70 -2.70,-6.77 C 62.03,.86 59.13,.84 57.80,.69 48.28,0 34.00,0 34.00,0 33.97,0 19.69,0 10.18,.69 8.85,.84 5.95,.86 3.36,3.58 1.32,5.65 .66,10.35 .66,10.35 c 0,0 -0.55,4.50 -0.66,9.45 l 0,8.36 c .10,4.94 .66,9.45 .66,9.45 z\" fill=\"#1f1f1e\" ><\/path><path d=\"m 26.96,13.67 18.37,9.62 -18.37,9.55 -0.00,-19.17 z\" fill=\"#fff\"><\/path><path d=\"M 45.02,23.46 45.32,23.28 26.96,13.67 43.32,22.34 45.02,23.46 z\" fill=\"#ccc\"><\/path><\/svg><\/div> <\/div> <\/div><\/div><\/div>[\/vc_column_inner][vc_column_inner width=&#8221;1\/2&#8243;]<div id=\"ultimate-video-321069e84c91f265f\" class=\"ult-video  ult-adjust-bottom-margin ultimate-video-321069e84c91f265f ultv-8661 \"><div class=\"ultv-video ultv-aspect-ratio-16_9 ultv-subscribe-responsive-none\" data-videotype=\"uv_iframe\">\n\t\t\t\t\t\t<div class=\"ultv-video__outer-wrap\" data-autoplay=\"0\" data-device=\"false\"  data-iconbg=\"#3A3A3A\" data-overcolor=\"\" data-defaultbg=\"#1f1f1e\" data-defaultplay=\"defaulticon\"><div class=\"ultv-video__play\" data-src=\"https:\/\/www.youtube.com\/embed\/bIivYhiRXu0?rel=0&#038;start&#038;end&#038;controls=1&#038;mute=0&#038;modestbranding=0&#038;autoplay=1\">\n\t\t\t\t\t\t\t\t<img decoding=\"async\" class=\"ultv-video__thumb\" src=\"https:\/\/i.ytimg.com\/vi\/bIivYhiRXu0\/maxresdefault.jpg\"\/>\n\t\t\t\t\t\t\t\t<div class=\"ultv-video__play-icon  ultv-animation-none\" style=\"width:75px\"><svg height=\"100%\" version=\"1.1\" viewBox=\"0 0 68 48\" width=\"100%\"><path class=\"ultv-youtube-icon-bg\" d=\"m .66,37.62 c 0,0 .66,4.70 2.70,6.77 2.58,2.71 5.98,2.63 7.49,2.91 5.43,.52 23.10,.68 23.12,.68 .00,-1.3e-5 14.29,-0.02 23.81,-0.71 1.32,-0.15 4.22,-0.17 6.81,-2.89 2.03,-2.07 2.70,-6.77 2.70,-6.77 0,0 .67,-5.52 .67,-11.04 l 0,-5.17 c 0,-5.52 -0.67,-11.04 -0.67,-11.04 0,0 -0.66,-4.70 -2.70,-6.77 C 62.03,.86 59.13,.84 57.80,.69 48.28,0 34.00,0 34.00,0 33.97,0 19.69,0 10.18,.69 8.85,.84 5.95,.86 3.36,3.58 1.32,5.65 .66,10.35 .66,10.35 c 0,0 -0.55,4.50 -0.66,9.45 l 0,8.36 c .10,4.94 .66,9.45 .66,9.45 z\" fill=\"#1f1f1e\" ><\/path><path d=\"m 26.96,13.67 18.37,9.62 -18.37,9.55 -0.00,-19.17 z\" fill=\"#fff\"><\/path><path d=\"M 45.02,23.46 45.32,23.28 26.96,13.67 43.32,22.34 45.02,23.46 z\" fill=\"#ccc\"><\/path><\/svg><\/div> <\/div> <\/div><\/div><\/div>[\/vc_column_inner][\/vc_row_inner][vc_row_inner][vc_column_inner][vc_empty_space height=&#8221;50px&#8221;][\/vc_column_inner][\/vc_row_inner][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content&#8221; equal_height=&#8221;yes&#8221; content_placement=&#8221;top&#8221; css=&#8221;.vc_custom_1705093742082{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#8221;][vc_column width=&#8221;7\/12&#8243; css=&#8221;.vc_custom_1702206083136{background-color: #1a2441 !important;}&#8221;][vc_row_inner][vc_column_inner width=&#8221;1\/6&#8243; offset=&#8221;vc_hidden-lg vc_hidden-md vc_hidden-sm vc_col-xs-1 vc_hidden-xs&#8221;][\/vc_column_inner][vc_column_inner width=&#8221;2\/3&#8243; offset=&#8221;vc_hidden-lg vc_hidden-md vc_hidden-sm vc_col-xs-10&#8243;][vc_empty_space height=&#8221;35px&#8221; el_class=&#8221;no-space-mobile&#8221;][vc_custom_heading text=&#8221;OUR CUSTOMERS WORLDWIDE&#8221; font_container=&#8221;tag:h2|text_align:left|color:%23ffffff&#8221; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;bind-white-text d-none&#8221;][vc_column_text]<span style=\"color: white;\">Binder GmbH has established itself worldwide as a provider of apparatus and vessels in Europe, Asia, and North America. Through innovative solutions and the highest quality standards, the company has gained the trust of customers on a global scale.<\/span>[\/vc_column_text][\/vc_column_inner][vc_column_inner width=&#8221;1\/6&#8243; offset=&#8221;vc_hidden-lg vc_hidden-md vc_hidden-sm vc_col-xs-1&#8243;][\/vc_column_inner][\/vc_row_inner][vc_single_image image=&#8221;343&#8243; img_size=&#8221;full&#8221; alignment=&#8221;center&#8221; el_class=&#8221;mr-d&#8221;][\/vc_column][vc_column width=&#8221;5\/12&#8243; css=&#8221;.vc_custom_1702206065382{background-color: #dd0b18 !important;}&#8221;][vc_row_inner][vc_column_inner width=&#8221;1\/6&#8243; offset=&#8221;vc_hidden-xs&#8221;][\/vc_column_inner][vc_column_inner width=&#8221;2\/3&#8243; offset=&#8221;vc_hidden-xs&#8221;][vc_empty_space height=&#8221;35px&#8221;][vc_custom_heading text=&#8221;OUR CUSTOMERS WORLDWIDE&#8221; font_container=&#8221;tag:h2|text_align:left|color:%23ffffff&#8221; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;bind-white-text d-block&#8221;][vc_column_text]<span style=\"color: white;\">Binder GmbH has established itself worldwide as a provider of apparatus and vessels in Europe, Asia, and North America. Through innovative solutions and the highest quality standards, the company has gained the trust of customers on a global scale.<\/span>[\/vc_column_text][vc_empty_space height=&#8221;35px&#8221;][\/vc_column_inner][vc_column_inner width=&#8221;1\/6&#8243; offset=&#8221;vc_hidden-xs&#8221;][\/vc_column_inner][\/vc_row_inner][vc_row_inner][vc_column_inner width=&#8221;1\/6&#8243; offset=&#8221;vc_col-xs-1 vc_hidden-xs&#8221;][\/vc_column_inner][vc_column_inner width=&#8221;1\/3&#8243; offset=&#8221;vc_col-xs-5&#8243;][vc_column_text el_class=&#8221;bind-white-text&#8221;]<strong>EUROPE<\/strong><\/p>\n<p>Germany<br \/>\nAustria<br \/>\nSwitzerland<br \/>\nBelgium<br \/>\nNetherlands<br \/>\nFrance<br \/>\nItaly<br \/>\nSpain<br \/>\nUnited Kingdom<br \/>\nIreland<br \/>\nLiechtenstein<br \/>\nLuxembourg<br \/>\nCzech Republic<br \/>\nHungary<br \/>\nPoland<br \/>\nUkraine[\/vc_column_text][\/vc_column_inner][vc_column_inner width=&#8221;1\/6&#8243; offset=&#8221;vc_col-xs-2&#8243;][\/vc_column_inner][vc_column_inner width=&#8221;1\/3&#8243; offset=&#8221;vc_col-xs-4&#8243;][vc_column_text el_class=&#8221;bind-white-text&#8221;]<strong>ASIA<\/strong><\/p>\n<p>China<br \/>\nThailand<br \/>\nSouth Korea<br \/>\nSingapore<br \/>\nMalaysia[\/vc_column_text][vc_empty_space height=&#8221;35px&#8221;][vc_column_text el_class=&#8221;bind-white-text&#8221;]<strong>AMERICA<\/strong><\/p>\n<p>USA<br \/>\nCanada<br \/>\nBrazil[\/vc_column_text][\/vc_column_inner][\/vc_row_inner][vc_empty_space height=&#8221;35px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; parallax=&#8221;content-moving&#8221; parallax_speed_bg=&#8221;2.5&#8243; css=&#8221;.vc_custom_1703055772356{background-image: url(https:\/\/binder-behaelterbau.de\/wp-content\/uploads\/2023\/12\/Unternehmen-parrallax.jpg?id=825) !important;background-position: center;background-repeat: no-repeat !important;background-size: cover !important;}&#8221; el_class=&#8221;bg-image-top&#8221;][vc_column][vc_empty_space height=&#8221;500px&#8221; el_class=&#8221;img-bg-size&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; content_placement=&#8221;middle&#8221; css=&#8221;.vc_custom_1703024031419{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;background-color: #1a2441 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}&#8221; el_class=&#8221;right-no-space&#8221;][vc_column offset=&#8221;vc_col-md-4&#8243;][vc_custom_heading text=&#8221;ALL<br \/>\nFROM ONE<br \/>\nSOURCE&#8221; font_container=&#8221;tag:h3|text_align:left|color:%23ffffff&#8221; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;bind-header-image-text bind-white-text&#8221;][vc_custom_heading text=&#8221;Manufacturing capabilities vessel production&#8221; font_container=&#8221;tag:h4|text_align:left|color:%2372b5cc&#8221; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;bind-blue-text&#8221;][vc_row_inner][vc_column_inner width=&#8221;1\/4&#8243;][\/vc_column_inner][vc_column_inner width=&#8221;3\/4&#8243;][vc_column_text el_class=&#8221;bind-white-text&#8221;]Discover our unique production and diverse manufacturing capabilities for your vessel.[\/vc_column_text][\/vc_column_inner][\/vc_row_inner][vc_btn title=&#8221;EXPLORE NOW!&#8221; style=&#8221;custom&#8221; custom_background=&#8221;#dd0b18&#8243; custom_text=&#8221;#ffffff&#8221; size=&#8221;lg&#8221; align=&#8221;left&#8221; el_class=&#8221;bind-red-bg-button&#8221; link=&#8221;url:https%3A%2F%2Fbinder-behaelterbau.de%2Fen%2Fservices%2Fdesign-of-apparatus-and-vessels%2F|title:Karriere&#8221;][\/vc_column][vc_column width=&#8221;1\/12&#8243; offset=&#8221;vc_hidden-sm vc_hidden-xs&#8221;][\/vc_column][vc_column css=&#8221;.vc_custom_1702587876151{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}&#8221; offset=&#8221;vc_col-md-7&#8243;][vc_single_image image=&#8221;839&#8243; img_size=&#8221;full&#8221; css=&#8221;.vc_custom_1703056154234{margin-bottom: 0px !important;}&#8221; el_class=&#8221;full-img&#8221;][\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; content_placement=&#8221;bottom&#8221;][vc_column css=&#8221;.vc_custom_1702385479126{padding-top: 0px !important;}&#8221;][vc_row_inner][vc_column_inner el_class=&#8221;bind-header-image-mockslider&#8221;][vc_single_image image=&#8221;895&#8243; img_size=&#8221;full&#8221; css=&#8221;.vc_custom_1703070104994{margin-bottom: 0px !important;}&#8221; el_class=&#8221;full-img&#8221;][\/vc_column_inner][\/vc_row_inner][vc_custom_heading text=&#8221;OUR BINDING &#8211; STRONG AS STEEL!&#8221; font_container=&#8221;tag:h3|text_align:left|color:%23ffffff&#8221; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;header-txt-custom&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; css=&#8221;.vc_custom_1702583616159{background-color: #1a2441 !important;}&#8221;][vc_column offset=&#8221;vc_hidden-xs&#8221;][vc_empty_space height=&#8221;50px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; content_placement=&#8221;top&#8221; css=&#8221;.vc_custom_1702387185375{background-color: #1a2441 !important;}&#8221;][vc_column width=&#8221;1\/2&#8243;][vc_custom_heading text=&#8221;BINDER GMBH&#8221; font_container=&#8221;tag:h2|text_align:left|color:%23ffffff&#8221; use_theme_fonts=&#8221;yes&#8221; css=&#8221;.vc_custom_1702643282467{margin-top: 0px !important;}&#8221; el_class=&#8221;bind-white-text&#8221;][vc_custom_heading text=&#8221;Apparate- und Beh\u00e4lterbau&#8221; font_container=&#8221;tag:h4|text_align:left|color:%2372b5cc&#8221; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;bind-blue-text&#8221;][\/vc_column][vc_column width=&#8221;1\/2&#8243; el_class=&#8221;no-top-mobile&#8221;][vc_column_text el_class=&#8221;bind-white-text&#8221;]Construction Since our founding in [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"categories":[],"class_list":["post-2057","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Company - Binder<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/binder-behaelterbau.de\/en\/company\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Company\" \/>\n<meta property=\"og:description\" content=\"[vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; content_placement=&#8221;bottom&#8221;][vc_column css=&#8221;.vc_custom_1702385479126{padding-top: 0px !important;}&#8221;][vc_row_inner][vc_column_inner el_class=&#8221;bind-header-image-mockslider&#8221;][vc_single_image image=&#8221;895&#8243; img_size=&#8221;full&#8221; css=&#8221;.vc_custom_1703070104994{margin-bottom: 0px !important;}&#8221; el_class=&#8221;full-img&#8221;][\/vc_column_inner][\/vc_row_inner][vc_custom_heading text=&#8221;OUR BINDING &#8211; STRONG AS STEEL!&#8221; font_container=&#8221;tag:h3|text_align:left|color:%23ffffff&#8221; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;header-txt-custom&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; css=&#8221;.vc_custom_1702583616159{background-color: #1a2441 !important;}&#8221;][vc_column offset=&#8221;vc_hidden-xs&#8221;][vc_empty_space height=&#8221;50px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; content_placement=&#8221;top&#8221; css=&#8221;.vc_custom_1702387185375{background-color: #1a2441 !important;}&#8221;][vc_column width=&#8221;1\/2&#8243;][vc_custom_heading text=&#8221;BINDER GMBH&#8221; font_container=&#8221;tag:h2|text_align:left|color:%23ffffff&#8221; use_theme_fonts=&#8221;yes&#8221; css=&#8221;.vc_custom_1702643282467{margin-top: 0px !important;}&#8221; el_class=&#8221;bind-white-text&#8221;][vc_custom_heading text=&#8221;Apparate- und Beh\u00e4lterbau&#8221; font_container=&#8221;tag:h4|text_align:left|color:%2372b5cc&#8221; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;bind-blue-text&#8221;][\/vc_column][vc_column width=&#8221;1\/2&#8243; el_class=&#8221;no-top-mobile&#8221;][vc_column_text el_class=&#8221;bind-white-text&#8221;]Construction Since our founding in [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/binder-behaelterbau.de\/en\/company\/\" \/>\n<meta property=\"og:site_name\" content=\"Binder\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/p\/Binder-GmbH-100076225449307\/\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-26T11:11:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/binder-behaelterbau.de\/wp-content\/uploads\/2024\/04\/Logo_Binder_Slogan_final.png\" \/>\n\t<meta property=\"og:image:width\" content=\"600\" \/>\n\t<meta property=\"og:image:height\" content=\"291\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/binder-behaelterbau.de\\\/en\\\/company\\\/\",\"url\":\"https:\\\/\\\/binder-behaelterbau.de\\\/en\\\/company\\\/\",\"name\":\"Company - Binder\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/binder-behaelterbau.de\\\/#website\"},\"datePublished\":\"2023-11-16T16:05:54+00:00\",\"dateModified\":\"2026-01-26T11:11:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/binder-behaelterbau.de\\\/en\\\/company\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/binder-behaelterbau.de\\\/en\\\/company\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/binder-behaelterbau.de\\\/en\\\/company\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/binder-behaelterbau.de\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Company\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/binder-behaelterbau.de\\\/#website\",\"url\":\"https:\\\/\\\/binder-behaelterbau.de\\\/\",\"name\":\"Binder GmbH\",\"description\":\"Binder GmbH Apparate- und Beh\u00e4lterbau\",\"publisher\":{\"@id\":\"https:\\\/\\\/binder-behaelterbau.de\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/binder-behaelterbau.de\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/binder-behaelterbau.de\\\/#organization\",\"name\":\"Binder GmbH Apparate- und Beh\u00e4lterbau\",\"url\":\"https:\\\/\\\/binder-behaelterbau.de\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/binder-behaelterbau.de\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/binder-behaelterbau.de\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Logo_Binder_Slogan_final.png\",\"contentUrl\":\"https:\\\/\\\/binder-behaelterbau.de\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Logo_Binder_Slogan_final.png\",\"width\":600,\"height\":291,\"caption\":\"Binder GmbH Apparate- und Beh\u00e4lterbau\"},\"image\":{\"@id\":\"https:\\\/\\\/binder-behaelterbau.de\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/p\\\/Binder-GmbH-100076225449307\\\/\",\"https:\\\/\\\/www.instagram.com\\\/binder_gmbh\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Company - Binder","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:\/\/binder-behaelterbau.de\/en\/company\/","og_locale":"en_US","og_type":"article","og_title":"Company","og_description":"[vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; content_placement=&#8221;bottom&#8221;][vc_column css=&#8221;.vc_custom_1702385479126{padding-top: 0px !important;}&#8221;][vc_row_inner][vc_column_inner el_class=&#8221;bind-header-image-mockslider&#8221;][vc_single_image image=&#8221;895&#8243; img_size=&#8221;full&#8221; css=&#8221;.vc_custom_1703070104994{margin-bottom: 0px !important;}&#8221; el_class=&#8221;full-img&#8221;][\/vc_column_inner][\/vc_row_inner][vc_custom_heading text=&#8221;OUR BINDING &#8211; STRONG AS STEEL!&#8221; font_container=&#8221;tag:h3|text_align:left|color:%23ffffff&#8221; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;header-txt-custom&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; css=&#8221;.vc_custom_1702583616159{background-color: #1a2441 !important;}&#8221;][vc_column offset=&#8221;vc_hidden-xs&#8221;][vc_empty_space height=&#8221;50px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; content_placement=&#8221;top&#8221; css=&#8221;.vc_custom_1702387185375{background-color: #1a2441 !important;}&#8221;][vc_column width=&#8221;1\/2&#8243;][vc_custom_heading text=&#8221;BINDER GMBH&#8221; font_container=&#8221;tag:h2|text_align:left|color:%23ffffff&#8221; use_theme_fonts=&#8221;yes&#8221; css=&#8221;.vc_custom_1702643282467{margin-top: 0px !important;}&#8221; el_class=&#8221;bind-white-text&#8221;][vc_custom_heading text=&#8221;Apparate- und Beh\u00e4lterbau&#8221; font_container=&#8221;tag:h4|text_align:left|color:%2372b5cc&#8221; use_theme_fonts=&#8221;yes&#8221; el_class=&#8221;bind-blue-text&#8221;][\/vc_column][vc_column width=&#8221;1\/2&#8243; el_class=&#8221;no-top-mobile&#8221;][vc_column_text el_class=&#8221;bind-white-text&#8221;]Construction Since our founding in [&hellip;]","og_url":"https:\/\/binder-behaelterbau.de\/en\/company\/","og_site_name":"Binder","article_publisher":"https:\/\/www.facebook.com\/p\/Binder-GmbH-100076225449307\/","article_modified_time":"2026-01-26T11:11:18+00:00","og_image":[{"width":600,"height":291,"url":"https:\/\/binder-behaelterbau.de\/wp-content\/uploads\/2024\/04\/Logo_Binder_Slogan_final.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/binder-behaelterbau.de\/en\/company\/","url":"https:\/\/binder-behaelterbau.de\/en\/company\/","name":"Company - Binder","isPartOf":{"@id":"https:\/\/binder-behaelterbau.de\/#website"},"datePublished":"2023-11-16T16:05:54+00:00","dateModified":"2026-01-26T11:11:18+00:00","breadcrumb":{"@id":"https:\/\/binder-behaelterbau.de\/en\/company\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/binder-behaelterbau.de\/en\/company\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/binder-behaelterbau.de\/en\/company\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/binder-behaelterbau.de\/en\/"},{"@type":"ListItem","position":2,"name":"Company"}]},{"@type":"WebSite","@id":"https:\/\/binder-behaelterbau.de\/#website","url":"https:\/\/binder-behaelterbau.de\/","name":"Binder GmbH","description":"Binder GmbH Apparate- und Beh\u00e4lterbau","publisher":{"@id":"https:\/\/binder-behaelterbau.de\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/binder-behaelterbau.de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/binder-behaelterbau.de\/#organization","name":"Binder GmbH Apparate- und Beh\u00e4lterbau","url":"https:\/\/binder-behaelterbau.de\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/binder-behaelterbau.de\/#\/schema\/logo\/image\/","url":"https:\/\/binder-behaelterbau.de\/wp-content\/uploads\/2024\/04\/Logo_Binder_Slogan_final.png","contentUrl":"https:\/\/binder-behaelterbau.de\/wp-content\/uploads\/2024\/04\/Logo_Binder_Slogan_final.png","width":600,"height":291,"caption":"Binder GmbH Apparate- und Beh\u00e4lterbau"},"image":{"@id":"https:\/\/binder-behaelterbau.de\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/p\/Binder-GmbH-100076225449307\/","https:\/\/www.instagram.com\/binder_gmbh\/"]}]}},"_links":{"self":[{"href":"https:\/\/binder-behaelterbau.de\/en\/wp-json\/wp\/v2\/pages\/2057","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/binder-behaelterbau.de\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/binder-behaelterbau.de\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/binder-behaelterbau.de\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/binder-behaelterbau.de\/en\/wp-json\/wp\/v2\/comments?post=2057"}],"version-history":[{"count":10,"href":"https:\/\/binder-behaelterbau.de\/en\/wp-json\/wp\/v2\/pages\/2057\/revisions"}],"predecessor-version":[{"id":3035,"href":"https:\/\/binder-behaelterbau.de\/en\/wp-json\/wp\/v2\/pages\/2057\/revisions\/3035"}],"wp:attachment":[{"href":"https:\/\/binder-behaelterbau.de\/en\/wp-json\/wp\/v2\/media?parent=2057"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/binder-behaelterbau.de\/en\/wp-json\/wp\/v2\/categories?post=2057"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}