.services .icon-box {
  padding: 30px 30px;
  position: relative;
  overflow: hidden;
  background: rgb(247,234,192);
  box-shadow: 2px 0 35px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  text-align: center;
  border-color: white;
}

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

.services .icon-box:hover::before {
  background: #f8eabc;
  top: 0;
  border-radius: 0px;
}

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

.services .title a {
  color: #f2e8e8;
}

.services .icon-box:hover .title a, .services .icon-box:hover .description {
  color: var(--bs-primary);
}

.services {
  padding-bottom: 30px;
}

