html {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: auto;
  -webkit-text-size-adjust: 100%;
}
body {
  width: 100%;
  height: 100%;
  background-color: #154c32;
  font-family: 'Maven Pro', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 14px;
  text-align: left;
  color: #000;
}


/* HTML 5 --------------------------------------------------------------------------------------- */

header, footer {
  display: block;
}


/* General -------------------------------------------------------------------------------------- */

* {
  padding: 0;
  border: 0;
  margin: 0;
}

h1, h2, h3, h4 {
  font-weight: normal;
  font-size: 14px;
  color: #154c32;
}

a {
  font-weight: bold;
  text-decoration: underline;
  color: #154c32;
  cursor: pointer;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition:    all 0.2s ease 0s;
  -o-transition:      all 0.2s ease 0s;
  transition:         all 0.2s ease 0s;
}
.no-touch a:hover,
          a:active,
.no-touch a:focus {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

address {
  font-style: normal;
}

table th,
table td {
  font-weight: normal;
  text-align: left;
  vertical-align: top;
}

label {
  cursor: pointer;
}
input,
select,
textarea,
button {
  font-family: 'Maven Pro', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #000;
  outline: none;
}
select,
button {
  cursor: pointer;
}
button {
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition:    all 0.2s ease 0s;
  -o-transition:      all 0.2s ease 0s;
  transition:         all 0.2s ease 0s;
}
textarea {
  overflow-y: auto;
  resize: none;
}
select {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
input.text,
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
input:required {
  box-shadow: none;
}
input:invalid {
  box-shadow: none;
}
:not(output):-moz-ui-invalid {
  box-shadow: none;
}
input[type=text] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
input[type=number] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
input[type=email] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
input[type=tel] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
input[type=password] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
input[type=search] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}
input[type=date] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=date]::-webkit-calendar-picker-indicator,
input[type=date]::-webkit-clear-button {
  display: none;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
button::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner {
  padding: 0 !important;
  border: 0 none !important;
}
::-webkit-input-placeholder {
  color: #aaa;
}
:-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #aaa;
}
:placeholder-shown {
  color: #aaa;
}


/* Page container ------------------------------------------------------------------------------- */

#page_container {
  width: 100%;
  min-width: 990px;
}


/* Header top ----------------------------------------------------------------------------------- */

#headertop_placeholder {
  width: 100%;
  min-width: 990px;
  height: 65px;
}

#headertop_container {
  width: 100%;
  min-width: 990px;
  height: 65px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #c6c6c6;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0);
  -moz-box-shadow:    0 0 6px rgba(0, 0, 0, 0);
  box-shadow:         0 0 6px rgba(0, 0, 0, 0);
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition:    all 0.2s ease 0s;
  -o-transition:      all 0.2s ease 0s;
  transition:         all 0.2s ease 0s;
}
#headertop_container.shadow {
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  -moz-box-shadow:    0 0 6px rgba(0, 0, 0, 0.5);
  box-shadow:         0 0 6px rgba(0, 0, 0, 0.5);
}
#headertop {
  width: 970px;
  height: 65px;
  position: relative;
  padding: 0 10px 0 10px;
  margin: 0 auto 0 auto;
}

/* Logo */
#logo {
  width: 146px;
  height: 117px;
  position: absolute;
  top: 0;
  left: 10px;
  -webkit-transition: top 0.2s ease 0s;
  -moz-transition:    top 0.2s ease 0s;
  -o-transition:      top 0.2s ease 0s;
  transition:         top 0.2s ease 0s;
}
#logo.slide_up {
  top: -15px;
}
#logo a {
  width: 146px;
  height: 117px;
  display: block;
  background-image: url('../images/logo.png');
  background-repeat: no-repeat;
  background-position: center center;
  color: #fff;
}
.svg #logo a {
  background-image: url('../images/logo.svg');
}
#logo span {
  display: none;
}

/* Menu mobile */
#menu_mobile {
  display: none;
}

/* Menu */
#menu {
  width: 560px;
  position: absolute;
  top: 10px;
  left: 160px;
  font-size: 0;
  line-height: 0;
  text-align: center;
}
#menu li {
  display: inline-block;
  position: relative;
  padding: 10px 18px 8px 0;
}
#menu li.last {
  padding-right: 0;
}
#menu a,
#menu span {
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  border-bottom: 2px solid transparent;
}
          #menu .active a,
          #menu .active span,
          #menu .open   a,
          #menu .open   span,
          #menu .trail  a,
          #menu .trail  span,
.no-touch #menu         a:hover,
          #menu         a:active,
.no-touch #menu         a:focus,
          #menu span {
  color: #154c32;
  border-bottom-color: #154c32;
}

/* Submenu */
#menu .submenu_container {
  display: none;
  position: absolute;
  top: 36px;
  left: -25px;
  text-align: left;
  padding: 19px 0 0 0;
}
#menu .submenu_container.large {
  width: 620px;
}
.fr #menu .submenu_container.large {
  width: 730px;
}
#menu .submenu {
  background-color: rgb(20, 75, 49, 0.95);
  padding: 25px 25px 25px 25px;
}
#menu .submenu_left,
#menu .submenu_right {
  float: left;
}
#menu .submenu_left {
  padding: 0 25px 0 0;
}
#menu .submenu_right {
  float: right;
}
#menu .submenu li {
  display: block;
  padding: 0 0 2px 0;
}
#menu .submenu a,
#menu .submenu span {
  display: block;
  font-weight: normal;
  line-height: 24px;
  text-transform: none;
  color: #fff;
  white-space: nowrap;
  border: 0;
}
          #menu .submenu span,
