/* Left in for compability reasons */
/* Background transitions */
/* Bild Filter */
:root {
  --header-height: 112px;
  --header-padding-bottom: 16px;
  --sticky-top: calc(
    var(--header-height) + var(--sticky-promobar-height)
    );
  --container-padding: 16px;
  --sticky-promobar-height: 0.01px;
  --header-breakpoint: 1532px;
  --media-center-sidebar-width: 380px;
  --spacer-sx: 20px;
  --spacer-s: 30px;
  --spacer-m: 50px;
  --spacer-l: 75px;
}
:root:has(.sticky_promobar:not(.hide)) {
  --sticky-promobar-height: 48px;
}
@media (min-width: 768px) {
  :root {
    --container-padding: 32px;
  }
}
@media (min-width: 1200px) {
  :root {
    --container-padding: 32px;
  }
}
@media (min-width: 1532px) {
  :root {
    --header-padding-bottom: 32px;
    --header-height: 112px;
  }
}
@media (min-width: 1500px) {
  :root {
    --media-center-sidebar-width: 450px;
  }
}
@media (min-width: 768px) {
  :root {
    --spacer-sx: 32px;
    --spacer-s: 65px;
    --spacer-m: 80px;
    --spacer-l: 180px;
  }
}

/* MIXINS */
.process-boxes_container {
  display: flex;
}
.process-boxes_container .process-boxes_single {
  width: 20%;
  position: relative;
  border-left: 2px solid #15667B;
  border-top: 2px solid #15667B;
  border-bottom: 2px solid #15667B;
  background-color: #0C2F48;
  padding: 40px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-boxes_container .process-boxes_single:nth-last-child(5) {
  z-index: 5;
}
.process-boxes_container .process-boxes_single:nth-last-child(4) {
  z-index: 4;
}
.process-boxes_container .process-boxes_single:nth-last-child(3) {
  z-index: 3;
}
.process-boxes_container .process-boxes_single:nth-last-child(2) {
  z-index: 2;
}
.process-boxes_container .process-boxes_single:nth-last-child(1) {
  z-index: 1;
}
.process-boxes_container .process-boxes_single.goal {
  border-right: 2px solid #15667B;
  border-bottom: 2px solid #15667B;
  border-top: 2px solid #15667B;
  background-color: #DEDC00;
  display: flex;
  justify-content: center;
  align-items: center;
}
.process-boxes_container .process-boxes_single:not(:last-child):before {
  content: "";
  height: 40px;
  width: 40px;
  position: absolute;
  background-color: #0C2F48;
  right: 0;
  top: 50%;
  z-index: 1;
  transform: translatex(calc(50% + 1px)) translatey(-50%) rotate(45deg);
  border-top: 2px solid #15667B;
  border-right: 2px solid #15667B;
}
.process-boxes_container .process-boxes_single .process-box_counter {
  position: absolute;
  left: 0;
  top: 0;
  padding: 12px;
  background-color: #DEDC00;
}
.process-boxes_container .process-boxes_single .process-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-boxes_container .process-boxes_single .process-box .process-box_content {
  text-align: center;
}
.process-boxes_container .process-boxes_single .process-box_icon {
  height: 90px;
  width: 90px;
  border-radius: 50%;
  padding: 18px;
  background: linear-gradient(90deg, #DEDC00 0%, #FCFCA8 100%);
  margin-bottom: 28px;
}
.process-boxes_container .process-boxes_single .process-box_icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.process-boxes_container .process-boxes_single {
  display: flex;
  padding: 0;
}
.process-boxes_container .process-boxes_single .process-boxes_single-inner {
  display: flex;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.process-boxes_container .process-boxes_single .process-box_hover-content {
  position: absolute;
  padding: 50px 34px;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.process-boxes_container .process-boxes_single .process-box {
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  padding-top: 15%;
  transition: all 0.3s ease-in-out;
  justify-content: center;
  padding-top: unset;
}
.process-boxes_container .process-boxes_single .process-box.no-icon {
  justify-content: center;
  padding-bottom: 15%;
}
.process-boxes_container .process-boxes_single.has-content:hover .process-box {
  transform: translatey(-100%);
  opacity: 0;
}
.process-boxes_container .process-boxes_single.has-content:hover .process-box_hover-content {
  transform: translatey(-100%);
  opacity: 1;
}

@media (max-width: 1499px) {
  .process-boxes_container {
    flex-wrap: wrap;
  }
  .process-boxes_container .process-boxes_single {
    width: 33.3333%;
  }
  .process-boxes_container .process-boxes_single:nth-child(3) {
    border-right: 2px solid #15667B;
  }
  .process-boxes_container .process-boxes_single:nth-child(3):before {
    content: unset;
  }
  .process-boxes_container .process-boxes_single:nth-child(4), .process-boxes_container .process-boxes_single:nth-child(5) {
    border-top: unset;
  }
}
@media (max-width: 991px) {
  .process-boxes_container .process-boxes_single {
    width: 50%;
  }
  .process-boxes_container .process-boxes_single:nth-child(3):before {
    content: "";
    height: 40px;
    width: 40px;
    position: absolute;
    background-color: #0C2F48;
    right: 0;
    top: 50%;
    z-index: 1;
    transform: translatex(calc(50% + 1px)) translatey(-50%) rotate(45deg);
    border-top: 2px solid #15667B;
    border-right: 2px solid #15667B;
  }
  .process-boxes_container .process-boxes_single:nth-child(2):before, .process-boxes_container .process-boxes_single:nth-child(4):before {
    content: unset;
  }
}
@media (max-width: 767px) {
  .process-boxes_container {
    justify-content: center;
  }
  .process-boxes_container .process-boxes_single {
    width: 100%;
    max-width: 500px;
  }
  .process-boxes_container .process-boxes_single:not(.goal) {
    border-right: 2px solid #15667B;
    border-bottom: unset;
    border-top: 2px solid #15667B;
  }
  .process-boxes_container .process-boxes_single:not(.goal):not(:last-child):before {
    content: "";
    height: 40px;
    width: 40px;
    position: absolute;
    background-color: #0C2F48;
    left: 50%;
    bottom: 0;
    top: unset;
    right: unset;
    z-index: 1;
    transform: translatey(calc(50% + 1px)) translatex(-50%) rotate(45deg);
    border-top: unset;
    border-bottom: 2px solid #15667B;
    border-right: 2px solid #15667B;
  }
  .process-boxes_container .process-boxes_single .process-box_hover-content {
    position: absolute;
    padding: 50px 34px;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 100%;
    top: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  .process-boxes_container .process-boxes_single .process-box {
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: absolute;
    transition: all 0.3s ease-in-out;
  }
  .process-boxes_container .process-boxes_single:hover .process-box {
    transform: translatex(-100%);
    opacity: 0;
  }
  .process-boxes_container .process-boxes_single:hover .process-box_hover-content {
    transform: translatex(-100%) !important;
    opacity: 1;
  }
}
/*# sourceMappingURL=process-boxes.css.map */
