.features-block-style1 {
  position: relative;
  margin-bottom: 30px;
}
.features-block-style1 .inner-box {
  position: relative;
  padding: 30px 20px 20px;
  text-align: center;
  min-height: 180px;
  border-radius: 10px;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.07);
  background-color: var(--theme-color-white);
  overflow: hidden;
  transition: all 300ms ease;
}
.features-block-style1 .inner-box:hover {
  box-shadow: 0 25px 30px rgba(0, 0, 0, 0.07);
}
.features-block-style1 .inner-box:hover .icon:after {
  top: -10px;
}
.features-block-style1 .inner-box .icon {
  position: relative;
  font-size: 64px;
  line-height: 1em;
  color: var(--theme-color2);
  display: block;
  margin-bottom: 5px;
  transition: all 300ms ease;
}
.features-block-style1 .inner-box .icon i {
  z-index: 2;
  position: relative;
  color: var(--theme-color1);
}
.features-block-style1 .inner-box .icon:before {
  position: relative;
  z-index: 2;
}
.features-block-style1 .inner-box .icon:after {
  position: absolute;
  content: "";
  right: 0;
  left: 0;
  margin: 0 auto;
  top: -73px;
  height: 86px;
  width: 86px;
  border-radius: 50% 50%;
  background-color: #f7f4f0;
  transition: all 300ms ease;
}
body.tm-dark-layout .features-block-style1 .inner-box .icon:after {
  background-color: var(--theme-color-light);
}
.features-block-style1 .title {
  font-size: 18px;
  color: #232331;
  font-weight: 700;
}
.features-block-style1 .title a {
  color: var(--theme-color1);
}
.features-block-style1 .title a:hover {
  color: var(--theme-color2);
}