.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;
}

/* Portfolio Style two */
.projects-current-theme2 {
  position: relative;
  overflow: hidden;
}
.projects-current-theme2 img {
  width: 100%;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition: all 300ms ease;
}
.projects-current-theme2 .overlay-box {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: flex-start;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  padding-bottom: 30px;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  transition: transform 300ms ease;
}
.projects-current-theme2:hover .overlay-box {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  background: rgba(0, 0, 0, 0.3);
}
.projects-current-theme2 .link {
  position: relative;
  height: 50px;
  width: 50px;
  top: -30px;
  text-align: center;
  background: #ffffff;
  border-radius: 50%;
  line-height: 50px;
  color: #4d6f63;
  margin-left: auto;
  margin-bottom: auto;
  opacity: 0;
  transition: all 300ms ease;
}
.projects-current-theme2:hover .link {
  opacity: 1;
  top: 0;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}
.projects-current-theme2 .cat-list {
  margin-bottom: -0.5px;
}
.projects-current-theme2 .cat-list li {
  position: relative;
  display: inline-block;
  top: 20px;
  font-size: 12px;
  color: #ffffff;
  line-height: 20px;
  padding: 5px 30px;
  background-color: var(--theme-color1);
  letter-spacing: 0.05em;
  opacity: 0;
  text-transform: uppercase;
  transition: all 300ms ease;
}
.projects-current-theme2 .cat-list li a {
  color: #fff;
}
.projects-current-theme2:hover .cat-list li {
  top: 0;
  opacity: 1;
  -webkit-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  transition-delay: 400ms;
}
.projects-current-theme2 .title {
  position: relative;
  top: 20px;
  color: var(--theme-color1);
  background-color: var(--theme-color-white);
  padding: 10px 30px;
  letter-spacing: 0.02em;
  opacity: 0;
  font-family: var(--body-font-family);
  transition: all 300ms ease;
  margin-top: 0;
}
body.tm-dark-layout .projects-current-theme2 .title a {
  color: #fff;
}
.projects-current-theme2:hover .title {
  top: 0;
  opacity: 1;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  transition-delay: 600ms;
}
.projects-current-theme2 .title a {
  color: var(--theme-color2);
  transition: all 300ms ease;
}
.projects-current-theme2:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}