.services-section {
  position: relative;
  overflow: hidden;
}

/* Eclipse */
.services-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  left: -340px;
  top: 290px;
  background: var(--primary500);
  border-radius: 500px;
  -webkit-filter: blur(150px);
  filter: blur(150px);
  opacity: 1;
  pointer-events: none;
}

/* header */
.services-section-name {
  text-transform: uppercase;
  color: var(--black_white50);
}

.services-section-header {
  display: flex;
  justify-content: space-between;
  z-index: 2;
  position: relative;
}

.services-section-header span img {
  width: 85.217px;
  height: 14px;
  aspect-ratio: 85.22/14;
}

/* Review */
.services-review-wrapper {
  display: flex;
  align-items: center;
  color: var(--black_white50);
  gap: 12px;
}

.clients-review {
  margin-left: -6px;
}

@media (max-width: 768px) {
  .services-section-header {
    flex-direction: column;
    justify-content: unset;
    gap: 12px;
  }

  .services-list {
    margin: 16px 0 0;
  }

  .services-glow {
    left: -410px;
    top: 100px;
  }

  .services-list-item::after {
    content: "";
    position: absolute;
    left: -16px;
    right: -16px;
    bottom: 0;
    height: 1px;
    background-color: var(--neutral800);
  }

  .services-list-item:last-child::after {
    display: none;
  }
}
