:root {
  --muted-foreground: #737373;
  --page-padding-top: 3.75rem;
  --padding-y: 6.25rem;
  --padding-x: 4rem;
  --foreground: #1a2e05;
  --radius-button: 999px;
  --brand: #a3e635;
  --brand-dark: #84cc16;
  --border: #e4e4e7;
  --radius-card: .75rem;
  --radius-full: 999px;
  --background: white;
  --muted: whitesmoke;
  --white: white;
  --radius-card-large: 1.25rem;
  --radius-card-small: .5rem;
  --brand-foreground: #1a2e05;
}

body {
  color: var(--muted-foreground);
  letter-spacing: -.025em;
  font-family: Intervariable, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: bold;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}

p {
  margin-bottom: 10px;
}

strong {
  font-weight: bold;
}

.global-css {
  display: none;
}

.hero-section {
  padding-top: var(--page-padding-top);
  padding-bottom: var(--padding-y);
}

.hero-section.padding-bottom-0 {
  padding-bottom: 0;
}

.container {
  padding-right: var(--padding-x);
  padding-left: var(--padding-x);
  width: 100%;
  max-width: 89.25rem;
  margin-left: auto;
  margin-right: auto;
}

.container.sm {
  max-width: 40.625rem;
}

.container.md {
  max-width: 46.875rem;
}

.header-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 37.5rem;
  display: flex;
}

.header-wrapper.centered {
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  max-width: 37rem;
  margin-left: auto;
  margin-right: auto;
}

.header-wrapper.centered.hero-wide {
  max-width: 48rem;
}

.h1 {
  color: var(--foreground);
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, Arial, sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.05;
}

.button-primary {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border-radius: var(--radius-button);
  background-color: var(--brand);
  color: var(--foreground);
  font-variation-settings: "wght" 430;
  letter-spacing: -.025em;
  border: 1px solid #84cc16;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  margin-top: auto;
  padding: .5rem 1rem;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.button-primary:hover {
  background-color: var(--brand-dark);
}

.button-primary.small {
  height: 2.25rem;
  padding-left: .75rem;
  padding-right: .75rem;
  font-size: .9375rem;
}

.button-ghost {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border-radius: var(--radius-button);
  color: var(--muted-foreground);
  font-variation-settings: "wght" 430;
  letter-spacing: -.025em;
  background-color: #a3e63500;
  border: 1px solid #fff0;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.button-ghost:hover {
  border-color: var(--border);
  color: var(--foreground);
}

.button-ghost.small {
  height: 2.25rem;
  padding-left: .75rem;
  padding-right: .75rem;
  font-size: .9375rem;
}

.size-full {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.icon-16 {
  flex: none;
  width: 1rem;
  height: 1rem;
  display: inline-flex;
}

.h4 {
  color: var(--foreground);
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.05;
}

.section {
  padding-top: var(--padding-y);
  padding-bottom: var(--padding-y);
}

.section.border-top {
  border-top: 1px solid var(--border);
}

.section.muted-card {
  border-radius: var(--radius-card);
  background-color: var(--muted);
}

.section.border-y {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section.padding-top-none {
  padding-top: 0;
}

.h2 {
  color: var(--foreground);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, Arial, sans-serif;
  font-size: 3rem;
  line-height: 1.05;
}

.h2.small {
  font-size: 2.75rem;
}

.h3 {
  color: var(--foreground);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, Arial, sans-serif;
  font-size: 1.625rem;
  line-height: 1.05;
}

.button-outline {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-button);
  color: var(--muted-foreground);
  font-variation-settings: "wght" 430;
  letter-spacing: -.025em;
  background-color: #a3e63500;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.button-outline:hover {
  border-color: var(--border);
  color: var(--foreground);
}

.button-outline.small {
  height: 2.25rem;
  padding: 0 .75rem;
  font-size: .9375rem;
}

.inline-link {
  color: var(--foreground);
  font-variation-settings: "wght" 470;
  text-underline-offset: .3em;
}

.cta-card {
  padding: var(--padding-y) var(--padding-x);
  border-radius: var(--radius-card);
  background-color: var(--muted);
}

.cta-card-header-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 36.25rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.cta-card-actions-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: flex;
}

.text-sm {
  font-size: .875rem;
}

.footer-content-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-company-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-logo {
  object-fit: contain;
  width: 8.9375em;
  height: 2.1875em;
}

.footer-captions-wrapper {
  border-top: 1px solid var(--border);
  justify-content: space-between;
  align-items: center;
  margin-top: 3.75rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  font-size: .875rem;
  display: flex;
}

.footer-captions-menu-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  display: flex;
}

