.block-bonuses {
  /*clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 calc(100% - 60px));*/
  /*padding: 100px 0 80px;*/
  background-color: #ACDEDF;
  /*background: linear-gradient(3deg, rgba(255,243,177,1) 0%, rgba(255,243,177,1) 6%, rgba(151,220,221,1) 13%, rgba(151,220,221,1) 87%, rgba(255,243,177,1) 94%, rgba(255,243,177,1) 100%)*/
  background-repeat: no-repeat;
  overflow: hidden;
}

.block-bonuses__inner {
  padding: 20px 0;
  position: relative;
}

.block-bonuses__baloons {
  position: absolute;
  top: calc(50% + 20px);
  z-index: -1;
  transform: translateY(-50%);
  max-height: 800px;
}

.block-bonuses__baloons.is-right {
  right: -12%;
}

.block-bonuses__baloons.is-left {
  left: -12%;
}

@media (min-width: 1700px) {
  .block-bonuses__baloons.is-right {
    right: -5%;
  }
  .block-bonuses__baloons.is-left {
    left: -5%;
  }
}
@media (min-width: 1800px) {
  .block-bonuses__baloons.is-right {
    right: -20px;
  }
  .block-bonuses__baloons.is-left {
    left: 0;
  }
}
.block-bonuses__headline {
  margin-bottom: 40px;
}

.block-bonuses__content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.block-bonuses__slider {
  width: 100%;
  overflow: hidden;
}
.block-bonuses__slider-navigator {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 0 12px;
}
.block-bonuses__slider-navigator span {
  position: relative;
  font-weight: 700;
  font-size: 18px;
  color: #3A8385;
  cursor: pointer;
}
.block-bonuses__slider-navigator span:after {
  content: "";
  height: 2px;
  margin-top: 2px;
  display: block;
  background: #3A8385;
}
.block-bonuses__slider-navigator span.is-active {
  color: #fff;
}
.block-bonuses__slider-navigator span.is-active:after {
  background: #fff;
}
.block-bonuses__slider-navigator span.is-active:before {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid white;
  transform: translateX(-50%);
}
@media (min-width: 1200px) {
  .block-bonuses__slider-navigator {
    display: none;
  }
  .block-bonuses__slider .swiper-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px 0;
  }
  .block-bonuses__slider .swiper-slide {
    width: 50%;
    height: initial;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.block-bonuses__item-text {
  text-align: center;
  line-height: var(--lh-text);
  font-size: var(--fz-text);
  font-weight: 400;
}
.block-bonuses__item-number {
  text-align: center;
  line-height: 1;
  font-size: 18px;
  color: white;
  z-index: 0;
}
.block-bonuses__item-number span {
  display: block;
  line-height: 1;
  font-family: Arial, serif;
  font-size: 80px;
  font-weight: 900;
  transform: translateY(5px);
}
.block-bonuses__item-title {
  line-height: var(--lh-text-h);
  font-size: var(--fz-text-h);
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  color: #53C2BB;
}
.block-bonuses__item-title span {
  color: #fff;
}
.block-bonuses__item-title-dark {
  color: #3A8385;
}
@media (min-width: 1200px) {
  .block-bonuses__item-text {
    text-align: left;
  }
}

.block-bonuses__item-top-content {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  position: relative;
}

@media (max-width: 1500px) {
  .block-bonuses__baloons {
    display: none;
  }
}
@media (max-width: 1199px) {
  .block-bonuses__baloons {
    display: none;
  }
  .block-bonuses__item-top-content {
    gap: 0 15px;
    justify-content: center;
  }
  .block-bonuses__item-title {
    width: auto;
    max-width: 230px;
    font-size: 20px;
    line-height: 30px;
  }
  .block-bonuses__item-number span {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .block-bonuses__headline {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