.no-touch #menu .submenu a:hover,
          #menu .submenu a:active,
.no-touch #menu .submenu a:focus {
  text-decoration: underline;
  color: #fff;
}

/* Phone */
#phone {
  position: absolute;
  top: 10px;
  right: 114px;
  line-height: 24px;
}
#phone a {
  display: block;
  position: relative;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  padding: 10px 10px 10px 24px;
}
#phone a:before {
  position: absolute;
  top: 12px;
  left: 10px;
  font-family: 'FontAwesome';
  font-weight: normal;
  color: #154c32;
  content: '\f095';
}
.no-touch #phone a:hover,
          #phone a:active,
.no-touch #phone a:focus {
  color: #154c32;
}

/* Facebook */
#facebook {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 10px;
  right: 70px;
}
#facebook a {
  width: 24px;
  height: 24px;
  display: block;
  font-weight: normal;
  text-decoration: none;
  color: #fff;
  padding: 10px;
}
#facebook span {
  width: 24px;
  height: 24px;
  display: block;
  background-color: #154c32;
  font-size: 0;
  line-height: 0;
  text-align: center;
  -webkit-border-radius: 24px;
  -moz-border-radius:    24px;
  border-radius:         24px;
}
#facebook span:after {
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  text-indent: 0;
  content: '\f09a';
}
#facebook span span {
  display: none;
}
.no-touch #facebook a:hover,
          #facebook a:active,
.no-touch #facebook a:focus {
  background-color: #fff;
}

/* Language */
#language {
  width: 60px;
  height: 44px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 100;
}

/* Language: selected */
#language_selected {
  width: 60px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 0;
}
#language_selected a {
  width: 60px;
  height: 44px;
  display: block;
  position: relative;
  font-weight: normal;
  text-decoration: none;
  color: #000;
}
#language_selected span {
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
  line-height: 0;
  text-indent: -99999px;
  -webkit-border-radius: 24px;
  -moz-border-radius:    24px;
  border-radius:         24px;
}
#language_selected a:after {
  height: 24px;
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: 'FontAwesome';
  font-weight: normal;
  line-height: 24px;
  color: #154c32;
  content: '\f107';
}
          .open #language_selected a,
.no-touch       #language_selected a:hover,
                #language_selected a:active,
.no-touch       #language_selected a:focus {
  background-color: #fff;
}

     #language_selected.nl a span { background-image: url('../images/lang_nl.png'); }
.svg #language_selected.nl a span { background-image: url('../images/lang_nl.svg'); }

     #language_selected.en a span { background-image: url('../images/lang_en.png'); }
.svg #language_selected.en a span { background-image: url('../images/lang_en.svg'); }

     #language_selected.de a span { background-image: url('../images/lang_de.png'); }
.svg #language_selected.de a span { background-image: url('../images/lang_de.svg'); }

     #language_selected.fr a span { background-image: url('../images/lang_fr.png'); }
.svg #language_selected.fr a span { background-image: url('../images/lang_fr.svg'); }

/* Language: options */
#language_options {
  width: 60px;
  display: none;
  position: absolute;
  top: 44px;
  left: 0;
  background-color: #a6a6a6;
}
#language_options li {
  padding: 1px 0 0 0;
}
#language_options a {
  display: block;
  background-color: #e6e6e6;
  font-weight: normal;
  text-decoration: none;
  padding: 10px;
}
#language_options span {
  width: 24px;
  height: 24px;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
  line-height: 0;
  text-indent: -99999px;
  -webkit-border-radius: 24px;
  -moz-border-radius:    24px;
  border-radius:         24px;
}
.no-touch #language_options a:hover,
          #language_options a:active,
.no-touch #language_options a:focus {
  background-color: #fff;
}

     #language_options li.nl a span { background-image: url('../images/lang_nl.png'); }
.svg #language_options li.nl a span { background-image: url('../images/lang_nl.svg'); }

     #language_options li.en a span { background-image: url('../images/lang_en.png'); }
.svg #language_options li.en a span { background-image: url('../images/lang_en.svg'); }

     #language_options li.de a span { background-image: url('../images/lang_de.png'); }
.svg #language_options li.de a span { background-image: url('../images/lang_de.svg'); }

     #language_options li.fr a span { background-image: url('../images/lang_fr.png'); }
.svg #language_options li.fr a span { background-image: url('../images/lang_fr.svg'); }


/* Header large --------------------------------------------------------------------------------- */

#header_large {
  width: 100%;
  min-width: 990px;
  height: 550px;
  position: relative;
  background-color: #dbdbdb;
}
#header_large.small {
  height: 400px;
}

/* Header slides */
#header_slides {
  width: 100%;
  height: 550px;
  position: relative;
}
.small #header_slides {
  height: 400px;
}
#header_slides img.transparent {
  display: none;
}
.header_slide {
  width: 100%;
  height: 550px;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  -webkit-transition: opacity 1s ease 0s;
  -moz-transition:    opacity 1s ease 0s;
  -o-transition:      opacity 1s ease 0s;
  transition:         opacity 1s ease 0s;
}
.small .header_slide {
  height: 400px;
}
.header_slide.visible {
  opacity: 1;
}
.header_slide img {
  display: none;
}

