.pa-items {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .pa-items {
    display: block;
  }
}
.pa-items li {
  flex: 0 0 31%;
}
@media (max-width: 1280px) {
  .pa-items li {
    flex: 0 0 48%;
  }
}
.pa-items li a {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 30px;
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 28px;
  line-height: 1.75rem;
}
.pa-items li a svg,
.pa-items li a img {
  height: 70px;
  width: 70px;
  margin-right: 20px;
}

.cc-items ul {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .cc-items ul {
    display: block;
  }
}
.cc-items ul li {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 31%;
  margin-bottom: 30px;
  position: relative;
  padding-top: 20px;
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 28px;
  line-height: 1.75rem;
}
@media (max-width: 1280px) {
  .cc-items ul li {
    flex: 0 0 48%;
  }
}
@media (max-width: 768px) {
  .cc-items ul li {
    flex: unset;
  }
}
.cc-items ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 3px;
  background-color: var(--highlightColor);
}
.cc-items ul li svg {
  margin-right: 20px;
}
.cc-items ul li a {
  display: inline-block;
}
