/* Font */
@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Arvo:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Satisfy&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lobster&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", Arial, Helvetica, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

p {
  font-size: 18px;
  line-height: 1.8em;
  font-weight: 350;
}

* h1,
* h2,
* h3,
* h4,
* h5,
* h6 {
  font-family: "Teko", sans-serif !important;
  /* text-transform: uppercase; */
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 22px;
}

h1 {
  /* color: #6cb744; */
  font-weight: 700;
  font-size: 20px;
  font-size: 30px;
  margin-bottom: 1em;
}

.h1-section {
  margin-bottom: 4em;
}

h2 {
  font-size: 26px;
  /* font-family: "Roboto", sans-serif !important; */
}

h3 {
  color: #478a20;
  font-size: 22px;
}

.h3-lato {
  font-family: "Lato", Arial, Helvetica, sans-serif !important;
}

.center-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-top: 3em;
}

.small-italic {
  font-style: italic;
  font-size: 14px;
}

.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.bronvermelding {
  font-size: 10px;
}

.highlight {
  background-color: #a3cc00b9;
  /* Of een andere opvallende kleur */
  transition: background-color 0.5s ease-out;
}

/* links */

/* unvisited link */
/* .link:link {
  color: #000000 !important;
} */

/* visited link */
/* .link:visited {
  color: green !important;
} */

.link {
  text-decoration: none !important;
}

.link:hover {
  color: #3f4f00 !important;
}

/* Quotes */
.quote-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote {
  font-size: 30px;
  margin: 1em auto 0.5em auto;
  font-family: "Lato", "Arial";
  max-width: 38em;
  text-align: center;
  color: #000000;
}

.quote-name {
  font-size: 20px;
  margin-bottom: 7em;
}

.quote-name a {
  text-decoration: none;
  color: black;
}

.fa-quote-right {
  font-size: 80px;
}

.quote-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10em;
  color: #2c3601;
}

/* .btn {
  border-radius: 20px;
} */

.btn-primary {
  background-color: #a7c714;
  border: none;
  color: #000000;
}

.card {
  box-shadow: none;
}

@media (max-width: 768px) {
  p {
    font-size: 16px;
  }

  .fa-quote-right {
    font-size: 60px;
  }
}

@media (max-width: 460px) {
  p {
    font-size: 16px;
  }

  .quote {
    font-size: 20px;
  }

  .vacature-ul {
    font-size: 16px !important;
  }

  .bronvermelding {
    font-size: 10px;
  }
}

.img-centreren {
  margin-left: 0;
  margin-right: 0;
}

/**************/
/* dark theme */
/**************/
/* @media (prefers-color-scheme: dark) { */

body.dark-mode .toggleThemeBtn {
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none;
}

body.dark-mode .toggleThemeBtn:hover {
  background-color: transparent !important;
  border-color: transparent !important;
}

body.dark-mode .fa-quote-right {
  color: #9c56f3;
}

body.dark-mode {
  background-color: #292929;
  color: #eaeaea;
}

body.dark-mode body {
  background-color: #292929;
  color: #eaeaea;
}

body.dark-mode .card {
  background-color: #292929;
  color: #eaeaea;
}

body.dark-mode .btn-primary {
  background-color: #a7c714;
  border-color: #a7c714;
}

body.dark-mode .navbar-nav .nav-link:hover {
  color: #bb86fc;
}

body.dark-mode .fa-moon {
  color: #9c56f3;
}

body.dark-mode .breadcrumb-item {
  color: #d8d7d7;
}

body.dark-mode .breadcrumb-item a {
  color: #d8d7d7;
}
body.dark-mode .breadcrumb-item a:hover {
  color: #a7c714;
}

body.dark-mode .breadcrumb-item + .breadcrumb-item::before {
  color: white;
}

body.dark-mode .accordion-button::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #ffffff;
  transition: transform 0.3s ease;
}

body.dark-mode .accordion-button.collapsed::after {
  border-top: 6px solid #ffffff;
}

body.dark-mode .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

body.dark-mode .card {
  color: #292929;
}

body.dark-mode .card-body {
  color: white;
}

