html,
body {
  width: 100%;
  height: 100%;
}
html {
  overflow-y: scroll;
  overflow-x: auto;
  -webkit-text-size-adjust: 100%;
}
body {
  background-color: #fff;
  font-family: 'Nexa Book', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 15px;
  text-align: left;
  color: #000;
  display: flex;
  flex-direction: column;
}


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

header, footer, nav {
  display: block;
}


/* Fonts --------------------------------------------------------------------------------------- */

@font-face {
  font-family: 'Nexa Book';
  src: url('https://cdn.groenbezorgen.nl/shared/fonts/Nexa-Book.woff2') format('woff2'),
       url('https://cdn.groenbezorgen.nl/shared/fonts/Nexa-Book.woff')  format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nexa Bold';
  src: url('https://cdn.groenbezorgen.nl/shared/fonts/NexaBold.woff2') format('woff2'),
       url('https://cdn.groenbezorgen.nl/shared/fonts/NexaBold.woff')  format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


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

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

a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
  transition: background-color 0.2s ease 0s, color 0.2s ease 0s, opacity 0.2s ease 0s, border-color 0.2s ease 0s;
}

h1, h2, h3, h4, h5 {
  font-family: 'Nexa Bold', 'Nexa Book', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 15px;
  color: #2dab66;
}

strong {
  font-family: 'Nexa Bold', 'Nexa Book', Arial, Helvetica, sans-serif;
  font-weight: normal;
}

ul {
  list-style-type: none;
}

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

address {
  font-style: normal;
}

label {
  cursor: pointer;
}
input.input_text,
select,
textarea,
button {
  background-color: #fff;
  font-family: 'Nexa Book', Arial, Helvetica, sans-serif;
  font-size: 16px;
  text-align: left;
  color: #000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
select,
button {
  cursor: pointer;
}
textarea {
  resize: none;
}
button {
  transition: background-color 0.2s ease 0s;
}


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

#page_container {
  width: 100%;
  min-width: 990px;
  flex: 1 0 auto;
}

@media only screen and (max-width: 1005px) {
  
  #page_container {
    min-width: 0;
  }
  
}


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

#header_container {
  width: 100%;
  min-width: 990px;
  position: relative;
  z-index: 200;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 1005px) {
  
  #header_container {
    min-width: 0;
    box-shadow: none;
  }
  
}


/* Header 1 ------------------------------------------------------------------------------------ */

#header1_container {
  width: 100%;
  min-width: 990px;
  background-color: #000;
  color: #fff;
}
#header1 {
  width: 960px;
  height: 30px;
  position: relative;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
}

/* Top links */
#top_links {
  position: absolute;
  top: 5px;
  right: 15px;
}
#top_links li {
  float: left;
  padding: 0 28px 0 0;
}
#top_links li.last {
  padding-right: 0;
}
#top_links a,
#top_links span {
  display: block;
  font-size: 14px;
  line-height: 20px;
  text-transform: lowercase;
  color: #fff;
}
.no-touch #top_links a:hover,
          #top_links a:active,
.no-touch #top_links a:focus,
          #top_links span {
  color: #2dab66;
}

@media only screen and (max-width: 1005px) {
  
  #header1_container {
    min-width: 0;
  }
  #header1 {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
  }
  
  #top_links {
    position: relative;
    top: auto;
    right: auto;
    font-size: 0;
    line-height: 0;
    text-align: center;
  }
  #top_links ul {
    display: inline-block;
  }
  #top_links li {
    float: none;
    display: inline-block;
  }
  #top_links a,
  #top_links span {
    line-height: 40px;
  }
  
}


/* Header 2 ------------------------------------------------------------------------------------ */

#header2_container {
  width: 100%;
  min-width: 990px;
  background-color: #2dab66;
  color: #fff;
}
#header2 {
  width: 960px;
  height: 120px;
  position: relative;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
}

/* Logo */
.logo {
  width: 185px;
  height: 30px;
  position: absolute;
  top: 45px;
  left: 15px;
  background-image: url('../images/logo_groenbezorgen.svg');
  background-repeat: no-repeat;
  background-position: center center;
}
.logo a {
  width: 185px;
  height: 30px;
  display: block;
  color: #fff;
}
.logo span {
  display: none;
}

/* Menu mobile */
a#menu_mobile {
  display: none;
  position: relative;
  background-color: #000;
  font-family: 'Nexa Bold', 'Nexa Book', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 19px;
  line-height: 50px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 47px 0 47px;
  box-sizing: border-box;
}
a#menu_mobile:before,
a#menu_mobile:after {
  position: absolute;
  top: 0;
  font-family: 'FontAwesome';
  font-weight: normal;
}
a#menu_mobile:before {
  width: 17px;
  top: -1px;
  left: 15px;
  content: '\f0c9';
  text-align: center;
}
a#menu_mobile:after {
  right: 15px;
  font-size: 22px;
  content: '\f107';
}
.no-touch a#menu_mobile:hover,
          a#menu_mobile:active,
.no-touch a#menu_mobile:focus {
  background-color: #fff;
  color: #000;
}

/* Menu */
.menu {
  position: absolute;
  top: 45px;
  right: 15px;
}
.menu li {
  float: left;
  padding: 0 28px 0 0;
}
.menu li.last {
  padding-right: 0;
}
.menu a,
.menu span {
  display: block;
  position: relative;
  font-family: 'Nexa Bold', 'Nexa Book', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
  text-transform: lowercase;
  color: #fff;
}
.no-touch .menu a:hover,
          .menu a:active,
.no-touch .menu a:focus,
          .menu span {
  opacity: 0.6;
}

@media only screen and (max-width: 1005px) {
  
  #header2_container {
    min-width: 0;
  }
  #header2 {
    width: 100%;
    height: auto;
    padding: 30px 0 0 0;
    margin: 0;
  }
  
  .logo_container {
    padding: 0 0 30px 0;
  }
  .logo {
    position: static;
    top: auto;
    left: auto;
    margin: 0 auto 0 auto;
  }
  
  a#menu_mobile {
    display: block;
  }
  
  .menu {
    display: none;
    position: static;
    top: auto;
    right: auto;
    border-top: 1px solid #fff;
  }
  .menu li {
    float: none;
    padding: 0;
    border-bottom: 1px solid #fff;
  }
  .menu a,
  .menu span {
    font-size: 19px;
    line-height: 50px;
    padding: 0 47px 0 47px;
  }
  .menu a:before,
  .menu span:before {
    width: 17px;
    position: absolute;
    top: -1px;
    left: 15px;
    font-family: 'FontAwesome';
    font-weight: normal;
    text-align: center;
    content: '\f105';
  }
  .no-touch .menu a:hover,
            .menu a:active,
  .no-touch .menu a:focus,
            .menu span {
    background-color: rgba(255, 255, 255, 0.75);
    color: #2dab66;
    opacity: 1.0;
  }
  
}


/* Fixed bar ----------------------------------------------------------------------------------- */

#fixedbar_container {
  width: 100%;
  min-width: 990px;
  height: 64px;
  position: fixed;
  top: -64px;
  left: 0;
  z-index: 9999;
  background-color: #2dab66;
  transition: top 0.2s ease 0s;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}
#fixedbar_container.visible {
  top: 0;
}
#fixedbar {
  width: 960px;
  position: relative;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
}

/* Logo */
#fixedbar .logo {
  top: 17px;
}

/* Menu */
#fixedbar .menu {
  top: 17px;
}

@media only screen and (max-width: 1005px) {
  
  #fixedbar_container {
    display: none !important;
  }
  
}


/* Subheader ----------------------------------------------------------------------------------- */

#subheader_container {
  width: 100%;
  min-width: 990px;
  position: relative;
  z-index: 100;
  background-color: #f6faf6;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
#subheader_container picture {
  display: block;
}
#subheader_container img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  opacity: 1;
  margin: 0 auto 0 auto;
}

