.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 40px 30px;
  background-color: #ffffff;
  background-image: var(--feature-current-style1-bg-featured-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
  transition: all 300ms linear;
}
@media (prefers-reduced-motion: reduce) {
  .feature-current-item-style1 .inner-box {
    transition: none;
  }
}
.feature-current-item-style1 .inner-box:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.feature-current-item-style1 .inner-box:hover:before {
  height: 0;
}
.feature-current-item-style1 .inner-box:hover .feature-title {
  color: #ffffff;
}
.feature-current-item-style1 .inner-box:hover .feature-title a {
  color: #ffffff;
}
.feature-current-item-style1 .inner-box:hover .icon i {
  color: var(--text-color-bg-theme-color1);
}
.feature-current-item-style1 .inner-box:hover .feature-details {
  color: #8c8f94;
}
.feature-current-item-style1 .inner-box:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  content: "";
  transition: all 300ms linear;
}
@media (prefers-reduced-motion: reduce) {
  .feature-current-item-style1 .inner-box:before {
    transition: none;
  }
}
.feature-current-item-style1 .inner-box .title-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 90px;
  min-height: 70px;
  margin-bottom: 10px;
}
.feature-current-item-style1 .inner-box .feature-title {
  margin-top: 0;
}
.feature-current-item-style1 .inner-box .icon i {
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 70px;
  width: 70px;
  color: var(--text-color-bg-theme-color1);
  background: var(--theme-color1);
  font-size: 48px;
  transition: all 200ms linear;
}
@media (prefers-reduced-motion: reduce) {
  .feature-current-item-style1 .inner-box .icon i {
    transition: none;
  }
}
.feature-current-item-style1 .inner-box .feature-details {
  position: relative;
}