.service-item-current-style1 {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}
.service-item-current-style1 .inner-box {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 40px 60px 35px;
  background-color: #ffffff;
  border: 1px solid rgba(41, 41, 41, 0.6);
  transition: all 300ms ease;
  border-radius: 10px;
}
@media (prefers-reduced-motion: reduce) {
  .service-item-current-style1 .inner-box {
    transition: none;
  }
}
.service-item-current-style1 .inner-box:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  height: 0;
  background-color: #f4f5fa;
  content: "";
  transition: all 300ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .service-item-current-style1 .inner-box:before {
    transition: none;
  }
}
.service-item-current-style1 .inner-box:hover {
  transform: translateY(-10px);
}
.service-item-current-style1 .inner-box:hover:before {
  height: 100%;
}
.service-item-current-style1 .inner-box:hover .icon:after {
  transform: scale(1.1);
}
.service-item-current-style1 .icon {
  position: relative;
  display: inline-block;
  background: linear-gradient(to left, var(--theme-color3), var(--theme-color1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 84px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 35px;
}
.service-item-current-style1 .icon:after {
  content: "";
  position: absolute;
  height: 80px;
  width: 80px;
  left: 15px;
  top: 20px;
  background: linear-gradient(to left, var(--theme-color3), var(--theme-color1));
  opacity: 0.1;
  z-index: 0;
  border-radius: 50%;
  transition: all 300ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .service-item-current-style1 .icon:after {
    transition: none;
  }
}
.service-item-current-style1 .service-title {
  margin-bottom: 15px;
  margin-top: 0;
  z-index: 1;
  position: relative;
}
.service-item-current-style1 .service-title:hover {
  color: var(--theme-color1);
}
.service-item-current-style1 .service-details {
  position: relative;
  transition: all 300ms ease;
  margin-bottom: 10px;
}
@media (prefers-reduced-motion: reduce) {
  .service-item-current-style1 .service-details {
    transition: none;
  }
}
.service-item-current-style1 .read-more {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-decoration: underline;
  transition: all 300ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .service-item-current-style1 .read-more {
    transition: none;
  }
}
.service-item-current-style1 .read-more i {
  position: relative;
  font-size: 12px;
  top: 2px;
  margin-left: 2px;
}
.service-item-current-style1 .read-more:hover {
  color: var(--theme-color3);
}