#subheader_circle {
  width: 100%;
  min-width: 990px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('https://cdn.groenbezorgen.nl/groenbezorgen.nl/images/subheader/circle.svg');
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
}

#subheader_text_container_1 {
  width: 100%;
  min-width: 990px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#subheader_text_container_2 {
  width: 960px;
  height: 100%;
  position: relative;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
}
#subheader_text {
  width: 435px;
  height: 175px;
  position: absolute;
  bottom: 64px;
  left: 15px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
#subheader_text p {
  color: #fff;
  font-family: 'Nexa Bold', 'Nexa Book', Arial, Helvetica, sans-serif;
  font-weight: normal;
  margin: 0;
}
#subheader_text .line1 {
  font-size: 27px;
  line-height: 30px;
}
#subheader_text .line2 {
  font-size: 63px;
  line-height: 63px;
  padding-top: 10px;
}

@media only screen and (min-width: 1501px) {
  
  #subheader_container {
    height: 664px;
    overflow: hidden;
  }
  #subheader_container picture,
  #subheader_container > img {
    height: 100%;
  }
  #subheader_container picture img,
  #subheader_container > img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
  }
  
}

@media only screen and (max-width: 1005px) {
  
  #subheader_container {
    min-width: 0;
  }
  #subheader_circle {
    min-width: 0;
  }
  #subheader_text_container_1 {
    display: none;
  }
  
}


/* USP's --------------------------------------------------------------------------------------- */

#usps_container {
  width: 100%;
  min-width: 990px;
  background-color: #f6faf6;
}
#usps {
  width: 960px;
  text-align: center;
  color: #2dab66;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
}

#usps ul {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  padding: 17px 0 17px 0;
}
#usps li {
  display: inline-block;
  position: relative;
  font-family: 'Nexa Bold', 'Nexa Book', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 19px;
  line-height: 30px;
  text-transform: lowercase;
  padding: 0 100px 0 42px;
}
#usps li.last {
  padding-right: 0;
}
#usps li:before {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
  line-height: 0;
  content: ' ';
}

#usps li#usp_duurzaam:before {
  background-image: url('https://cdn.groenbezorgen.nl/groenbezorgen.nl/images/usps/duurzaam.svg');
}
#usps li#usp_snel:before {
  background-image: url('https://cdn.groenbezorgen.nl/groenbezorgen.nl/images/usps/snel.svg');
}
#usps li#usp_persoonlijk:before {
  background-image: url('https://cdn.groenbezorgen.nl/groenbezorgen.nl/images/usps/persoonlijk.svg');
}
#usps li#usp_eerlijk:before {
  background-image: url('https://cdn.groenbezorgen.nl/groenbezorgen.nl/images/usps/eerlijk.svg');
}

@media only screen and (max-width: 1005px) {
  
  #usps_container {
    min-width: 0;
  }
  #usps {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  #usps li {
    padding: 30px 0 0 0;
    margin: 0 20px 0 0;
  }
  #usps li.last {
    margin-right: 0;
  }
  #usps li:before {
    width: 100%;
  }
  
}


/* Body ---------------------------------------------------------------------------------------- */

#body {
  
}


/* Button -------------------------------------------------------------------------------------- */

.button {
  display: inline-block;
  background-color: #2dab66;
  font-family: 'Nexa Bold', 'Nexa Book', Arial, Helvetica, sans-serif;
  font-weight: normal;
  line-height: 20px;
  text-transform: lowercase;
  color: #fff;
  padding: 5px 20px 5px 20px;
  border-radius: 30px;
}
.no-touch .button:hover,
          .button:active,
.no-touch .button:focus {
  background-color: #000;
}


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

#footer_container .footer_button {
  display: inline-block;
  font-family: 'Nexa Bold', 'Nexa Book', Arial, Helvetica, sans-serif;
  font-weight: normal;
  line-height: 20px;
  text-transform: lowercase;
  color: #fff;
  padding: 4px 20px 4px 20px;
  border: 1px solid #fff;
  border-radius: 30px;
}
.no-touch #footer_container .footer_button:hover,
          #footer_container .footer_button:active,
.no-touch #footer_container .footer_button:focus {
  background-color: #000;
  color: #fff;
  border-color: #000;
}


/* Subtitle ------------------------------------------------------------------------------------ */

.subtitle {
  text-transform: uppercase;
  line-height: 22px;
  color: #2dab66;
}


/* Text image ---------------------------------------------------------------------------------- */

.text_image_container {
  width: 100%;
  min-width: 990px;
  padding: 90px 0 70px 0;
}
.text_image_container.no_padding_top {
  padding-top: 0;
}
.text_image {
  width: 960px;
  display: table;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
}

.text,
.image {
  width: 450px;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}
.text_image_container.large .text {
  width: 360px;
}
.text_image_container.large .image {
  width: 540px;
}
.text {
  padding: 0 30px 0 0;
}
.image_text .text {
  padding: 0 0 0 30px;
}
.image {
  padding: 0 0 0 30px;
}
.image_text .image {
  padding: 0 30px 0 0;
}

/* Text */
.text h1,
.text h2 {
  font-size: 30px;
  line-height: 34px;
  margin: 0 0 30px 0;
}
.text h1.sub,
.text h2.sub {
  margin: 0 0 10px 0;
}
.text h3 {
  font-size: 18px;
  line-height: 22px;
  margin: 0 0 10px 0;
}
.text h3.sub {
  margin: 0 0 30px 0;
}
.text p {
  line-height: 22px;
  margin: 0 0 20px 0;
}
.text p em {
  font-style: italic;
  color: #2dab66;
}
.text p a {
  text-decoration: underline;
  color: #000;
}
.no-touch .text p a:hover,
          .text p a:active,
.no-touch .text p a:focus {
  color: #2dab66;
}
.text ul {
  line-height: 22px;
  margin: 0 0 15px 0;
}
.text ul li {
  position: relative;
  padding: 0 0 5px 30px;
}
.text ul li:before {
  width: 16px;
  height: 22px;
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  background-image: url('../images/bgli.svg');
  background-repeat: no-repeat;
  background-position: center center;
}
.text a.button {
  margin: 10px 0 20px 0;
}
.text table {
  line-height: 22px;
  margin: 0 0 20px 0;
}
.text table th,
.text table td {
  vertical-align: top;
}
.text table th {
  padding: 0 20px 0 0;
}

/* Image */
.image_mobile {
  display: none;
}

.image        .image_container,
.image_mobile .image_container {
  margin: 0 0 20px 0;
}
.image        .image_container a,
.image_mobile .image_container a {
  display: block;
}
.image        .image_container img,
.image_mobile .image_container img {
  display: block;
}

#videobar_container {
  width: 100%;
  min-width: 990px;
  padding: 0 0 80px 0;
  margin: 0;
}
#videobar {
  width: 960px;
  text-align: center;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
}

.image        .video_container,
.image_mobile .video_container,
#videobar     .video_container {
  position: relative;
  margin: 0 0 20px 0;
}
#videobar     .video_container {
  width: 450px;
  margin: 0 auto 0 auto;
}
.image        .video,
.image_mobile .video,
#videobar     .video {
  height: 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%;
}

.image        .video iframe,
.image_mobile .video iframe,
#videobar     .video iframe,
.image        .video video,
.image_mobile .video video,
#videobar     .video video {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.image        .video video,
.image_mobile .video video,
#videobar     .video video {
  object-fit: contain;
  object-position: center center;
  border-radius: 12px;
}

