:root {
  --service-current-style4-bg-background-hover-image: url("../../../images/current-theme/icon-lines-3.png");
}

.service-item-current-style4 {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}
.service-item-current-style4 .inner-box {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 35px 35px 30px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: var(--service-current-style4-bg-background-image);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: all 300ms linear;
}
.service-item-current-style4 .inner-box:after {
  counter-increment: my-sec-counter;
  content: counter(my-sec-counter, decimal-leading-zero) " ";
  position: absolute;
  line-height: 1;
  right: 20px;
  top: 50px;
  font-size: 48px;
  color: #f4f5f9;
  transition: all 500ms ease;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .service-item-current-style4 .inner-box:after {
    transition: none;
  }
}
.service-item-current-style4 .inner-box:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-image: var(--service-current-style4-bg-background-hover-image);
  background-color: #ffffff;
  content: "";
  transition: all 300ms linear;
}
.service-item-current-style4 .inner-box:hover {
  box-shadow: none;
}
.service-item-current-style4 .inner-box:hover:after {
  opacity: 0.08;
}
.service-item-current-style4 .inner-box:hover:before {
  height: 0;
}
.service-item-current-style4 .inner-box:hover .icon {
  color: var(--theme-color1);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.service-item-current-style4 .inner-box:hover .title,
.service-item-current-style4 .inner-box:hover .title a {
  color: #ffffff;
}
.service-item-current-style4 .icon-box {
  position: relative;
  margin-bottom: 25px;
}
.service-item-current-style4 .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  background-color: var(--theme-color1);
  color: var(--text-color-bg-theme-color1);
  transition: all 200ms linear;
}
.service-item-current-style4 .icon i {
  font-size: 58px;
  font-weight: 900;
}
.service-item-current-style4 .title {
  margin-bottom: 10px;
  position: relative;
}
.service-item-current-style4 .title:hover {
  color: var(--theme-color2);
}
.service-item-current-style4 .service-details {
  position: relative;
}