.feature-current-item-style2 {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}
.feature-current-item-style2 .inner-box {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 35px 40px 10px;
  background-color: #171717;
  z-index: 2;
  transition: all 300ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .feature-current-item-style2 .inner-box {
    transition: none;
  }
}
.feature-current-item-style2 .inner-box .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.feature-current-item-style2 .inner-box:hover:after {
  transform: scale(1.5);
  opacity: 1;
}
.feature-current-item-style2 .inner-box:hover:before {
  opacity: 0;
}
.feature-current-item-style2 .inner-box:hover .title,
.feature-current-item-style2 .inner-box:hover .text,
.feature-current-item-style2 .inner-box:hover .icon {
  color: #ffffff;
}
.feature-current-item-style2 .inner-box:hover .count {
  background-color: rgba(255, 255, 255, 0.2);
}
.feature-current-item-style2 .feature-title {
  position: relative;
  padding-bottom: 30px;
  margin-top: 0;
  margin-bottom: 0px;
  color: #ffffff;
  text-transform: uppercase;
}
.feature-current-item-style2 .feature-title:hover {
  color: var(--theme-color1);
}
.feature-current-item-style2 .icon {
  position: relative;
  display: block;
  font-size: 62px;
  color: var(--theme-color1);
  font-weight: 400;
  line-height: 1em;
  transition: all 200ms linear;
  margin-bottom: 14px;
}
@media (prefers-reduced-motion: reduce) {
  .feature-current-item-style2 .icon {
    transition: none;
  }
}
.feature-current-item-style2 .btn-view-details .btn.btn-plain-text {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 30px;
  text-align: center;
  border-top: 3px solid rgba(255, 255, 255, 0.1);
  padding: 10px 30px 2px;
  text-transform: uppercase;
  font-family: var(--heading-font-family);
}