.image        a.video_overlay,
.image_mobile a.video_overlay,
#videobar     a.video_overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.image        a.video_overlay img,
.image_mobile a.video_overlay img,
#videobar     a.video_overlay img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
}
.image        a.video_overlay:before,
.image_mobile a.video_overlay:before,
#videobar     a.video_overlay:before {
  width: 70px;
  height: 70px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: rgba(45, 171, 102, 0.9);
  content: '';
  transform: translate(-50%, -50%);
  border-radius: 70px;
  box-sizing: border-box;
  transition: all 0.2s ease 0s;
  animation-name: pulse;
  animation-duration: 3000ms;
  transform-origin: 70% 70%;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.image        a.video_overlay:after,
.image_mobile a.video_overlay:after,
#videobar     a.video_overlay:after {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 35px;
  line-height: 1;
  color: #fff;
  content: '\f04b';
  transform: translate(-42%, -50%);
  animation-name: pulse-icon;
  animation-duration: 3000ms;
  transform-origin: 50% 50%;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.no-touch .image        a.video_overlay:hover:before,
          .image        a.video_overlay:active:before,
.no-touch .image        a.video_overlay:focus:before,
.no-touch .image_mobile a.video_overlay:hover:before,
          .image_mobile a.video_overlay:active:before,
.no-touch .image_mobile a.video_overlay:focus:before,
.no-touch #videobar     a.video_overlay:hover:before,
          #videobar     a.video_overlay:active:before,
.no-touch #videobar     a.video_overlay:focus:before {
  background-color: rgba(0, 0, 0, 0.8);
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1.0); }
 25% { transform: translate(-50%, -50%) scale(1.1); }
 50% { transform: translate(-50%, -50%) scale(1.0); }
 75% { transform: translate(-50%, -50%) scale(1.1); }
100% { transform: translate(-50%, -50%) scale(1.0); }
}

@keyframes pulse-icon {
  0% { transform: translate(-42%, -50%) scale(1.0); }
 25% { transform: translate(-42%, -50%) scale(1.1); }
 50% { transform: translate(-42%, -50%) scale(1.0); }
 75% { transform: translate(-42%, -50%) scale(1.1); }
100% { transform: translate(-42%, -50%) scale(1.0); }
}

@media only screen and (max-width: 1005px) {
  
  .text_image_container {
    min-width: 0;
    padding: 60px 0 40px 0;
  }
  .text_image {
    width: 100%;
    display: block;
    margin: 0;
    box-sizing: border-box;
  }
  
  .text,
  .image,
  .text_image_container.large .text {
    width: 100%;
    height: auto;
    display: block;
    padding: 0 !important;
  }
  .image {
    display: none;
  }
  .image_mobile {
    display: block;
    padding: 20px 0 0 0;
  }
  
  .text {
    margin: 0 0 20px 0;
  }
  .text h1 br,
  .text h2 br {
    display: none;
  }
  
  .image        .image_container img,
  .image_mobile .image_container img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  
  .image        a.video_overlay img,
  .image_mobile a.video_overlay img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }
  
  .video {
    height: 0;
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
  }
  .video iframe,
  .video video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .video video {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  #videobar_container {
    min-width: 0;
    padding: 0 15px 60px 15px;
    box-sizing: border-box;
  }
  #videobar {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  #videobar .video_container {
    width: 100%;
    margin: 0;
  }
  #videobar a.video_overlay img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }
  
}


/* Overview ------------------------------------------------------------------------------------ */

.overview_container {
  width: 100%;
  min-width: 990px;
  background-color: #f6faf6;
  padding: 90px 0 90px 0;
}
.overview {
  width: 960px;
  text-align: center;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
}

.overview h2 {
  font-size: 30px;
  line-height: 34px;
  text-align: center;
  padding: 0;
  margin: 0 0 40px 0;
}

.overview ul li {
  width: 450px;
  float: left;
  text-align: left;
  padding: 0 60px 40px 0;
}
.overview ul li.second {
  padding-right: 0;
}
.overview ul h3 {
  font-size: 22px;
  line-height: 26px;
  margin: 0 0 20px 0;
}
.overview ul p {
  line-height: 22px;
  margin: 0;
}

@media only screen and (max-width: 1005px) {
  
  .overview_container {
    min-width: 0;
    padding: 60px 0 60px 0;
  }
  .overview {
    width: 100%;
    padding: 0 15px 0 15px;
    margin: 0;
    box-sizing: border-box;
  }
  
  .overview ul li {
    width: 100%;
    float: none;
    padding: 0 0 40px 0;
  }
  
}


/* Intro --------------------------------------------------------------------------------------- */

.intro_container {
  width: 100%;
  min-width: 990px;
  padding: 90px 0 60px 0;
}
.intro_container.bgcolor {
  background-color: #f6faf6;
}
.intro_container.no_padding_top {
  padding-top: 0;
}
.intro {
  width: 960px;
  text-align: center;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
}

.intro .intro_text {
  width: 640px;
  margin: 0 auto 0 auto;
}
.intro .subtitle {
  margin: 0 0 15px 0;
}
.intro h1,
.intro h2 {
  font-size: 30px;
  line-height: 34px;
  padding: 0;
  margin: 0 0 30px 0;
}
.intro .intro_image {
  margin: 0 0 30px 0;
}
.intro .intro_image img {
  display: block;
  margin: 0 auto 0 auto;
}
.intro .intro_logo {
  margin: 0 0 30px 0;
}
.intro .intro_logo img {
  display: block;
  margin: 0 auto 0 auto;
}
.intro p {
  line-height: 22px;
  margin: 0 0 30px;
}
.intro p a {
  text-decoration: underline;
  color: #000;
}
.no-touch .intro p a:hover,
          .intro p a:active,
.no-touch .intro p a:focus {
  color: #2dab66
}
.intro .illustratie {
  margin: 0 0 30px 0;
}
.intro .illustratie img {
  display: block;
  margin: 0 auto 0 auto;
}
.intro a.button {
  margin: 0 0 30px 0;
}

.intro .intro_logos {
  width: 100%;
  font-size: 0;
  line-height: 0;
  text-align: center;
  padding: 20px 0 10px 0;
}
.intro a.intro_logo {
  width: 150px;
  height: 100px;
  display: inline-block;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  border: 1px solid #e1eee2;
  border-radius: 6px;
  margin: 0 5px 10px 5px;
}
.no-touch .intro a.intro_logo:hover,
          .intro a.intro_logo:active,
.no-touch .intro a.intro_logo:focus {
  border-color: #2dab66;
}

.intro #sitemap_container {
  text-align: left;
  padding: 10px 0 10px 0;
}
.intro #sitemap_container ul {
  line-height: 22px;
}
.intro #sitemap_container ul ul {
  margin: 0 0 0 32px;
}
.intro #sitemap_container li {
  padding: 0 0 10px 0;
}
.intro #sitemap_container ul ul li {
  padding: 10px 0 0 0;
}
.intro #sitemap_container ul a {
  display: block;
  background-color: #f6faf6;
  font-family: 'Nexa Bold', 'Nexa Book', Arial, Helvetica, sans-serif;
  font-weight: normal;
  color: #2dab66;
  padding: 3px 8px 3px 8px;
  border: 1px solid #2dab66;
  border-radius: 6px;
}
.intro #sitemap_container ul ul a {
  font-family: 'Nexa Book', Arial, Helvetica, sans-serif;
  color: #000;
}
.no-touch .intro #sitemap_container a:hover,
          .intro #sitemap_container a:active,
.no-touch .intro #sitemap_container a:focus {
  background-color: #2dab66;
  color: #fff;
}

.intro .buttons_big {
  width: 100%;
  font-size: 0;
  line-height: 0;
  padding: 0 0 10px 0;
}
.intro .buttons_big a.button_big {
  width: 300px;
  height: 100px;
  display: inline-block;
  background-color: #2dab66;
  background-image: url('../images/button_big.svg');
  background-repeat: no-repeat;
  background-position: top right;
  font-family: 'Nexa Bold', 'Nexa Book', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #fff;
  padding: 45px 0 0 0;
  border-radius: 22px;
  box-sizing: border-box;
  margin: 0 10px 20px 10px;
}
.intro .buttons_big a.button_big:after {
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 16px;
  content: '\f061';
  margin: 0 0 0 6px;
}
.no-touch .intro .buttons_big a.button_big:hover,
          .intro .buttons_big a.button_big:active,
