#offer {
  margin-top: 16px;
  background-color: #f5f5f5;
  padding: 51px 0 49px 0;
}

#offer .title {
  font-size: 64px;
  line-height: 1.0625em;
  margin-bottom: 12px;
}

#offer .title span {
  font-size: 32.5px;
  line-height: 48px;
  width: fit-content;
  margin: 0 auto 10px auto;
  padding: 0 32px;
  font-weight: 400;
}

#offer .button {
  margin: 0 auto;
  background-color: #000;
  color: #fff;
  font-size: 17px;
  padding: 3px 24px 0;
  height: 52px;
  line-height: 52px;
}

.offer-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1150px;
  margin: 16px auto 23px auto;
  gap: 35px 0;
}

.offer {
  flex-direction: column;
}

.offer h5 {
  font-size: 20px;
  line-height: 27.5px;
  margin: 1px 0 0 0;
  padding: 0;
}

.offer img {
  min-height: 116px;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .offer-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 567px) {
  #offer {
    margin-top: 20px;
    padding-bottom: 50px;
  }

  #offer .title {
    font-size: 30px;
    line-height: 1;
    margin: 0;
  }

  #offer .title span {
    font-size: 22px;
    line-height: 37.5px;
    margin-bottom: 10px;
  }

  #offer .button {
    margin-top: 40px;
  }

  .offer-list {
    text-align: left;
    grid-template-columns: 1fr;
    gap: 25px 25px;
    margin: 40px 0 0 10px;
  }

  .offer br:not(.show-always) {
    display: none;
  }

  .offer {
    display: flex;
    flex-direction: row;
    align-items: center;
    /*justify-content: center;*/
  }

  .offer .image {
    flex-basis: 83px;
    flex-shrink: 0;
  }

  .offer img {
    min-height: unset;
    height: auto;
    max-width: 60px;
  }

  .d-1 img {
    /*max-width: 40px;*/
  }

  .d-2 img {
    /*max-width: 50px;*/
  }

  .d-3 img {
    /*max-width: 50px;*/
  }

  .d-4 img {
    /*max-width: 56px;*/
  }

  .d-5 img {
    /*max-width: 61px;*/
  }

  .d-6 img {
    /*max-width: 55px;*/
  }

  .offer img {
    margin: 0;
  }

  .offer h5 {
    font-size: 18px;
    margin: 0 0 -4px;
    padding: 0;
  }
}