.section_bonus {
  background: var(--bonus-bg);
  border-radius: 24px;
  position: relative;
  display: flex;
}

.boxInfo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 19px;
  padding: 24px;
  padding-left: 24px;
  width: 100%;
  background-image: url("../assets/bonus.webp");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: 85%;
}

.bonusTitle {
  font-weight: 600;
  font-size: 24px;
  line-height: 117%;
  letter-spacing: -0.02em;
  color: var(--bonus-title);
}

.bonusInfoContainer {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.bonusContainer {
  display: flex;
  align-items: center;
  gap: 19px;
  justify-content: space-between;
}

.bonusStage {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bonusValue {
  font-weight: 600;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: 0em;

  color: var(--bonus-value-text);
  background: var(--bonus-value-bg);

  padding: 4px 9px 3px 9px;
  border-radius: 100px;
}

.bonusText {
  font-weight: 600;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: 0em;

  background: var(--bonus-text-bg);
  color: var(--bonus-text-text);

  padding: 9px 15px;
  border-radius: 12px;
}

.svgBonus path {
  stroke: var(--bonus-svg);
}

.bonus_btn {
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  text-align: center;

  padding: 14px 24px;
  color: var(--bonus-btn-text);
  background: var(--bonus-btn-bg);
  border-radius: 12px;
}

.bonusImg {
  display: none;
}

@media (max-width: 1024px) {
  .section_bonus {
    justify-content: space-between;
  }
  .boxInfo {
    flex-direction: column;
    background-image: none;
    max-width: 573px;
  }

  .bonusContainer {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 19px;
    justify-content: space-between;
  }

  .bonusText {
    width: 100%;
  }

  .svgBonus {
    display: none;
  }

  .bonusStage {
    width: 100%;
  }

  .bonus_btn {
    width: 100%;
  }
  .bonusImg {
    display: block;
    margin: auto;
    max-width: 305;
    max-height: 193px;
  }
}

@media (max-width: 768px) {
  .bonusTitle {
    font-size: 22px;
    line-height: 127%;
  }

  .boxInfo {
    padding: 12px 0 12px 12px;
  }
}

@media (max-width: 560px) {
  .boxInfo {
    background-image: url("../assets/bonus.webp");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 160%;
    padding: 12px;
  }
  .bonusInfoContainer {
    gap: 12px;
  }
  .bonusContainer {
    gap: 12px;
  }
  .bonusText {
    max-width: 50%;
  }
  .bonusImg {
    display: none;
  }
}

@media (max-width: 420px) {
  .boxInfo {
    background-position: 250%;
  }
}