.footer-menu-link {
  text-underline-offset: .3em;
  text-decoration: none;
  transition: all .2s;
}

.footer-menu-link:hover {
  color: var(--foreground);
  text-decoration: underline;
}

.footer-menu-link.text-style-1line.blog {
  max-width: 7rem;
}

.footer-menu-link.text-style-1line.blog.w--current {
  max-width: 7.5rem;
}

.footer-company-quote {
  max-width: 16.4375rem;
  margin-top: 1.25rem;
  font-size: .9375rem;
}

.footer-actions-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  margin-top: 2rem;
  display: flex;
}

.footer-menus-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  display: flex;
}

.footer-menu-wrapper {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  display: flex;
}

.footer-menu-links-wrapper {
  grid-column-gap: .875rem;
  grid-row-gap: .875rem;
  flex-flow: column;
  font-size: .9375rem;
  font-style: normal;
  line-height: 1.1;
  display: flex;
}

.footer-menu-label {
  color: var(--foreground);
  font-variation-settings: "wght" 430;
}

.footer-menu-text {
  text-underline-offset: .3em;
  text-decoration: none;
  transition: all .2s;
}

.nav-wrapper {
  z-index: 50;
  border-bottom: 1px solid var(--border);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: #ffffffdb;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  height: 5rem;
  display: flex;
  position: sticky;
  top: 0;
}

.nav-content-wrapper {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav-logo {
  width: 7.75em;
  height: 1.8125em;
}

.nav-menu-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  margin-left: 2rem;
  display: flex;
}

.nav-menu-link {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border-radius: var(--radius-button);
  color: var(--muted-foreground);
  font-variation-settings: "wght" 430;
  background-color: #a3e63500;
  border: 1px solid #fff0;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.nav-menu-link:hover, .nav-menu-link.w--current {
  border-color: var(--border);
  color: var(--foreground);
}

.nav-menu-link.small {
  height: 2.25rem;
  padding-left: .75rem;
  padding-right: .75rem;
  font-size: .9375rem;
}

.nav-actions-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  display: flex;
}

.nav-menu-trigger {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--foreground);
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  display: none;
}

.nav-menu-trigger.open {
  background-color: var(--muted);
  display: none;
}

.icon-20 {
  width: 1.25rem;
  height: 1.25rem;
  transition: all .2s;
  display: inline-flex;
}

.icon-20.open {
  transform: rotate(180deg);
}

.hide-mobile {
  display: flex;
}

.instelling-cert-image {
  width: 2.625rem;
  height: 2.625rem;
}

.blog-wrapper {
  margin-top: 3.75rem;
}

.blog-filter-form-wrapper {
  flex-flow: column;
  max-width: 38.125rem;
  margin-bottom: 2.5rem;
  display: flex;
}

.input {
  border: 1px solid var(--border);
  border-radius: var(--radius-card-small);
  background-color: var(--background);
  color: var(--foreground);
  letter-spacing: -.025em;
  height: 2.625rem;
  margin-bottom: 0;
  padding: .5rem 1rem;
  font-size: 1rem;
}

.input:focus {
  border-color: var(--foreground);
}

.input::placeholder {
  color: var(--muted-foreground);
}

.input.text-area {
  height: 7rem;
}

.input.search {
  padding-left: 2.625rem;
}

.input-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  display: flex;
  position: relative;
}

.search-input-icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translate(0, -50%);
}

.blog-articles-list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.article-card {
  flex-flow: column;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.article-card-cover-image-wrapper {
  border-radius: var(--radius-card);
  padding-top: 78.25%;
  position: relative;
  overflow: hidden;
}

.article-card-labels-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.article-card-labels-wrapper.detail-page {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  margin-bottom: 1rem;
}

.pill {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--muted-foreground);
  justify-content: center;
  align-items: center;
  height: 1.8125rem;
  padding-left: .75rem;
  padding-right: .75rem;
  font-size: .875rem;
  display: flex;
}

.article-card-content-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  flex: 1;
  margin-top: 1.5rem;
  display: flex;
}

.training-card-title-wrapper {
  color: var(--foreground);
  text-decoration: none;
}

.training-card-title-wrapper:hover {
  text-decoration: underline;
}

.training-price-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--foreground);
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: auto;
  display: flex;
}

.training-price-wrapper.detail-page {
  margin-top: 1.5rem;
}

.training-price {
  color: var(--foreground);
  font-family: Satoshi, Arial, sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.1;
}