body.dark-mode .logos {
  background-color: #d8d7d7;
}

body.dark-mode .quote {
  color: #ffffff;
}

body.dark-mode .quote-name a {
  color: #ffffff;
}

body.dark-mode .voordelen {
  background-color: transparent !important;
}

body.dark-mode .voordelen p {
  color: white;
}

body.dark-mode .voordelen p:hover {
  color: #a7c714;
}

body.dark-mode .card-content .function {
  color: #000000 !important;
}

body.dark-mode .card-content .description {
  color: #000000;
}

body.dark-mode .swiper-button-next::after,
body.dark-mode .swiper-button-prev::after {
  color: #eaeaea;
  font-size: 24px;
}

body.dark-mode .swiper-pagination-bullet {
  background-color: #ffffff !important;
}

body.dark-mode .swiper-pagination-bullet-active {
  background-color: #eaeaea !important;
}

body.dark-mode .accordion-button {
  background-color: #292929;
  color: #eaeaea;
}

body.dark-mode .accordion-button::before {
  color: #eaeaea !important;
}

body.dark-mode .accordion-body {
  background-color: #292929;
  color: #eaeaea;
}

body.dark-mode .text-muted {
  color: #eaeaea !important;
}

body.dark-mode .streep {
  display: none !important;
}

body.dark-mode .overons-streep {
  display: block !important;
}

body.dark-mode .custom-navbar,
body.dark-mode .navbar-nav {
  background-color: #ffffff !important;
}

body.dark-mode .offcanvas {
  background-color: #292929;
}

body.dark-mode .mogelijkheden-iconen .card:hover {
  background-color: #494949 !important;
}

body.dark-mode .systeem-interesse .lap-tekst {
  background-color: #494949 !important;
}

body.dark-mode .match-svg {
  content: url("images/over-ons-img/match-icon-wit.png");
  /* Gebruik hier de witte versie van de afbeelding */
}

body.dark-mode .informatie-cards .card-title {
  color: #9c56f3;
}

body.dark-mode .informatie-cards .card {
  background-color: #494949;
}

body.dark-mode .informatie-cards .svg-inline--fa {
  color: #eaeaea;
}

body.dark-mode .grijze-section {
  background-color: #494949 !important;
}

body.dark-mode #team {
  background-color: #494949 !important;
}

body.dark-mode .contact-formulier label {
  color: #212529;
}

body.dark-mode .contact-formulier input {
  color: #212529;
}

.dark-mode .offcanvas {
  background-color: #292929;
  color: #eaeaea;
}

.dark-mode .offcanvas-header {
  background-color: #292929;
  color: #eaeaea;
}

.dark-mode .offcanvas-body {
  background-color: #292929;
  color: #eaeaea;
}

@media (max-width: 991px) {
  .dark-mode .offcanvas .navbar-nav {
    background-color: #292929 !important;
  }

  .dark-mode .offcanvas .nav-link {
    color: #eaeaea;
  }
}

.dark-mode .offcanvas .btn-close {
  filter: invert(1);
}

.dark-mode .dropdown-menu {
  background-color: #292929;
  color: #eaeaea;
}

/*************/
/* Navigatie */
/*************/
.navbar {
  margin-bottom: 1em;
}

.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 3.5rem;
  background: #a7c714;
}

.navLink {
  text-decoration: none;
  list-style-type: none;
  color: black;
  z-index: 1;
  margin-bottom: 1em !important;
}

.navbar-nav .nav-link {
  /* font-family: 'Arvo', serif; */
  font-family: "Lato", serif;
  color: #000000;
}

.navbar-nav .nav-link:hover {
  color: #a7c714;
}

.navbar-nav .active {
  color: #2c3601 !important;
  font-weight: bold;
}

/* dropdown */
.dropdown-toggle {
  padding: 0;
  background: none;
  border: none;
  background-color: transparent !important;
  box-shadow: none;
}

.dropdown-menu {
  min-width: 60px !important;
}

#dropdownMenuButton1.btn.btn-secondary.dropdown-toggle.show::after {
  color: black;
}

.dropdown-toggle::after {
  color: black;
}

