.elementor-1867 .elementor-element.elementor-element-e55a441{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:30px;--padding-bottom:30px;--padding-left:0px;--padding-right:0px;}.elementor-1867 .elementor-element.elementor-element-e55a441.e-con{--align-self:center;--flex-grow:0;--flex-shrink:0;}.elementor-1867 .elementor-element.elementor-element-56d8c0f{--display:flex;--min-height:600px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-1867 .elementor-element.elementor-element-4f94403{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:20px;--padding-bottom:0px;--padding-left:10px;--padding-right:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-1867 .elementor-element.elementor-element-ef45ce1{--display:flex;}.elementor-1867 .elementor-element.elementor-element-3d5300d{--display:flex;}.elementor-1867 .elementor-element.elementor-element-34dab43{--display:flex;}.elementor-1867 .elementor-element.elementor-element-4eb2406{--display:flex;}.elementor-1867 .elementor-element.elementor-element-0771c8a{--display:flex;}.elementor-1867 .elementor-element.elementor-element-6a00517{--n-accordion-title-font-size:1rem;--n-accordion-item-title-space-between:0px;--n-accordion-item-title-distance-from-content:0px;--n-accordion-icon-size:15px;}.elementor-1867 .elementor-element.elementor-element-fc0b0ea{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(min-width:768px){.elementor-1867 .elementor-element.elementor-element-e55a441{--width:100%;}.elementor-1867 .elementor-element.elementor-element-56d8c0f{--width:50%;}.elementor-1867 .elementor-element.elementor-element-4f94403{--width:50%;}}@media(max-width:1024px){.elementor-1867 .elementor-element.elementor-element-e55a441{--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-1867 .elementor-element.elementor-element-56d8c0f{--min-height:450px;}}@media(max-width:767px){.elementor-1867 .elementor-element.elementor-element-56d8c0f{--min-height:300px;}}/* Start custom CSS for container, class: .elementor-element-4f94403 */.circle-panel{
  max-width: 520px;
}/* End custom CSS */
/* Start custom CSS *//* =================================
   BASE LAYOUT
================================= */

.circle-map{
  position: relative;
  width: 500px;
  height: 500px;
  margin: 70px auto 0 auto;
  overflow: visible;
}


/* =================================
   GREEN MAIN CIRCLE
================================= */

.circle-map::before{
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: 50%;
  top: 240px;
  transform: translate(-50%, -50%);
  background: #73b874;
  border-radius: 50%;
  z-index: 0;
}


/* =================================
   CENTER WHITE CIRCLE
================================= */

.center-circle{
  position: absolute;
  left: 50%;
  top: 240px;
  width: 165px;
  height: 165px;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.center-circle__inner{
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.center-circle__inner p{
  margin: 0;
  font-size: 14px;
  line-height: 1.1;
  color: #111;
}

.center-circle__inner span{
  font-weight: 700;
}


/* =================================
   STEP CIRCLES
================================= */

.circle-item{
  position: absolute;
  z-index: 4;
  cursor: pointer;
  transition: transform .25s ease, filter .25s ease;
}

.circle-item img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}


/* =================================
   ACTIVE PINK RING
================================= */

.circle-item::after{
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  border: 5px solid #efc1cd;
  border-radius: 50%;
  opacity: 0;
  transform: scale(.96);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}

.circle-item.is-active::after{
  opacity: 1;
  transform: scale(1);
}


/* =================================
   HOVER + ACTIVE EFFECT
================================= */

.circle-item:hover{
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.14));
}

.circle-item.is-active{
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.16));
}


/* =================================
   DESKTOP POSITIONS
================================= */

.circle-1{
  top: 25px;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translateX(-50%);
}

.circle-2{
  top: 150px;
  left: calc(50% + 165px);
  width: 84px;
  height: 84px;
  transform: translateX(-50%);
}

.circle-5{
  top: 150px;
  left: calc(50% - 165px);
  width: 92px;
  height: 92px;
  transform: translateX(-50%);
}

.circle-3{
  top: 315px;
  left: calc(50% + 100px);
  width: 90px;
  height: 90px;
  transform: translateX(-50%);
}

.circle-4{
  top: 315px;
  left: calc(50% - 100px);
  width: 86px;
  height: 86px;
  transform: translateX(-50%);
}


/* =================================
   HOVER SCALE
================================= */

.circle-1:hover{ transform: translateX(-50%) scale(1.08); }
.circle-2:hover{ transform: translateX(-50%) scale(1.08); }
.circle-3:hover{ transform: translateX(-50%) scale(1.08); }
.circle-4:hover{ transform: translateX(-50%) scale(1.08); }
.circle-5:hover{ transform: translateX(-50%) scale(1.08); }

.circle-1.is-active{ transform: translateX(-50%) scale(1.12); }
.circle-2.is-active{ transform: translateX(-50%) scale(1.12); }
.circle-3.is-active{ transform: translateX(-50%) scale(1.12); }
.circle-4.is-active{ transform: translateX(-50%) scale(1.12); }
.circle-5.is-active{ transform: translateX(-50%) scale(1.12); }


/* =================================
   5D BADGE
================================= */

.five-d-badge{
  position: absolute;
  background: #f1c6d1;
  color: #111;
  border-radius: 999px;
  padding: 7px 13px 6px 13px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  z-index: 6;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, left .2s ease, top .2s ease;
  white-space: nowrap;
  transform: translate(-100%, -50%);
}

.five-d-badge span{
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
}

.five-d-badge.is-visible{
  opacity: 1;
}


/* =================================
   ROZE PIJL
================================= */

.circle-arrow{
  position: absolute;
  left: 50%;
  top: 240px;
  width: 560px;
  height: 560px;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.circle-arrow__inner{
  position: relative;
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  opacity: 0;
}

/* alles draait als 1 groep */
.circle-arrow.is-animating .circle-arrow__inner{
  animation: circleArrowSpinIn 1.35s cubic-bezier(.22,.8,.24,1) forwards;
}

@keyframes circleArrowSpinIn{
  from{
    transform: rotate(-220deg);
    opacity: 0;
  }
  to{
    transform: rotate(0deg);
    opacity: 1;
  }
}

/* BODY
   groter zoals eerst, maar horizontaal gespiegeld */
.circle-arrow__body{
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 26px solid #efc1cd;
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: scaleX(-1) rotate(-42deg);
}

/* PIJLPUNT LINKS */
.circle-arrow__head{
  position: absolute;
  left: -2px;
  top: 272px;
  width: 54px;
  height: 38px;
  background: #efc1cd;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

/* LABEL RECHTSBOVEN */
.circle-arrow__label{
  position: absolute;
  top: 4px;
  right: 8px;
  width: 186px;
  padding: 13px 18px;
  background: #efc1cd;
  border-radius: 0 999px 999px 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 46% 100%, 29% 62%, 0 28%);
}

.circle-arrow__label p{
  max-width: 84px;
  margin-left: auto;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}


/* =================================
   TABLET
================================= */

@media (max-width: 1024px){

  .circle-map{
    width: 380px;
    height: 390px;
    margin: 40px auto 0 auto;
  }

  .circle-map::before{
    width: 390px;
    height: 390px;
    top: 188px;
  }

  .center-circle{
    top: 188px;
    width: 128px;
    height: 128px;
  }

  .center-circle__inner{
    padding: 16px;
  }

  .center-circle__inner p{
    font-size: 11px;
    line-height: 1.08;
  }

  .circle-item::after{
    top: -6px;
    right: -6px;
    bottom: -6px;
    left: -6px;
    border-width: 4px;
  }

  .circle-1{
    width: 78px;
    height: 78px;
  }

  .circle-2{
    top: 130px;
    left: calc(50% + 150px);
    width: 68px;
    height: 68px;
  }

  .circle-5{
    top: 130px;
    left: calc(50% - 150px);
    width: 74px;
    height: 74px;
  }

  .circle-3{
    top: 270px;
    left: calc(50% + 86px);
    width: 72px;
    height: 72px;
  }

  .circle-4{
    top: 270px;
    left: calc(50% - 86px);
    width: 70px;
    height: 70px;
  }

  .five-d-badge{
    padding: 6px 11px 5px 11px;
    font-size: 10px;
  }

  .five-d-badge span{
    font-size: 14px;
  }

  .circle-arrow{
    top: 188px;
    width: 420px;
    height: 420px;
  }

  .circle-arrow__body{
    inset: -2px;
    border-width: 20px;
    transform: scaleX(-1) rotate(-42deg);
  }

  .circle-arrow__head{
    left: -2px;
    top: 204px;
    width: 42px;
    height: 30px;
  }

  .circle-arrow__label{
    top: 3px;
    right: 6px;
    width: 146px;
    padding: 10px 14px;
  }

  .circle-arrow__label p{
    max-width: 60px;
    font-size: 10px;
  }
}


/* =================================
   MOBILE
================================= */

@media (max-width: 767px){

  .circle-map{
    width: 280px;
    height: 300px;
    margin: 20px auto 12px auto;
  }

  .circle-map::before{
    width: 270px;
    height: 270px;
    top: 150px;
  }

  .center-circle{
    top: 150px;
    width: 110px;
    height: 110px;
  }

  .center-circle__inner{
    padding: 12px;
  }

  .center-circle__inner p{
    font-size: 10px;
    line-height: 1.15;
  }

  .circle-item::after{
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    border-width: 3px;
  }

  .circle-1{
    top: 10px;
    width: 58px;
    height: 58px;
  }

  .circle-2{
    top: 95px;
    left: calc(50% + 120px);
    width: 50px;
    height: 50px;
  }

  .circle-5{
    top: 95px;
    left: calc(50% - 120px);
    width: 56px;
    height: 56px;
  }

  .circle-3{
    top: 195px;
    left: calc(50% + 70px);
    width: 54px;
    height: 54px;
  }

  .circle-4{
    top: 195px;
    left: calc(50% - 70px);
    width: 52px;
    height: 52px;
  }

  .five-d-badge{
    padding: 5px 9px 4px 9px;
    font-size: 9px;
  }

  .five-d-badge span{
    font-size: 11px;
  }

  .circle-arrow{
    top: 150px;
    width: 300px;
    height: 300px;
  }

  .circle-arrow__body{
    inset: -1px;
    border-width: 16px;
    transform: scaleX(-1) rotate(-42deg);
  }

  .circle-arrow__head{
    left: -1px;
    top: 145px;
    width: 30px;
    height: 21px;
  }

  .circle-arrow__label{
    top: 2px;
    right: 4px;
    width: 104px;
    padding: 7px 9px;
  }

  .circle-arrow__label p{
    max-width: 40px;
    font-size: 7px;
  }
}/* End custom CSS */