.b-promo {
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.b-promo--empty {
  padding: 236px 0 221px;
}
.b-promo .promo__content {
  max-width: 605px;
  box-sizing: border-box;
  padding: 30px 55px;
  border-left: 6px solid #F68B23;
  background-color: #fff;
}

.b-promo .promo__title {
  color: #F68B23;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  margin-top: 0;
}

.b-promo--empty .promo__title {
  box-sizing: border-boxb;
  padding: 15px 35px;
  background: rgba(76, 88, 102, 0.6);
  color: #fff;
  color: #FFF;
  font-size: 70px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  width: fit-content;
}
.b-promo .promo__description {
  color: var(--color-grey);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 15px;
  max-width: 475px;
}

.b-promo .promo__bottom {
  display: flex;
  align-items: center;
}

.b-promo .promo__price {
  margin-right: 75px;
  color: var(--color-grey);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.b-promo .promo__price--big {
  font-size: 34px;
}

.b-promo .promo__btn {
  padding: 16px 25px;
}

@media (max-width: 767px) and (min-width: 320px) {

  /*--------------------------*/
  .b-promo {
    padding: 90px 0;
  }

  .b-promo .promo__content {
    padding: 15px 25px;
  }

  .b-promo .promo__title {
    font-size: 28px;
  }

  .b-promo .promo__bottom {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 15px;
  }

  .b-promo .promo__price {
    margin-right: 0;
  }
}