.title-big {
  width: 100%;
  font-size: 80px;
  font-weight: 800;
  position: absolute;
  top: -100px;
  text-transform: uppercase;
  -webkit-animation: 9s linear infinite alternate run;
  color: #0000ff24;
  text-align: center;
}
@keyframes run {
  0% {
    left: -20%;
  }
  50% {
    left: 0;
  }
  100% {
    left: 20%;
  }
}

.feature-box {
  display: block;
  margin: 10px 0 15px;
  text-align: center;
}
.feature-box .feature-icon {
  min-width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 9px 46px 0 rgba(75, 83, 100, 0.14);
  border-radius: 50%;
  display: inline-block;
  transition: 0.4s;
}
.feature-box .feature-icon img {
  transition: 0.4s;
  filter: none;
  height: 45px;
}
.feature-box .feature-info,
.mb-35 {
  margin-bottom: 35px;
}
.feature-box .feature-title {
  margin-top: 0.85rem;
  margin-bottom: 7px;
  font-size: 20px;
  font-weight: 500;
}
.feature-box:hover .feature-icon {
  background-color: var(--theme-color);
  color: #fff;
  box-shadow: none;
}
.feature-box:hover .feature-icon img {
  filter: brightness(0) invert(1);
}

@media (max-width: 767px) {
  .title-big {
    font-size: 50px;
    position: static;
    top: -100px;
  }
}
