.tm-sc-features .icon {
  display: inline-block;
}
.tm-sc-features .icon,
.tm-sc-features .features-title,
.tm-sc-features .features-details {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.feature-side-line {
  position: relative;
}
.feature-side-line .icon-box-wrapper:after {
  content: "";
  background: #333;
  width: 2px;
  position: absolute;
  left: 25px;
  top: 60px;
  bottom: -12px;
}
@media (max-width: 575.98px) {
  .feature-side-line .icon-box-wrapper:after {
    display: none;
  }
}

.features-block-style2 {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.features-block-style2 .inner-box {
  position: relative;
  display: block;
  border: 1px solid #322d3b;
  padding: 30px;
  background-color: var(--theme-color2);
  transition: all 500ms ease;
}
.features-block-style2 .inner-box .icon-box {
  position: relative;
  display: block;
}
.features-block-style2 .inner-box .icon-box .icon i {
  position: relative;
  display: inline-block;
  font-size: 64px;
  color: var(--theme-color1);
  line-height: 1;
  margin-bottom: 15px;
  line-height: 1;
}
.features-block-style2 .inner-box .features-title {
  margin-bottom: 20px;
  margin-top: 0;
  color: #fff;
  transition: all 500ms ease;
}
.features-block-style2 .inner-box .features-details {
  font-size: 14px;
  color: #aea8b9;
  line-height: 24px;
  transition: all 500ms ease;
}
.features-block-style2 .inner-box:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  border: 1px solid #f0eeee;
  background-color: var(--theme-color-white);
}
body.tm-dark-layout .features-block-style2 .inner-box:hover {
  border-color: #1d1d1d;
}
.features-block-style2 .inner-box:hover .icon-box .icon {
  color: var(--theme-color1);
}
.features-block-style2 .inner-box:hover .features-title {
  color: #1b1525;
}
body.tm-dark-layout .features-block-style2 .inner-box:hover .features-title {
  color: #fff;
}
.features-block-style2 .inner-box:hover .features-details {
  color: var(--body-tex);
}