.offer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 44px 16px;
  background-color: rgba(255, 255, 255, 1);

  @media (min-width: 768px) {
    padding: 96px 60px;
  }
}

.offer__title {
  font-size: 36px;
  line-height: 36px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  margin: 0 0 28px 0;

  width: 100%;
  text-align: center;

  @media (min-width: 768px) {
    font-size: 56px;
    line-height: 56px;
    margin: 0 0 40px 0;
  }
}

.offer__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
  padding: 0;
  margin: 0;

  @media (min-width: 768px) {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    column-gap: 24px;
  }

  @media (min-width: 1024px) {
    column-gap: 36px;
  }

  @media (min-width: 1324px) {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    column-gap: 66px;
  }
}

.offer__item {
  list-style: none;
  width: 165px;
}

.offer__icon-container {
  width: 100%;
  height: 180px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid rgba(30, 44, 48, 1);
}

.offer__icon {
  width: 141px;
  height: 124px;
  object-fit: cover;
}

.offer__paragraph {
  margin: 12px 0 0 0;
}
