body {
  background: linear-gradient(180deg, #d2f1ff 0%, #fff 100%);
}
#mainNavbar.bg-white {
  background: linear-gradient(180deg, #fff 0%, #d2f1ff 100%);
}
#texture {
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}
#sapient-banner-bg {
  height: 720px;
  background-color: #f2f7fe;
  border-radius: 1.5em;
}

#banner h1 {
  font-weight: 900;
  font-size: 48px;
  line-height: 72px;
}
h2 {
  font-size: 40px;
  line-height: 64px;
}
p {
  font-weight: 400;
  font-size: 20px;
  line-height: 36px;
}
#machine .container {
  padding-top: 48px;
  padding-bottom: 48px;
  border-radius: 1.5em;
}
#machine p {
  font-weight: 400;
  font-size: 24px;
  line-height: 44px;
}
#payment ul li img {
  width: 28px;
  height: 28px;
  margin-right: 12px;
  margin-top: 2px;
}
#payment ul li span {
  font-size: 16px;
}

.timeline-benefits {
  position: relative;
  margin: 0 auto;
  max-width: 900px;
}
.timeline-item {
  min-height: 120px;
}
.timeline-img-box {
  min-width: 120px;
  position: relative;
}
.timeline-img-box img {
    object-fit:contain;
    box-shadow:0 2px 12px #d2f1ff;
}
.timeline-dot {
  width: 18px;
  height: 18px;
  background: #d2f1ff;
  border-radius: 50%;
  border: 3px solid #003f91;
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translateX(-50%);
  z-index: 2;
}
.timeline-line {
  width: 4px;
  height: 60px;
  background: linear-gradient(180deg, #d2f1ff 0%, #fff 100%);
  position: absolute;
  left: 50%;
  top: 118px;
  transform: translateX(-50%);
  z-index: 1;
}
.timeline-content {
  background: #fff;
  border-radius: 1em;
  box-shadow: 0 2px 12px #d2f1ff;
  padding: 18px 28px;
  min-width: 260px;
  max-width: 340px;
  margin-bottom: 10px;
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.4, 2, 0.6, 1);
}
.timeline-content.active {
  opacity: 1;
  transform: translateY(0);
}
.timeline-content.tags-only {
  opacity: 1;
  transform: translateY(0);
  background: #d2f1ff;
  color: #003f91;
  font-weight: 700;
  box-shadow: none;
  padding: 12px 24px;
}

@media (max-width: 991.98px) {
  #mainNavbar.bg-white {
    background: white;
  }
  section#payment h3{
    text-align: center;
  }
}

@media (max-width: 768px) {
  .timeline-benefits {
    max-width: 100%;
  }
  .timeline-content,
  .timeline-content.tags-only {
    min-width: 0;
    max-width: 100%;
    padding: 12px 10px;
  }
}