.title-6 {
  display: flex;
  justify-content: start;
  margin-bottom: 30px;
}
.title-6 h4 a {
  font-size: 20px;
  font-weight: 700;
  color: var(--theme-color);
  position: relative;
  padding-bottom: 6px;
  margin-bottom: 0;
  font-family: inherit;
}
@media (max-width: 575px) {
  .title-6 h4 a {
    font-size: 18px;
  }
}
.title-6 h4 a::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background: var(--secondary-color);
  bottom: 0px;
  left: 0;
}
.title-6 .view__more a {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
  color: var(--light-grey-color);
  font-size: 16px;
  font-weight: 600;
  transition: all 300ms ease-in-out;
}
.title-6 .view__more a:hover {
  color: var(--secondary-color);
}
.title-6 .view__more a svg {
  display: flex;
  font-size: 14px;
  position: relative;
  top: -1px;
}

@media (max-width: 575px) {
  .title-6 {
    margin-bottom: 10px;
  }
}