.no-touch .intro .buttons_big a.button_big:focus {
  background-color: #000;
  color: #fff;
}

/* Responsive visibility for per-column (mobile) and combined (desktop) buttons */
.buttons_big.mobile-only { display: none; }
.buttons_big.desktop-only { display: flex; justify-content: center; gap: 20px; }

/* Ensure desktop combined buttons keep the original styling */
.intro .buttons_big.desktop-only a.button_big { margin: 0 10px; }

@media only screen and (max-width: 1005px) {
    /* On mobile: show the per-column buttons and hide the desktop combined buttons */
  .buttons_big.mobile-only { display: flex; justify-content: center; gap: 10px; margin: 10px 0 0 0; }
  .buttons_big.mobile-only a.button_big {
    display: inline-block;
    width: 100%;
    max-width: 360px;
    box-sizing: border-box;
    margin: 0 0 10px 0;
  }
  .buttons_big.desktop-only { display: none; }
  .intro_container {
    min-width: 0;
    padding: 60px 0 30px 0;
  }
  .intro {
    width: 100%;
    padding: 0 15px 0 15px;
    margin: 0;
    box-sizing: border-box;
  }
  .intro .intro_text {
    width: 100%;
    margin: 0;
  }
  
  .intro h1 br,
  .intro h2 br {
    display: none;
  }
  .intro .intro_image img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .intro .illustratie img {
    max-width: 100%;
    height: auto;
  }
  
}


/* List ---------------------------------------------------------------------------------------- */

#list_container {
  width: 100%;
  min-width: 990px;
  background-color: #f6faf6;
  padding: 90px 0 60px 0;
}
#list {
  width: 640px;
  text-align: center;
  padding: 0;
  margin: 0 auto 0 auto;
}

#list h2 {
  font-size: 30px;
  line-height: 34px;
  padding: 0;
  margin: 0 0 30px 0;
}
#list p {
  line-height: 22px;
  margin: 0 0 30px;
}
#list ul {
  line-height: 22px;
}
#list ul li {
  position: relative;
  padding: 50px 0 0 0;
  margin: 0 0 30px 0;
}
#list ul li:before {
  width: 100%;
  height: 26px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url('../images/bgli_list.svg');
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
  line-height: 0;
  content: ' ';
}
#list a.button {
  margin: 0 0 30px 0;
}

@media only screen and (max-width: 1005px) {
  
  #list_container {
    min-width: 0;
    padding: 60px 0 30px 0;
  }
  #list {
    width: 100%;
    padding: 0 15px 0 15px;
    margin: 0;
    box-sizing: border-box;
  }
  
}


/* Quote --------------------------------------------------------------------------------------- */

.quote_container {
  width: 100%;
  min-width: 990px;
  background-color: #f6faf6;
  padding: 90px 0 90px 0;
}
.quote_container.bgcolor {
  background-color: #fff;
}
.quote {
  width: 640px;
  text-align: center;
  padding: 0;
  margin: 0 auto 0 auto;
}

.quote .subtitle {
  margin: 0 0 15px 0;
}
.quote h2 {
  font-size: 30px;
  line-height: 34px;
  padding: 0;
  margin: 0 0 30px 0;
}
.quote blockquote {
  line-height: 22px;
  margin: 0 0 30px 0;
}
.quote .quote_image {
  width: 95px;
  height: 95px;
  background-color: #fff;
  overflow: hidden;
  border-radius: 95px;
  margin: 0 auto 15px auto;
}
.quote .quote_image img {
  display: block;
}
.quote p {
  line-height: 22px;
}

@media only screen and (max-width: 1005px) {
  
  .quote_container {
    min-width: 0;
    padding: 60px 0 60px 0;
  }
  .quote {
    width: 100%;
    padding: 0 15px 0 15px;
    margin: 0;
    box-sizing: border-box;
  }
  
}


/* 2 columns ----------------------------------------------------------------------------------- */

#columns_2_container {
  width: 100%;
  min-width: 990px;
  padding: 90px 0 70px 0;
}
#columns_2 {
  width: 960px;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
}

#column_1 {
  width: 590px;
  float: left;
}
#column_2 {
  width: 310px;
  float: right;
}

#columns_2_container.turn_around #column_1 {
  float: right;
}
#columns_2_container.turn_around #column_2 {
  float: left;
}

/* Column 1 */
#column_1 h1 {
  font-family: 'Nexa Bold', 'Nexa Book', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 30px;
  line-height: 34px;
  margin: 0 0 20px 0;
}
#column_1 h2 {
  font-family: 'Nexa Bold', 'Nexa Book', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 22px;
  line-height: 26px;
  margin: 30px 0 20px 0;
}
#column_1 p {
  line-height: 22px;
  margin: 0 0 20px 0;
}
#column_1 p a {
  font-family: 'Nexa Bold', 'Nexa Book', Arial, Helvetica, sans-serif;
  font-weight: normal;
}
.no-touch #column_1 p a:hover,
          #column_1 p a:active,
.no-touch #column_1 p a:focus {
  color: #2dab66;
}

/* Column 2 */
#column_2 h2 {
  font-size: 22px;
  line-height: 26px;
  text-transform: lowercase;
  margin: 30px 0 20px 0;
}
#column_2 h2.first {
  margin-top: 0;
}
#column_2 h3 {
  line-height: 22px;
  text-transform: lowercase;
  color: #000;
  margin: 0 0 5px 0;
}
#column_2 p {
  line-height: 22px;
  margin: 0 0 20px 0;
}
#column_2 address {
  line-height: 22px;
  margin: 0 0 20px 0;
}
#column_2 table {
  line-height: 22px;
  margin: 0 0 20px 0;
}
#column_2 table th {
  padding: 0 22px 0 0;
}
#column_2 table a {
  text-decoration: underline;
}
.no-touch #column_2 table a:hover,
          #column_2 table a:active,
.no-touch #column_2 table a:focus {
  color: #2dab66;
}

#column_2 #ruud {
  margin: 0;
}
#column_2 #ruud img {
  display: block;
  margin: 0 auto 0 auto;
}

#column_2 .emphasize {
  background-color: #2dab66;
  color: #fff;
  padding: 30px 30px 10px 30px;
  border-radius: 30px;
}
#column_2 .emphasize h2.first {
  text-transform: none;
  color: #fff;
}
#column_2 .emphasize ul {
  line-height: 22px;
  margin: 0 0 10px 0;
}
#column_2 .emphasize ul li {
  position: relative;
  padding: 0 0 10px 30px;
}
#column_2 .emphasize ul li:before {
  width: 16px;
  height: 22px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url('../images/bgli2.svg');
  background-repeat: no-repeat;
  background-position: top left;
  font-size: 0;
  line-height: 0;
  content: ' ';
}

@media only screen and (max-width: 1005px) {
  
  #columns_2_container {
    min-width: 0;
    padding: 60px 0 40px 0;
  }
  #columns_2 {
    width: 100%;
    padding: 0 15px 0 15px;
    margin: 0;
    box-sizing: border-box;
  }
  #column_1 {
    width: 100%;
    float: none;
    padding: 0 0 10px 0;
  }
  #column_2 {
    width: 100%;
    float: none;
  }
  
}


/* Messages ------------------------------------------------------------------------------------ */

.message {
  position: relative;
  line-height: 22px;
  padding: 4px 10px 2px 32px;
  border: 1px solid;
  border-radius: 6px;
}
.message:before {
  width: 22px;
  height: 22px;
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  font-family: 'FontAwesome';
  font-weight: normal;
  text-align: center;
  color: #fff;
  border-radius: 3px;
}

