.block-progress {
  margin-bottom: 60px;
}

.block-progress__row {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column-gap: 60px;
}

.block-progress__image {
  height: 100%;
  width: 100%;
  max-width: 650px;
}


.block-progress__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block-progress__image .progress-absolute {
  position: absolute;
  background-color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  width: 40px;
  height: 40px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  border-radius: 50%;
}

.block-progress__offer {
  max-width: 640px;
  width: 100%;
}

.block-progress__items {
  display: flex;
  flex-direction: column;
}

.block-progress__items .progress-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.block-progress__items .progress-item:last-child {
  margin-bottom: 0px;
}

.block-progress__items .progress-item__key {
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  width: 24px;
  height: 24px;
  color: var(--head);
  font-size: 14px;
  font-weight: 700;
  line-height: 130%;
  border-radius: 50%;
  margin-right: 15px;
}

.block-progress__items .progress-item__offer {
  display: flex;
  flex-direction: column;
}

.block-progress__items .progress-item__name {
  margin-bottom: 5px;
  color: var(--card);
}

.block-progress__items .progress-item__text {
  color: var(--card);
  font-size: 16px;
  line-height: 130%;
}

@media (max-width: 1200px) {
  .block-progress__row {
    grid-column-gap: 30px;
    margin-right: 15px;
  }
}

@media (max-width: 991px) {
  .block-progress {
    margin-bottom: 40px;
  }

  .block-progress__row {
    flex-direction: column-reverse;
    margin-left: 15px;
  }

  .block-progress__image {
    position: relative;
    top: 0px;
    margin-top: 30px;
    width: 100%;
    max-width: unset;
  }

  .block-progress__offer {
    width: 100%;
    max-width: unset;
  }
}

@media (max-width: 767px) {
  .block-progress__image .progress-absolute {
    min-width: 30px;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .block-progress__items .progress-item__key {
    min-width: 30px;
    width: 30px;
    height: 30px;
    font-size: 16px;
    margin-right: 10px;
  }
}