.header {
  font-size: 1.3em;
}

#offers-container {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
  overflow: hidden;
}

.toplist-card {
  display: flex;
  margin-top: 42px;
  border-radius: 10px;
  flex-direction: column;
  background-color: #ffffff;
  border-bottom: 2px solid #afafaf;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.toplist-card-head {
  display: flex;
  justify-content: center;
  padding: 20px;
  height: 89px;
}

.toplist-card-head img {
  width: 300px;
  height: auto;
}

.usp {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  border-bottom: 1px solid #ddd;
  color: #555;
  text-decoration: underline;
  gap: 10px;
}

.offer-container {
  display: flex;
  justify-content: space-around;
  padding: 20px;
}

.reg,
.review {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.reg a {
  border-radius: 10px;
}

.reg a,
.review a {
  border-radius: 10px;
}

.reg a.registration {
  display: block;
  width: 219px;
  margin-top: 28px;
  padding: 27px 12px;
  font-size: 1.5em;
  color: #fff;
  background: #d53c3c;
  background-position: 50%0;
  background-size: 200%;
  box-shadow: 0 5px 10px 0 rgba(6, 8, 15, 0.1), inset 0 0 3px 0#ffdd8f;
  transition: box-shadow 0.3s, text-shadow 0.3s;
}

.review a.registration {
  display: block;
  width: 219px;
  padding: 27px 12px;
  font-size: 1.5em;
  color: #fff;
  background: #181404;
  background-position: 50%0;
  background-size: 200%;
  box-shadow: 0 5px 10px 0 rgba(6, 8, 15, 0.1), inset 0 0 3px 0#ffdd8f;
  transition: box-shadow 0.3s, text-shadow 0.3s;
}

.reg a.registration:hover,
.review a:hover {
  background-position: 0 0;
  box-shadow: 0 2px 2px 1px rgba(6, 8, 15, 0.1),
    0 4px 4px 1px rgba(6, 8, 15, 0.1), 0 8px 8px 1px rgba(6, 8, 15, 0.1),
    0 16px 16px 1px rgba(6, 8, 15, 0.1), 0 32px 32px 1px rgba(6, 8, 15, 0.1),
    inset 0 0 3px 0#009640;
  text-shadow: 0 1px 3px #0b6c35;
  color: #ffffff;
}

.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

@media (max-width: 750px) {
  .offer-container {
    flex-direction: column;
  }
  .usp {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 13px;
  }
}

@media (min-width: 750px) {
  .reg a.registration {
    margin: 0 50px 0 0;
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .header {
    gap: 100px;
  }
}
