.bonus {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;

  background: #ffffff;
  background: url("../assets/bonus.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.bonus__wrapper {
  display: flex;
  position: relative;
  flex-direction: column;
  height: fit-content;
  width: 100%;
  box-sizing: border-box;
  gap: 60px;
  margin: auto 0px;
  padding: 10% 5%;
}

.bonus__wrapper .bonus-particle {
  position: absolute;
  right: -1%;
  top: 0;
}

.bonus__title {
  color: #252a40;
  font-size: 3rem;

  font-family: "Proxima Nova", sans-serif !important;
  font-optical-sizing: auto !important;
  font-weight: 800 !important;
  font-style: normal !important;
}
.bonus__title span {
  color: #2b289c;
}

.bonus__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.bonus__row .bonus__row-item {
  width: 100%;
  max-width: 200px;
  height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 8px;
  opacity: 0;
}

.bonus__row .bonus__row-item:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 50px;
  border-radius: 50px;
  top: 45%;
  transform: translateX(9vw);
  height: 4px;
  background-color: #a1a1ff;
}

.bonus__row .bonus__row-item p {
  text-align: center;
  font-size: 1rem;

  font-family: "Montserrat", sans-serif !important;
  font-optical-sizing: auto !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

.bonus__row-item.animate {
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}

.bonus__row-item.animate.div1 {
  animation-delay: 0.8s;
}
.bonus__row-item.animate.div2 {
  animation-delay: 1.6s;
}
.bonus__row-item.animate.div3 {
  animation-delay: 2.4s;
}
.bonus__row-item.animate.div4 {
  animation-delay: 3.2s;
}
.bonus__row-item.animate.div5 {
  animation-delay: 4s;
}

@media (max-width: 1024px) {
  .bonus__row {
    flex-direction: column;
    gap: 10vh;
  }
  .bonus__row .bonus__row-item:not(:last-child)::after {
    bottom: 0;
    transform: translateY(15vh) rotate(90deg);
    background-color: #a1a1ff;
  }
  .bonus-particle {
    top: 40% !important;
  }

  .bonus__title {
    font-size: 2rem;
    text-align: center;
  }
  .bonus__title span {
    font-size: 2.5rem !important;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(10%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
