.loyalty-container {
  max-width: 1650px;
  margin: 50px auto 0;
  padding: 0;
}

.loyalty-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 0 auto 60px !important;
  padding: 0 !important;
}

.loyalty-card {
  display: flex;
  flex-direction: column;
  max-width: 380px;
}

.loyalty-card:not(:last-child) {
  margin-bottom: 30px;
}

.loyalty-card__img {
  width: 380px;
  height: 247px;
  background: #757272;
  border-radius: 20px;
}

.loyalty-card__text {
  margin: 0;
  padding: 15px 5px;
}

.loyalty-card__header {
  display: flex;
  gap: 5px;
  justify-content: space-between;
  margin-bottom: 21px;

  font-family: "Forum", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 21px;
  color: #454545;

  text-transform: uppercase;
}

.loyalty-card__header-sale {
  text-align: end;
}

.loyalty-card__header-sale span {
  color: #93580C;
}

.loyalty-card__advantages {
  list-style-type: disc;
  padding-left: 20px;
  margin-left: 0;
}

.card-advantages__item {
  margin-bottom: 10px;

  font-family: "Geologica",Arial,sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 21px;
  color: #454545;
}

.card-advantages__item b {
  font-weight: 700;
  white-space: nowrap;
}

.loyalty__title {
  font-family: "Geologica", Arial, sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;

  color: #454545;
  margin: 0 auto 10px;
}

.loyalty-footer {
  padding-bottom: 40px;
}

.loyalty-footer p {
  font-family: "Geologica",Arial,sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 32px;

  color: #454545;
  margin: 0 auto;

}

.loyalty-button {
  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 70px;
}

.loyalty-link {
  padding: 22px 45px;
  font-family: "Geologica",Arial,sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  background: #BE9E75;
  color: #FFFFFF !important;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 100px;
}

.loyalty-link:hover {
  background: #A67A43;
}

@media (max-width: 768px) {
  .loyalty-card {
    flex-direction: column;
  }
  .loyalty-card__img {
    margin: 0 auto;
    max-width: 380px;
    width: 100%;
    height: 100%;
  }
}