.header {
  font-size: 1.3em;
}

#baji-offers {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
  overflow: hidden;
}

.baji-card {
  display: flex;
  margin-top: 42px;
  border-radius: 10px;
  flex-direction: column;
  background-color: #ffffff;
  border-bottom: 2px solid #ababab;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.baji-card-head {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  height: 89px;
}

.baji-card-head img {
  max-width: 100%;
  max-height: 89px;
  height: auto;
  display: block;
}

.usp {
  display: flex;
  justify-content: space-around;
  padding: 15px;
  border-bottom: 1px solid #dedede;
  color: #565656;
  text-decoration: underline;
  gap: 8px;
  margin-bottom: 15px;
}

.offer-container {
  display: flex;
  justify-content: space-around;
  padding: 22px;
}

.offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.reg a {
  border-radius: 3px;
}

.reg a.registration {
  display: block;
  width: 100%;
  min-width: 217px;
  margin: 43px 0px;
  padding: 34px 13px;
  font-size: 1.8em;
  color: #fff;
  background: #d13b3b;
  background-position: 50%0;
  background-size: 200%;
  box-shadow: 0 3px 3px 0 rgba(3, 3, random_1_9_6, 0.1), inset 0 0 1px 0#096417;
  transition: box-shadow 0.3s, text-shadow 0.3s;
}

.reg a.registration:hover {
  background-position: 0 0;
  box-shadow: 0 2px 2px 2px rgba(8, 8, 16, 0.1),
    0 3px 3px 2px rgba(8, 7, 16, 0.1), 0 7px 7px 2px rgba(8, 7, 16, 0.1),
    0 16px 16px 2px rgba(8, 7, 16, 0.1), 0 30px 30px 2px rgba(8, 7, 16, 0.1),
    inset 0 0 2px 0#009841;
  text-shadow: 0 1px 2px #015b3e;
  color: #ffffff;
}

.promo-code-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: 13px;
  max-width: 182px;
  cursor: pointer;
  animation: promo 3s ease-in-out infinite;
  transition: background-color 0.4s;
}

.promo-code-display {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-label {
  font-size: 0.6em;
  color: ##f3f3f3;
  text-align: center;
}

.promo-code {
  background: #fff;
  border-radius: 11px;
  font-size: 1em;
  color: #3d3d3d;
  font-weight: 600;
  text-align: center;
  margin-top: 5px;
}

.copy-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px 0 5px 5px;
  border-radius: 50%;
  margin-left: 20px;
}

@media (max-width: 750px) {
  .offer-container {
    flex-direction: column;
  }
  .usp {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }
}

@media (min-width: 750px) {
  .reg a.registration {
    margin: 0 50px 0 0;
  }
}

@media (min-width: 850px) {
  .promo-code-container {
    margin-top: 0;
  }
  .header #logo img {
    margin-bottom: 0;
  }
}