#slides_bottom,
#slides_top {
  width: 100%;
  height: 550px;
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  pointer-events: none;
}
.small #slides_bottom,
.small #slides_top {
  height: 400px;
}

#slides_bottom {
  bottom: -1px;
  background-image: url('../images/slides_bottom.png');
  background-position: bottom center;
  background-size: 101.5%;
}
.svg #slides_bottom {
  background-image: url('../images/slides_bottom.svg');
}

#slides_top {
  top: -1px;
  background-image: url('../images/slides_top.png');
  background-position: top center;
  background-size: contain;
}
.small #slides_top {
  background-image: url('../images/slides_top_small.png');
  background-size: cover;
}
.svg #slides_top {
  background-image: url('../images/slides_top.svg');
}
.svg .small #slides_top {
  background-image: url('../images/slides_top_small.svg');
}

/* Header pagination */
#header_pagination_container {
  width: 100%;
  min-width: 990px;
  position: absolute;
  bottom: 70px;
  left: 0;
}
#header_pagination {
  width: 970px;
  font-size: 0;
  line-height: 0;
  text-align: center;
  padding: 0 10px 0 10px;
  margin: 0 auto 0 auto;
}
#header_pagination a {
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: #fff;
  font-weight: normal;
  text-decoration: none;
  border: 2px solid #fff;
  margin: 0 10px 0 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius:    10px;
  border-radius:         10px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  -moz-box-shadow:    0 0 4px rgba(0, 0, 0, 0.5);
  box-shadow:         0 0 4px rgba(0, 0, 0, 0.5);
}
          #header_pagination a.current,
.no-touch #header_pagination a:hover,
          #header_pagination a:active,
.no-touch #header_pagination a:focus {
  background-color: #f41616;
}
#header_pagination span {
  display: none;
}

/* Map */
#map {
  width: 100%;
  min-width: 990px;
  height: 550px;
  background-color: #e5e3df;
}
.small #map {
  height: 400px;
}

