/* CSS Document */
@media (max-width: 992px) {
  .container {
    max-width: 100%;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  font-size: 16px;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

.rounded-4 {
  border-radius: 1rem;
}

.navbar {
  padding: 1.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .navbar {
    min-height: 70px;
  }
}
.navbar.sticky-top {
  background-color: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
}
.navbar-brand {
  position: absolute;
  top: 0;
  background: #FFFFFF;
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  padding: 20px;
}
.navbar-brand img {
  transition: width 0.3s ease;
  width: 350px;
}
@media (max-width: 992px) {
  .navbar-brand img {
    width: 220px;
  }
}
@media (max-width: 768px) {
  .navbar-brand img {
    width: 150px;
  }
}
.navbar-brand img.logo-small {
  width: 250px;
}
@media (max-width: 992px) {
  .navbar-brand img.logo-small {
    width: 200px;
  }
}
@media (max-width: 768px) {
  .navbar-brand img.logo-small {
    width: 150px;
  }
}
.navbar .navbar-nav-ul ul {
  flex-direction: row;
  margin-left: auto;
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar .navbar-nav-ul ul li {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  color: #a8290a !important;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}
@media (max-width: 850px) {
  .navbar .navbar-nav-ul ul li {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.navbar .navbar-nav-ul ul li a {
  text-decoration: none;
  color: #a8290a !important;
}
.navbar .navbar-nav-ul ul li a:hover {
  color: #e03b13;
}
.navbar .navbar-nav-ul ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #e03b13;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.navbar .navbar-nav-ul ul li:hover {
  color: #e03b13;
}
.navbar .navbar-nav-ul ul li:hover::after {
  width: 80%;
}
.navbar-toggler {
  position: absolute;
  right: 20px;
  top: 17px;
}
@media (max-width: 768px) {
  .navbar .navbar-nav-ul ul {
    flex-direction: column;
    margin-top: 80px;
    margin-left: 20px;
    text-align: left;
  }
  .navbar .navbar-nav-ul ul li::after {
    display: none;
  }
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background-color: #a8290a;
  border-color: #a8290a;
  color: #FFFFFF;
}
.btn-primary:focus, .btn-primary:hover {
  border-color: #e03b13;
  background-color: #e03b13;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.btn-outline {
  background-color: transparent;
  color: #a8290a;
  border-color: #a8290a;
}
.btn-outline:focus, .btn-outline:hover {
  border-color: #e03b13;
  background-color: #e03b13;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.btn-card {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  background-color: #e03b13;
  color: #FFFFFF;
}
.btn-card:hover {
  background-color: #a8290a;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

h1 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #a8290a;
  margin-bottom: 2rem;
}
h1 .text-highlight {
  color: #e03b13;
  position: relative;
  display: inline-block;
}
h1 small {
  font-size: 50%;
}

h2 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 2rem;
  color: #e03b13;
}

a {
  color: #e03b13;
}
a:hover {
  color: #a8290a;
}

.hero {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .hero {
    padding: 4rem 0;
  }
}
.hero {
  background: #f9e1db;
  position: relative;
}
@media (max-width: 576px) {
  .hero {
    padding-top: 15px;
  }
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero p {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  font-size: 1.125rem;
  max-width: 540px;
}
.hero .btn + .btn {
  margin-left: 10px;
}
.hero-text {
  padding-top: 40px;
}
.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.hero-image::after {
  content: "";
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 100%;
  height: 100%;
  border: 3px solid #f9e1db;
  border-radius: 1rem;
  z-index: -1;
}

.section-content {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .section-content {
    padding: 4rem 0;
  }
}
.section-content {
  background-color: #FFFFFF;
}

.section-keurmerk {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .section-keurmerk {
    padding: 4rem 0;
  }
}
.section-keurmerk {
  background-color: #FFFFFF;
}
.section-keurmerk .section-description {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  font-size: 1.0625rem;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}
@media (max-width: 576px) {
  .section-keurmerk .section-description {
    text-align: left;
  }
}
.section-keurmerk .keurmerk-card {
  display: block;
  background-color: #f9e1db;
  border-radius: 1rem;
  padding: 3rem 3rem 4.5rem 3rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  text-decoration: none;
  position: relative;
}
@media (max-width: 768px) {
  .section-keurmerk .keurmerk-card {
    padding: 1.5rem;
  }
}
.section-keurmerk .keurmerk-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: #f9e1db;
  cursor: pointer;
}
.section-keurmerk .keurmerk-card .card-title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  text-decoration: none;
  font-size: 18px;
  margin-bottom: 1.5rem;
  color: #a8290a;
}
.section-keurmerk .keurmerk-card .card-text {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  text-decoration: none;
  margin-bottom: 2rem;
  line-height: 1.1;
}
.section-keurmerk .btn-card {
  display: block;
  width: 100%;
  max-width: 220px;
}
.section-keurmerk .quality-note {
  margin-top: 3rem;
  padding: 2rem;
}
.section-keurmerk .quality-note p {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  margin: 0;
  font-size: 1.0625rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

.section-duurzaamheid {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .section-duurzaamheid {
    padding: 4rem 0;
  }
}
.section-duurzaamheid {
  background: #f9e1db;
  position: relative;
  overflow: hidden;
}
.section-duurzaamheid .container {
  position: relative;
  z-index: 150;
}
.section-duurzaamheid .duurzaamheid-blad {
  position: absolute;
  z-index: 10;
  right: -200px;
  bottom: 0;
  height: 550px;
}
.section-duurzaamheid .duurzaamheid-blad img {
  height: 550px;
  width: auto;
}
.section-duurzaamheid h2 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
  color: #a8290a;
}
.section-duurzaamheid .section-text {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  font-size: 1.0625rem;
}
@media (max-width: 576px) {
  .section-duurzaamheid .section-text {
    margin-bottom: 3rem;
  }
}
.section-duurzaamheid .section-text table {
  width: 100%;
  margin-top: 32px;
}
.section-duurzaamheid .section-text table td {
  vertical-align: top;
  font-size: 14px;
}
.section-duurzaamheid .section-text table td h3 {
  font-weight: 600;
  color: #a8290a;
  font-size: 16px;
}
.section-duurzaamheid .section-text table td img {
  width: 35px !important;
  height: auto !important;
  margin-right: 16px;
}
.section-duurzaamheid .duurzaamheid-image {
  position: relative;
}
.section-duurzaamheid .duurzaamheid-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.section-content table {
  width: 100%;
  margin-top: 32px;
}
.section-content table td {
  vertical-align: top;
  font-size: 14px;
}
.section-content table td img {
  width: 35px !important;
  height: auto !important;
  margin-right: 16px;
}
@media (max-width: 576px) {
  .section-content-textimg-inner .blockContent {
    margin-bottom: 3rem;
  }
}

.section-deelnemers {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .section-deelnemers {
    padding: 4rem 0;
  }
}
.section-deelnemers {
  background-color: #FFFFFF;
}
.section-deelnemers .section-title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
  color: #e03b13;
}
.section-deelnemers p {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  font-size: 1.0625rem;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .section-deelnemers .owl-stage {
    padding-left: 0 !important;
  }
}
.section-deelnemers .participant-card {
  background-color: #FFFFFF;
  border-radius: 1rem;
  padding: 1rem 3rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 4px solid #f9e1db;
  height: 100%;
}
@media (max-width: 768px) {
  .section-deelnemers .participant-card {
    padding: 1rem;
  }
}
.section-deelnemers .participant-card .participant-logo {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}
.section-deelnemers .participant-card .participant-name {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #333;
}
.section-deelnemers .participant-card .participant-text {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}
.section-deelnemers .certification-info {
  margin-top: 3rem;
  text-align: center;
}
.section-deelnemers .certification-info-inner {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  font-size: 1.0625rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.section-afspraken {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .section-afspraken {
    padding: 4rem 0;
  }
}
.section-afspraken {
  background-color: #FFFFFF;
}
.section-afspraken .section-title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
  color: #e03b13;
}
.section-afspraken p {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  font-size: 1.0625rem;
  max-width: 800px;
  margin: 0 auto;
}
.section-afspraken-card {
  background-color: #FFFFFF;
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 4px solid #f9e1db;
  height: 100%;
  overflow: hidden;
}
.section-afspraken-card h3 {
  font-size: 18px;
  padding: 20px;
  background-color: #e03b13;
  color: white;
}

.section-faq {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .section-faq {
    padding: 4rem 0;
  }
}
.section-faq {
  background: #f9e1db;
}
.section-faq .section-text {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto;
}
.section-faq .accordion {
  max-width: 900px;
  margin: 0 auto;
}
.section-faq .accordion-item {
  background-color: #FFFFFF;
  border: none;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.section-faq .accordion-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.section-faq .accordion-header {
  margin: 0;
}
.section-faq .accordion-button {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  font-size: 1.0625rem;
  padding: 2rem 3rem;
  background-color: #FFFFFF;
  color: #333;
  border: none;
  width: 100%;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .section-faq .accordion-button {
    padding: 2rem 2rem;
  }
}
.section-faq .accordion-button:not(.collapsed) {
  background-color: #FFFFFF;
  color: #e03b13;
  box-shadow: none;
}
.section-faq .accordion-button:hover {
  background-color: #FFFFFF;
  color: #e03b13;
}
.section-faq .accordion-button:not(.collapsed):hover {
  background-color: #FFFFFF;
  color: #a8290a;
}
.section-faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232D5F3F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: all 0.3s ease;
}
.section-faq .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232D5F3F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.section-faq .accordion-button:focus {
  box-shadow: none;
  border: none;
}
.section-faq .accordion-body {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  padding: 0 3rem 2rem;
  background-color: #FFFFFF;
}
@media (max-width: 576px) {
  .section-faq .accordion-body {
    padding: 0 2rem 2rem;
  }
}
.section-faq .accordion-body p:last-of-type {
  margin-bottom: 0;
}
.section-faq .accordion-collapse {
  border: none;
}

.section-contact {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .section-contact {
    padding: 4rem 0;
  }
}
.section-contact {
  background: #a8290a;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-bottom: 15px solid #e03b13;
}
.section-contact h2 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  color: #FFFFFF;
}
.section-contact .contact-decoration {
  position: absolute;
  bottom: -70px;
  left: -20px;
  pointer-events: none;
  opacity: 0.05;
}
.section-contact .contact-text {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.9);
}
.section-contact .contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.section-contact .contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.section-contact .contact-item h4 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}
.section-contact .contact-item p {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}
.section-contact .contact-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.section-contact .contact-item a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
.section-contact .contact-form h3 {
  color: #e03b13;
}
.section-contact .contact-form {
  color: #333;
  background-color: #f9e1db;
  border-radius: 1rem;
  padding: 3rem;
}
@media (max-width: 768px) {
  .section-contact .contact-form {
    padding: 1.5rem;
  }
}
.section-contact .contact-form {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}
.section-contact .contact-form label {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
  .modal-dialog {
    max-width: 700px;
  }
}
.modal-content {
  border-radius: 12px;
}
.modal-header {
  padding: 40px 40px 10px 40px;
  border-bottom: none;
}
.modal-header h3 {
  font-weight: 600;
  color: #a8290a;
}
.modal-body {
  padding: 0px 40px;
}
.modal-footer {
  padding: 10px 40px 40px 40px;
  border-top: none;
}
.modal-backdrop {
  background-color: #584037;
  opacity: 0.7;
}

