.services .icon-box {
  padding: 60px 30px;
  position: relative;
  height: 300px;
  width: 20%;
  margin: 20px 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 3px 10px 0 rgba(0, 0, 0, 0.24);
  /*border-radius: 8px;*/
  z-index: 1;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.services .icon-box:hover {
  box-shadow: 0px 7px 10px 0 rgba(0, 0, 0, 0.32);
  transform: scale(1.02);
}

.services .icon-box::before {
  content: '';
  position: absolute;
  background: var(--ws-lighter);
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.4s;
  z-index: -1;
}

.services .icon-box:hover::before, .services .highlight-slide::before {
  background: linear-gradient(14deg, var(--ws-dark), rgb(59,95,211));
  top: 0;
  /*border-radius: 0;*/
}

.services .icon {
  margin-bottom: 15px;
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  color: var(--ws-color);
  transition: all 0.3s ease-in-out;
}

.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title {
  color: var(--ws-dark);
}

.services .description {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .highlight-slide .title, .services .highlight-slide .description, .services .icon-box:hover .title, .services .icon-box:hover .description {
  color: #fff;
}

.services {
  padding-bottom: 30px;
  --webkit-touch-callout: none;
  --webkit-user-select: none;
  --khtml-user-select: none;
  --moz-user-select: none;
  --ms-user-select: none;
  user-select: none;
}

.services .icon-box:hover .icon i, .services .highlight-slide .icon i {
  color: #fff;
}

.services .slick-hidden {
  opacity: 0%;
}

