.feature-current-item-style1 {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}
.feature-current-item-style1 .inner-box {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 40px 30px 35px;
  background-color: #171717;
  z-index: 2;
  padding-right: 110px;
  transition: all 300ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .feature-current-item-style1 .inner-box {
    transition: none;
  }
}
.feature-current-item-style1 .inner-box:hover:after {
  height: 24px;
}
.feature-current-item-style1 .inner-box:before {
  position: absolute;
  left: 30px;
  top: 0;
  width: 2px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.1);
  content: "";
  transition: all 300ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .feature-current-item-style1 .inner-box:before {
    transition: none;
  }
}
.feature-current-item-style1 .inner-box:after {
  position: absolute;
  left: 30px;
  top: 0;
  width: 2px;
  height: 0;
  background-color: var(--theme-color1);
  content: "";
  transition: all 300ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .feature-current-item-style1 .inner-box:after {
    transition: none;
  }
}
.feature-current-item-style1 .icon {
  position: absolute;
  right: 30px;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 62px;
  color: var(--theme-color1);
  font-weight: 400;
  line-height: 1em;
}
.feature-current-item-style1 .feature-title {
  position: relative;
  display: block;
  margin-bottom: 0px;
  color: #ffffff;
  text-transform: uppercase;
}
.feature-current-item-style1 .feature-title:hover {
  color: var(--theme-color1);
}