@media (max-width: 992px) {
  .hero-image::after {
    display: none;
  }
  .duurzaamheid-image::before {
    display: none;
  }
}
@media (max-width: 1200px) {
  .contact-info {
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
:target {
  scroll-margin-top: 80px;
}

::-moz-selection {
  background-color: #a8290a;
  color: #FFFFFF;
}

::selection {
  background-color: #a8290a;
  color: #FFFFFF;
}

.text-primary {
  color: #e03b13 !important;
}

.bg-primary {
  background-color: #e03b13 !important;
}

.shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.shadow-md {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
}

.shadow-lg {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

/* Form opmaak */
.form-control, .formField, .dateField {
  width: 100%;
  border: 1px solid #454545;
  background: #FFFFFF;
  color: #000;
  margin: 0;
  padding: 7px;
  font-size: 16px;
  border-radius: 4px;
}

textarea.formField {
  width: 100%;
  height: 90px;
  border: 1px solid #454545;
  background: #FFFFFF;
  margin: 0;
  padding: 5px;
  font-size: 16px;
  border-radius: 4px;
}

.formPulldown {
  width: 100%;
  border: 1px solid #454545;
  height: 46px;
  background: #FFFFFF;
  margin: 0;
  padding: 7px;
  font-size: 16px;
  border-radius: 4px;
}

.formCheckbox {
  width: auto;
}

.formRadio {
  width: auto;
  border: none;
}

.formError {
  border-color: #d43d2f;
  color: #d43d2f;
}

.formHover,
textarea.formField.formHover {
  border-color: #000;
  background: #fff;
}

.formSubmit {
  border: none;
  background: #a8290a;
  font-weight: 700;
  color: #FFFFFF;
  padding: 8px 50px;
  border-radius: 0.5rem;
  width: 100%;
}

.formSubmit:hover {
  background: #bc2d3f;
  color: #fff;
}

form.customerForm .formSubmit {
  float: right;
  padding-left: 30px;
  padding-right: 30px;
}

span.customerFormRequired {
  color: #B3B3B3;
  font-size: 80%;
}

::-moz-placeholder {
  color: #888888;
}

::placeholder {
  color: #888888;
}

label {
  padding-top: 2px;
  font-weight: 700;
}

label .formCheckbox {
  margin-right: 5px;
  position: relative;
  top: -1px;
}

.field-type-page.is-page {
  border-top: 1px solid rgba(70, 76, 62, 0.2);
  padding: 20px 0;
}

.field-type-page.is-page div.page-title {
  padding: 0;
  line-height: 34px;
  font-size: 20px;
  color: #333;
  font-weight: 700;
}

.field-type-page.page-0 {
  border-top: none;
  padding-top: 0;
}

.field-type-page.is-visited div.page-title::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  content: "\f00c";
  padding-right: 6px;
  font-size: 90%;
  position: relative;
  bottom: 1px;
  color: #EE7819;
}

.field-type-page.is-open div.page-title {
  color: #EE7819;
}

.field-type-page.is-open div.page-title::before {
  display: none;
}

button.formSubmit.formPagePrev {
  float: left;
  background: none;
  color: #888888;
  padding: 8px 0;
  border: none;
  font-size: 16px;
}

button.formSubmit.formPagePrev:hover {
  color: #ef7c00;
}

button.formSubmit.formPagePrev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
  padding-right: 5px;
}

label {
  padding-top: 8px;
  line-height: 100%;
  margin: 0;
}

label .formCheckbox {
  margin-right: 5px;
  position: relative;
  top: -1px;
}

.field-type-page.is-page {
  border-top: 1px solid rgba(70, 76, 62, 0.2);
  padding: 20px 0;
}

.field-type-page.is-page div.page-title {
  padding: 0;
  line-height: 34px;
  font-size: 20px;
  color: #333;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
}

.field-type-page.page-0 {
  border-top: none;
  padding-top: 0;
}

.field-type-page.is-visited div.page-title::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  content: "\f00c";
  padding-right: 6px;
  font-size: 90%;
  position: relative;
  bottom: 1px;
}

