.accordion-expand .card-header {
  margin-bottom: 8px;
}
.accordion-expand .accordion-title {
  position: relative;
  display: block;
  padding: 8px 0 8px 50px;
  background: #ff0519;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  text-align: left;
  transition: all 0.4s ease-in-out;
}
.accordion-expand .accordion-title span {
  position: absolute;
  width: 1px;
  height: 16px;
  left: 24px;
  top: 12px;
  transform: rotate(90deg);
  background: #fff;
}
.accordion-expand .accordion-title.collapsed span::before {
content: "";
position: absolute;
width: 1px;
height: 16px;
left: 0;
top: 0;
transform: rotate(90deg);
background: #fff;

}
.accordion-expand .accordion-title:hover {
  padding-left: 60px;
  background: #ff0519;
  color: #fff;
}

.accordion-expand .accordion-title:focus {
  box-shadow: none;
}
.accordion-expand .accordion-body {
  padding: 15px 25px;
}
.accordion-expand .accordion-body ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.accordion-expand .accordion-body li {
  padding-left: 1.2rem;
  text-indent: -1.2rem;
}
.accordion-expand .accordion-body li:before {
  content: "\f10a";
  padding-right: 5px;
  font-family: "Flaticon";
  font-size: 16px;
  font-style: normal;
  color: #213744;
}
.card-body.accordion-body a {
  color: red !important;
}