/* Header: responsive */
@media only screen and (min-width: 1100px) { #header_large, #header_slides, .header_slide, #slides_bottom, #slides_top, #map { height:  600px; } #header_pagination_container { bottom:  75px; } }
@media only screen and (min-width: 1200px) { #header_large, #header_slides, .header_slide, #slides_bottom, #slides_top, #map { height:  650px; } #header_pagination_container { bottom:  80px; } }
@media only screen and (min-width: 1300px) { #header_large, #header_slides, .header_slide, #slides_bottom, #slides_top, #map { height:  700px; } #header_pagination_container { bottom:  85px; } }
@media only screen and (min-width: 1400px) { #header_large, #header_slides, .header_slide, #slides_bottom, #slides_top, #map { height:  750px; } #header_pagination_container { bottom:  90px; } }
@media only screen and (min-width: 1500px) { #header_large, #header_slides, .header_slide, #slides_bottom, #slides_top, #map { height:  800px; } #header_pagination_container { bottom:  95px; } }
@media only screen and (min-width: 1600px) { #header_large, #header_slides, .header_slide, #slides_bottom, #slides_top, #map { height:  850px; } #header_pagination_container { bottom: 100px; } }
@media only screen and (min-width: 1700px) { #header_large, #header_slides, .header_slide, #slides_bottom, #slides_top, #map { height:  900px; } #header_pagination_container { bottom: 105px; } }
@media only screen and (min-width: 1800px) { #header_large, #header_slides, .header_slide, #slides_bottom, #slides_top, #map { height:  950px; } #header_pagination_container { bottom: 110px; } }
@media only screen and (min-width: 1900px) { #header_large, #header_slides, .header_slide, #slides_bottom, #slides_top, #map { height: 1000px; } #header_pagination_container { bottom: 115px; } }
@media only screen and (min-width: 2000px) { #header_large, #header_slides, .header_slide, #slides_bottom, #slides_top, #map { height: 1050px; } #header_pagination_container { bottom: 120px; } }
@media only screen and (min-width: 2100px) { #header_large, #header_slides, .header_slide, #slides_bottom, #slides_top, #map { height: 1100px; } #header_pagination_container { bottom: 125px; } }
@media only screen and (min-width: 2200px) { #header_large, #header_slides, .header_slide, #slides_bottom, #slides_top, #map { height: 1150px; } #header_pagination_container { bottom: 130px; } }
@media only screen and (min-width: 2300px) { #header_large, #header_slides, .header_slide, #slides_bottom, #slides_top, #map { height: 1200px; } #header_pagination_container { bottom: 135px; } }
@media only screen and (min-width: 2400px) { #header_large, #header_slides, .header_slide, #slides_bottom, #slides_top, #map { height: 1250px; } #header_pagination_container { bottom: 140px; } }
@media only screen and (min-width: 2500px) { #header_large, #header_slides, .header_slide, #slides_bottom, #slides_top, #map { height: 1300px; } #header_pagination_container { bottom: 145px; } }

@media only screen and (min-width: 1100px) { #header_large.small, .small #header_slides, .small .header_slide, .small #slides_bottom, .small #slides_top, .small #map { height:  400px; } }
@media only screen and (min-width: 1200px) { #header_large.small, .small #header_slides, .small .header_slide, .small #slides_bottom, .small #slides_top, .small #map { height:  450px; } }
@media only screen and (min-width: 1300px) { #header_large.small, .small #header_slides, .small .header_slide, .small #slides_bottom, .small #slides_top, .small #map { height:  500px; } }
@media only screen and (min-width: 1400px) { #header_large.small, .small #header_slides, .small .header_slide, .small #slides_bottom, .small #slides_top, .small #map { height:  550px; } }
@media only screen and (min-width: 1500px) { #header_large.small, .small #header_slides, .small .header_slide, .small #slides_bottom, .small #slides_top, .small #map { height:  600px; } }
@media only screen and (min-width: 1600px) { #header_large.small, .small #header_slides, .small .header_slide, .small #slides_bottom, .small #slides_top, .small #map { height:  650px; } }
@media only screen and (min-width: 1700px) { #header_large.small, .small #header_slides, .small .header_slide, .small #slides_bottom, .small #slides_top, .small #map { height:  700px; } }
@media only screen and (min-width: 1800px) { #header_large.small, .small #header_slides, .small .header_slide, .small #slides_bottom, .small #slides_top, .small #map { height:  750px; } }
@media only screen and (min-width: 1900px) { #header_large.small, .small #header_slides, .small .header_slide, .small #slides_bottom, .small #slides_top, .small #map { height:  800px; } }
@media only screen and (min-width: 2000px) { #header_large.small, .small #header_slides, .small .header_slide, .small #slides_bottom, .small #slides_top, .small #map { height:  850px; } }
@media only screen and (min-width: 2100px) { #header_large.small, .small #header_slides, .small .header_slide, .small #slides_bottom, .small #slides_top, .small #map { height:  900px; } }
@media only screen and (min-width: 2200px) { #header_large.small, .small #header_slides, .small .header_slide, .small #slides_bottom, .small #slides_top, .small #map { height:  950px; } }
@media only screen and (min-width: 2300px) { #header_large.small, .small #header_slides, .small .header_slide, .small #slides_bottom, .small #slides_top, .small #map { height: 1000px; } }
@media only screen and (min-width: 2400px) { #header_large.small, .small #header_slides, .small .header_slide, .small #slides_bottom, .small #slides_top, .small #map { height: 1050px; } }
@media only screen and (min-width: 2500px) { #header_large.small, .small #header_slides, .small .header_slide, .small #slides_bottom, .small #slides_top, .small #map { height: 1100px; } }


/* Intro / text bar ----------------------------------------------------------------------------- */

.intro_container {
  width: 100%;
  min-width: 990px;
  position: relative;
  background-color: #fff;
}
.intro {
  width: 970px;
  text-align: center;
  padding: 60px 10px 40px 10px;
  margin: 0 auto 0 auto;
}
.first .intro {
  padding-top: 25px;
}

.intro h1,
.intro h2,
.text  h1,
.text  h2 {
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  margin: 0 0 24px 0;
}
.first .intro h2 {
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  margin: 0 0 24px 0;
}
.text h2 {
  font-size: 20px;
  line-height: 24px;
  margin: 44px 0 24px 0;
}
.text h2.first {
  margin-top: 0;
}
.text h2.below_gallery {
  margin-top: 14px;
}
.intro p,
.text  p {
  line-height: 24px;
  margin: 0 0 24px 0;
}
.intro p {
  font-size: 16px;
  line-height: 26px;
  padding: 0 100px 0 100px;
}
.intro p.last,
.text  p.last {
  margin-bottom: 0;
}
.intro table,
.text  table {
  line-height: 24px;
  margin: 0 0 24px 0;
}
.intro table th,
.text  table th {
  width: 80px;
  font-weight: bold;
  white-space: nowrap;
}
.intro table td,
.text  table td {
  padding: 0 44px 0 0;
}
.intro ul,
.text  ul,
.intro ol,
.text  ol {
  line-height: 24px;
  margin: 0 0 24px 0;
}
.intro ol,
.text  ol {
  margin-left: 22px;
}
.intro ul li,
.text  ul li {
  position: relative;
  padding: 0 0 0 24px;
}
.intro ul li:before,
.text  ul li:before {
  width: 6px;
  height: 6px;
  display: block;
  position: absolute;
  top: 9px;
  left: 1px;
  background-color: #154c32;
  font-size: 0;
  line-height: 0;
  color: #154c32;
  content: ' ';
  -webkit-border-radius: 6px;
  -moz-border-radius:    6px;
  border-radius:         6px;
}
.intro ul.checks li:before,
.text  ul.checks li:before {
  width: auto;
  height: auto;
  top: 0;
  left: 0;
  background-color: transparent;
  font-family: 'FontAwesome';
  font-size: 14px;
  line-height: 24px;
  content: '\f00c';
}
.intro ol a,
.text  ol a {
  font-weight: normal;
  color: #000;
}

.intro   a.button,
.text    a.button,
.formbar button.button {
  height: 40px;
  display: inline-block;
  position: relative;
  background-color: #154c32;
  font-weight: bold;
  line-height: 37px;
  text-decoration: none;
  color: #fff;
  padding: 0 34px 0 20px;
  margin: 10px 0 24px 0;
  -webkit-border-radius: 4px;
  -moz-border-radius:    4px;
  border-radius:         4px;
}
.intro   a.button:after,
.text    a.button:after,
.formbar button.button:after {
  position: absolute;
  top: 0;
  right: 20px;
  font-family: 'FontAwesome';
  font-weight: normal;
  line-height: 39px;
  content: '\f105';
}
.no-touch .intro   a.button:hover,
          .intro   a.button:active,
.no-touch .intro   a.button:focus,
.no-touch .text    a.button:hover,
          .text    a.button:active,
.no-touch .text    a.button:focus,
.no-touch .formbar button.button:hover,
          .formbar button.button:active,
.no-touch .formbar button.button:focus {
  background-color: #000;
}

.text #sitemap_container {
  width: 50%;
  padding: 0 0 14px 0;
  margin: 34px 0 0 0;
}
.text #sitemap_container ul {
  margin: 0;
}
.text #sitemap_container ul li {
  padding: 0 0 10px 0;
  margin: 0;
}
.text #sitemap_container ul li:before {
  display: none;
}
.text #sitemap_container ul a,
.text #sitemap_container ul span {
  display: block;
  position: relative;
  background-color: #dbdbdb;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  padding: 4px 14px 6px 28px;
}
.text #sitemap_container ul a:before,
.text #sitemap_container ul span:before {
  position: absolute;
  top: 4px;
  left: 14px;
  font-family: 'FontAwesome';
  font-weight: normal;
  content: '\f105';
}
.text #sitemap_container ul ul {
  margin: 0 0 0 28px;
}
.text #sitemap_container ul ul li {
  padding: 10px 0 0 0;
}
.text #sitemap_container ul ul a {
  font-weight: normal;
}
.no-touch .text #sitemap_container ul a:hover,
          .text #sitemap_container ul a:active,
.no-touch .text #sitemap_container ul a:focus {
  background-color: #154c32;
  color: #fff;
}

.text a.back_to_index {
  display: block;
  position: relative;
  font-weight: bold;
  line-height: 24px;
  text-decoration: none;
  color: #154c32;
  padding: 0 0 8px 22px;
  border-bottom: 1px solid #dbdbdb;
  margin: 0 0 24px 0;
}
.text a.back_to_index:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'FontAwesome';
  font-weight: normal;
  content: '\f106';
}
.no-touch .text a.back_to_index:hover,
          .text a.back_to_index:active,
.no-touch .text a.back_to_index:focus {
  color: #000;
}

.text .image_container {
  background-color: #e8e8e8;
  margin: 0 0 24px 0;
}
.text .image_container img {
  display: block;
}


/* Text bar ------------------------------------------------------------------------------------- */

.text_container {
  width: 100%;
  min-width: 990px;
  position: relative;
  background-color: #fff;
}
.text {
  width: 970px;
  padding: 60px 10px 40px 10px;
  margin: 0 auto 0 auto;
}
.first .text {
  padding-top: 0;
}

#text_column_1,
#text_column_2 {
  width: 450px;
}
#text_column_1 {
  float: left;
}
#text_column_2 {
  float: right;
}


/* Gallery -------------------------------------------------------------------------------------- */

.text .gallery {
  font-size: 0;
  line-height: 0;
  padding: 5px 0 0 0;
}
.text .gallery ul {
  margin: 0 0 0 -30px;
}
.text .gallery li {
  float: left;
  padding: 0 0 30px 30px;
}
.text .gallery li:before {
  display: none;
}
.text .gallery a {
  display: block;
}
.text .gallery img {
  display: block;
}


/* Video bar ------------------------------------------------------------------------------------ */

.videobar_container {
  width: 100%;
  min-width: 990px;
  background-color: #fff;
}
.videobar {
  width: 970px;
  text-align: center;
  padding: 0 10px 40px 10px;
  margin: 0 auto 0 auto;
}

.videobar h2 {
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  margin: 0 0 34px 0;
}
.video {
  margin: 0 0 24px 0;
}
.video iframe {
  display: block;
  margin: 0 auto 0 auto;
}


/* Form bar ------------------------------------------------------------------------------------- */

.formbar_container {
  width: 100%;
  min-width: 990px;
  background-color: #fff;
}
.formbar {
  width: 770px;
  padding: 0 10px 40px 10px;
  margin: 0 auto 0 auto;
}
.formbar h2 {
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  text-align: left;
  margin: 0 0 24px 0;
}

.formbar .form_container {
  padding: 10px 0 0 0;
  margin: 0 0 24px 0;
}
.formbar .inputrow_container {
  padding: 0 0 10px 0;
}
.formbar .inputrow_container label {
  width: 200px;
  display: block;
  float: left;
  line-height: 24px;
  padding: 8px 0 8px 0;
}
.formbar .inputrow_container label span.required {
  color: #f51716;
}
.formbar .input_container {
  width: 570px;
  float: right;
}

.formbar .input_container .form_message,
.formbar .input_container .info_box {
  display: none;
  position: relative;
  background-color: #feeaea;
  line-height: 24px;
  padding: 7px 10px 7px 44px;
  border: 1px solid #f51716;
  margin: 0 0 10px 0;
}
.formbar .input_container .form_message:before,
.formbar .input_container .info_box:before {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  background-color: #f51716;
  font-family: 'FontAwesome';
  font-weight: normal;
  line-height: 30px;
  text-align: center;
  color: #fff;
  content: '\f12a';
}

.formbar .input_container input.text,
.formbar .input_container textarea {
  width: 100%;
  height: 40px;
  background-color: #e8e8e8;
  color: #000;
  padding: 0 0 0 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing:    border-box;
  box-sizing:         border-box;
}
.formbar .input_container textarea {
  height: 160px;
  display: block;
  line-height: 24px;
  padding: 8px 10px 0 10px;
}
.formbar .input_container .select_container {
  width: 100%;
  height: 40px;
  position: relative;
}
.formbar .input_container select {
  width: 100%;
  height: 40px;
  background-color: #e8e8e8;
  color: #000;
  padding: 0 0 0 10px;
}
@-moz-document url-prefix() {
  .formbar .input_container select {
    padding-left: 6px;
  }
}
.formbar .input_container .select_container:after {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ccc;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  color: #000;
  content: '\f107';
  pointer-events: none;
}
.formbar .button_container {
  padding: 14px 0 0 0;
}
.formbar .button_container button.button {
  float: right;
  margin: 0;
}

.formbar .text_message {
  position: relative;
  background-color: #e3e9e6;
  line-height: 24px;
  padding: 7px 10px 7px 44px;
  border: 1px solid #154c32;
  margin: 0 0 24px 0;
}
.formbar .text_message:before {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  background-color: #154c32;
  font-family: 'FontAwesome';
  font-weight: normal;
  line-height: 30px;
  text-align: center;
  color: #fff;
  content: '\f00c';
}


/* Services ------------------------------------------------------------------------------------- */

.services_container {
  width: 100%;
  min-width: 990px;
  background-color: #dbdbdb;
  text-align: center;
}
.services {
  width: 970px;
  padding: 60px 10px 40px 10px;
  margin: 0 auto 0 auto;
}

.services h2 {
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  margin: 0 0 24px 0;
}


/* Icons ---------------------------------------------------------------------------------------- */

.icons {
  font-size: 0;
  line-height: 0;
  padding: 10px 0 0 0;
  margin: 0;
}
.icons ul {
  display: inline-block;
}
.icons li {
  width: 240px;
  display: inline-block;
  text-align: center;
  padding: 0 0 24px 0;
}
.icons.small li {
  width: 190px;
}
.icons a {
  display: block;
  font-weight: normal;
  text-decoration: none;
  color: #000;
}
.icons .icon_container {
  display: inline-block;
  background-color: #fff;
  padding: 4px;
  border: 1px solid #b1b1b1;
  -webkit-border-radius: 7px;
  -moz-border-radius:    7px;
  border-radius:         7px;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition:    all 0.2s ease 0s;
  -o-transition:      all 0.2s ease 0s;
  transition:         all 0.2s ease 0s;
}
.icons .icon {
  width: 110px;
  height: 110px;
  display: inline-block;
  background-color: #e2e2e2;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  border: 1px solid #b1b1b1;
  -webkit-border-radius: 4px;
  -moz-border-radius:    4px;
  border-radius:         4px;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition:    all 0.2s ease 0s;
  -o-transition:      all 0.2s ease 0s;
  transition:         all 0.2s ease 0s;
}
.icons.small .icon {
  width: 90px;
  height: 90px;
}
.icons span.label {
  display: block;
  font-family: 'Maven Pro', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  padding: 14px 0 0 0;
}
.icons .active span.label {
  font-weight: bold;
  color: #154c32;
}
          .icons .active a        .icon_container,
.no-touch .icons         a:hover  .icon_container,
          .icons         a:active .icon_container,
.no-touch .icons         a:focus  .icon_container {
  border-color: #000;
}
          .icons .active a        .icon,
.no-touch .icons         a:hover  .icon,
          .icons         a:active .icon,
.no-touch .icons         a:focus  .icon {
  border-color: #000;
}

/* PNG icons */
     .icons li.icon_productontwerp     .icon { background-image: url('../images/icons/productontwerp.png');         }
     .icons li.icon_gereedschapmakerij .icon { background-image: url('../images/icons/gereedschapmakerij.png');     }
     .icons li.icon_draadvormen        .icon { background-image: url('../images/icons/draadvormen.png');            }
     .icons li.icon_staven             .icon { background-image: url('../images/icons/staven.png');                 }
     .icons li.icon_puntlassen         .icon { background-image: url('../images/icons/puntlassen.png');             }
     .icons li.icon_lassen             .icon { background-image: url('../images/icons/lassen.png');                 }
     .icons li.icon_schroefdraad       .icon { background-image: url('../images/icons/schroefdraad.png');           }
     .icons li.icon_freesbewerkingen   .icon { background-image: url('../images/icons/freesbewerkingen.png');       }
     .icons li.icon_draaibewerkingen   .icon { background-image: url('../images/icons/draaibewerkingen.png');       }
     .icons li.icon_stempels           .icon { background-image: url('../images/icons/stempels.png');               }
     .icons li.icon_oppervlakte        .icon { background-image: url('../images/icons/oppervlakte.png');            }
     .icons li.icon_lasnaad            .icon { background-image: url('../images/icons/lasnaad.png');                }
     .icons li.icon_verpakken          .icon { background-image: url('../images/icons/verpakken.png');              }

/* tijdelijk */
     .icons li.icon_productontwerp     .icon { background-image: url('../images/icons/productontwerp@2x.png');      }
     .icons li.icon_gereedschapmakerij .icon { background-image: url('../images/icons/gereedschapmakerij@2x.png');  }
     .icons li.icon_draadvormen        .icon { background-image: url('../images/icons/draadvormen@2x.png');         }
     .icons li.icon_staven             .icon { background-image: url('../images/icons/staven@2x.png');              }
     .icons li.icon_puntlassen         .icon { background-image: url('../images/icons/puntlassen@2x.png');          }
     .icons li.icon_lassen             .icon { background-image: url('../images/icons/lassen@2x.png');              }
     .icons li.icon_schroefdraad       .icon { background-image: url('../images/icons/schroefdraad@2x.png');        }
     .icons li.icon_freesbewerkingen   .icon { background-image: url('../images/icons/freesbewerkingen@2x.png');    }
     .icons li.icon_draaibewerkingen   .icon { background-image: url('../images/icons/draaibewerkingen@2x.png');    }
     .icons li.icon_stempels           .icon { background-image: url('../images/icons/stempels@2x.png');            }
     .icons li.icon_oppervlakte        .icon { background-image: url('../images/icons/oppervlakte@2x.png');         }
     .icons li.icon_lasnaad            .icon { background-image: url('../images/icons/lasnaad@2x.png');             }
     .icons li.icon_verpakken          .icon { background-image: url('../images/icons/verpakken@2x.png');           }
/* einde tijdelijk */

.hd  .icons li.icon_productontwerp     .icon { background-image: url('../images/icons/productontwerp@2x.png');      }
.hd  .icons li.icon_gereedschapmakerij .icon { background-image: url('../images/icons/gereedschapmakerij@2x.png');  }
.hd  .icons li.icon_draadvormen        .icon { background-image: url('../images/icons/draadvormen@2x.png');         }
.hd  .icons li.icon_staven             .icon { background-image: url('../images/icons/staven@2x.png');              }
.hd  .icons li.icon_puntlassen         .icon { background-image: url('../images/icons/puntlassen@2x.png');          }
.hd  .icons li.icon_lassen             .icon { background-image: url('../images/icons/lassen@2x.png');              }
.hd  .icons li.icon_schroefdraad       .icon { background-image: url('../images/icons/schroefdraad@2x.png');        }
.hd  .icons li.icon_freesbewerkingen   .icon { background-image: url('../images/icons/freesbewerkingen@2x.png');    }
.hd  .icons li.icon_draaibewerkingen   .icon { background-image: url('../images/icons/draaibewerkingen@2x.png');    }
.hd  .icons li.icon_stempels           .icon { background-image: url('../images/icons/stempels@2x.png');            }
.hd  .icons li.icon_oppervlakte        .icon { background-image: url('../images/icons/oppervlakte@2x.png');         }
.hd  .icons li.icon_lasnaad            .icon { background-image: url('../images/icons/lasnaad@2x.png');             }
.hd  .icons li.icon_verpakken          .icon { background-image: url('../images/icons/verpakken@2x.png');           }

/* SVG icons */
     .icons li.icon_kennis             .icon { background-image: url('../images/icons/kennis.png');                 }
     .icons li.icon_kwaliteit          .icon { background-image: url('../images/icons/kwaliteit.png');              }
     .icons li.icon_betrouwbaarheid    .icon { background-image: url('../images/icons/betrouwbaarheid.png');        }
     .icons li.icon_flexibiliteit      .icon { background-image: url('../images/icons/flexibiliteit.png');          }

.svg .icons li.icon_kennis             .icon { background-image: url('../images/icons/kennis.svg');                 }
.svg .icons li.icon_kwaliteit          .icon { background-image: url('../images/icons/kwaliteit.svg');              }
.svg .icons li.icon_betrouwbaarheid    .icon { background-image: url('../images/icons/betrouwbaarheid.svg');        }
.svg .icons li.icon_flexibiliteit      .icon { background-image: url('../images/icons/flexibiliteit.svg');          }


/* Footer --------------------------------------------------------------------------------------- */

#footer_container {
  width: 100%;
  min-width: 990px;
}

/* Footer 1 */
#footer1_container {
  width: 100%;
  min-width: 990px;
  position: relative;
  background-color: #dbdbdb;
  background-image: url('../images/footer1_bottom.png');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 101.5%;
}
.svg #footer1_container {
  background-image: url('../images/footer1_bottom.svg');
}

#footer1 {
  width: 970px;
  text-align: center;
  padding: 60px 10px 80px 10px;
  margin: 0 auto 0 auto;
}
@media only screen and (min-width: 1100px) { #footer1 { padding-bottom:  75px; } }
@media only screen and (min-width: 1200px) { #footer1 { padding-bottom:  80px; } }
@media only screen and (min-width: 1300px) { #footer1 { padding-bottom:  85px; } }
@media only screen and (min-width: 1400px) { #footer1 { padding-bottom:  90px; } }
@media only screen and (min-width: 1500px) { #footer1 { padding-bottom:  95px; } }
@media only screen and (min-width: 1600px) { #footer1 { padding-bottom: 100px; } }
@media only screen and (min-width: 1700px) { #footer1 { padding-bottom: 105px; } }
@media only screen and (min-width: 1800px) { #footer1 { padding-bottom: 110px; } }
@media only screen and (min-width: 1900px) { #footer1 { padding-bottom: 115px; } }
@media only screen and (min-width: 2000px) { #footer1 { padding-bottom: 120px; } }
@media only screen and (min-width: 2100px) { #footer1 { padding-bottom: 125px; } }
@media only screen and (min-width: 2200px) { #footer1 { padding-bottom: 130px; } }
@media only screen and (min-width: 2300px) { #footer1 { padding-bottom: 135px; } }
@media only screen and (min-width: 2400px) { #footer1 { padding-bottom: 140px; } }
@media only screen and (min-width: 2500px) { #footer1 { padding-bottom: 145px; } }

#footer1 h2 {
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  margin: 0 0 24px 0;
}

/* Footer 2 */
#footer2_container {
  width: 100%;
  min-width: 990px;
  position: relative;
  background-color: #154c32;
  color: #fff;
  border-bottom: 1px solid #fff;
}
#footer2 {
  width: 970px;
  padding: 15px 10px 30px 10px;
  margin: 0 auto 0 auto;
}
@media only screen and (min-width: 1300px) { #footer2 { padding-top: 0; } }

.footer2_column {
  width: 230px;
  height: 162px;
  float: left;
  position: relative;
}
#footer2_column1 {
  margin: 0 17px 0 0;
}
#footer2_column2 {
  margin: 0 16px 0 0;
}
#footer2_column3 {
  margin-right: 0;
}
#footer2_column4 {
  float: right;
  margin-right: 0;
}

.footer2_column h2 {
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  margin: 0 0 18px 0;
}
.footer2_column h2 a {
  font-weight: bold;
  text-decoration: none;
}
.footer2_column address {
  line-height: 24px;
}

.footer2_column ul {
  position: absolute;
  bottom: 0;
  left: 0;
  line-height: 24px;
}
.footer2_column a {
  font-weight: normal;
  text-decoration: none;
  color: #fff;
}
.no-touch .footer2_column a:hover,
          .footer2_column a:active,
.no-touch .footer2_column a:focus {
  text-decoration: underline;
  color: #fff;
}

#footer2_column3 a {
  width: 150px;
  height: 30px;
  display: block;
  position: absolute;
  bottom: 2px;
  left: 0;
  background-image: url('../images/logo_metaalunie.png');
  background-repeat: no-repeat;
  background-position: center center;
  font-weight: normal;
}
.svg #footer2_column3 a {
  background-image: url('../images/logo_metaalunie.svg');
}
#footer2_column3 a span {
  display: none;
}
.no-touch #footer2_column3 a:hover,
          #footer2_column3 a:active,
.no-touch #footer2_column3 a:focus {
  background-image: url('../images/logo_metaalunie_over.png');
}
.svg.no-touch #footer2_column3 a:hover,
.svg          #footer2_column3 a:active,
.svg.no-touch #footer2_column3 a:focus {
  background-image: url('../images/logo_metaalunie_over.svg');
}

.footer2_column ul.telmail a {
  display: block;
  position: relative;
  padding: 0 0 0 22px;
}
.footer2_column ul.telmail a:before {
  width: 15px;
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'FontAwesome';
  font-weight: normal;
  text-align: center;
}
.footer2_column ul.telmail li.tel  a:before {
  content: '\f095';
}
.footer2_column ul.telmail li.mail a:before {
  content: '\f003';
}

/* Footer 3 */
#footer3_container {
  width: 100%;
  min-width: 990px;
  height: 42px;
  background-color: #154c32;
  color: #fff;
}
#footer3 {
  width: 970px;
  position: relative;
  padding: 0 10px 0 10px;
  margin: 0 auto 0 auto;
}

#servicelinks {
  position: absolute;
  top: 0;
  left: 10px;
  padding: 8px 0 0 0;
}
#servicelinks ul {
  line-height: 24px;
}
#servicelinks li {
  float: left;
  position: relative;
  padding: 0 14px 0 0;
  margin-right: 10px;
}
#servicelinks li:after {
  width: 4px;
  height: 4px;
  display: block;
  position: absolute;
  top: 11px;
  right: 0;
  background-color: #fff;
  font-size: 0;
  line-height: 0;
  content: ' ';
  -webkit-border-radius: 4px;
  -moz-border-radius:    4px;
  border-radius:         4px;
}
#servicelinks li.last {
  padding-right: 0;
  margin-right: 0;
}
#servicelinks li.last:after {
  display: none;
}
#servicelinks a {
  font-weight: normal;
  text-decoration: none;
  color: #fff;
}
.no-touch #servicelinks a:hover,
          #servicelinks a:active,
.no-touch #servicelinks a:focus {
  text-decoration: underline;
}

#credits {
  width: 230px;
  position: absolute;
  top: 0;
  right: 10px;
  line-height: 24px;
  padding: 8px 0 0 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing:    border-box;
  box-sizing:         border-box;
}
#credits span {
  float: left;
  display: block;
  margin: 0 8px 0 0;
}
#credits a {
  width: 80px;
  height: 24px;
  display: block;
  float: left;
  background-image: url('../images/logo_whirlwind.png');
  background-repeat: no-repeat;
  background-position: center center;
  font-weight: normal;
  text-decoration: none;
}
.svg #credits a {
  background-image: url('../images/logo_whirlwind.svg');
}
#credits a span {
  display: none;
  float: none;
}
.no-touch #credits a:hover,
          #credits a:active,
.no-touch #credits a:focus {
  background-image: url('../images/logo_whirlwind_over.png');
}
.svg.no-touch #credits a:hover,
.svg          #credits a:active,
.svg.no-touch #credits a:focus {
  background-image: url('../images/logo_whirlwind_over.svg');
}


/* Menu overlay --------------------------------------------------------------------------------- */

#menu_overlay_container {
  display: none;
}


/* Clearing <div> ------------------------------------------------------------------------------- */

.clear {
  width: 0;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
}