/*title with line*/
.line-right-heading,
.line-bothside-heading {
  font-family: "Times New Roman", Times, serif;
  font-size: 48px;
  color: #cf564b;
  display: flex;
  align-items: center;
  text-align: center;
  font-weight: bold;
}

.line-right-heading::after {
  content: "";
  width: 40px; /* Set line width */
  height: 4px;
  background: #cf564b;
  margin: 0 10px;
  border-radius: 5px;
}

.line-bothside-heading::after,
.line-bothside-heading::before {
  content: "";
  width: 40px; /* Set line width */
  height: 4px;
  background: #cf564b;
  margin: 0 10px;
  border-radius: 5px;
}

/*title white*/

.line-right-white-heading,
.line-bothside-white-heading {
  font-family: "Times New Roman", Times, serif;
  font-size: 48px;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
  font-weight: bold;
}

.line-right-white-heading::after {
  content: "";
  width: 40px; /* Set line width */
  height: 4px;
  background: #fff;
  margin: 0 10px;
  border-radius: 5px;
}

.line-bothside-white-heading::after,
.line-bothside-white-heading::before {
  content: "";
  width: 40px; /* Set line width */
  height: 4px;
  background: #fff;
  margin: 0 10px;
  border-radius: 5px;
}