.field-type-page.is-open div.page-title {
  color: #97C74E;
}

.field-type-page.is-open div.page-title::before {
  display: none;
}

/* Mod-form */
.customerForm {
  width: 100%;
}

.customerForm table {
  max-width: 700px;
  width: 100%;
}

.customerForm table td {
  padding: 5px;
  border: none;
}

.customerForm table td.fieldname {
  padding-bottom: 0;
}

.customerForm table td.fieldname label {
  margin-bottom: -5px;
}

.customerForm table td h3 {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #EAEAEA;
}

.customerForm table td.td_error {
  color: #f00;
}

.customerForm table td.linebreak label {
  display: inline-block;
  width: 100%;
  padding-bottom: 10px;
}

.customerForm table td h1 {
  font-size: 22px;
  margin: 0;
  padding: 0;
}

.customerForm table td h2 {
  font-size: 18px;
  margin: 0;
  padding: 0;
}

.customerForm table td p {
  padding: 0;
  margin: 0;
}

.owl-flex .owl-stage {
  display: flex;
  flex-wrap: wrap;
}

.owl-flex .owl-item {
  display: flex;
  height: auto !important;
}

.owl-sliderdeelnemers .owl-nav .disabled {
  opacity: 0;
}

.owl-sliderdeelnemers .owl-nav {
  margin: 0;
}