.dropdown-toggle:hover,
.dropdown-toggle:active {
  background: none;
  border: none;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-link,
.btn {
  align-items: center;
}

/* fa-moon  */
.fa-moon {
  color: #292929;
  border: none;
}

.nav-item {
  margin: 0 !important;
  padding: 0 !important;
}

.toggleThemeBtn {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;

  border: none;
  font-size: 30px;
  padding: 0;
  margin-left: 10px;
}

.toggleThemeBtn svg {
  margin: 0 !important;
  padding: 0 !important;
}

.flag img {
  width: 30px;
  margin-bottom: 3px;
}

.nav-flag {
  /* margin-top: 9px;
  margin-left: 1em; */
  justify-content: center;
  align-items: center;
  margin: auto;
}

.toggleThemeBtn {
  box-shadow: none !important;
}

.toggleThemeBtn:hover {
  background: none;
  box-shadow: none !important;
}

.toggleThemeBtn:active {
  background: none;
  box-shadow: none !important;
}

.custom-navbar {
  border-radius: 80px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 460px) {
  .navbar.mx-5 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .navbar-brand img {
    width: 7em;
  }
}

/* Alert  */

.alert {
  position: sticky;
  top: 0;
  z-index: 1;
}

/* .alert-dismissible {
  padding-right: 3rem;
} */

.close {
  background: none;
  border: none;
  margin-left: 2em;
}

@media (max-width: 768px) {
  .close {
    margin-right: 0;
  }

  .alert-dismissible {
    padding-right: 1rem;
  }
}

/* Breadcrumbs  */
.breadcrumb {
  padding-left: 4em;
}

.breadcrumbs {
  margin-bottom: 6em;
}

.breadcrumb-item a {
  text-decoration: none;
  color: #212529bf;
}

.over-ons-breadcrumbs .breadcrumbs {
  margin-bottom: 0px !important;
}

/********/
/* Home */
/********/
.plant {
  max-width: 380px;
}

.home-banner img {
  width: 80%;
}

/* .home-banner{
  margin-bottom: 10em;
} */

/* .ulFlex {
  display: flex;
  justify-content: space-around;
  background-color: white;
  border-radius: 50px;
  z-index: 1;
  margin: 2em 5em 6em 5em;
  padding: 1em 3em 1em 3em;
}

.ulFlex li {
  list-style-type: none;
} */

/* Over Match Online en voordelen*/
.voordelen,
.over-ons-section {
  margin-top: 1em;
  margin-bottom: 10em;
  background-color: #e9eaec;
}

.voordelen .erp-icon {
  color: #a7c714;
  font-size: 50px;
  transition: font-size 0.5s;
}

/* .voordelen .erp-icon:hover{
  font-size: 60px;
} */

/* .voordelen p:hover{
  font-size: 20px;
} */

/* .voordelen .erp-icon-met-tekst:hover {
  transform: scale(1.1);
  transition-duration: .3s;
} */

.voordelen .row {
  width: 100%;
}

.voordelen p {
  font-weight: 400;
}

.matchonline-header {
  font-size: 40px;
}

@media (min-width: 992px) {
  .voordelen .col-lg-2 {
    margin-top: 3em;
    margin-bottom: 3em;
  }
}

@media (max-width: 992px) {
  .voordelen .erp-icon-met-tekst p {
    font-size: 14px;
  }

  .voordelen .erp-icon {
    font-size: 40px;
  }

  .voordelen .col-lg-2 {
    margin-block: 1em;
  }
}

@media (max-width: 768px) {
  .voordelen .erp-icon-met-tekst p {
    font-size: 12px;
  }

  .voordelen .erp-icon {
    font-size: 30px;
  }

  .matchonline-header {
    font-size: 25px;
  }
}

@media (max-width: 575.98px) {
  .voordelen .container {
    padding-right: 0;
  }

  .voordelen .row > div[class*="col-"] {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

/* home hover mockup img  */
.img-hover .container {
  position: relative;
  width: 50%;
}

@media (max-width: 768px) {
  .img-hover .container {
    width: 90%;
  }
}

.img-hover .image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: 0.5s ease;
  backface-visibility: hidden;
}

.img-hover .middle {
  transition: 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.img-hover:hover .image {
  opacity: 0.3;
}

.img-hover:hover .middle {
  opacity: 1;
}

.img-hover .text {
  background-color: #374501;
  color: white;
  font-size: 16px;
  padding: 16px 32px;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
  border: 2px solid #374501;
  transition: all 0.3s ease;
}

.img-hover .text:hover {
  background-color: #2a3e28;
  color: #f0f0f0;
  transform: scale(1.05);
}

/* .voordelen-heading {
  margin-bottom: 2em;
  margin-top: 6em;
}

.voordelen-img {
  width: 900px;
}
*/

/*
.vink-en-vinkjes-tekst {
  margin-bottom: 40px;
}

.vinkjes-tekst {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


@media (max-width: 991px) {
  .vinkjes-tekst {
    font-size: 14px !important;
  }

  .vink {
    width: 2em;
    margin-right: 1em;
  }

  .voordelen-img {
    width: 400px;
  }

  .vink-en-vinkjes-tekst {
    margin-bottom: 20px !important;
    display: flex;
    justify-content: flex-start;
    margin: auto;
    width: 50%;
  }
} */

/* @media (max-width: 767px) {
  .vink-en-vinkjes-tekst {
    width: 60%;
  }
} */

/* Logos */
@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
}

.logos:after {
  right: 0;
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 50px;
  margin: 0 40px;
}

/************/
/* Over ons */
/************/

/* .container-overons-header {
  position: relative;
} */

/* .container-overons-header img{
  margin-top: 0 !important;
} */

.overons-header {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translate(-15%, -50%);
  color: white;
  font-size: 80px;
}

/* .overons-header2 {
  margin-top: 4em;
} */

/* .geschiedenis {
  margin-top: 40em;
} */

/* .infographic {
  float: right;
  padding: 0 0 3px 3px;
  width: 20em;
  max-width: 100%;
}

.infographic-met-tekst .tekst2 {
  margin-top: 9em;
} */

.tekst-div {
  display: flex;
  max-width: 70em;
}

.advisorlogo {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 5em;
}

.overons-logos {
  display: flex;
  align-items: center;
  gap: 1em;
}

.overons-img img {
  margin-top: 0 !important;
}

.informatie-cards {
  margin-top: 10em;
}

.informatie-cards .card {
  height: 200px;
  width: 200px;
}

.informatie-cards .lc-block {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.informatie-cards .svg-inline--fa {
  font-size: 50px;
  color: #292929;
}

.informatie-cards h5 {
  font-size: 30px;
  /* color: #007b5e; */
  /* color: #292929; */
  color: #2c3601;
}

.informatie-cards .match-svg {
  width: 65px;
}

.informatie-cards .card-body {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

@media (max-width: 1260px) {
  .overons-img {
    display: none !important;
  }
  .collegaswiper-header {
    margin-top: 3em !important;
  }

  .overons-header {
    font-size: 30px;
  }

  .streep {
    background-color: #a7c714;
  }

  .container-overons-header img {
    margin-top: 5em;
  }

  .streep > * {
    display: none;
  }

  .streep::after {
    content: "";
    display: block;
    height: 20px;
  }
}

@media (min-width: 1260px) {
  .overons-header2 {
    display: none;
  }

  /* .overons-streep{
background-color: transparent;  } */
}

/* Timeline */
.timeline {
  background-color: #eee;
}

.timeline h1 {
  padding-top: 3em;
}

.timeline ul {
  padding: 50px 0;
}

.timeline ul li {
  position: relative;
  list-style-type: none;
  width: 6px;
  background-color: #d0e79f;
  margin: 0 auto;
  padding-top: 50px;
}

.timeline ul li::after {
  background: #d0e79f;
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.timeline ul li div {
  position: relative;
  width: 400px;
  padding: 15px;
  border-radius: 5px;
  bottom: 0;
  background: #fff;
}

.timeline ul li:nth-child(odd) div {
  left: 45px;
}

.timeline ul li:nth-child(even) div {
  left: -445px;
}

.timeline time {
  font-weight: bold;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

.timeline ul li div {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.timeline ul li:nth-child(odd) div {
  transform: translate3d(175px, 0, 0);
}

.timeline ul li:nth-child(even) div {
  transform: translate3d(-175px, 0, 0);
}

.timeline ul li.show div {
  transform: none;
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 900px) {
  .timeline ul li div {
    width: 250px;
  }
  .timeline ul li:nth-child(even) div {
    left: -289px;
    /*250+45-6*/
  }
}

.timeline .img-timeline1 {
  width: 100%;
  object-fit: cover;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
}

/* 

.timeline {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 700px;
  position: relative;
}

.timeline__content-title {
  font-weight: normal;
  font-size: 66px;
  margin: -10px 0 0 0;
  transition: 0.4s;
  padding: 0 10px;
  box-sizing: border-box;
  color: #fff;
}

.timeline__content-desc {
  margin: 0;
  font-size: 15px;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  line-height: 25px;
}

.timeline:before {
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  content: "";
  background: rgba(255, 255, 255, 0.07);
}

.timeline-item {
  padding: 40px 0;
  opacity: 0.3;
  filter: blur(2px);
  transition: 0.5s;
  box-sizing: border-box;
  width: calc(50% - 40px);
  display: flex;
  position: relative;
  transform: translateY(-80px);
}

@media (max-width: 767px) {
  .timeline:before {
    padding: 0 0 !important;
  }

  .timeline-item {
    width: auto !important; 
    padding: 0 !important;
  }

  .timeline__content {
    padding-bottom: 13em;
  }
}

.timeline-item:before {
  content: attr(data-text);
  letter-spacing: 3px;
  width: 100%;
  position: absolute;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  border-left: 2px solid rgba(255, 255, 255, 0.5);
  top: 70%;
  margin-top: -5px;
  opacity: 0;
  right: calc(-100% - 56px);
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
}

.timeline-item:nth-child(even):before {
  right: auto;
  text-align: right;
  left: calc(-100% - 56px);
  padding-left: 0;
  border-left: none;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  padding-right: 15px;
}

.timeline-item--active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

.timeline-item--active:before {
  top: 50%;
  transition: 0.3s all 0.2s;
  opacity: 1;
}

.timeline-item--active .timeline__content-title {
  margin: -50px 0 20px 0;
}

@media only screen and (max-width: 767px) {
  .timeline-item {
    align-self: baseline !important;
    width: 100%;
    padding: 0 30px 150px 80px;
  }

  .timeline-item:before {
    left: 10px !important;
    
    text-align: center !important;
    border: none !important;
    padding-bottom: 20em;
  }

  .timeline-item:last-child {
    padding-bottom: 40px;
  }
  .timeline-item--active:before {
    top: 75%;
  }
}

.timeline__img {
  max-width: 100%;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
}

.timeline-container {
  width: 100%;
  position: relative;
  padding: 80px 0;
  background-attachment: fixed;
  background-size: cover;
}

.timeline-container:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(99, 99, 99, 0.8);
  content: "";
}

.timeline-header {
  width: 100%;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.timeline-header__title {
  color: #fff;
  font-size: 46px;
  font-weight: normal;
  margin: 0;
}

.timeline-header__subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  letter-spacing: 5px;
  margin: 10px 0 0 0;
  font-weight: normal;
}

.demo-footer {
  padding: 60px 0;
  text-align: center;
}

.demo-footer a {
  color: #999;
  display: inline-block;
}

.timeline-container:before {
background-color: #effac4;
} */

/****************/
/* Match Online */
/****************/

.scannerpng {
  width: 8.8em;
  padding: 1em;
}

.infographic1 {
  height: auto;
  max-width: 100%;
  width: 10em;
  margin-right: 2em;
}

@media (max-width: 1019px) {
  .tekst-infographic1 .container-fluid {
    flex-direction: column;
  }
}

.matchonline-iconen .erp-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.erp-icon-met-tekst {
  display: flex;
  flex-direction: column;
}

.erp-icon-met-tekst a {
  text-decoration: none;
  color: #212529;
}

.erp-icon-met-tekst a:hover {
  color: #a7c714;
}

.erp-icon-met-tekst a:first-child:hover .erp-icon,
.erp-icon-met-tekst a:first-child:hover ~ a p {
  color: #a7c714;
}

.erp-icon-met-tekst p {
  font-size: 18px;
  text-align: justify;
}

.erp-en-webshop .align-cards {
  justify-content: center;
}

@media (max-width: 990px) {
  .erp-en-webshop .col-lg-4 {
    margin-bottom: 3em;
  }
}

/***************/
/* ERP systeem */
/***************/

.tekst-infographic {
  display: flex;
}

.infographic2 {
  width: 15em;
  max-width: 100%;
  height: auto;
  margin: 3em;
  text-align: right !important;
}

@media (max-width: 1019px) {
  .tekst-infographic {
    flex-direction: column;
  }

  .infographic2 {
    display: none;
  }
}

.matchonline-iconen .container {
  margin-top: 7em;
  margin-bottom: 4em;
}

.mogelijkheden-iconen .erp-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.mogelijkheden-iconen h5 {
  font-size: 16px;
}

.mogelijkheden-iconen .card:hover,
.mogelijkheden-iconen .card.active {
  background-color: #a7c714;
  color: white;
  cursor: pointer;
}

.align-cards {
  display: flex;
}

.erp-en-webshop {
  margin-bottom: 7em;
}

.card {
  flex: 1;
}

.aanvullende-webshop-h3 {
  margin-top: 3em;
}

.aanvullende-webshop-modules {
  margin-top: 1em;
  margin-bottom: 3em;
  display: flex;
}

.aanvullende-webshop-modules .accordion-body {
  font-weight: 370;
}

.active-icon {
  color: #478a20;
}

.mogelijkheden-card .row {
  margin-bottom: 6em;
}

.lap-tekst p {
  font-size: 18px;
}

.systeem-interesse {
  flex-direction: column;
}

.systeem-interesse .lap-tekst {
  background-color: #d6e3a1;
  padding: 3em 10em 3em 10em;
}

@media (max-width: 510px) {
  .lap-tekst {
    font-size: 20px;
  }
  .systeem-interesse .lap-tekst {
    padding: 2em 1em 2em 1em;
  }
}

@media (min-width: 765px) {
  .img-lg {
    max-width: 300px;
  }

  .position-absolute {
    right: 0;
  }
}

@media (max-width: 764px) {
  .img-lg {
    max-width: 100%;
  }

  .img-lg img {
    margin-bottom: 2em;
  }

  .position-absolute {
    left: 0;
    right: 0;
    text-align: center;
  }
}

#infoImage {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#infoBlock {
  text-align: left;
  padding: 20px;
}

.accordion-item {
  border-color: transparent !important;
}

/* .aanvullende-webshop-modules .accordion-flush{
  display: flex;
} */

/* Collega swiper */
@media (max-width: 768px) {
  .logos-slide img {
    height: 30px;
    margin: 0 10px;
  }
}

.functies a {
  position: relative;
  bottom: 20px;
  right: 20px;
}

.custom-slider-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 3em;
}

.slide-container {
  max-width: 1120px;
  width: 100%;
  padding: 40px;
}

/* card */
.card-body {
  position: relative;
  /* max-width: 40em; */
}

.card-content p {
  font-weight: 500;
}

.custom-card {
  border-radius: 25px;
  background-color: #fff;
  width: 320px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin: 3em 0 3em 0;
}

.image-content,
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}

.image-content {
  row-gap: 5px;
  position: relative;
  padding: 25px 0;
}

.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #c0d976;
  left: 0;
  top: 0;
  border-radius: 25px 25px 0 0;
}

.card-image {
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}

.card-image .card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #d0e79f;
}

.name {
  font-size: 25px;
  font-weight: 650;
  color: #374501;
  padding-top: 15px;
  text-align: center;
}

.function {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
}

.description {
  font-size: 16px;
  text-align: center;
}

/* swiper */
.swiper-slide {
  height: auto !important;
}

.swiper-navBtn {
  color: black !important;
  transition: color 0.3s ease;
}

.swiper-navBtn:hover {
  color: #374501;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 40px;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

.swiper-pagination-bullet {
  background-color: #a7c714;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #374501;
}

@media screen and (max-width: 768px) {
  .swiper.navBtn {
    display: none;
  }

  .slide-content {
    margin: 0 10px;
  }
}

@media (max-width: 425px) {
  .swiper-button-next::after,
  .swiper-button-prev::after {
    display: none;
  }
}

/**************/
/* Werken bij */
/**************/

.vacature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vacature-card p {
  font-size: 16px;
}

.vacature-ul {
  font-size: 20px;
  font-weight: 300;
}

.custom-quote-container {
  margin-bottom: 8em;
  margin-top: 8em;
}

.vink {
  width: 3em;
  margin-right: 3em;
}

.vink-vacature {
  width: 20px;
  height: auto;
}

/* vacature Banner */
.vacature-banner .banner {
  background-color: #91ad10;
  text-align: center;
  color: white;
}

.vacature-banner .banner-white {
  text-align: center;
}

.vacature-banner .banner img {
  width: 30px;
  margin: 0 10px 12px 0;
}

.vacature-banner .banner-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vacature-banner .banner-container {
  padding: 35px 0 35px 0;
}

.grijze-section {
  padding: 60px 0;
  background-color: #eee !important;
}

#team {
  background: #eee !important;
  padding: 60px 0;
}

#team .card-text {
  color: #212529;
}

.btn-primary:hover,
.btn-primary:focus {
  /* background-color: #108d6f;
  border-color: #108d6f; */
  background-color: #1a2101;
  box-shadow: none;
  outline: none;
  color: #ffffff;
}

.btn-primary {
  color: #fff;
  /* background-color: #007b5e;
  border-color: #007b5e; */
  background-color: #2c3601;
}

section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

#team .card {
  border: none;
  background: #ffffff;
  height: 345px;
}

