.service-area {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #f9f9f9;
  padding: 120px 0;
}

.service-item {
  position: relative;
  padding: 0 20px 20px 20px;
  margin-bottom: 25px;
  transition: all .5s ease-in-out;
  z-index: 1;
}

.service-item::before{
  content: "";
  position: absolute;
  background: #fff;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  border-radius: 20px;
  width: 100%;
  left: 0px;
  top: 130px;
  bottom: 0px;
  z-index: -1;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-img img{
  border-radius: 30px;
}

.service-content {
  position: relative;
  margin-top: 5px;
}

.service-icon {
  position: absolute;
  width: 90px;
  height: 90px;
  line-height: 82px;
  background: var(--color-primary);
  font-size: 50px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  margin-top: -50px;
  right: 40px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  z-index: 1;
}

.service-icon img{
  width:50px;
}

.service-arrow {
  margin-top: 25px;
}

.service-title a {
  font-size: 22px;
  margin: 20px 0;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.service-title a:hover {
  color: var(--color-primary);
}

.service-text {
  color: #757F95;
  font-size: 16px;
  line-height: 1.8;
}

.service-arrow .theme-btn{
  padding: 10px 22px;
}

.heading-divider {
  display: inline-block;
  position: relative;
  border: 3px solid var(--color-primary);
  width: 90px;
  height: 10px;
  border-radius: 50px;
}

.heading-divider:after {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  height: 7px;
  width: 15px;
  border-radius: 50px;
  background: var(--color-primary);
  -webkit-animation: heading-move 5s infinite linear;
  animation: heading-move 5s infinite linear;
}

@-webkit-keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(72px);
  }
  100% {
    transform: translateX(-1px);
  }
}

@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(72px);
  }
  100% {
    transform: translateX(-1px);
  }
}