.feature-current-item-style3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 50px 50px 40px;
  border-radius: 30px;
  background: linear-gradient(180deg, #f8f8f8 0%, rgba(255, 255, 255, 0) 100%);
  border-image-source: linear-gradient(90deg, #ecf2f6 0%, rgba(236, 242, 246, 0) 70.31%);
  background-color: #fff;
  position: relative;
  z-index: 1;
  transition: all 300ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .feature-current-item-style3 {
    transition: none;
  }
}
.feature-current-item-style3 .thumb {
  margin-right: 25px;
  max-width: 85px;
}
.feature-current-item-style3 .thumb .icon i {
  font-size: 64px;
  line-height: 1;
}
.feature-current-item-style3 .content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.feature-current-item-style3 .content .feature-title {
  margin-top: 0;
  margin-bottom: 30px;
}
.feature-current-item-style3 .content .feature-details {
  opacity: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-weight: 500;
}
.feature-current-item-style3 .content .read-more {
  color: var(--theme-color1);
  position: relative;
  padding-left: 50px;
  font-weight: 600;
  margin-top: 30px;
  display: inline-block;
}
.feature-current-item-style3 .content .read-more:before {
  content: "";
  width: 34px;
  height: 1px;
  background-color: var(--theme-color1);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.feature-current-item-style3:hover {
  background: #ecf2f6;
}