.image-flip:hover .backside,
.image-flip.hover .backside {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg);
  border-radius: 0.25rem;
}

.image-flip:hover .frontside,
.image-flip.hover .frontside {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.mainflip {
  -webkit-transition: 1s;
  -webkit-transform-style: preserve-3d;
  -ms-transition: 1s;
  -moz-transition: 1s;
  transform: perspective(1000px);
  -moz-transform: perspective(1000px);
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transition: 1s;
  transform-style: preserve-3d;
  position: relative;
}

.frontside {
  position: relative;
  -webkit-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg);
  z-index: 2;
  margin-bottom: 30px;
}

.backside {
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
  -moz-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
  box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
}

.frontside,
.backside {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: 1s;
  -webkit-transform-style: preserve-3d;
  -moz-transition: 1s;
  -moz-transform-style: preserve-3d;
  -o-transition: 1s;
  -o-transform-style: preserve-3d;
  -ms-transition: 1s;
  -ms-transform-style: preserve-3d;
  transition: 1s;
  transform-style: preserve-3d;
}

.frontside .card,
.backside .card {
  min-height: 312px;
}

.backside .card a {
  font-size: 18px;
  color: #007b5e !important;
}

.frontside .card .card-title,
.backside .card .card-title {
  color: #007b5e !important;
}

