/*---------------------------------------/*
 # SETTINGS
/*---------------------------------------*/
/*---------------------------------------/*
 # GENERIC - BOOTSTRAP
/*---------------------------------------*/
/*---------------------------------------/*
 # ELEMENTS
/*---------------------------------------*/
.owl-theme .owl-dots .owl-dot span {
  background: #82ff32 !important;
  opacity: 20%;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #82ff32 !important;
  opacity: 100%;
}

.owl-one {
  justify-content: center;
  align-items: center;
}
.owl-one .owl-nav {
  display: none;
}

.owl-two {
  margin-bottom: 5rem;
}
.owl-two .owl-dots {
  display: none;
}
.owl-two-prev {
  height: 5rem;
}

/*---------------------------------------/*
 # OBJECTS
/*---------------------------------------*/
/* Limit the height of the carousel images */
.carousel-item img {
  max-height: calc(100vh - 9.5rem); /* Limit height to viewport height */
  width: 100%; /* Ensure full width */
  -o-object-fit: cover;
     object-fit: cover; /* Ensure images scale properly */
  -o-object-position: center;
     object-position: center; /* Center the image */
}

.card-body {
  display: flex; /* Use flexbox for the card body */
  flex-direction: column; /* Stack items vertically */
  flex: 1; /* Allow the card body to take up available space */
  justify-content: space-between; /* Space between title, text, and button */
}

.navbar-toggler {
  border: none;
}

