.features{padding: 100px 0px;position: relative;background: #e1e8f0;}
.features h2{font-size: 34px;padding: 10px 5px;text-align: center;width: 100%;font-weight: 600;}
.features p{font-size: 18px;padding: 7px;margin-bottom: 50px;text-align: center;width: 100%;}
.service-box-five {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;margin-bottom: 40px;
}
.service-box-five::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease 0s;
  top: 10px;
  width: 90%;
  height: 100%;
  border-radius: 20px;
  background: #f5924f;
  z-index: -1;
  transition: all 0.4s ease 0s;
}
.service-box-five .inner-box {
  background: #fff;
  padding: 40px 40px 40px;

  border-radius: 20px;

  position: relative;
  z-index: 1;
  overflow: hidden;

  transition: all 0.4s ease 0s;

}
.service-box-five .inner-box::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #fb7820;
  z-index: -1;
  transition: all 0.4s ease 0s;
}
.service-box-five:hover .inner-box {
  transform: translateY(10px);
}
.service-box-five:hover .inner-box::before {
  left: 0;
  width: 100%;
}
.p-top-left {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.service-box-five .inner-box .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f5924f;
  font-size: 30px;
  /* color: #fb7820; */
  transition: all 0.4s ease 0s;
}
.service-box-five:hover .inner-box .icon{background: #ecf8f8;}
.service-box-five:hover .inner-box .icon i {
  animation:wobble_vertical 1s forwards ease-in-out 0s;
}
.service-box-five:hover .inner-box .icon i{color: #000;}
.service-box-five .inner-box .border {
  transition: all 0.4s ease 0s;
}
.service-box-five:hover .inner-box .border {
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.service-box-five .inner-box .title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 5px;
  transition: all 0.4s ease 0s;

}
.service-box-five .inner-box .title a{
  color: #000;text-decoration: none;
}
.service-box-five:hover .inner-box .title a {
  color: #fff;
  text-decoration: none;
}
.service-box-five .inner-box .text {
  font-size: 16px;
  line-height: 1.66;
  margin-bottom: 21px;text-align: left;padding: 10px 0px;
  transition: all 0.4s ease 0s;
}
.service-box-five:hover .inner-box .text {
  color: #feebe6;
}
.service-box-five .inner-box .service-btn {
  font-size: 16px;
  color: #fb7820;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.service-box-five .inner-box .service-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 0;
  height: 1px;
  background: #fb7820;
  z-index: -1;
  transition: all 0.4s ease 0s;

}
.service-box-five:hover .inner-box .service-btn {
  padding-left: 237px;
  color: #C2DF93;
}
.service-box-five .inner-box .serial {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 18px;
  color: #5A7779;
  font-weight: 400;
}
.service-box-five:hover .inner-box .serial {color: #feebe6;}

@keyframes wobble_vertical {
  0% {
    transform: translateY(0%);
  }
  15% {
    transform: translateY(-20px);
  }
  30% {
    transform: translateY(15px);
  }
  45% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(5px);
  }
  75% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0%);
  }
}

@media only screen and (min-width:320px)and (max-width:479px){
  .features{padding: 30px 0px;}
  .features h2{font-size: 22px;}
  .features p{font-size: 14px;margin-bottom: 30px;}
}

@media only screen and (min-width:480px) and (max-width:767px){
  .features{padding: 30px 0px;}
  .features h2{font-size: 22px;}
  .features p{font-size: 14px;margin-bottom: 30px;}
}

@media only screen and (min-width:768px) and (max-width:1024px){
  .features{padding: 30px 0px;}
  .features h2{font-size: 22px;}
  .features p{font-size: 14px;margin-bottom: 30px;}
}

@media only screen and (min-width:1024px) and (max-width:1280px) {}