.frontside .card .card-body img {
  border-radius: 2%;
}

/*********************/
/* Contact & Support */
/*********************/

.banner-container {
  text-align: left;
}

.banner-white {
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-flex {
  display: flex;
  align-items: center;
  justify-content: start;
}

.map-openingstijden-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 5em;
  margin-top: 5em;
  padding: 3em 0 3em 0;
  background-color: #eee;
}

.map-openingstijden {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}

.vertical {
  border-left: 5px solid #a7c714;
  height: 450px;
  margin-top: 0em;
  margin-left: 3em;
  margin-right: 3em;
}

.map-openingstijden iframe {
  max-width: 600px;
  flex: 1 1 45%;
}

.openingstijden {
  max-width: 400px;
  margin: 0 20px;
}

.openingstijden p {
  line-height: 1em;
}

.openingstijden-regel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

.openingstijden-regel .dag {
  flex: 0 1 auto;
  margin-right: 10px;
}

.openingstijden-regel .tijd {
  flex: 1 0 auto;
  text-align: right;
}

.dag,
.tijd {
  margin: 0;
}

@media screen and (max-width: 690px) {
  .openingstijden {
    max-width: 60% !important;
  }
}

@media screen and (max-width: 1024px) {
  .map-openingstijden iframe,
  .openingstijden {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 20px 0;
  }

  .vertical {
    display: none;
  }

  .servicedesk-card {
    flex-direction: column;
  }

  .openingstijden {
    margin-left: auto;
    margin-right: auto;
    max-width: 40%;
  }

  .openingstijden h2 {
    font-size: 20px;
  }
}

