.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;
}
.projects-current-theme2:hover .image-box img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.projects-current-theme2 .case__item {
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  background-color: #fff;
  margin-bottom: 80px;
  position: sticky;
  top: 130px;
}
body.tm-dark-layout .projects-current-theme2 .case__item {
  background: #16202b;
}
.projects-current-theme2 .case__item .image {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.projects-current-theme2 .case__item .image img {
  transition: 1s;
}
.projects-current-theme2 .case__item .image::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1019607843);
  transform: scaleY(0);
  transition: all 300ms ease;
  z-index: 0;
}
.projects-current-theme2 .case__item .image .arry-btn {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background-color: #fff;
  color: #121c27;
  position: absolute;
  z-index: 1;
  right: 50px;
  top: 50px;
  font-size: 28px;
  transform: rotate(-45deg);
  transition: all 300ms ease;
  opacity: 0;
  visibility: hidden;
  margin-right: -20px;
}
.projects-current-theme2 .case__item .image .arry-btn:hover {
  transform: rotate(0deg);
}
@media (max-width: 991.98px) {
  .projects-current-theme2 .case__item .image .arry-btn {
    right: 30px;
    top: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 18px;
  }
}
.projects-current-theme2 .case__item .content {
  padding: 50px;
  display: flex;
  justify-content: end;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 575.98px) {
  .projects-current-theme2 .case__item .content {
    padding: 30px;
  }
}
.projects-current-theme2 .case__item .content .title {
  margin-bottom: 5px;
}
.projects-current-theme2 .case__item .content .title a {
  position: relative;
  display: inline-block;
}
.projects-current-theme2 .case__item .content .title a::before {
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 0;
  height: 1px;
  content: "";
  background-color: #121c27;
  transition: all 300ms ease;
}
.projects-current-theme2 .case__item .content .title a:hover:before {
  right: unset;
  left: 0;
  width: 100%;
}
.projects-current-theme2 .case__item .content .sub-title {
  font-size: 18px;
  font-family: var(--heading-font-family);
}
.projects-current-theme2 .case__item:hover .image .arry-btn {
  opacity: 1;
  margin-right: 0px;
  visibility: visible;
}
.projects-current-theme2 .case__item:hover .image img {
  transform: scale(1.1);
}
.projects-current-theme2 .case__item:hover .image::after {
  transform: scale(1);
}