.owl-sliderdeelnemers .owl-nav [class*=owl-] {
  font-size: 30px;
  line-height: 50px;
  height: 50px;
  width: 50px;
  background: #e03b13 !important;
  margin: 0;
  padding: 0;
  color: #FFFFFF !important;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.owl-sliderdeelnemers .owl-nav [class*=owl-]:hover {
  background: #a8290a !important;
  color: #FFFFFF !important;
}

.owl-sliderdeelnemers .owl-prev {
  left: 15px;
  position: absolute;
}

.owl-sliderdeelnemers .owl-next {
  right: 15px;
  position: absolute;
}

.inlogform {
  background-color: #f9e1db;
  border-radius: 1rem;
  padding: 3rem;
}
@media (max-width: 768px) {
  .inlogform {
    padding: 1.5rem;
  }
}
.inlogform {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.containerDownloads ul {
  margin: 0 0 10px;
  padding: 0;
}

.containerDownloads ul li {
  list-style: none;
  margin: 0;
  padding: 5px 0;
}

.containerDownloads ul li a {
  text-decoration: none;
}

.containerDownloads ul li a:hover {
  text-decoration: underline;
}

.containerDownloads ul li a i {
  color: #333;
  font-size: 80%;
  position: relative;
  bottom: 2px;
}

.containerDownloads ul li a span {
  font-size: 70%;
  color: #B3B3B3;
}

.accordion-item .accordion-button {
  font-weight: bold;
}

.accordion-button:not(.collapsed) {
  background-color: #f9e1db;
  color: #e03b13;
}

.accordion-button:focus {
  z-index: 3;
  border-color: #e03b13;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(224, 59, 19, 0.1882352941);
}/*# sourceMappingURL=default.css.map */