.heading-block {
  font-family: Montserrat, 'Open Sans', sans-serif;
  display: flex;
  gap: 20px;
  margin: 90px 0;
  align-items: center;
}
.heading-block h1,
.heading-block h1 {
  font-weight: 800;
  font-size: 50px;
  line-height: 110%;
  color: #010912;
  margin-bottom: 30px;
}
.heading-block img {
  margin-right: 80px;
}
.discount-list {
  font-family: Montserrat, 'Open Sans', sans-serif;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 70px;
  width: 100%;
}
.discount-list .discount-item {
  min-width: calc(50% - 8px);
  max-width: calc(50% - 8px);
  background: #01091208;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.discount-list .discount-item .text-wrap {
  min-height: 176px;
}
.discount-list .discount-item .discount-heading {
  font-weight: 700;
  font-size: 32px;
  line-height: 110%;
  color: #010912;
  margin-bottom: 16px;
}
.discount-list .discount-item .discount-description {
  line-height: 130%;
  color: #010912;
}
.discount-list .discount-item .discount-link {
  background: #01091212;
  padding: 16px 24px;
  text-align: center;
  color: #010912;
}
.discount-list .discount-item .discount-link:hover {
  background: #EDEEF0;
}
@media (max-width: 991px) {
  .heading-block h1,
  .heading-block .h1 {
    font-size: 32px;
  }
  .heading-block img {
    margin-right: 0;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .heading-block {
    padding: 0 1px;
    margin: 70px 0 50px;
    flex-direction: column-reverse;
    gap: 40px;
  }
  .heading-block h1,
  .heading-block .h1 {
    width: 100%;
  }
  .heading-block img {
    max-width: calc(100% - 22px);
  }
  .discount-list {
    padding: 0 1px;
  }
  .discount-list .discount-item .discount-heading {
    font-size: 24px;
    font-weight: 600;
  }
  .discount-list .discount-item .discount-description {
    font-size: 15px;
  }
}
@media (max-width: 600px) {
  .discount-list {
    flex-wrap: wrap;
  }
  .discount-list .discount-item {
    min-width: 100%;
    max-width: 100%;
  }
}
