@charset "UTF-8";
.card:not(a) {
  -webkit-box-shadow: rgba(31, 38, 135, 0.08) 0px 8px 32px !important;
          box-shadow: rgba(31, 38, 135, 0.08) 0px 8px 32px !important;
}

.review-card:not(a) {
  -webkit-box-shadow: rgba(31, 38, 135, 0.08) 0px 8px 32px !important;
          box-shadow: rgba(31, 38, 135, 0.08) 0px 8px 32px !important;
}

@media (min-width: 1400px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1227px !important;
  }
}

@media (min-width: 992px) {
  .container-fluid-left {
    margin-left: calc((100vw - 960px) / 2) !important;
    max-width: calc(100% - (100vw - 960px) / 2 + 0px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1200px) {
  .container-fluid-left {
    margin-left: calc((100vw - 1140px) / 2) !important;
    max-width: calc(100% - (100vw - 1140px) / 2 + 0px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1400px) {
  .container-fluid-left {
    margin-left: calc((100vw - 1320px) / 2) !important;
    max-width: calc(100% - (100vw - 1320px) / 2 + 0px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1500px) {
  .container-fluid-left {
    margin-left: calc((100vw - 1227px) / 2) !important;
    max-width: calc(100% - (100vw - 1227px) / 2 + 0px) !important;
    margin-right: 0 !important;
  }
}

@media (min-width: 768px) {
  .container-fluid-left-100 {
    margin-left: calc((100vw - 720px) / 2) !important;
    max-width: calc(100% - (100vw - 720px) / 2 + 100px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 992px) {
  .container-fluid-left-100 {
    margin-left: calc((100vw - 960px) / 2) !important;
    max-width: calc(100% - (100vw - 960px) / 2 + 100px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1200px) {
  .container-fluid-left-100 {
    margin-left: calc((100vw - 1140px) / 2) !important;
    max-width: calc(100% - (100vw - 1140px) / 2 + 100px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1400px) {
  .container-fluid-left-100 {
    margin-left: calc((100vw - 1320px) / 2) !important;
    max-width: calc(100% - (100vw - 1320px) / 2 + 100px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1500px) {
  .container-fluid-left-100 {
    margin-left: calc((100vw - 1227px) / 2) !important;
    max-width: calc(100% - (100vw - 1227px) / 2 + 100px) !important;
    margin-right: 0 !important;
  }
}

[data-theme=light] {
  background-color: transparent;
}

[data-theme=dark] {
  background-color: #1a1a1a;
  background-image: url("../images/Gradient-trends-updates.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
[data-theme=dark]::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/Gradient-trends-updates.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
[data-theme=dark] > * {
  position: relative;
  z-index: 1;
}
[data-theme=dark] h1,
[data-theme=dark] h2,
[data-theme=dark] h3,
[data-theme=dark] h4,
[data-theme=dark] h5 {
  color: white;
}
[data-theme=dark] .text-color-1 {
  color: #931f80;
}
[data-theme=dark] .text-color-2 {
  color: #58134d;
}
[data-theme=dark] .text-color-3 {
  color: #dc5bc7;
}
[data-theme=dark] p,
[data-theme=dark] span,
[data-theme=dark] p span {
  color: #d4d4d8;
}

[data-theme=tiled] {
  background-image: linear-gradient(to right, rgb(246, 246, 246) 2px, transparent 2px), linear-gradient(to bottom, rgb(246, 246, 246) 2px, transparent 2px);
  background-size: 120px 120px;
  background-attachment: fixed;
}

[data-animate] {
  opacity: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
          transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

[data-animate^=fade].animate {
  opacity: 1;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

[data-animate^=zoom].animate {
  opacity: 1;
  -webkit-transform: translateZ(0) scale(1);
          transform: translateZ(0) scale(1);
}

[data-animate=fade-up] {
  -webkit-transform: translate3d(0, 6px, 0);
          transform: translate3d(0, 6px, 0);
  opacity: 0;
}

[data-animate=zoom-in] {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  opacity: 0;
}

[data-animate-delay="50"].animate {
  -webkit-transition-delay: 50ms;
          transition-delay: 50ms;
}

[data-animate-delay="100"].animate {
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}

[data-animate-delay="150"].animate {
  -webkit-transition-delay: 150ms;
          transition-delay: 150ms;
}

[data-animate-delay="200"].animate {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

.fade-in-on-scroll {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-in-on-scroll.in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.slide-left-on-scroll {
  opacity: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide-left-on-scroll.in-view {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.slide-right-on-scroll {
  opacity: 0;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide-right-on-scroll.in-view {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.scale-up-on-scroll {
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scale-up-on-scroll.in-view {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.rotate-in-on-scroll {
  opacity: 0;
  -webkit-transform: rotate(-10deg) scale(0.9);
          transform: rotate(-10deg) scale(0.9);
  -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rotate-in-on-scroll.in-view {
  opacity: 1;
  -webkit-transform: rotate(0deg) scale(1);
          transform: rotate(0deg) scale(1);
}

.bounce-in-on-scroll {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: opacity 0.6s ease, -webkit-transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.bounce-in-on-scroll.in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.flip-in-on-scroll {
  opacity: 0;
  -webkit-transform: perspective(1000px) rotateY(-90deg);
          transform: perspective(1000px) rotateY(-90deg);
  -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.flip-in-on-scroll.in-view {
  opacity: 1;
  -webkit-transform: perspective(1000px) rotateY(0deg);
          transform: perspective(1000px) rotateY(0deg);
}

.typewriter-on-scroll {
  opacity: 0;
}
.typewriter-on-scroll.in-view {
  opacity: 1;
  -webkit-animation: typewriter 2s steps(40, end);
          animation: typewriter 2s steps(40, end);
}

@-webkit-keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.delayed-on-scroll {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s, -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s;
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s, -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s;
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s, transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s;
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s, transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s, -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s;
}
.delayed-on-scroll.in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.stagger-on-scroll .stagger-item {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stagger-on-scroll .stagger-item.in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.slide-fade-up-on-scroll {
  opacity: 0;
  -webkit-transform: translateY(40px) scale(0.95);
          transform: translateY(40px) scale(0.95);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide-fade-up-on-scroll.in-view {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

.elastic-on-scroll {
  opacity: 0;
  -webkit-transform: scale(0.3);
          transform: scale(0.3);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: opacity 0.6s ease, -webkit-transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.elastic-on-scroll.in-view {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.blur-focus-on-scroll {
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease, -webkit-filter 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-filter 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease, -webkit-filter 0.8s ease, -webkit-transform 0.8s ease;
}
.blur-focus-on-scroll.in-view {
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (max-width: 768px) {
  .fade-in-on-scroll,
  .slide-left-on-scroll,
  .slide-right-on-scroll {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  .fade-in-on-scroll.in-view,
  .slide-left-on-scroll.in-view,
  .slide-right-on-scroll.in-view {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .slide-left-on-scroll {
    -webkit-transform: translateX(-25px);
            transform: translateX(-25px);
  }
  .slide-left-on-scroll.in-view {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .slide-right-on-scroll {
    -webkit-transform: translateX(25px);
            transform: translateX(25px);
  }
  .slide-right-on-scroll.in-view {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fade-in-on-scroll,
  .slide-left-on-scroll,
  .slide-right-on-scroll,
  .scale-up-on-scroll,
  .rotate-in-on-scroll,
  .bounce-in-on-scroll,
  .flip-in-on-scroll,
  .delayed-on-scroll,
  .stagger-on-scroll .stagger-item,
  .slide-fade-up-on-scroll,
  .elastic-on-scroll,
  .blur-focus-on-scroll {
    -webkit-transition: opacity 0.3s ease !important;
    transition: opacity 0.3s ease !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
  .fade-in-on-scroll.in-view,
  .slide-left-on-scroll.in-view,
  .slide-right-on-scroll.in-view,
  .scale-up-on-scroll.in-view,
  .rotate-in-on-scroll.in-view,
  .bounce-in-on-scroll.in-view,
  .flip-in-on-scroll.in-view,
  .delayed-on-scroll.in-view,
  .stagger-on-scroll .stagger-item.in-view,
  .slide-fade-up-on-scroll.in-view,
  .elastic-on-scroll.in-view,
  .blur-focus-on-scroll.in-view {
    opacity: 1 !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-font-smoothing: antialiased;
  color: #3a3a40;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
  font-weight: bold;
  margin-top: 24px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}

.display-lg,
.display-lg * {
  font-size: 72px;
  line-height: 1.1;
  letter-spacing: -1px;
}
@media (max-width: 1199px) {
  .display-lg,
  .display-lg * {
    font-size: 56px;
  }
}
@media (max-width: 992px) {
  .display-lg,
  .display-lg * {
    font-size: 44px;
  }
}
@media (max-width: 768px) {
  .display-lg,
  .display-lg * {
    font-size: 32px;
  }
}

.display-md,
.display-md * {
  font-size: 60px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
@media (max-width: 1199px) {
  .display-md,
  .display-md * {
    font-size: 48px;
  }
}
@media (max-width: 992px) {
  .display-md,
  .display-md * {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .display-md,
  .display-md * {
    font-size: 28px;
  }
}

.display-sm,
.display-sm * {
  font-size: 48px;
  line-height: 1.2;
}
@media (max-width: 1199px) {
  .display-sm,
  .display-sm * {
    font-size: 40px;
  }
}
@media (max-width: 992px) {
  .display-sm,
  .display-sm * {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .display-sm,
  .display-sm * {
    font-size: 26px;
  }
}

.display-xs,
.display-xs * {
  font-size: 36px;
  line-height: 1.25;
}
@media (max-width: 1199px) {
  .display-xs,
  .display-xs * {
    font-size: 30px;
  }
}
@media (max-width: 992px) {
  .display-xs,
  .display-xs * {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .display-xs,
  .display-xs * {
    font-size: 22px;
  }
}

h1,
h1 span {
  font-size: 32px;
  line-height: 38px;
}
@media (max-width: 1199px) {
  h1,
  h1 span {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  h1,
  h1 span {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  h1,
  h1 span {
    font-size: 24px;
  }
}

h2,
h2 span {
  font-size: 24px;
  line-height: 34px;
}
@media (max-width: 992px) {
  h2,
  h2 span {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  h2,
  h2 span {
    font-size: 22px;
  }
}

h3,
h3 span {
  font-size: 20px;
  line-height: 32px;
}
@media (max-width: 1199px) {
  h3,
  h3 span {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  h3,
  h3 span {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  h3,
  h3 span {
    font-size: 18px;
  }
}

h4,
h4 span {
  font-size: 18px;
  line-height: 28px;
}
@media (max-width: 992px) {
  h4,
  h4 span {
    font-size: 18px;
  }
}

h5,
h5 span {
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 992px) {
  h5,
  h5 span {
    font-size: 16px;
  }
}

p {
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #55555e;
}

.paragraph-sm {
  font-size: 14px;
  line-height: 1.6;
}

.paragraph-label {
  font-size: 16px;
  line-height: 1.5;
}

.paragraph-label-sm {
  font-size: 14px;
  line-height: 1.5;
}

.button-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.small-text,
.small-text * {
  font-size: 14px;
}

ul {
  -webkit-font-smoothing: antialiased;
  list-style: disc;
  font-size: 16px;
  color: #3a3a40;
}
ul li {
  -webkit-font-smoothing: antialiased;
  margin-bottom: 0.5rem;
  color: #3a3a40;
}

a {
  -webkit-font-smoothing: antialiased;
  color: #3a3a40;
  font-weight: 500;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

* {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.black-text {
  color: #3a3a40;
}

.text-color-1 {
  color: #931f80;
}

.text-color-2 {
  color: #58134d;
}

.text-color-3 {
  color: #dc5bc7;
}

.text-gradient-1 {
  background: -webkit-gradient(linear, left top, right top, from(#58134d), to(#dc5bc7));
  background: linear-gradient(to right, #58134d, #dc5bc7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-2 {
  background: -webkit-gradient(linear, left top, right top, from(#58134d), to(#9a378a));
  background: linear-gradient(to right, #58134d, #9a378a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-3 {
  background: -webkit-gradient(linear, left top, right top, from(#9a378a), to(#dc5bc7));
  background: linear-gradient(to right, #9a378a, #dc5bc7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wysiwyg h1,
.wysiwyg h1 span {
  font-size: 60px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
@media (max-width: 1199px) {
  .wysiwyg h1,
  .wysiwyg h1 span {
    font-size: 48px;
  }
}
@media (max-width: 992px) {
  .wysiwyg h1,
  .wysiwyg h1 span {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .wysiwyg h1,
  .wysiwyg h1 span {
    font-size: 44px;
  }
}
.wysiwyg h2,
.wysiwyg h2 span {
  font-size: 36px;
  line-height: 1.25;
}
@media (max-width: 1199px) {
  .wysiwyg h2,
  .wysiwyg h2 span {
    font-size: 30px;
  }
}
@media (max-width: 992px) {
  .wysiwyg h2,
  .wysiwyg h2 span {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .wysiwyg h2,
  .wysiwyg h2 span {
    font-size: 36px;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body,
html {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
}

picture {
  display: inline-block;
  height: 100%;
  width: 100%;
}

.text_image .pill-container {
  margin-bottom: 16px;
}
.text_image .text_image__image-container.has-image-stats {
  position: relative;
  overflow: visible;
}
.text_image .text_image__image-container .image-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px;
  border-radius: 16px;
  -webkit-box-shadow: rgba(31, 38, 135, 0.16) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.16) 0px 8px 32px;
  max-width: 200px;
  z-index: 2;
}
.text_image .text_image__image-container .image-stat h1,
.text_image .text_image__image-container .image-stat h2,
.text_image .text_image__image-container .image-stat h3,
.text_image .text_image__image-container .image-stat h4,
.text_image .text_image__image-container .image-stat h5 {
  margin: 0;
}
.text_image .text_image__image-container .image-stat p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}
.text_image .text_image__image-container .image-stat p:last-child {
  margin-bottom: 0;
}
.text_image .text_image__image-container .image-stat strong {
  display: block;
  font-size: 1.5rem;
  color: #931f80;
  margin-bottom: 4px;
}
.text_image .text_image__image-container .image-stat--topright {
  top: -32px;
  right: -24px;
}
.text_image .text_image__image-container .image-stat--bottomleft {
  bottom: -32px;
  left: -24px;
}
.text_image .text_image__text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
}
.text_image .text_image__text-container > * {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}
.text_image .text_image__text-container.in-view > * {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.text_image .text_image__text-container.in-view > *:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.text_image .text_image__text-container.in-view > *:nth-child(2) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.text_image .text_image__text-container.in-view > *:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.text_image .text_image__text-container.in-view > *:nth-child(4) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
.text_image .text_image__text-container.in-view > *:nth-child(5) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.text_image .text_image__text-container.in-view > *:nth-child(6) {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}
.text_image .text_image__text-container .btn, .text_image .text_image__text-container .owl-nav .owl-prev, .owl-nav .text_image .text_image__text-container .owl-prev,
.text_image .text_image__text-container .owl-nav .owl-next,
.owl-nav .text_image .text_image__text-container .owl-next, .text_image .text_image__text-container .btn-ghost, .text_image .text_image__text-container .btn-3, .text_image .text_image__text-container .btn-2, .text_image .text_image__text-container .btn-1, .text_image .text_image__text-container .keuze_form_block .actions .btn-next, .keuze_form_block .actions .text_image .text_image__text-container .btn-next, .text_image .text_image__text-container .conversie_block .item .btn-conversie, .conversie_block .item .text_image .text_image__text-container .btn-conversie {
  margin-top: 32px;
  margin-bottom: 32px;
}
.text_image .text_image__text-container .btn i, .text_image .text_image__text-container .owl-nav .owl-prev i, .owl-nav .text_image .text_image__text-container .owl-prev i,
.text_image .text_image__text-container .owl-nav .owl-next i,
.owl-nav .text_image .text_image__text-container .owl-next i, .text_image .text_image__text-container .btn-ghost i, .text_image .text_image__text-container .btn-3 i, .text_image .text_image__text-container .btn-2 i, .text_image .text_image__text-container .btn-1 i, .text_image .text_image__text-container .keuze_form_block .actions .btn-next i, .keuze_form_block .actions .text_image .text_image__text-container .btn-next i, .text_image .text_image__text-container .conversie_block .item .btn-conversie i, .conversie_block .item .text_image .text_image__text-container .btn-conversie i {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.text_image .text_image__text-container .btn:hover i, .text_image .text_image__text-container .owl-nav .owl-prev:hover i, .owl-nav .text_image .text_image__text-container .owl-prev:hover i,
.text_image .text_image__text-container .owl-nav .owl-next:hover i,
.owl-nav .text_image .text_image__text-container .owl-next:hover i, .text_image .text_image__text-container .btn-ghost:hover i, .text_image .text_image__text-container .btn-3:hover i, .text_image .text_image__text-container .btn-2:hover i, .text_image .text_image__text-container .btn-1:hover i, .text_image .text_image__text-container .keuze_form_block .actions .btn-next:hover i, .keuze_form_block .actions .text_image .text_image__text-container .btn-next:hover i, .text_image .text_image__text-container .conversie_block .item .btn-conversie:hover i, .conversie_block .item .text_image .text_image__text-container .btn-conversie:hover i {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.text_image .text_image__text-container p {
  margin-bottom: 24px;
  text-align: left;
}
.text_image .text_image__text-container h1,
.text_image .text_image__text-container h2,
.text_image .text_image__text-container h3,
.text_image .text_image__text-container h4,
.text_image .text_image__text-container h5 {
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
}
.text_image .text_image__text-container ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}
.text_image .text_image__text-container ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 8px;
}
.text_image .text_image__text-container ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-image: url("../images/Check.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.text_image .text_image__image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.text_image .text_image__image-container img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 1s ease-out;
  transition: transform 1s ease-out, opacity 0.8s ease-out;
  transition: transform 1s ease-out, opacity 0.8s ease-out, -webkit-transform 1s ease-out;
}
.text_image .text_image__image-container.in-view img {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.text_image[data-style=paarse_streep] .text_image__text-container h1:before,
.text_image[data-style=paarse_streep] .text_image__text-container h2:before,
.text_image[data-style=paarse_streep] .text_image__text-container h3:before,
.text_image[data-style=paarse_streep] .text_image__text-container h4:before,
.text_image[data-style=paarse_streep] .text_image__text-container h5:before {
  content: "";
  width: 5px;
  height: 100%;
  left: -28px;
  top: 0;
  position: absolute;
  background-color: #931f80;
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.text_image[data-style=paarse_streep] .text_image__text-container.in-view h1:before, .text_image[data-style=paarse_streep] .text_image__text-container.in-view h2:before, .text_image[data-style=paarse_streep] .text_image__text-container.in-view h3:before, .text_image[data-style=paarse_streep] .text_image__text-container.in-view h4:before, .text_image[data-style=paarse_streep] .text_image__text-container.in-view h5:before {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.text_image[data-style=met_kader] .row {
  border-radius: 16px;
  padding: 3em;
  -webkit-box-shadow: rgba(31, 38, 135, 0.08) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.08) 0px 8px 32px;
}
.text_image[data-style=met_kader] .text_image__image-container {
  border-radius: 16px;
  overflow: hidden;
}
.text_image[data-style=met_kader] .text_image__image-container.has-image-stats {
  overflow: visible;
}
.text_image[data-style=met_kader_en_stats] .text_image__image-container {
  border: 3px solid #931f80;
  border-radius: 16px;
  padding: 8px;
  background: #fff;
  -webkit-box-shadow: rgba(31, 38, 135, 0.16) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.16) 0px 8px 32px;
}
.text_image[data-style=met_kader_en_stats] .text_image__image-container img {
  border-radius: 8px;
}
.text_image[data-style=met_kader_en_stats] .text_image__image-container .stats {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  z-index: 2;
}
.text_image[data-style=met_kader_en_stats] .text_image__image-container .stats .stat {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: rgba(58, 58, 64, 0.85);
  backdrop-filter: blur(20px);
  border-radius: 8px;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.text_image[data-style=met_kader_en_stats] .text_image__image-container .stats .stat .stat-value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 2px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
.text_image[data-style=met_kader_en_stats] .text_image__image-container .stats .stat .stat-value .prefix,
.text_image[data-style=met_kader_en_stats] .text_image__image-container .stats .stat .stat-value .suffix {
  font-size: 1.5rem;
}
.text_image[data-style=met_kader_en_stats] .text_image__image-container .stats .stat .stat-value .number {
  font-size: 2.5rem;
}
.text_image[data-style=met_kader_en_stats] .text_image__image-container .stats .stat .stat-label {
  color: #dddddd;
  font-size: 0.875rem;
  margin-top: 8px;
}
.text_image[data-theme=dark] {
  background-position: center 30%;
}
.text_image[data-theme=dark]::before {
  background-position: center 30%;
}
.text_image[data-style=dark] {
  background-color: #3b0c33;
  color: #fff;
  position: relative;
}
.text_image[data-style=dark]::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/Gradient-trends-updates.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.text_image[data-style=dark] > * {
  position: relative;
  z-index: 1;
}
.text_image[data-style=dark] h1,
.text_image[data-style=dark] h2,
.text_image[data-style=dark] h3,
.text_image[data-style=dark] h4,
.text_image[data-style=dark] h5,
.text_image[data-style=dark] h6,
.text_image[data-style=dark] p {
  color: #fff;
}
@media (max-width: 992px) {
  .text_image .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 50px;
  }
  .text_image .col-10.col-lg-5,
  .text_image .col-10.col-lg-6,
  .text_image .col-10.col-lg-4 {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .text_image .col-10.col-lg-5 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .text_image .col-lg-1 {
    display: none;
  }
  .text_image .col-10.col-lg-6,
  .text_image .col-10.col-lg-4 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .text_image .text_image__text-container .btn, .text_image .text_image__text-container .owl-nav .owl-prev, .owl-nav .text_image .text_image__text-container .owl-prev,
  .text_image .text_image__text-container .owl-nav .owl-next,
  .owl-nav .text_image .text_image__text-container .owl-next, .text_image .text_image__text-container .btn-ghost, .text_image .text_image__text-container .btn-3, .text_image .text_image__text-container .btn-2, .text_image .text_image__text-container .btn-1, .text_image .text_image__text-container .keuze_form_block .actions .btn-next, .keuze_form_block .actions .text_image .text_image__text-container .btn-next, .text_image .text_image__text-container .conversie_block .item .btn-conversie, .conversie_block .item .text_image .text_image__text-container .btn-conversie {
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 16px 32px;
  }
  .text_image .text_image__image-container.has-image-stats {
    overflow: visible;
    margin-bottom: 96px;
  }
  .text_image .text_image__image-container .image-stat--topright {
    top: -24px;
    right: -8px;
  }
  .text_image .text_image__image-container .image-stat--bottomleft {
    bottom: -24px;
    left: -8px;
  }
  .text_image[data-style=met_kader_en_stats] .text_image__image-container .stats {
    position: static;
    margin-top: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .text_image[data-style=met_kader_en_stats] .text_image__image-container .stats .stat .stat-value .number {
    font-size: 2rem;
  }
}

.horizontal_scroller[data-block=text_image_repeater] {
  padding: 48px 0;
  background-color: #fff;
}
.horizontal_scroller[data-block=text_image_repeater] .intro-header {
  margin-bottom: 48px;
}
.horizontal_scroller[data-block=text_image_repeater] .intro-header .intro-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.horizontal_scroller[data-block=text_image_repeater] .intro-header .intro-content h1,
.horizontal_scroller[data-block=text_image_repeater] .intro-header .intro-content h2,
.horizontal_scroller[data-block=text_image_repeater] .intro-header .intro-content h3,
.horizontal_scroller[data-block=text_image_repeater] .intro-header .intro-content h4,
.horizontal_scroller[data-block=text_image_repeater] .intro-header .intro-content h5 {
  margin-bottom: 8px;
}
.horizontal_scroller[data-block=text_image_repeater] .intro-header .intro-content p {
  margin-bottom: 0;
}
.horizontal_scroller[data-block=text_image_repeater] .owl-carousel .card {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.horizontal_scroller[data-block=text_image_repeater] .card-inner {
  padding: 48px 0;
  width: 100%;
}
.horizontal_scroller[data-block=text_image_repeater] .text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
}
.horizontal_scroller[data-block=text_image_repeater] .text-container .btn, .horizontal_scroller[data-block=text_image_repeater] .text-container .owl-nav .owl-prev, .owl-nav .horizontal_scroller[data-block=text_image_repeater] .text-container .owl-prev,
.horizontal_scroller[data-block=text_image_repeater] .text-container .owl-nav .owl-next,
.owl-nav .horizontal_scroller[data-block=text_image_repeater] .text-container .owl-next, .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-ghost, .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-3, .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-2, .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-1, .horizontal_scroller[data-block=text_image_repeater] .text-container .keuze_form_block .actions .btn-next, .keuze_form_block .actions .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-next, .horizontal_scroller[data-block=text_image_repeater] .text-container .conversie_block .item .btn-conversie, .conversie_block .item .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-conversie {
  margin-top: 48px;
}
.horizontal_scroller[data-block=text_image_repeater] .text-container .btn i, .horizontal_scroller[data-block=text_image_repeater] .text-container .owl-nav .owl-prev i, .owl-nav .horizontal_scroller[data-block=text_image_repeater] .text-container .owl-prev i,
.horizontal_scroller[data-block=text_image_repeater] .text-container .owl-nav .owl-next i,
.owl-nav .horizontal_scroller[data-block=text_image_repeater] .text-container .owl-next i, .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-ghost i, .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-3 i, .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-2 i, .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-1 i, .horizontal_scroller[data-block=text_image_repeater] .text-container .keuze_form_block .actions .btn-next i, .keuze_form_block .actions .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-next i, .horizontal_scroller[data-block=text_image_repeater] .text-container .conversie_block .item .btn-conversie i, .conversie_block .item .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-conversie i {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.horizontal_scroller[data-block=text_image_repeater] .text-container .btn:hover i, .horizontal_scroller[data-block=text_image_repeater] .text-container .owl-nav .owl-prev:hover i, .owl-nav .horizontal_scroller[data-block=text_image_repeater] .text-container .owl-prev:hover i,
.horizontal_scroller[data-block=text_image_repeater] .text-container .owl-nav .owl-next:hover i,
.owl-nav .horizontal_scroller[data-block=text_image_repeater] .text-container .owl-next:hover i, .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-ghost:hover i, .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-3:hover i, .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-2:hover i, .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-1:hover i, .horizontal_scroller[data-block=text_image_repeater] .text-container .keuze_form_block .actions .btn-next:hover i, .keuze_form_block .actions .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-next:hover i, .horizontal_scroller[data-block=text_image_repeater] .text-container .conversie_block .item .btn-conversie:hover i, .conversie_block .item .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-conversie:hover i {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.horizontal_scroller[data-block=text_image_repeater] .text-container p {
  margin-bottom: 24px;
  text-align: left;
}
.horizontal_scroller[data-block=text_image_repeater] .text-container h1,
.horizontal_scroller[data-block=text_image_repeater] .text-container h2,
.horizontal_scroller[data-block=text_image_repeater] .text-container h3,
.horizontal_scroller[data-block=text_image_repeater] .text-container h4,
.horizontal_scroller[data-block=text_image_repeater] .text-container h5 {
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
}
.horizontal_scroller[data-block=text_image_repeater] .text-container h3,
.horizontal_scroller[data-block=text_image_repeater] .text-container h3 span {
  font-size: 24px;
  font-weight: normal;
}
.horizontal_scroller[data-block=text_image_repeater] .text-container ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}
.horizontal_scroller[data-block=text_image_repeater] .text-container ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 8px;
}
.horizontal_scroller[data-block=text_image_repeater] .text-container ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-image: url("../images/Check.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.horizontal_scroller[data-block=text_image_repeater] .image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 450px;
  overflow: hidden;
  border-radius: 8px;
}
.horizontal_scroller[data-block=text_image_repeater] .image-container img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.horizontal_scroller[data-block=text_image_repeater] .card[data-style=paarse_streep] .text-container h1:before,
.horizontal_scroller[data-block=text_image_repeater] .card[data-style=paarse_streep] .text-container h2:before,
.horizontal_scroller[data-block=text_image_repeater] .card[data-style=paarse_streep] .text-container h3:before,
.horizontal_scroller[data-block=text_image_repeater] .card[data-style=paarse_streep] .text-container h4:before,
.horizontal_scroller[data-block=text_image_repeater] .card[data-style=paarse_streep] .text-container h5:before {
  content: "";
  width: 5px;
  height: 100%;
  left: -28px;
  top: 0;
  position: absolute;
  background-color: #931f80;
}
.horizontal_scroller[data-block=text_image_repeater] .card[data-style=met_kader] .card-inner {
  background-color: #fff;
  -webkit-box-shadow: rgba(31, 38, 135, 0.08) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.08) 0px 8px 32px;
  border-radius: 16px;
  margin: 0 32px;
  padding: 48px;
}
.horizontal_scroller[data-block=text_image_repeater] .carousel-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-top: 32px;
}
.horizontal_scroller[data-block=text_image_repeater] .carousel-controls .tir-nav-prev,
.horizontal_scroller[data-block=text_image_repeater] .carousel-controls .tir-nav-next {
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  padding: 0;
  cursor: pointer;
  color: #7e7e7e;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.horizontal_scroller[data-block=text_image_repeater] .carousel-controls .tir-nav-prev i,
.horizontal_scroller[data-block=text_image_repeater] .carousel-controls .tir-nav-next i {
  font-size: 16px;
}
.horizontal_scroller[data-block=text_image_repeater] .carousel-controls .tir-nav-prev:hover, .horizontal_scroller[data-block=text_image_repeater] .carousel-controls .tir-nav-prev:focus, .horizontal_scroller[data-block=text_image_repeater] .carousel-controls .tir-nav-prev:active,
.horizontal_scroller[data-block=text_image_repeater] .carousel-controls .tir-nav-next:hover,
.horizontal_scroller[data-block=text_image_repeater] .carousel-controls .tir-nav-next:focus,
.horizontal_scroller[data-block=text_image_repeater] .carousel-controls .tir-nav-next:active {
  color: #3a3a40;
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.horizontal_scroller[data-block=text_image_repeater] .carousel-controls .tir-nav-prev:disabled,
.horizontal_scroller[data-block=text_image_repeater] .carousel-controls .tir-nav-next:disabled {
  opacity: 0.2;
  pointer-events: none;
}
.horizontal_scroller[data-block=text_image_repeater] .carousel-controls .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin: 0;
}
.horizontal_scroller[data-block=text_image_repeater] .carousel-controls .owl-dots .owl-dot {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.horizontal_scroller[data-block=text_image_repeater] .carousel-controls .owl-dots .owl-dot span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgb(246, 246, 246);
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
}
.horizontal_scroller[data-block=text_image_repeater] .carousel-controls .owl-dots .owl-dot.active span {
  background: linear-gradient(135deg, #58134d, #dc5bc7);
}
.horizontal_scroller[data-block=text_image_repeater][data-theme=dark] .intro-header .intro-content h1,
.horizontal_scroller[data-block=text_image_repeater][data-theme=dark] .intro-header .intro-content h2,
.horizontal_scroller[data-block=text_image_repeater][data-theme=dark] .intro-header .intro-content h3,
.horizontal_scroller[data-block=text_image_repeater][data-theme=dark] .intro-header .intro-content h4,
.horizontal_scroller[data-block=text_image_repeater][data-theme=dark] .intro-header .intro-content h5,
.horizontal_scroller[data-block=text_image_repeater][data-theme=dark] .intro-header .intro-content p {
  color: #fff;
}
.horizontal_scroller[data-block=text_image_repeater][data-theme=dark] .text-container p,
.horizontal_scroller[data-block=text_image_repeater][data-theme=dark] .text-container li {
  color: #fff;
}
.horizontal_scroller[data-block=text_image_repeater][data-theme=dark] .text-container h1,
.horizontal_scroller[data-block=text_image_repeater][data-theme=dark] .text-container h2,
.horizontal_scroller[data-block=text_image_repeater][data-theme=dark] .text-container h3,
.horizontal_scroller[data-block=text_image_repeater][data-theme=dark] .text-container h4,
.horizontal_scroller[data-block=text_image_repeater][data-theme=dark] .text-container h5 {
  color: #fff;
}
.horizontal_scroller[data-block=text_image_repeater][data-theme=dark] .carousel-controls .tir-nav-prev,
.horizontal_scroller[data-block=text_image_repeater][data-theme=dark] .carousel-controls .tir-nav-next {
  color: #fff;
}
.horizontal_scroller[data-block=text_image_repeater][data-theme=dark] .carousel-controls .tir-nav-prev:hover,
.horizontal_scroller[data-block=text_image_repeater][data-theme=dark] .carousel-controls .tir-nav-next:hover {
  color: #fff;
}
.horizontal_scroller[data-block=text_image_repeater][data-theme=dark] .carousel-controls .owl-dots .owl-dot span {
  background-color: #dddddd;
}
.horizontal_scroller[data-block=text_image_repeater][data-theme=dark] .carousel-controls .owl-dots .owl-dot.active span {
  background-color: #dc5bc7;
}
.horizontal_scroller[data-block=text_image_repeater][data-theme=brand] .intro-header .intro-content h1,
.horizontal_scroller[data-block=text_image_repeater][data-theme=brand] .intro-header .intro-content h2,
.horizontal_scroller[data-block=text_image_repeater][data-theme=brand] .intro-header .intro-content h3,
.horizontal_scroller[data-block=text_image_repeater][data-theme=brand] .intro-header .intro-content h4,
.horizontal_scroller[data-block=text_image_repeater][data-theme=brand] .intro-header .intro-content h5,
.horizontal_scroller[data-block=text_image_repeater][data-theme=brand] .intro-header .intro-content p {
  color: #fff;
}
.horizontal_scroller[data-block=text_image_repeater][data-theme=brand] .text-container p,
.horizontal_scroller[data-block=text_image_repeater][data-theme=brand] .text-container li {
  color: #fff;
}
.horizontal_scroller[data-block=text_image_repeater][data-theme=brand] .text-container h1,
.horizontal_scroller[data-block=text_image_repeater][data-theme=brand] .text-container h2,
.horizontal_scroller[data-block=text_image_repeater][data-theme=brand] .text-container h3,
.horizontal_scroller[data-block=text_image_repeater][data-theme=brand] .text-container h4,
.horizontal_scroller[data-block=text_image_repeater][data-theme=brand] .text-container h5 {
  color: #fff;
}
.horizontal_scroller[data-block=text_image_repeater][data-theme=brand] .owl-dots .owl-dot span {
  background-color: #dddddd;
}
.horizontal_scroller[data-block=text_image_repeater][data-theme=brand] .owl-dots .owl-dot.active span {
  background-color: #fff;
}
.horizontal_scroller[data-block=text_image_repeater][data-theme=neutral] .intro-header .intro-content h1,
.horizontal_scroller[data-block=text_image_repeater][data-theme=neutral] .intro-header .intro-content h2,
.horizontal_scroller[data-block=text_image_repeater][data-theme=neutral] .intro-header .intro-content h3,
.horizontal_scroller[data-block=text_image_repeater][data-theme=neutral] .intro-header .intro-content h4,
.horizontal_scroller[data-block=text_image_repeater][data-theme=neutral] .intro-header .intro-content h5,
.horizontal_scroller[data-block=text_image_repeater][data-theme=neutral] .intro-header .intro-content p {
  color: #3a3a40;
}
@media (max-width: 992px) {
  .horizontal_scroller[data-block=text_image_repeater] {
    padding: 32px 0;
  }
  .horizontal_scroller[data-block=text_image_repeater] .intro-header {
    margin-bottom: 32px;
  }
  .horizontal_scroller[data-block=text_image_repeater] .card-inner {
    padding: 32px 16px;
  }
  .horizontal_scroller[data-block=text_image_repeater] .text-container .btn, .horizontal_scroller[data-block=text_image_repeater] .text-container .owl-nav .owl-prev, .owl-nav .horizontal_scroller[data-block=text_image_repeater] .text-container .owl-prev,
  .horizontal_scroller[data-block=text_image_repeater] .text-container .owl-nav .owl-next,
  .owl-nav .horizontal_scroller[data-block=text_image_repeater] .text-container .owl-next, .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-ghost, .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-3, .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-2, .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-1, .horizontal_scroller[data-block=text_image_repeater] .text-container .keuze_form_block .actions .btn-next, .keuze_form_block .actions .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-next, .horizontal_scroller[data-block=text_image_repeater] .text-container .conversie_block .item .btn-conversie, .conversie_block .item .horizontal_scroller[data-block=text_image_repeater] .text-container .btn-conversie {
    width: 100%;
    text-align: center;
    margin-top: 24px;
  }
  .horizontal_scroller[data-block=text_image_repeater] .image-container {
    height: 300px;
    margin-top: 24px;
  }
  .horizontal_scroller[data-block=text_image_repeater] .card[data-style=met_kader] {
    padding: 0 16px;
  }
  .horizontal_scroller[data-block=text_image_repeater] .card[data-style=met_kader] .card-inner {
    margin: 0;
    padding: 24px 16px;
  }
}
@media (max-width: 576px) {
  .horizontal_scroller[data-block=text_image_repeater] .card[data-style=met_kader] {
    padding: 0 4px;
  }
  .horizontal_scroller[data-block=text_image_repeater] .card[data-style=met_kader] .card-inner {
    padding: 24px 8px;
  }
}

.txt_block.theme_2 {
  background-color: #931f80;
}
.txt_block.theme_2 h2 {
  color: #fff !important;
}
.txt_block.theme_2 p {
  color: #fff !important;
}
.txt_block.theme_2 a {
  color: #931f80 !important;
  background-color: #fff !important;
}
.txt_block.theme_2 a:hover {
  color: #fff !important;
  background-color: #3a3a40 !important;
}
.txt_block a {
  color: #fff !important;
  background-color: #931f80 !important;
}
.txt_block a:hover {
  color: #fff !important;
  background-color: #3a3a40 !important;
}
.txt_block .text-container h2 {
  margin-top: 0;
}
.txt_block .text-container.left {
  text-align: left;
}
.txt_block .text-container.center {
  text-align: center;
}
.txt_block .text-container.right {
  text-align: right;
}

.image_block {
  background-color: #fff;
  padding: 48px 0;
  position: relative;
}
.image_block[data-theme=dark] {
  background-color: #3b0c33;
}
.image_block[data-theme=dark]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center 35%, rgba(147, 31, 128, 0.6) 0%, rgba(147, 31, 128, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.image_block[data-theme=dark] > * {
  position: relative;
  z-index: 1;
}
.image_block[data-theme=brand] {
  background-color: #58134d;
}
.image_block[data-theme=neutral] {
  background-color: #931f80;
}
.image_block.deco-bar-image .image_block__image-container {
  margin-top: 64px;
}
.image_block__image-container {
  width: 100%;
  position: relative;
}
.image_block__image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  border-radius: 16px;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.8s ease-out;
  transition: transform 0.8s ease-out, opacity 0.6s ease-out;
  transition: transform 0.8s ease-out, opacity 0.6s ease-out, -webkit-transform 0.8s ease-out;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.image_block__image-container.in-view img {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.image_block__image-container .deco-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 32px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px 16px 0 0;
  -webkit-transition: -webkit-transform 0.15s ease-out;
  transition: -webkit-transform 0.15s ease-out;
  transition: transform 0.15s ease-out;
  transition: transform 0.15s ease-out, -webkit-transform 0.15s ease-out;
}
.image_block__image-container .deco-bar-1 {
  top: -24px;
  width: 95%;
  background-color: #7b2a71;
  z-index: -1;
}
.image_block__image-container .deco-bar-2 {
  top: -44px;
  width: 90%;
  background-color: #8e3c85;
  z-index: -2;
}
.image_block__title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 32px;
}
.image_block__title {
  color: #3a3a40;
  text-align: center;
}
.image_block__title h1,
.image_block__title h2,
.image_block__title h3,
.image_block__title h4,
.image_block__title h5,
.image_block__title h6 {
  margin-bottom: 16px;
}
.image_block__title p {
  margin-bottom: 8px;
}
.image_block__button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 32px;
}
@media (max-width: 992px) {
  .image_block {
    padding: 32px 0;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .image_block__image-container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .image_block {
    padding: 24px 0;
  }
  .image_block__title-container {
    margin-bottom: 24px;
  }
}

.faq_block .pill-container {
  margin-bottom: 16px;
}
.faq_block .intro {
  margin-bottom: 32px;
}
.faq_block .intro h1,
.faq_block .intro h2,
.faq_block .intro h3,
.faq_block .intro h4,
.faq_block .intro h5 {
  margin-top: 0;
  color: #3a3a40;
}
.faq_block .intro p {
  color: #3a3a40;
}
.faq_block .faq-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.faq_block .faq-item {
  background-color: #fff;
  border-radius: 16px;
  -webkit-box-shadow: rgba(31, 38, 135, 0.08) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.08) 0px 8px 32px;
  overflow: hidden;
}
.faq_block .faq-item__toggle {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  padding: 32px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq_block .faq-item__question {
  font-weight: 600;
  color: #3a3a40;
  font-size: 1rem;
  line-height: 1.5;
}
.faq_block .faq-item__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
          box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
}
.faq_block .faq-item__icon::before, .faq_block .faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background-color: #3a3a40;
  border-radius: 2px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.faq_block .faq-item__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.faq_block .faq-item.is-open .faq-item__icon::after {
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.faq_block .faq-item__answer {
  display: none;
  padding: 0 32px 32px;
}
.faq_block .faq-item__answer p {
  margin-bottom: 16px;
  color: #3a3a40;
  margin-top: 0;
}
.faq_block .faq-item__answer p:last-child {
  margin-bottom: 0;
}
.faq_block .faq-item__answer ul,
.faq_block .faq-item__answer ol {
  margin-bottom: 16px;
  padding-left: 24px;
  color: #3a3a40;
}
.faq_block .faq-item__answer ul li,
.faq_block .faq-item__answer ol li {
  margin-bottom: 8px;
}
.faq_block .faq-item.is-open .faq-item__answer {
  display: block;
}
.faq_block[data-theme=dark] .intro h1, .faq_block[data-theme=dark] .intro h2, .faq_block[data-theme=dark] .intro h3, .faq_block[data-theme=dark] .intro h4, .faq_block[data-theme=dark] .intro h5 {
  color: #fff;
}
.faq_block[data-theme=dark] .intro p {
  color: #dddddd;
}
.faq_block[data-theme=dark] .faq-item {
  background-color: rgba(255, 255, 255, 0.1);
}
.faq_block[data-theme=dark] .faq-item__question {
  color: #fff;
}
.faq_block[data-theme=dark] .faq-item__answer p, .faq_block[data-theme=dark] .faq-item__answer ul, .faq_block[data-theme=dark] .faq-item__answer ol {
  color: #dddddd;
}
.faq_block[data-theme=brand] .intro h1, .faq_block[data-theme=brand] .intro h2, .faq_block[data-theme=brand] .intro h3, .faq_block[data-theme=brand] .intro h4, .faq_block[data-theme=brand] .intro h5 {
  color: #fff;
}
.faq_block[data-theme=brand] .intro p {
  color: #dddddd;
}
.faq_block[data-theme=brand] .faq-item {
  background-color: rgba(255, 255, 255, 0.15);
}
.faq_block[data-theme=brand] .faq-item__question {
  color: #fff;
}
.faq_block[data-theme=brand] .faq-item__answer p, .faq_block[data-theme=brand] .faq-item__answer ul, .faq_block[data-theme=brand] .faq-item__answer ol {
  color: #dddddd;
}
.faq_block[data-theme=neutral] .faq-item {
  background-color: #fff;
}
@media (max-width: 992px) {
  .faq_block .faq-items {
    gap: 24px;
  }
  .faq_block .faq-item__toggle {
    padding: 24px;
  }
  .faq_block .faq-item__answer {
    padding: 0 24px 24px;
  }
}

.block-masonry[data-theme=dark] {
  background-color: #3b0c33;
}
.block-masonry .masonry-grid {
  margin: 0 auto;
}
.block-masonry .masonry-item {
  display: block;
  width: calc(33.333% - 24px);
  margin-bottom: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.block-masonry .masonry-item img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .block-masonry .masonry-item {
    width: calc(50% - 24px);
  }
}
@media screen and (max-width: 576px) {
  .block-masonry .masonry-item {
    width: 100%;
  }
}

.breadcrumbs-block[data-theme=dark] {
  background-color: #3b0c33;
}
.breadcrumbs-block[data-theme=dark] .breadcrumbs-item {
  color: #dddddd;
}
.breadcrumbs-block[data-theme=dark] .breadcrumbs-item a {
  color: #dddddd;
}
.breadcrumbs-block[data-theme=dark] .breadcrumbs-item a:hover {
  color: #fff;
}
.breadcrumbs-block[data-theme=dark] .breadcrumbs-item::before {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.breadcrumbs-block[data-theme=brand] {
  background-color: #58134d;
}
.breadcrumbs-block[data-theme=brand] .breadcrumbs-item {
  color: #dddddd;
}
.breadcrumbs-block[data-theme=brand] .breadcrumbs-item a {
  color: #dddddd;
}
.breadcrumbs-block[data-theme=brand] .breadcrumbs-item a:hover {
  color: #fff;
}
.breadcrumbs-block[data-theme=brand] .breadcrumbs-item::before {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.breadcrumbs-block[data-theme=neutral] {
  background-color: rgb(246, 246, 246);
}

.breadcrumbs {
  margin-top: 32px;
}
.breadcrumbs .breadcrumbs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}
.breadcrumbs .breadcrumbs-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #7e7e7e;
  font-size: 16px;
  font-weight: 400;
}
.breadcrumbs .breadcrumbs-item a {
  color: #7e7e7e;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.breadcrumbs .breadcrumbs-item a:hover {
  color: #3a3a40;
}
.breadcrumbs .breadcrumbs-item:not(:first-child)::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background-image: url("../images/icons/chevron-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.breadcrumbs .breadcrumbs-item.current span {
  color: #7e7e7e;
}

.hero_block {
  position: relative;
  max-height: 1000px;
  height: calc(100vh - 76px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  background-color: #fff;
}
.hero_block .image-container--angled {
  position: absolute;
  bottom: 0;
  right: -8%;
  height: 95%;
  width: 62%;
  overflow: hidden;
  opacity: 0;
  -webkit-animation: slideInFromBottom 0.8s ease-out 0.3s forwards;
          animation: slideInFromBottom 0.8s ease-out 0.3s forwards;
}
.hero_block .image-container--angled img {
  height: 100%;
  width: 150%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
}
.hero_block .image-container--svg {
  position: absolute;
  bottom: 0;
  right: -8%;
  height: 70%;
  width: 60%;
  overflow: hidden;
  opacity: 0;
  -webkit-animation: slideInFromBottom 0.8s ease-out 1s forwards;
          animation: slideInFromBottom 0.8s ease-out 1s forwards;
}
.hero_block .image-container--svg .mobile-image {
  display: none;
}
@-webkit-keyframes slideInFromBottom {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideInFromBottom {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.hero_block .decoration-squares {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.hero_block .decoration-squares .square {
  position: absolute;
  border-radius: 16px;
  -webkit-transition: -webkit-transform 0.15s ease-out;
  transition: -webkit-transform 0.15s ease-out;
  transition: transform 0.15s ease-out;
  transition: transform 0.15s ease-out, -webkit-transform 0.15s ease-out;
}
.hero_block .decoration-squares .square.square-1 {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #58134d, #dc5bc7);
  opacity: 0.15;
  top: 80%;
  left: 5%;
}
.hero_block .decoration-squares .square.square-2 {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #58134d, #dc5bc7);
  opacity: 0.2;
  top: 8%;
  left: 2%;
}
.hero_block .decoration-squares .square.square-3 {
  width: 112px;
  height: 112px;
  background: linear-gradient(135deg, #ff8904, #fb64b6);
  opacity: 0.1;
  top: 10%;
  right: 5%;
}
.hero_block .decoration-squares[data-layout=vierkante_vlakken_3] .square-1 {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #58134d, #dc5bc7);
  opacity: 0.15;
  top: 20%;
  left: 5%;
}
.hero_block .decoration-squares[data-layout=vierkante_vlakken_3] .square-2 {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #58134d, #dc5bc7);
  opacity: 0.2;
  top: 10%;
  left: auto;
  right: 5%;
}
.hero_block .decoration-squares[data-layout=vierkante_vlakken_3] .square-3 {
  width: 112px;
  height: 112px;
  background: linear-gradient(135deg, #ff8904, #fb64b6);
  opacity: 0.1;
  top: auto;
  bottom: 10%;
  left: auto;
  right: 5%;
}
.hero_block .decoration-squares[data-layout=vierkante_vlakken_2] .square-1 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #58134d, #dc5bc7);
  opacity: 0.15;
  top: auto;
  bottom: 10%;
  left: 5%;
}
.hero_block .decoration-squares[data-layout=vierkante_vlakken_2] .square-2 {
  width: 136px;
  height: 136px;
  background: linear-gradient(135deg, #58134d, #dc5bc7);
  opacity: 0.2;
  top: 10%;
  left: auto;
  right: 5%;
}
.hero_block .decoration-squares[data-layout=vierkante_vlakken_2] .square-3 {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #ff8904, #fb64b6);
  opacity: 0.1;
  top: 5%;
  left: 3%;
  right: auto;
}
.hero_block .image-container:not(.image-container--angled) {
  overflow: hidden;
  border-radius: 16px;
}
.hero_block .image-container:not(.image-container--angled) img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 1.2s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 1.2s ease-out;
  transition: transform 1.2s ease-out, opacity 0.8s ease-out;
  transition: transform 1.2s ease-out, opacity 0.8s ease-out, -webkit-transform 1.2s ease-out;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  -webkit-transition: transform 1.2s ease-out, opacity 0.8s ease-out;
  -moz-transition: transform 1.2s ease-out, opacity 0.8s ease-out;
  -ms-transition: transform 1.2s ease-out, opacity 0.8s ease-out;
  -o-transition: transform 1.2s ease-out, opacity 0.8s ease-out;
}
.hero_block .image-container:not(.image-container--angled).in-view img {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.hero_block .content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero_block .content .text-container {
  max-width: 800px;
  width: 100%;
}
.hero_block .content .text-container > * {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}
.hero_block .content .text-container.in-view > * {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.hero_block .content .text-container.in-view > *:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.hero_block .content .text-container.in-view > *:nth-child(2) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.hero_block .content .text-container.in-view > *:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.hero_block .content .text-container.in-view > *:nth-child(4) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
.hero_block .content .text-container .title {
  color: #3a3a40;
  margin-bottom: 16px;
}
.hero_block .content .text-container .subtitle {
  color: #3a3a40;
  margin-bottom: 24px;
}
.hero_block .content .text-container .description {
  color: #3a3a40;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero_block .content .text-container .description p {
  margin-bottom: 16px;
  max-width: 624px;
}
.hero_block .content .text-container .description h1,
.hero_block .content .text-container .description h2,
.hero_block .content .text-container .description h3,
.hero_block .content .text-container .description h4,
.hero_block .content .text-container .description h5,
.hero_block .content .text-container .description h6 {
  margin-bottom: 16px;
}
.hero_block .content .text-container .description h1 .js-changing-text,
.hero_block .content .text-container .description h2 .js-changing-text,
.hero_block .content .text-container .description h3 .js-changing-text,
.hero_block .content .text-container .description h4 .js-changing-text,
.hero_block .content .text-container .description h5 .js-changing-text,
.hero_block .content .text-container .description h6 .js-changing-text {
  display: inline-block;
}
.hero_block .content .text-container .description h1 .js-changing-text::after,
.hero_block .content .text-container .description h2 .js-changing-text::after,
.hero_block .content .text-container .description h3 .js-changing-text::after,
.hero_block .content .text-container .description h4 .js-changing-text::after,
.hero_block .content .text-container .description h5 .js-changing-text::after,
.hero_block .content .text-container .description h6 .js-changing-text::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 4px;
  background-color: currentColor;
  vertical-align: text-bottom;
  -webkit-animation: blink 0.7s infinite;
          animation: blink 0.7s infinite;
}
@-webkit-keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
.hero_block .content .text-container .cta {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.hero_block .content .text-container .cta .btn, .hero_block .content .text-container .cta .owl-nav .owl-prev, .owl-nav .hero_block .content .text-container .cta .owl-prev,
.hero_block .content .text-container .cta .owl-nav .owl-next,
.owl-nav .hero_block .content .text-container .cta .owl-next, .hero_block .content .text-container .cta .btn-ghost, .hero_block .content .text-container .cta .btn-3, .hero_block .content .text-container .cta .btn-2, .hero_block .content .text-container .cta .btn-1, .hero_block .content .text-container .cta .keuze_form_block .actions .btn-next, .keuze_form_block .actions .hero_block .content .text-container .cta .btn-next, .hero_block .content .text-container .cta .conversie_block .item .btn-conversie, .conversie_block .item .hero_block .content .text-container .cta .btn-conversie {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.5s ease-out, background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, background-color 0.3s ease, color 0.3s ease;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.5s ease-out;
}
.hero_block .content .text-container.in-view .cta .btn:nth-child(1), .hero_block .content .text-container.in-view .cta .owl-nav .owl-prev:nth-child(1), .owl-nav .hero_block .content .text-container.in-view .cta .owl-prev:nth-child(1),
.hero_block .content .text-container.in-view .cta .owl-nav .owl-next:nth-child(1),
.owl-nav .hero_block .content .text-container.in-view .cta .owl-next:nth-child(1), .hero_block .content .text-container.in-view .cta .btn-ghost:nth-child(1), .hero_block .content .text-container.in-view .cta .btn-3:nth-child(1), .hero_block .content .text-container.in-view .cta .btn-2:nth-child(1), .hero_block .content .text-container.in-view .cta .btn-1:nth-child(1), .hero_block .content .text-container.in-view .cta .keuze_form_block .actions .btn-next:nth-child(1), .keuze_form_block .actions .hero_block .content .text-container.in-view .cta .btn-next:nth-child(1), .hero_block .content .text-container.in-view .cta .conversie_block .item .btn-conversie:nth-child(1), .conversie_block .item .hero_block .content .text-container.in-view .cta .btn-conversie:nth-child(1) {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.hero_block .content .text-container.in-view .cta .btn:nth-child(2), .hero_block .content .text-container.in-view .cta .owl-nav .owl-prev:nth-child(2), .owl-nav .hero_block .content .text-container.in-view .cta .owl-prev:nth-child(2),
.hero_block .content .text-container.in-view .cta .owl-nav .owl-next:nth-child(2),
.owl-nav .hero_block .content .text-container.in-view .cta .owl-next:nth-child(2), .hero_block .content .text-container.in-view .cta .btn-ghost:nth-child(2), .hero_block .content .text-container.in-view .cta .btn-3:nth-child(2), .hero_block .content .text-container.in-view .cta .btn-2:nth-child(2), .hero_block .content .text-container.in-view .cta .btn-1:nth-child(2), .hero_block .content .text-container.in-view .cta .keuze_form_block .actions .btn-next:nth-child(2), .keuze_form_block .actions .hero_block .content .text-container.in-view .cta .btn-next:nth-child(2), .hero_block .content .text-container.in-view .cta .conversie_block .item .btn-conversie:nth-child(2), .conversie_block .item .hero_block .content .text-container.in-view .cta .btn-conversie:nth-child(2) {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.65s;
          transition-delay: 0.65s;
}
.hero_block .content .text-container .stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  margin-top: 48px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.hero_block .content .text-container .stats .stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 2em;
}
.hero_block .content .text-container .stats .stat:not(:last-child) {
  border-right: 1px solid rgb(246, 246, 246);
}
.hero_block .content .text-container .stats .stat:first-child {
  padding-left: 0;
}
.hero_block .content .text-container .stats .stat .number {
  font-size: 28px;
  font-weight: 700;
  color: #931f80;
  line-height: 1;
}
.hero_block .content .text-container .stats .stat .number .suffix {
  font-size: 28px;
  font-weight: 600;
}
.hero_block .content .text-container .stats .stat .label {
  font-size: 14px;
  color: #3a3a40;
  margin-top: 4px;
}
.hero_block .content .text-container.in-view .stats {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.hero_block[data-type=default] .image-container {
  width: 600px;
  height: 560px;
}
.hero_block[data-type=animated_svg] .description p {
  max-width: 400px;
}
@media (max-width: 992px) {
  .hero_block[data-type=animated_svg] * {
    -webkit-animation: none !important;
            animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
  .hero_block[data-type=animated_svg] .image-container--svg .mobile-image {
    opacity: 1 !important;
    display: block !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
}
.hero_block[data-type=schuine_afbeelding] {
  background: linear-gradient(155deg, #ffffff, rgba(235, 102, 0, 0.0352941176));
}
.hero_block[data-type=brede_afbeelding] {
  height: auto;
  max-height: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.hero_block[data-type=brede_afbeelding] .wide-image-container {
  position: relative;
  width: 100%;
  max-height: var(--hero-image-max-height, 400px);
  overflow: hidden;
}
.hero_block[data-type=brede_afbeelding] .wide-image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 84%;
  height: 101%;
  width: 50px;
  z-index: 2;
  background-image: url("../images/deco_vector.svg");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
}
.hero_block[data-type=brede_afbeelding] .wide-image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 60%;
  height: 101%;
  width: 50px;
  z-index: 2;
  background-image: url("../images/deco_vector.svg");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
}
.hero_block[data-type=brede_afbeelding] .wide-image-container img {
  max-height: var(--hero-image-max-height, 400px);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 16px;
}
.hero_block[data-type=brede_afbeelding] .content {
  height: auto;
  padding: 64px 0;
}
.hero_block[data-type=brede_afbeelding] .content .text-container {
  max-width: 100%;
}
@media (max-width: 992px) {
  .hero_block {
    height: auto;
    min-height: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero_block[data-type=brede_afbeelding] .wide-image-container::before, .hero_block[data-type=brede_afbeelding] .wide-image-container::after {
    display: none;
  }
  .hero_block[data-type=default] .image-container {
    width: 100%;
    height: auto;
  }
  .hero_block .image-container--angled {
    position: relative;
    right: auto;
    bottom: auto;
    width: 110%;
    height: 330px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    z-index: 2;
    margin-left: -5%;
  }
  .hero_block .image-container--angled img {
    width: 100%;
    -o-object-position: center top;
       object-position: center top;
  }
  .hero_block .image-container--svg {
    position: relative;
    right: auto;
    bottom: auto;
    width: 110%;
    height: 480px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    z-index: 2;
    margin-left: -5%;
    overflow: hidden;
    opacity: 1;
  }
  .hero_block .image-container--svg svg {
    display: none;
  }
  .hero_block .image-container--svg .mobile-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    display: block;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .hero_block .container {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .hero_block .content {
    padding: 48px 16px;
  }
}
@media (max-width: 768px) {
  .hero_block .image-container--angled {
    height: 220px;
  }
  .hero_block .content {
    padding: 32px 8px;
  }
}

.hero_block[data-type=animated_svg] #name2_animation_group #end_name2 {
  opacity: 0;
  -webkit-animation: endName2Loop 12s ease-in-out 2s infinite;
          animation: endName2Loop 12s ease-in-out 2s infinite;
}
.hero_block[data-type=animated_svg] #name2_animation_group #shadow_2 {
  opacity: 0;
  -webkit-animation: shadow2Loop 12s ease-in-out 2s infinite;
          animation: shadow2Loop 12s ease-in-out 2s infinite;
}
.hero_block[data-type=animated_svg] #name2_animation_group #floating_name_2 {
  opacity: 0;
  -webkit-animation: floatingName2Loop 12s ease-in-out 2s infinite;
          animation: floatingName2Loop 12s ease-in-out 2s infinite;
}
.hero_block[data-type=animated_svg] #name2_animation_group #original_name2_hider {
  opacity: 0;
  -webkit-animation: hiderLoop 12s ease-in-out 2s infinite;
          animation: hiderLoop 12s ease-in-out 2s infinite;
}
.hero_block[data-type=animated_svg] [id^=person_sidebar] {
  opacity: 0;
  pointer-events: none;
}
.hero_block[data-type=animated_svg] [id^=person_sidebar] [id^=person_shadow] {
  opacity: 0;
}
.hero_block[data-type=animated_svg] [id^=person_sidebar] [id^=person_card] {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
}
.hero_block[data-type=animated_svg] [id^=person_sidebar].is-active {
  opacity: 1;
}
.hero_block[data-type=animated_svg] [id^=person_sidebar].is-active [id^=person_shadow] {
  -webkit-animation: svgShadowIn 0.6s ease forwards;
          animation: svgShadowIn 0.6s ease forwards;
}
.hero_block[data-type=animated_svg] [id^=person_sidebar].is-active [id^=person_card] {
  -webkit-animation: svgCardIn 0.6s ease 0.1s forwards;
          animation: svgCardIn 0.6s ease 0.1s forwards;
}
.hero_block[data-type=animated_svg] [id^=person_sidebar].is-exiting {
  opacity: 1;
}
.hero_block[data-type=animated_svg] [id^=person_sidebar].is-exiting [id^=person_shadow] {
  -webkit-animation: svgShadowOut 0.3s ease forwards;
          animation: svgShadowOut 0.3s ease forwards;
}
.hero_block[data-type=animated_svg] [id^=person_sidebar].is-exiting [id^=person_card] {
  -webkit-animation: svgCardOut 0.5s ease forwards;
          animation: svgCardOut 0.5s ease forwards;
}

@-webkit-keyframes svgShadowIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes svgShadowIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes svgShadowOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes svgShadowOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes svgCardIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes svgCardIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes svgCardOut {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
}
@keyframes svgCardOut {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
}
@-webkit-keyframes floatPath {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(84px, -80px);
            transform: translate(84px, -80px);
  }
  100% {
    -webkit-transform: translate(-70px, -159px);
            transform: translate(-70px, -159px);
  }
}
@keyframes floatPath {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(84px, -80px);
            transform: translate(84px, -80px);
  }
  100% {
    -webkit-transform: translate(-70px, -159px);
            transform: translate(-70px, -159px);
  }
}
@-webkit-keyframes floatingName2Loop {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 24px);
            transform: translate(0, 24px);
  }
  6% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  16% {
    opacity: 1;
    -webkit-transform: translate(84px, -80px);
            transform: translate(84px, -80px);
  }
  26% {
    opacity: 1;
    -webkit-transform: translate(-70px, -159px);
            transform: translate(-70px, -159px);
  }
  32% {
    opacity: 0;
    -webkit-transform: translate(-70px, -135px);
            transform: translate(-70px, -135px);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-70px, -135px);
            transform: translate(-70px, -135px);
  }
  56% {
    opacity: 1;
    -webkit-transform: translate(-70px, -159px);
            transform: translate(-70px, -159px);
  }
  66% {
    opacity: 1;
    -webkit-transform: translate(84px, -80px);
            transform: translate(84px, -80px);
  }
  76% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  82% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  88% {
    opacity: 0;
    -webkit-transform: translate(0, 24px);
            transform: translate(0, 24px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, 24px);
            transform: translate(0, 24px);
  }
}
@keyframes floatingName2Loop {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 24px);
            transform: translate(0, 24px);
  }
  6% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  16% {
    opacity: 1;
    -webkit-transform: translate(84px, -80px);
            transform: translate(84px, -80px);
  }
  26% {
    opacity: 1;
    -webkit-transform: translate(-70px, -159px);
            transform: translate(-70px, -159px);
  }
  32% {
    opacity: 0;
    -webkit-transform: translate(-70px, -135px);
            transform: translate(-70px, -135px);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-70px, -135px);
            transform: translate(-70px, -135px);
  }
  56% {
    opacity: 1;
    -webkit-transform: translate(-70px, -159px);
            transform: translate(-70px, -159px);
  }
  66% {
    opacity: 1;
    -webkit-transform: translate(84px, -80px);
            transform: translate(84px, -80px);
  }
  76% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  82% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  88% {
    opacity: 0;
    -webkit-transform: translate(0, 24px);
            transform: translate(0, 24px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, 24px);
            transform: translate(0, 24px);
  }
}
@-webkit-keyframes endName2Loop {
  0% {
    opacity: 0;
  }
  26% {
    opacity: 0;
  }
  36% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  56% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes endName2Loop {
  0% {
    opacity: 0;
  }
  26% {
    opacity: 0;
  }
  36% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  56% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes hiderLoop {
  0% {
    opacity: 0;
  }
  6% {
    opacity: 1;
  }
  26% {
    opacity: 1;
  }
  32% {
    opacity: 0;
  }
  56% {
    opacity: 0;
  }
  62% {
    opacity: 1;
  }
  82% {
    opacity: 1;
  }
  88% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes hiderLoop {
  0% {
    opacity: 0;
  }
  6% {
    opacity: 1;
  }
  26% {
    opacity: 1;
  }
  32% {
    opacity: 0;
  }
  56% {
    opacity: 0;
  }
  62% {
    opacity: 1;
  }
  82% {
    opacity: 1;
  }
  88% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes shadow2Loop {
  0% {
    opacity: 0;
  }
  6% {
    opacity: 1;
  }
  82% {
    opacity: 1;
  }
  88% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes shadow2Loop {
  0% {
    opacity: 0;
  }
  6% {
    opacity: 1;
  }
  82% {
    opacity: 1;
  }
  88% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.archive_block.theme_2 {
  background-color: #931f80;
}
.archive_block.theme_2 .archive_block__title {
  color: #fff !important;
}
.archive_block.theme_2 .archive_block__search-button {
  background: #931f80 !important;
}
.archive_block .archive_block__search-container {
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.archive_block .archive_block__search-wrapper {
  position: relative;
  max-width: 500px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border: 2px solid #3a3a40;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.archive_block .archive_block__search-wrapper:focus-within {
  border-color: #931f80;
}
.archive_block .archive_block__search-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 16px;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
}
.archive_block .archive_block__search-input::-webkit-input-placeholder {
  color: rgba(58, 58, 64, 0.6);
}
.archive_block .archive_block__search-input::-moz-placeholder {
  color: rgba(58, 58, 64, 0.6);
}
.archive_block .archive_block__search-input:-ms-input-placeholder {
  color: rgba(58, 58, 64, 0.6);
}
.archive_block .archive_block__search-input::-ms-input-placeholder {
  color: rgba(58, 58, 64, 0.6);
}
.archive_block .archive_block__search-input::placeholder {
  color: rgba(58, 58, 64, 0.6);
}
.archive_block .archive_block__search-button {
  padding: 12px 16px;
  background: #3a3a40;
  color: #fff;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.archive_block .archive_block__search-button:hover {
  background: #931f80;
}
.archive_block .archive_block__search-button i {
  font-size: 16px;
}
.archive_block .archive_block__results-container {
  position: relative;
}
.archive_block .archive_block__loading {
  text-align: center;
  padding: 2rem;
  color: #3a3a40;
}
.archive_block .archive_block__loading .archive_block__spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(58, 58, 64, 0.1);
  border-left: 4px solid #3a3a40;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.archive_block .archive_block__posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .archive_block .archive_block__posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.archive_block .archive_block__post-card {
  background: #fff;
  border: 1px solid rgba(58, 58, 64, 0.1);
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -webkit-box-shadow: 0 2px 8px rgba(58, 58, 64, 0.1);
          box-shadow: 0 2px 8px rgba(58, 58, 64, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.archive_block .archive_block__post-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 25px rgba(58, 58, 64, 0.15);
          box-shadow: 0 8px 25px rgba(58, 58, 64, 0.15);
}
.archive_block .archive_block__card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.archive_block .archive_block__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.archive_block .archive_block__card-image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.archive_block .archive_block__placeholder-image {
  width: 100%;
  height: 100%;
  background: rgba(58, 58, 64, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: rgba(58, 58, 64, 0.3);
}
.archive_block .archive_block__placeholder-image i {
  font-size: 3rem;
}
.archive_block .archive_block__card-content {
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.archive_block .archive_block__card-title {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}
.archive_block .archive_block__card-title a {
  color: #3a3a40;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.archive_block .archive_block__card-title a:hover {
  color: #931f80;
}
.archive_block .archive_block__card-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(58, 58, 64, 0.6);
}
.archive_block .archive_block__card-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
.archive_block .archive_block__card-date::before {
  content: "📅";
  font-size: 0.75rem;
}
.archive_block .archive_block__card-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  background: rgba(147, 31, 128, 0.1);
  color: #931f80;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}
.archive_block .archive_block__card-category::before {
  content: "🏷️";
  font-size: 0.75rem;
}
.archive_block .archive_block__card-excerpt {
  margin-bottom: 1rem;
  color: rgba(58, 58, 64, 0.7);
  line-height: 1.5;
  font-size: 0.9rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.archive_block .archive_block__card-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: #931f80;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  margin-top: auto;
}
.archive_block .archive_block__card-link:hover {
  color: #3a3a40;
}
.archive_block .archive_block__card-link i {
  font-size: 0.75rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.archive_block .archive_block__card-link:hover i {
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}
.archive_block .archive_block__no-posts {
  text-align: center;
  padding: 3rem;
  color: rgba(58, 58, 64, 0.6);
  font-size: 1.1rem;
}
.archive_block .archive_block__load-more-container {
  text-align: center;
  margin-top: 2rem;
}
.archive_block .archive_block__load-more-btn {
  background: #931f80;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.archive_block .archive_block__load-more-btn:hover {
  background: rgb(104.8820224719, 22.1179775281, 91.3258426966);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.archive_block .archive_block__load-more-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.archive_block .archive_block__pagination-info {
  text-align: center;
  margin-top: 1rem;
  color: rgba(58, 58, 64, 0.6);
  font-size: 0.9rem;
}
.archive_block.theme_2 {
  background-color: #931f80;
}
.archive_block.theme_2 .archive_block__search-wrapper {
  background: #fff;
  border-color: #fff;
}
.archive_block.theme_2 .archive_block__search-wrapper:focus-within {
  border-color: #fff;
  -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
          box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}
.archive_block.theme_2 .archive_block__search-input {
  color: #3a3a40;
}
.archive_block.theme_2 .archive_block__search-input::-webkit-input-placeholder {
  color: rgba(58, 58, 64, 0.6);
}
.archive_block.theme_2 .archive_block__search-input::-moz-placeholder {
  color: rgba(58, 58, 64, 0.6);
}
.archive_block.theme_2 .archive_block__search-input:-ms-input-placeholder {
  color: rgba(58, 58, 64, 0.6);
}
.archive_block.theme_2 .archive_block__search-input::-ms-input-placeholder {
  color: rgba(58, 58, 64, 0.6);
}
.archive_block.theme_2 .archive_block__search-input::placeholder {
  color: rgba(58, 58, 64, 0.6);
}
.archive_block.theme_2 .archive_block__search-button {
  background: #3a3a40;
  color: #fff;
}
.archive_block.theme_2 .archive_block__search-button:hover {
  background: rgb(33.7540983607, 33.7540983607, 37.2459016393);
}
.archive_block.theme_2 .archive_block__loading {
  color: #fff;
}
.archive_block.theme_2 .archive_block__loading .archive_block__spinner {
  border-color: rgba(255, 255, 255, 0.1);
  border-left-color: #fff;
}
.archive_block.theme_2 .archive_block__post-card {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.archive_block.theme_2 .archive_block__no-posts {
  color: rgba(255, 255, 255, 0.8);
}
.archive_block.theme_2 .archive_block__load-more-btn {
  background: #fff;
  color: #3a3a40;
}
.archive_block.theme_2 .archive_block__load-more-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}
.archive_block.theme_2 .archive_block__pagination-info {
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .archive_block .archive_block__posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .archive_block .archive_block__search-wrapper {
    margin: 0 1rem;
  }
  .archive_block .archive_block__card-content {
    padding: 1rem;
  }
  .archive_block .archive_block__card-title {
    font-size: 1.1rem;
  }
}

.logo_slider_block {
  background-color: #fff;
  padding: 48px 0;
}
.logo_slider_block .pill-container {
  text-align: center;
  margin-bottom: 24px;
}
.logo_slider_block__title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 32px;
}
.logo_slider_block__title {
  color: #3a3a40;
  text-align: center;
}
.logo_slider_block__title h1,
.logo_slider_block__title h2,
.logo_slider_block__title h3,
.logo_slider_block__title h4,
.logo_slider_block__title h5,
.logo_slider_block__title h6 {
  margin-bottom: 16px;
}
.logo_slider_block__title p {
  margin-bottom: 8px;
}
.logo_slider_block__slider .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.logo_slider_block__slider--grayscale .logo_slider_block__item img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.logo_slider_block__slider--grayscale .logo_slider_block__item a:hover img,
.logo_slider_block__slider--grayscale .logo_slider_block__item:hover img {
  -webkit-filter: none;
          filter: none;
  opacity: 1;
}
.logo_slider_block__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px;
}
.logo_slider_block__item img {
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .logo_slider_block {
    padding: 32px 0;
  }
}
@media (max-width: 768px) {
  .logo_slider_block {
    padding: 24px 0;
  }
  .logo_slider_block__title-container {
    margin-bottom: 24px;
  }
}

.contact_block[data-theme=dark] {
  background-color: #3b0c33;
}
.contact_block[data-theme=dark] h2 {
  color: #fff !important;
}
.contact_block[data-theme=dark] p {
  color: #fff !important;
}
.contact_block[data-theme=dark] a {
  color: #931f80 !important;
  background-color: #fff !important;
}
.contact_block[data-theme=dark] a:hover {
  color: #fff !important;
  background-color: #3b0c33 !important;
}
.contact_block[data-theme=dark] label {
  color: #fff !important;
}
.contact_block[data-theme=dark] legend {
  color: #fff !important;
}
.contact_block .contact-container h2 {
  margin-top: 0;
}
.contact_block .contact-container .gform_wrapper .gfield {
  margin-bottom: 24px;
}
.contact_block .contact-container .gform_wrapper .gfield label {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}
.contact_block .contact-container .gform_wrapper .gfield input[type=text],
.contact_block .contact-container .gform_wrapper .gfield input[type=email],
.contact_block .contact-container .gform_wrapper .gfield input[type=tel],
.contact_block .contact-container .gform_wrapper .gfield input[type=url],
.contact_block .contact-container .gform_wrapper .gfield textarea,
.contact_block .contact-container .gform_wrapper .gfield select {
  width: 100%;
  padding: 16px;
  border: 1px solid #3a3a40;
  border-radius: 2px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.contact_block .contact-container .gform_wrapper .gfield input[type=text]:focus,
.contact_block .contact-container .gform_wrapper .gfield input[type=email]:focus,
.contact_block .contact-container .gform_wrapper .gfield input[type=tel]:focus,
.contact_block .contact-container .gform_wrapper .gfield input[type=url]:focus,
.contact_block .contact-container .gform_wrapper .gfield textarea:focus,
.contact_block .contact-container .gform_wrapper .gfield select:focus {
  outline: none;
  border-color: #931f80;
  -webkit-box-shadow: 0 0 0 2px rgba(147, 31, 128, 0.2);
          box-shadow: 0 0 0 2px rgba(147, 31, 128, 0.2);
}
.contact_block .contact-container .gform_wrapper .gfield textarea {
  min-height: 120px;
  resize: vertical;
}
.contact_block .contact-container .gform_wrapper .gform_footer {
  margin-top: 24px;
}
.contact_block .contact-container .gform_wrapper .gform_footer .gform_button {
  background-color: #3b0c33;
  color: #fff;
  padding: 16px 32px;
  border: none;
  border-radius: 2px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.contact_block .contact-container .gform_wrapper .gform_footer .gform_button:hover {
  background-color: #931f80;
}
.contact_block .contact-container .gform_wrapper .gfield_error .gfield_label {
  color: #931f80;
}
.contact_block .contact-container .gform_wrapper .gfield_error input,
.contact_block .contact-container .gform_wrapper .gfield_error textarea,
.contact_block .contact-container .gform_wrapper .gfield_error select {
  border-color: #931f80;
}
.contact_block .contact-container .gform_wrapper .gfield_description {
  color: #3a3a40;
  margin-top: 4px;
}

.google_maps_block__content {
  padding: 48px 0;
}
@media (min-width: 992px) {
  .google_maps_block__content {
    padding: 48px 48px 48px 0;
  }
}
.google_maps_block__content h1,
.google_maps_block__content h2,
.google_maps_block__content h3,
.google_maps_block__content h4,
.google_maps_block__content h5,
.google_maps_block__content h6 {
  margin-bottom: 16px;
}
.google_maps_block__content p {
  margin-bottom: 16px;
}
.google_maps_block__content p:last-child {
  margin-bottom: 0;
}
.google_maps_block__content ul,
.google_maps_block__content ol {
  margin-bottom: 16px;
  padding-left: 32px;
}
.google_maps_block__content li {
  margin-bottom: 8px;
}
.google_maps_block__map-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 6px rgba(1, 1, 1, 0.628) 0px 8px 24px;
          box-shadow: 0 4px 6px rgba(1, 1, 1, 0.628) 0px 8px 24px;
}
@media (max-width: 992px) {
  .google_maps_block__map-container {
    margin-top: 48px;
  }
}
.google_maps_block__map {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 8px;
}
.google_maps_block__map img {
  max-width: none !important;
}
.google_maps_block:not(.google_maps_block--two-columns) .google_maps_block__map-container {
  margin-top: 0;
}
.google_maps_block.google_maps_block--two-columns .google_maps_block__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100%;
}
@media (max-width: 992px) {
  .google_maps_block__content {
    padding: 16px 0;
  }
  .google_maps_block__map-container {
    margin-top: 16px;
  }
}
.google_maps_block[data-theme=dark] .google_maps_block__content {
  color: #fff;
}
.google_maps_block[data-theme=light] .google_maps_block__content {
  color: #3a3a40;
}

.google_maps_block__map--loading {
  background: #931f80;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #3a3a40;
  font-style: italic;
}
.google_maps_block__map--loading::before {
  content: "Kaart wordt geladen...";
}

.google_maps_block__map--error {
  background: rgba(147, 31, 128, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #931f80;
  font-style: italic;
}
.google_maps_block__map--error::before {
  content: "Kaart kon niet worden geladen";
}

.recent_posts_block {
  overflow: hidden;
}
.recent_posts_block__title {
  margin-bottom: 48px;
  font-size: 2rem;
  font-weight: 700;
  color: #3a3a40;
}
.recent_posts_block__carousel-wrapper {
  position: relative;
  margin-top: 48px;
  padding-left: 15px;
}
@media (min-width: 576px) {
  .recent_posts_block__carousel-wrapper {
    padding-left: calc((100vw - 540px) / 2);
  }
}
@media (min-width: 768px) {
  .recent_posts_block__carousel-wrapper {
    padding-left: calc((100vw - 720px) / 2);
  }
}
@media (min-width: 992px) {
  .recent_posts_block__carousel-wrapper {
    padding-left: calc((100vw - 960px) / 2);
  }
}
@media (min-width: 1200px) {
  .recent_posts_block__carousel-wrapper {
    padding-left: calc((100vw - 1140px) / 2);
  }
}
@media (min-width: 576px) {
  .recent_posts_block__carousel-wrapper--fluid {
    padding-left: 15px;
  }
}
.recent_posts_block__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
  padding: 8px 0;
}
.recent_posts_block__carousel.owl-carousel .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.recent_posts_block__carousel.owl-carousel .owl-item {
  padding-right: 16px;
}
.recent_posts_block__carousel.owl-carousel .owl-dots {
  display: none;
}
.recent_posts_block__post-card {
  background-color: #fff;
  border: 1px solid rgba(58, 58, 64, 0.1);
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -webkit-box-shadow: 0 2px 8px rgba(58, 58, 64, 0.1);
          box-shadow: 0 2px 8px rgba(58, 58, 64, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.recent_posts_block__post-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 25px rgba(58, 58, 64, 0.15);
          box-shadow: 0 8px 25px rgba(58, 58, 64, 0.15);
}
.recent_posts_block__card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.recent_posts_block__card-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.recent_posts_block__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.recent_posts_block__card-image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.recent_posts_block__placeholder-image {
  width: 100%;
  height: 100%;
  background-color: rgba(58, 58, 64, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: rgba(58, 58, 64, 0.3);
}
.recent_posts_block__placeholder-image i {
  font-size: 3rem;
}
.recent_posts_block__card-content {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.recent_posts_block__card-title {
  margin: 0 0 16px 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}
.recent_posts_block__card-title a {
  color: #3a3a40;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.recent_posts_block__card-title a:hover {
  color: #931f80;
}
.recent_posts_block__card-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: #3a3a40;
}
.recent_posts_block__card-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.recent_posts_block__card-date i {
  font-size: 0.875rem;
}
.recent_posts_block__card-excerpt {
  margin-bottom: 16px;
  color: #3a3a40;
  line-height: 1.5;
  font-size: 0.9rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.recent_posts_block__card-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #931f80;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  margin-top: auto;
}
.recent_posts_block__card-link:hover {
  color: #3a3a40;
}
.recent_posts_block__card-link i {
  font-size: 0.75rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.recent_posts_block__card-link:hover i {
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}
.recent_posts_block__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 48px;
}
.recent_posts_block__nav-button {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: #931f80;
  color: #fff;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-box-shadow: 0 2px 8px rgba(147, 31, 128, 0.2);
          box-shadow: 0 2px 8px rgba(147, 31, 128, 0.2);
}
.recent_posts_block__nav-button i {
  font-size: 1rem;
}
.recent_posts_block__nav-button:hover {
  background-color: #3a3a40;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.recent_posts_block__nav-button:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.recent_posts_block__nav-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  -webkit-transform: none;
          transform: none;
}
.recent_posts_block__no-posts {
  text-align: center;
  padding: 64px;
  color: #3a3a40;
  font-size: 1.1rem;
}
.recent_posts_block__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 48px;
}
.recent_posts_block__cta .btn, .recent_posts_block__cta .owl-nav .owl-prev, .owl-nav .recent_posts_block__cta .owl-prev,
.recent_posts_block__cta .owl-nav .owl-next,
.owl-nav .recent_posts_block__cta .owl-next, .recent_posts_block__cta .btn-ghost, .recent_posts_block__cta .btn-3, .recent_posts_block__cta .btn-2, .recent_posts_block__cta .btn-1, .recent_posts_block__cta .keuze_form_block .actions .btn-next, .keuze_form_block .actions .recent_posts_block__cta .btn-next, .recent_posts_block__cta .conversie_block .item .btn-conversie, .conversie_block .item .recent_posts_block__cta .btn-conversie {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.recent_posts_block__cta .btn svg, .recent_posts_block__cta .owl-nav .owl-prev svg, .owl-nav .recent_posts_block__cta .owl-prev svg,
.recent_posts_block__cta .owl-nav .owl-next svg,
.owl-nav .recent_posts_block__cta .owl-next svg, .recent_posts_block__cta .btn-ghost svg, .recent_posts_block__cta .btn-3 svg, .recent_posts_block__cta .btn-2 svg, .recent_posts_block__cta .btn-1 svg, .recent_posts_block__cta .keuze_form_block .actions .btn-next svg, .keuze_form_block .actions .recent_posts_block__cta .btn-next svg, .recent_posts_block__cta .conversie_block .item .btn-conversie svg, .conversie_block .item .recent_posts_block__cta .btn-conversie svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.recent_posts_block__cta .btn:hover svg, .recent_posts_block__cta .owl-nav .owl-prev:hover svg, .owl-nav .recent_posts_block__cta .owl-prev:hover svg,
.recent_posts_block__cta .owl-nav .owl-next:hover svg,
.owl-nav .recent_posts_block__cta .owl-next:hover svg, .recent_posts_block__cta .btn-ghost:hover svg, .recent_posts_block__cta .btn-3:hover svg, .recent_posts_block__cta .btn-2:hover svg, .recent_posts_block__cta .btn-1:hover svg, .recent_posts_block__cta .keuze_form_block .actions .btn-next:hover svg, .keuze_form_block .actions .recent_posts_block__cta .btn-next:hover svg, .recent_posts_block__cta .conversie_block .item .btn-conversie:hover svg, .conversie_block .item .recent_posts_block__cta .btn-conversie:hover svg {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.recent_posts_block[data-theme=dark] {
  background-color: #3b0c33;
}
.recent_posts_block[data-theme=dark] .recent_posts_block__title {
  color: #fff;
}
.recent_posts_block[data-theme=dark] .recent_posts_block__post-card {
  background-color: #fff;
}
.recent_posts_block[data-theme=dark] .recent_posts_block__no-posts {
  color: rgba(255, 255, 255, 0.8);
}
.recent_posts_block[data-theme=dark] .recent_posts_block__nav-button {
  background-color: #fff;
  color: #931f80;
}
.recent_posts_block[data-theme=dark] .recent_posts_block__nav-button:hover {
  background-color: #931f80;
  color: #fff;
}
.recent_posts_block[data-theme=brand] {
  background-color: #58134d;
}
.recent_posts_block[data-theme=brand] .recent_posts_block__title {
  color: #fff;
}
.recent_posts_block[data-theme=brand] .recent_posts_block__post-card {
  background-color: #fff;
}
.recent_posts_block[data-theme=brand] .recent_posts_block__no-posts {
  color: rgba(255, 255, 255, 0.8);
}
.recent_posts_block[data-theme=brand] .recent_posts_block__nav-button {
  background-color: #fff;
  color: #931f80;
}
.recent_posts_block[data-theme=brand] .recent_posts_block__nav-button:hover {
  background-color: #3a3a40;
  color: #fff;
}
.recent_posts_block[data-theme=neutral] {
  background-color: #931f80;
}
.recent_posts_block[data-theme=neutral] .recent_posts_block__title {
  color: #3a3a40;
}
.recent_posts_block[data-theme=neutral] .recent_posts_block__post-card {
  background-color: #fff;
}
.recent_posts_block[data-theme=neutral] .recent_posts_block__no-posts {
  color: #3a3a40;
}
@media (max-width: 767px) {
  .recent_posts_block__card-content {
    padding: 16px;
  }
  .recent_posts_block__card-title {
    font-size: 1.1rem;
  }
  .recent_posts_block__title {
    font-size: 1.5rem;
  }
  .recent_posts_block__nav-button {
    width: 40px;
    height: 40px;
  }
  .recent_posts_block__nav-button i {
    font-size: 0.875rem;
  }
}

.dual_image_card__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100vw;
  margin-left: calc((100vw - 100%) / -2);
  margin-right: calc((100vw - 100%) / -2);
}
@media (min-width: 768px) {
  .dual_image_card__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.dual_image_card__item {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .dual_image_card__item {
    width: 50%;
  }
}
.dual_image_card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dual_image_card__image-overlay {
  position: absolute;
  inset: 0;
  background-color: #3b0c33;
  pointer-events: none;
}
.dual_image_card__overlay {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.dual_image_card[data-vertical-position=top] .dual_image_card__overlay {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 96px;
}
.dual_image_card[data-vertical-position=center] .dual_image_card__overlay {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.dual_image_card[data-vertical-position=bottom] .dual_image_card__overlay {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 96px;
}
.dual_image_card__content {
  padding: 32px;
  border-radius: 8px;
}
.dual_image_card__title {
  color: #3a3a40;
  margin-bottom: 16px;
}
.dual_image_card__text {
  color: #3a3a40;
  margin-bottom: 24px;
}
.dual_image_card__link {
  display: inline-block;
  padding: 16px 32px;
  background-color: #931f80;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}
.dual_image_card__link:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-decoration: none;
}
.dual_image_card[data-theme=dark] .dual_image_card__content {
  background-color: rgba(59, 12, 51, 0.95);
}
.dual_image_card[data-theme=dark] .dual_image_card__title {
  color: #fff;
}
.dual_image_card[data-theme=dark] .dual_image_card__text {
  color: rgba(255, 255, 255, 0.8);
}
.dual_image_card[data-theme=brand] .dual_image_card__content {
  background-color: rgba(88, 19, 77, 0.95);
}
.dual_image_card[data-theme=brand] .dual_image_card__title {
  color: #fff;
}
.dual_image_card[data-theme=brand] .dual_image_card__text {
  color: rgba(255, 255, 255, 0.9);
}
.dual_image_card[data-theme=neutral] .dual_image_card__content {
  background-color: rgba(147, 31, 128, 0.98);
}
@media (max-width: 992px) {
  .dual_image_card__item {
    min-height: 500px;
  }
  .dual_image_card__content {
    padding: 24px;
  }
  .dual_image_card[data-vertical-position=top] .dual_image_card__overlay {
    padding-top: 48px;
  }
  .dual_image_card[data-vertical-position=bottom] .dual_image_card__overlay {
    padding-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .dual_image_card__item {
    min-height: 400px;
  }
  .dual_image_card__content {
    padding: 16px;
  }
  .dual_image_card__title {
    margin-bottom: 8px;
  }
  .dual_image_card__text {
    margin-bottom: 16px;
  }
  .dual_image_card__link {
    padding: 8px 24px;
  }
  .dual_image_card[data-vertical-position=top] .dual_image_card__overlay {
    padding-top: 32px;
  }
  .dual_image_card[data-vertical-position=bottom] .dual_image_card__overlay {
    padding-bottom: 32px;
  }
}

.recent_news_block {
  background-color: #fff;
}
.recent_news_block__content {
  padding-right: 48px;
}
.recent_news_block__content h1, .recent_news_block__content h2, .recent_news_block__content h3, .recent_news_block__content h4, .recent_news_block__content h5, .recent_news_block__content h6 {
  color: #3a3a40;
  margin-bottom: 16px;
}
.recent_news_block__content p {
  color: #3a3a40;
  margin-bottom: 24px;
}
.recent_news_block__content a {
  color: #931f80;
  text-decoration: underline;
}
.recent_news_block__content a:hover {
  color: rgb(104.8820224719, 22.1179775281, 91.3258426966);
}
.recent_news_block__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.recent_news_block__card {
  position: relative;
  display: block;
  min-height: 200px;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.recent_news_block__card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
.recent_news_block__card:hover .recent_news_block__card-overlay {
  background-color: rgba(59, 12, 51, 0.75);
}
.recent_news_block__card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recent_news_block__card-overlay {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(59, 12, 51, 0.9)), color-stop(60%, rgba(59, 12, 51, 0.3)), to(transparent));
  background: linear-gradient(to top, rgba(59, 12, 51, 0.9) 0%, rgba(59, 12, 51, 0.3) 60%, transparent 100%);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.recent_news_block__card-content {
  padding: 32px;
  width: 100%;
}
.recent_news_block__card-title {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 600;
}
.recent_news_block__card-date {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  font-size: 0.875rem;
}
.recent_news_block[data-theme=dark] {
  background-color: #3b0c33;
}
.recent_news_block[data-theme=dark] .recent_news_block__content h1, .recent_news_block[data-theme=dark] .recent_news_block__content h2, .recent_news_block[data-theme=dark] .recent_news_block__content h3, .recent_news_block[data-theme=dark] .recent_news_block__content h4, .recent_news_block[data-theme=dark] .recent_news_block__content h5, .recent_news_block[data-theme=dark] .recent_news_block__content h6 {
  color: #fff;
}
.recent_news_block[data-theme=dark] .recent_news_block__content p {
  color: rgba(255, 255, 255, 0.8);
}
.recent_news_block[data-theme=dark] .recent_news_block__content a {
  color: rgb(214.9438202247, 65.0561797753, 190.393258427);
}
.recent_news_block[data-theme=dark] .recent_news_block__content a:hover {
  color: rgb(223.8258426966, 107.1741573034, 204.7191011236);
}
.recent_news_block[data-theme=brand] {
  background-color: #58134d;
}
.recent_news_block[data-theme=brand] .recent_news_block__content h1, .recent_news_block[data-theme=brand] .recent_news_block__content h2, .recent_news_block[data-theme=brand] .recent_news_block__content h3, .recent_news_block[data-theme=brand] .recent_news_block__content h4, .recent_news_block[data-theme=brand] .recent_news_block__content h5, .recent_news_block[data-theme=brand] .recent_news_block__content h6 {
  color: #fff;
}
.recent_news_block[data-theme=brand] .recent_news_block__content p {
  color: rgba(255, 255, 255, 0.9);
}
.recent_news_block[data-theme=brand] .recent_news_block__content a {
  color: #fff;
}
.recent_news_block[data-theme=brand] .recent_news_block__content a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.recent_news_block[data-theme=neutral] {
  background-color: #931f80;
}
@media (max-width: 992px) {
  .recent_news_block__content {
    padding-right: 32px;
    margin-bottom: 48px;
  }
  .recent_news_block__card {
    min-height: 180px;
  }
  .recent_news_block__card-content {
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .recent_news_block__content {
    padding-right: 0;
    margin-bottom: 32px;
  }
  .recent_news_block__cards {
    gap: 16px;
  }
  .recent_news_block__card {
    min-height: 160px;
  }
  .recent_news_block__card-content {
    padding: 16px;
  }
  .recent_news_block__card-title {
    font-size: 1.125rem;
    margin-bottom: 4px;
  }
  .recent_news_block__card-date {
    font-size: 0.8125rem;
  }
}

.usps {
  background-color: #fff;
}
.usps__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.usps__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.usps__nav-item {
  padding: 24px 32px;
  background-color: transparent;
  color: #3a3a40;
  border: 1px solid rgba(58, 58, 64, 0.2);
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.usps__nav-item:hover {
  background-color: rgba(88, 19, 77, 0.05);
  border-color: #58134d;
  color: #58134d;
}
.usps__nav-item.active {
  background-color: #58134d;
  color: #fff;
  border-color: #58134d;
}
.usps__content-wrapper {
  position: relative;
}
.usps__content {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.usps__content.active {
  display: block;
  opacity: 1;
}
.usps__content-title {
  color: #3a3a40;
  margin-bottom: 24px;
}
.usps__content-text {
  color: #3a3a40;
}
.usps[data-theme=dark] {
  background-color: #3b0c33;
}
.usps[data-theme=dark] .usps__nav-item {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.usps[data-theme=dark] .usps__nav-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}
.usps[data-theme=dark] .usps__nav-item.active {
  background-color: #fff;
  color: #3a3a40;
  border-color: #fff;
}
.usps[data-theme=dark] .usps__content-title {
  color: #fff;
}
.usps[data-theme=dark] .usps__content-text {
  color: rgba(255, 255, 255, 0.8);
}
.usps[data-theme=brand] {
  background-color: #58134d;
}
.usps[data-theme=brand] .usps__nav-item {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.usps[data-theme=brand] .usps__nav-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.usps[data-theme=brand] .usps__nav-item.active {
  background-color: #fff;
  color: #58134d;
  border-color: #fff;
}
.usps[data-theme=brand] .usps__content-title {
  color: #fff;
}
.usps[data-theme=brand] .usps__content-text {
  color: rgba(255, 255, 255, 0.9);
}
.usps[data-theme=neutral] {
  background-color: #931f80;
}
@media (max-width: 992px) {
  .usps__wrapper {
    gap: 32px;
  }
  .usps__nav-item {
    padding: 16px 24px;
  }
  .usps__content-title {
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .usps__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .usps__navigation {
    gap: 8px;
  }
  .usps__nav-item {
    padding: 8px 16px;
  }
  .usps__content-title {
    margin-bottom: 8px;
  }
}

.flexible_cards {
  background-color: #fff;
  padding: 48px 0;
}
.flexible_cards[data-theme=light] {
  background-color: #fff;
}
.flexible_cards[data-theme=light] .flexible_cards__title {
  color: #3a3a40;
}
.flexible_cards[data-theme=dark] {
  background-color: #3b0c33;
}
.flexible_cards[data-theme=dark] .flexible_cards__title {
  color: #fff;
}
.flexible_cards[data-theme=dark] .flexible_cards__title h1, .flexible_cards[data-theme=dark] .flexible_cards__title h2, .flexible_cards[data-theme=dark] .flexible_cards__title h3, .flexible_cards[data-theme=dark] .flexible_cards__title h4, .flexible_cards[data-theme=dark] .flexible_cards__title h5, .flexible_cards[data-theme=dark] .flexible_cards__title h6, .flexible_cards[data-theme=dark] .flexible_cards__title p, .flexible_cards[data-theme=dark] .flexible_cards__title span {
  color: #fff;
}
.flexible_cards[data-theme=tiled] {
  background-color: #fff;
  background-image: linear-gradient(#931f80 1px, transparent 1px), linear-gradient(90deg, #931f80 1px, transparent 1px);
  background-size: 40px 40px;
}
.flexible_cards[data-theme=tiled] .flexible_cards__title {
  color: #3a3a40;
}
.flexible_cards[data-theme=tiled] .flexible_cards__title h1, .flexible_cards[data-theme=tiled] .flexible_cards__title h2, .flexible_cards[data-theme=tiled] .flexible_cards__title h3, .flexible_cards[data-theme=tiled] .flexible_cards__title h4, .flexible_cards[data-theme=tiled] .flexible_cards__title h5, .flexible_cards[data-theme=tiled] .flexible_cards__title h6, .flexible_cards[data-theme=tiled] .flexible_cards__title p, .flexible_cards[data-theme=tiled] .flexible_cards__title span {
  color: #3a3a40;
}
.flexible_cards__title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 32px;
}
.flexible_cards__title {
  color: #3a3a40;
  text-align: center;
}
.flexible_cards__title h1, .flexible_cards__title h2, .flexible_cards__title h3, .flexible_cards__title h4, .flexible_cards__title h5, .flexible_cards__title h6 {
  margin-bottom: 16px;
}
.flexible_cards__title p {
  margin-bottom: 8px;
}
.flexible_cards__grid {
  margin-top: 32px;
}
.flexible_cards__card-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .flexible_cards {
    padding: 32px 0;
  }
  .flexible_cards__grid {
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .flexible_cards {
    padding: 24px 0;
  }
  .flexible_cards__title-container {
    margin-bottom: 24px;
  }
  .flexible_cards__grid {
    margin-top: 16px;
  }
  .flexible_cards__card-wrapper {
    margin-bottom: 24px;
  }
}

.conversie_block {
  background-color: #fff;
  padding: 48px 0;
}
.conversie_block[data-theme=light] {
  background-color: #fff;
}
.conversie_block[data-theme=dark] {
  background-color: #3b0c33;
}
.conversie_block[data-theme=brand] {
  background-color: #58134d;
}
.conversie_block[data-theme=neutral] {
  background-color: #931f80;
}
.conversie_block .title {
  color: #3a3a40;
  margin-bottom: 32px;
}
.conversie_block [class*=col-] {
  padding-bottom: 32px;
}
.conversie_block .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  padding: 32px;
  border-radius: 16px;
  background-color: #fff;
  -webkit-box-shadow: rgba(31, 38, 135, 0.16) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.16) 0px 8px 32px;
  height: 100%;
  border: none;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.conversie_block .item:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: rgba(31, 38, 135, 0.37) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.37) 0px 8px 32px;
}
.conversie_block .item .icon-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: -webkit-gradient(linear, left top, right top, from(#eb6701), to(#fe9f56));
  background: linear-gradient(to right, #eb6701 0%, #fe9f56 100%);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.conversie_block .item .icon-wrapper img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.conversie_block .item .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #3a3a40;
}
.conversie_block .item .btn-conversie {
  background: -webkit-gradient(linear, left top, right top, from(#eb6701), to(#fe9f56));
  background: linear-gradient(to right, #eb6701 0%, #fe9f56 100%);
  color: #fff;
  -webkit-box-shadow: 0 4px 12px rgba(255, 105, 0, 0.35);
          box-shadow: 0 4px 12px rgba(255, 105, 0, 0.35);
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding-left: 10px;
  padding-right: 10px;
  white-space: nowrap;
}
.conversie_block .item .btn-conversie .btn-icon {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.conversie_block .item .btn-conversie:hover {
  -webkit-box-shadow: 0 8px 20px rgba(255, 105, 0, 0.45);
          box-shadow: 0 8px 20px rgba(255, 105, 0, 0.45);
}
.conversie_block .item .btn-conversie:hover .btn-icon {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
@media (max-width: 992px) {
  .conversie_block {
    padding: 32px 0;
  }
  .conversie_block .item {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .conversie_block {
    padding: 24px 0;
  }
}
@media (max-width: 572px) {
  .conversie_block .btn-conversie {
    margin-top: -20px;
  }
}

.keuze_form_block {
  background-color: #fff;
  padding: 48px 0;
}
.keuze_form_block[data-theme=light] {
  background-color: #fff;
}
.keuze_form_block[data-theme=dark] {
  background-color: #3b0c33;
}
.keuze_form_block[data-theme=brand] {
  background-color: #58134d;
}
.keuze_form_block[data-theme=neutral] {
  background-color: #931f80;
}
.keuze_form_block .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #3a3a40;
  margin-bottom: 64px;
}
.keuze_form_block .outer-wrapper {
  width: 100%;
  padding: 48px;
  border-radius: 16px;
  -webkit-box-shadow: rgba(31, 38, 135, 0.16) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.16) 0px 8px 32px;
  background-color: #fff;
}
.keuze_form_block .step {
  display: none;
}
.keuze_form_block .step.is-active {
  display: block;
}
.keuze_form_block .keuze-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  padding: 32px;
  border-radius: 16px;
  background-color: #fff;
  -webkit-box-shadow: rgba(31, 38, 135, 0.37) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.37) 0px 8px 32px;
  height: 100%;
  cursor: pointer;
  -webkit-transition: -webkit-box-shadow 0.25s ease;
  transition: -webkit-box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
  margin-bottom: 32px;
}
.keuze_form_block .keuze-card:hover {
  -webkit-box-shadow: rgba(31, 38, 135, 0.37) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.37) 0px 8px 32px;
}
.keuze_form_block .keuze-card.is-active {
  -webkit-box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
          box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
}
.keuze_form_block .keuze-card.is-active .check {
  background: #931f80;
  border-color: transparent;
}
.keuze_form_block .keuze-card.is-active .check::after {
  opacity: 1;
}
.keuze_form_block .keuze-card .check {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 2px solid rgb(246, 246, 246);
  -webkit-transition: background 0.2s ease, border-color 0.2s ease;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.keuze_form_block .keuze-card .check::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 11px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  -webkit-transform: translate(-50%, -60%) rotate(45deg);
          transform: translate(-50%, -60%) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.keuze_form_block .keuze-card .icon-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: -webkit-gradient(linear, left top, right top, from(#eb6701), to(#fe9f56));
  background: linear-gradient(to right, #eb6701 0%, #fe9f56 100%);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: center;
      align-self: center;
}
.keuze_form_block .keuze-card .icon-wrapper img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.keuze_form_block .keuze-card .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #3a3a40;
}
.keuze_form_block .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 32px;
}
.keuze_form_block .actions .btn-next {
  background: -webkit-gradient(linear, left top, right top, from(#eb6701), to(#fe9f56));
  background: linear-gradient(to right, #eb6701 0%, #fe9f56 100%);
  color: #fff;
  -webkit-box-shadow: 0 4px 12px rgba(255, 105, 0, 0.35);
          box-shadow: 0 4px 12px rgba(255, 105, 0, 0.35);
  white-space: nowrap;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.keuze_form_block .actions .btn-next .btn-icon {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.keuze_form_block .actions .btn-next:hover:not(:disabled) {
  -webkit-box-shadow: 0 8px 20px rgba(255, 105, 0, 0.45);
          box-shadow: 0 8px 20px rgba(255, 105, 0, 0.45);
}
.keuze_form_block .actions .btn-next:hover:not(:disabled) .btn-icon {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.keuze_form_block .actions .btn-next:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.keuze_form_block .form-container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px;
  border-radius: 16px;
  -webkit-box-shadow: rgba(31, 38, 135, 0.16) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.16) 0px 8px 32px;
}
.keuze_form_block .form-container .content {
  margin-bottom: 32px;
}
.keuze_form_block .form-container .step-indicator {
  margin-top: 32px;
}
.keuze_form_block .image-container {
  height: 100%;
}
.keuze_form_block .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.keuze_form_block .step-indicator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px;
  margin-top: 48px;
}
.keuze_form_block .step-indicator .step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgb(246, 246, 246);
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.keuze_form_block .step-indicator .step-dot.active {
  background: linear-gradient(135deg, #58134d, #dc5bc7);
}
.keuze_form_block .step-indicator .step-label {
  margin-left: 8px;
  font-size: 14px;
  color: #7e7e7e;
}
@media (max-width: 992px) {
  .keuze_form_block {
    padding: 32px 0;
  }
  .keuze_form_block .image-container {
    margin-top: 32px;
  }
  .keuze_form_block .image-container img {
    max-height: 400px;
  }
}
@media (max-width: 768px) {
  .keuze_form_block {
    padding: 24px 0;
  }
  .keuze_form_block .outer-wrapper {
    padding: 12px;
  }
  .keuze_form_block .keuze-card {
    margin-bottom: 0;
  }
  .keuze_form_block .row {
    row-gap: 20px;
  }
  .keuze_form_block .step[data-step="2"] .form-wrapper {
    border-radius: 16px;
    -webkit-box-shadow: rgba(31, 38, 135, 0.16) 0px 8px 32px;
            box-shadow: rgba(31, 38, 135, 0.16) 0px 8px 32px;
    overflow: hidden;
  }
  .keuze_form_block .step[data-step="2"] .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .keuze_form_block .step[data-step="2"] .col-lg-6:last-child {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .keuze_form_block .step[data-step="2"] .image-container {
    margin-top: 0;
    padding: 40px 24px 0;
    border-radius: 0;
  }
  .keuze_form_block .step[data-step="2"] .image-container img {
    border-radius: 0;
    max-height: none;
    height: auto;
  }
  .keuze_form_block .step[data-step="2"] .form-container {
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.features {
  position: relative;
  height: 100%;
}
.features .pill-container {
  text-align: center;
  margin-bottom: 24px;
}
.features .intro {
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  .features .intro {
    margin-bottom: 64px;
  }
}
.features .intro h3 {
  font-size: 36px;
  line-height: 1.25;
}
@media (max-width: 1199px) {
  .features .intro h3 {
    font-size: 30px;
  }
}
@media (max-width: 992px) {
  .features .intro h3 {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .features .intro h3 {
    font-size: 22px;
  }
}
.features .intro p {
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}
.features .intro p[style*="text-align: left"] {
  margin-left: 0;
}
.features .intro p[style*="text-align: right"] {
  margin-right: 0;
}
.features .intro p:last-child {
  margin-bottom: 0;
}
.features .card__description h1, .features .card__description h2, .features .card__description h3, .features .card__description h4, .features .card__description h5, .features .card__description h6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.features .card__description p {
  text-align: center;
}
.features .card__description .text-color-1.text-gradient-2 {
  font-size: 36px;
  line-height: 1.25;
}
@media (max-width: 1199px) {
  .features .card__description .text-color-1.text-gradient-2 {
    font-size: 30px;
  }
}
@media (max-width: 992px) {
  .features .card__description .text-color-1.text-gradient-2 {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .features .card__description .text-color-1.text-gradient-2 {
    font-size: 22px;
  }
}
.features .row > .stagger-item {
  opacity: 0;
  -webkit-transform: translateY(32px);
          transform: translateY(32px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.features .row > .stagger-item.in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.page_link_cards {
  position: relative;
}
.page_link_cards .pill-container {
  text-align: center;
  margin-bottom: 24px;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.page_link_cards .intro {
  margin-bottom: 32px;
  text-align: center;
}
@media (min-width: 992px) {
  .page_link_cards .intro {
    margin-bottom: 64px;
  }
}
.page_link_cards .intro p {
  margin-bottom: 16px;
}
.page_link_cards .intro p:last-child {
  margin-bottom: 0;
}
.page_link_cards .row {
  row-gap: 24px;
}
.page_link_cards .archive-cta {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page_link_cards .pl-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  height: 100%;
  min-height: 320px;
  padding: 24px;
}
@media (max-width: 768px) {
  .page_link_cards .pl-card {
    min-height: unset;
  }
}
.page_link_cards .pl-card {
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  text-decoration: none;
  background-color: #fff;
  backdrop-filter: blur(20px);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -webkit-box-shadow: rgba(31, 38, 135, 0.37) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.37) 0px 8px 32px;
}
.page_link_cards .pl-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.page_link_cards .pl-card[data-style=with-links]:hover {
  -webkit-transform: none;
          transform: none;
}
.page_link_cards .pl-card[data-style=with-links] .img-container {
  display: block;
}
.page_link_cards .pl-card[data-style=with-links] .img-container img {
  border-radius: 12px;
}
.page_link_cards .pl-card[data-style=with-links] .title a,
.page_link_cards .pl-card[data-style=with-links] .title {
  color: #3a3a40;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  font-weight: bold;
}
.page_link_cards .pl-card[data-style=with-links] .title a:hover,
.page_link_cards .pl-card[data-style=with-links] .title:hover {
  color: #931f80;
}
.page_link_cards .pl-card[data-style=anchor] {
  gap: 24px;
}
.page_link_cards .pl-card[data-style=anchor] .icon {
  border-radius: 12px;
  padding: 0px;
  background: none;
}
.page_link_cards .pl-card[data-style=anchor]:hover {
  -webkit-transform: none;
          transform: none;
}
.page_link_cards .pl-card[data-style=anchor] .title {
  text-align: left;
}
.page_link_cards .pl-card[data-style=anchor] .btn, .page_link_cards .pl-card[data-style=anchor] .owl-nav .owl-prev, .owl-nav .page_link_cards .pl-card[data-style=anchor] .owl-prev,
.page_link_cards .pl-card[data-style=anchor] .owl-nav .owl-next,
.owl-nav .page_link_cards .pl-card[data-style=anchor] .owl-next, .page_link_cards .pl-card[data-style=anchor] .btn-ghost, .page_link_cards .pl-card[data-style=anchor] .btn-3, .page_link_cards .pl-card[data-style=anchor] .btn-2, .page_link_cards .pl-card[data-style=anchor] .btn-1, .page_link_cards .pl-card[data-style=anchor] .conversie_block .item .btn-conversie, .conversie_block .item .page_link_cards .pl-card[data-style=anchor] .btn-conversie, .page_link_cards .pl-card[data-style=anchor] .keuze_form_block .actions .btn-next, .keuze_form_block .actions .page_link_cards .pl-card[data-style=anchor] .btn-next {
  margin-top: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
}
.page_link_cards .pl-card[data-style=anchor] .btn i, .page_link_cards .pl-card[data-style=anchor] .owl-nav .owl-prev i, .owl-nav .page_link_cards .pl-card[data-style=anchor] .owl-prev i,
.page_link_cards .pl-card[data-style=anchor] .owl-nav .owl-next i,
.owl-nav .page_link_cards .pl-card[data-style=anchor] .owl-next i, .page_link_cards .pl-card[data-style=anchor] .btn-ghost i, .page_link_cards .pl-card[data-style=anchor] .btn-3 i, .page_link_cards .pl-card[data-style=anchor] .btn-2 i, .page_link_cards .pl-card[data-style=anchor] .btn-1 i, .page_link_cards .pl-card[data-style=anchor] .conversie_block .item .btn-conversie i, .conversie_block .item .page_link_cards .pl-card[data-style=anchor] .btn-conversie i, .page_link_cards .pl-card[data-style=anchor] .keuze_form_block .actions .btn-next i, .keuze_form_block .actions .page_link_cards .pl-card[data-style=anchor] .btn-next i {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.page_link_cards .pl-card[data-style=anchor] .btn:hover i, .page_link_cards .pl-card[data-style=anchor] .owl-nav .owl-prev:hover i, .owl-nav .page_link_cards .pl-card[data-style=anchor] .owl-prev:hover i,
.page_link_cards .pl-card[data-style=anchor] .owl-nav .owl-next:hover i,
.owl-nav .page_link_cards .pl-card[data-style=anchor] .owl-next:hover i, .page_link_cards .pl-card[data-style=anchor] .btn-ghost:hover i, .page_link_cards .pl-card[data-style=anchor] .btn-3:hover i, .page_link_cards .pl-card[data-style=anchor] .btn-2:hover i, .page_link_cards .pl-card[data-style=anchor] .btn-1:hover i, .page_link_cards .pl-card[data-style=anchor] .conversie_block .item .btn-conversie:hover i, .conversie_block .item .page_link_cards .pl-card[data-style=anchor] .btn-conversie:hover i, .page_link_cards .pl-card[data-style=anchor] .keuze_form_block .actions .btn-next:hover i, .keuze_form_block .actions .page_link_cards .pl-card[data-style=anchor] .btn-next:hover i {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.page_link_cards .pl-card[data-style=large-image-bottom] {
  padding: 0;
  overflow: hidden;
}
.page_link_cards .pl-card[data-style=large-image-bottom] .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  padding: 24px;
  row-gap: 20px;
}
.page_link_cards .pl-card[data-style=large-image-bottom] .content-wrapper .img-container {
  margin-bottom: 0px;
}
.page_link_cards .pl-card[data-style=large-image-bottom] .title {
  text-align: left;
}
.page_link_cards .pl-card[data-style=large-image-bottom] .large-image {
  width: 100%;
  height: 320px;
  margin-top: auto;
  background-color: #f6f6f6;
  padding: 24px;
}
.page_link_cards .pl-card[data-style=large-image-bottom] .large-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  border-radius: 8px;
}
.page_link_cards .pl-card .img-container {
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 0;
}
.page_link_cards .pl-card .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.page_link_cards .pl-card .img-container:hover img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.page_link_cards .pl-card .icon {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: linear-gradient(135deg, #58134d, #dc5bc7);
  border-radius: 21px;
}
.page_link_cards .pl-card .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page_link_cards .pl-card .title {
  text-align: center;
  margin: 0;
  color: #3a3a40;
  font-size: 20px;
}
.page_link_cards .pl-card .description {
  text-align: left;
  color: #3a3a40;
  font-size: 14px;
  font-weight: 400;
}
.page_link_cards .pl-card .description p {
  margin-bottom: 8px;
}
.page_link_cards .pl-card .description p:last-child {
  margin-bottom: 0;
}
.page_link_cards .pl-card .sub-links {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 24px;
  padding-top: 24px;
}
.page_link_cards .pl-card .sub-links li {
  margin-bottom: 8px;
}
.page_link_cards .pl-card .sub-links li:last-child {
  margin-bottom: 0;
}
.page_link_cards .pl-card .sub-links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #3a3a40;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.page_link_cards .pl-card .sub-links a::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(../images/icons/right-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page_link_cards .pl-card .sub-links a:hover {
  color: #931f80;
}

.manual_link_cards {
  position: relative;
}
.manual_link_cards .pill-container {
  text-align: center;
  margin-bottom: 24px;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.manual_link_cards .intro {
  margin-bottom: 32px;
  text-align: center;
}
@media (min-width: 992px) {
  .manual_link_cards .intro {
    margin-bottom: 64px;
  }
}
.manual_link_cards .intro p {
  margin-bottom: 16px;
}
.manual_link_cards .intro p:last-child {
  margin-bottom: 0;
}
.manual_link_cards .row {
  row-gap: 24px;
}
.manual_link_cards .mlc-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  height: 100%;
  min-height: 320px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  text-decoration: none;
  background-color: #fff;
  backdrop-filter: blur(20px);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -webkit-box-shadow: rgba(31, 38, 135, 0.37) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.37) 0px 8px 32px;
}
.manual_link_cards .mlc-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.manual_link_cards .mlc-card .icon {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: linear-gradient(135deg, #58134d, #dc5bc7);
  border-radius: 21px;
}
.manual_link_cards .mlc-card .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.manual_link_cards .mlc-card .img-container {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.manual_link_cards .mlc-card .img-container img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.manual_link_cards .mlc-card .img-container:hover img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.manual_link_cards .mlc-card .title {
  margin: 0;
  color: #3a3a40;
  font-size: 20px;
}
.manual_link_cards .mlc-card .description {
  color: #3a3a40;
  font-size: 14px;
  font-weight: 400;
}
.manual_link_cards .mlc-card .description p {
  margin-bottom: 8px;
}
.manual_link_cards .mlc-card .description p:last-child {
  margin-bottom: 0;
}
.manual_link_cards .mlc-card .btn, .manual_link_cards .mlc-card .owl-nav .owl-prev, .owl-nav .manual_link_cards .mlc-card .owl-prev,
.manual_link_cards .mlc-card .owl-nav .owl-next,
.owl-nav .manual_link_cards .mlc-card .owl-next, .manual_link_cards .mlc-card .btn-ghost, .manual_link_cards .mlc-card .btn-3, .manual_link_cards .mlc-card .btn-2, .manual_link_cards .mlc-card .btn-1, .manual_link_cards .mlc-card .conversie_block .item .btn-conversie, .conversie_block .item .manual_link_cards .mlc-card .btn-conversie, .manual_link_cards .mlc-card .keuze_form_block .actions .btn-next, .keuze_form_block .actions .manual_link_cards .mlc-card .btn-next {
  margin-top: auto;
}

.client_reviews {
  position: relative;
}
.client_reviews .pill-container {
  text-align: center;
  margin-bottom: 24px;
}
.client_reviews .intro {
  margin-bottom: 32px;
  text-align: center;
}
@media (min-width: 992px) {
  .client_reviews .intro {
    margin-bottom: 64px;
  }
}
.client_reviews .intro h2,
.client_reviews .intro h2 span {
  font-size: 36px;
  line-height: 1.25;
  font-weight: bold;
}
@media (max-width: 1199px) {
  .client_reviews .intro h2,
  .client_reviews .intro h2 span {
    font-size: 30px;
  }
}
@media (max-width: 992px) {
  .client_reviews .intro h2,
  .client_reviews .intro h2 span {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .client_reviews .intro h2,
  .client_reviews .intro h2 span {
    font-size: 36px;
  }
}
.client_reviews .intro p {
  margin-bottom: 16px;
}
.client_reviews .intro p:last-child {
  margin-bottom: 0;
}
.client_reviews .row {
  row-gap: 24px;
}

.featured_posts {
  padding: 64px 0;
}
.featured_posts .intro {
  margin-bottom: 48px;
}
.featured_posts .intro .title {
  margin-top: 16px;
}
@media (max-width: 992px) {
  .featured_posts {
    padding: 32px 0;
  }
}

.single_featured_posts {
  padding: 64px 0;
}
.single_featured_posts .intro {
  margin-bottom: 48px;
}
.single_featured_posts .intro .title {
  margin-top: 16px;
}
@media (max-width: 992px) {
  .single_featured_posts {
    padding: 32px 0;
  }
}

.trends_updates {
  padding: 64px 0;
  position: relative;
  background-image: url("../images/Gradient-trends-updates.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: black;
  color: #fff;
}
.trends_updates::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/Gradient-trends-updates.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.trends_updates > * {
  position: relative;
  z-index: 1;
}
.trends_updates .intro {
  margin-bottom: 48px;
  color: #fff;
}
.trends_updates .intro p,
.trends_updates .intro h1,
.trends_updates .intro h2,
.trends_updates .intro h3,
.trends_updates .intro h4,
.trends_updates .intro h5,
.trends_updates .intro h6 {
  color: #fff;
}
.trends_updates .post-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.trends_updates .post-list .btn, .trends_updates .post-list .owl-nav .owl-prev, .owl-nav .trends_updates .post-list .owl-prev,
.trends_updates .post-list .owl-nav .owl-next,
.owl-nav .trends_updates .post-list .owl-next, .trends_updates .post-list .btn-ghost, .trends_updates .post-list .btn-3, .trends_updates .post-list .btn-2, .trends_updates .post-list .btn-1, .trends_updates .post-list .conversie_block .item .btn-conversie, .conversie_block .item .trends_updates .post-list .btn-conversie, .trends_updates .post-list .keuze_form_block .actions .btn-next, .keuze_form_block .actions .trends_updates .post-list .btn-next {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 8px;
}
.trends_updates[data-theme=dark] .post-item .title {
  color: #fff;
}
.trends_updates[data-theme=dark] .post-item .excerpt {
  color: #dddddd;
}
.trends_updates .post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  padding: 32px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  border: 1px solid rgba(126, 126, 126, 0.3);
  background: rgba(126, 126, 126, 0.07);
  backdrop-filter: blur(20px);
  -webkit-box-shadow: rgba(31, 38, 135, 0.16) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.16) 0px 8px 32px;
  -webkit-transform-origin: left;
          transform-origin: left;
  position: relative;
}
.trends_updates .post-item:before {
  content: "";
  right: 24px;
  top: 32px;
  height: 12px;
  width: 0px;
  position: absolute;
  background-color: #931f80;
  border-radius: 100%;
  opacity: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.trends_updates .post-item:after {
  content: "";
  left: -1px;
  top: 5%;
  height: 90%;
  width: 6px;
  position: absolute;
  background-color: #931f80;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  border-radius: 30px;
}
.trends_updates .post-item:hover, .trends_updates .post-item[data-active=true] {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  background: rgba(255, 255, 255, 0.15);
}
.trends_updates .post-item:hover:after, .trends_updates .post-item[data-active=true]:after {
  opacity: 1;
}
.trends_updates .post-item[data-active=true]:before {
  width: 12px;
  opacity: 1;
  -webkit-animation: blink 1.5s ease-in-out infinite;
          animation: blink 1.5s ease-in-out infinite;
}
.trends_updates .post-item .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.trends_updates .post-item .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.trends_updates .post-item .title {
  margin: 0;
  font-size: 14px;
  color: #fff;
}
.trends_updates .post-item .excerpt {
  margin-bottom: 0;
  font-size: 12px;
  color: #dddddd;
}
.trends_updates .row > :first-child {
  position: relative;
}
.trends_updates .media-area {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  right: 15px;
  border-radius: 8px;
  overflow: hidden;
}
.trends_updates .media-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.5s ease, transform 0.6s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, transform 0.6s ease, visibility 0.5s ease, -webkit-transform 0.6s ease;
}
.trends_updates .media-container[data-active=true] {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
  z-index: 1;
}
.trends_updates .media-container img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.trends_updates .media-container .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 8px;
  overflow: hidden;
}
.trends_updates .media-container .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.trends_updates .media-container .video-player {
  position: relative;
  height: 100%;
}
.trends_updates .media-container .video-player video {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.trends_updates .media-container .video-player .video-controls {
  position: absolute;
  top: 16px;
  right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.trends_updates .media-container .video-player .control-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(58, 58, 64, 0.5);
  backdrop-filter: blur(20px);
  color: #fff;
  cursor: pointer;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  border: 1px solid white;
}
.trends_updates .media-container .video-player .control-btn:hover {
  background: rgba(58, 58, 64, 0.7);
}
.trends_updates .media-container .video-player .control-btn svg {
  width: 16px;
  height: 16px;
}
.trends_updates .media-container .video-player .control-btn .icon-pause,
.trends_updates .media-container .video-player .control-btn .icon-volume-off {
  display: none;
}
.trends_updates .media-container .video-player[data-playing] .icon-play {
  display: none;
}
.trends_updates .media-container .video-player[data-playing] .icon-pause {
  display: block;
}
.trends_updates .media-container .video-player[data-muted] .icon-volume-on {
  display: none;
}
.trends_updates .media-container .video-player[data-muted] .icon-volume-off {
  display: block;
}
.trends_updates .media-container .video-player .video-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(58, 58, 64, 0.3);
  cursor: pointer;
  -webkit-transition: height 0.2s ease;
  transition: height 0.2s ease;
}
.trends_updates .media-container .video-player .video-progress:hover {
  height: 8px;
}
.trends_updates .media-container .video-player .video-progress-bar {
  height: 100%;
  width: 0;
  background: #fff;
  -webkit-transition: width 0.1s linear;
  transition: width 0.1s linear;
}
@media (max-width: 992px) {
  .trends_updates {
    padding: 32px 0;
  }
  .trends_updates .row > :first-child {
    position: static;
  }
  .trends_updates .media-area {
    position: relative;
    height: 300px;
    left: auto;
    right: auto;
    margin-bottom: 32px;
  }
  .trends_updates .media-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
  }
  .trends_updates .post-item:hover, .trends_updates .post-item[data-active=true] {
    -webkit-transform: none;
            transform: none;
  }
  .trends_updates .post-list .btn, .trends_updates .post-list .owl-nav .owl-prev, .owl-nav .trends_updates .post-list .owl-prev,
  .trends_updates .post-list .owl-nav .owl-next,
  .owl-nav .trends_updates .post-list .owl-next, .trends_updates .post-list .btn-ghost, .trends_updates .post-list .btn-3, .trends_updates .post-list .btn-2, .trends_updates .post-list .btn-1, .trends_updates .post-list .conversie_block .item .btn-conversie, .conversie_block .item .trends_updates .post-list .btn-conversie, .trends_updates .post-list .keuze_form_block .actions .btn-next, .keuze_form_block .actions .trends_updates .post-list .btn-next {
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.text_block {
  background-color: #fff;
}
.text_block[data-style=tiled] {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e0e0e0' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.text_block[data-style=dark] {
  background-color: #3b0c33;
}
.text_block[data-style=dark] .text-container h1,
.text_block[data-style=dark] .text-container h2,
.text_block[data-style=dark] .text-container h3,
.text_block[data-style=dark] .text-container h4,
.text_block[data-style=dark] .text-container h5,
.text_block[data-style=dark] .text-container h6,
.text_block[data-style=dark] .text-container p,
.text_block[data-style=dark] .text-container li {
  color: #fff;
}
.text_block[data-style=dark] .text-container blockquote {
  background-color: rgba(255, 255, 255, 0.1);
  border-left-color: #fff;
}
.text_block[data-style=dark] .text-container blockquote p {
  color: #fff;
}
.text_block[data-style=gradient_container] .text-container {
  background: linear-gradient(135deg, rgba(235, 102, 0, 0.0549019608), rgba(152, 16, 250, 0.0941176471));
  padding: 48px;
  border-radius: 16px;
  -webkit-box-shadow: rgba(31, 38, 135, 0.16) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.16) 0px 8px 32px;
}
.text_block[data-style=gradient_container] .text-container blockquote {
  background-color: rgba(255, 255, 255, 0.15);
  border-left-color: #fff;
}
.text_block[data-style=gradient_container] .text-container blockquote p {
  color: #fff;
}
@media (max-width: 768px) {
  .text_block[data-style=gradient_container] .text-container {
    padding: 32px;
  }
}
.text_block[data-align=left] .text-container {
  text-align: left;
}
.text_block[data-align=left] .text-container .cta {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.text_block[data-align=center] .text-container {
  text-align: center;
}
.text_block[data-align=center] .text-container .cta {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.text_block[data-align=right] .text-container {
  text-align: right;
}
.text_block[data-align=right] .text-container .cta {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.text_block .text-container .pill {
  margin-bottom: 24px;
}
.text_block .text-container h2 {
  margin-top: 0;
}
.text_block .text-container blockquote {
  position: relative;
  padding: 24px 48px;
  margin: 0 0 32px 0;
}
.text_block .text-container blockquote h4 {
  margin-top: 0;
}
.text_block .text-container blockquote {
  border-radius: 8px;
}
.text_block .text-container blockquote::before {
  content: "";
  position: absolute;
  top: 24px;
  left: -16px;
  width: 54px;
  height: 54px;
  background-image: url("../images/icons/quote.svg");
  opacity: 0.5;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}
.text_block .text-container blockquote::after {
  content: "";
  position: absolute;
  bottom: 24px;
  right: -16px;
  width: 54px;
  height: 54px;
  background-image: url("../images/icons/quote.svg");
  opacity: 0.5;
  background-size: contain;
  background-repeat: no-repeat;
}
.text_block .text-container blockquote p {
  font-style: italic;
  margin: 0;
}
.text_block .text-container blockquote p:last-child {
  margin-bottom: 0;
}
.text_block .text-container .cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .text_block .text-container .cta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .text_block .text-container .cta .btn, .text_block .text-container .cta .owl-nav .owl-prev, .owl-nav .text_block .text-container .cta .owl-prev,
  .text_block .text-container .cta .owl-nav .owl-next,
  .owl-nav .text_block .text-container .cta .owl-next, .text_block .text-container .cta .btn-ghost, .text_block .text-container .cta .btn-3, .text_block .text-container .cta .btn-2, .text_block .text-container .cta .btn-1, .text_block .text-container .cta .conversie_block .item .btn-conversie, .conversie_block .item .text_block .text-container .cta .btn-conversie, .text_block .text-container .cta .keuze_form_block .actions .btn-next, .keuze_form_block .actions .text_block .text-container .cta .btn-next {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 16px 32px;
  }
}

.team_block {
  background-color: #fff;
}
.team_block[data-theme=dark] {
  background-color: #3b0c33;
}
.team_block[data-theme=dark] .intro h1,
.team_block[data-theme=dark] .intro h2,
.team_block[data-theme=dark] .intro h3,
.team_block[data-theme=dark] .intro h4,
.team_block[data-theme=dark] .intro h5,
.team_block[data-theme=dark] .intro h6,
.team_block[data-theme=dark] .intro p {
  color: #fff;
}
.team_block .pill-container {
  text-align: center;
  margin-bottom: 24px;
}
.team_block .intro {
  margin-bottom: 48px;
}
.team_block .intro h2 {
  margin-top: 0;
}
.team_block .team-grid {
  display: grid;
  gap: 32px;
}
.team_block[data-grid="2"] .team-grid {
  grid-template-columns: repeat(2, 1fr);
}
.team_block[data-grid="3"] .team-grid {
  grid-template-columns: repeat(3, 1fr);
}
.team_block[data-grid="4"] .team-grid {
  grid-template-columns: repeat(4, 1fr);
}
.team_block[data-grid="5"] .team-grid {
  grid-template-columns: repeat(5, 1fr);
}
.team_block[data-grid="6"] .team-grid {
  grid-template-columns: repeat(6, 1fr);
}
.team_block .member {
  position: relative;
  aspect-ratio: 11/16;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.team_block .member .member-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  border-radius: 8px;
}
.team_block .member .member-image-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  clip-path: inset(40% 0 0 0);
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.team_block .member::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.team_block .member:hover::after {
  opacity: 1;
}
.team_block .member .info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: none;
  -webkit-transform: translateY(calc(100% - 100px));
          transform: translateY(calc(100% - 100px));
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 2;
}
.team_block .member .info .name {
  margin: 0 0 4px 0;
  color: #fff;
  font-size: 24px;
}
.team_block .member .info .function {
  display: block;
  color: #fff;
  margin-bottom: 16px;
}
.team_block .member .info .text {
  color: #fff;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.team_block .member .info .text p {
  margin: 0;
  color: #fff;
}
.team_block .member:hover .member-image {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.team_block .member:hover .member-image-blur {
  opacity: 0.6;
}
.team_block .member:hover .info {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.team_block .member:hover .info .text {
  opacity: 1;
}
.team_block .cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 48px;
}
@media (max-width: 1199px) {
  .team_block[data-grid="5"] .team-grid, .team_block[data-grid="6"] .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 992px) {
  .team_block[data-grid="3"] .team-grid, .team_block[data-grid="4"] .team-grid, .team_block[data-grid="5"] .team-grid, .team_block[data-grid="6"] .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .team_block[data-grid="2"] .team-grid, .team_block[data-grid="3"] .team-grid, .team_block[data-grid="4"] .team-grid, .team_block[data-grid="5"] .team-grid, .team_block[data-grid="6"] .team-grid {
    grid-template-columns: 1fr;
  }
  .team_block .member {
    aspect-ratio: unset;
    height: 400px;
  }
  .team_block .member .member-image,
  .team_block .member .member-image-blur {
    -o-object-position: top;
       object-position: top;
  }
}
@media (max-width: 576px) {
  .team_block .member {
    height: 230px;
  }
}

.tijdlijn {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#1a1a1a), to(#931f80));
  background: linear-gradient(to right, #1a1a1a 0%, #931f80 100%);
}
.tijdlijn .timeline-fixed-line {
  display: none;
}
.tijdlijn .scroll-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 64px;
  padding-right: 16px;
  position: relative;
  overflow: visible;
}
.tijdlijn .scroll-track::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 2px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}
.tijdlijn .timeline-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow: visible;
}
.tijdlijn .timeline-item .timeline-dot {
  position: absolute;
  left: calc(-64px + 24px - 12px);
  top: 8px;
  width: 24px;
  height: 24px;
  pointer-events: none;
}
.tijdlijn .timeline-item .timeline-dot img {
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 0px !important;
}
.tijdlijn .timeline-item .timeline-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-bottom: 0;
}
.tijdlijn .timeline-item .timeline-top .content-group {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.tijdlijn .timeline-item .timeline-top .content-group .wysiwyg {
  max-width: 65%;
  width: 100%;
  word-break: break-word;
}
.tijdlijn .timeline-item .timeline-top .content-group .wysiwyg p {
  max-width: 100%;
}
.tijdlijn .timeline-item .timeline-top .content-group .wysiwyg h2,
.tijdlijn .timeline-item .timeline-top .content-group .wysiwyg h2 span {
  font-size: 60px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  font-weight: bold;
}
@media (max-width: 1199px) {
  .tijdlijn .timeline-item .timeline-top .content-group .wysiwyg h2,
  .tijdlijn .timeline-item .timeline-top .content-group .wysiwyg h2 span {
    font-size: 48px;
  }
}
@media (max-width: 992px) {
  .tijdlijn .timeline-item .timeline-top .content-group .wysiwyg h2,
  .tijdlijn .timeline-item .timeline-top .content-group .wysiwyg h2 span {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .tijdlijn .timeline-item .timeline-top .content-group .wysiwyg h2,
  .tijdlijn .timeline-item .timeline-top .content-group .wysiwyg h2 span {
    font-size: 28px;
  }
}
.tijdlijn .timeline-item .timeline-top .content-group * {
  color: white;
}
.tijdlijn .timeline-item .timeline-top .content-group .year,
.tijdlijn .timeline-item .timeline-top .content-group .year span {
  font-size: 72px;
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .tijdlijn .timeline-item .timeline-top .content-group .year,
  .tijdlijn .timeline-item .timeline-top .content-group .year span {
    font-size: 56px;
  }
}
@media (max-width: 992px) {
  .tijdlijn .timeline-item .timeline-top .content-group .year,
  .tijdlijn .timeline-item .timeline-top .content-group .year span {
    font-size: 44px;
  }
}
@media (max-width: 768px) {
  .tijdlijn .timeline-item .timeline-top .content-group .year,
  .tijdlijn .timeline-item .timeline-top .content-group .year span {
    font-size: 32px;
  }
}
.tijdlijn .timeline-item .timeline-top .image-wrapper {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  border-radius: 8px;
  width: 65%;
}
.tijdlijn .timeline-item .timeline-top .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.tijdlijn .timeline-item .timeline-center {
  display: none;
}
.tijdlijn .content-bottom {
  margin-top: 24px;
}
.tijdlijn .content-bottom * {
  color: white;
}
.tijdlijn .content-bottom .wysiwyg {
  max-width: 100%;
}
.tijdlijn .content-bottom .wysiwyg p {
  max-width: 65%;
}
.tijdlijn .content-bottom .wysiwyg h3,
.tijdlijn .content-bottom .wysiwyg h3 span {
  font-size: 36px;
  line-height: 1.25;
  font-weight: bold;
}
@media (max-width: 1199px) {
  .tijdlijn .content-bottom .wysiwyg h3,
  .tijdlijn .content-bottom .wysiwyg h3 span {
    font-size: 30px;
  }
}
@media (max-width: 992px) {
  .tijdlijn .content-bottom .wysiwyg h3,
  .tijdlijn .content-bottom .wysiwyg h3 span {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .tijdlijn .content-bottom .wysiwyg h3,
  .tijdlijn .content-bottom .wysiwyg h3 span {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .tijdlijn .scroll-track {
    max-width: 100%;
    padding-left: 48px;
  }
  .tijdlijn .scroll-track::before {
    left: 16px;
  }
  .tijdlijn .timeline-item .timeline-dot {
    left: calc(-48px + 16px - 12px);
  }
  .tijdlijn .timeline-item .timeline-top .content-group .wysiwyg {
    max-width: 100%;
  }
  .tijdlijn .timeline-item .timeline-top .image-wrapper {
    width: 100%;
  }
  .tijdlijn .content-bottom .wysiwyg p {
    max-width: 100%;
  }
}

.afbeelding_collage {
  position: relative;
}
.afbeelding_collage .pill-container {
  text-align: center;
  margin-bottom: 24px;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.afbeelding_collage .intro {
  margin-bottom: 32px;
  text-align: center;
}
@media (min-width: 992px) {
  .afbeelding_collage .intro {
    margin-bottom: 64px;
  }
}
.afbeelding_collage .intro p {
  margin-bottom: 16px;
}
.afbeelding_collage .intro p:last-child {
  margin-bottom: 0;
}
.afbeelding_collage .gallery-grid {
  row-gap: 24px;
}
@media (min-width: 992px) {
  .afbeelding_collage .gallery-grid {
    row-gap: 32px;
  }
}
.afbeelding_collage .gallery-item {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 16px;
  background-color: #931f80;
}
.afbeelding_collage .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.afbeelding_collage .gallery-item:hover img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.post_text_row {
  padding: 32px 0;
}
.post_text_row .text-container {
  color: #3a3a40;
  line-height: 1.7;
}
.post_text_row .text-container h2 {
  margin-top: 0;
}

.post_image_row {
  padding: 32px 0;
}
.post_image_row .image-container {
  width: 100%;
}
.post_image_row .image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.post_video {
  padding: 32px 0;
}
.post_video .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}
.post_video .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.breadcrumbs-block[data-theme=dark] {
  background-color: #3b0c33;
}
.breadcrumbs-block[data-theme=dark] .breadcrumbs-item {
  color: #dddddd;
}
.breadcrumbs-block[data-theme=dark] .breadcrumbs-item a {
  color: #dddddd;
}
.breadcrumbs-block[data-theme=dark] .breadcrumbs-item a:hover {
  color: #fff;
}
.breadcrumbs-block[data-theme=dark] .breadcrumbs-item::before {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.breadcrumbs-block[data-theme=brand] {
  background-color: #58134d;
}
.breadcrumbs-block[data-theme=brand] .breadcrumbs-item {
  color: #dddddd;
}
.breadcrumbs-block[data-theme=brand] .breadcrumbs-item a {
  color: #dddddd;
}
.breadcrumbs-block[data-theme=brand] .breadcrumbs-item a:hover {
  color: #fff;
}
.breadcrumbs-block[data-theme=brand] .breadcrumbs-item::before {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.breadcrumbs-block[data-theme=neutral] {
  background-color: rgb(246, 246, 246);
}

.breadcrumbs {
  margin-top: 32px;
}
.breadcrumbs .breadcrumbs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}
.breadcrumbs .breadcrumbs-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #7e7e7e;
  font-size: 16px;
  font-weight: 400;
}
.breadcrumbs .breadcrumbs-item a {
  color: #7e7e7e;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.breadcrumbs .breadcrumbs-item a:hover {
  color: #3a3a40;
}
.breadcrumbs .breadcrumbs-item:not(:first-child)::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background-image: url("../images/icons/chevron-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.breadcrumbs .breadcrumbs-item.current span {
  color: #7e7e7e;
}

.post_archive {
  padding: 64px 0;
}
.post_archive .intro {
  margin-bottom: 48px;
}
.post_archive .intro .title {
  margin-top: 16px;
}
.post_archive .filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post_archive .search-container {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 280px;
}
.post_archive .search-container .search-input {
  width: 100%;
  padding: 8px 16px;
  padding-left: 48px;
  border: 1px solid rgba(126, 126, 126, 0.3);
  border-radius: 8px;
  font-size: 14px;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.post_archive .search-container .search-input:focus {
  outline: none;
  border-color: #931f80;
  -webkit-box-shadow: 0 0 0 3px rgba(147, 31, 128, 0.1);
          box-shadow: 0 0 0 3px rgba(147, 31, 128, 0.1);
}
.post_archive .search-container .search-input::-webkit-input-placeholder {
  color: #7e7e7e;
}
.post_archive .search-container .search-input::-moz-placeholder {
  color: #7e7e7e;
}
.post_archive .search-container .search-input:-ms-input-placeholder {
  color: #7e7e7e;
}
.post_archive .search-container .search-input::-ms-input-placeholder {
  color: #7e7e7e;
}
.post_archive .search-container .search-input::placeholder {
  color: #7e7e7e;
}
.post_archive .search-container .search-icon {
  position: absolute;
  left: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #7e7e7e;
  pointer-events: none;
}
.post_archive .category-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.post_archive .filter-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border: 1px solid rgba(126, 126, 126, 0.3);
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.post_archive .filter-btn:hover {
  background: rgba(147, 31, 128, 0.05);
}
.post_archive .filter-btn[data-active=true] {
  background: -webkit-gradient(linear, left top, right top, from(#eb6701), to(#fe9f56));
  background: linear-gradient(to right, #eb6701 0%, #fe9f56 100%);
  color: #fff;
}
.post_archive .filter-btn[data-active=true] .filter-icon {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.post_archive .filter-btn .filter-icon {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
  -webkit-filter: brightness(0) saturate(100%) invert(47%) sepia(98%) saturate(1839%) hue-rotate(11deg) brightness(97%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(47%) sepia(98%) saturate(1839%) hue-rotate(11deg) brightness(97%) contrast(101%);
}
.post_archive .posts-grid {
  min-height: 200px;
}
.post_archive .no-results {
  text-align: center;
  color: #7e7e7e;
  padding: 48px;
}
.post_archive .load-more-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 48px;
}
.post_archive .load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media (max-width: 992px) {
  .post_archive {
    padding: 32px 0;
  }
  .post_archive .filters {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .post_archive .search-container {
    width: 100%;
  }
  .post_archive .category-filters {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.handleidingen_archive {
  padding: 64px 0;
}
.handleidingen_archive .intro {
  margin-bottom: 48px;
  text-align: center;
}
.handleidingen_archive .intro .title {
  margin-top: 16px;
}
.handleidingen_archive .search-full-width {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.handleidingen_archive .search-container {
  margin-bottom: 32px;
  max-width: 700px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  position: relative;
}
.handleidingen_archive .search-container .search-input-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(126, 126, 126, 0.2);
  border-radius: 6px;
  padding: 8px 16px;
  -webkit-box-shadow: rgba(31, 38, 135, 0.08) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.08) 0px 8px 32px;
  height: 44px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.handleidingen_archive .search-container .search-input-wrapper .search-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #7e7e7e;
}
.handleidingen_archive .search-container .search-input-wrapper .search-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #3a3a40;
}
.handleidingen_archive .search-container .search-input-wrapper .search-input::-webkit-input-placeholder {
  color: #7e7e7e;
}
.handleidingen_archive .search-container .search-input-wrapper .search-input::-moz-placeholder {
  color: #7e7e7e;
}
.handleidingen_archive .search-container .search-input-wrapper .search-input:-ms-input-placeholder {
  color: #7e7e7e;
}
.handleidingen_archive .search-container .search-input-wrapper .search-input::-ms-input-placeholder {
  color: #7e7e7e;
}
.handleidingen_archive .search-container .search-input-wrapper .search-input::placeholder {
  color: #7e7e7e;
}
.handleidingen_archive .search-container .search-btn {
  background: -webkit-gradient(linear, left top, right top, from(#eb6600), to(#ffa35c));
  background: linear-gradient(90deg, #eb6600, #ffa35c);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 32px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  height: 44px;
}
.handleidingen_archive .search-container .search-btn:hover {
  opacity: 0.9;
}
.handleidingen_archive .handleiding-content-results {
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.handleidingen_archive .handleiding-content-results .no-results {
  text-align: center;
  color: #7e7e7e;
  padding: 48px;
}
.handleidingen_archive .handleiding-content-results .search-result-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  padding: 16px 24px;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: rgba(31, 38, 135, 0.08) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.08) 0px 8px 32px;
  text-decoration: none;
  -webkit-transition: background 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, background 0.2s ease;
  transition: box-shadow 0.2s ease, background 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.handleidingen_archive .handleiding-content-results .search-result-item:hover {
  -webkit-box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
          box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
  background: rgba(147, 31, 128, 0.02);
}
.handleidingen_archive .handleiding-content-results .search-result-item .result-handleiding {
  font-size: 11px;
  font-weight: 600;
  color: #931f80;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.handleidingen_archive .handleiding-content-results .search-result-item .result-label {
  font-size: 16px;
  font-weight: 600;
  color: #3a3a40;
}
.handleidingen_archive .handleiding-content-results .search-result-item .result-snippet {
  font-size: 14px;
  color: #7e7e7e;
  line-height: 1.6;
}
.handleidingen_archive .handleiding-content-results .search-result-item .result-snippet mark {
  background: rgba(147, 31, 128, 0.15);
  color: #931f80;
  border-radius: 2px;
  padding: 0 2px;
}
.handleidingen_archive .posts-grid {
  min-height: 200px;
  row-gap: 20px;
}
.handleidingen_archive .no-results {
  text-align: center;
  color: #7e7e7e;
  padding: 48px;
}
.handleidingen_archive .load-more-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 48px;
}
.handleidingen_archive .load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media (max-width: 992px) {
  .handleidingen_archive {
    padding: 32px 0;
  }
  .handleidingen_archive .search-container {
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .handleidingen_archive .search-container .search-btn {
    width: 100%;
  }
}

.handleiding-hero {
  background: linear-gradient(155deg, #ffffff, rgba(235, 102, 0, 0.0352941176));
  padding: 64px 0;
  text-align: center;
}
.handleiding-hero .breadcrumbs {
  margin-top: 0;
  margin-bottom: 24px;
  text-align: left;
}
.handleiding-hero .title {
  margin-bottom: 32px;
  font-size: 36px;
  line-height: 1.25;
  font-weight: bold;
}
@media (max-width: 1199px) {
  .handleiding-hero .title {
    font-size: 30px;
  }
}
@media (max-width: 992px) {
  .handleiding-hero .title {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .handleiding-hero .title {
    font-size: 22px;
  }
}
.handleiding-hero .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.handleiding-hero .search .handleiding-search-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
          box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
  z-index: 100;
  max-height: 420px;
  overflow-y: auto;
}
.handleiding-hero .search .handleiding-search-results .no-results {
  padding: 24px 16px;
  font-size: 14px;
  color: #7e7e7e;
  text-align: center;
}
.handleiding-hero .search .handleiding-search-results .search-result-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(126, 126, 126, 0.1);
  text-decoration: none;
  -webkit-transition: background 0.15s ease;
  transition: background 0.15s ease;
  cursor: pointer;
}
.handleiding-hero .search .handleiding-search-results .search-result-item:last-child {
  border-bottom: none;
}
.handleiding-hero .search .handleiding-search-results .search-result-item:hover {
  background: rgba(147, 31, 128, 0.04);
}
.handleiding-hero .search .handleiding-search-results .search-result-item .result-handleiding {
  font-size: 11px;
  font-weight: 600;
  color: #931f80;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.handleiding-hero .search .handleiding-search-results .search-result-item .result-label {
  font-size: 14px;
  font-weight: 600;
  color: #3a3a40;
}
.handleiding-hero .search .handleiding-search-results .search-result-item .result-snippet {
  font-size: 12px;
  color: #7e7e7e;
  line-height: 1.5;
}
.handleiding-hero .search .handleiding-search-results .search-result-item .result-snippet mark {
  background: rgba(147, 31, 128, 0.15);
  color: #931f80;
  border-radius: 2px;
  padding: 0 2px;
}
.handleiding-hero .search-input-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(126, 126, 126, 0.2);
  border-radius: 6px;
  padding: 8px 16px;
  -webkit-box-shadow: rgba(31, 38, 135, 0.08) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.08) 0px 8px 32px;
  height: 44px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.handleiding-hero .search-input-wrap svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #7e7e7e;
}
.handleiding-hero .search-input-wrap input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #3a3a40;
}
.handleiding-hero .search-input-wrap input::-webkit-input-placeholder {
  color: #7e7e7e;
}
.handleiding-hero .search-input-wrap input::-moz-placeholder {
  color: #7e7e7e;
}
.handleiding-hero .search-input-wrap input:-ms-input-placeholder {
  color: #7e7e7e;
}
.handleiding-hero .search-input-wrap input::-ms-input-placeholder {
  color: #7e7e7e;
}
.handleiding-hero .search-input-wrap input::placeholder {
  color: #7e7e7e;
}
.handleiding-hero .btn-search {
  background: -webkit-gradient(linear, left top, right top, from(#eb6600), to(#ffa35c));
  background: linear-gradient(90deg, #eb6600, #ffa35c);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 32px;
  height: 44px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.handleiding-hero .btn-search:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {
  .handleiding-hero {
    padding: 48px 0;
  }
  .handleiding-hero .search {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .handleiding-hero .search-input-wrap {
    width: 100%;
  }
  .handleiding-hero .btn-search {
    width: 100%;
  }
}

.single-handleiding {
  padding: 64px 0;
}
.single-handleiding .layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 48px;
}
.single-handleiding .handleiding-mobile-overlay .sidebar,
.single-handleiding .layout > .sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 260px;
          flex: 0 0 260px;
  width: 260px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .sidebar-inner,
.single-handleiding .layout > .sidebar .sidebar-inner {
  position: sticky;
  top: calc(98px + 24px);
  max-height: calc(100vh - 98px - 64px);
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  -webkit-box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
          box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
  padding: 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(147, 31, 128, 0.3) transparent;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .sidebar-inner::-webkit-scrollbar,
.single-handleiding .layout > .sidebar .sidebar-inner::-webkit-scrollbar {
  width: 4px;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .sidebar-inner::-webkit-scrollbar-track,
.single-handleiding .layout > .sidebar .sidebar-inner::-webkit-scrollbar-track {
  background: transparent;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .sidebar-inner::-webkit-scrollbar-thumb,
.single-handleiding .layout > .sidebar .sidebar-inner::-webkit-scrollbar-thumb {
  background: rgba(147, 31, 128, 0.3);
  border-radius: 2px;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .handleiding-nav,
.single-handleiding .layout > .sidebar .handleiding-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .handleiding-group,
.single-handleiding .layout > .sidebar .handleiding-group {
  border-radius: 8px;
  overflow: hidden;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .handleiding-group + .handleiding-group,
.single-handleiding .layout > .sidebar .handleiding-group + .handleiding-group {
  border-top: 1px solid rgba(126, 126, 126, 0.12);
  padding-top: 4px;
  margin-top: 4px;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .handleiding-toggle,
.single-handleiding .layout > .sidebar .handleiding-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .handleiding-toggle:hover,
.single-handleiding .layout > .sidebar .handleiding-toggle:hover {
  background: rgba(147, 31, 128, 0.06);
}
.single-handleiding .handleiding-mobile-overlay .sidebar .handleiding-toggle:hover .handleiding-title,
.single-handleiding .layout > .sidebar .handleiding-toggle:hover .handleiding-title {
  color: #931f80;
}
.is-current .single-handleiding .handleiding-mobile-overlay .sidebar .handleiding-toggle .handleiding-title,
.is-current .single-handleiding .layout > .sidebar .handleiding-toggle .handleiding-title {
  color: #931f80;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .handleiding-toggle[data-intro-active],
.single-handleiding .layout > .sidebar .handleiding-toggle[data-intro-active] {
  background: #931f80;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .handleiding-toggle[data-intro-active] .handleiding-title,
.single-handleiding .layout > .sidebar .handleiding-toggle[data-intro-active] .handleiding-title {
  color: #fff;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .handleiding-toggle[data-intro-active] .handleiding-chevron .chevron,
.single-handleiding .layout > .sidebar .handleiding-toggle[data-intro-active] .handleiding-chevron .chevron {
  color: #fff;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .handleiding-title,
.single-handleiding .layout > .sidebar .handleiding-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 700;
  font-size: 14px;
  color: #3a3a40;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .handleiding-chevron,
.single-handleiding .layout > .sidebar .handleiding-chevron {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .handleiding-chevron:disabled,
.single-handleiding .layout > .sidebar .handleiding-chevron:disabled {
  cursor: default;
  pointer-events: none;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .handleiding-chevron .chevron,
.single-handleiding .layout > .sidebar .handleiding-chevron .chevron {
  color: #7e7e7e;
  -webkit-transition: color 0.25s ease, -webkit-transform 0.25s ease;
  transition: color 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, color 0.25s ease;
  transition: transform 0.25s ease, color 0.25s ease, -webkit-transform 0.25s ease;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.single-handleiding .handleiding-mobile-overlay .sidebar .handleiding-chevron[aria-expanded=true] .chevron,
.single-handleiding .layout > .sidebar .handleiding-chevron[aria-expanded=true] .chevron {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  color: #931f80;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .chapter-list,
.single-handleiding .layout > .sidebar .chapter-list {
  display: none;
  padding-left: 8px;
  margin-top: 4px;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .chapter-list.is-open,
.single-handleiding .layout > .sidebar .chapter-list.is-open {
  display: block;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .chapter,
.single-handleiding .layout > .sidebar .chapter {
  border-radius: 8px;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .chapter-toggle,
.single-handleiding .layout > .sidebar .chapter-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 8px 16px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  color: #3a3a40;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
  gap: 8px;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .chapter-toggle span,
.single-handleiding .layout > .sidebar .chapter-toggle span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 12px;
  font-weight: 500;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .chapter-toggle .chevron,
.single-handleiding .layout > .sidebar .chapter-toggle .chevron {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  color: #7e7e7e;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.single-handleiding .handleiding-mobile-overlay .sidebar .chapter-toggle .arrow,
.single-handleiding .layout > .sidebar .chapter-toggle .arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #7e7e7e;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .chapter-toggle[aria-expanded=true] .chevron,
.single-handleiding .layout > .sidebar .chapter-toggle[aria-expanded=true] .chevron {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.single-handleiding .handleiding-mobile-overlay .sidebar .chapter-toggle.is-active,
.single-handleiding .layout > .sidebar .chapter-toggle.is-active {
  background: #931f80;
  color: #fff;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .chapter-toggle.is-active .chevron,
.single-handleiding .layout > .sidebar .chapter-toggle.is-active .chevron {
  color: #fff;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .chapter-toggle.is-active .arrow,
.single-handleiding .layout > .sidebar .chapter-toggle.is-active .arrow {
  color: #fff;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .subchapter-list,
.single-handleiding .layout > .sidebar .subchapter-list {
  list-style: none;
  margin: 4px 0 4px 0;
  padding: 0;
  display: none;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .subchapter-list.is-open,
.single-handleiding .layout > .sidebar .subchapter-list.is-open {
  display: block;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .subchapter-list li,
.single-handleiding .layout > .sidebar .subchapter-list li {
  margin: 0;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .subchapter-link,
.single-handleiding .layout > .sidebar .subchapter-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  width: 100%;
  padding: 4px 16px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  color: #7e7e7e;
  -webkit-transition: color 0.2s ease, background 0.2s ease;
  transition: color 0.2s ease, background 0.2s ease;
  line-height: 1.4;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .subchapter-link .arrow,
.single-handleiding .layout > .sidebar .subchapter-link .arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #7e7e7e;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .subchapter-link:hover,
.single-handleiding .layout > .sidebar .subchapter-link:hover {
  color: #931f80;
  background: rgba(147, 31, 128, 0.05);
}
.single-handleiding .handleiding-mobile-overlay .sidebar .subchapter-link:hover .arrow,
.single-handleiding .layout > .sidebar .subchapter-link:hover .arrow {
  color: #931f80;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .subchapter-link.is-active,
.single-handleiding .layout > .sidebar .subchapter-link.is-active {
  color: #931f80;
  font-weight: 600;
}
.single-handleiding .handleiding-mobile-overlay .sidebar .subchapter-link.is-active .arrow,
.single-handleiding .layout > .sidebar .subchapter-link.is-active .arrow {
  color: #931f80;
}
.single-handleiding .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding-top: 8px;
}
.single-handleiding .content .content-panel {
  display: none;
}
.single-handleiding .content .content-panel[data-active=true] {
  display: block;
}
.single-handleiding .content .content-panel .panel-title {
  color: #3a3a40;
  margin-bottom: 24px;
}
.single-handleiding .content .content-panel .panel-content {
  margin-bottom: 48px;
}
.single-handleiding .content .content-panel .panel-image {
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
}
.single-handleiding .content .content-panel .panel-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.single-handleiding .content .no-content {
  color: #7e7e7e;
  padding: 48px;
  text-align: center;
}
.single-handleiding .handleiding-mobile-toggle {
  display: none;
}
.single-handleiding .handleiding-mobile-overlay {
  display: none;
}
@media (max-width: 992px) {
  .single-handleiding {
    padding: 32px 0;
  }
  .single-handleiding .layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .single-handleiding .layout > .sidebar {
    display: none;
  }
  .single-handleiding .handleiding-mobile-overlay .sidebar {
    display: block;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .single-handleiding .handleiding-mobile-overlay .sidebar .sidebar-inner {
    position: static;
    max-height: none;
  }
  .single-handleiding .content {
    width: 100%;
  }
  .single-handleiding .content .panel-content img {
    max-width: 100%;
    height: auto;
  }
  .single-handleiding .handleiding-mobile-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: #fff;
    border: none;
    border-radius: 8px;
    -webkit-box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
            box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
    cursor: pointer;
    margin-bottom: 24px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .single-handleiding .handleiding-mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #931f80;
    border-radius: 2px;
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  }
  .single-handleiding .handleiding-mobile-toggle.is-open span:nth-child(1) {
    -webkit-transform: translateY(7px) rotate(45deg);
            transform: translateY(7px) rotate(45deg);
  }
  .single-handleiding .handleiding-mobile-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .single-handleiding .handleiding-mobile-toggle.is-open span:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
            transform: translateY(-7px) rotate(-45deg);
  }
  .single-handleiding .handleiding-mobile-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 200;
    overflow-y: auto;
    padding: 48px 24px;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .single-handleiding .handleiding-mobile-overlay.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .single-handleiding .handleiding-mobile-overlay .sidebar {
    display: block !important;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .single-handleiding .handleiding-mobile-overlay .sidebar-inner {
    position: static;
    max-height: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }
}

.locatie_contact {
  padding: 64px 0;
}
.locatie_contact .image-container {
  height: 100%;
}
.locatie_contact .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.locatie_contact .row {
  row-gap: 32px !important;
}
.locatie_contact .row [class*=col-] {
  padding-left: 32px;
  padding-right: 32px;
}
.locatie_contact .content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.locatie_contact .content {
  margin-bottom: 32px;
}
.locatie_contact .content.wysiwyg h1, .locatie_contact .content.wysiwyg h1 strong {
  margin-bottom: 0 !important;
}
.locatie_contact .contact-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.locatie_contact .contact-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #3a3a40;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.locatie_contact .contact-item:hover {
  color: #931f80;
}
.locatie_contact .contact-item .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  height: 44px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.locatie_contact .contact-item .icon img {
  width: 44px;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
}
.locatie_contact .contact-item .text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.locatie_contact .contact-item .label {
  color: #7e7e7e;
  margin: 0;
}
.locatie_contact .contact-item .text {
  font-weight: 600;
  margin: 0;
}
.locatie_contact .map-container {
  margin-top: auto;
}
.locatie_contact .map-container .map {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  background-color: #931f80;
}
@media (max-width: 992px) {
  .locatie_contact {
    padding: 32px 0;
  }
  .locatie_contact .image-container {
    margin-bottom: 32px;
  }
  .locatie_contact .image-container img {
    max-height: 400px;
  }
  .locatie_contact .map-container .map {
    height: 250px;
  }
}

.contact_formulier {
  padding: 64px 0;
}
.contact_formulier .image-container {
  height: 100%;
}
.contact_formulier .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.contact_formulier .form-container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px;
  border-radius: 24px;
  -webkit-box-shadow: rgba(31, 38, 135, 0.16) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.16) 0px 8px 32px;
}
.contact_formulier .content {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .contact_formulier {
    padding: 32px 0;
  }
  .contact_formulier .image-container {
    margin-bottom: 32px;
  }
  .contact_formulier .image-container img {
    max-height: 400px;
  }
}

.gform-body .gform_fields {
  row-gap: 24px !important;
}
.gform-body .gfield_required {
  display: none !important;
}
.gform-body input:not([type=checkbox]),
.gform-body textarea,
.gform-body select {
  padding-left: 0 !important;
  border-left: 0 !important;
  border-top: 0 !important;
  border-right: 0 !important;
  border-bottom: 1px solid rgb(172, 172, 172) !important;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  border-radius: 0 !important;
}
.gform-body input[type=checkbox] {
  border-radius: 50px !important;
  border: 1px solid rgb(172, 172, 172) !important;
}

.gform-footer input[type=submit] {
  width: 100% !important;
  background: -webkit-gradient(linear, left top, right top, from(#eb6600), to(#ffa35c)) !important;
  background: linear-gradient(90deg, #eb6600, #ffa35c) !important;
}

.pill {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: #fff;
  border-radius: 16px;
  -webkit-box-shadow: rgba(31, 38, 135, 0.37) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.37) 0px 8px 32px;
}
.pill .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.pill .icon .star {
  width: 16px;
  height: 16px;
}
.pill .icon .check {
  width: 20px;
  height: 20px;
}
.pill .icon .sparkle {
  width: 16px;
  height: 16px;
}
.pill .icon .person {
  width: 18px;
  height: 18px;
}
.pill .icon .blog {
  width: 18px;
  height: 18px;
}
.pill .icon .call {
  width: 18px;
  height: 18px;
}
.pill .icon .demo {
  width: 18px;
  height: 18px;
}
.pill .icon .tag {
  width: 18px;
  height: 18px;
}
.pill .text {
  font-size: 14px;
  font-weight: 300;
  color: #7e7e7e;
}

.post-card {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 24px;
  background-color: white;
  -webkit-box-shadow: rgba(31, 38, 135, 0.08) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.08) 0px 8px 32px;
  padding: 24px;
  border-radius: 16px;
}
.post-card .image img {
  width: 100%;
  max-height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  display: block;
  -o-object-position: center;
     object-position: center;
}
.post-card .image {
  margin-bottom: 8px;
}
.post-card .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.post-card .meta .category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  color: #eb6600;
  font-size: 12px;
}
.post-card .meta .category .category-icon {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
  -webkit-filter: brightness(0) saturate(100%) invert(47%) sepia(98%) saturate(1839%) hue-rotate(11deg) brightness(97%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(47%) sepia(98%) saturate(1839%) hue-rotate(11deg) brightness(97%) contrast(101%);
}
.post-card .meta .category svg {
  color: #eb6600;
}
.post-card .meta .date {
  font-size: 12px;
  font-weight: 400;
}
.post-card .title {
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 0;
}
.post-card .description {
  font-size: 14px;
}
.post-card .read-more {
  color: #eb6600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-size: 14px;
}
.manual-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  -webkit-box-shadow: rgba(31, 38, 135, 0.16) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.16) 0px 8px 32px;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 24px;
  height: 100%;
}
.manual-card .image {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.manual-card .image img {
  width: 64px;
  height: 64px;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  display: block;
  -o-object-position: center;
     object-position: center;
  border-radius: 8px;
}
.manual-card .title {
  font-size: 18px;
  margin-bottom: 8px;
  text-align: center;
  color: #3a3a40;
  margin-top: 8px;
}
.manual-card .description {
  font-size: 14px;
  color: #3a3a40;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 0;
  text-align: center;
}
.manual-card .btn, .manual-card .owl-nav .owl-prev, .owl-nav .manual-card .owl-prev,
.manual-card .owl-nav .owl-next,
.owl-nav .manual-card .owl-next, .manual-card .btn-ghost, .manual-card .btn-3, .manual-card .btn-2, .manual-card .btn-1, .manual-card .conversie_block .item .btn-conversie, .conversie_block .item .manual-card .btn-conversie, .manual-card .keuze_form_block .actions .btn-next, .keuze_form_block .actions .manual-card .btn-next {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  width: 100%;
}
.manual-card .btn svg, .manual-card .owl-nav .owl-prev svg, .owl-nav .manual-card .owl-prev svg,
.manual-card .owl-nav .owl-next svg,
.owl-nav .manual-card .owl-next svg, .manual-card .btn-ghost svg, .manual-card .btn-3 svg, .manual-card .btn-2 svg, .manual-card .btn-1 svg, .manual-card .conversie_block .item .btn-conversie svg, .conversie_block .item .manual-card .btn-conversie svg, .manual-card .keuze_form_block .actions .btn-next svg, .keuze_form_block .actions .manual-card .btn-next svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.btn, .owl-nav .owl-prev,
.owl-nav .owl-next, .btn-ghost, .btn-3, .btn-2, .btn-1, .conversie_block .item .btn-conversie, .keuze_form_block .actions .btn-next {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  line-height: 1;
  -webkit-box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
          box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
}
.btn .btn-icon, .owl-nav .owl-prev .btn-icon,
.owl-nav .owl-next .btn-icon, .btn-ghost .btn-icon, .btn-3 .btn-icon, .btn-2 .btn-icon, .btn-1 .btn-icon, .conversie_block .item .btn-conversie .btn-icon, .keuze_form_block .actions .btn-next .btn-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.btn:focus, .owl-nav .owl-prev:focus,
.owl-nav .owl-next:focus, .btn-ghost:focus, .btn-3:focus, .btn-2:focus, .btn-1:focus, .conversie_block .item .btn-conversie:focus, .keuze_form_block .actions .btn-next:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(88, 19, 77, 0.2);
          box-shadow: 0 0 0 3px rgba(88, 19, 77, 0.2);
}
.btn:active, .owl-nav .owl-prev:active,
.owl-nav .owl-next:active, .btn-ghost:active, .btn-3:active, .btn-2:active, .btn-1:active, .conversie_block .item .btn-conversie:active, .keuze_form_block .actions .btn-next:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
@media (max-width: 992px) {
  .btn, .owl-nav .owl-prev,
  .owl-nav .owl-next, .btn-ghost, .btn-3, .btn-2, .btn-1, .conversie_block .item .btn-conversie, .keuze_form_block .actions .btn-next {
    padding: 16px 32px;
  }
}
@media (max-width: 768px) {
  .btn, .owl-nav .owl-prev,
  .owl-nav .owl-next, .btn-ghost, .btn-3, .btn-2, .btn-1, .conversie_block .item .btn-conversie, .keuze_form_block .actions .btn-next {
    font-size: 0.9rem;
  }
}

.btn-1 {
  background: -webkit-gradient(linear, left top, right top, from(#931f80), to(#dc5bc7));
  background: linear-gradient(to right, #931f80, #dc5bc7);
  color: #fff;
  -webkit-box-shadow: 0 4px 12px rgba(147, 31, 128, 0.3);
          box-shadow: 0 4px 12px rgba(147, 31, 128, 0.3);
}
.btn-1:hover {
  background-color: rgb(113.3056179775, 23.8943820225, 98.6606741573);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 20px rgba(147, 31, 128, 0.4);
          box-shadow: 0 8px 20px rgba(147, 31, 128, 0.4);
}
.btn-1 a {
  color: #fff !important;
  text-decoration: none;
}

.btn-2 {
  background: -webkit-gradient(linear, left top, right top, from(#eb6701), to(#fe9f56));
  background: linear-gradient(to right, #eb6701 0%, #fe9f56 100%);
  color: #fff;
  -webkit-box-shadow: 0 4px 12px rgba(147, 31, 128, 0.3);
          box-shadow: 0 4px 12px rgba(147, 31, 128, 0.3);
}
.btn-2:hover {
  background-color: rgb(113.3056179775, 23.8943820225, 98.6606741573);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 20px rgba(147, 31, 128, 0.4);
          box-shadow: 0 8px 20px rgba(147, 31, 128, 0.4);
}
.btn-2 a {
  color: #fff !important;
  text-decoration: none;
}

.btn-3 {
  background-color: white;
  color: #3a3a40;
  font-weight: 400;
}
.btn-3:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: rgba(31, 38, 135, 0.37) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.37) 0px 8px 32px;
}
.btn-3 a {
  color: inherit !important;
  text-decoration: none;
}

.btn-ghost {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 20px rgba(58, 58, 64, 0.2);
          box-shadow: 0 8px 20px rgba(58, 58, 64, 0.2);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 24px 48px;
  font-size: 1.125rem;
}

.owl-button {
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.owl-button:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media (max-width: 992px) {
  .searchbar {
    width: 100%;
  }
}
.searchbar__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgb(235, 235, 235);
  border-radius: 100px;
  padding: 0.7em 1.2em;
  margin-bottom: 0;
}
.searchbar__input::-webkit-input-placeholder {
  border: none;
  background-color: transparent;
  outline: none;
  color: rgb(109, 109, 109);
  font-size: 16px;
}
.searchbar__input::-moz-placeholder {
  border: none;
  background-color: transparent;
  outline: none;
  color: rgb(109, 109, 109);
  font-size: 16px;
}
.searchbar__input:-ms-input-placeholder {
  border: none;
  background-color: transparent;
  outline: none;
  color: rgb(109, 109, 109);
  font-size: 16px;
}
.searchbar__input::-ms-input-placeholder {
  border: none;
  background-color: transparent;
  outline: none;
  color: rgb(109, 109, 109);
  font-size: 16px;
}
.searchbar__input, .searchbar__button, .searchbar__input::placeholder {
  border: none;
  background-color: transparent;
  outline: none;
  color: rgb(109, 109, 109);
  font-size: 16px;
}

footer {
  color: #fff;
}
footer .footer-inner {
  background-color: #3b0c33;
  padding-top: 64px;
}
footer .footer-inner h1,
footer .footer-inner h2,
footer .footer-inner h3,
footer .footer-inner h4,
footer .footer-inner h5 {
  color: white;
}
footer .footer-inner .footer-main .container .row .footer-col {
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  footer .footer-inner .footer-main .container .row .footer-col {
    margin-bottom: 0;
  }
}
footer .footer-inner .footer-main .container .row .footer-col .footer-logo {
  margin-bottom: 24px;
}
footer .footer-inner .footer-main .container .row .footer-col .footer-logo img {
  max-height: 64px;
  height: auto;
  border-radius: 0;
}
footer .footer-inner .footer-main .container .row .footer-col .footer-top-content {
  margin-bottom: 24px;
  color: #dddddd;
}
footer .footer-inner .footer-main .container .row .footer-col .footer-top-content p {
  margin: 0;
  color: white;
}
footer .footer-inner .footer-main .container .row .footer-col .footer-top-content img {
  border-radius: 0;
}
footer .footer-inner .footer-main .container .row .footer-col .footer-cta {
  margin-bottom: 32px;
}
footer .footer-inner .footer-main .container .row .footer-col .contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
footer .footer-inner .footer-main .container .row .footer-col .contact-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
footer .footer-inner .footer-main .container .row .footer-col .contact-info__item:hover {
  opacity: 0.8;
}
footer .footer-inner .footer-main .container .row .footer-col .contact-info__item .contact-info__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
}
footer .footer-inner .footer-main .container .row .footer-col .contact-info__item .contact-info__text {
  color: #fff;
}
footer .footer-inner .footer-main .container .row .footer-col .social-media {
  margin-bottom: 32px;
}
footer .footer-inner .footer-main .container .row .footer-col .social-media .social-media__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
}
footer .footer-inner .footer-main .container .row .footer-col .social-media .social-media__links .social-media__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
footer .footer-inner .footer-main .container .row .footer-col .social-media .social-media__links .social-media__link:hover {
  opacity: 0.8;
}
footer .footer-inner .footer-main .container .row .footer-col .social-media .social-media__links .social-media__link .social-media__icon {
  width: 24px;
  height: 24px;
  border-radius: 0;
}
footer .footer-inner .footer-main .container .row .footer-col .social-media .social-media__links .social-media__link .social-media__icon img {
  border-radius: 0;
}
footer .footer-inner .footer-main .container .row .footer-col .footer-nav .menu-item-title > a {
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  opacity: 1 !important;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  display: block;
  pointer-events: none;
  margin-top: 16px;
}
footer .footer-inner .footer-main .container .row .footer-col .footer-nav .footer-menu {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 0;
  margin: 0;
}
@media (min-width: 992px) {
  footer .footer-inner .footer-main .container .row .footer-col .footer-nav .footer-menu {
    grid-template-columns: repeat(5, 1fr);
  }
}
footer .footer-inner .footer-main .container .row .footer-col .footer-nav .footer-menu > li {
  margin: 0;
}
footer .footer-inner .footer-main .container .row .footer-col .footer-nav .footer-menu > li > a,
footer .footer-inner .footer-main .container .row .footer-col .footer-nav .footer-menu > li > .footer-menu-title {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  display: block;
}
footer .footer-inner .footer-main .container .row .footer-col .footer-nav .footer-menu > li > a:hover,
footer .footer-inner .footer-main .container .row .footer-col .footer-nav .footer-menu > li > .footer-menu-title:hover {
  opacity: 0.8;
}
footer .footer-inner .footer-main .container .row .footer-col .footer-nav .footer-menu > li .sub-menu {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
footer .footer-inner .footer-main .container .row .footer-col .footer-nav .footer-menu > li .sub-menu li a {
  color: #dddddd;
  text-decoration: none;
  opacity: 0.8;
  font-size: 13px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
footer .footer-inner .footer-main .container .row .footer-col .footer-nav .footer-menu > li .sub-menu li a:hover {
  opacity: 1;
}
@media (max-width: 992px) {
  footer .footer-inner .footer-main .container .row .footer-col .footer-nav .footer-menu {
    grid-template-columns: 1fr;
    gap: 0;
  }
  footer .footer-inner .footer-main .container .row .footer-col .footer-nav .footer-menu > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 16px 0;
    position: relative;
  }
  footer .footer-inner .footer-main .container .row .footer-col .footer-nav .footer-menu > li > a .footer-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ad00fd, #ff0084);
    border-radius: 4px;
    position: relative;
  }
  footer .footer-inner .footer-main .container .row .footer-col .footer-nav .footer-menu > li > a .footer-toggle::before, footer .footer-inner .footer-main .container .row .footer-col .footer-nav .footer-menu > li > a .footer-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
  }
  footer .footer-inner .footer-main .container .row .footer-col .footer-nav .footer-menu > li > a .footer-toggle::after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
  footer .footer-inner .footer-main .container .row .footer-col .footer-nav .footer-menu > li.is-open > a .footer-toggle::after {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  footer .footer-inner .footer-main .container .row .footer-col .footer-nav .footer-menu > li .sub-menu {
    display: none;
    margin: 0;
    padding-bottom: 16px;
  }
  footer .footer-inner .footer-main .container .row .footer-col .footer-nav .footer-menu > li.is-open .sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 992px) {
  footer .footer-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-inner .footer-main {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  footer .footer-inner .footer-cta-section {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  footer .footer-inner .footer-cta-section .footer-form-wrapper {
    display: none;
  }
  footer .footer-inner .footer-cta-section .footer-images {
    text-align: center;
  }
  footer .footer-inner .footer-cta-section .footer-images__grid {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .footer-inner .footer-cta-section .col-12.col-lg-3 {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  footer .footer-inner .bottom-footer {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
footer .footer-inner .footer-images__title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}
footer .footer-inner .footer-images__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
footer .footer-inner .footer-images__img {
  max-height: 60px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
}
footer .footer-inner .footer-cta-section .footer-form-wrapper .form-text-above {
  color: #dddddd;
  margin-bottom: 24px;
}
footer .footer-inner .footer-cta-section .footer-form-wrapper .form-text-above p {
  margin: 0;
  color: white;
}
footer .footer-inner .footer-cta-section .footer-form-wrapper .footer-form {
  margin-bottom: 16px;
}
footer .footer-inner .footer-cta-section .footer-form-wrapper .footer-form #input_1_1 {
  border-radius: 6px !important;
  padding: 20px 16px !important;
}
footer .footer-inner .footer-cta-section .footer-form-wrapper .footer-form #gform_submit_button_1 {
  border-radius: 6px !important;
}
footer .footer-inner .footer-cta-section .footer-form-wrapper .form-text-below {
  color: #dddddd;
  font-size: 14px;
  margin: 0;
  text-align: center;
}
footer .footer-inner .bottom-footer {
  padding-bottom: 48px;
}
footer .footer-inner .bottom-footer .copyright-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}
footer .footer-inner .bottom-footer .copyright-up .copyright {
  font-size: 14px;
  color: #dddddd !important;
}
footer .footer-inner .bottom-footer .copyright-up .back-to-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
footer .footer-inner .bottom-footer .copyright-up .back-to-top:hover {
  opacity: 0.8;
}
footer .footer-inner .bottom-footer .bottom-footer__text {
  margin: 0;
  text-align: center;
  font-size: 12px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .footer-inner .bottom-footer .bottom-footer__text a {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-decoration: none;
  color: #7e7e7e;
  font-size: 12px;
}

.gform_wrapper input[type=submit],
.gform_wrapper button[type=submit] {
  border-radius: 6px;
}

.footer-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.footer-form form .gform_body {
  width: 235px;
}
.footer-form form .top_label {
  margin-top: 0;
}
.footer-form input[type=submit] {
  background: -webkit-gradient(linear, left top, right top, from(#931f80), to(#dc5bc7)) !important;
  background: linear-gradient(to right, #931f80, #dc5bc7) !important;
}
.footer-form #gform_ajax_frame_1 {
  display: none;
}

.dark-form input:not([type=submit]) {
  background: #1e2939 !important;
  color: #bcbcc3 !important;
  border: none !important;
  outline: none !important;
}
.dark-form input:not([type=submit]):focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.dark-form input[type=submit],
.dark-form button[type=submit] {
  border: none !important;
  outline: none !important;
}
.dark-form input[type=submit]:focus,
.dark-form button[type=submit]:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

@-webkit-keyframes slideInFromTop {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInFromTop {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
header.main-header-desktop {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px) brightness(1.3) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) brightness(1.3) saturate(1.3);
  -webkit-box-shadow: 0 1px 3px rgba(14, 0, 63, 0.2) 0px 8px 40px;
          box-shadow: 0 1px 3px rgba(14, 0, 63, 0.2) 0px 8px 40px;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 992px) {
  header.main-header-desktop {
    display: none;
  }
}
header.main-header-desktop.is-scrolled {
  -webkit-box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
          box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
}
header.main-header-desktop .header-container .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
}
header.main-header-desktop .header-container .header-inner .header-left {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header.main-header-desktop .header-container .header-inner .header-left .nav-logo {
  padding: 16px 0;
}
header.main-header-desktop .header-container .header-inner .header-left .nav-logo__link {
  display: block;
}
header.main-header-desktop .header-container .header-inner .header-left .nav-logo__img {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 0;
}
header.main-header-desktop .header-container .header-inner .header-center {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
header.main-header-desktop .header-container .header-inner .header-center .main-nav > ul,
header.main-header-desktop .header-container .header-inner .header-center .main-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
header.main-header-desktop .header-container .header-inner .header-center .main-nav > ul > li,
header.main-header-desktop .header-container .header-inner .header-center .main-nav > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 0;
}
header.main-header-desktop .header-container .header-inner .header-center .main-nav > ul > li > a,
header.main-header-desktop .header-container .header-inner .header-center .main-nav > li > a {
  color: #3a3a40;
  text-decoration: none;
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 16px;
  font-weight: 400;
}
header.main-header-desktop .header-container .header-inner .header-center .main-nav > ul > li > a .chevron-icon,
header.main-header-desktop .header-container .header-inner .header-center .main-nav > li > a .chevron-icon {
  font-size: 0.75rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
header.main-header-desktop .header-container .header-inner .header-center .main-nav > ul > li > a:hover,
header.main-header-desktop .header-container .header-inner .header-center .main-nav > li > a:hover {
  color: #931f80;
}
header.main-header-desktop .header-container .header-inner .header-center .main-nav > ul > li.menu-item-has-children:hover > a .chevron-icon,
header.main-header-desktop .header-container .header-inner .header-center .main-nav > li.menu-item-has-children:hover > a .chevron-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
header.main-header-desktop .header-container .header-inner .header-center .main-nav > ul > li.menu-item-btn-purple > a,
header.main-header-desktop .header-container .header-inner .header-center .main-nav > li.menu-item-btn-purple > a {
  background: -webkit-gradient(linear, left top, right top, from(#931f80), to(#dc5bc7));
  background: linear-gradient(to right, #931f80, #dc5bc7);
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(147, 31, 128, 0.3);
          box-shadow: 0 4px 12px rgba(147, 31, 128, 0.3);
  -ms-flex-item-align: center;
      align-self: center;
}
header.main-header-desktop .header-container .header-inner .header-center .main-nav > ul > li.menu-item-btn-purple > a:hover,
header.main-header-desktop .header-container .header-inner .header-center .main-nav > li.menu-item-btn-purple > a:hover {
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 20px rgba(147, 31, 128, 0.4);
          box-shadow: 0 8px 20px rgba(147, 31, 128, 0.4);
}
header.main-header-desktop .header-container .header-inner .header-right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
header.main-header-desktop .header-container .header-inner .header-right .btn, header.main-header-desktop .header-container .header-inner .header-right .owl-nav .owl-prev, .owl-nav header.main-header-desktop .header-container .header-inner .header-right .owl-prev,
header.main-header-desktop .header-container .header-inner .header-right .owl-nav .owl-next,
.owl-nav header.main-header-desktop .header-container .header-inner .header-right .owl-next, header.main-header-desktop .header-container .header-inner .header-right .conversie_block .item .btn-conversie, .conversie_block .item header.main-header-desktop .header-container .header-inner .header-right .btn-conversie, header.main-header-desktop .header-container .header-inner .header-right .keuze_form_block .actions .btn-next, .keuze_form_block .actions header.main-header-desktop .header-container .header-inner .header-right .btn-next, header.main-header-desktop .header-container .header-inner .header-right .btn-1, header.main-header-desktop .header-container .header-inner .header-right .btn-2, header.main-header-desktop .header-container .header-inner .header-right .btn-3, header.main-header-desktop .header-container .header-inner .header-right .btn-ghost {
  white-space: nowrap;
  -ms-flex-item-align: center;
      align-self: center;
  padding: 16px;
}
header.main-header-desktop .header-container .header-inner .header-right .user-icon-link {
  color: #3a3a40;
  font-size: 1.25rem;
  -webkit-transition: color 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, transform 0.3s;
  transition: color 0.3s, transform 0.3s, -webkit-transform 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  -ms-flex-item-align: center;
      align-self: center;
}
header.main-header-desktop .header-container .header-inner .header-right .user-icon-link:hover {
  color: #931f80;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

header.main-header-mobile {
  display: none;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(14, 0, 63, 0.2) 0px 8px 40px;
          box-shadow: 0 1px 3px rgba(14, 0, 63, 0.2) 0px 8px 40px;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 992px) {
  header.main-header-mobile {
    display: block;
  }
}
header.main-header-mobile.is-scrolled {
  -webkit-box-shadow: 0 2px 8px rgba(14, 0, 63, 0.2) 0px 8px 40px;
          box-shadow: 0 2px 8px rgba(14, 0, 63, 0.2) 0px 8px 40px;
}
header.main-header-mobile .header-container .header-bar__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 24px;
  min-height: 64px;
}
header.main-header-mobile .header-container .header-bar__inner .nav-logo__link {
  display: block;
}
header.main-header-mobile .header-container .header-bar__inner .nav-logo__img {
  height: 44px;
  padding: 4px;
  width: auto;
  display: block;
  border-radius: 0;
}
header.main-header-mobile .header-container .header-bar__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
header.main-header-mobile .header-container .header-bar__actions .btn, header.main-header-mobile .header-container .header-bar__actions .owl-nav .owl-prev, .owl-nav header.main-header-mobile .header-container .header-bar__actions .owl-prev,
header.main-header-mobile .header-container .header-bar__actions .owl-nav .owl-next,
.owl-nav header.main-header-mobile .header-container .header-bar__actions .owl-next, header.main-header-mobile .header-container .header-bar__actions .conversie_block .item .btn-conversie, .conversie_block .item header.main-header-mobile .header-container .header-bar__actions .btn-conversie, header.main-header-mobile .header-container .header-bar__actions .keuze_form_block .actions .btn-next, .keuze_form_block .actions header.main-header-mobile .header-container .header-bar__actions .btn-next, header.main-header-mobile .header-container .header-bar__actions .btn-1, header.main-header-mobile .header-container .header-bar__actions .btn-2, header.main-header-mobile .header-container .header-bar__actions .btn-3, header.main-header-mobile .header-container .header-bar__actions .btn-ghost {
  font-size: 12px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header.main-header-mobile .header-container .header-bar__actions .user-icon-link {
  color: #3a3a40;
  font-size: 1.25rem;
  -webkit-transition: color 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, transform 0.3s;
  transition: color 0.3s, transform 0.3s, -webkit-transform 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  -ms-flex-item-align: center;
      align-self: center;
}
header.main-header-mobile .header-container .header-bar__actions .user-icon-link:hover {
  color: #931f80;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.hamburger-toggle {
  background: #fff;
  border: none;
  border-radius: 8px;
  -webkit-box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
          box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
  padding: 0;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  z-index: 1001;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.hamburger-toggle:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.hamburger-toggle__line {
  width: 12px;
  height: 2px;
  background-color: #3a3a40;
  border-radius: 2px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
.hamburger-toggle.is-active .hamburger-toggle__line:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(45deg);
          transform: translateY(6px) rotate(45deg);
}
.hamburger-toggle.is-active .hamburger-toggle__line:nth-child(2) {
  opacity: 0;
}
.hamburger-toggle.is-active .hamburger-toggle__line:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(-45deg);
          transform: translateY(-6px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f4e9f2;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px) translateZ(0);
  -webkit-transform: translateY(-16px) translateZ(0);
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, -webkit-transform 0.3s;
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-overlay img {
  border-radius: 2px;
}
.nav-overlay.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) translateZ(0);
  -webkit-transform: translateY(0) translateZ(0);
}
.nav-overlay__menu {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 48px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.nav-overlay__menu .nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.nav-overlay__menu .nav-menu > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav-overlay__menu .nav-menu > li > a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #3a3a40;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  display: block;
  padding: 16px 0;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.nav-overlay__menu .nav-menu > li > a:hover {
  color: #931f80;
}
.nav-overlay__menu .nav-menu > li.current-menu-item > a, .nav-overlay__menu .nav-menu > li.current_page_item > a {
  color: #931f80;
}
.nav-overlay__menu .nav-menu > li.menu-item-btn-purple > a {
  background: -webkit-gradient(linear, left top, right top, from(#931f80), to(#dc5bc7));
  background: linear-gradient(to right, #931f80, #dc5bc7);
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  margin: 8px 0;
  font-size: 1.25rem;
}
.nav-overlay__menu .nav-menu > li.menu-item-btn-purple > a:hover {
  color: #fff;
}
.nav-overlay__menu .nav-menu > li .submenu-toggle {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #fff;
  border: none;
  border-radius: 8px;
  -webkit-box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
          box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.nav-overlay__menu .nav-menu > li .submenu-toggle::before, .nav-overlay__menu .nav-menu > li .submenu-toggle::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: #3a3a40;
  border-radius: 2px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.nav-overlay__menu .nav-menu > li .submenu-toggle::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: background-color 0.3s, opacity 0.3s;
  transition: background-color 0.3s, opacity 0.3s;
}
.nav-overlay__menu .nav-menu > li .submenu-toggle:hover::before, .nav-overlay__menu .nav-menu > li .submenu-toggle:hover::after {
  background-color: #931f80;
}
.nav-overlay__menu .nav-menu > li .menu-text {
  font-weight: 600;
  font-size: 16px;
}
.nav-overlay__menu .nav-menu > li.menu-item-has-children > .sub-menu {
  list-style: none;
  width: 100%;
  padding: 0 16px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.35s ease;
  transition: max-height 0.35s ease;
  background-color: #fff;
  border-radius: 8px;
}
.nav-overlay__menu .nav-menu > li.menu-item-has-children > .sub-menu > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 8px 0;
}
.nav-overlay__menu .nav-menu > li.menu-item-has-children > .sub-menu > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #3a3a40;
  text-decoration: none;
  font-weight: 600;
  padding: 0;
  margin-bottom: 8px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.nav-overlay__menu .nav-menu > li.menu-item-has-children > .sub-menu > li > a:hover {
  color: #931f80;
}
.nav-overlay__menu .nav-menu > li.menu-item-has-children > .sub-menu > li > a .menu-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.nav-overlay__menu .nav-menu > li.menu-item-has-children > .sub-menu > li > a .menu-icon img {
  width: 38px;
  height: 38px;
}
.nav-overlay__menu .nav-menu > li.menu-item-has-children > .sub-menu > li > a .grouper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.nav-overlay__menu .nav-menu > li.menu-item-has-children > .sub-menu > li > a .menu-text {
  font-weight: 600;
  font-size: 12px;
}
.nav-overlay__menu .nav-menu > li.menu-item-has-children > .sub-menu > li > a .menu-description {
  color: #7e7e7e;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.4;
}
.nav-overlay__menu .nav-menu > li.menu-item-has-children > .sub-menu > li.current-menu-item > a, .nav-overlay__menu .nav-menu > li.menu-item-has-children > .sub-menu > li.current_page_item > a {
  color: #931f80;
}
.nav-overlay__menu .nav-menu > li.menu-item-has-children > .sub-menu > li > .sub-menu {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  padding: 0;
  margin: 0;
  background: transparent;
  padding-left: 54px;
}
.nav-overlay__menu .nav-menu > li.menu-item-has-children > .sub-menu > li > .sub-menu .menu-item .menu-title-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #7e7e7e;
  font-size: 0.9em;
  font-weight: normal;
  text-decoration: none;
  padding: 4px 0;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.nav-overlay__menu .nav-menu > li.menu-item-has-children > .sub-menu > li > .sub-menu .menu-item .menu-title-desc:hover {
  color: #931f80;
}
.nav-overlay__menu .nav-menu > li.menu-item-has-children > .sub-menu > li > .sub-menu .menu-item .menu-title-desc .menu-text {
  color: black;
  font-size: 12px;
}
.nav-overlay__menu .nav-menu > li.menu-item-has-children > .sub-menu > li > .sub-menu .menu-item .menu-title-desc .menu-text::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  background-image: url("../images/icons/right-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.nav-overlay__menu .nav-menu > li.menu-item-has-children > .sub-menu > li > .sub-menu .menu-item.current-menu-item .menu-title-desc, .nav-overlay__menu .nav-menu > li.menu-item-has-children > .sub-menu > li > .sub-menu .menu-item.current_page_item .menu-title-desc {
  color: #931f80;
}
.nav-overlay__menu .nav-menu > li.menu-item-has-children.is-open > .sub-menu {
  max-height: 2000px;
  padding: 16px 24px;
  margin: 8px 0 0 0;
}
.nav-overlay__menu .nav-menu > li.menu-item-has-children.is-open .submenu-toggle::after {
  opacity: 0;
}
.nav-overlay__footer {
  padding: 24px;
  border-top: 1px solid rgba(1, 1, 1, 0.628) 0px 8px 24px;
}
.nav-overlay__footer .btn, .nav-overlay__footer .owl-nav .owl-prev, .owl-nav .nav-overlay__footer .owl-prev,
.nav-overlay__footer .owl-nav .owl-next,
.owl-nav .nav-overlay__footer .owl-next, .nav-overlay__footer .conversie_block .item .btn-conversie, .conversie_block .item .nav-overlay__footer .btn-conversie, .nav-overlay__footer .keuze_form_block .actions .btn-next, .keuze_form_block .actions .nav-overlay__footer .btn-next, .nav-overlay__footer .btn-1, .nav-overlay__footer .btn-2, .nav-overlay__footer .btn-3, .nav-overlay__footer .btn-ghost {
  width: 100%;
  text-align: center;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
}

.menu-item-btn-purple > a,
.menu-item-btn-purple > .menu-title-desc {
  background: -webkit-gradient(linear, left top, right top, from(#931f80), to(#dc5bc7)) !important;
  background: linear-gradient(to right, #931f80, #dc5bc7) !important;
  color: #fff !important;
  padding: 16px 32px !important;
  border-radius: 8px !important;
  -webkit-box-shadow: 0 4px 12px rgba(147, 31, 128, 0.3) !important;
          box-shadow: 0 4px 12px rgba(147, 31, 128, 0.3) !important;
  text-decoration: none;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
}
.menu-item-btn-purple > a:hover,
.menu-item-btn-purple > .menu-title-desc:hover {
  color: #fff !important;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 20px rgba(147, 31, 128, 0.4) !important;
          box-shadow: 0 8px 20px rgba(147, 31, 128, 0.4) !important;
}

.menu-item-btn-white > a,
.menu-item-btn-white > .menu-title-desc {
  background: #fff !important;
  color: #3a3a40 !important;
  padding: 16px 32px !important;
  border-radius: 8px !important;
  -webkit-box-shadow: 0 4px 12px rgba(58, 58, 64, 0.1) !important;
          box-shadow: 0 4px 12px rgba(58, 58, 64, 0.1) !important;
  text-decoration: none;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
}
.menu-item-btn-white > a:hover,
.menu-item-btn-white > .menu-title-desc:hover {
  color: #3a3a40 !important;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 20px rgba(58, 58, 64, 0.15) !important;
          box-shadow: 0 8px 20px rgba(58, 58, 64, 0.15) !important;
}

.menu-item-btn-orange > a,
.menu-item-btn-orange > .menu-title-desc {
  background: -webkit-gradient(linear, left top, right top, from(#eb6600), to(#ffa35c)) !important;
  background: linear-gradient(90deg, #eb6600, #ffa35c) !important;
  color: #fff !important;
  padding: 16px 32px !important;
  border-radius: 8px !important;
  -webkit-box-shadow: 0 4px 12px rgba(235, 102, 0, 0.3) !important;
          box-shadow: 0 4px 12px rgba(235, 102, 0, 0.3) !important;
  text-decoration: none;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
}
.menu-item-btn-orange > a:hover,
.menu-item-btn-orange > .menu-title-desc:hover {
  color: #fff !important;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 20px rgba(235, 102, 0, 0.4) !important;
          box-shadow: 0 8px 20px rgba(235, 102, 0, 0.4) !important;
}

.main-header-desktop .main-nav > .menu-item > .sub-menu {
  position: absolute;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  top: 100%;
  left: 0;
  right: 0;
  width: calc(100% - 27px);
  max-width: 1227px;
  gap: 0 !important;
  background-color: #fff;
  -webkit-box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
          box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
  border-radius: 8px;
  padding: 48px 24px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
  -webkit-transition: opacity 0.4s ease-out, visibility 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, visibility 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, visibility 0.4s ease-out, transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, visibility 0.4s ease-out, transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
  z-index: 1000;
  overflow: hidden;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu.has-sidebar {
  grid-template-columns: repeat(3, 1fr) 25%;
  grid-template-rows: auto auto auto;
  grid-auto-rows: auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-auto-flow: dense;
  padding-right: 0;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu.has-sidebar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 100%;
  background-color: rgb(246, 246, 246);
  border-radius: 0 8px 8px 0;
  z-index: -1;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu.has-sidebar > .menu-item:nth-child(3n+2) {
  grid-column: 1;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu.has-sidebar > .menu-item:nth-child(3n) {
  grid-column: 2;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu.has-sidebar > .menu-item:nth-child(3n+1) {
  grid-column: 3;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu .menu-item-no-link > .menu-title-desc {
  pointer-events: none;
  cursor: default;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .submenu-title {
  grid-column: 1/-1;
  grid-row: 1;
  font-size: 20px;
  font-weight: 600;
  color: #3a3a40;
  padding: 0 16px 24px;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu.has-sidebar > .submenu-title {
  grid-column: 1/4;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu .menu-title-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px !important;
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
  padding: 0;
  color: #3a3a40;
  text-decoration: none;
  font-weight: 600;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu .menu-title-desc .menu-icon img {
  width: 38px;
  height: 38px;
  border-radius: 0;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu .menu-title-desc .grouper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu .menu-title-desc .menu-text {
  font-weight: 500;
  font-size: 14px;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu .menu-title-desc .menu-description {
  color: #7e7e7e;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.4;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu .menu-title-desc .chevron-icon {
  display: none;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .menu-item {
  grid-column: span 1;
  list-style: none;
  padding: 8px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .menu-item > .menu-title-desc {
  margin-bottom: 8px;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .menu-item.active > .menu-title-desc, .main-header-desktop .main-nav > .menu-item > .sub-menu > .menu-item.current-menu-item > .menu-title-desc, .main-header-desktop .main-nav > .menu-item > .sub-menu > .menu-item.current_page_item > .menu-title-desc {
  color: #931f80;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .menu-item > .sub-menu {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
          transform: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 8px 0 0 0;
  margin: 0;
  width: auto;
  background: transparent;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .menu-item > .sub-menu .menu-item {
  list-style: none;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .menu-item > .sub-menu .menu-item .menu-title-desc {
  color: #7e7e7e;
  font-size: 0.9em;
  font-weight: normal;
  padding: 4px 0;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .menu-item > .sub-menu .menu-item .menu-title-desc .menu-text::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  background-image: url("../images/icons/right-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group {
  grid-column: 4;
  grid-row: 3;
  padding: 8px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-title {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 24px;
  color: #3a3a40;
  text-transform: none;
  margin: 0 0 4px 0;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items > .sidebar {
  background-color: white;
  border-radius: 6px;
  padding: 12px !important;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items > .sidebar.menu-item-btn-purple, .main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items > .sidebar.menu-item-btn-white, .main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items > .sidebar.menu-item-btn-orange {
  padding: 0 !important;
  background-color: transparent;
  border-radius: 0;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item {
  padding: 8px 0;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-purple, .main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-white, .main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-orange {
  padding: 0;
  margin-top: 8px;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-purple > .menu-title-desc, .main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-white > .menu-title-desc, .main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-orange > .menu-title-desc {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  width: 100% !important;
  padding: 8px 24px !important;
  gap: 0 !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-purple > .menu-title-desc .menu-icon,
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-purple > .menu-title-desc .menu-description,
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-purple > .menu-title-desc .chevron-icon, .main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-white > .menu-title-desc .menu-icon,
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-white > .menu-title-desc .menu-description,
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-white > .menu-title-desc .chevron-icon, .main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-orange > .menu-title-desc .menu-icon,
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-orange > .menu-title-desc .menu-description,
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-orange > .menu-title-desc .chevron-icon {
  display: none !important;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-purple > .menu-title-desc .grouper, .main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-white > .menu-title-desc .grouper, .main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-orange > .menu-title-desc .grouper {
  display: contents !important;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-purple > .menu-title-desc .menu-text, .main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-white > .menu-title-desc .menu-text, .main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-orange > .menu-title-desc .menu-text {
  font-size: 14px !important;
  font-weight: 600 !important;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-purple > .menu-title-desc {
  background: -webkit-gradient(linear, left top, right top, from(#931f80), to(#dc5bc7)) !important;
  background: linear-gradient(to right, #931f80, #dc5bc7) !important;
  color: #fff !important;
  -webkit-box-shadow: 0 4px 12px rgba(147, 31, 128, 0.3) !important;
          box-shadow: 0 4px 12px rgba(147, 31, 128, 0.3) !important;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-purple > .menu-title-desc:hover {
  color: #fff !important;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 20px rgba(147, 31, 128, 0.4) !important;
          box-shadow: 0 8px 20px rgba(147, 31, 128, 0.4) !important;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-purple > .menu-title-desc .menu-text {
  color: #fff !important;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-white > .menu-title-desc {
  background: #fff !important;
  color: #3a3a40 !important;
  -webkit-box-shadow: 0 4px 12px rgba(58, 58, 64, 0.1) !important;
          box-shadow: 0 4px 12px rgba(58, 58, 64, 0.1) !important;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-white > .menu-title-desc:hover {
  color: #3a3a40 !important;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 20px rgba(58, 58, 64, 0.15) !important;
          box-shadow: 0 8px 20px rgba(58, 58, 64, 0.15) !important;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-white > .menu-title-desc .menu-text {
  color: #3a3a40 !important;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-orange > .menu-title-desc {
  background: -webkit-gradient(linear, left top, right top, from(#eb6600), to(#ffa35c)) !important;
  background: linear-gradient(90deg, #eb6600, #ffa35c) !important;
  color: #fff !important;
  -webkit-box-shadow: 0 4px 12px rgba(235, 102, 0, 0.3) !important;
          box-shadow: 0 4px 12px rgba(235, 102, 0, 0.3) !important;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-orange > .menu-title-desc:hover {
  color: #fff !important;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 20px rgba(235, 102, 0, 0.4) !important;
          box-shadow: 0 8px 20px rgba(235, 102, 0, 0.4) !important;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group .sidebar-group-items .menu-item.menu-item-btn-orange > .menu-title-desc .menu-text {
  color: #fff !important;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group.first-group {
  display: contents;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group.first-group .sidebar-group-title {
  grid-column: 4;
  grid-row: 1;
  padding: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 24px;
}
.main-header-desktop .main-nav > .menu-item > .sub-menu > .sidebar-group.first-group .sidebar-group-items {
  grid-column: 4;
  grid-row: 2/-1;
  padding: 0 24px;
  margin-bottom: 24px;
}
.main-header-desktop .main-nav > .menu-item:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.features .row {
  row-gap: 24px;
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  text-decoration: none;
  -webkit-box-shadow: rgba(31, 38, 135, 0.08) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.08) 0px 8px 32px;
  background-color: #fff;
  backdrop-filter: blur(20px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.card .img-container {
  width: 50%;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.card .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.card:hover {
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.card__image {
  width: 30%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__title {
  text-align: center;
  margin: 0;
  margin-top: 16px;
}
.card__button {
  display: block;
  margin-left: auto;
}

.review-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 32px;
  border-radius: 16px;
  background-color: #fff;
  -webkit-box-shadow: rgba(31, 38, 135, 0.08) 0px 8px 32px;
          box-shadow: rgba(31, 38, 135, 0.08) 0px 8px 32px;
}
.review-card .top-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.review-card .top-row .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.review-card .top-row .stars .star {
  width: 16px;
  height: 16px;
}
.review-card .top-row .stars .star.empty {
  opacity: 0.3;
}
.review-card .top-row .quote-icon {
  width: 32px;
  height: 32px;
  opacity: 20%;
}
.review-card .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 24px;
  color: #3a3a40;
}
.review-card .content p {
  margin-bottom: 8px;
}
.review-card .content p:last-child {
  margin-bottom: 0;
}
.review-card .reviewer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.review-card .reviewer .img-container {
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid white;
  -webkit-box-shadow: rgba(14, 0, 63, 0.03) 0px 25px 40px;
          box-shadow: rgba(14, 0, 63, 0.03) 0px 25px 40px;
}
.review-card .reviewer .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.review-card .reviewer .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.review-card .reviewer .info .name {
  color: #3a3a40;
  font-weight: 600;
}
.review-card .reviewer .info .role {
  color: #7e7e7e;
  font-size: 14px;
}
.review-card[data-style=minimaal] .reviewer .img-container {
  display: none;
}

.pill-green {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  background-color: #f0fdf4;
  color: #008236;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 32px;
  position: relative;
  padding-left: 24px;
}
.pill-green:before {
  content: "";
  background-color: #05df72;
  border-radius: 100%;
  height: 8px;
  width: 8px;
  position: absolute;
  left: 8px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.pill-green {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  background-color: #f0fdf4;
  color: #008236;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 32px;
  position: relative;
  padding-left: 24px;
}
.pill-green:before {
  content: "";
  background-color: #05df72;
  border-radius: 100%;
  height: 8px;
  width: 8px;
  position: absolute;
  left: 8px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

section.error-404 {
  padding: 5em 0;
}

.single .breadcrumbs {
  margin-top: 24px;
}
.single .breadcrumbs .breadcrumbs-item {
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.single .breadcrumbs .breadcrumbs-item:not(:first-child)::before {
  content: ">";
  display: inline-block;
  width: auto;
  height: auto;
  margin-right: 8px;
  background-image: none;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.post-title h1,
.post-title h2,
.post-title h3,
.post-title h4,
.post-title h5 {
  font-weight: 500;
  font-size: 36px;
}

.post-thumbnail .image-container img {
  width: 100%;
}

.post_content .text-container * {
  font-size: 22px;
}

.related_posts {
  padding: 96px 0;
}
.related_posts .section-title {
  margin-bottom: 48px;
  color: #3a3a40;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes scaleIn {
  from {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes zoomIn {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes imageSlideIn {
  from {
    opacity: 0;
    -webkit-transform: scale(1.05) translateX(30px);
            transform: scale(1.05) translateX(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) translateX(0);
            transform: scale(1) translateX(0);
  }
}
@keyframes imageSlideIn {
  from {
    opacity: 0;
    -webkit-transform: scale(1.05) translateX(30px);
            transform: scale(1.05) translateX(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) translateX(0);
            transform: scale(1) translateX(0);
  }
}
@-webkit-keyframes imageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes imageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate-fade-in {
  -webkit-animation: fadeIn 0.3s ease-in-out forwards;
          animation: fadeIn 0.3s ease-in-out forwards;
}

.animate-fade-out {
  -webkit-animation: fadeOut 0.3s ease-in-out forwards;
          animation: fadeOut 0.3s ease-in-out forwards;
}

.animate-fade-in-up {
  -webkit-animation: fadeInUp 0.5s ease-out forwards;
          animation: fadeInUp 0.5s ease-out forwards;
}

.animate-fade-in-down {
  -webkit-animation: fadeInDown 0.5s ease-out forwards;
          animation: fadeInDown 0.5s ease-out forwards;
}

.animate-slide-in-left {
  -webkit-animation: slideInLeft 0.4s ease-out forwards;
          animation: slideInLeft 0.4s ease-out forwards;
}

.animate-slide-in-right {
  -webkit-animation: slideInRight 0.4s ease-out forwards;
          animation: slideInRight 0.4s ease-out forwards;
}

.animate-scale-in {
  -webkit-animation: scaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
          animation: scaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animate-zoom-in {
  -webkit-animation: zoomIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
          animation: zoomIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.animate-image-slide {
  -webkit-animation: imageSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: imageSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-image-fade {
  -webkit-animation: imageFadeIn 0.4s ease-in-out forwards;
          animation: imageFadeIn 0.4s ease-in-out forwards;
}

.stagger-animation:nth-child(1) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}
.stagger-animation:nth-child(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.stagger-animation:nth-child(3) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.stagger-animation:nth-child(4) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.stagger-animation:nth-child(5) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.stagger-animation:nth-child(6) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.stagger-animation:nth-child(7) {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
.stagger-animation:nth-child(8) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.stagger-animation:nth-child(9) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.stagger-animation:nth-child(10) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.transition-fast {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.transition-normal {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.transition-slow {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.transition-opacity {
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.transition-transform {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.hover-lift {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.hover-lift:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.hover-scale {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.hover-scale:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.hover-glow {
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.hover-glow:hover {
  -webkit-box-shadow: 0 0 20px rgba(147, 31, 128, 0.3);
          box-shadow: 0 0 20px rgba(147, 31, 128, 0.3);
}

@-webkit-keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.animate-pulse {
  -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
          animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.animate-spin {
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

.flex, .flex-end, .flex-end-center, .flex-end-stretch, .flex-end-end, .flex-end-start, .flex-start, .flex-start-stretch, .flex-start-end, .flex-start-start, .flex-evenly, .flex-evenly-stretch, .flex-evenly-end, .flex-evenly-start, .flex-around, .flex-around-stretch, .flex-around-end, .flex-around-start, .flex-between, .flex-between-center, .flex-between-stretch, .flex-between-end, .flex-between-start, .flex-center, .flex-center-stretch, .flex-center-end, .flex-center-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex-col, .flex-col-end, .flex-col-start, .flex-col-start-center {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-col-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.justify-evenly {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.items-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.content-start {
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

.content-end {
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

.content-center {
  -ms-flex-line-pack: center;
      align-content: center;
}

.content-between {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

.content-around {
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

.content-evenly {
  -ms-flex-line-pack: space-evenly;
      align-content: space-evenly;
}

.self-auto {
  -ms-flex-item-align: auto;
      align-self: auto;
}

.self-start {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.self-end {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.self-center {
  -ms-flex-item-align: center;
      align-self: center;
}

.self-stretch {
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.self-baseline {
  -ms-flex-item-align: baseline;
      align-self: baseline;
}

.order-first {
  -webkit-box-ordinal-group: -9998;
      -ms-flex-order: -9999;
          order: -9999;
}

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.order-none {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
}

.flex-auto {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.flex-initial {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.flex-none {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.grow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.grow-0 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.shrink {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.shrink-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* Gap */
.gap-0 {
  gap: 0rem;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.gap-4 {
  gap: 4rem;
}

.gap-5 {
  gap: 5rem;
}

.gap-6 {
  gap: 6rem;
}

/* Column Gap */
.gap-x-0 {
  -webkit-column-gap: 0rem;
     -moz-column-gap: 0rem;
          column-gap: 0rem;
}

.gap-x-1 {
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}

.gap-x-2 {
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}

.gap-x-3 {
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
}

.gap-x-4 {
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}

.gap-x-5 {
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}

.gap-x-6 {
  -webkit-column-gap: 6rem;
     -moz-column-gap: 6rem;
          column-gap: 6rem;
}

/* Row Gap */
.gap-y-0 {
  row-gap: 0rem;
}

.gap-y-1 {
  row-gap: 1rem;
}

.gap-y-2 {
  row-gap: 2rem;
}

.gap-y-3 {
  row-gap: 3rem;
}

.gap-y-4 {
  row-gap: 4rem;
}

.gap-y-5 {
  row-gap: 5rem;
}

.gap-y-6 {
  row-gap: 6rem;
}

.flex, .flex-end, .flex-end-center, .flex-end-stretch, .flex-end-end, .flex-end-start, .flex-start, .flex-start-stretch, .flex-start-end, .flex-start-start, .flex-evenly, .flex-evenly-stretch, .flex-evenly-end, .flex-evenly-start, .flex-around, .flex-around-stretch, .flex-around-end, .flex-around-start, .flex-between, .flex-between-center, .flex-between-stretch, .flex-between-end, .flex-between-start, .flex-center, .flex-center-stretch, .flex-center-end, .flex-center-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex-center, .flex-center-stretch, .flex-center-end, .flex-center-start {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-center-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-center-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-center-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.flex-between, .flex-between-center, .flex-between-stretch, .flex-between-end, .flex-between-start {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-between-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-between-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-between-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.flex-between-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-around, .flex-around-stretch, .flex-around-end, .flex-around-start {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex-around-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-around-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-around-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.flex-evenly, .flex-evenly-stretch, .flex-evenly-end, .flex-evenly-start {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.flex-evenly-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-evenly-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-evenly-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.flex-start, .flex-start-stretch, .flex-start-end, .flex-start-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex-start-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-start-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-start-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.flex-end, .flex-end-center, .flex-end-stretch, .flex-end-end, .flex-end-start {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-end-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-end-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-end-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.flex-end-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-col, .flex-col-end, .flex-col-start, .flex-col-start-center,
.flex-col-center,
.flex-col-between-center,
.flex-col-end-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-col-start, .flex-col-start-center {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-col-start-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-col-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-col-end-center {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-col-between-center {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.gap-05 {
  gap: 0.5rem;
}

.gap-075 {
  gap: 0.75rem;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.gap-4 {
  gap: 4rem;
}

.gap-5 {
  gap: 5rem;
}

.gap-6 {
  gap: 6rem;
}

.row-gap-05 {
  row-gap: 0.5rem;
}

.row-gap-075 {
  row-gap: 0.75rem;
}

.row-gap-1 {
  row-gap: 1rem;
}

.row-gap-2 {
  row-gap: 2rem;
}

.row-gap-3 {
  row-gap: 3rem;
}

.row-gap-4 {
  row-gap: 4rem;
}

.row-gap-5 {
  row-gap: 5rem;
}

.row-gap-6 {
  row-gap: 6rem;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.fill {
  width: 100%;
  height: 100%;
}

.fill-width, .w-full {
  width: 100%;
}

.fill-height {
  height: 100%;
}

.fluid-height {
  max-width: 100%;
  height: auto;
}

.fluid-width {
  max-height: 100%;
  width: auto;
}

.relative {
  position: relative;
}

.hide {
  display: none;
}

.text-center {
  text-align: center;
}
.text-center * {
  text-align: center;
}

.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.half-page-left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
}
@media (max-width: 1199px) {
  .half-page-left {
    position: relative;
    width: 100%;
    height: 420px;
  }
}

.half-page-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
}
@media (max-width: 1199px) {
  .half-page-right {
    position: relative;
    width: 100%;
    height: 420px;
  }
}

.scroll-block {
  overflow: hidden;
  height: 100%;
  position: fixed;
  width: 100%;
}

/* Optional: Style for iOS devices to prevent elastic scrolling */
.scroll-block body {
  position: fixed;
  width: 100%;
}

picture > img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cover,
.cover-width,
.cover img,
.cover-width img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.cover-height,
.cover-height img {
  height: 100%;
  width: auto !important;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: auto;
  margin-right: auto;
}

.contain,
.contain-width,
.contain img,
.contain-width img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.contain-height .contain-height img {
  height: 100%;
  width: auto !important;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

.background,
.background-cover {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.background-contain {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.img-container {
  overflow: hidden;
  border-radius: 16px;
}

.p-xl {
  padding-top: 240px;
  padding-bottom: 240px;
}
@media (max-width: 576px) {
  .p-xl {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.p-b {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 576px) {
  .p-b {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.p-m {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media (max-width: 576px) {
  .p-m {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.p-s {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 576px) {
  .p-s {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.p-x {
  padding-top: 0px;
  padding-bottom: 0px;
}

.owl-stage-outer,
.owl-stage,
.owl-item {
  height: 100%;
  overflow: hidden;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
          box-shadow: rgba(14, 0, 63, 0.2) 0px 8px 40px;
}
.owl-nav .owl-prev span,
.owl-nav .owl-next span {
  font-size: 28px;
}
.owl-nav .owl-prev {
  left: 0%;
}
.owl-nav .owl-next {
  right: 0%;
}/*# sourceMappingURL=main.css.map */