:root {
  --white: #ffffff;
  --black: #000000;
  --dark-grey: #4A4A4A;
  --primary-color: #C0934C;
  --yellow-color: #D9A346;
  --light-yellow-color: #F4F0E7;
  --heading-yellow-color: #DCC5A2;
  --dark-yellow-color: #B9A082;

}

/*---------- Special Deals CSS start -----------*/

.special-deals2 {
  background: #F8F8F8;
}

.special-deals2 label {
  letter-spacing: 6px;
}

.special-deals2 label::after {
  position: absolute;
  right: -60px;
  width: 60px;
  height: 1px;
  top: 50%;
  content: "";
  background-color: var(--dark-grey);
  display: inline-block;
}

.special-deals2 label.left-line::after {
  position: absolute;
  left: -60px;
  width: 60px;
  height: 1px;
  top: 50%;
  content: "";
  background-color: var(--dark-grey);
  display: inline-block;
}

.special-deals2 b {
  color: var(--yellow-color);
}


.special-deals2 h4{
  font-size: 16px;
  font-family: "Inter";
  font-weight: 800;
}

.special-deals2 p{
  margin: 10px 0;
}

.special-deals2 ul {
    list-style-type: disc;
    padding-left: 20px;
}

/*---------- Media Css Start -----------*/
@media only screen and (max-width:1024px) {}

@media only screen and (max-width:992px) {}

@media only screen and (max-width:767px) {
  .special-deals2 label::after {
    left: -60px;
    right: auto;
  }

}