.common_title {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.common_title h2 {
  font-size: 32px;
  font-weight: 600;
  color: #ffc400;
  text-transform: capitalize;
  position: relative;
  width: fit-content;
  padding: 10px 0;
}

.common_title h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 230, 0, 0) 0%,
    #ffb26b 12%,
    #ffe600 75%,
    #ffb26b 90%,
    rgba(255, 230, 0, 0) 100%
  );
}

.common_title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 230, 0, 0) 0%,
    #ffb26b 12%,
    #ffe600 75%,
    #ffb26b 90%,
    rgba(255, 230, 0, 0) 100%
  );
}

.common_title p {
  font-size: 20px;
  color: #fff;
  text-transform: capitalize;
  width: fit-content;
}

/* ============== Media Queries =============== */

@media (min-width: 0px) and (max-width: 575px) {
  .common_title h2 {
    font-size: 22px;
  }

  .common_title p {
    font-size: 17px;
  }
}