.message.error {
  background-color: rgba(221, 0, 0, 0.06);
  border-color: #d00;
}
.message.error:before {
  background-color: #d00;
  content: '\f12a';
}

.message.success {
  background-color: rgba(45, 171, 102, 0.06);
  border-color: #2dab66;
}
.message.success:before {
  background-color: #2dab66;
  content: '\f00c';
}


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

#container_account_aanmaken {
  display: none;
}
#container_klantcode_opvragen {
  display: none;
}
#container_bestellen {
  display: none;
}

.form_container {
  width: 590px;
  margin: 10px 0 30px 0;
}
.form_container form {
  width: 100%;
}
.form_container .field_container {
  width: 100%;
  padding: 0 0 10px 0;
}
.form_container label {
  width: 150px;
  float: left;
  display: block;
  line-height: 22px;
  padding: 4px 0 4px 0;
}
.form_container label span.required {
  font-family: 'Nexa Bold', 'Nexa Book', Arial, Helvetica, sans-serif;
  font-weight: normal;
  color: #2dab66;
}
.form_container .input_container {
  width: 440px;
  float: right;
  position: relative;
}
.form_container .input_container .message {
  margin: 0 0 10px 0;
}

.form_container #form_account_aanmaken   .input_container .message {
  display: none;
}
.form_container #form_klantcode_opvragen .input_container .message {
  display: none;
}
.form_container #form_bestellen          .input_container .message {
  display: none;
}

.form_container .input_container input.input_text,
.form_container .input_container select,
.form_container .input_container textarea {
  width: 100%;
  height: 30px;
  display: block;
  background-color: #f6faf6;
  line-height: 22px;
  color: #000;
  padding: 0 8px 0 8px;
  border: 1px solid #2dab66;
  border-radius: 6px;
  box-sizing: border-box;
}
.form_container .input_container input.input_text.small {
  width: 80%;
  width: calc(100% - 70px);
}
.form_container .input_container input.input_text.disabled {
  background-color: #fff !important;
  color: #aaa !important;
  border-color: #aaa !important;
}
@-moz-document url-prefix() {
  .form_container .input_container select {
    padding-left: 4px;
  }
}
.form_container .input_container textarea {
  height: 150px;
  padding-top: 3px;
}
.form_container .select_container {
  position: relative;
}
.form_container .select_container:after {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #2dab66;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 15px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  content: '\f107';
  pointer-events: none;
  border-top-right-radius:    6px;
  border-bottom-right-radius: 6px;
}
.form_container .field_container .button {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
}
.form_container .button_container {
  text-align: right;
  padding: 10px 0 0 0;
}
.form_container .button_container button {
  margin: 0 !important;
}
.form_container .input_container input.input_text:focus,
.form_container .input_container select:focus,
.form_container .input_container textarea:focus {
  background-color: #ffd;
  border-color: #000;
}

.form_container .radios_container {
  width: 100%;
}
.form_container .radio_container {
  position: relative;
  line-height: 22px;
  cursor: pointer;
  padding: 9px 0 9px 50px;
  margin: 0;
}
.form_container .radio_container:before {
  width: 35px;
  height: 35px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(53, 170, 104, 0.25);
  font-size: 0;
  line-height: 0;
  content: ' ';
  border-radius: 40px;
}
.form_container .radio_container.checked:after {
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #000;
  font-size: 0;
  line-height: 0;
  content: ' ';
  border-radius: 20px;
}
.form_container .radio_info {
  padding: 0 0 0 50px;
  margin: 0 0 5px 0;
}

.form_container .field_header {
  position: relative;
  font-family: 'Nexa Bold', 'Nexa Book', Arial, Helvetica, sans-serif;
  font-weight: normal;
  line-height: 30px;
  color: #2dab66;
  margin: 0 0 10px 0;
}
.form_container .field_header a.remove_fields {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #2dab66;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 15px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  border-radius: 6px;
}
.form_container .field_header a.remove_fields:before {
  content: '\f00d';
}
.form_container .field_header a.remove_fields span {
  display: none;
}
.no-touch .form_container .field_header a.remove_fields:hover,
          .form_container .field_header a.remove_fields:active,
.no-touch .form_container .field_header a.remove_fields:focus {
  background-color: #000;
}

#portbetaald_container {
  position: relative;
}
#logo_portbetaald {
  width: 104px;
  height: 50px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url('../images/logo_portbetaald.svg');
  background-repeat: no-repeat;
  background-position: center center;
}
#logo_portbetaald span {
  display: none;
}

@media only screen and (max-width: 1005px) {
  
  .form_container {
    width: 100%;
  }
  .form_container label {
    width: 100%;
    float: none;
    padding: 0;
    margin: 0 0 10px 0;
  }
  .form_container .input_container {
    width: 100%;
    float: none;
  }
  
}


/* Media / vacatures --------------------------------------------------------------------------- */

.media_container,
.vacatures_container {
  width: 100%;
  min-width: 990px;
  padding: 0 0 58px 0;
}
.media,
.vacatures {
  width: 960px;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
}

.media_item,
.vacature_item {
  width: 296px;
  float: left;
  background-color: #f6faf6;
  overflow: hidden;
  border: 1px solid #2dab66;
  border-radius: 6px;
  margin: 0 32px 32px 0;
}
.media_item.third,
.vacature_item.third {
  margin-right: 0;
}
.media_logo {
  height: 65px;
  background-repeat: no-repeat;
  background-position: center center;
}
.vacature_title h2 a {
  display: block;
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  color: #2dab66;
  padding: 20px;
}
.no-touch .vacature_title h2 a:hover,
          .vacature_title h2 a:active,
.no-touch .vacature_title h2 a:focus {
  color: #000;
}
.vacature_title h3 a {
  display: block;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  color: #000;
  padding: 0 20px 20px 20px;
}
.no-touch .vacature_title h3 a:hover,
          .vacature_title h3 a:active,
.no-touch .vacature_title h3 a:focus {
  color: #2dab66;
}
.media_image,
.vacature_image {
  margin: 0 0 20px 0;
}
.media_image    a,
.vacature_image a {
  display: block;
}
.media_image    img,
.vacature_image img {
  display: block;
  margin: 0 auto 0 auto;
  object-fit: cover;
}
.media_text,
.vacature_text {
  height: 490px;
  position: relative;
  padding: 0 20px 0 20px;
}
.vacature_text {
  height: 285px;
}
.media_text    h2,
.vacature_text h2 {
  font-size: 22px;
  line-height: 26px;
  color: #2dab66;
  margin: 0 0 10px 0;
}
.media_text    h2 a,
.vacature_text h2 a {
  display: block;
  color: #2dab66;
}
.no-touch .media_text    h2 a:hover,
          .media_text    h2 a:active,
.no-touch .media_text    h2 a:focus,
.no-touch .vacature_text h2 a:hover,
          .vacature_text h2 a:active,
