.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-theme1 {
  margin-bottom: 30px;
}
.projects-current-theme1 .inner-block {
  background-color: #F1F8F2;
  border: 1px solid rgba(var(--theme-color-white-rgb), 0.1);
  border-radius: 14px;
  position: relative;
  z-index: 1;
  transition: all 300ms ease;
}
.projects-current-theme1 .inner-block:before {
  background-color: var(--theme-color3);
  border-radius: 14px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 50%;
  width: 100%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}
.projects-current-theme1 .inner-block:hover:before {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.projects-current-theme1 .inner-block:hover .image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}
.projects-current-theme1 .inner-block:hover .image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}
.projects-current-theme1 .inner-block:hover .content .categories-box .item {
  border-color: rgba(var(--theme-color1-rgb), 0.53);
  color: var(--theme-color2-text-color);
}
.projects-current-theme1 .inner-block:hover .content .title {
  color: var(--theme-color2-text-color);
}
.projects-current-theme1 .inner-block .image {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.projects-current-theme1 .inner-block .image img {
  border-radius: 10px;
  position: relative;
  width: 100%;
  display: block;
  transition: all 500ms ease;
}
.projects-current-theme1 .inner-block .image img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}
.projects-current-theme1 .inner-block .content {
  padding: 40px 37px 33px;
}
.projects-current-theme1 .inner-block .content .categories-box {
  display: flex;
  gap: 7px;
  margin-bottom: 7px;
}
@media (max-width: 575.98px) {
  .projects-current-theme1 .inner-block .content .categories-box {
    display: inline-block;
  }
}
.projects-current-theme1 .inner-block .content .categories-box .item {
  border: 1px solid rgba(var(--theme-color2-rgb), 0.1);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -2%;
  padding: 5px 15px;
  transition: all 300ms ease;
}
.projects-current-theme1 .inner-block .content .categories-box .item:hover {
  background-color: var(--theme-color1);
  color: var(--theme-color1-text-color);
}
@media (max-width: 575.98px) {
  .projects-current-theme1 .inner-block .content .categories-box .item {
    display: inline-block;
    margin-right: 7px;
    margin-bottom: 7px;
  }
}
@media (max-width: 575.98px) {
  .projects-current-theme1 .inner-block .content .categories-box .item:last-child {
    margin-right: 0px;
  }
}
.projects-current-theme1 .inner-block .content .categories-box span {
  display: none;
}
.projects-current-theme1 .inner-block .content .title {
  margin-bottom: 3px;
  margin-top: 0;
}
.projects-current-theme1 .inner-block .content .title:hover {
  color: var(--theme-color1);
}