.Arn-Jan {
  display: block;
  margin: auto;
  width: 300px;
}

@media screen and (min-width: 1025px) {
  .Arjn-Jan {
    margin-left: 2em;
  }
}

.servicedesk-card {
  align-items: center;
}

.accordion-container {
  max-width: 1210px;
  margin: 0 auto;
}

.accordion-container button {
  text-decoration: none;
  color: #374501;
}

.accordion-button:hover {
  background-color: #a7c714;
}

.accordion-button:not(.collapsed) {
  color: #000000;
  background-color: #a7c714;
}

.accordion-button {
  font-weight: 500 !important;
  color: #000000;
}

/* #info-img {
  max-width: 100%;
  width: 10em;
  height: auto;
  display: block;
  margin: 0 auto;
} */

/* .card-body {
  text-align: center; 
} */

/**********/
/* Nieuws */
/**********/
.news-item {
  margin-bottom: 3em;
}

.nieuws-ul {
  font-size: 20px;
  font-weight: 300;
}

table {
  height: 153px;
  width: 353;
}

.img-centreren {
  display: flex;
  justify-content: center;
}

/* table, th, td  */

/********************/
/* Contactformulier */
/********************/
.btn-send {
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  width: 80%;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: none;
  border-radius: 0;
  font-size: 16px;
  height: auto;
  margin: 0;
  outline: 0;
  padding: 15px;
  width: 100%;
  background-color: #e8eeef;
  color: #8a97a0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03) inset;
  margin-bottom: 30px;
}