.training-price-small {
  font-size: .8125rem;
}

.label {
  color: var(--foreground);
  margin-bottom: 0;
  font-weight: 500;
}

.form-success-wrapper {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background-color: var(--muted);
  color: var(--foreground);
  padding: 1.25rem;
}

.form-success-wrapper.request-modal {
  margin-top: 2rem;
}

.hero-header-p {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.hero-header-p.max-width-sm {
  max-width: 26.25rem;
}

.hero-header-p.max-width-md {
  max-width: 34rem;
}

.footer-cert-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
  display: flex;
}

.footer-cert-label {
  color: var(--foreground);
  font-variation-settings: "wght" 430;
  font-size: .875rem;
}

.modal-wrapper {
  z-index: 99;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.modal-wrapper.show {
  display: flex;
}

.modal-backdrop {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background-color: #0000001a;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.modal-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card-large);
  background-color: var(--background);
  width: 100%;
  max-width: 25.625rem;
  padding: .75rem;
  position: relative;
}

.modal-card.extra-padding {
  padding: 1.5rem;
}

.modal-actions-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  margin-top: 1.25rem;
  padding-bottom: .25rem;
  padding-left: .25rem;
  padding-right: .25rem;
  display: flex;
}

.modal-header-wrapper {
  padding-left: .25rem;
  padding-right: .25rem;
}

.modal-header-wrapper.training {
  padding-left: 0;
  padding-right: 3rem;
}

.modal-image-wrapper {
  border: 1px solid var(--brand-dark);
  border-radius: var(--radius-card);
  margin-bottom: 1rem;
  padding-top: 65%;
  position: relative;
  overflow: hidden;
}

.modal-header-p {
  margin-top: .75rem;
  font-size: .9375rem;
}

.modal-close-button {
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  display: flex;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.training-card-price-on-request {
  margin-top: auto;
  font-size: .875rem;
}

.training-card-actions-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1.5rem;
  display: flex;
}

.checkout-form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  flex: 1;
  margin-top: 1rem;
  padding-bottom: 5rem;
  display: flex;
}

.training-aanmelden-modal-title-wrapper {
  grid-column-gap: .4em;
  grid-row-gap: .4em;
  display: flex;
}

