.bonuses {
  padding: 40px 0;
}

.bonuses__wrapper {
  display: flex;
  gap: 15px;
}

.bonuses__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bonuses-item-bg, var(--block-bg, #211442));
  padding: 0;
  border: 0;
  border-radius: 5px;
  color: var(--text-color, #fff);
  cursor: pointer;
}

.bonuses__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  padding: 10px 40px;
}

.bonuses__title {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.bonuses__text {
  line-height: 1.35;
  max-width: 540px;
  opacity: 0.9;
}
.bonuses__text p {
  font-size: 12px;
  margin: 0;
}

.bonuses__media {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 120px;
}

.bonuses__image {
  display: block;
  -o-object-fit: fill;
     object-fit: fill;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .bonuses {
    padding: 32px 0;
  }
  .bonuses__wrapper {
    flex-wrap: wrap;
    padding: 0 20px;
    gap: 20px;
  }
  .bonuses__item {
    width: 48%;
  }
}
@media (max-width: 560px) {
  .bonuses__item {
    width: 100%;
    max-width: 75%;
    margin: 0 auto;
  }
}/*# sourceMappingURL=bonuses.css.map */