.no-touch .vacature_text h2 a:focus {
  color: #000;
}
.media_text time {
  display: block;
  font-family: 'Nexa Bold', 'Nexa Book', Arial, Helvetica, sans-serif;
  font-weight: normal;
  line-height: 22px;
  margin: 0 0 20px 0;
}
.media_text    p,
.vacature_text p {
  line-height: 22px;
  margin: 0 0 20px 0;
}
.media_text    a.button,
.vacature_text a.button {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

@media only screen and (max-width: 1005px) {
  
  .media_container,
  .vacatures_container {
    min-width: 0;
    padding: 0 0 28px 0;
  }
  .media,
  .vacatures {
    width: 100%;
    padding: 0 15px 0 15px;
    margin: 0;
    box-sizing: border-box;
  }
  
  .media_item,
  .vacature_item {
    width: auto;
    float: none;
    margin: 0 0 32px 0;
    box-sizing: border-box;
  }
  
  .media_image   img,
  .vacature_item img {
    max-width: 100%;
    height: auto;
  }
  
  .media_text,
  .vacature_text {
    height: auto;
  }
  .media_text    a.button,
  .vacature_text a.button {
    position: static;
    margin: 0 0 20px 0;
  }
  
}


/* Team ---------------------------------------------------------------------------------------- */

.team_container {
  width: 100%;
  min-width: 990px;
  background-color: #f6faf6;
  padding: 90px 0 70px 0;
}
.team {
  width: 960px;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
}

.team .subtitle {
  text-align: center;
  margin: 0 0 15px 0;
}
.team h2 {
  font-size: 30px;
  line-height: 34px;
  text-align: center;
  margin: 0 0 30px 0;
}

.team_slideshow_container {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0 0 20px 0;
}

a.slideshow_button {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 80px;
  background-color: #2dab66;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 25px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  border-radius: 30px;
  box-sizing: border-box;
}
a.slideshow_button.slideshow_vorige {
  left: 0;
  padding: 0 2px 0 0;
}
a.slideshow_button.slideshow_vorige:before {
  content: '\f104';
}
a.slideshow_button.slideshow_volgende {
  right: 0;
  padding: 0 0 0 2px;
}
a.slideshow_button.slideshow_volgende:before {
  content: '\f105';
}
a.slideshow_button span {
  display: none;
}
.no-touch a.slideshow_button:hover,
          a.slideshow_button:active,
.no-touch a.slideshow_button:focus {
  background-color: #000;
}
a.slideshow_button.disabled {
  opacity: 0.25;
  cursor: auto;
}
.no-touch a.slideshow_button.disabled:hover,
          a.slideshow_button.disabled:active,
.no-touch a.slideshow_button.disabled:focus {
  background-color: #2dab66;
}

.team_slideshow {
  font-size: 0;
  line-height: 0;
  text-align: center;
  transition: margin 0.6s ease 0s;
}
.team_groep {
  width: 960px;
  display: inline-block;
}
.teamlid {
  width: 190px;
  display: inline-block;
  margin: 0 15px 0 15px;
}
.teamlid_foto {
  width: 190px;
  height: 190px;
  display: block;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 190px;
  margin: 0 0 15px 0;
}
.teamlid_naam {
  font-size: 22px;
  line-height: 26px;
  color: #2dab66;
}

@media only screen and (max-width: 1005px) {
  
  .team_container {
    min-width: 0;
    padding: 60px 0 40px 0;
  }
  .team {
    width: 100%;
    padding: 0 15px 0 15px;
    margin: 0;
    box-sizing: border-box;
  }
  
  .team_slideshow_container {
    overflow: auto;
    margin: 0;
  }
  a.slideshow_button {
    display: none;
  }
  .team_slideshow {
    width: 100% !important;
    margin: 0 !important;
  }
  .team_groep {
    width: 100%;
    max-width: 440px;
    display: block;
    margin: 0 auto 0 auto;
  }
  .teamlid_naam {
    margin: 0 0 20px 0;
  }
  
}


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

.textbar_container {
  width: 100%;
  min-width: 990px;
  padding: 90px 0 70px 0;
}
.textbar_container.no_padding_top {
  padding-top: 0;
}
.textbar_container.extra_padding {
  padding-left: 10% !important;
  padding-right: 10% !important;
  width: auto !important;
}
.textbar {
  width: 960px;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
}

.textbar h1 {
  font-size: 30px;
  line-height: 34px;
  padding: 0;
  margin: 0 0 30px 0;
}
.textbar h2 {
  font-size: 22px;
  line-height: 26px;
  margin: 30px 0 20px 0;
}
.textbar h2.first {
  margin-top: 0;
}
.textbar h3 {
  font-size: 18px;
  line-height: 22px;
  padding: 0 0 6px 0;
  border-bottom: 1px solid #2dab66;
  margin: 30px 0 20px 0;
}

.textbar .button {
  margin: 0 0 20px 0;
}

.textbar a.back_to_index {
  display: block;
  position: relative;
  line-height: 22px;
  padding: 0 0 6px 30px;
  border-bottom: 1px solid #e1eee2;
  margin: 0 0 20px 0;
}
.textbar a.back_to_index:before {
  width: 16px;
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'FontAwesome';
  font-weight: normal;
  text-align: center;
  color: #2dab66;
  content: '\f106';
}
.no-touch .textbar a.back_to_index:hover,
          .textbar a.back_to_index:active,
.no-touch .textbar a.back_to_index:focus {
  color: #2dab66;
}

.textbar p,
.textbar address {
  line-height: 22px;
  margin: 0 0 20px 0;
}

.textbar ul {
  line-height: 22px;
  margin: 0 0 15px 0;
}
.textbar ol {
  line-height: 22px;
  margin: 0 0 15px 26px;
}
.textbar ul li {
  position: relative;
  padding: 0 0 5px 30px;
}
.textbar ol li {
  padding: 0 0 5px 0;
}
.bgli div div ul li:before,
.textbar ul li:before {
  width: 16px;
  height: 22px;
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  background-image: url('../images/bgli.svg');
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
  line-height: 0;
  content: ' ';
}
.textbar ol li ul {
  margin: 0;
}
.textbar ol li ul li {
  padding: 0 0 0 30px;
}
.textbar ul li a {
  text-decoration: underline;
}
.no-touch .textbar ul li a:hover,
          .textbar ul li a:active,
.no-touch .textbar ul li a:focus {
  color: #2dab66;
}

.textbar ul li table {
  margin: 5px 0 0 0;
}
.textbar ul li table th {
  text-align: left;
  padding: 0 20px 0 0;
}
.textbar ul li table td {
  text-align: right;
}

.textbar p       a,
.textbar address a {
  text-decoration: underline;
}
.textbar p       a:hover,
.textbar p       a:active,
.textbar p       a:focus,
.textbar address a:hover,
.textbar address a:active,
.textbar address a:focus {
  color: #2dab66;
}

.no-touch .textbar ol.index a:hover,
          .textbar ol.index a:active,
.no-touch .textbar ol.index a:focus {
  color: #2dab66;
}

.textbar #logos_container {
  width: 100%;
  margin: 0 0 10px 0;
}
.textbar #logos_container a#logo_wit,
.textbar #logos_container a#logo_groen {
  width: 300px;
  height: 100px;
  float: left;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  border: 1px solid #000;
}
.textbar #logos_container a#logo_wit {
  background-color: #fff;
  background-image: url('../images/logo_groenbezorgen_wit.svg');
  margin: 0 10px 10px 0;
}
.textbar #logos_container a#logo_groen {
  background-color: #2dab66;
  background-image: url('../images/logo_groenbezorgen_groen.svg');
  margin: 0 0 10px 0;
}

