/* Colors
===========================================================================*/
/* UIpallet colors
===========================================================================*/
/* Font family's
===========================================================================*/
/* Font size's
===========================================================================*/
/* Widths
===========================================================================*/
/* Breaks
===========================================================================*/
/* Preset
===========================================================================*/
h1 {
  margin: 0;
  font-size: 32px;
  font-family: 'Anek Malayalam', sans-serif;
  font-weight: 700;
  color: #134478;
}
h2 {
  margin: 0 0 10px;
  font-size: 32px;
  font-family: 'Anek Malayalam', sans-serif;
  font-weight: 600;
  color: #009CDF;
}
h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-family: 'Anek Malayalam', sans-serif;
  font-weight: 600;
  color: #134478;
}
h4 {
  margin: 0 0 15px;
  font-size: 18px;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #000000;
}
h5 {
  margin: 0 0 10px;
  font-size: 18px;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #000000;
}
h6 {
  margin: 0 0 10px;
  font-size: 18px;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #000000;
}
/* Basic btns
===========================================================================*/
.btn-highlight {
  background-color: #134478;
  color: #ffffff;
  padding: 10px 20px;
  font-family: 'Anek Malayalam', sans-serif;
  font-weight: 500;
  display: inline-block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.btn-highlight:hover {
  background: #134478;
  background: linear-gradient(90deg, #134478 0%, #009CDF 100%);
}
.btn-highlight-green {
  background-color: #cee9f5;
  color: #ffffff;
  padding: 10px 20px;
  font-family: 'Anek Malayalam', sans-serif;
  font-weight: 500;
  display: inline-block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.btn-highlight-green:hover {
  background: #95C127;
  background: linear-gradient(90deg, #95C127 0%, #95C127 100%);
}
.btn-highlight-yellow {
  background-color: #FCBF00;
  color: #134478;
  padding: 10px 20px;
  font-family: 'Anek Malayalam', sans-serif;
  font-weight: 500;
  display: inline-block;
}
.btn-highlight-yellow:hover {
  background: #cee9f5;
  background: linear-gradient(90deg, #cee9f5 0%, #cee9f5 100%);
}
.btn-highlight-reversed {
  border: 2px solid #134478;
  color: #134478;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 10px 30px;
  font-weight: 600;
  display: inline-block;
}
.btn-highlight-reversed:hover {
  color: #ffffff;
  background-color: #134478;
}
.btn-primary {
  background-color: #134478;
  /* Primaire achtergrondkleur */
  color: #ffffff;
  /* Tekstkleur */
  padding: 10px 30px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  /* Zorgt voor centreren van tekst */
  border-radius: 0 20px 20px 20px;
  min-width: 120px;
  /* Zorg voor een minimale breedte */
  overflow: hidden;
  /* Verberg eventuele inhoud buiten de afgeronde randen */
}
.btn-primary:hover {
  background: #134478;
  background: linear-gradient(90deg, #134478 0%, #009CDF 100%);
  /* Gradiënt op hover */
}
.btn-primary-light {
  background-color: #009CDF;
  /* Primaire achtergrondkleur */
  color: #ffffff;
  /* Tekstkleur */
  padding: 10px 30px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  /* Zorgt voor centreren van tekst */
  border-radius: 0 20px 20px 20px;
  min-width: 120px;
  /* Zorg voor een minimale breedte */
  overflow: hidden;
  /* Verberg eventuele inhoud buiten de afgeronde randen */
}
.btn-primary-light:hover {
  background: #009CDF;
  background: linear-gradient(90deg, #009CDF 0%, #134478 100%);
  /* Gradiënt op hover */
}
.btn-secondary {
  background-color: #009CDF;
  color: #ffffff;
  padding: 10px;
  font-weight: bold;
  display: inline-block;
}
.btn-secondary:hover {
  background: #134478;
  background: linear-gradient(90deg, #134478 0%, #009CDF 100%);
}
.btn-secondary-reversed {
  background-color: #ffffff;
  color: #009CDF;
  border: 2px solid #009CDF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 10px 40px;
  font-weight: 500;
  display: inline-block;
  font-size: 16px;
}
.btn-secondary-reversed:hover {
  background-color: #009CDF;
  color: #ffffff;
}
.ul-checkmark-style {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}
.ul-checkmark-style li {
  display: flex;
  align-items: center;
}
.ul-checkmark-style li::before {
  content: '';
  width: 30px;
  height: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 10px;
}
.ul-checkmark-style li:nth-child(3n+1):before {
  background-image: url("../images/KB Checkmark Blauw.png");
}
.ul-checkmark-style li:nth-child(3n+2):before {
  background-image: url("../images/KB Checkmark Groen.png");
}
.ul-checkmark-style li:nth-child(3n+3):before {
  background-image: url("../images/KB Checkmark Geel.png");
}
/* Header wrapper
===========================================================================*/
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
  transition: all 0.5s;
  background-color: #ffffff;
  padding: 20px 10px;
  height: 100%;
  box-sizing: border-box;
}
.header-wrapper .inner-header-wrapper {
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 961px) {
  .header-wrapper {
    height: 135px;
  }
}
@media screen and (max-width: 960px) {
  .header-wrapper {
    height: 145px;
    padding: 0 0 20px 10px;
  }
}
/* Content wrapper
===========================================================================*/
.content-wrapper {
  padding-top: 94px;
}
@media screen and (min-width: 721px) {
  .content-wrapper {
    padding-bottom: 500px;
  }
}
/* Footer wrapper
===========================================================================*/
.footer-wrapper {
  clear: both;
  overflow: hidden;
  background-color: #ffffff;
  color: #000000;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 16px;
}
@media screen and (min-width: 721px) {
  .footer-wrapper {
    height: 500px;
  }
}
@media screen and (max-width: 720px) {
  .footer-wrapper {
    height: auto;
    position: relative;
  }
}
