.original-price-table {
  margin-left: 10px;
  font-size: 29px;
  font-weight: 700;
}

.pricing-section {
  font-size: 24px;
}


.strikethrough {
  position: relative;
  display: inline-block;
}

.strikethrough::before {
  content: "";
  position: absolute;
  top: 64%;
  left: 0;
  width: 100%;
  height: 4.2px;
  background-color: #f5423d;
  transform-origin: 0 0;
  transform: rotate(-8deg);
}


/* phone screens */
@media screen and (max-width: 767px) {
  .original-price-table {
    font-size: 23px;
  }
.pricing-section {
    font-size: 20px;
  }
}


