/* ---------------------------------------------------------------------------------------------------- */
/* VARIABLES ------------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
/* COLORS --------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
.green {
  background-color: #99CC33;
}
.green__light {
  background-color: #E0F4AE;
}

.red {
  background-color: #FF6666;
}
.red__light {
  background-color: #FFCCCC;
}

.purple {
  background-color: #996699;
}
.purple__light {
  background-color: #E5CDE5;
}

.aqua {
  background-color: #4DB79D;
}
.aqua__light {
  background-color: #ACE6D7;
}

.yellow {
  background-color: #E4A024;
}
.yellow__light {
  background-color: #FFE6B3;
}

.lightblue {
  background-color: #009EE2;
}
.lightblue__light {
  background-color: #B3E6FF;
}

.darkblue {
  background-color: #1A3281;
  color: #FFFFFF;
}

.card.lightblue p {
  color: #FFFFFF;
}

/* ---------------------------------------------------------------------------------------------------- */
/* ASPECT RATIO --------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
.aspect-ratio-16-9 {
  position: relative;
}
.aspect-ratio-16-9:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 56.25%;
}
.aspect-ratio-16-9 img,
.aspect-ratio-16-9 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* ---------------------------------------------------------------------------------------------------- */
/* VIDEO CONTAINER ------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------- */
.video-container {
  border-radius: 30px;
  background-color: #e5e5e5;
}
.video-container .iframe-trigger {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-container .iframe-trigger svg {
  width: 40px;
  transition: 0.3s ease-in-out;
}
.video-container .iframe-trigger:hover svg {
  transform: scale(1.2);
}
.video-container .iframe-trigger:active svg {
  transform: scale(1.4);
}
.video-container .iframe-trigger.disable {
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}
@-webkit-keyframes fadeIn {
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.video-container img {
  border-radius: 30px;
}
.video-container iframe {
  opacity: 0;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  border-radius: 30px;
}

/* ---------------------------------------------------------------------------------------------------- */
/* BASE STYLES ---------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
*,
*:after,
*:before {
  box-sizing: border-box;
  margin: 0;
}

:root {
  scroll-behavior: unset;
}

html {
  font-size: 18px;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Comfortaa", cursive;
  line-height: 1.5;
  color: #1A3281;
}

img {
  width: 100%;
}

.row {
  row-gap: 30px;
}

p.intro {
  font-size: 1.25rem;
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: #009EE2;
  transition: 0.2s ease-in-out;
}
a.link-yellow {
  color: #E4A024;
}
a:hover {
  color: #1A3281;
}

@media (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

/* ---------------------------------------------------------------------------------------------------- */
/* SCROLL TO TOP -------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
#scroll-to-top {
  position: fixed;
  width: 72px;
  height: 72px;
  background-color: #1A3281;
  box-shadow: 0px 10px 0 0px rgba(0, 0, 0, 0.1);
  bottom: 30px;
  border-radius: 50%;
  right: 30px;
  transition: 0.2s cubic-bezier(0.93, 0.24, 0.27, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(calc(100% + 30px));
}
#scroll-to-top.active {
  transform: translateY(0);
}
#scroll-to-top:hover {
  background-color: #E4A024;
}
#scroll-to-top img {
  width: 26px;
}

/* ---------------------------------------------------------------------------------------------------- */
/* BEZWAARPROCEDURE ----------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
.bezwaarprocedure {
  width: 686px;
  margin: -40px auto;
}
.bezwaarprocedure path {
  stroke-width: 10px;
}
@media (max-width: 1199px) {
  .bezwaarprocedure {
    width: 494px;
  }
  .bezwaarprocedure path {
    stroke-width: 14px;
  }
}
@media (max-width: 991px) {
  .bezwaarprocedure {
    width: 366px;
  }
  .bezwaarprocedure path {
    stroke-width: 18px;
  }
}
@media (max-width: 767px) {
  .bezwaarprocedure {
    display: none;
  }
}

/* ---------------------------------------------------------------------------------------------------- */
/* HEADINGS ------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
h3 {
  text-align: center;
}
h3.text-left {
  text-align: left;
}

@media (min-width: 768px) {
  h1,
.h1 {
    font-size: calc(2.488125rem + (1vw - 7.68px) * 2.3898);
    min-height: 0vw;
  }

  h2,
.h2 {
    font-size: calc(2.07375rem + (1vw - 7.68px) * 1.5052);
    min-height: 0vw;
  }

  h3,
.h3 {
    font-size: calc(1.728125rem + (1vw - 7.68px) * 0.8898);
    min-height: 0vw;
  }

  h4,
.h4 {
    font-size: calc(1.44rem + (1vw - 7.68px) * 0.4679);
    min-height: 0vw;
  }

  h5,
.h5 {
    font-size: calc(1.2rem + (1vw - 7.68px) * 0.1849);
    min-height: 0vw;
  }
}
@media (min-width: 1920px) {
  h1,
.h1 {
    font-size: 67.34px;
  }

  h2,
.h2 {
    font-size: 50.52px;
  }

  h3,
.h3 {
    font-size: 37.9px;
  }

  h4,
.h4 {
    font-size: 28.43px;
  }

  h5,
.h5 {
    font-size: 21.33px;
  }
}
/* ---------------------------------------------------------------------------------------------------- */
/* HEADER --------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
.header {
  padding: 40px 0;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .header {
    padding-top: 80px;
    margin-bottom: 40px;
  }
}
.header__logo {
  width: 100%;
  max-width: 200px;
}
@media (max-width: 767px) {
  .header__logo {
    margin-bottom: 20px;
  }
}
.header__part-of span {
  color: #1A3281;
}
.header__links a, .header__contact-info a {
  color: #FFFFFF;
  font-weight: bold;
}
@media (max-width: 767px) {
  .header .container {
    flex-direction: column;
    align-items: flex-start !important;
  }
}

.contact-links-container {
  position: -webkit-sticky;
  position: sticky;
  z-index: 999;
  top: 0;
  display: flex;
  justify-content: flex-end;
}
.contact-links-container .contact-links {
  background-color: #E4A024;
  display: flex;
  border-radius: 0px 0px 0px 30px;
  box-shadow: 0px 10px 0 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .contact-links-container .contact-links {
    flex-direction: column;
  }
}
@media (max-width: 540px) {
  .contact-links-container .contact-links {
    width: 100%;
    border-radius: 0px;
  }
}
.contact-links-container .contact-links a {
  color: #FFFFFF;
}
.contact-links-container .contact-links > a {
  display: flex;
  padding: 12px 40px;
}
@media (max-width: 540px) {
  .contact-links-container .contact-links > a {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.contact-links-container .contact-links__contact-info {
  background-color: #1A3281;
  padding: 12px 40px;
  border-radius: 0px 0px 0px 30px;
  display: flex;
  gap: 30px;
}
@media (max-width: 540px) {
  .contact-links-container .contact-links__contact-info {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 0px;
  }
}

/* ---------------------------------------------------------------------------------------------------- */
/* SECTIONS ------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
.section {
  padding-bottom: 80px;
}
.section .section-title {
  padding: 20px 0;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  margin-bottom: 80px;
}
.section .section-title:after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-color: inherit;
  position: absolute;
  top: 100%;
  left: 50%;
  transform-origin: center center;
  transform: translate(-50%, -20px) rotate(45deg);
}
.section .inner-section {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.section .inner-section:first-of-type {
  padding-top: 0;
}
.section__introduction .video-container {
  position: relative;
}
.section__introduction .video-container:after {
  content: url("../assets/img/svg/cloud.svg");
  position: absolute;
  top: 0;
  left: 0;
  width: 420px;
  display: block;
  z-index: 0;
  transform: translate(-50%, calc(-50% - 30px));
  z-index: -1;
}
@media (max-width: 767px) {
  .section__introduction .video-container:after {
    display: none;
  }
}

/* ---------------------------------------------------------------------------------------------------- */
/* CONTENTBOX ----------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
.content-box {
  background-color: #EEF0F6;
  padding: 30px;
  gap: 40px;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .content-box {
    flex-direction: column;
  }
}
.content-box img {
  max-width: 350px;
}
.content-box__description {
  flex: 1;
  flex-shrink: 0;
}
.content-box__description > *:first-child {
  margin-top: 0;
}
.content-box__description > *:last-child {
  margin-bottom: 0 !important;
}

/* ---------------------------------------------------------------------------------------------------- */
/* CARDS ---------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
.card {
  position: relative;
  font-weight: bold;
  border: 0;
  width: 100%;
  border-radius: 0 30px 0 30px;
}
.card__top, .card__bottom {
  padding: 30px;
}
.card__top {
  border-top-right-radius: 30px;
  flex: 1;
}
.card__bottom {
  border-bottom-left-radius: 30px;
  color: #FFFFFF;
}
.card__bottom .label {
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.card__bottom .amount {
  margin: 0;
}
.card__label {
  background-color: #1A3281;
  color: #FFFFFF;
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
  line-height: 1.2;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 10px;
}
.card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card__list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.3;
}
.card__list li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #1A3281;
  position: absolute;
  left: 0;
  top: 7px;
  border-radius: 50%;
}
.card__icon {
  padding: 30px 30px 30px 40px !important;
  width: calc(100% - 25px);
  margin-left: auto;
}
.card__icon > *:first-child {
  margin-bottom: 0;
}
.card__icon > *:last-child {
  margin-bottom: 0;
}
.card__icon .checkmark {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 30px;
  left: -25px;
  width: 50px;
  height: 50px;
  background: #009EE2;
  border-radius: 50%;
}
.card__icon .checkmark:before {
  content: "";
  display: block;
  width: 12px;
  height: 20px;
  border-bottom: 3px solid #1A3281;
  border-right: 3px solid #1A3281;
  transform: rotate(45deg);
  margin-top: -3px;
}

.quick-links {
  row-gap: 66px;
  margin-top: 36px;
  margin-bottom: -200px;
}
@media (max-width: 991px) {
  .quick-links {
    margin-bottom: 0;
  }
}
.quick-links .card {
  padding: 50px 30px 30px 30px;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
}
.quick-links .card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 0 0px rgba(0, 0, 0, 0.1);
}
.quick-links .card img {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  width: 72px;
  height: 72px;
}

.steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.steps:before {
  content: "";
  display: block;
  height: 100%;
  width: 10px;
  background: #C8CEDE;
  position: absolute;
  top: 0;
  left: calc(50% - 5px);
}
.steps.no-line:before {
  display: none;
}
.steps .card {
  padding: 30px;
}
.steps .card > *:first-child {
  margin-bottom: 0;
}
.steps .card > *:last-child {
  margin-bottom: 0;
}

/* ---------------------------------------------------------------------------------------------------- */
/* FOOTER --------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
.footer__top img {
  width: 100%;
}
.footer__bottom {
  background-color: #E3E3E2;
  padding: 30px 0;
}/*# sourceMappingURL=styles.css.map */