#offer .title {
  font-size: 46px;
}

#offer p {
  font-size: 19px;
  line-height: 1.175;
}

.offer-list {
  gap: 40px 0px;
}

.offer {
  flex-direction: column;
  width: 25%;
}

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

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

@media screen and (max-width: 768px ) {
  .offer {
    width: 50%; 
  }
}
@media screen and (max-width: 567px ) {
  #offer {
    margin-top: 36px;
  }
  #offer .title {
    font-size: 40px;
    line-height: 54px;
    margin: 0;
  }
  #offer h2 span {
    font-size: 38px;
  }
  #offer p {
    font-size: 16px;
  }
  #offer .button-round {
    margin-top: 19px;
  }
  .offer-list {
    text-align: left;
    gap: 15px;
    margin-top: 18px;
  }
  .offer {
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: row;
  }
  .offer .image {
    flex-basis: 83px;
    flex-shrink: 0;
  }
  .offer img {
    height: 60px;
    width: 60px;
    min-height: unset;
  }
  .offer h5 {
    font-size: 18px;
    margin: 0 0 -4px;
    padding: 0;
  }
}