.services {
  /* background-color: rgb(245, 248, 255); */
  background-color: #E1E6FC;
  padding: 120px 15px 120px;
}

.services .container .row .title h1::before {
  left: 30%;
}

.service-content {
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.box {
  background-color: #fff;
  flex: 0 0 calc(33.33% - 20px);
  max-width: calc(35.35% - 20px);
  margin-bottom: 30px;
  border: 1px solid #001466;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  padding: 30px;
  text-align: center;
  position: relative;
}

.box::before {
  content: "";
  height: 2px;
  background-color: #001466;
  position: absolute;
  bottom: 0px;
  width: 50px;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.5s ease;
}

.box:hover::before {
  width: 100%;
}

.box .icon {
  height: 60px;
  width: 60px;
  background-color: #001466;
  margin: 15px auto 20px;
  border-radius: 50%;
}

.box .icon .fa {
  font-size: 25px;
  color: #FFAAE0;
  line-height: 60px;
}

.box .icon .fas {
  font-size: 25px;
  color: #FFAAE0;
  line-height: 60px;
}

.box .icon .far {
  font-size: 25px;
  color: #FFAAE0;
  line-height: 60px;
}

.box h5 {
  font-size: 16px;
  font-weight: 600;
  color: #001466;
  margin: 0;
}

.box p {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #001466;
  margin: 5px 0 10px;
}