.bonus-col {
  background: linear-gradient(to right, #E1F4FD, #D4EFFC);
  padding: 6px;
  border-radius: 22px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.bonus-container {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  background-color: #d7f0fc;
  background: linear-gradient(to right, rgba(224, 238, 212, 1) 15%, rgb(224, 238, 212, 0.05) 40%);
}

.bonus-image {
  position: relative;
}

.bonus-image img {
  height: 100%;
  max-height: 190px;
  position: relative;
  width: 100%;
  max-width: 120px;
  left: 10px;
  margin-right: 10px;
}

.bonus-content {
  flex: 1;
  text-align: left;
  padding: 1rem 0;
  padding-right: 1rem;
}

.bonus-content h5 {
  font-size: 1.35rem;
  color: #006F96;
  font-weight: 700;
}

.bonus-content p {
  line-height: 1.35;
  margin-bottom: 0;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .bonus-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(224, 238, 212, 1) 15%, rgb(224, 238, 212, 0.05) 40%);
  }
  .bonus-content{
    padding: 0 1rem 1rem;
    text-align: center;
  }
  .bonus-content h5 {
    text-align: center;
    justify-content: center;
  }
  .bonus-content h5 span{
    font-weight: 700;
  }
}