body:not(.high-contrast) {
  --color-neongreen: #3CFFA7;
  --color-lightblue: #B2D7EC;
  --color-blue: #009dda;
  --color-darkblue: #005F8E;
  --color-darkerblue: #003650;
  --color-background: #F2F9FC;
  --color-red: #FF4D55;
  --color-darkred: #ff343d;
  --color-black: #272727;
  --color-white: #fff;
}

body.high-contrast {
  --color-neongreen: #3CFFA7;
  --color-lightblue: #B2D7EC;
  --color-blue: #00668e;
  --color-darkblue: #002c42;
  --color-darkerblue: #000204;
  --color-background: white;
  --color-red: #bf2f37;
  --color-darkred: #ab2a31;
  --color-black: black;
  --color-white: #fff;
}

.has-ghostkit-color-vtzl-donkerblauw-color {
  color: var(--color-darkblue) !important;
}

.hero {
  position: relative;
  padding-top: 3.5rem;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .hero {
    height: auto;
    min-height: unset;
    overflow: visible;
    margin-bottom: 5rem;
    padding: 0;
  }
}
.hero .hero-container {
  display: flex;
  position: relative;
  height: calc(100% - 3.5rem);
  width: calc(80% - 3rem);
  background-color: var(--color-darkblue);
  left: 10rem;
  border-radius: 0 1rem 1rem 1rem;
  overflow: visible;
}
@media screen and (max-width: 1200px) {
  .hero .hero-container {
    position: relative;
    left: 0;
    border-radius: 0;
    width: 100%;
    flex-direction: column;
  }
}
.hero .hero-container::before {
  content: "";
  position: absolute;
  left: calc(-7rem + 2px);
  background-image: url("../../../images/hero-corner.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 7rem;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .hero .hero-container::before {
    width: 2rem;
  }
}
.hero .hero-content {
  padding: 3rem;
  min-width: 550px;
  max-width: 40vw;
  color: #FFF;
  font-size: 1.15rem;
}
.hero .hero-content h1, .hero .hero-content h2, .hero .hero-content h3, .hero .hero-content h4, .hero .hero-content h5, .hero .hero-content h6, .hero .hero-content .h1, .hero .hero-content .h2, .hero .hero-content .h3, .hero .hero-content .h4, .hero .hero-content .h5, .hero .hero-content .h6 {
  margin: 0 0 1rem 0;
  word-break: break-word;
}
.hero .hero-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 1200px) {
  .hero .hero-content {
    max-width: 100%;
    min-width: unset;
    order: 2;
    padding: 3rem 3rem 5rem 3rem;
  }
}
@media screen and (max-width: 768px) {
  .hero .hero-content {
    padding: 2rem 1.5rem 4rem 1.5rem;
  }
}
.hero .hero-content *, .hero .hero-content .btn-link::before {
  color: #FFF;
}
.hero .hero-picture {
  position: relative;
  top: -3rem;
  width: 100vw;
  flex-shrink: 0;
  background-color: var(--color-blue);
  border-radius: 1rem 0 0 1rem;
  overflow: hidden;
  height: 600px;
}
.hero .hero-picture::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(5deg, rgba(39, 39, 39, 0.6) 0%, rgba(39, 39, 39, 0));
}
.hero .hero-picture > * {
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .hero .hero-picture {
    order: 1;
    top: 0;
    width: 100vw;
    height: 250px;
    border-radius: 0;
  }
}
.hero .hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-picture__container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  .hero-picture__container {
    padding: 1.25rem;
  }
}
.hero-picture__container h1 {
  color: #FFF;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .hero-picture__container h1 {
    font-size: 2rem;
  }
}

ul.table-of-contents {
  margin: 0;
  padding: 0;
}
ul.table-of-contents li {
  position: relative;
  border-bottom: 1px dashed #F2FAFE;
  padding: 0.75rem 0;
  break-inside: avoid-column;
  list-style-type: none;
}
ul.table-of-contents li:last-of-type {
  border: none;
}
ul.table-of-contents li a:hover::before {
  transform: translateX(3px);
}
ul.table-of-contents li a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  font-weight: 800;
  color: #FFF;
  display: inline-block;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  margin-right: 0.5rem;
}

/*# sourceMappingURL=hero-style.css.map */
