.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: #000;
    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%, #1950c2 12%, #5429a1 75%, #1c54bb 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%, #1950c2 12%, #5429a1 75%, #1c54bb 90%, rgba(255, 230, 0, 0) 100%);
}

.common_title p {
    font-size: 20px;
    color: #000;
    text-transform: capitalize;
    width: fit-content;
}
@media (min-width: 0px) and (max-width: 575px) {
  .common_title h2 {
    font-size: 19px;
  }

  .common_title p {
    font-size: 14px;
}
}

@media(min-width:576px) and (max-width:991px){
  .common_title h2 {
    font-size: 25px;
    
}

}

@media(min-width:992px) and (max-width:1199px){
  .common_title h2 {
    font-size: 27px;
    
}
 .common_title p {
    font-size: 19px;
  }
}


