.faq {
  font-family: Helvetica;
  width: 100%;
  margin: 0 0 0 0%;
}

.faq-q {
  border-top: 2px dashed;
  border-color: #dc3545, #842029, #842029, #dc3545 !important;
  margin:0; padding: 30px;
  counter-increment: section;
  position: relative;
}

.faq-q span{
  font-size: 22px;
    background: linear-gradient(to right, #dc3545, #842029, #842029, #dc3545);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-q:nth-child(even):before {
  content: counter(section);
    right: 100%;
    margin-right: -10px;
    position: absolute;
    border-radius: 50%;
    padding: 0px;
    height: 20px;
    width: 20px;
    background: linear-gradient(to left, #dc3545, #842029, #842029, #dc3545) !important;
    text-align: center;
    color: #fff;
    font-size: 85%;
}

.faq-q:nth-child(odd):before {
  content: counter(section);
    left: 100%;
    margin-left: -10px;
    position: absolute;
    border-radius: 50%;
    padding: 0px;
    height: 20px;
    width: 20px;
    background: linear-gradient(to right, #dc3545, #842029, #842029, #dc3545) !important;
    text-align: center;
    color: #fff;
    font-size: 85%;
}



.faq-q:nth-child(even) {
  border-left: 2px dashed;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  margin-right: 30px; 
  padding-right: 0;
}

.faq-q:nth-child(odd) {
  border-right: 2px dashed;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  margin-left: 30px; 
  padding-left: 0;
}
.faq-q:first-child {
  border-top: 0;
  border-top-right-radius:0;
  border-top-left-radius:0;
}

.faq-q:last-child {
  border-bottom-right-radius:0;
  border-bottom-left-radius:0;
}