.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: 30px 20px 25px;
  background-color: #ffffff;
  background-image: var(--block-feature-style2-bg-featured-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  min-height: 175px;
  -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
  transition: all 300ms linear;
}
@media (prefers-reduced-motion: reduce) {
  .feature-current-item-style2 .inner-box {
    transition: none;
  }
}
.feature-current-item-style2 .inner-box .feature-title {
  margin-bottom: 0;
  position: relative;
}
.feature-current-item-style2 .inner-box .feature-title a {
  color: inherit;
}
.feature-current-item-style2 .inner-box .feature-title:hover {
  color: var(--theme-color1);
}
.feature-current-item-style2 .inner-box .icon {
  position: relative;
  display: block;
  font-size: 64px;
  color: var(--theme-color1);
  font-weight: 900;
  line-height: 64px;
  margin-bottom: 30px;
  transition: all 200ms linear;
}
@media (prefers-reduced-motion: reduce) {
  .feature-current-item-style2 .inner-box .icon {
    transition: none;
  }
}
.feature-current-item-style2 .inner-box:hover .feature-title {
  color: #ffffff;
}
.feature-current-item-style2 .inner-box:hover:before {
  height: 0;
}
.feature-current-item-style2 .inner-box:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  content: "";
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}