.back-school-points-redemption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FBFDFF;
  max-width: 1600px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 30px 0 ;
  @media (max-width: 1600px) {
    max-width: 100%;
    margin: 0 48px;
  }

  @media (max-width: 750px) {
    max-width: 100%;
    margin: 0 20px;
    flex-direction: column-reverse;
  }
}

.back-school-points-redemption .content {
  width: 580px;
  padding-left: 80px;

  @media (max-width: 1068px) {
    padding-left: 30px;
  }
  @media (max-width: 750px) {
    padding-left: 0px;
    width: 100%;

  }
}

.back-school-points-redemption .title {
  font-size: 26px;
  font-weight: bold;

  @media (max-width: 750px) {
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
  }
}

.back-school-points-redemption .desc {
  margin-top: 20px;
  font-size: 16px;
  color: #000;

  @media (max-width: 750px) {
    text-align: center;
    font-size: 14px;

  }
}

.back-school-points-redemption .btn-box {
  margin-top: 20px;

  @media (max-width: 750px) {
    display: flex;
    justify-content: center;

  }
}

.back-school-points-redemption .btn-box .btn {
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;

}

.back-school-points-redemption .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  width: 50%;
}

.back-school-points-redemption .img-box img {
  width: 400px;

  @media (max-width: 750px) {
    width: 200px;
  }
}

.back-school-points-redemption .img-pc {
  width: 100%;
  cursor: pointer;
  @media (max-width: 750px) {
    display: none;
  }
}

.back-school-points-redemption .img-mob {
  display: none;
  width: 100%;
  cursor: pointer;
  @media (max-width: 750px) {
    display: block;
  }
}