.loader {
  margin: 0 0 2em;
  height: 100vh;
  width: 100%;
  text-align: center;
  padding: 1em;
  margin: 0 auto 1em;
  position: absolute;
  background-color: #3A3A3A;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

svg path,
svg rect {
  fill: #459A50;
}

.has-fade {
  visibility: hidden;
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
.fade-in {
  animation: fade-in 200ms ease-in-out forwards;
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
.fade-out {
  animation: fade-out 200ms ease-in-out forwards;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}
.producten__hero__text__arrow {
  cursor: pointer;
  transition: 0.5s;
}
.producten__hero__text__arrow:hover {
  transform: translateY(15px);
}

.transition {
  list-style: none;
  display: flex;
  padding: 0;
  margin-right: auto;
  position: absolute;
  z-index: 10;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  margin: 0;
  pointer-events: none;
}
.transition li {
  height: 100vh;
  background: #3A3A3A;
  width: 20%;
}

html {
  font-size: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

a,
a:visited,
a:hover {
  text-decoration: none;
}

body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
  background-color: white;
}
body.noscroll {
  overflow: hidden;
}

::-moz-selection {
  color: white;
  background: #459A50;
}

::selection {
  color: white;
  background: #459A50;
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

button,
.button {
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1.375rem;
  border-radius: 5px;
  font-size: 1.125rem;
  color: white;
  border: solid #4ED45F 1px;
  cursor: pointer;
  transition: background-color 0.2s linear, color 0.2s linear;
}
button:hover,
.button:hover {
  background-color: #4ED45F;
  color: #3A3A3A;
}

.button-alternative {
  letter-spacing: 1px;
  padding: 0.5rem 1.375rem;
  border-radius: 5px;
  font-size: 1.125rem;
  color: white;
  background-color: #4ED45F;
  border: solid #4ED45F 1px;
  cursor: pointer;
  transition: background-color 0.2s linear, color 0.2s linear;
}
.button-alternative:hover {
  background-color: rgba(0, 0, 0, 0);
  color: white;
}

.button-white {
  letter-spacing: 1px;
  padding: 0.5rem 1.375rem;
  border-radius: 5px;
  font-size: 1.125rem;
  color: white;
  background-color: #4ED45F;
  border: solid #4ED45F 1px;
  cursor: pointer;
  transition: background-color 0.2s linear, color 0.2s linear;
}
.button-white:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #3A3A3A;
}

.button-outline {
  padding: 0.2rem 1.5rem;
  border-radius: 5px;
  font-size: 1.125rem;
  color: white;
  border: solid #46BE55 1px;
  transition: all 200ms ease-in-out;
}
.button-outline:hover {
  background-color: #46BE55;
}

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

.container {
  padding-left: 10rem;
  padding-right: 10rem;
}

.fixed-container {
  margin: 0 auto;
}
@media (min-width: 64em) {
  .fixed-container {
    width: 1173px;
  }
}
@media (max-width: 87.4375em) {
  .fixed-container {
    width: 920px;
  }
}
@media (max-width: 63.9375em) {
  .fixed-container {
    width: 90vw;
  }
}

.section_title {
  text-transform: uppercase;
}
@media (min-width: 64em) {
  .section_title {
    padding-left: calc((100vw - 1173px) / 2);
  }
}
@media (max-width: 87.4375em) {
  .section_title {
    padding-left: calc((100vw - 920px) / 2);
  }
}
@media (max-width: 63.9375em) {
  .section_title {
    padding-left: 3vw;
  }
}
.section_title hr {
  color: #5DFC71;
  background-color: #5DFC71;
  border: none;
  height: 2px;
}
.section_title h2 {
  font-weight: 300;
  padding-top: 4rem;
  margin-top: 0;
  margin-bottom: 0;
}
@media (min-width: 64em) {
  .section_title h2 {
    padding-top: 7rem;
  }
}

.underline {
  position: relative;
}
.underline::after {
  content: "";
  display: block;
  position: absolute;
  height: 10px;
  left: 0;
  right: 0;
  bottom: 0px;
  background: #5DFC71;
  opacity: 0.5;
  z-index: -1;
}

.load_wrapper {
  position: absolute;
  height: 200vh;
  width: 100vw;
  background-color: #3A3A3A;
  z-index: 50;
}

.splide__sr {
  display: none;
}

.nav {
  width: 100vw;
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 8vh;
}
.nav__burger {
  cursor: pointer;
}
.nav__burger .cunt {
  width: 25px;
  height: 3px;
  background-color: black;
  margin: 5px;
}
.nav .language-selector a:first-child {
  margin-right: 1rem;
}
.nav .language-selector .selected-language {
  font-weight: bold;
}
@media (min-width: 64em) {
  .nav {
    padding-top: 1rem;
    z-index: 100000;
  }
  .nav__logo > img {
    padding-top: 1rem;
    width: 10rem;
    transition: all 0.3s ease;
  }
  .nav__links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 40%;
  }
  .nav__links .hover-link {
    position: relative;
    text-decoration: none;
    color: white;
  }
  .nav__links .hover-link::before {
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    left: 0;
    right: 0;
    bottom: -10px;
    background: #5DFC71;
    opacity: 0;
    transition: opacity 200ms ease-in-out;
  }
  .nav__links .hover-link:hover::before {
    opacity: 1;
  }
  .nav__links .selected::before {
    opacity: 1;
  }
  .nav__links button a {
    text-decoration: none;
    color: white;
  }
  .nav__links li {
    list-style: none;
    text-transform: uppercase;
    font-weight: 200;
  }
  .nav__burger {
    display: none;
  }
}
@media (max-width: 87.4375em) {
  .nav__logo {
    position: absolute;
    left: 20px;
    top: 25px;
  }
  .nav__logo > img {
    width: 8rem;
  }
  .nav__links {
    margin-top: 0;
    position: fixed;
    right: 0px;
    z-index: 100;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    top: 0;
    background-color: #3A3A3A;
    color: white;
    display: flex;
    z-index: 100;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 100vw;
    transform: translateX(100%);
    padding-left: 0;
    transition: transform 0.5s ease-in;
  }
  .nav__links a {
    text-decoration: none;
    color: white;
  }
  .nav__links li {
    list-style: none;
    opacity: 1;
    text-transform: uppercase;
    font-weight: 200;
  }
  .nav__burger {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    z-index: 100;
    position: fixed;
    right: 20px;
    top: 20px;
    background-color: #459A50;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav__burger:focus {
    outline: none !important;
  }
  .nav__burger .cunt {
    background-color: white;
    transition: all 0.3s ease;
  }
  .nav__burger__toggle .nav__burger__line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .nav__burger__toggle .nav__burger__line2 {
    opacity: 0;
  }
  .nav__burger__toggle .nav__burger__line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}
.nav__active {
  transform: translateX(0%);
}

.header .fixed-container {
  padding-top: 2rem;
}
.header.open .header__toggle span:first-child {
  transform: rotate(45deg);
}
.header.open .header__toggle span:nth-child(2) {
  opacity: 0;
}
.header.open .header__toggle span:last-child {
  transform: rotate(-45deg);
}
.header nav {
  position: relative;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.header nav a {
  text-transform: uppercase;
}
.header__logo img {
  padding-top: 10px;
  width: 10rem;
}
.header .fixed-container {
  display: flex;
  justify-content: space-between;
}
.header__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: white;
  transform-origin: 3px 1px;
  transition: all 200ms ease-in-out;
}
.header__toggle span:not(:last-child) {
  margin-bottom: 5px;
}
.header__links a {
  font-size: 16px;
}
.header__links .not-underlined {
  letter-spacing: 1px;
  position: relative;
  color: #858585;
  margin-right: 3em;
  transition: color 200ms ease-in-out;
}
.header__links .not-underlined::before {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  left: 0;
  right: 0;
  bottom: -10px;
  background: #5DFC71;
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}
.header__links .not-underlined:hover {
  color: white;
}
.header__links .not-underlined:hover::before {
  opacity: 1;
}
.header__links .underlined {
  letter-spacing: 1px;
  position: relative;
  color: white;
  margin-right: 3em;
  transition: color 200ms ease-in-out;
}
.header__links .underlined::before {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  left: 0;
  right: 0;
  bottom: -10px;
  background: #5DFC71;
  opacity: 1;
  transition: opacity 200ms ease-in-out;
}
.header__cta {
  font-size: 16px;
}
.header__menu {
  position: absolute;
  z-index: 1000;
  width: calc(100% - 3rem);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 1.625rem;
  border-radius: 9px;
  margin-top: 1.5rem;
}
.header__menu a {
  text-align: center;
  display: block;
  padding: 0.625rem;
  color: #858585;
}
.header .overlay {
  z-index: 0;
  visibility: hidden;
  position: fixed;
  top: 0rem;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(gray, transparent);
}

.hero {
  height: 100vh;
  background-image: url(../img/index/index-overlay-4.jpg);
  background-size: cover;
  background-position: center right;
  color: white;
}
@media (max-width: 87.4375em) {
  .hero {
    background-position: bottom;
  }
}
.hero__wrapper {
  display: flex;
  flex-direction: column;
  height: 75vh;
  justify-content: flex-end;
  position: relative;
  z-index: -1;
}
.hero__title h1 {
  font-weight: 300;
  margin-top: 0;
}
@media (min-width: 64em) {
  .hero__title h1 {
    font-size: 4rem;
  }
}
@media (max-width: 87.4375em) {
  .hero__title h1 {
    font-size: 3rem;
  }
}
@media (max-width: 63.9375em) {
  .hero__title h1 {
    font-size: 2rem;
  }
}
.hero__title .green {
  color: #5DFC71;
  font-weight: 500;
}
.hero__links {
  cursor: pointer;
  text-transform: uppercase;
  margin-top: 4em;
  display: flex;
  align-items: center;
  margin-left: -3rem;
}
@media (max-width: 87.4375em) {
  .hero__links {
    margin-left: 0;
  }
}
.hero__links svg {
  margin-right: 1rem;
}
.hero__links path {
  fill: white !important;
}
.hero__links a:first-child {
  margin-right: 2em;
}

@media (min-width: 64em) {
  .over-ons video {
    width: 100px;
  }
  .over-ons__wrapper {
    position: relative;
    height: 600px;
  }
  .over-ons__text {
    position: absolute;
    top: 0rem;
    left: 0%;
    padding: 3rem;
    width: 40rem;
    box-shadow: 0px 3px 20px 5px rgba(0, 0, 0, 0.16);
    z-index: 10;
    background-color: white;
  }
  .over-ons__text h1 {
    margin-top: 0;
  }
  .over-ons__text p {
    margin-bottom: 0;
    font-weight: 300;
    line-height: 2.5ch;
  }
  .over-ons__text__signature {
    margin-top: 2rem;
  }
  .over-ons__text__signature img {
    width: 25%;
  }
  .over-ons__image {
    position: absolute;
    top: 6rem;
    left: calc(0% + 35rem);
  }
  .over-ons__image > img {
    width: 110%;
    scale: 1;
  }
  .over-ons__image .accent {
    margin-top: 1rem;
  }
  .over-ons__image .accent img {
    width: 60%;
  }
}
@media (max-width: 87.4375em) {
  .over-ons__text {
    font-size: 16px;
    line-height: 2.5ch;
    font-weight: 300;
  }
  .over-ons__text h1 {
    margin-bottom: 0;
    margin-top: 2rem;
  }
  .over-ons__text__signature {
    margin-top: 1rem;
  }
  .over-ons__text__signature img {
    width: 20%;
  }
  .over-ons__image {
    margin-top: 3rem;
  }
  .over-ons__image > img {
    width: 120%;
  }
  .over-ons__image .accent img {
    width: 60%;
  }
}
@media (max-width: 63.9375em) {
  .over-ons__image {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .over-ons__image > img {
    width: 100%;
  }
  .over-ons__image .accent {
    display: none;
  }
}

@media (min-width: 64em) {
  .machine__wrapper {
    position: relative;
    background-color: #3A3A3A;
    height: 70vh;
  }
  .machine__image {
    position: absolute;
    margin-top: -150px;
    width: 60%;
  }
  .machine__image > img {
    width: 100%;
    scale: 1;
  }
  .machine__text {
    color: white;
    position: absolute;
    z-index: 50;
    width: 30rem;
    right: 10rem;
    top: 3rem;
  }
  .machine .accent {
    margin-top: 1rem;
    text-align: right;
  }
  .machine .accent > img {
    width: 50%;
  }
}
@media (max-width: 87.4375em) {
  .machine__wrapper {
    background-color: #3A3A3A;
  }
  .machine__text {
    font-size: 16px;
    line-height: 25px;
    color: white;
  }
  .machine__text h1 {
    margin-bottom: 0;
    padding-top: 2rem;
  }
  .machine__image > img {
    width: 100%;
  }
  .machine .accent {
    text-align: right;
  }
  .machine .accent > img {
    width: 80%;
  }
}

.proces {
  background-color: #3A3A3A;
  position: relative;
  position: relative;
  color: white;
}
.proces__img {
  height: 500px;
  background-image: url("../img/index/DSC05340.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 64em) {
  .proces .proces__wrapper {
    display: flex;
    justify-content: space-between;
  }
  .proces__card {
    margin-bottom: 5rem;
    filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.4));
    width: 33.33%;
    color: black;
  }
  .proces__card:nth-child(1) .card_wrapper {
    margin-right: auto;
  }
  .proces__card:nth-child(2) .card_wrapper {
    margin: auto;
  }
  .proces__card:nth-child(3) .card_wrapper {
    margin-left: auto;
  }
  .proces__card .card_wrapper {
    width: 90%;
    padding: 1rem;
    padding-bottom: 3rem;
    margin-bottom: 5rem;
    background-color: white;
    display: flex;
    flex-direction: column;
    height: 400px;
  }
  .proces__card .card_wrapper > img {
    width: 6rem;
    margin: auto;
    margin-top: 2rem;
  }
  .proces__card .card_title {
    text-transform: uppercase;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .proces__card .card_text {
    width: 70%;
    margin: auto;
    font-size: 14px;
    line-height: 2.5ch;
    text-align: center;
    font-weight: 300;
  }
  .proces hr {
    margin-bottom: 2rem;
  }
}
@media (max-width: 87.4375em) {
  .proces__card {
    margin-bottom: 5rem;
    filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.4));
    width: 100%;
    color: black;
  }
  .proces__card .card_wrapper {
    width: 80%;
    padding: 1rem;
    margin: auto;
    background-color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  .proces__card .card_wrapper > img {
    width: 5rem;
    margin: auto;
  }
  .proces__card .card_title {
    text-transform: uppercase;
    margin-top: 1rem;
    margin-bottom: 0rem;
  }
  .proces__card .card_text {
    line-height: 2.5ch;
    font-weight: 300;
  }
  .proces hr {
    margin-bottom: 2rem;
  }
  .proces__bg {
    height: 90%;
    width: 100%;
    background-color: #3A3A3A;
    position: absolute;
    z-index: -50;
  }
  .proces__img {
    height: 250px;
  }
}

.machinepark {
  position: relative;
  display: none;
}
.machinepark__bg {
  background-color: #F8F8F8;
  height: 80%;
  width: 100%;
  position: absolute;
  z-index: -10;
}
@media (min-width: 64em) {
  .machinepark .accent {
    margin-top: -40px;
    margin-bottom: 2rem;
  }
  .machinepark .accent img {
    width: 370px;
  }
  .machinepark .section_title {
    margin-bottom: 2rem;
  }
  .machinepark__wrapper {
    width: 100%;
    display: flex;
  }
  .machinepark img {
    width: 100%;
  }
  .machinepark .images__wrapper {
    width: 50%;
    text-align: right;
    background-image: url("../img/index/machine3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .machinepark .text__wrapper {
    width: 50%;
    padding-left: 5rem;
    margin-bottom: 20rem;
  }
  .machinepark .text__wrapper h1 {
    margin-top: 0;
    text-transform: uppercase;
  }
  .machinepark .text__wrapper p {
    font-weight: 300;
    line-height: 2.5ch;
  }
  .machinepark__img {
    display: none;
  }
}
@media (max-width: 87.4375em) {
  .machinepark .accent {
    display: none;
  }
  .machinepark .section_title {
    margin-bottom: 1rem;
  }
  .machinepark__wrapper {
    width: 100%;
  }
  .machinepark .images__wrapper {
    width: 100%;
  }
  .machinepark .images__wrapper img {
    width: 100%;
    padding-bottom: 0.5rem;
  }
  .machinepark .text__wrapper h1 {
    margin-bottom: 0;
  }
  .machinepark .text__wrapper p {
    font-weight: 300;
    line-height: 2.5ch;
  }
  .machinepark__bg {
    height: 100%;
  }
  .machinepark__img {
    margin-top: 2rem;
    height: 250px;
    width: 100%;
    background-image: url("../img/machine3.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media (min-width: 64em) {
  .team .section_title {
    margin-bottom: 4rem;
  }
  .team .section_title h2 {
    padding-top: 10rem;
  }
  .team__wrapper {
    position: relative;
    display: flex;
    justify-content: center;
  }
  .team__text {
    display: none;
    position: absolute;
    top: 7rem;
    left: 50%;
    padding: 3rem;
    width: 40rem;
    box-shadow: 0px 3px 20px 5px rgba(0, 0, 0, 0.16);
    z-index: 10;
    background-color: white;
    font-weight: 300;
  }
  .team__image {
    margin: 0 auto;
    width: 80%;
  }
  .team__image img {
    width: 100%;
    scale: 1;
  }
  .team__image .accent {
    margin-top: 1rem;
  }
  .team__image .accent img {
    width: 20rem;
  }
}
@media (max-width: 87.4375em) {
  .team .section_title {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .team__image {
    margin-bottom: 5rem;
  }
  .team__image .accent {
    margin-top: 0.5rem;
    display: none;
  }
  .team__image .accent > img {
    width: 100%;
  }
  .team__image__wrapper {
    display: inline-block;
    overflow: hidden;
  }
  .team__image__wrapper > img {
    width: 110%;
  }
  .team__text {
    display: none;
  }
  .team__text > h1 {
    margin-bottom: 0;
  }
  .team__text p {
    font-weight: 300;
  }
}

.cta {
  position: relative;
}
.cta::before {
  z-index: -1;
  content: "";
  background: #3A3A3A;
  position: absolute;
  top: calc(50% + 20px);
  left: 0;
  right: 0;
  bottom: -5px;
}
.cta__wrapper {
  background-color: #F8F8F8;
  margin: 0 5rem;
  padding: 3rem 5rem;
  display: flex;
  justify-content: space-between;
  text-align: center;
}
@media (max-width: 63.9375em) {
  .cta__wrapper {
    padding: 3rem 2rem;
  }
}
.cta__wrapper__title {
  letter-spacing: 1px;
  font-weight: 250;
}
@media (min-width: 64em) {
  .cta__wrapper__title {
    font-size: 40px;
  }
}
@media (max-width: 87.4375em) {
  .cta__wrapper__title {
    font-size: 24px;
  }
}
@media (max-width: 63.9375em) {
  .cta__wrapper__title {
    font-size: 20px;
  }
}
.cta__wrapper__button button {
  color: #3A3A3A;
  padding: 1.4rem 2.5rem;
}
@media (max-width: 63.9375em) {
  .cta__wrapper__button button {
    padding: 0.7rem 1.25rem;
  }
}
@media (min-width: 40em) {
  .cta__wrapper__button {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 39.9375em) {
  .cta .fixed-container {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .cta__wrapper {
    margin: 0 0rem;
    display: flex;
    flex-direction: column;
  }
  .cta__wrapper__button button {
    margin-top: 1rem;
    color: #3A3A3A;
    padding: 1.4rem 2.5rem;
  }
}
@media (max-width: 39.9375em) and (max-width: 63.9375em) {
  .cta__wrapper__button button {
    padding: 0.7rem 1.25rem;
  }
}

.footer {
  position: relative;
  background-color: #3A3A3A;
}
@media (min-width: 64em) {
  .footer::before {
    z-index: -1;
    content: "";
    background: #3A3A3A;
    position: absolute;
    top: calc(50% + 20px);
    left: 0;
    right: 0;
    bottom: -5px;
  }
}
.footer a {
  color: white;
  transition: ease-in 0.1s;
}
.footer a:hover {
  opacity: 0.7;
}
.footer .fixed-container {
  padding: 8rem 0;
  display: flex;
  justify-content: space-between;
}
.footer__adres {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__adres__contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__adres__contact img {
  width: 1rem;
  margin-right: 8px;
}
.footer__adres__contact a:last-child {
  margin-top: 1ch;
}
.footer__adres__info {
  line-height: 3ch;
  font-weight: 100;
  color: white;
}
.footer__links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__fpd {
  position: absolute;
  right: 20px;
  bottom: 30px;
  color: white;
  font-weight: 100;
  font-size: 14px;
}
.footer__fpd a {
  display: flex;
  align-items: center;
}
.footer__fpd img {
  margin-left: 0.5rem;
  width: 3rem;
  opacity: 0.8;
}
@media (max-width: 63.9375em) {
  .footer .fixed-container {
    padding: 8rem 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .footer__adres__contact {
    margin-top: 3rem;
  }
  .footer__adres__info {
    margin-top: 2rem;
  }
  .footer__links {
    margin-top: 2rem;
  }
  .footer__links a {
    margin-bottom: 1rem;
  }
  .footer__fpd {
    left: 20px;
  }
  .footer__fpd__bold {
    font-weight: 300;
  }
}

.producten__nav {
  background-color: #3A3A3A;
}

.producten__header nav {
  background-color: #3A3A3A;
}

.producten__hero {
  color: white;
  margin-bottom: -150px;
}
.producten__hero::before {
  z-index: -1;
  content: "";
  background: #3A3A3A;
  position: absolute;
  left: 0;
  right: 0;
  top: -5px;
  height: 100px;
}
.producten__hero__bg {
  background-color: #3A3A3A;
  width: 100%;
  position: absolute;
  z-index: -1;
}
@media (min-width: 64em) {
  .producten__hero__bg {
    top: 50px;
    height: 600px;
  }
}
@media (max-width: 87.4375em) {
  .producten__hero__bg {
    height: 400px;
  }
}
.producten__hero .fixed-container {
  display: flex;
  justify-content: space-between;
  padding: 5rem 0;
}
.producten__hero__text__title {
  margin: 0;
  font-weight: 300;
}
@media (min-width: 64em) {
  .producten__hero__text__title {
    font-size: 56px;
  }
}
@media (max-width: 87.4375em) {
  .producten__hero__text__title {
    font-size: 44px;
  }
}
@media (max-width: 63.9375em) {
  .producten__hero__text__title {
    font-size: 36px;
  }
}
.producten__hero__text__text {
  text-align: justify;
  font-weight: 400;
  line-height: 3ch;
  width: 80%;
}
@media (min-width: 64em) {
  .producten__hero__text__arrow {
    margin-top: 2rem;
  }
}
@media (max-width: 87.4375em) {
  .producten__hero__text__arrow {
    margin-top: 1rem;
  }
}
@media (max-width: 63.9375em) {
  .producten__hero__text__arrow {
    display: none;
  }
}
.producten__hero__text__arrow img {
  cursor: pointer;
}
.producten__hero__image {
  margin-left: 5rem;
  text-align: right;
}
.producten__hero__image img {
  width: 500px;
}
@media (max-width: 63.9375em) {
  .producten__hero {
    margin-bottom: -50px;
  }
}
@media (min-width: ) {
  .producten__hero .fixed-container {
    display: flex;
    justify-content: space-between;
    padding: 5rem 0;
  }
  .producten__hero__image__mob {
    display: none;
  }
}
@media (max-width: 39.9375em) {
  .producten__hero {
    margin-bottom: 2rem;
  }
  .producten__hero__image {
    display: none;
  }
  .producten__hero .fixed-container {
    padding: 2rem 0;
  }
  .producten__hero__image__mob {
    margin-bottom: 5rem;
    width: 100%;
    height: 250px;
    background-image: url("../img/producten/DSC05817.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.producten__items .fixed-container {
  display: flex;
}
.producten__items__left {
  width: 100%;
}
.producten__items__right {
  width: 100%;
}
.producten__items__right .producten__items__card {
  margin-left: auto;
  margin-top: 400px;
}
.producten__items__right #i-verloren-wastechniek {
  margin-top: 5rem;
}
.producten__items__card {
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 3rem 3rem;
  width: 93%;
}
.producten__items__card__title h1 {
  font-weight: 100;
}
@media (min-width: 64em) {
  .producten__items__card__title h1 {
    font-size: 40px;
  }
}
@media (max-width: 87.4375em) {
  .producten__items__card__title h1 {
    font-size: 24px;
  }
}
.producten__items__card__image {
  width: 100%;
}
.producten__items__card__image img {
  width: 100%;
}
.producten__items__card .splide__arrow {
  scale: 0.6;
}
.producten__items__card .splide__arrow svg {
  scale: 0.8;
}
.producten__items__card .splide__list {
  width: 100%;
}
.producten__items__card .splide img {
  width: 100%;
}
.producten__items__card__dots {
  margin: 0 auto;
}
.producten__items__card__dots img:not(:last-child) {
  margin-right: 0.5rem;
}
.producten__items__card__text {
  font-weight: 100;
  text-align: justify;
  line-height: 2.5ch;
  display: none;
}
.producten__items__card__client {
  font-size: 14px;
  font-weight: 100;
  letter-spacing: 1px;
}
@media (max-width: 39.9375em) {
  .producten__items .fixed-container {
    flex-direction: column;
    align-items: center;
  }
  .producten__items .producten__items__card {
    margin: auto;
    margin-bottom: 5rem;
    padding: 1.5rem 1.5rem;
  }
  .producten__items__right .producten__items__card {
    margin-top: 0px;
  }
}
.producten__items #formatec {
  transition: opacity 200ms ease-in-out;
}
.producten__items #formatec:hover {
  opacity: 0.5;
}
.producten__items #i-verloren-wastechniek button {
  display: none;
}

.machinepark__nav {
  background-color: #3A3A3A;
}

.machinepark__hero {
  position: relative;
  color: white;
  margin-bottom: -150px;
}
.machinepark__hero::before {
  z-index: -1;
  content: "";
  background: #3A3A3A;
  position: absolute;
  left: 0;
  right: 0;
  top: -5px;
  height: 100px;
}
.machinepark__hero::after {
  z-index: -5;
  content: "";
  background: #F8F8F8;
  position: absolute;
  left: 0;
  right: 0;
  height: 500px;
  bottom: 50px;
  display: none;
}
.machinepark__hero__bg {
  background-color: #3A3A3A;
  width: 100%;
  position: absolute;
  z-index: -1;
}
@media (min-width: 64em) {
  .machinepark__hero__bg {
    top: 50px;
    height: 600px;
  }
}
@media (max-width: 87.4375em) {
  .machinepark__hero__bg {
    height: 300px;
  }
}
.machinepark__hero .fixed-container {
  display: flex;
  justify-content: space-between;
  padding: 5rem 0;
}
.machinepark__hero__text__title {
  margin: 0;
  font-weight: 300;
}
@media (min-width: 64em) {
  .machinepark__hero__text__title {
    font-size: 56px;
  }
}
@media (max-width: 87.4375em) {
  .machinepark__hero__text__title {
    font-size: 44px;
  }
}
@media (max-width: 63.9375em) {
  .machinepark__hero__text__title {
    font-size: 36px;
  }
}
.machinepark__hero__text__text {
  text-align: justify;
  font-weight: 300;
  line-height: 3ch;
}
@media (min-width: 64em) {
  .machinepark__hero__text__arrow {
    margin-top: 5rem;
  }
}
@media (max-width: 87.4375em) {
  .machinepark__hero__text__arrow {
    margin-top: 1rem;
  }
}
@media (max-width: 63.9375em) {
  .machinepark__hero__text__arrow {
    display: none;
  }
}
.machinepark__hero__text__arrow img {
  cursor: pointer;
}
.machinepark__hero__image {
  height: 700px;
  width: 2000px;
  margin-left: 5rem;
  display: inline-block;
  background-image: url("../img/machinepark/dnu60-2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 63.9375em) {
  .machinepark__hero {
    margin-bottom: -50px;
  }
  .machinepark__hero .fixed-container {
    padding-bottom: 0;
  }
}
@media (min-width: ) {
  .machinepark__hero .fixed-container {
    display: flex;
    justify-content: space-between;
    padding: 5rem 0;
  }
  .machinepark__hero__image__mob {
    display: none;
  }
}
@media (max-width: 39.9375em) {
  .machinepark__hero__image {
    display: none;
  }
  .machinepark__hero .fixed-container {
    padding: 2rem 0;
  }
  .machinepark__hero__image__mob {
    width: 100%;
    height: 250px;
    background-image: url("../img/machinepark/dnu60-2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.machinepark__frezen {
  position: relative;
  padding-top: 3rem;
}
.machinepark__frezen__bg {
  background-color: #F8F8F8;
  width: 100%;
  height: 350px;
  position: absolute;
  z-index: -1;
}
.machinepark__frezen__wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 100px;
}
.machinepark__frezen__title {
  text-transform: uppercase;
}
.machinepark__frezen__title h1 {
  font-weight: 400;
  font-size: 24px;
}
.machinepark__frezen__unit__title {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 24px;
  margin-bottom: 0.5rem;
}
.machinepark__frezen__unit__text {
  font-weight: 100;
  font-size: 16px;
  display: grid;
  width: 450px;
  grid-template-columns: 1fr 1fr;
}
.machinepark__frezen__unit__text p {
  margin: 0.5rem 0;
}
@media (max-width: 63.9375em) {
  .machinepark__frezen {
    padding-bottom: 3rem;
    background-color: #F8F8F8;
  }
  .machinepark__frezen__wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  .machinepark__frezen__bg {
    display: none;
  }
}
@media (max-width: 39.9375em) {
  .machinepark__frezen__unit__text {
    width: 110%;
  }
}

.machinepark__etc {
  position: relative;
}
.machinepark__etc__img {
  width: 100%;
  height: 100%;
  background-image: url("../img/machinepark/optimized/DSC05343.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.machinepark__etc__img__wrapper {
  position: absolute;
  width: 42%;
  height: 600px;
  overflow: hidden;
}
.machinepark__etc__wrapper {
  padding-left: 500px;
  padding-top: 9rem;
  margin-top: 2rem;
  margin-bottom: 10rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  row-gap: 2rem;
}
.machinepark__etc__unit__title {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 24px;
}
.machinepark__etc__unit__text {
  font-weight: 100;
  font-size: 16px;
}
@media (max-width: 63.9375em) {
  .machinepark__etc__wrapper {
    margin-top: 0;
    padding-left: 45%;
    padding-top: 3rem;
  }
}
@media only screen and (max-width: 800px) {
  .machinepark__etc__wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 39.9375em) {
  .machinepark__etc__img__wrapper {
    display: none;
  }
  .machinepark__etc__img__mob {
    width: 100%;
    height: 300px;
    background-image: url("../img/machinepark/DSC05343.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .machinepark__etc__wrapper {
    padding-left: 0;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    -moz-column-gap: 10px;
         column-gap: 10px;
    margin-bottom: 5rem;
  }
}

.machinepark-selection {
  margin: 10rem 0;
}
.machinepark-selection .wrapper {
  height: 70vh;
}
.machinepark-selection .wrapper .title-wrapper {
  margin-bottom: 5rem;
}
.machinepark-selection .wrapper .title-wrapper .title {
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  display: inline-block;
}
.machinepark-selection .wrapper .title-wrapper .title::before {
  height: 1px;
  width: 100%;
  position: absolute;
  content: "";
  background-color: #5DFC71;
  bottom: 0;
}
.machinepark-selection .wrapper .content-wrapper {
  display: flex;
  position: relative;
  padding-bottom: 5rem;
}
.machinepark-selection .wrapper .content-wrapper::before {
  position: absolute;
  content: "";
  width: 101%;
  left: -82%;
  z-index: -500;
  background-color: #f8f8f8;
  height: 50vh;
}
.machinepark-selection .wrapper .content-wrapper .options-wrapper {
  position: relative;
}
.machinepark-selection .wrapper .content-wrapper .options-wrapper ul {
  position: absolute;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 500px;
}
.machinepark-selection .wrapper .content-wrapper .options-wrapper ul li {
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  margin: 2rem 0;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.machinepark-selection .wrapper .content-wrapper .options-wrapper ul li:first-child::before {
  display: none;
}
.machinepark-selection .wrapper .content-wrapper .options-wrapper ul li::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 10rem;
  top: -1rem;
  left: 0;
  background-color: #5DFC71;
}
.machinepark-selection .wrapper .content-wrapper .options-wrapper ul .active {
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding-left: 2rem;
  position: relative;
  font-weight: bold;
}
.machinepark-selection .wrapper .content-wrapper .options-wrapper ul .active::after {
  z-index: -1;
  content: "";
  position: absolute;
  height: 2px;
  width: 1rem;
  background-color: #5DFC71;
  left: 0rem;
  top: 50%;
}
.machinepark-selection .wrapper .content-wrapper .selected-wrapper {
  margin-left: 20%;
}
.machinepark-selection .wrapper .content-wrapper .selected-wrapper .selected-title {
  margin-top: 2rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
}
.machinepark-selection .wrapper .content-wrapper .selected-wrapper .selected-unit-title {
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.machinepark-selection .wrapper .content-wrapper .selected-wrapper .selected-unit-title:not(:first-child) {
  margin-top: 3rem;
}
.machinepark-selection .wrapper .content-wrapper .selected-wrapper .selected-unit-content {
  font-weight: 200;
}
.machinepark-selection .wrapper .content-wrapper .selected-wrapper .selected-unit-content-machine {
  margin: 0.5rem 0;
}
.machinepark-selection .wrapper .content-wrapper .image-wrapper {
  position: absolute;
  right: 0;
  margin-right: -5rem;
  width: 500px;
  height: 600px;
  overflow: hidden;
  background-image: url("../img/machinepark/100kb/1.jpg");
  background-size: cover;
  background-position: center;
}
.machinepark-selection .wrapper .content-wrapper .image-wrapper img {
  height: 100%;
  display: none;
}
.machinepark-selection .wrapper .content-wrapper .mobile-wrapper {
  display: none;
}
.machinepark-selection .wrapper .content-wrapper .mobile-image-wrapper {
  display: none;
}
@media (max-width: 63.9375em) {
  .machinepark-selection {
    margin-bottom: 5rem;
  }
  .machinepark-selection .wrapper {
    height: auto;
  }
  .machinepark-selection .wrapper .content-wrapper {
    flex-direction: column;
  }
  .machinepark-selection .wrapper .content-wrapper::before {
    left: -50%;
    width: 200%;
    top: -2rem;
    height: 100%;
  }
  .machinepark-selection .wrapper .content-wrapper .options-wrapper {
    display: none;
  }
  .machinepark-selection .wrapper .content-wrapper .selected-wrapper {
    display: none;
  }
  .machinepark-selection .wrapper .content-wrapper .image-wrapper {
    display: none;
  }
  .machinepark-selection .wrapper .content-wrapper .mobile-image-wrapper {
    display: block;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-image: url("../img/machinepark/100kb/1.jpg");
    background-size: cover;
    background-position: center;
  }
  .machinepark-selection .wrapper .content-wrapper .mobile-wrapper {
    margin-bottom: 2rem;
    display: block;
    width: 100%;
  }
  .machinepark-selection .wrapper .content-wrapper .mobile-wrapper .mobile-unit {
    position: relative;
  }
  .machinepark-selection .wrapper .content-wrapper .mobile-wrapper .mobile-unit::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 100%;
    top: -1rem;
    left: 0;
    background-color: #5DFC71;
  }
  .machinepark-selection .wrapper .content-wrapper .mobile-wrapper .mobile-unit:first-child::before {
    display: none;
  }
  .machinepark-selection .wrapper .content-wrapper .mobile-wrapper .mobile-unit-title-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
  }
  .machinepark-selection .wrapper .content-wrapper .mobile-wrapper .mobile-unit-title-wrapper .mobile-unit-title-title {
    text-transform: uppercase;
  }
  .machinepark-selection .wrapper .content-wrapper .mobile-wrapper .mobile-unit-title-wrapper .mobile-unit-title-plus svg,
  .machinepark-selection .wrapper .content-wrapper .mobile-wrapper .mobile-unit-title-wrapper .mobile-unit-title-plus path {
    fill: black !important;
  }
  .machinepark-selection .wrapper .content-wrapper .mobile-wrapper .mobile-unit-title-wrapper .mobile-unit-title-minus {
    display: none;
  }
  .machinepark-selection .wrapper .content-wrapper .mobile-wrapper .mobile-unit-title-wrapper .mobile-unit-title-minus svg,
  .machinepark-selection .wrapper .content-wrapper .mobile-wrapper .mobile-unit-title-wrapper .mobile-unit-title-minus path {
    fill: none !important;
  }
  .machinepark-selection .wrapper .content-wrapper .mobile-wrapper .mobile-unit-content {
    position: relative;
    overflow: hidden;
  }
  .machinepark-selection .wrapper .content-wrapper .mobile-wrapper .mobile-unit-content-option-text {
    padding-top: 1rem;
    font-weight: 300;
    font-size: 14px;
  }
  .machinepark-selection .wrapper .content-wrapper .mobile-wrapper .mobile-unit-content .mobile-unit-content-option-title {
    text-transform: uppercase;
    font-weight: 300;
    padding-top: 2rem;
  }
}

.contact__nav {
  background-color: #3A3A3A;
}

.contact__hero {
  color: white;
  margin-bottom: -150px;
}
.contact__hero::before {
  z-index: -1;
  content: "";
  background: #3A3A3A;
  position: absolute;
  left: 0;
  right: 0;
  top: -5px;
  height: 100px;
}
.contact__hero__bg {
  background-color: #3A3A3A;
  width: 100%;
  position: absolute;
  z-index: -1;
}
@media (min-width: 64em) {
  .contact__hero__bg {
    height: 300px;
  }
}
@media (max-width: 87.4375em) {
  .contact__hero__bg {
    height: 300px;
  }
}
.contact__hero .fixed-container {
  display: flex;
  justify-content: space-between;
  padding: 5rem 0;
}
.contact__hero__text__title {
  margin: 0;
  font-weight: 300;
}
@media (min-width: 64em) {
  .contact__hero__text__title {
    font-size: 56px;
  }
}
@media (max-width: 87.4375em) {
  .contact__hero__text__title {
    font-size: 44px;
  }
}
@media (max-width: 63.9375em) {
  .contact__hero__text__title {
    font-size: 36px;
  }
}
.contact__hero__text__text {
  text-align: justify;
  font-weight: 300;
  line-height: 3ch;
}
.contact__hero__image {
  text-align: right;
  width: 100%;
  max-height: 800px;
  overflow: hidden;
}
.contact__hero__image img {
  width: 100%;
}
@media (max-width: 63.9375em) {
  .contact__hero {
    margin-bottom: -50px;
  }
}
@media (min-width: ) {
  .contact__hero .fixed-container {
    display: flex;
    justify-content: space-between;
    padding: 5rem 0;
  }
  .contact__hero__image__mob {
    display: none;
  }
}
@media (max-width: 39.9375em) {
  .contact__hero {
    margin-bottom: 2rem;
  }
  .contact__hero__image {
    display: none;
  }
  .contact__hero .fixed-container {
    padding: 2rem 0;
  }
  .contact__hero__image__mob {
    margin-bottom: 5rem;
    width: 100%;
    height: 250px;
    background-image: url("../img/contact/contact-2.jpg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
  }
}

.contact__info {
  font-size: 24px;
  margin-bottom: 5rem;
}
.contact__info a {
  color: #3A3A3A;
  transition: ease-in 0.1s;
}
.contact__info a:hover {
  opacity: 0.7;
}
.contact__info__section__title {
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.contact__info__section__title_2 {
  margin-top: 3rem;
  margin-bottom: -0.5rem;
}
.contact__info__section__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact__info__section__text img {
  width: 1rem;
  margin-right: 8px;
}
.contact__info__section__text a {
  font-weight: 300;
  line-height: 2.5ch;
}
.contact__info__section__text a:last-child {
  margin-top: 1rem;
  margin-bottom: 0;
}
.contact__info__section__text p {
  margin: 0;
  font-weight: 300;
  line-height: 2.5ch;
}
@media (min-width: 40em) {
  .contact__info {
    margin-top: -500px;
  }
}
@media (max-width: 87.4375em) {
  .contact__info {
    margin-top: -350px;
  }
}
@media (max-width: 63.9375em) {
  .contact__info {
    margin-top: -250px;
  }
}
@media (max-width: 39.9375em) {
  .contact__info {
    margin-top: 0;
  }
}

.google {
  padding: 5rem 0;
  display: flex;
  justify-content: center;
}
.google iframe {
  width: 70%;
  height: 500px;
}
@media (max-width: 87.4375em) {
  .google {
    padding: 0;
  }
  .google iframe {
    width: 100%;
  }
}

html.has-scroll-smooth {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}/*# sourceMappingURL=style.css.map */