.sticky {
  position: sticky;
  top: 110px;
}
.service-details {
  padding: 60px 0;
}
.service-details h3 {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  margin: 0 0 15px;
}
.services-card {
  border: 1px solid #E2E4EA;
  padding: 20px 20px 6px;
  border-radius: 24px;
  background: #FFF;
  background: #f5f6f7;
}
.services-card h3 {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  margin: 0 0 15px;
  color: var(--primary-color);
  padding: 0 0 10px;
  border-bottom: 2px solid #E2E4EA;
}
.services-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.services-card ul li {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 12px;
  border-radius: 10px;
  background: #FFF;
  margin: 0 0 10px;
  cursor: pointer;
  transition: all .3s ease-in-out;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.services-card ul li a {
  color: var(--secondary-color);
  display: block;
  width: 100%;
}
.services-card ul li:hover, .services-card ul li.active {
  background: var(--primary-color);
  color: #FFF;
}
.services-card ul li:hover a, .services-card ul li.active a {
  color: #FFF;
}

.service-content {
  margin: 0 0 30px;
  padding: 0 0 25px;
  border-bottom: 1px solid #E2E4EA;
}
.service-content img {
  margin: 0 0 40px;
}
.service-content ul li {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  background: url('../images/icons/checked.png') no-repeat left 0;
  background-size: 20px;
  padding: 0 0 5px 25px;
  margin: 0 0 5px;
  color: var(--primary-color);
}
.service-content ul li small {
  color: var(--primary-text-color);
  font-weight: 400;
}
.service-content ul.no-style {
  padding: 0 0 0 20px;
  margin: 0 0 20px;
}
.service-content ul.no-style li {
  font-size: normal;
  font-weight: normal;
  line-height: normal;
  background: none;
  padding: 0;
  margin: 0 0 16px;
  list-style-type: disc;
  color: var(--primary-text-color);
}

/* CTA */
.service-details .cta, .blog-details .cta {
  padding: 40px 30px;
  border-radius: 24px;
  background: var(--secondary-color);
  margin: 20px 0;
  color: #FFF;
}
