.tm-sc-services {
  counter-reset: my-sec-counter;
}

.service-item-current-style4 {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}
.service-item-current-style4 .service-inner {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 45px 50px 45px;
  background-color: #ffffff;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
  transition: all 300ms linear;
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .service-item-current-style4 .service-inner {
    transition: none;
  }
}
.service-item-current-style4 .service-inner:after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--theme-color1);
  transform: scale(0);
  transform-origin: right top;
  border-radius: 0 0 0 500px;
  content: "";
  z-index: -1;
  transition: all 300ms linear;
}
@media (prefers-reduced-motion: reduce) {
  .service-item-current-style4 .service-inner:after {
    transition: none;
  }
}
.service-item-current-style4 .service-inner:hover:after {
  transform: scale(1.5);
  opacity: 1;
}
.service-item-current-style4 .service-inner:hover .service-title a,
.service-item-current-style4 .service-inner:hover .service-details,
.service-item-current-style4 .service-inner:hover .icon {
  color: #ffffff;
}
.service-item-current-style4 .service-inner:hover .count {
  background-color: rgba(255, 255, 255, 0.2);
}
.service-item-current-style4 .count {
  position: absolute;
  right: -40px;
  top: -70px;
  height: 170px;
  width: 170px;
  background-color: var(--theme-color1);
  color: #ffffff;
  border-radius: 50%;
  transition: all 300ms linear;
}
@media (prefers-reduced-motion: reduce) {
  .service-item-current-style4 .count {
    transition: none;
  }
}
.service-item-current-style4 .count:before {
  content: counter(my-sec-counter, decimal-leading-zero);
  counter-increment: my-sec-counter;
  left: 50%;
  top: 50%;
  transform: translate(-30px, 10px);
  position: absolute;
  color: #f6f2f0;
  font-size: 30px;
  line-height: 1;
  font-family: var(--font-current-theme1);
  font-weight: 600;
  font-style: normal;
}
.service-item-current-style4 .icon {
  position: relative;
  display: block;
  font-size: 62px;
  color: var(--theme-color1);
  font-weight: 400;
  line-height: 1em;
  transition: all 300ms linear;
  margin-bottom: 20px;
}
@media (prefers-reduced-motion: reduce) {
  .service-item-current-style4 .icon {
    transition: none;
  }
}
.service-item-current-style4 .service-title {
  margin-bottom: 20px;
}
.service-item-current-style4 .service-title a:hover {
  color: #fff;
}
.service-item-current-style4 .service-details {
  line-height: 30px;
  transition: all 300ms linear;
}
@media (prefers-reduced-motion: reduce) {
  .service-item-current-style4 .service-details {
    transition: none;
  }
}