.checkout-modal-wrapper {
  z-index: 99;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.checkout-modal-wrapper.show {
  display: flex;
}

.checkout-modal-backdrop {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background-color: #0000001a;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.checkout-modal-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card-large);
  background-color: var(--background);
  flex-flow: column;
  width: 100%;
  max-width: 28rem;
  max-height: 95vh;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.checkout-modal-card.extra-padding {
  padding: 1.5rem;
}

.checkout-modal-close-button {
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  display: flex;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.input-two-fields-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.checkout-form-wrapper {
  flex-flow: column;
  flex: 1;
  display: flex;
}

.checkout-form-footer-wrapper {
  border-top: 1px solid var(--border);
  background-color: var(--white);
  flex-flow: column;
  padding: 1rem 1.25rem;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.checkout-modal-content-wrapper {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: auto;
}

.request-modal-wrapper {
  z-index: 99;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.request-modal-wrapper.show {
  display: flex;
}

.request-modal-backdrop {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background-color: #0000001a;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.request-modal-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card-large);
  background-color: var(--background);
  flex-flow: column;
  width: 100%;
  max-width: 28rem;
  max-height: 95vh;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.request-modal-card.extra-padding {
  padding: 1.5rem;
}

.request-modal-close-button {
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  display: flex;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.request-modal-content-wrapper {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: auto;
}

.hidden {
  display: none;
}

@media screen and (max-width: 991px) {
  body {
    --muted-foreground: #737373;
    --page-padding-top: 3.75rem;
    --padding-y: 4.375rem;
    --padding-x: 1rem;
    --foreground: #1a2e05;
    --brand: #a3e635;
    --border: #e4e4e7;
    --background: white;
    --muted: whitesmoke;
    --white: white;
    --brand-foreground: #1a2e05;
  }

  .h1 {
    font-size: 3.125rem;
  }

  .h2 {
    font-size: 2.8125rem;
  }

  .home-process-card-timeline {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .home-process-card-timeline-divider {
    width: 1px;
    height: 1.5rem;
    margin-left: 1rem;
  }

  .footer-actions-wrapper {
    flex-flow: column;
  }

  .nav-menu-wrapper {
    padding: 1.25rem var(--padding-x);
    border-bottom: 1px solid var(--border);
    background-color: var(--white);
    flex-flow: column;
    margin-left: 0;
    display: none;
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
  }

  .nav-menu-wrapper.open {
    display: flex;
  }

  .nav-menu-link {
    width: 100%;
  }

  .nav-menu-trigger, .nav-menu-trigger.open, .nav-menu-trigger.open {
    display: flex;
  }

  .rich-text h1 {
    font-size: 3.125rem;
  }

  .rich-text h2 {
    font-size: 2.8125rem;
  }

  .training-hero-content-wrapper {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

  .training-main-content-wrapper {
    flex-flow: column;
  }

  .about-stat-number {
    font-size: 3.125rem;
  }
}

@media screen and (max-width: 767px) {
  .hero-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .header-wrapper {
    order: -9999;
  }

  .header-actions-wrapper {
    flex-flow: column;
    width: 100%;
  }

  .home-hero-usps-grid {
    flex-flow: column;
  }

  .home-hero-usp-divider {
    width: 100%;
    height: 1px;
  }

  .home-process-grid {
    grid-template-columns: 1fr;
  }

  .home-usps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-actions-wrapper, .nav-actions-wrapper {
    flex-flow: row;
  }

  .hero-usps-wrapper {
    grid-template-columns: 1fr;
  }

  .zzp-why-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid {
    flex-flow: column;
  }

  .instelling-why-us-cards-wrapper {
    max-width: none;
  }

  .instelling-why-us-grid {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .about-stats-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr 1fr;
  }

  .team-members-grid {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr 1fr;
  }

  .blog-articles-list {
    grid-template-columns: 1fr 1fr;
  }

  .training-hero-content-wrapper {
    grid-template-columns: 1fr;
  }

  .training-products-cards-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .contact-content-wrapper {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  .hero-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .h1 {
    font-size: 2.5rem;
  }

  .header-actions-wrapper {
    flex-flow: column;
    width: 100%;
  }

  .button-primary.small.hide-mobile {
    display: none;
  }

  .home-hero-usps-grid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .h2 {
    font-size: 2.25rem;
  }

  .h2.small {
    font-size: 2rem;
  }

  .h3 {
    font-size: 1.5rem;
  }

  .home-process-card-actions-wrapper {
    flex-flow: column;
  }

  .home-usps-grid {
    grid-template-columns: 1fr;
  }

  .cta-card-actions-wrapper {
    flex-flow: column;
  }

  .footer-company-wrapper {
    width: 100%;
  }

  .footer-captions-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .footer-actions-wrapper {
    flex-flow: column;
    width: 100%;
  }

  .footer-menus-wrapper {
    flex-flow: wrap;
  }

  .nav-logo {
    font-size: 1.3rem;
  }

  .nav-actions-wrapper {
    width: 100%;
  }

  .hero-usps-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .hero-usp-title-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: .9375rem;
  }

  .hero-usp-p {
    font-size: .875rem;
  }

  .zzp-hero-image-wrapper {
    justify-content: flex-end;
    align-items: stretch;
    height: 22rem;
  }

  .zzp-why-cards-grid {
    grid-template-columns: 1fr;
  }

  .steps-card {
    flex-flow: column;
  }

  .zzp-reviews-lists-wrapper {
    grid-template-columns: 1fr;
  }

  .hide-mobile {
    display: none;
  }

  .instelling-review-grid {
    flex-flow: column;
  }

  .instelling-review-image-wrapper {
    height: 28rem;
  }

  .hero-header-wrapper {
    margin-right: 0;
  }

  .instellingen-certs-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: start center;
    display: grid;
  }

  .instellingen-cert-wrapper {
    text-align: center;
  }

  .about-team-image {
    height: 110%;
  }

  .team-members-grid, .blog-articles-list {
    grid-template-columns: 1fr;
  }

  .article-datas-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .rich-text h1 {
    font-size: 2.5rem;
  }

  .rich-text h2 {
    font-size: 2.25rem;
  }

  .rich-text h3 {
    font-size: 1.5rem;
  }

  .training-price {
    font-size: 1.375rem;
  }

  .training-products-cards-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-cert-wrapper {
    text-align: center;
  }

  .about-stat-number {
    font-size: 2.5rem;
  }

  .modal-wrapper {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .checkout-modal-wrapper {
    justify-content: center;
    align-items: flex-end;
    display: none;
  }

  .checkout-modal-card {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .request-modal-wrapper {
    justify-content: center;
    align-items: flex-end;
    display: none;
  }

  .request-modal-card {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
}