.textbar table.info {
  width: 100%;
  margin: 30px 0 30px 0;
}
.textbar table.info th,
.textbar table.info td {
  line-height: 22px;
  padding: 6px 10px 6px 10px;
  vertical-align: middle;
  border: 1px solid #2dab66;
}
.textbar table.info thead th {
  background-color: #2dab66;
  font-family: 'Nexa Bold', 'Nexa Book', Arial, Helvetica, sans-serif;
  font-weight: normal;
  text-align: left;
  color: #fff;
  vertical-align: top;
}
.textbar table.info.groot thead th {
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.textbar table.info tbody tr:nth-child(even) th,
.textbar table.info tbody tr:nth-child(even) td {
  background-color: #f6faf6;
}
.textbar table.info tbody td.colspan {
  text-align: center;
}

@media only screen and (max-width: 1005px) {
  
  .textbar_container {
    min-width: 0;
    padding: 60px 0 40px 0;
  }
  .textbar {
    width: 100%;
    padding: 0 15px 0 15px;
    margin: 0;
    box-sizing: border-box;
  }
  
  .textbar table.info.groot,
  .textbar table.info.groot tr,
  .textbar table.info.groot th,
  .textbar table.info.groot td {
    width: 100%;
    display: block;
    border-bottom: 0;
    box-sizing: border-box;
  }
  .textbar table.info.groot {
    border-bottom: 1px solid #2dab66;
  }
  .textbar table.info.groot thead {
    display: none;
  }
  .textbar table.info.groot tbody {
    width: 100%;
    display: block;
  }
  .textbar table.info.groot tbody th {
    font-family: 'Nexa Bold', 'Nexa Book', Arial, Helvetica, sans-serif;
    font-weight: normal;
    color: #2dab66;
  }
  .textbar table.info.groot tbody td.klein:before,
  .textbar table.info.groot tbody td.groot:before,
  .textbar table.info.groot tbody td.bijzonder:before,
  .textbar table.info.groot tbody td.gemengd:before {
    font-family: 'Nexa Bold', 'Nexa Book', Arial, Helvetica, sans-serif;
    font-weight: normal;
  }
  .textbar table.info.groot tbody td.klein:before     { content: 'Klein: ';     }
  .textbar table.info.groot tbody td.groot:before     { content: 'Groot: ';     }
  .textbar table.info.groot tbody td.bijzonder:before { content: 'Bijzonder: '; }
  .textbar table.info.groot tbody td.gemengd:before   { content: 'Gemengd: ';   }
  
  .textbar table.info.groot tbody td.colspan {
    text-align: left;
  }
  
}


/* Kaart + lijst ------------------------------------------------------------------------------- */

#kaart_lijst_container {
  width: 100%;
  min-width: 990px;
  padding: 90px 0 70px 0;
}
#kaart_lijst_container.no_padding_top {
  padding-top: 0;
}
#kaart_lijst {
  width: 960px;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
}

/* Kaart */
#kaart {
  width: 300px;
  float: left;
}
#kaart img {
  display: block;
  margin: 0 0 20px 0;
}

/* Lijst */
#lijst {
  width: 600px;
  float: right;
}
#lijst h2 {
  font-size: 22px;
  line-height: 26px;
  margin: 0 0 20px 0;
}
#lijst ul {
  line-height: 22px;
  margin: 0 0 20px 0;
}
#lijst ul#lijst_links {
  float: left;
}
#lijst ul#lijst_rechts {
  float: right;
}
#lijst ul a {
  text-decoration: underline;
  color: #000;
}
.no-touch #lijst ul a:hover,
          #lijst ul a:active,
.no-touch #lijst ul a:focus {
  color: #2dab66;
}

@media only screen and (max-width: 1005px) {
  
  #kaart_lijst_container {
    min-width: 0;
    padding: 60px 0 40px 0;
  }
  #kaart_lijst {
    width: 100%;
    padding: 0 15px 0 15px;
    margin: 0;
    box-sizing: border-box;
  }
  
  #kaart {
    width: 100%;
    float: none;
  }
  #lijst {
    width: 100%;
    float: none;
    margin: 0 0 20px 0;
  }
  
  #kaart img {
    margin: 0 0 40px 0;
  }
  
  #lijst ul#lijst_links {
    float: none;
  }
  #lijst ul#lijst_rechts {
    float: none;
  }
  #lijst ul {
    margin: 0;
  }
  
}


/* Rit bestellen ------------------------------------------------------------------------------- */

.textbar #blokken_container {
  width: 100%;
}
.textbar #blokken_container .blok {
  width: 450px;
  position: relative;
  background-color: #f6faf6;
  padding: 20px;
  border: 1px solid #2dab66;
  border-radius: 6px;
  box-sizing: border-box;
  margin: 0 0 30px 0;
}
.textbar #blokken_container #blok1 {
  float: left;
}
.textbar #blokken_container #blok2 {
  float: right;
}
.textbar #blokken_container .blok h2 {
  padding: 0;
  margin: 0 0 20px 0;
}
.textbar #blokken_container p {
  line-height: 22px;
  margin: 0 0 20px 0;
}
.textbar #blokken_container .button {
  margin: 0;
}
.textbar #blokken_container #link_klantcode_vergeten {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

@media only screen and (max-width: 1005px) {
  
  .textbar #blokken_container .blok {
    width: 100%;
  }
  
}


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

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

#footer_container a {
  color: #fff;
}

@media only screen and (max-width: 1005px) {
  
  #footer_container {
    min-width: 0;
  }
  
}


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

#footer1_container {
  width: 100%;
  min-width: 990px;
  background-color: #2dab66;
  padding: 60px 0 60px 0;
}
#footer1 {
  width: 980px;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
}

/* Footer col */
.footer_col {
  float: left;
  margin: 0 15px 0 0;
}
#footer_col_1 {
  width: 225px;
}
#footer_col_2 {
  width: 395px;
}
#footer_col_3 {
  width: 330px;
  margin-right: 0;
}

/* Footer logo */
#footer_logo {
  width: 185px;
  height: 30px;
  background-image: url('../images/logo_groenbezorgen.svg');
  background-repeat: no-repeat;
  background-position: center center;
}
#footer_logo span {
  display: none;
}

/* Footer heading */
.footer_heading {
  font-family: 'Nexa Bold', 'Nexa Book', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 19px;
  line-height: 23px;
  text-transform: lowercase;
  margin: 0 0 20px 0;
}
.footer_heading.sub {
  margin-top: 10px;
}

/* Footer tabel */
#footer1 table {
  margin: 0 0 20px 0;
}
#footer1 table th,
#footer1 table td {
  line-height: 22px;
}
#footer1 table th {
  padding: 0 4px 0 0;
}
.no-touch #footer1 table a:hover,
          #footer1 table a:active,
.no-touch #footer1 table a:focus {
  color: #000;
}

/* Footer paragraph */
#footer1 p {
  line-height: 22px;
  text-transform: lowercase;
  margin: 0 0 20px 0;
}

/* Footer social media */
#footer1 #social_media {
  margin: 30px 0 0 0;
}
#footer1 #social_media li {
  float: left;
  padding: 0 10px 0 0;
}
#footer1 #social_media li.last {
  padding-right: 0;
}
#footer1 #social_media a {
  width: 40px;
  height: 40px;
  display: block;
  background-color: #fff;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  color: #2dab66;
  border-radius: 40px;
}
#footer1 #social_media #social_linkedin  a:before { content: '\f0e1'; }
#footer1 #social_media #social_facebook  a:before { content: '\f09a'; }
#footer1 #social_media #social_instagram a:before { content: '\f16d'; font-size: 22px; }

.no-touch #footer1 #social_media a:hover,
          #footer1 #social_media a:active,
.no-touch #footer1 #social_media a:focus {
  background-color: #000;
  color: #fff;
}
#footer1 #social_media span {
  display: none;
}

/* Footer adressen */
#footer1 #adressen li {
  float: left;
  line-height: 22px;
  padding: 0 20px 20px 0;
}
#footer1 #adressen li.last {
  padding-right: 0;
}

@media only screen and (max-width: 1005px) {
  
  #footer1_container {
    min-width: 0;
    padding: 40px 0 40px 0;
  }
  #footer1 {
    width: 100%;
    padding: 0 15px 0 15px;
    margin: 0;
    box-sizing: border-box;
  }
  
  .footer_col {
    width: 100% !important;
    float: none;
    margin: 0;
  }
  #footer_col_2 {
    margin: 30px 0;
  }
  
}


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

#footer2_container {
  width: 100%;
  min-width: 990px;
  background-color: #000;
}
#footer2 {
  width: 960px;
  height: 60px;
  position: relative;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
}

