.stats-container {
  background: #29218b;
  color: #ffffff;
  padding: 60px 0;
}

.stats-content {
  width: 100%;
  max-width: 70%;
}

.stats-heading {
  font-weight: 700;
  font-size: 32px;
}

.stats-para {
  font-weight: 500;
  font-size: 18px;
}

.stats-img {
  height: 75px;
  width: 75px;
}

.stats-box {
  width: 100%;
  max-width: 285px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 400px;
  width: 600px;
}

@media(max-width: 767.98px) {
  .center {
    height: 250px;
    width: 100%;
  }
}

/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.services {
  position: relative;
  width: 100%;
}

.services .row {
  position: relative;
}

.services .row::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: calc(50% - .5px);
  background: #29218b;
}

.services #accordion-1 {
  padding-right: 15px;
}

.services #accordion-2 {
  padding-left: 15px;
}

@media(max-width: 767.98px) {
  .services .row::after {
    display: none;
  }

  .services #accordion-1,
  .services #accordion-2 {
    padding: 0;
  }

  .services #accordion-2 {
    padding-top: 15px;
  }
}

.services .card {
  margin-bottom: 15px;
  border: none;
  border-radius: 0;
}

.services .card:last-child {
  margin-bottom: 0;
}

.services .card-header {
  padding: 0;
  border: none;
  background: #ffffff;
  cursor: pointer;
}

.services .card-header a {
  display: block;
  padding: 10px 25px;
  width: 100%;
  color: #121518;
  font-size: 16px;
  line-height: 40px;
  border: 1px solid rgba(0, 0, 0, .1);
  transition: .5s;
}

.services .card-header [data-bs-toggle="collapse"][aria-expanded="true"] {
  background: #006bff;
  color: white;
}

.services .card-header [data-bs-toggle="collapse"]:after {
  font-family: 'font Awesome 5 Free';
  content: "\f067";
  float: right;
  color: #006bff;
  font-size: 12px;
  font-weight: 900;
  transition: .5s;
}

.services .card-header [data-bs-toggle="collapse"][aria-expanded="true"]:after {
  font-family: 'font Awesome 5 Free';
  content: "\f068";
  float: right;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  transition: .5s;
}

.services .card-body {
  padding: 20px 25px;
  font-size: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .1);
  border-top: none;
}