.form-group select {
  padding: 6px;
  height: 32px;
  border-radius: 2px;
}

input.btn {
  padding: 19px 39px 18px 39px;
  color: #fff;
  background-color: #a7c714;
  font-size: 18px;
  text-align: center;
  font-style: normal;
  border-radius: 5px;
  width: 100%;
  border: 1px solid #83a301;
  border-width: 1px 1px 3px;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.1) inset;
  margin-bottom: 10px;
}

.contact-formulier .card {
  margin-bottom: 30px;
  border: none;
}

.help-block.with-errors {
  color: #ff5050;
  margin-top: 5px;
}

form {
  margin: 10px auto;
  padding: 10px 20px;
  background: #f4f7f8;
  border-radius: 8px;
}

/**********/
/* Footer */
/**********/

.media-icons {
  font-size: 30px;
}

.svg-inline--fa {
  height: none !important;
}

.contact-footer a {
  text-decoration: none;
  color: white;
  margin-left: 10px;
  font-size: 14px !important;
}

.copyright {
  font-size: 14px;
}

.copyright-container p {
  font-size: 14px;
}

.copyright-container h2 {
  font-size: 20px !important;
}

/* .footer-documenten {
  position: absolute;
} */

.footer-documenten p {
  margin: 0 !important;
  font-size: 16px;
}

.linkedin-link {
  color: white;
  text-decoration: none;
}

.linkedin-link:hover {
  color: #3f4f00 !important;
}

.bovenkant-footer .row {
  padding-bottom: 1em;
}

.bovenkant-footer .row p {
  font-size: 14px !important;
}

.text-center {
  justify-content: space-between;
}

.background-grey {
  background-color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 470px) {
  .text-center {
    margin-left: 0;
    margin-right: 0;
    align-items: center;
    justify-content: center !important;
  }
}

@media (min-width: 1199px) {
  .bottom-footer {
    display: block;
  }
}

/* DEMO */
.demo-footer {
  padding: 60px 0;
  text-align: center;
}

.demo-footer a {
  color: #999;
  display: inline-block;
  font-family: "Cardo";
  /* content-font */
}