/* Footer links */
#footer_links {
  position: absolute;
  top: 20px;
  left: 15px;
}
#footer_links ul {
  font-size: 14px;
  line-height: 20px;
}
#footer_links li {
  float: left;
  position: relative;
  text-transform: lowercase;
  padding: 0 12px 0 0;
  margin: 0 8px 0 0;
}
#footer_links li:after {
  width: 4px;
  height: 4px;
  display: block;
  position: absolute;
  top: 7px;
  right: 0;
  background-color: #fff;
  font-size: 0;
  line-height: 0;
  content: ' ';
  border-radius: 4px;
}
#footer_links li.last {
  padding-right: 0;
  margin-right: 0;
}
#footer_links li.last:after {
  display: none;
}
#footer_links a {
  text-transform: lowercase;
}
.no-touch #footer_links a:hover,
          #footer_links a:active,
.no-touch #footer_links a:focus {
  color: #2dab66;
}

@media only screen and (max-width: 1005px) {
  
  #footer2_container {
    min-width: 0;
  }
  #footer2 {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 25px 15px 25px 15px;
    margin: 0;
    box-sizing: border-box;
  }
  
  #footer_links {
    position: static;
    font-size: 0;
    line-height: 0;
    text-align: center;
    margin: 0 0 15px 0;
    margin: 0;
  }
  #footer_links ul {
    display: inline-block;
    font-size: 0;
    line-height: 0;
  }
  #footer_links li {
    display: inline-block;
    float: none;
    font-size: 14px;
    line-height: 20px;
  }
  
  #credits {
    display: inline-block;
    position: relative;
    top: auto;
    right: auto;
  }
  
}


/* Popup --------------------------------------------------------------------------------------- */

#popup_container {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999999;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  justify-content: center;
  align-items: center;
}
#popup {
  width: 100%;
  max-width: 500px;
  position: relative;
  background-color: #fff;
  text-align: center;
  padding: 170px 25px 50px 25px;
  border-radius: 30px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

#popup_image {
  width: 100%;
  position: absolute;
  top: -100px;
  left: 0;
}
#popup_image img {
  display: block;
  border-bottom: 3px solid #2dab66;
  margin: 0 auto 0 auto;
}

#popup button#popup_close {
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #2dab66;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  border-radius: 40px;
}
#popup button#popup_close:before {
  font-family: 'FontAwesome';
  font-weight: normal;
  content: '\f00d';
}
#popup button#popup_close span {
  display: none;
}
.no-touch #popup button#popup_close:hover,
          #popup button#popup_close:active,
.no-touch #popup button#popup_close:focus {
  background-color: #000;
}

#popup p {
  font-family: 'Nexa Bold', 'Nexa Book', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 24px;
  line-height: 28px;
  margin: 0 0 28px 0;
}

#popup #popup_logo {
  width: 250px;
  height: 41px;
  background-image: url('../images/logo_groenbezorgen_groen2.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin: 0 auto 28px auto;
}
#popup #popup_logo span {
  display: none;
}

#popup a#popup_link {
  font-family: 'Nexa Bold', 'Nexa Book', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 24px;
  line-height: 28px;
  text-decoration: underline;
  color: #2dab66;
  margin: 0 0 28px 0;
}
.no-touch #popup a#popup_link:hover,
          #popup a#popup_link:active,
.no-touch #popup a#popup_link:focus {
  color: #000;
}


/* Logo's sectie ------------------------------------------------------------------------------ */

.logos-sectie {
  background: #ffffff;
  padding-top: 50px;
}

.logos-sectie .logos-grid {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.logos-sectie .logos-label {
  font-weight: 600;
  font-size: 1.1em;
  min-width: 140px;
  flex: 0 0 auto;
}

.logos-sectie .logos-items {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 32px;
  align-items: center;
  flex: 1 1 0;
}

.logos-sectie .logo-afbeelding {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.logos-sectie .logo-afbeelding img {
  max-height: 100px;
  max-width: 120px;
  width: auto;
  height: auto;
  display: block;
}

@media (max-width: 700px) {
  .logos-sectie .logos-grid {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
  }
  .logos-sectie .logos-label {
    width: 100%;
    min-width: 0;
    text-align: center;
    margin-bottom: 10px;
  }
  .logos-sectie .logos-items {
    grid-template-columns: repeat(2, auto);
    gap: 50px;
    width: 100%;
    justify-content: center;
  }
  .logos-sectie .logo-afbeelding:nth-child(n+3) {
    display: none !important;
  }
}


/* Google Reviews Grid ------------------------------------------------------------------------- */
.google-reviews-grid {
  width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0 15px;
}

.google-review-card {
  background: #fff;
  border: 1px solid #2dab66;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(45, 171, 102, 0.07);
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 320px;
  transition: box-shadow 0.2s;
}
.google-review-card:hover {
  box-shadow: 0 4px 24px rgba(45, 171, 102, 0.15);
}

.google-review-header {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  gap: 16px;
}

.google-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #2dab66;
  background: #e1eee2;
}

.google-review-name {
  font-family: 'Nexa Bold', 'Nexa Book', Arial, Helvetica, sans-serif;
  font-size: 17px;
  color: #2dab66;
  margin-bottom: 2px;
}

.google-review-date {
  font-size: 13px;
  color: #888;
}

.google-review-rating {
  margin-bottom: 14px;
}
.google-review-rating .star {
  color: #fbbc04;
  font-size: 18px;
  margin-right: 2px;
  vertical-align: middle;
}

.google-review-text {
  font-size: 16px;
  color: #222;
  line-height: 1.5;
  margin-bottom: 0;
  text-align: start;
}

.google-reviews-link {
  width: 960px;
  margin: 32px auto 0 auto;
  text-align: right;
  padding: 0 15px;
}
.google-reviews-link a {
  color: #2dab66;
  font-family: 'Nexa Book', Arial, Helvetica, sans-serif;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s;
}
.google-reviews-link a:hover {
  color: #000;
}

@media only screen and (max-width: 1005px) {
  .google-reviews-grid {
    width: 90%;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 10px;
  }
  .google-reviews-link {
    width: 90%;
  }
}


/* Google Reviews Summary ---------------------------------------------------------------------- */
.google-reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
  margin-bottom: 18px;
  text-align: center;
}

.google-reviews-summary-text {
  font-family: 'Nexa Book', Arial, Helvetica, sans-serif;
  font-size: 15px;
}

.google-reviews-summary-stars .star {
  color: #fbbc04;
  font-size: 18px;
  margin-right: 1px;
  line-height: 20px;
}

.google-reviews-summary-stars-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.google-reviews-summary-count {
  color: #888;
  font-size: 16px;
}

@media (max-width: 700px) {
  .google-reviews-summary {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .google-reviews-summary-stars,
  .google-reviews-summary-count {
    display: inline-block;
    vertical-align: middle;
  }
}


/* Custom File Upload Button ------------------------------------------------------------------- */
.file_upload_container {
  position: relative;
  display: block;
  width: 100%;
}

.file_upload_button {
  background-color: #f6faf6;
  border: 1px solid #2dab66;
  color: #000;
  font-family: 'Nexa Book', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 30px; /* Match height for vertical centering */
  padding: 0 8px 0 8px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
  height: 30px;
  text-align: left;
  box-sizing: border-box;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  position: relative;
  z-index: 1;
}

.no-touch .file_upload_button:hover,
.file_upload_button:active,
.no-touch .file_upload_button:focus {
  background-color: #ffd;
  border-color: #000;
  color: #000;
}

.file_upload_container input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.file_upload_text {
  margin-left: 15px;
  font-size: 14px;
  color: #555;
  line-height: 38px;
  vertical-align: top;
  display: none;
}

.example-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  text-decoration: underline;
  margin-left: 0;
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.no-touch .example-link:hover {
  color: #2dab66;
}

@media only screen and (max-width: 1005px) {
  .file_upload_button {
    font-size: 15px;
    padding: 0 8px;
  }
}


/* Modal for example images -------------------------------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.85);
}

.modal-content {
  margin: auto;
  display: block;
  width: 90%;
  max-width: 800px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}


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

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