.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 .inner-box {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.projects-current-theme2 .inner-box::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  content: "";
  top: auto;
  background: linear-gradient(0deg, #000 -0.58%, rgba(0, 0, 0, 0) 85.5%);
  opacity: 0;
  height: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  border-radius: 40px;
}
.projects-current-theme2 .inner-box.active::after, .projects-current-theme2 .inner-box:hover::after {
  opacity: 1;
  height: 270px;
  visibility: visible;
}
.projects-current-theme2 .inner-box.active .arrow-icon, .projects-current-theme2 .inner-box:hover .arrow-icon {
  opacity: 1;
  visibility: visible;
}
.projects-current-theme2 .inner-box.active .content, .projects-current-theme2 .inner-box:hover .content {
  opacity: 1;
  bottom: 40px;
  visibility: visible;
}
.projects-current-theme2 .inner-box .image {
  width: 100%;
  height: 495px;
}
.projects-current-theme2 .inner-box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}
.projects-current-theme2 .inner-box .arrow-icon {
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: inherit;
  transition: all 0.4s ease-in-out;
  width: 100px;
  cursor: pointer !important;
  height: 100px;
  background-color: var(--theme-color1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  z-index: 1;
  color: var(--theme-color2);
}
.projects-current-theme2 .inner-box .arrow-icon i {
  font-size: 35px;
  rotate: -30deg;
  transition: all 0.2s ease-in-out;
}
.projects-current-theme2 .inner-box .arrow-icon:hover {
  background-color: var(--theme-color2);
  color: #fff;
}
.projects-current-theme2 .inner-box .arrow-icon:hover i {
  rotate: 0deg;
}
.projects-current-theme2 .inner-box .content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  z-index: 1;
}
.projects-current-theme2 .inner-box .content .cat-list li {
  color: #fff;
  font-size: 16px;
}
.projects-current-theme2 .inner-box .content .cat-list li i {
  color: var(--theme-color1);
  font-size: 6px;
  padding-right: 10px;
}
.projects-current-theme2 .inner-box .content .title {
  color: #fff;
}