.list-shadow {
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
}
/* .services-01 {
  height: 1350px;
} */
.services-01 .title-box {
  margin:120px 0 20px 0;
  text-align: center;
}

.services-01 .services-box {
  box-shadow: 0px 0px 20px 0 rgba(105, 105, 105, 0.3);
  padding: 32px;
  border-radius: 16px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.services-01 .services-box::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  border-radius: 16px;
  background-image: linear-gradient(96deg, #01bed9 0%, #3500d3 50%, #01bed9);
  background-size: 200% auto;
  z-index: -1;
  transition: all 0.5s ease;
}

.services-01 .services-box i {
  font-weight: 900;
  display: inline-block;
  font-size: 32px;
  height: 70px;
  width: 70px;
  line-height: 70px;
  background-image: linear-gradient(96deg, #01bed9 0%, #3500d3 100%);
  color: #fff;
  border-radius: 50%;
  text-align: center;
}

.services-01 .services-box .services-title {
  margin: 8px 0;
  font-size: 18px;
}

.services-01 .services-box .services-link {
  color: #1456de;
}

.services-01 .services-box:hover {
  color: #fff;
}

.services-01 .services-box:hover::before {
  width: 100%;
}

.services-01 .services-box:hover i {
  background: #fff;
  color: #1456de;
}

.services-01 .services-box:hover i:before {
  background-image: -webkit-linear-gradient(96deg, #01bed9 0%, #3500d3 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-01 .services-box:hover .services-link {
  color: #fff;
}