.loyalty {
  max-width: 1420px;
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.loyalty .h2 {
  color: #333333;
}
.loyalty .h2 span {
  font-style: italic;
}

.loyalty-image {
  display: flex;
  aspect-ratio: 650/600;
  width: 100%;
  max-width: 650px;
  overflow: hidden;
  border-radius: 10px;
}
.loyalty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.loyalty-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 630px;
}
.loyalty-right .h2 {
  margin-bottom: 56px;
}
.loyalty-right .btn, .loyalty-right .btn-stroke {
  margin-top: 32px;
}

@media (max-width: 1484px) {
  .loyalty {
    padding: 100px 32px;
  }
  .loyalty-image {
    width: 100%;
  }
  .loyalty-right {
    width: 100%;
  }
  .loyalty-right .h2 {
    margin-bottom: 12px;
  }
  .loyalty-right .btn, .loyalty-right .btn-stroke {
    margin-top: 12px;
  }
}
@media (max-width: 1000px) {
  .loyalty {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .loyalty {
    padding: 48px 16px;
    gap: 48px;
  }
  .loyalty-image {
    aspect-ratio: 343/250;
    border-radius: 5px;
  }
  .loyalty-image img {
    object-position: center center;
  }
}