.tm-sc-projects .cat-list {
  list-style: none;
  margin: 0;
}
.tm-sc-projects .cat-list li {
  display: inline;
  color: #aaa;
  margin-right: 7px;
  font-size: 13px;
}
.tm-sc-projects .cat-list li a {
  color: #aaa;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.tm-sc-projects .cat-list li:last-child span {
  display: none;
}

.projects-current-theme2 {
  position: relative;
  margin-bottom: 30px;
}
.projects-current-theme2 .inner {
  position: relative;
}
.projects-current-theme2 .inner .image {
  position: relative;
  overflow: hidden;
}
.projects-current-theme2 .inner .image img {
  position: relative;
  width: 100%;
  display: block;
  transition: all 500ms ease;
}
.projects-current-theme2 .inner:hover img {
  filter: grayscale(100%);
  transform: scale(1.04, 1.04) rotate(2deg);
}
.projects-current-theme2 .inner:hover .content {
  opacity: 1;
  transform: scale(1, 1);
}
.projects-current-theme2 .content {
  position: relative;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.projects-current-theme2 .content .title {
  position: relative;
}
.projects-current-theme2 .content .title a {
  position: relative;
  color: var(--theme-color-white);
}
.projects-current-theme2 .content .designation {
  position: relative;
  font-size: 16px;
  margin-top: 8px;
  color: var(--theme-color-white);
}
@media (max-width: 575.98px) {
  .projects-current-theme2 .content .designation {
    font-size: 14px;
  }
}
.projects-current-theme2 .content .arrow {
  width: 48px;
  height: 48px;
  font-size: 18px;
  line-height: 46px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  transform: rotate(-45deg);
  color: var(--theme-color-white);
  border: 1px solid var(--theme-color-white);
}
@media (max-width: 991.98px) {
  .projects-current-theme2 .content .arrow {
    position: relative;
    top: 0px;
    margin-top: 20px;
  }
}
.projects-current-theme2 .content .arrow:hover {
  color: var(--theme-color2-text-color);
  border-color: var(--theme-color2);
  background-color: var(--theme-color2);
}