.header {
  font-size: 1.3em;
}

#jeetbuzz-offers {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
  overflow: hidden;
}

.jeetbuzz-card {
  display: flex;
  margin-top: 42px;
  border-radius: 10px;
  flex-direction: column;
  background-color: #f8f8f8;
  border-bottom: 2px solid #b2b2b2;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}

.jeetbuzz-card-head {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  height: 89px;
}

.jeetbuzz-card-head img {
  max-width: 100%;
  max-height: 89px;
  height: auto;
  display: block;
}

.usp {
  display: flex;
  justify-content: space-around;
  padding: 12px;
  border-bottom: 1px solid #e2e2e2;
  color: #545454;
  text-decoration: underline;
  gap: 9px;
  margin-bottom: 12px;
}

.offer-container {
  display: flex;
  justify-content: space-around;
  padding: 24px;
}

.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: 4px;
}

.reg a.registration {
  display: block;
  width: 100%;
  min-width: 220px;
  margin: 33px 0px;
  padding: 27px 14px;
  font-size: 1.5em;
  color: #fff;
  background: #d73c3c;
  background-position: 50%0;
  background-size: 200%;
  box-shadow: 0 4px 4px 0 rgba(4, 4, random_1_9_6, 0.1), inset 0 0 4px 0#096417;
  transition: box-shadow 0.3s, text-shadow 0.3s;
}

.reg a.registration:hover {
  background-position: 0 0;
  box-shadow: 0 3px 3px 3px rgba(5, 5, 17, 0.1),
    0 4px 4px 3px rgba(5, 7, 17, 0.1), 0 7px 7px 3px rgba(5, 7, 17, 0.1),
    0 17px 17px 3px rgba(5, 7, 17, 0.1), 0 32px 32px 3px rgba(5, 7, 17, 0.1),
    inset 0 0 3px 0#009941;
  text-shadow: 0 1px 3px #025d40;
  color: #ffffff;
}

.promo-code-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  border-radius: 27px;
  max-width: 196px;
  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: ##f8f8f8;
  text-align: center;
}

.promo-code {
  background: #fff;
  border-radius: 9px;
  font-size: 1em;
  color: #3d3d3d;
  font-weight: 600;
  text-align: center;
  margin-top: 4px;
}

.copy-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4px 0 4px 4px;
  border-radius: 50%;
  margin-left: 16px;
}

@media (max-width: 750px) {
  .offer-container {
    flex-direction: column;
  }
  .usp {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 16px;
  }
}

@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;
  }
}