/*---------------------------------------/*
 # COMPONENTS
/*---------------------------------------*/
.c-header__logo {
  max-height: 4rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.c-header__link {
  color: black;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
.c-header__link:hover {
  color: #82ff32;
}
@media only screen and (max-width: 1200px) {
  .c-header__link {
    font-size: 1.1rem;
  }
}
.c-header .c-groenebar {
  height: 2rem;
  width: 100%;
  background-color: #82ff32;
  margin: 0;
  padding: 0;
}
.c-header .c-groenebar__contact {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: black;
  text-decoration: none;
}
.c-header .c-groenebar__contact--mail {
  margin-left: 1rem;
}

.c-products {
  background-color: #faf9f6;
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .c-products__cards {
    display: none;
  }
}
.c-products__carousel {
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: none;
}
@media only screen and (max-width: 992px) {
  .c-products__carousel {
    display: block;
  }
}
.c-products__title {
  margin-top: 7rem;
  display: inline-block; /* Change to inline-block to fit the text width */
  position: relative; /* Position relative for the pseudo-element */
  padding: 10px; /* Padding for spacing */
  padding-left: 20px;
  padding-right: 20px;
  font-family: "filson-pro", sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  overflow: hidden; /* Hide overflow to prevent skewed background from showing outside */
  /* Skewed background using a pseudo-element */
  background-image: linear-gradient(to top, #82ff32 0%, #82ff32 50%, transparent 50%, transparent 100%);
  transform: skew(-20deg); /* Apply skew to the background */
  transform-origin: center; /* Set the origin for the skew */
  /* Counter-transform to negate the skew for the text */
}
.c-products__title--text {
  display: inline-block; /* Ensure text is inline-block */
  transform: skew(20deg); /* Counteract the skew */
  position: relative; /* Position relative to keep it above the background */
  z-index: 1; /* Bring the text above the skewed background */
}
@media only screen and (max-width: 992px) {
  .c-products__title {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-products__title {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 575.98px) {
  .c-products__title {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 418px) {
  .c-products__title {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 360px) {
  .c-products__title {
    font-size: 0.9rem;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.c-products__text {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  margin-top: 0.8rem;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 992px) {
  .c-products__text {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-products__text {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 575.98px) {
  .c-products__text {
    font-size: 14px;
  }
}

.c-card {
  display: flex; /* Use flexbox */
  flex-direction: column;
  border: none;
  border-radius: 0;
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.2);
}
.c-card__box {
  margin-bottom: 3rem;
  transition: transform 0.3s ease; /* Smooth transition for the transform property */
}
.c-card__box:hover {
  transform: scale(1.05); /* Scale up to 105% of its original size */
}
@media only screen and (max-width: 575.98px) {
  .c-card__box {
    margin-left: auto;
    margin-right: auto;
    max-width: 20rem;
  }
}
.c-card_image {
  height: 250px;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}
.c-card__title {
  text-align: start;
  font-family: "filson-pro", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-top: 1rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 1200px) {
  .c-card__title {
    font-size: 1rem;
  }
}
.c-card__text {
  text-align: start;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 0.938rem;
  line-height: 1.867rem;
  margin-bottom: 1.2rem;
  margin-top: 1.2rem;
}
.c-card__button {
  color: black;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  background-image: linear-gradient(to top, #82ff32 0%, #82ff32 50%, transparent 50%, transparent 100%);
  transform: skew(-20deg); /* Apply skew to the background */
  transform-origin: center; /* Set the origin for the skew */
  border: none;
  border-radius: 0;
  margin-bottom: 1rem;
  align-self: flex-start; /* Align the button to the start (left) */
  margin-top: auto; /* Push the button to the bottom */
  margin-left: 0.4rem;
}
@media only screen and (max-width: 1200px) {
  .c-card__button {
    font-size: 1rem;
  }
}
.c-card__button--text {
  display: inline-block; /* Ensure text is inline-block */
  transform: skew(20deg); /* Counteract the skew */
  position: relative; /* Position relative to keep it above the background */
  z-index: 1; /* Bring the text above the skewed background */
}
.c-card__button:hover {
  background-image: linear-gradient(to top, lightgrey 0%, lightgrey 50%, transparent 50%, transparent 100%);
}

.c-about {
  margin-top: 6rem;
  margin-bottom: 6rem;
  /* Ensure the image fits within the clipping */
}
.c-about__box {
  text-align: center;
  padding: 0;
}
.c-about__title {
  display: inline-block; /* Change to inline-block to fit the text width */
  position: relative; /* Position relative for the pseudo-element */
  padding: 10px; /* Padding for spacing */
  padding-left: 20px;
  padding-right: 20px;
  font-family: "filson-pro", sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  overflow: hidden; /* Hide overflow to prevent skewed background from showing outside */
  /* Skewed background using a pseudo-element */
  background-image: linear-gradient(to top, #82ff32 0%, #82ff32 50%, transparent 50%, transparent 100%);
  transform: skew(-20deg); /* Apply skew to the background */
  transform-origin: center; /* Set the origin for the skew */
}
.c-about__title--text {
  display: inline-block; /* Ensure text is inline-block */
  transform: skew(20deg); /* Counteract the skew */
  position: relative; /* Position relative to keep it above the background */
  z-index: 1; /* Bring the text above the skewed background */
}
@media only screen and (max-width: 992px) {
  .c-about__title {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-about__title {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 575.98px) {
  .c-about__title {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 418px) {
  .c-about__title {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 360px) {
  .c-about__title {
    font-size: 0.9rem;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.c-about__text {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  margin-top: 1rem;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 1200px) {
  .c-about__text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 992px) {
  .c-about__text {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 575.98px) {
  .c-about__text {
    font-size: 14px;
  }
}
.c-about__button {
  color: black;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  background-image: linear-gradient(to top, #82ff32 0%, #82ff32 50%, transparent 50%, transparent 100%);
  transform: skew(-20deg); /* Apply skew to the background */
  transform-origin: center; /* Set the origin for the skew */
  border: none;
  border-radius: 0;
  margin-bottom: 1rem;
  align-self: flex-start; /* Align the button to the start (left) */
  margin-top: auto; /* Push the button to the bottom */
}
@media only screen and (max-width: 1200px) {
  .c-about__button {
    font-size: 1rem;
  }
}
.c-about__button--text {
  display: inline-block; /* Ensure text is inline-block */
  transform: skew(20deg); /* Counteract the skew */
  position: relative; /* Position relative to keep it above the background */
  z-index: 1; /* Bring the text above the skewed background */
}
.c-about__button:hover {
  background-image: linear-gradient(to top, lightgrey 0%, lightgrey 50%, transparent 50%, transparent 100%);
}
@media only screen and (max-width: 768px) {
  .c-about__button {
    margin-bottom: 0;
  }
}
.c-about__image {
  /* Adjust the width as needed */
  width: 100%;
  height: 100%;
  /* Apply the clip-path to create the diagonal effect */
  -webkit-clip-path: polygon(15% 0, 100% 0, 85% 100%, 0% 100%);
          clip-path: polygon(15% 0, 100% 0, 85% 100%, 0% 100%);
  overflow: hidden;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .c-about__image {
    display: none;
  }
}
.c-about .c-about__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover; /* Ensures the image covers the container area */
  -o-object-position: center;
     object-position: center; /* Centers the image within the container */
}

.c-services {
  background-color: #e5e4e2;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}
.c-services__card {
  margin-top: 3rem;
  margin-bottom: 3rem;
  border: none;
  border-radius: 0;
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 100%;
  aspect-ratio: 1/1;
  flex-direction: column; /* Ensures content is vertically aligned */
  justify-content: center; /* Centers content vertically */
  align-items: center;
  padding: 2rem;
  transition: transform 0.3s ease; /* Smooth transition for the transform property */
}
.c-services__card:hover {
  transform: scale(1.05); /* Scale up to 105% of its original size */
}
.c-services__icon {
  max-height: 77px;
  margin-bottom: 1.5rem;
}
.c-services__title {
  font-family: "filson-pro", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.c-services__text {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 0.938rem;
  line-height: 1.867rem;
}
.c-services__button {
  padding: 5px 20px; /* is spelen met achtergrond dikte en breedte! */
  color: black;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  background-image: linear-gradient(to top, #82ff32 0%, #82ff32 50%, transparent 50%, transparent 100%);
  transform: skew(-20deg); /* Apply skew to the background */
  transform-origin: center; /* Set the origin for the skew */
  border: none;
  border-radius: 0;
  margin-bottom: 1rem;
  align-self: center;
  margin-top: auto; /* Push the button to the bottom */
  margin-left: 0.4rem;
}
@media only screen and (max-width: 1200px) {
  .c-services__button {
    font-size: 1rem;
  }
}
.c-services__button--text {
  display: inline-block; /* Ensure text is inline-block */
  transform: skew(20deg); /* Counteract the skew */
  position: relative; /* Position relative to keep it above the background */
  z-index: 1; /* Bring the text above the skewed background */
}
.c-services__button:hover {
  background-image: linear-gradient(to top, lightgrey 0%, lightgrey 50%, transparent 50%, transparent 100%);
}
@media only screen and (max-width: 768px) {
  .c-services__button {
    margin-bottom: 4rem;
  }
}

.c-partners {
  text-align: center;
}
.c-partners__title {
  margin-top: 7rem;
  display: inline-block; /* Change to inline-block to fit the text width */
  position: relative; /* Position relative for the pseudo-element */
  padding: 10px; /* Padding for spacing */
  padding-left: 20px;
  padding-right: 20px;
  font-family: "filson-pro", sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  overflow: hidden; /* Hide overflow to prevent skewed background from showing outside */
  /* Skewed background using a pseudo-element */
  background-image: linear-gradient(to top, #82ff32 0%, #82ff32 50%, transparent 50%, transparent 100%);
  transform: skew(-20deg); /* Apply skew to the background */
  transform-origin: center; /* Set the origin for the skew */
  /* Counter-transform to negate the skew for the text */
}
.c-partners__title--text {
  display: inline-block; /* Ensure text is inline-block */
  transform: skew(20deg); /* Counteract the skew */
  position: relative; /* Position relative to keep it above the background */
  z-index: 1; /* Bring the text above the skewed background */
}
@media only screen and (max-width: 992px) {
  .c-partners__title {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-partners__title {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 575.98px) {
  .c-partners__title {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 418px) {
  .c-partners__title {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 360px) {
  .c-partners__title {
    font-size: 0.9rem;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.c-partners__text {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  margin-top: 0.8rem;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 992px) {
  .c-partners__text {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-partners__text {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 575.98px) {
  .c-partners__text {
    font-size: 14px;
  }
}
.c-partners__merk {
  transition: transform 0.3s ease; /* Smooth transition for the transform property */
}
.c-partners__merk:hover {
  transform: scale(1.05); /* Scale up to 105% of its original size */
}

.c-contactformulier__required {
  color: red;
}

/*---------------------------------------/*
 # UTILITIES
/*---------------------------------------*//*# sourceMappingURL=screen.css.map */