.title-13 {
  position: relative;
  padding: 10px 10px 10px 20px;
  background: #f6f6f6;
  display: flex;
  width: fit-content;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease-in-out;
  margin-bottom: 30px;
}
.title-13::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: var(--theme-color);
  transition: all 300ms ease-in-out;
}
.title-13:hover {
  padding-left: 25px;
}
.title-13:hover::before {
  width: 10px;
}
.title-13-head {
  display: flex;
  margin-bottom: 0 !important;
  font-size: 18px;
  font-weight: bold;
  color: black;
  transition: all 300ms ease-in-out;
}
.title-13-head:hover {
  color: var(--secondary-color);
}
.title-13-head a {
  color: inherit;
}
